/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 7.2rem;
  width: 100%;
}
.hero .container.no-image {
  grid-template-columns: 2fr 1fr;
}
.hero .text-content {
  align-content: start;
  padding: 4.7rem 0 0;
}
.hero .images {
  display: flex;
  gap: 1rem;
}
.hero .hero-slider {
  max-width: 92rem;
  margin-bottom: 0;
}
.hero .small-text {
  font-size: 2rem;
  line-height: normal;
}
.hero .heading {
  margin: 0 0 3rem;
  text-wrap: balance;
  line-height: 5.2rem;
}
.hero .text {
  font-size: 2.5rem;
}
.hero .button-container {
  margin: 3rem 0 0;
}
.hero .hero-slider-dots {
  margin: 5.5rem 0 0;
}
.hero .slick-dots {
  position: static;
  text-align: left;
}
.hero .slick-dots li button {
  width: 3rem;
  height: 3rem;
}
.hero .slick-dots li button:before {
  font-size: 1.2rem;
}
.hero .slick-dots li.slick-active {
  margin: 0 1rem;
}
.hero .slick-dots li.slick-active button:before {
  color: #8FC15A;
  font-size: 2.5rem;
}

@media (max-width: 1300px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .hero .container.no-image {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero .hero-slider {
    max-width: 100%;
    margin-bottom: 0;
  }
  .hero .hero-slider .slide {
    padding-left: 0.4rem;
  }
  .hero .text-content {
    order: 2;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .hero .hero-slider-dots {
    order: 1;
    margin: 0 0 2rem;
  }
  .hero .heading {
    order: 2;
    margin: 0 0 2rem;
  }
  .hero .text {
    order: 3;
    font-size: 1.8rem;
  }
  .hero .button-container {
    order: 4;
  }
  .hero .slick-dots {
    text-align: center;
  }
  .hero .images {
    gap: 0.3rem;
  }
}
@media (max-width: 768px) {
  .hero .heading {
    line-height: 4.2rem;
  }
}