.serviceBox{
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 15px;
    padding-top: 35px;
	padding-bottom: 35px;
    position: relative;
    transition: all 0.4s ease-in-out 0s;
	background-color:#fff;
	width:85%;
}
.serviceBox:hover{
    transform: scale(1.05, 1.05);
}
.serviceBox .service-icon{
    width: 120px;
    height: 120px;
    line-height: 70px;
    border-radius: 50%;
    border: 5px solid #8b4727;
    font-size: 42px;
    color: #8b4727;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.2s ease-out 0s;
	padding-top:10px;
}
.serviceBox:hover .service-icon{
    border-color: #d89374;
}
.serviceBox .service-icon i{
    transform: rotate(0);
    transition: all 0.2s ease-out 0s;
}
.serviceBox:hover .service-icon i{
    transform: rotate(360deg);
    color: #d89374;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: bold;
    color: #4a4a4a;
    line-height: 40px;
    margin: 0 0 35px 0;
    position: relative;
}
.serviceBox .title:after{
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #d89374;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    transition: all 0.2s ease-out 0s;
}
.serviceBox:hover .title:after{
    width: 100%;
}
.serviceBox .description{
    font-size: 12px;
    color: #7a7a7a;
    line-height: 24px;
    margin-bottom: 20px;
}
.serviceBox .read-more{
    display: inline-block;
    padding: 8px 22px;
    background: #8b4727;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    border-radius: 40px;
    transform: scale(1);
    transition: all 0.2s ease-out 0s;
}
.serviceBox .read-more:hover{
    transform: scale(1.1, 1.1);
}
.serviceBox:hover .read-more{
    background: #d89374;
}
@media only screen and (max-width: 990px){
    .serviceBox{ margin-bottom: 40px; }
}