.newhome-hero {
  position: relative;
  height: 100vh;
  min-height: 400px;

  @include sm {
    height: calc(100vh - 50px);
  }

  .std-button {
    @include sm {
      padding: 15px 50px;
    }
  }

  &__media-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    background-color: #000000;
  }

  .scroll-down-btn {
    position: absolute;
    left: 50%;
    bottom: 24px;
    margin-left: -20px;
  }
}

.newhome-hero__media-wrapper {
  height: 100%;
  width: 100%;

  img,
  video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }

  .newhome-hero--video & {
    img {
      display: none;

      @include sm {
        display: block;
      }
    }
  }

  @include sm {
    video {
      display: none;
    }
  }
}

.newhome-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding-top: $header-height;

  @include sm {
    padding-top: 0;
  }
}

.newhome-hero__content {
  display: flex;
  height: 100%;
  max-width: $projects-detail-width;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 24px 100px;
  text-align: left;
  margin: 0 auto;
  justify-content: center;

  .newhome-hero--center & {
    max-width: 640px;
    align-items: center;
    color: $white;
    padding: 48px 24px;
    text-align: center;
  }

  .newhome-hero--right & {
    max-width: $projects-detail-width;
    align-items: flex-end;
    color: $white;
    padding: 48px 24px;
    text-align: right;
  }

  @include sm {
    padding: 20px 20px 120px;
  }
}

.newhome-hero__title {
  font-family: var(--font-heading);
  font-size: 9.5rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 0;
  color: $white;
  max-width: 793px;
  letter-spacing: -0.95px;

  @include md {
    max-width: 609px;
    font-size: 7.5rem;
  }

  @include sm {
    font-size: 4.4rem;
    max-width: 340px;
  }

  h1 {
    max-width: 100%;
  }
}

.newhome-hero__subtitle {
  font-family: $font-default;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 130%;
  letter-spacing: 0.5px;
  color: $white;
  margin-bottom: 24px;
  max-width: 640px;

  @include sm {
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
}

.newhome-hero__content-subtitle {
  color: $white;
  max-width: 640px;

  * {
    color: $white !important;
  }

  a {
    text-decoration: underline !important;
  }

  p {
    font-size: 2.4rem;
    font-family: $font-default;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: .5px;
    margin-top: 0;
  }
}

.newhome-hero__cta {
  margin-top: 24px;

  @include sm {
    margin-top: 15px;
  }
}
