.contact-section {
  .map {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    iframe {
      height: 100%;
      width: 100%;
    }
  }

  .contact-column {
    &>div {
      margin-bottom: 80px;
      &:last-child {
        margin-bottom: 0;
      }
    }
    .title {
      color: $title-color;
      font-weight: bold;
      position: relative;
      padding-bottom: 20px;
      &:before {
        content: '';
        width: 50px;
        height: 3px;
        background-color: $title-color;
        position: absolute;
        bottom: 0;
        left: 0;
      }
    }
    .frm-control {
      padding: 8px 0;
      .label {
        font-size: 13px;
        color: $subtitle-color;
      }
      .text {
        margin-bottom: 0;
        color: $title-color;
        font-weight: bold;
      }

      input,
      textarea {
        display: block;
        width: 100%;
        padding: 8px 13px;
        border: 1px solid $disabled-color;
        &:focus {
          border-color: $title-color;
        }
      }

      .send-message-btn {
        border: 1px solid $title-color;
        background-color: transparent;
        color: $title-color;
        padding: 15px 25px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 14px;
        position: relative;
        z-index: 1;
        &:hover {
          color: #fff;
          &:before {
            left: 0;
            right: unset;
            width: 100%;
          }
        }
        &:before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          width: 0px;
          height: 100%;
          background-color: $title-color;
          display: block;
          // z-index: 0;
          mix-blend-mode: screen;
          transition: all 0.3s;
        }
      }
    }
  }
}
