/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

.content-wrapper .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 1000px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .content-wrapper .hero {
    min-height: 900px;
    justify-content: center;
  }
}
.content-wrapper .hero_interior {
  margin-bottom: calc(-1 * (min(100vh, 1000px) - 150px));
}
@media (min-width: 768px) {
  .content-wrapper .hero_interior {
    margin-bottom: calc(-1 * (min(100vh, 1000px) - 250px));
  }
}
.content-wrapper .hero_interior + section {
  padding-top: 0 !important;
}
.content-wrapper .hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
}
.content-wrapper .hero__img.no-def::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../resources/img/hero-gradient.png");
}
.content-wrapper .hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
}
.content-wrapper .hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrapper .hero__video::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("../../../resources/img/hero-gradient.png");
}
.content-wrapper .hero__subtitle {
  color: var(--sk-color-mint);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 13px;
  margin-top: 220px;
  z-index: 2;
}
@media (min-width: 768px) {
  .content-wrapper .hero__subtitle {
    margin-top: 111px;
  }
}
.content-wrapper .hero__title {
  color: var(--sk-color-primary);
  text-align: center;
  font-weight: 500;
  margin-bottom: 45px;
  z-index: 2;
}
.content-wrapper .hero__button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}
.content-wrapper .hero__anchor {
  position: absolute;
  left: calc(50% - 12px);
  bottom: 100px;
  height: 35px;
  width: 25px;
  cursor: pointer;
  z-index: 2;
  -webkit-mask: url("../../../resources/img/icon-button-arrow.svg");
          mask: url("../../../resources/img/icon-button-arrow.svg");
  background: var(--sk-color-mint);
}
.content-wrapper .hero__anchor:hover {
  animation: 1s bounce infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(4px);
  }
}
