.serviceBox{
    margin-top:15px;
    margin-bottom:20px;
    padding: 15px 30px;
    text-align: center;
    font-size: 19px;
    background: #ecc464;
    border-top: 3px solid #362706;
    border-bottom: 3px solid #eed956;
    position: relative;color:#fff;
}
.serviceBox:before{
    content: "";
    border-top: 0 solid #362706;
    border-right: 0 solid transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover:before{
    border-top-width: 78px;
    border-right-width: 78px;
}
.serviceBox:after{
    content: "";
    border-bottom: 0 solid #362706;
    border-left: 0 solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover:after{
    border-bottom-width: 78px;
    border-left-width: 78px;
}
.serviceBox .ok img{   
    width: 200px;
    height: 80px;
    border-radius:3px;
    background: #876445;
    color: #eed956;
}
.serviceBox h1 a{
    font-size: 30px;
    font-weight: bold;
    color: #362706;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .title{ letter-spacing: 3px; }
.serviceBox .description{
    font-size: 19px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}