.block--hero-fullscreen {
  height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .block--hero-fullscreen {
    max-width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
  }
}
.block--hero-fullscreen .hero-fullscreen {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
.block--hero-fullscreen .hero-fullscreen__image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@supports (object-fit: cover) {
  .block--hero-fullscreen .hero-fullscreen__image img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media all and (-ms-high-contrast: none) {
  .block--hero-fullscreen .hero-fullscreen__image img {
    position: absolute;
    right: 50%;
    bottom: 50%;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(50%, 50%);
  }
}
.block--hero-fullscreen .hero-fullscreen__content {
  width: 1680px;
  max-width: 100%;
  padding: 0 16px 120px;
  margin: 0 auto;
  z-index: 1;
}
.block--hero-fullscreen .hero-fullscreen__headline {
  color: var(--c-white);
  max-width: 640px;
  margin-bottom: 24px;
}
.block--hero-fullscreen .hero-fullscreen__copy {
  color: var(--c-white);
  max-width: 640px;
  margin-bottom: 36px;
}
.block--hero-fullscreen .hero-fullscreen__buttons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 640px;
  margin-top: 24px;
}
.block--hero-fullscreen .hero-fullscreen--has-gradient .hero-fullscreen__image:after {
  content: "";
  display: block;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.1) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.is-ios .block--hero-fullscreen .hero-fullscreen__content {
  padding-bottom: 172px;
}

/*# sourceMappingURL=block_hero_fullscreen.css.map */
