.contact-sec {
  padding: 100px 0 60px;
  background: #e4cfb5;
}

.common-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.common-heading p {
  font-size: 20px;
  margin-top: 10px;
}

.col-left {
  width: 30%;
}

.col-left .inner-row .inner-col {
  background-color: #fff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.col-left .inner-row .inner-col:hover {
  transform: scale(1.1);
}

.col-left .inner-row .inner-col i {
  font-size: 28px;
  color: #1289a1;
}

.col-left .inner-row .inner-col h6 {
  font-weight: 700;
  margin: 10px 0;
}

.col-right {
  width: 64%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  position: relative;
  /*Manu Provide it to set height*/
      height: 550px;
}

.col-right:hover {
  transform: scale(1.1);
}

.col-right h3 {
  margin-bottom: 30px;
}


@media(max-width:767px){
    .col-left,.col-right{
        width: 100%;
    }
}


