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

.hero-carousel {
  position: relative;
}

.hero-slide {
  position: relative;
  display: flex !important;
  align-items: stretch;
  min-height: calc(100vh - 131px);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  z-index: 1;
  max-width: 1400px;
  margin: auto;
}

.hero-slide__content {
  max-width: 480px;
  padding: 0;
}

.hero-slide__subtitle {
  font-family: "League Spartan", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #2d6272;
  line-height: 41px;
}

.hero-slide__title {
  font-family: "League Spartan", Sans-serif;
  font-size: 60px !important;
  font-weight: 600;
  color: #2d6272;
  /* margin: 0 0 1.25rem; */
  line-height: 60px !important;
}

.hero-slide__description {
  font-size: 24px;
  max-width: 560px;
  margin: 0 0 1.75rem;
  line-height: 29px;
  color: #2d6272;
}

.hero-slide__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: #eb6070;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, transform 0.25s ease;
  text-decoration: none !important;
}

.hero-slide__button:hover,
.hero-slide__button:focus {
  background: #00aa9e;
  transform: translateY(-2px);
  color: #fff;
}

.hero-slide__button-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero-carousel-arrow {
  position: absolute;
  background-color: unset !important;
  padding: 0 !important;
  z-index: 2;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-carousel-arrow:hover {
  /*  background: rgba(0, 0, 0, 0.6); */
}

.hero-carousel-prev {
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-carousel-next {
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-carousel-arrow img {
    width: 47px;
    height: 47px;
    display: block;
}


.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex !important;
  gap: 10px;
  z-index: 2;
}

.hero-carousel-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  text-indent: -9999px;
  padding: 0;
}
.hero-carousel-dots li {
  list-style-type: none;
}
.hero-carousel-dots li.slick-active button {
  background: #fff;
  width: 28px;
}

@media (max-width: 1600px) {
  .hero-slide__content {
    max-width: 600px;
    padding: 0 0 0 120px;
  }
}
@media  (min-width: 1461px) and (max-width: 1600px) {
  
}

@media (min-width: 1024px) and (max-width: 1460px) {

}

@media (max-width: 1024px) {
  .hero-slide {
    min-height: clamp(420px, 80vh, 580px);
  }

  /* .hero-slide__content {
    padding: clamp(24px, 8vw, 80px);
  } */
  .hero-slide__content {
    max-width: 500px;
    padding: 0 20px 0 80px;
  }
  .hero-carousel-prev {
    left: 12px;
  }

  .hero-carousel-next {
    right: 12px;
  }

  .hero-slide__title{
    font-size: 40px !important;
    line-height: 50px!important;
  }
  .hero-slide__subtitle{
    font-size: 24px;
    line-height: 30px;
  }
  .hero-slide__description{
    font-size: 20px;
    line-height: 25px;
  }

}

@media (max-width: 767px) {
  .hero-slide__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-slide__description {
    font-size: 1rem;
    line-height: 1.2em;
  }

  .hero-slide__subtitle {
    font-size: 1.25rem;
    line-height: 1.2em;
  }

  button.hero-carousel-arrow.hero-carousel-prev.slick-arrow, button.hero-carousel-arrow.hero-carousel-next.slick-arrow{display: none !important;}


  .hero-slide__content{
    padding: 30px 20px;
  }
  .hero-slide__overlay{
    background: #fff !important;
    opacity: 0.3;
  }
}
