.box .pic{
    position: relative;
    overflow: hidden;
    border-top: 3px solid #F2F3F3;
    border-left: 3px solid #F2F3F3;
    border-right: 3px solid #F2F3F3
}

.som{
  box-shadow: none;
  transition: all 0.3s ease-in-out 0s;
    border: 2px solid #CDDDE1;
}
.som:hover{
    border: 1px solid #ADC8E2;
    opacity: 20px;
     box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.3s ease-in-out 0s;
    border-radius: 10px
}
/*.box:hover .pic:before{
    opacity: 0.4;
}*/

.box .pic:after{
    content: "";
    width: 100%;
    position: absolute;
    top: 0%;
    left:0;
    bottom: 0%;
    background: rgba(0, 0, 0, 0.1);
   
}
/*.box:hover .pic:after{
    left: -50%;
}
*/
.box .pic img{
    width: 100%;
    height: auto;
}

.box .icon-1,
.box .icon-2{
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.box .icon-1{  left: 0; }
.box .icon-2{ right: 0; }

.box:hover .icon-1,
.box:hover .icon-2{
    opacity: 1;
}

.box .icon-1 a,
.box .icon-2 a{
    display: inline-block;
    font-size: 25px;
    color: #fff;
    position: relative;
    top: 47%;
}

.box .box-content{
    background: #d3e8fb;
    text-align: center;
    padding: 5px 13px;
    transition: all 0.3s ease 0s;
    font-weight: bold;
    height: 40px
}

.box:hover .box-content{
    background: #ADC8E2;
    
}

.box .title{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 0;
}

.box .post{
    display: block;
    font-size: 12px;
    color: #80868a;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 3%;
}

.box:hover .post{
    color: #fff;  
}

@media only screen and (max-width: 990px){
    .box{ margin-bottom: 20px; }
}