.certificate .box {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #bad160;
    padding: 4px;
}
.certificate .box:before,
.certificate .box:after{
    content: "";
    background: #333;
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease 0s;
}
.certificate .box:after{
    background: #000;
    border: 1px solid #aaa;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transition: all 0.5s ease 0.2s;
}
.certificate .box:hover:before{
    opacity: 0.5;
    transform: scale(1);
}
.certificate .box:hover:after{
    opacity: 0.35;
    transform: scale(1);
}
.certificate .box img{
    width: 100%;
    height: auto;
}
.certificate .box .box-content{
    color: #fff;
    width: 85%;
    filter: blur(5px);
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.4s ease 0.3s;
}
.certificate .box:hover .box-content{
    filter: blur(0);
    opacity: 1;
}
.certificate .box .title{
    font-size: 25px;
    font-weight: 200;
    text-transform: capitalize;
    margin: 0 0 1px;
}
.certificate .box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.certificate .box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.certificate .box .icon li a{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    height: 27px;
    width: 27px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
    display: block;
    transition: all 0.3s ease 0s;
}
.certificate .box .icon li a:hover{
    color: #fff;
    background-color: #000;
}
.gallery {
    padding: 40px 0 0;
}
.blog-page .quality-list_marbtm {
    margin-bottom: 30px;
}
.inner_pages {
    padding: 50px 0 80px;
}
.inner_pages .box-shadow1{
    box-shadow: 0 0 3px gainsboro;
    padding: 20px;
}
.inner_pages h6 {
    font-size: 20px;
}
.inner_pages ul li a:hover {
    color: #000;
}
@media only screen and (max-width:990px){
    .certificate .box{ margin: 0 0 30px; }
}