/* HERO SLIDER */
.paragraph--type--hero-home {
  margin-top: calc(0.25rem * -24);
}

.banner-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.banner-hero-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  touch-action: pan-y;
}

.banner-hero-slide {
  flex-shrink: 0;
  width: 100%;
  height: initial;
}

.banner-hero-slick-arrows {
  position: absolute;
  bottom: 32px;
  display: flex;
  gap: 29px;
  right: 95px;
}

.banner-hero-slick-arrow-container {
  display: flex;
  gap: 30px;
  position: relative;
}

.banner-hero-slick-arrow {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.banner-hero-slick-arrow.swiper-button-prev {
  left: inherit;
  right: 0;
}

.banner-hero-slick-arrow.swiper-button-next {
  right: initial;
  left: 0;
}

.banner-hero-pagination {
  position: absolute;
  bottom: 55px !important;
  left: 95px !important;
  display: flex;
  gap: 8px;
  width: initial !important;
}

.banner-hero-pagination .swiper-pagination-bullet {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.banner-hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 45px;
  border-radius: 20px;
  background: linear-gradient(174deg, rgba(255, 255, 255, 0.00) -11.39%, #fff 158.17%);
}

@media (max-width: 768px) {
  .banner-hero-slick-arrows {
    display: none;
  }

  .banner-hero-pagination {
    bottom: 15px !important;
    left: 0 !important;
    right: 0 !important;
    justify-content: center;
  }
}

.hero-slider__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider__content img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slider__flex-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-slider__info {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 75px;
  padding-left: 95px;
  position: relative;
  z-index: 1;
}

.hero-slider__image-wrapper {
  width: 40%;
  display: flex;
  height: 100%;
}

.hero-slider__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 60px;
  animation: fadeUp 0.9s ease forwards;
  margin: 0;
  max-width: 680px;
}

.hero-slider__title span {
  color: #8CC63F;
  font-weight: 600;
}

.hero-slider__description {
  margin-top: 24px;
  margin-bottom: 0;
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  animation: fadeUp 1.1s ease forwards;
}

.hero-slider__image {
  z-index: 2;
  object-fit: cover;
  padding-top: 27%;
  width: 68%;
  max-width: 415px;
}

.hero-slider__background {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  z-index: 0;
  height: 100%;
}

.hero-slider__link {
  border-radius: 24px;
  background-color: #FF9800;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  transition: all 0.35s ease;
  animation: fadeUp 1.3s ease forwards;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-top: 32px;
}

.hero-slider__link:hover {
  background-color: #000000 !important;
}

@media (max-width: 769px) {

  .hero-slider__flex-container {
    flex-direction: column;
    padding-top: 120px;
  }

  .hero-slider__info {
    padding: 0;
    width: 100%;
    align-items: center;
    margin-top: 20px;
    padding: 0 15px;
  }

  .hero-slider__logo {
    width: 80%;
  }

  .hero-slider__image-wrapper {
    justify-content: center;
    width: 100%;
    align-items: end;
  }

  .hero-slider__background {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }

  .hero-slider__image {
    width: 70%;
    padding-top: 20px;
  }

  .hero-slider__title {
    font-size: 30px;
    line-height: 125%;
    max-width: initial;
    font-weight: 300;
    text-align: center;
  }

  .hero-slider__description {
    font-size: 16px;
    line-height: 125%;
    margin-top: 16px;
    text-align: center;
  }

  .hero-slider__link {
    padding: 12px 14px;
  }
}

@media (max-width: 450px) {
  .hero-slider__title {
    max-width: 355px;
  }

  .hero-slider__description {
    max-width: 300px;
  }
}
