.contact-us {
    padding: 0 0 120px 0;
  }
  
  .contact-us .wrapper {
    background-image: url('../img/contact-shape.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
  }
  
  .contact-left {
    max-width: 550px;
    width: 100%;
  }
  
  .contact-form {
    max-width: 770px;
    width: 100%;
  }
  
  .contact-us .section-title .title {
    position: relative;
    padding-left: 45px;
    font-size: 48px;
    line-height: 54px;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    color: #0e0e0e;
    text-align: left;
  }
  
  .contact-us .section-title .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #086ad8;
    height: 150px;
    width: 4px;
    transform: translateY(-50%);
  }
  
  .contact-info ul {
    padding-top: 15px;
  }
  
  .contact-info-item .contact-info-text {
    margin-left: 20px;
  }
  
  .contact-info-item .contact-info-text .title {
    font-size: 24px;
    line-height: 30px;
    color: #0e0e0e;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    
  }
  
  .contact-info ul li {
    margin-top: 15px;
    padding-right: 65px;
  }
  
  .contact-info-item .contact-info-text p {
    font-size: 16px;
    line-height: 30px;
    color: #0e0e0e;
  }
  
  .contact-info-item {
    display: flex;
    align-items: center;
  }
  
  .contact-info-icon svg {
    max-width: 50px;
    height: 72px;
    width: 100%;
  }
  
  .contact-form-wrap {
    max-width: 636px;
    width: 100%;
    margin-left: auto;
    background: #ffffff;
    box-shadow: 0px 0px 139px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 40px;
  }
  
  .contact-form-wrap .heading-wrap .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #086ad8;
  }
  
  .contact-form-wrap .heading-wrap {
    margin-bottom: 30px;
  }
  
  .contact-form-wrap .heading-wrap .title {
    font-size: 42px;
    line-height: 54px;
    font-weight: 600;
    color: #333333;
  }
  
  .form-divider {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .contact-form-wrap .single-form {
    margin-top: 25px;
  }
  
  .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]), textarea { 
    height: 55px;
    line-height: 55px;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    box-shadow: none;
    color: #415674;
    border-radius: 4px;
    background-color: #ffffff;
    margin-bottom: 0;
    padding: 10px 25px;
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    line-height: 30px;
    transition: all 0.3s linear;
    outline: none;
  }
  
  .form-col-lg {
    max-width: 100%;
    width: 100%;
  }
  
  .form-col {
    max-width: 46%;
    width: 100%;
  }
  
  .contact-form-wrap .single-form textarea {
    height: 135px;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    resize: none;
  }
  
  .form-btn {
    margin-top: 25px;
  }
  
  .form-btn .btn {
    font-size: 16px;
    width: 100%;
    height: 55px;
    line-height: 50px;
    margin-bottom: 10px;
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(195deg, #086ad8 0%, #42b9ff 100%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    padding: 0px 70px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
  }
  
  .form-btn .btn::before {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .form-btn .btn::after {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
  }
  
  .form-btn .btn:hover {
    color: #fff;
  }
  
  .form-btn .btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
  }
  
  
  .form-btn .btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
  