/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero-frontpage .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
}
.hero-frontpage .content .heading-pill {
  margin: 0 0 3.5rem;
}
.hero-frontpage .content .heading {
  text-transform: uppercase;
  margin: 0 0 3.2rem;
}
.hero-frontpage .content .text {
  font-size: 2.4rem;
}
.hero-frontpage .content .ticks {
  list-style: none;
  padding: 0;
  margin: 3.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  gap: 0.8rem 2.3rem;
}
.hero-frontpage .content .ticks li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
}
.hero-frontpage .content .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin: 4.8rem 0 0;
}
.hero-frontpage .image {
  padding: 0 4.2rem 0 3rem;
}
.hero-frontpage .image .image-container {
  position: relative;
}
.hero-frontpage .image .hero-image {
  width: 100%;
  height: auto;
  border-radius: 2.4rem;
}
.hero-frontpage .image .badge {
  opacity: 0;
  transform: translateX(25px);
  animation: fadeInSlideIn 0.5s ease-out 0.3s forwards;
  position: absolute;
  top: 4.6rem;
  right: -4.2rem;
  padding: 1.8rem 2.4rem;
  background-color: #FF812C;
  border-radius: 2.4rem;
  box-shadow: 0 46px 13px 0 rgba(0, 0, 0, 0), 0 30px 12px 0 rgba(0, 0, 0, 0.01), 0 17px 10px 0 rgba(0, 0, 0, 0.05), 0 7px 7px 0 rgba(0, 0, 0, 0.09), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-frontpage .image .badge .badge-value {
  font-size: 3.6rem;
  line-height: 125%;
  font-weight: 700;
  font-family: "Playfair Display", sans-serif;
}
.hero-frontpage .image .badge .badge-label {
  line-height: 125%;
  font-weight: 500;
}
.hero-frontpage .image .quote {
  opacity: 0;
  transform: translateX(-25px);
  animation: fadeInSlideIn 0.5s ease-out 0.5s forwards;
  position: absolute;
  left: -3rem;
  bottom: 12.6rem;
  max-width: 24.7rem;
  padding: 3.2rem 2.4rem 1.6rem;
  background-color: #fff;
  border-radius: 2.4rem;
  box-shadow: 0 53px 15px 0 rgba(194, 194, 194, 0.01), 0 34px 13px 0 rgba(194, 194, 194, 0.07), 0 19px 11px 0 rgba(194, 194, 194, 0.23), 0 8px 8px 0 rgba(194, 194, 194, 0.38), 0 2px 5px 0 rgba(194, 194, 194, 0.44);
}
.hero-frontpage .image .quote .quote-stars {
  display: flex;
  gap: 0;
  margin: 0 0 1.4rem;
}
.hero-frontpage .image .quote .quote-text,
.hero-frontpage .image .quote .quote-author {
  font-size: 1.4rem;
  font-style: italic;
}
.hero-frontpage .image .quote .quote-author {
  color: #138E00;
  margin: 0.8rem 0 0;
}
.hero-frontpage .image .pills {
  position: absolute;
  bottom: 4.6rem;
  left: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.3rem;
}

@media (max-width: 1300px) {
  .hero-frontpage .image {
    padding: 6.1rem 1.8rem 0 1rem;
  }
  .hero-frontpage .image .quote {
    left: -1rem;
    top: -6.1rem;
    bottom: auto;
    transform: translateY(-25px);
  }
  .hero-frontpage .image .badge {
    transform: translateY(-25px);
    top: -3.7rem;
    right: -1.8rem;
  }
}
@media (max-width: 1024px) {
  .hero-frontpage .image .quote {
    padding: 2.4rem 2rem 1.2rem;
  }
  .hero-frontpage .image .badge {
    padding: 1.2rem 1.7rem;
  }
  .hero-frontpage .image .badge .badge-value {
    font-size: 2.5rem;
  }
  .hero-frontpage .image .badge .badge-label {
    font-size: 1.3rem;
  }
  .hero-frontpage .image .pills {
    bottom: 1.6rem;
    left: 1.6rem;
    gap: 0.8rem;
  }
}
@media (max-width: 850px) {
  .hero-frontpage .container {
    padding-top: 2rem;
    grid-template-columns: 1fr;
    gap: 5.6rem;
  }
  .hero-frontpage .content .heading-pill,
  .hero-frontpage .content .heading {
    margin: 0 0 2.4rem;
    text-align: center;
  }
  .hero-frontpage .content .text {
    font-size: 1.8rem;
    text-align: center;
  }
  .hero-frontpage .content .ticks {
    margin: 2.4rem 0 0;
    gap: 1.6rem;
    justify-content: center;
  }
  .hero-frontpage .content .buttons {
    gap: 1.6rem;
    margin: 3.2rem 0 0;
    justify-content: center;
  }
  .hero-frontpage .content .buttons .button {
    width: 100%;
    max-width: 45rem;
  }
  .hero-frontpage .image .hero-image {
    border-radius: 0.8rem;
  }
}