@charset "UTF-8";
.hero-front-page {
  background-position: center;
  background-size: cover;
  position: relative;
}
.hero-front-page:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-front-page .container {
  position: relative;
  z-index: 2;
}
.hero-front-page .container .content {
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .hero-front-page .container .content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    padding: 6rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero-front-page .container .content {
    padding: 8rem 0;
  }
}
.hero-front-page .container .content figure {
  margin: 0;
  width: 50vw;
}
@media screen and (min-width: 768px) {
  .hero-front-page .container .content figure {
    width: 40vw;
    max-width: 30rem;
  }
}
.hero-front-page .container .content h2 {
  font-weight: 500;
  font-size: 6vw;
}
@media screen and (min-width: 768px) {
  .hero-front-page .container .content h2 {
    font-size: 2.25rem;
    text-wrap: balance;
    text-align: right;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1280px) {
  .hero-front-page .container .content h2 {
    font-size: 3rem;
  }
}
.hero-front-page .marquee {
  background: #2B2F33;
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem;
}
@media screen and (min-width: 1280px) {
  .hero-front-page .marquee {
    gap: 2rem;
  }
}
.hero-front-page .marquee span {
  color: white;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .hero-front-page .marquee span {
    font-size: 1.25rem;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 768px) {
  .hero-front-page .marquee span:nth-of-type(1) {
    display: flex;
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .hero-front-page .marquee span:nth-of-type(1) {
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .hero-front-page .marquee span:nth-of-type(1):after {
    content: " • ";
  }
}
@media screen and (min-width: 1024px) {
  .hero-front-page .marquee span:nth-of-type(2) {
    display: flex;
    gap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .hero-front-page .marquee span:nth-of-type(2) {
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero-front-page .marquee span:nth-of-type(2):after {
    content: " • ";
  }
}
