/* [project]/src/components/home-page/banner/banner.module.css [app-client] (css) */
.banner-module__iGK2Ma__bannerContainer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.banner-module__iGK2Ma__sliderLoading {
  color: #666;
  background: #f5f5f5;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  height: 35rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  display: flex;
}

.banner-module__iGK2Ma__slider {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.banner-module__iGK2Ma__slide {
  width: 100%;
  height: 35rem;
  position: relative;
}

.banner-module__iGK2Ma__imageContainer {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-module__iGK2Ma__image {
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.banner-module__iGK2Ma__content {
  background: linear-gradient(90deg, #0009 0%, #0006 50%, #0003 100%);
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-module__iGK2Ma__title {
  color: #fff;
  letter-spacing: -.64px;
  text-shadow: 0 2px 8px #0009;
  margin-bottom: 1.5rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.banner-module__iGK2Ma__description {
  color: #f8f8f8;
  text-shadow: 0 1px 3px #00000080;
  max-width: 90%;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

.banner-module__iGK2Ma__slider .slick-dots {
  text-align: left;
  position: absolute;
  bottom: 3rem;
  left: 2.3rem;
  width: auto !important;
}

.banner-module__iGK2Ma__slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.banner-module__iGK2Ma__slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.banner-module__iGK2Ma__slider .slick-dots li button:before {
  opacity: .6;
  width: 12px;
  height: 12px;
  line-height: 12px;
  transition: all .3s;
  color: #fff !important;
  font-size: 10px !important;
}

.banner-module__iGK2Ma__slider .slick-dots li.slick-active button:before {
  opacity: 1;
  transform: scale(1.3);
  color: #fff !important;
}

.banner-module__iGK2Ma__slider .slick-dots li button:hover:before {
  opacity: .9;
}

@media screen and (min-width: 768px) {
  .banner-module__iGK2Ma__content {
    padding: 0 3rem;
  }

  .banner-module__iGK2Ma__title {
    margin-bottom: 2rem;
    font-size: 3.5rem;
  }

  .banner-module__iGK2Ma__description {
    max-width: 60%;
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  .banner-module__iGK2Ma__title {
    font-size: 4rem;
  }

  .banner-module__iGK2Ma__description {
    max-width: 55%;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .banner-module__iGK2Ma__description {
    max-width: 50%;
  }

  .banner-module__iGK2Ma__title {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 767px) {
  .banner-module__iGK2Ma__slide, .banner-module__iGK2Ma__sliderLoading {
    height: 25rem;
  }

  .banner-module__iGK2Ma__content {
    background: linear-gradient(90deg, #000000b3 0%, #0006 100%);
    padding: 0 1.5rem;
  }

  .banner-module__iGK2Ma__title {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
  }

  .banner-module__iGK2Ma__description {
    max-width: 95%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .banner-module__iGK2Ma__slider .slick-dots {
    bottom: 2rem;
    left: 1.5rem;
  }
}

.banner-module__iGK2Ma__title {
  animation: .8s ease-out .2s both banner-module__iGK2Ma__fadeInUp;
}

.banner-module__iGK2Ma__description {
  animation: .8s ease-out .4s both banner-module__iGK2Ma__fadeInUp;
}

@keyframes banner-module__iGK2Ma__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=src_components_home-page_banner_banner_module_d461ee2a.css.map*/