.fullscreen-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
@media only screen and (min-width: 768px) {
  .fullscreen-media {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    align-items: end;
  }
}
.fullscreen-media__bg {
  grid-column: span 16;
}
.fullscreen-media__logo {
  display: none;
}
@media only screen and (min-width: 768px) {
  .fullscreen-media__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .fullscreen-media__logo svg {
    width: 100%;
    max-width: 26rem;
    margin: auto;
  }
}
.fullscreen-media__big-copy {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullscreen-media__copy {
  position: relative;
  font-family: "plantin";
  font-size: 1.125rem;
  line-height: 1.375rem;
  --mb: 1.375rem;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .fullscreen-media__copy {
    grid-column: 3/span 6;
    grid-row: 1;
  }
}
.fullscreen-media__sub-heading {
  font-family: "aktiv-grotesk";
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  line-height: 1.125rem;
  --mb: 1.125rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.fullscreen-media__heading {
  font-family: "plantin";
  font-size: 2rem;
  letter-spacing: 0.5px;
  line-height: 2.625rem;
  --mb: 2.625rem;
  margin-bottom: 0.625rem;
}
.fullscreen-media__big-heading {
  display: none;
}
@media only screen and (min-width: 768px) {
  .fullscreen-media__big-heading {
    display: block;
    font-family: "aktiv-grotesk";
    font-size: 6.25rem;
    letter-spacing: 3px;
    line-height: 6.875rem;
    --mb: 6.875rem;
    color: var(--white);
    z-index: 1;
    grid-column: 2/span 14;
    align-self: center;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .fullscreen-media__cta {
    grid-column: 9/span 6;
    grid-row: 1;
    text-align: right;
    margin-bottom: 2rem;
  }
}
.fullscreen-media__cta .button-large {
  border-color: currentColor;
}

scroll-to {
  font-family: "plantin";
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: 1.3125rem;
  --mb: 1.3125rem;
  text-transform: uppercase;
  display: block;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  z-index: 1;
  transition: all 0.3s ease;
  background-color: rgba(var(--white_rgb), 0.5);
  border-radius: 1.25rem;
}
@media only screen and (min-width: 768px) {
  scroll-to {
    opacity: 0.8;
  }
  scroll-to:hover {
    opacity: 0.3;
    cursor: pointer;
  }
}
