.contact-us-banner {
  background: url(../images/Contact-us-page-image.jpg) bottom center;
  background-size: cover;
}
.contact-us-banner .banner-content-wrapper {
  min-height: 550px !important;
}
.contact-us-wrapper {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contact-us-left-side {
  text-align: left;
  width: 50%;
  .contact-us-logo {
    max-width: 288px;
  }
}
.contact-us-form {
  width: 50%;
  padding: 22px;
  background-color: #f5f5f5;
  border-radius: 12px;
  .form-label {
    color: #7a7a7a;
  }
  .form-control {
    height: 45px;
    border-radius: 2px;
    border-color: #69727d;
    &::placeholder {
      color: #69727d;
    }
  }
  textarea.form-control {
    height: 90px;
    border-radius: 2px;
    border-color: #69727d;
  }
  .btn {
    color: #ffffff;
    background-color: #4ab03b;
    height: 46px;
    width: 100px;
  }
}
.contact-box {
  padding: 20px 10px 20px;
  border-bottom: 1px solid #1a3967;
  h3 {
    font-family: "Roboto", Sans-serif;
    font-weight: 700;
    color: #1a3967;
    font-size: clamp(1.5625rem, 1.4034rem + 0.7955vw, 2rem);
  }
  p {
    color: #7a7a7a;
    font-family: Lato;
    b {
      color: #000;
    }
  }
}
.follow-us-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  h3 {
    font-family: "Montserrat", Sans-serif;
    font-size: clamp(1.125rem, 0.9659rem + 0.7955vw, 1.5625rem);
    font-weight: 600;
    color: #1a3967;
  }
  ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    li {
      &:nth-child(1) a {
        background-color: #0077b5;
      }
      &:nth-child(2) a {
        background-color: #1da1f2;
      }
      &:nth-child(3) a {
        background-color: #3b5998;
      }
      &:nth-child(4) a {
        background-color: #262626;
      }
      &:nth-child(5) a {
        background-color: #cd201f;
      }
      a {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        border-radius: 50%;
        &:hover {
          opacity: 0.9;
        }
      }
    }
  }
}

.quick-access {
    margin-bottom: 50px;
  h3 {
    font-family: "Helvetica", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a3967;
  }
  ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    li {
        &:nth-child(1) a span{
            background-color: #34B7F1;
            color: #fff;
            font-size: 18px;
        }
        &:nth-child(2) a span{
            background-color: #00FF00;
            color: #fff;
            font-size: 18px;
        }
        &:nth-child(3) a span{
            background-color: #D5100D;
            color: #fff;
            font-size: 18px;
        }
      a {
        font-family: "Montserrat", Sans-serif;
        font-size: clamp(1.125rem, 1.0341rem + 0.4545vw, 1.375rem);
        font-weight: 600;
        color: #1a3967;
        text-decoration: none;
        display: flex;
        gap: 10px;
        span {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 30px;
          height: 30px;
          border-radius: 50%;
        }
      }
    }
  }
}

@media(max-width:767px){
    .contact-us-wrapper{
        flex-direction: column;
        .contact-us-left-side{
            width: 100%;
        }
        .contact-us-form{
            width: 100%;
        }
    }
}
@media (max-width:415px){
    .follow-us-wrapper{
        flex-direction: column;
        gap: 0;
    }
}