.contact-page {
  .banner {
    background-size: cover;
    background-position: center;
    background-image: url("/images/contact-banner.png");
    background-color: $off-white;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    img {
      width: 75px;
      height: auto;
      display: block;
      margin: auto;
      margin-bottom: 4px;
    }

    h1 {
      font-weight: 600;
      font-size: (36em / 16);
      line-height: (45em / 36);
    }

    strong {
      font-size: (16em / 16);
      line-height: (26em / 16);
      color: $charcoal;
      font-weight: 700;
    }

    p {
      font-size: (16em / 16);
      font-weight: 600;
      line-height: (26em / 16);
      margin-top: (26em / 16);
      span {
        font-weight: 700;
      }
    }

    .banner-text {
      @include breakpoint(br-768 up) {
        width: 640px;
        margin: 0 auto;
      }
    }

  }

  .message {
    font-size: (14em / 16);
    line-height: (17em / 14);
    min-height: (250em / 16);
    min-width: 100%;
    color: $charcoal;
    font-weight: 600;
    &:focus {
      border: none;
      border-bottom: 2px solid $dark-mint;
    }
    &:hover {
      border: none;
      border-bottom: 2px solid $charcoal;
    }
  }

  .form-container {
    padding-top: 10px;
    @include breakpoint(medium up) {
      padding-top: 70px;
    }
    padding-bottom: 70px;
    .contact-form {
      border: 2px solid $light-mint;
      box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      padding: 24px;
      h2 {
        text-align: center;
        font-size: (22em / 16);
        line-height: (28em / 22);
      }
      .divider {
        display: block;
        margin-top: 16px;
        margin-bottom: 24px;
      }

    }
    .details {
      font-size: (16em / 16);
      line-height: (34em / 16);
      margin-top: 16px;
      margin-bottom: 48px;
      text-align: center;
      @include breakpoint(large up) {
        margin-top: (24em / 16);
        text-align: left;
        margin-bottom: unset;
      }
      strong {
        display: block;
        &.mb-6 {
          margin-bottom: 6px;
        }
      }
      p {
        margin-bottom: 10px;
      }
      .divider {
        margin: 18px auto 12px;
        @include breakpoint(large up) {
          margin: 24px 0 18px;
        }
        width: 40px;
        height: 4px;
        display: block;
        background-color: $off-white;
      }
    }
  }

}
.reveal {
  .message {
    font-size: (14em / 16);
    line-height: (17em / 14);
    min-height: (250em / 16);
    min-width: 100%;
    color: $charcoal;
    font-weight: 600;
    &:focus {
      border: none;
      border-bottom: 2px solid $dark-mint;
    }
    &:hover {
      border: none;
      border-bottom: 2px solid $charcoal;
    }
  }
}