/* [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/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;
}


/* [project]/src/styles/NewsPage.css [app-client] (css) */
.blogContainer {
  padding: 163px 20px 0;
}

.blogListing {
  display: grid;
  gap: 40px;
  row-gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}

.blogBoxContainer {
  height: 100%;
  min-height: 350px;
}

.blogImageContainer {
  width: 100%;
  max-height: 250px;
  height: 100%;
  position: relative;
}

.width100.blogBoxContainer, .width100.blogBoxContainer .blogImageContainer {
  min-height: unset !important;
  max-height: unset !important;
  height: unset !important;
}

.blogImageContainer > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.blogTitle {
  margin-top: 20px;
  font-family: poppins;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.blogDivider {
  margin-top: 20px;
  width: 100%;
  height: 1px;
  opacity: .5;
  background-color: #fff;
  margin-bottom: 20px;
}

.blogDescriptionFooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.blogDescriptionFooter > h3 {
  font-family: poppins;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

@media (width <= 1549.98px) {
  .blogContainer {
    max-width: 1080px;
  }

  .blogListing {
    gap: 30px;
  }

  .blogImageContainer {
    max-height: 190px;
  }

  .blogTitle {
    font-size: 22px;
    margin-top: 23px;
  }

  .blogDivider {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .blogDescriptionFooter > h3 {
    font-size: 15px;
  }
}

@media (width <= 1099.98px) {
  .blogListing {
    grid-template-columns: 1fr;
  }

  .blogImageContainer {
    max-height: 250px;
  }
}

@media (width <= 767.98px) {
  .blogImageContainer {
    max-height: 190px;
  }

  .blogTitle {
    font-size: 18px;
    margin-top: 20px;
  }

  .blogDescriptionFooter > h3 {
    font-size: 13px;
  }
}

@media (width <= 574.98px) {
  .blogContainer {
    padding: 100px 16px 30px;
  }
}


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