.contact-form-three {
  background-size: cover;
  padding: 35px 0 35px 0;
  position: relative;
  overflow: hidden;
  margin: 70px 0;
  border-radius: 10px;
}
.contact-form-three .form-grid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.contact-form-three .form-grid .info {
  width: 45%;
  padding: 0 30px;
}
.contact-form-three .form-grid .info .title {
  font-size: 37px;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}
.contact-form-three .form-grid .info .text p {
  line-height: 21px;
}
.contact-form-three .form-grid .image {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .contact-form-three {
    padding: 15px 0;
  }
  .contact-form-three .form-grid {
    flex-wrap: wrap;
  }
  .contact-form-three .form-grid .info {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .contact-form-three .form-grid .info .title {
    font-size: 25px;
  }
  .contact-form-three .form-grid .image {
    width: 100%;
    position: relative;
  }
}
