/* [project]/src/styles/Commonbanner.css [app-client] (css) */
.video-banner-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 82px);
  overflow: hidden;
  min-height: 500px;
  z-index: 4;
  margin-top: 83px;
}

.video-wrapper {
  position: absolute;
  z-index: 0;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.video-fallback {
  background: linear-gradient(45deg, #121212, #333);
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 1;
}

.marquee {
  display: flex;
  width: fit-content;
}

.marquee-content {
  display: flex;
  justify-content: center;
  animation: 8s linear infinite scroll-left;
  will-change: transform;
  padding: 0 30px 0 0;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner-text span {
  font-size: 86px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.banner-text img {
  width: 68px;
  height: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (width <= 1549.98px) {
  .video-banner-container {
    height: calc(100vh - 66px);
    min-height: 400px;
    margin-top: 66px;
  }

  .banner-text span {
    font-size: 55px;
  }

  .banner-text img {
    width: 58px;
  }
}

@media (width <= 1099.98px) {
  .video-banner-container {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }

  .banner-text img {
    width: 40px;
  }
}

@media (width <= 990.98px) {
  .banner-text span {
    font-size: 48px;
  }
}

@media (width <= 767.98px) {
  .banner-text span {
    font-size: 40px;
  }

  .banner-text img {
    width: 40px;
  }
}

@media (width <= 574.98px) {
  .banner-text span {
    font-size: 32px;
  }

  .banner-text img {
    width: 36px;
  }
}


/* [project]/src/styles/ServiceCards.css [app-client] (css) */
.services-section {
  max-width: 1380px;
  padding-top: 62px;
  padding: 100px 20px 0;
  z-index: 2;
}

.cardcontainer {
  height: auto;
  min-height: 526px;
  background-color: #f6f7f799;
  backdrop-filter: blur(10px);
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  position: relative;
  will-change: transform, opacity;
  transition: all .3s ease-out;
}

.cardContainerleft {
  background-color: #394fa199;
}

.cardImageright {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  min-height: 500px;
}

.cardImageleft {
  left: 0;
}

.containheader {
  height: auto;
  min-height: 166px;
  background-color: #ffffff4d;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  padding: 30px 60px;
  width: 100%;
}

.containheaderleft {
  background-color: #394fa14d;
  justify-content: end;
  padding-right: 20px;
}

.cardtitle {
  font-size: 44px;
  width: 100%;
  max-width: 650px;
  font-weight: 700;
  color: #111025;
  overflow: hidden;
  white-space: pre-line;
  line-height: 1.2;
  grid-column: 1 / 2;
}

.cardtextwhite {
  color: #f6f7f7 !important;
}

.cardcontent {
  height: 100%;
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.cardcontentleft {
  grid-column: 2 / 3;
  padding-right: 90px;
  padding-left: 0;
}

.carddescription {
  font-size: 20px;
  color: #111025;
  width: 100%;
  max-width: 650px;
}

.cardimage-container {
  position: absolute;
  width: 420px;
  right: 70px;
  top: 30px;
  aspect-ratio: .802;
}

.cardimage-containerleft {
  right: unset;
  left: 80px;
}

.cardimage {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  will-change: transform;
  transition: transform .5s ease-out;
  object-fit: cover;
}

.vhh100 {
  height: 100vh;
  will-change: transform;
  min-height: 530px;
  margin-bottom: 60px;
}

.service-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #111025;
}

.cardContainerleft .service-list li:before {
  color: #f6f7f7;
}

.service-list-even li:before {
  color: #f6f7f7;
}

.service-description {
  line-height: 1.6;
}

.service-paragraphs {
  line-height: 1.6;
}

.service-paragraphs p {
  margin-bottom: 1rem;
}

.service-paragraphs p:last-child {
  margin-bottom: 0;
}

@media (width <= 1549.98px) {
  .services-section {
    max-width: 1111px;
  }

  .vhh100 {
    min-height: 425px;
  }

  .containheader {
    padding: 20px 45px;
    min-height: 127px;
  }

  .cardcontainer {
    min-height: 425px;
  }

  .cardtitle {
    max-width: 493px;
    font-size: 32px;
  }

  .cardcontent {
    padding-left: 45px;
  }

  .cardcontentleft {
    padding-right: 45px;
    padding-left: 0;
  }

  .carddescription {
    font-size: 16px;
    max-width: 470px;
  }

  .cardimage-container {
    right: 45px;
    top: 30px;
    width: 350px;
  }

  .service-list li {
    padding-left: 18px;
    margin-bottom: 4px;
  }

  .cardimage-containerleft {
    right: unset;
    left: 45px;
  }
}

@media (width <= 990.98px) {
  .cardcontainer {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    min-height: 0;
  }

  .cardcontent {
    padding: 0 20px;
  }

  .responsive-vh100 {
    height: 100%;
  }

  .cardimage-container {
    width: 300px;
    height: 380px;
    border-radius: 20px;
    position: unset;
    order: 2;
    margin-bottom: 20px;
    margin-top: -30px;
  }

  .cardImageright {
    min-height: unset;
    height: 341px;
    transform: unset;
    top: 180px;
  }

  .cardcontent {
    order: 3;
    align-items: end;
    margin-bottom: 24px;
  }

  .containheader {
    padding: 35px 60px;
    min-height: 166px;
    height: fit-content;
    text-align: center;
  }

  .cardtitle {
    max-width: 100%;
    font-size: 32px;
  }

  .carddescription {
    font-size: 20px;
    text-align: center;
  }

  .service-list li {
    text-align: left;
  }

  .service-description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (width <= 767.98px) {
  .cardimage-container {
    width: 270px;
    height: 330px;
  }

  .cardtitle {
    font-size: 28px;
  }

  .cardImageright {
    top: 140px;
  }
}

@media (width <= 575.98px) {
  .cardimage-container {
    width: 250px;
    height: 300px;
  }

  .cardImageright {
    min-height: unset;
    height: 341px;
  }

  .containheader {
    padding: 16px;
    min-height: 166px;
  }

  .cardtitle {
    font-size: 24px;
  }

  .carddescription {
    font-size: 20px;
  }

  .service-list li {
    font-size: 20px;
    text-align: left;
  }

  .cardimage-container {
    margin-top: -30px;
  }

  .cardImageright {
    transform: unset;
    top: 115px;
  }
}


/* [project]/src/app/three.css [app-client] (css) */
.threejsContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  transition: visibility .4s, height .4s, opacity .4s;
}

.threejsContainer.hidden {
  visibility: hidden;
  opacity: 0;
  height: 0 !important;
}


/*# sourceMappingURL=src_d4032511._.css.map*/
