/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero {
  align-items: center;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0 6rem;
  position: relative;
  width: 100%;
}
.hero .hero-content {
  padding: 10rem 0 0;
}
.hero.height-small {
  aspect-ratio: 3.81/1;
}
.hero.height-medium {
  aspect-ratio: 2.56/1;
}
.hero.height-medium .scroll-indicator {
  bottom: 5.5rem;
}
.hero.height-medium .heading {
  max-width: 94.3rem;
}
.hero.height-large {
  aspect-ratio: 16/9;
}
.hero.text-left {
  text-align: left;
}
.hero.text-center {
  text-align: center;
}
.hero.text-center .hero-text {
  margin: 3.5rem auto 0;
}
.hero.text-center .hero-text li {
  width: fit-content;
  margin: 0 auto 0.8rem;
}
.hero.text-right {
  text-align: right;
}
.hero.text-right .hero-text {
  margin: 3.5rem 0 0 auto;
}
.hero.text-right .hero-text li {
  width: fit-content;
  margin: 0 0 0.8rem auto;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero .hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .hero-text {
  font-size: 2.2rem;
  line-height: 3.1rem;
  max-width: 82.2rem;
  margin: 3.5rem 0 0;
}
.hero .hero-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero .hero-text li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 4.2rem;
}
.hero .hero-text li:last-child {
  margin-bottom: 0;
}
.hero .hero-text li::before {
  content: url("../../../assets/icons/hero-check.svg");
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.hero .button {
  margin: 3.5rem 0 0;
  min-width: 18.8rem;
}
.hero .button:hover {
  color: #fff;
}
.hero .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

@media (max-width: 1200px) {
  .hero .scroll-indicator {
    bottom: 5%;
  }
  .hero .scroll-indicator svg {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 768px) {
  .hero.text-center .hero-text {
    margin: 2rem auto 0;
  }
  .hero.text-center .hero-text li {
    margin: 0 auto 0.6rem;
  }
  .hero.text-right .hero-text {
    margin: 2rem 0 0 auto;
  }
  .hero.text-right .hero-text li {
    margin: 0 0 0.6rem auto;
  }
  .hero .hero-content {
    padding: 5rem 0 0;
  }
  .hero .hero-text {
    margin: 2rem 0 0;
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
  .hero .button {
    margin: 2rem 0 0;
    min-width: 15rem;
  }
  .hero .scroll-indicator {
    display: none;
  }
}