﻿
.main_sec .details_Sec{
    background-color: #2f86d3;
    color: #fff;
    padding: 30px 50px;
}
.details_Sec h3{
    color: #fff;
}
.main_sec .heading{
    color: #fbdd6b;
}
.main_sec .details_Sec .fa{
    color: #fff;
    margin-right: 5px;
    font-size: 24px;

}
.main_sec .input_box{
  height: 50px;
  width: 100%;
  position: relative;
  margin-top: 15px;
}
.input_box .input{
  height: 100%;
  width: 100%;
  outline: none;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding-left: 45px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.input_box .input:focus{
  border-color: #2f86d3;
}
.input_box .icon{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: grey;
}

.button .input{
  padding-left: 0;
  background: #2f86d3;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s linear;
}
.button .input:hover{
  background: #2f86d3;
}


.form_sec{
    padding: 30px 50px !important;
}

@media screen and (max-width:767px) {
    .details_Sec{
        display: none;
    }
}