@charset "utf-8";
/* CSS Document */
.box2{
	border-radius:100%; 
    position: relative;
    perspective: 1000px;
}
.box2 img{
	box-sizing:border-box; 
	border:5px solid #fdde8f;
	border-radius:100%; 
    width:204px;
    height:204px;
    opacity:1;
    transform: translateY(0) rotateX(0);
    transition: all 0.6s ease-in-out 0s;
}
.box2:hover img{
    transform: translateY(-100%) rotateX(90deg);
    transform-origin: center bottom 0;
    opacity:0;
}
.box2 .over-layer{
	border-radius:100%; 
    position: absolute;
    top:80px;
    left:0;
    width:100%;
    height:204px;
    opacity:0;
    text-align:center;
    transition: all 0.60s ease-in-out 0s;
	 color:#FFF
}
.box2:hover .over-layer{
    opacity:1;
}
.box2 .title,
.box2 .description,
.box2 .social-links{
    position: relative;
    top: 11%;
    color: #d3d3d3;
}
.box2 .title{
    text-transform: capitalize;
}
.box2 .title:after,
.box2 .description:after{
    content:"";
    width: 50%;
    display: block;
    margin: 10px auto 0;
    border-bottom: 1px solid #fff;
}
.box2 .social-links{
    padding:0;
    margin:0;
    list-style: none;
}
.box2 .social-links li{
    margin: 10px;
    display: inline-block;
}
.box2 .social-links li a{
    color: #fff;
    font-size: 20px;
}
.box2 .social-links li a:hover{
    color: #d3d3d3;
    text-decoration: none;
}

