.demo{
    padding: 1em 0; margin:5% 0;
}
.box{  color:#ffffff; margin:4% 0; 
    position: relative;
    perspective: 1000px;
}
.box .box-img{ 
    transform: rotateY(0);
    transition: all 0.50s ease-in-out 0s;
}
.box:hover .box-img{
    transform: rotateY(-90deg);
}
.box .box-img img{ width: 100%; height: auto; }

.box .box-img strong{ width:100%; display:block; text-align:center; background:rgba(185,151,75,0.8); padding:10px 0; width:200px; margin:0 auto; border-radius:20px; color:#fff;   }

.box-content h4{ display:none; }
.box-content img{ width:30%; margin:0 auto; display:block;}
.box-content strong{ font-size:20px; display:block; text-align:center; line-height:40px; }

.box .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding:0px 20px 60px 20px;
    text-align: center;
    background: rgba(185,151,75,0.8);
    transform: rotateY(90deg);
    transition: all 0.50s ease-in-out 0s;
}
.box:hover .box-content{ overflow:hidden; transform: rotateY(0); }
.box .title{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.box .description{ margin:5% 0 15px 0;
    font-size: 14px;
    line-height: 24px;
    /*color: #fff;*/
}
.box .description p{overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.box .title:after,
.box .description:after{
    content: "";
    width: 80%;
    display: block;
    border-bottom: 0px solid #fff;
    margin: 15px auto;
}
.box .social-links{
    margin: 10% 0 0 0;
    padding: 0;
    list-style: none;
}
.box .social-links li{
    display: inline-block;
    margin: 0 10px;
}
.box .social-links li a{ padding:3px 15px; margin:20px 0 0 0; border:1px solid #fff; 
    font-size: 16px;
    color: #fff;
}
.box .social-links li a:hover{ background:#fff;
    text-decoration: none;
    color: #b9974b;
}
@media only screen and (max-width: 990px) {
    .box{  margin-bottom:20px; }
.box .description{ margin:3% 0 10px 0; 
    font-size: 14px;
    line-height: 24px;
    /*color: #fff;*/
}
.box .social-links{
    margin: 0% 0 0 0;
    padding: 0;
    list-style: none;
}
}
@media only screen and (max-width: 479px) {
    .box .box-content{ padding: 20px; }
}