.box{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    overflow: hidden;
    padding: 3px;
    background: #093bd3;
}
.box:before{
    content: '';
    background: repeating-linear-gradient(135deg, rgba(255,255,255,.5),
                        rgba(255,255,255,.5) 5px, transparent 7px,
                        transparent 15px, rgba(255,255,255,.5) 10px);
    height: 100%;
    width: 100%;
    opacity: 0.3;
    transform: rotate3d(1, 1, 0, 90deg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s;
}
.box:hover:before{ transform: rotate3d(1, 1, 0, 0deg); }
.box img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.box:hover img{ filter: hue-rotate(40deg) saturate(2); }
.box .box-content{
    color: #fff;
    background:#093bd3;
    text-align: center;
    width: 100%;
    padding: 5px 10px;
    opacity:  1;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all 0.35s ease;
}
.box:hover .box-content{
    opacity: 1;
    filter: blur(0);
}
.box .title{
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 0 0 3px 0;
    font-family: 'Satisfy', cursive;
}
.box .post{
    font-size: 16px;
    text-transform: capitalize;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: rotate(50deg);
    transform-origin: right bottom;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    transition: all 0.3s;
}
.box:hover .icon{
    opacity: 1;
    transform: rotate(0);
}
.box .icon li a{
    color: #fff;
    background: #ff4757;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: block;
    position: relative;
    transition: all 0.3s;
    border: 2px solid #fff;
}
.box .icon li a:hover{
    color: #ff4757;
    background-color: #fff;
    box-shadow: -2px 2px 0 2px #ff4757;
}
@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}
@media only screen and (max-width:479px){
    .box .title{ font-size: 20px; }
}
.box .box-content {
    color: #fff;
    background: #dd1b00;
    text-align: center;
    width: 100%;
    padding: 5px 10px;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all 0.35s ease;
}
.box {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    overflow: hidden;
    padding: 8px;
    background: #dd1b00;
}

.box .title {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 0 0 3px 0;
    font-family: aria;
}