.box{
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    position: relative;
}

.box:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(88,51,45,0.8);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}

.box:hover:before{ opacity: 1; }

.box img{
    width: 100%;
    height: auto;
}

.box .icon{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.box .icon li{ display: inline-block; }

.box .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 5px;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.box .icon li a:hover{
    border-color: #e7a50f;
    background: #e7a50f;
}

.box .icon li:first-child a{ transform: translateX(0); }

.box .icon li:last-child a{ transform: translateX(0); }

.box:hover .icon li:first-child a,
.box:hover .icon li:last-child a{
    opacity: 1;
    transform: translateX(50px);
}

.box:hover .icon li:last-child a{ transform: translateX(-50px); }

.box .box-content{
    width: 100%;
    padding-bottom: 30px;
    color: #fff;
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease 0s;
}

.box:hover .box-content{ bottom: 0; }

.box .title{
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #e7a50f;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.box .post{
    display: block;
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
}

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

@media only screen and (max-width:479px){
    .box .box-content{ padding-bottom: 15px; }
}