.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.hero.is-style-full {
  height: calc(100vh - 8px);
}
@media (max-width: 767px) {
  .hero.is-style-full {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.hero.is-style-full .hero-canvas {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero.is-style-default {
  aspect-ratio: 1920/400;
  min-height: 330px;
}
@media (max-width: 1550px) {
  .hero.is-style-default {
    aspect-ratio: unset;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1280px) {
  .hero.is-style-default {
    min-height: 280px;
  }
}
.hero .hero-canvas {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: var(--section-padding) 0;
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 1550px) {
  .hero .hero-canvas {
    padding-bottom: 30px;
  }
}
.hero .hero-canvas .hero-scroll {
  position: absolute;
  left: calc(50% - 30px);
  bottom: 80px;
  width: 60px;
  height: 50px;
  background-image: url("../../../../../wp-content/uploads/icon_dropdown.svg");
  background-size: 40px;
  background-position: center bottom;
  background-repeat: no-repeat;
  font-family: var(--subheadline-family);
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
  -webkit-animation: arrowIn 1.3s;
          animation: arrowIn 1.3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.hero .hero-content {
  --font-color: #FFFFFF;
  --headline-color: #FFFFFF;
  padding: 0 var(--gap);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .hero .hero-content {
    padding-left: var(--inner-padding);
    padding-right: var(--inner-padding);
  }
}
.hero .hero-headline {
  font-size: 50px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 1280px) {
  .hero .hero-headline {
    font-size: 36px;
  }
}
@media (max-width: 1080px) {
  .hero .hero-headline {
    font-size: 30px;
  }
}
.hero .hero-subheadline {
  display: block;
  position: relative;
  font-size: 14px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
}
.hero .hero-copy {
  max-width: 750px;
}
.hero .gb-button {
  border: 2px solid #FFFFFF;
}
.hero .gb-button:hover {
  background-color: #FFFFFF;
  color: var(--color-brand);
}
.hero .hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.hero .hero-media img, .hero .hero-media video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes arrowIn {
  0% {
    bottom: 80px;
    opacity: 1;
  }
  100% {
    bottom: 40px;
    opacity: 0;
  }
}

@keyframes arrowIn {
  0% {
    bottom: 80px;
    opacity: 1;
  }
  100% {
    bottom: 40px;
    opacity: 0;
  }
}/*# sourceMappingURL=hero.css.map */