.box{
     background-color: #000;

     overflow: hidden;
     position: relative;
 }
 .box:before{
     content: '';
     border: 1px solid #fff;
     transform: scaleY(0);
     position: absolute;
     left: 12px;
     top: 12px;
     bottom: 27px;
     right: 12px;
     z-index: 1;
     transition: all 0.5s ease 0s;
 }
 .box:hover:before{ transform: scaleY(1); }
 .box img{
     width: 100%;
     height: auto;
     transition: all 0.5s ease 0s;
 }
 .box:hover img{
     opacity: 0.2;
     transform: scale(1.1);
     transform-origin: left top;
 }
 .box .box-content{
     color: #fff;
     text-align: center;
     width: 90%;
     filter: blur(5px);
     opacity: 0;
     transform: translateX(-50%) translateY(50%);
     position: absolute;
     bottom: 50%;
     left: 50%;
     z-index: 2;
     transition: all 0.5s ease 0.2s;
 }
 .box:hover .box-content{
     filter: blur(0);
     opacity: 1;
 }
 .box .title{
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     margin: 0;
     color: #fff;
 }
 .box .post{
     color: #fff;
     font-size: 13px;
     font-style: italic;
     text-transform: capitalize;
     display: block;
 }
 .box .icon{
     padding: 0;
     margin: 0;
     list-style: none;
     opacity: 0;
     transform: translateX(-50%) scale(0);
     position: absolute;
     left: 50%;
     bottom: 10px;
     z-index: 1;
     transition: all 0.3s ease 0.3s;
 }
 .box:hover .icon{
     opacity: 1;
     transform: translateX(-50%) scale(1);
 }
 .box .icon li{
     margin: 0 3px;
     display: inline-block;
 }
 .box .icon li a{
     color: #000;
     background-color: #fff;
     font-size: 15px;
     text-align: center;
     line-height: 38px;
     height: 35px;
     width: 35px;
     display: block;
     transition: all 0.3s ease 0s;
 }
 .box .icon li a:hover{
     color: #000;
     background: #4cd137;
 }
 @media only screen and (max-width:990px){
     .box{ margin: 0 0 30px; }
 }


.serviceBox{
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 25px 6px;
    position: relative;
    z-index: 1;
    margin-bottom:30px;
}
.serviceBox img{border-radius: 100%;border: solid 2px;padding: 6px;width: 84px;}


.serviceBox:before,
.serviceBox:after{
    content: '';
    background: linear-gradient(#a64cef, #882FD5);
    border-radius: 20px;
    position: absolute;
    left: 10px;
    right: 0;
    top: 15px;
    bottom: 0;
    z-index: -1;
}
.serviceBox:after{
    background: #fff;
    left: 0;
    right: 10px;
    top: 0;
    bottom: 15px;
    clip-path: polygon(30% 0, 100% 0, 100% 85%, 75% 100%, 0 100%, 0 20%);
}
.serviceBox .service-icon{
    color: #882FD5;
    font-size: 35px;
    text-shadow: 4px 4px rgba(0,0,0,0.1);
    margin: 0 0 10px;
}
.serviceBox .title{
    color: #882FD5;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 21px;
}
.serviceBox .title span{ font-weight: 700; }
.serviceBox .description{
    color: #888;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 21px;
    height: 155px;
}
.serviceBox .read-more{
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    position: absolute;
    right: 15px;
    bottom: 9px;
    transition: all 0.3s ease 0s;
}
.serviceBox .read-more:hover{
    color: rgba(255,255,255,0.7);
    text-shadow: 3px 3px rgba(255,255,255,0.1);
}
.serviceBox.darkgreen:before{ background: linear-gradient(#00A28D, #007385); }
.serviceBox.darkgreen .service-icon,
.serviceBox.darkgreen .title{
    color: #007385;
}
.serviceBox.blue:before{ background: linear-gradient(#00BFE9, #0170DC); }
.serviceBox.blue .service-icon,
.serviceBox.blue .title{
    color: #0170DC;
}
.serviceBox.green:before{ background: linear-gradient(#93c916, #3AB447); }
.serviceBox.green .service-icon,
.serviceBox.green .title {


    color: #3AB447;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 30px; }
}










 
.testimonial{
    padding: 70px 30px 50px;
    margin: 50px 30px 30px;
    border: 1px solid #9e9e9e;
    position: relative;
}
.testimonial .pic{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #ff5d01;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    font-size: 15px;
    color: #5e595b;
    line-height: 27px;
    text-align: center;
    margin: 0;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 25px;
    color: #d7d7d7;
    position: absolute;
    top: 0;
    left: -2px;
}
.testimonial .title{
    display: inline-table;
    padding: 1px 10px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #9e9e9e;
    font-size: 14px;
    font-weight: 700;
    color: #ff5d01;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
}
.testimonial .post{
    font-size: 15px;
    color: #671a36;
}
.owl-theme .owl-controls{
    width: 100%;
    height: 50px;
    opacity: 1;
    position: absolute;
    top: 38%;
}
.owl-theme .owl-controls .owl-buttons div{
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 0;
    background: transparent;
}
.owl-prev{
    position: absolute;
    left: -5%;
}
.owl-next{
    position: absolute;
    right: -5%;
}
.owl-prev:after,
.owl-next:after{
    content: "\f104";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    font-size: 30px;
    color: #c7373c;
    opacity: 1;
}
.owl-next:after{ content: "\f105"; }
 
@media only screen and (max-width: 479px){
    .testimonial{ padding: 70px 10px 30px; }
    .testimonial .description:before{ top: -20px }
    .testimonial .title{ font-size: 12px; }
    .testimonial .post{ font-size: 11px; }
}










