@charset "utf-8";
/* CSS Document */
.box{
	text-align: center;	overflow: hidden;	color: #fff;	position: relative;
}
.box:after{
	content: "";	width: 100%;	height: 100%;	background: linear-gradient(to bottom, rgba(6, 59, 118, 0) 0%, rgba(6, 59, 118, 0.08) 69%, rgba(6, 59, 118, 0.76) 100%);
	position: absolute;	top: 0;	left: 0;	transition: all 0.5s ease 0s;
}
.box:hover:after{
	background: linear-gradient(to bottom, rgba(6, 59, 118, 0.01) 0%, rgba(6, 59, 118, 0.09) 11%, rgba(6, 59, 118, 0.12) 13%, rgba(6, 59, 118, 0.19) 20%, rgba(6, 59, 118, 0.29) 28%, rgba(6, 59, 118, 0.29) 29%, rgba(6, 59, 118, 0.42) 38%, rgba(6, 59, 118, 0.46) 43%, rgba(6, 59, 118, 0.53) 47%, rgba(6, 59, 118, 0.75) 69%, rgba(6, 59, 118, 0.87) 84%, rgba(6, 59, 118, 0.98) 99%, rgba(6, 59, 118, 0.94) 100%);
}
.box img{	width: 100%;	height: auto;}
.box .box-content{	width: 100%;	padding: 20px 0;	margin-bottom: 70px;	position: absolute;	bottom: 0;	left: 0;	z-index: 1;}
.box .title{
	font-size: 24px;
	text-transform: uppercase;
	margin: 0 0 0px 0;
	transform: translateY(145px);
	transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.box .post{
	display: block;
	padding: 0px 0; 
	font-size:18 px;
	transform: translateY(145px);
	transition: all 0.4s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}
.box:hover .title,
.box:hover .post{		transform: translateY(0);	}
.box .social{
	list-style: none;
	padding: 0 0 5px 0;
	margin: 40px 0 25px;
	opacity: 0;
	position: relative;
	transform: perspective(500px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
	transition: all 0.6s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.box:hover .social{		opacity: 1;		transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);	}
.box .social:before{
	content: "";
	width: 50px;
	height: 2px;
	background: #fff;
	margin: 0 auto;
	position: absolute;
	top: -23px;
	left: 0;
	right: 0;
}
.box .social li{		display: inline-block;	}
.box .social a{		display: block; width:70%; margin:0 auto;		line-height: 40px;		font-size:16px;		color: #fff; border:1px solid #fff;		transition: all 0.3s ease 0s;	}
.box .social a:hover{		background: #0073f0; border:1px solid #0073f0;	}
.box .social li:last-child a{		margin-right: 0;	}
@media only screen and (max-width:990px){
	.box{ margin-bottom: 30px; }
}


@media only screen and (max-width:400px){
	.box .box-content{	width: 100%;	padding: 20px 0;	margin-bottom: 15%;	position: absolute;	bottom: 0;	left: 0;	z-index: 1;}
	.box .title{	font-size:20px; }
}