.box{
    color: #fff;
    background: #000;
    font-family: 'Rowdies', cursive;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}
.box:before{
    content: "";
    border: 8px solid #fff;
    opacity: 0;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 15px;
    right: 15px;
    transition: all 0.4s ease-in-out;
}
.box:hover:before{
    top: 15px;
    bottom: 15px;
    opacity: 0.9;
}
.box img{
    width: 100%;
    height: auto;
    transition: all 0.2s ease-out;
}
.box:hover img{ opacity: 0.2; }
.box-content{
    text-align: right;
    opacity: 0;
    position: absolute;
    top: 31px;
    right: 33px;
    transition: all 0.4s ease-in-out;
}
.box:hover .box-content{ opacity: 1; }
.box .title{
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    margin: 0 0 2px;
}
.box .post{
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-shadow: 2px 2px 3px rgba(0,0,0,.2);
    display: block;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    bottom: 30px;
    left: 33px;
    transition: all 0.4s ease-in-out;
}
.box:hover .icon{ opacity: 1; }
.box .icon li{
    display: inline-block;
    margin: 0 6px 0 0;
}
.box .icon li a{
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    height: 30px;
    width: 30px;
    border: 1px solid #fff;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
    display: block;
    transition: all 0.4s ease-in-out;
}
.box .icon li a:hover{
    background: rgb(219, 18, 18);
    transform: rotate(360deg);
    border-radius: 10px;
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
}

.white-color{
    color: #f1e7e7 !important;
}

.image-gallary{
    cursor: pointer;
}

.image-gallery-pd{
    padding-bottom: 30px !important;
}