.contact-form {
    background-color:#ea7c23;
    padding:25px 50px;
}

.contact-form h2{
	color: #fff!important;
    font-size: 40px!important;
    margin-top: 0px!important;
}
.contact-form input, .contact-form textarea, .contact-form select {
    color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    height: 46px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 30px;
}
button.main-button-icon {
    border: none;
    outline: none;
    font-size: 13px;
    border-radius: 25px;
    padding: 13px 25px;
    background-color: #196baf;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#enquiry input, #enquiry textarea, #enquiry select {
    color: #7a7a7a;
    font-size: 15px;
    border: 1px solid #ffac00;
    background-color: #fff2db;
    width: 100%;
    height: 46px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 30px;
}


.services-box{
    background-color: #222;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
}
.services-box:before,
.services-box:after{
    content: '';
    background: #ff7b08;
    width: 10px;
    height: 90%;
    services-box-shadow: 15px 0 0 #ff7b08;
    transform: skewY(50deg);
    position: absolute;
    bottom: -100%;
    left: 5px;
    z-index: 1;
    transition: all 0.45s ease;
}
.services-box:after{
    services-box-shadow: -15px 0 0 #ff7b08;
    left:auto;
    right: 5px;
    bottom: auto;
    top: -100%;
}
.services-box:hover:before{ bottom: -10px; }
.services-box:hover:after{ top: -10px; }
.services-box img{
    width: 100%;
    height: auto;
    transition: all 0.45s;
}
.services-box:hover img{
    opacity: 0.3;
    filter: grayscale(90%);
}
.services-box .services-box-content{
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 30px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.45s ease;
}
.services-box:hover .services-box-content{ opacity: 1; }
.services-box .title{
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 2px;
}
.services-box .post{
    color: #ff7b08;
    font-size: 16px;
    text-transform: capitalize;
}
.services-box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) rotateX(90deg);
    transform-origin: bottom center;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transition: all 0.3s ease;
}
.services-box:hover .icon{
    opacity: 1;
    transform: translateX(-50%) rotateX(0);
}
.services-box .icon li{
    display: inline-block;
    margin: 0 2px;
}
.services-box .icon li a{
    color: #fff;
    background-color: #ff7b08;
    font-size: 14px;
    text-align: center;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
.services-box .icon li  a:hover{
    color: #ff7b08;
    background-color: #fff;
}
@media only screen and (max-width:990px){
    .services-box { margin: 0 0 30px; }
}