/*-- partner --*/
.box{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box img{
    width: 100%;
    height: auto;
    transition: all .4s ease-in;
}
.box:hover img{
    filter: grayscale(1) blur(3px);
    transform: scale(1.2);
}
.box .box-content{
    color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.box .title,
.box .post{
    color: #fff;
    background: rgba(0,0,0,.6);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    padding: 10px 5px;
    margin: 0;
    transform: scale(0);
    position: absolute;
    top: 20px;
    left: 0;
    transition: all .5s ease-in-out;
}
.box .post{
    font-size: 16px;
    font-weight: 600;
    top: auto;
    bottom: 20px;
}
.box:hover .title,
.box:hover .post{
    transform: scale(1);
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%) translateY(-50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}
.box:hover .icon{ transform: translateX(-50%) translateY(-50%) scale(1); }
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a{
    color: #fff;
    background: rgba(0,0,0,.6);
    font-size: 17px;
    line-height: 32px;
    height: 36px;
    width: 36px;
    border: 2px solid #fff;
    display: block;
    transition: all .3s ease-in-out;
}
.box .icon li a:hover{
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px #fff;
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
}