.demo{
    padding: 1em 0;
}
.box{
    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-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 20px;
    text-align:justify;
    background: rgba(220,220,220,0.7);
    transform: rotateY(90deg);
    transition: all 0.50s ease-in-out 0s;
}
.box:hover .box-content{
    transform: rotateY(0);
}
.box .title{
    font-size: 20px;
    color: #0099ff;
    text-transform: uppercase;
	text-align:center;
}
.box .description{
    font-size: 14px;
    line-height: 24px;
    color: #0099ff;
}
.box .title:after,
.box .description:after{
    content: "";
    width: 80%;
    display: block;
	height:100%;
	width:100%;
    border: 0.5px solid #0099ff;
    margin: 5px 5px;
}

/*
.box .social-links{
    margin: 0 5px;
    padding: 0 5px;
    list-style: none;
	word-break:break-all;
	word-wrap:break-word;
	text-align:left;
}
.box .social-links li{
    display: inline-block;
    margin: 0 5px;
	padding: 0 5px;
	word-break:break-all;
	word-wrap:break-word;
}
.box .social-links li a{
    font-size: 14px;
    color: #039;
	padding: 0 5px;
	word-break:break-all;
	word-wrap:break-word;
}
.box .social-links li a:hover{
    text-decoration: none;
    color: #fff;
} */
@media only screen and (max-width: 990px) {
    .box{  margin-bottom:20px; }
}
@media only screen and (max-width: 479px) {
    .box .box-content{ padding: 20px; }
	
	 width:278px;
	 height 278px;
	 
}