/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero-frontpage {
  text-align: center;
  min-height: 100vh;
  align-items: center;
  padding: 12.5rem 0 13.3rem;
}
.hero-frontpage .heading-container {
  max-width: 94rem;
  margin: 0 auto 1.6rem;
}
.hero-frontpage .image-container .image-text {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.9rem;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.hero-frontpage .image-container img,
.hero-frontpage .image-container svg {
  max-width: 20rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.hero-frontpage .slider-container {
  grid-column: 1/-1 !important;
  margin: 11rem 0 0;
}
.hero-frontpage .splide__slide {
  padding: 0 4rem;
  opacity: 0.3;
  transition: opacity 0.2s ease-in-out;
}
.hero-frontpage .splide__slide.is-active {
  opacity: 1;
}
.hero-frontpage .slide-text {
  text-align: center;
  font-size: 4.2rem;
  line-height: 5rem;
  margin: 0 auto;
  font-family: "big-caslon-fb", sans-serif;
}
.hero-frontpage .slide-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 5.4rem auto 0;
  color: #000034;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}
.hero-frontpage .slide-link svg rect {
  transition: stroke 0.2s ease-in-out;
}
.hero-frontpage .slide-link:hover {
  color: #F69A09;
}
.hero-frontpage .slide-link:hover svg rect {
  stroke: #F69A09;
}

@media (max-width: 768px) {
  .hero-frontpage {
    padding: 6rem 0;
  }
  .hero-frontpage .container {
    align-self: end;
  }
  .hero-frontpage .image-container .image-text {
    font-weight: 600;
    font-size: 1rem;
    line-height: 0.6rem;
    margin: 0 0 0.8rem;
  }
  .hero-frontpage .image-container img {
    max-width: 11.5rem;
  }
  .hero-frontpage .slider-container {
    margin: 3.4rem 0 0;
    align-self: start;
  }
  .hero-frontpage .splide__slide {
    padding: 0 2.5rem;
  }
  .hero-frontpage .slide-text {
    font-size: 2.3rem;
    line-height: 2.7rem;
  }
  .hero-frontpage .slide-link {
    margin: 3.8rem auto 0;
    color: #000034;
  }
  .hero-frontpage .slide-link svg {
    width: 31px;
    height: 30px;
  }
}