

/* Reset 
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*/
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ 
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

body{
	background: #E4E1D9;
	color: #D5D6E2;
	font-weight: 500;
	font-size: 1.05em;
	font-family: "阿里巴巴普惠体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
}

*/
.demo-section6{ padding: 2em 0;}
.box-section6{
	font-family: 'Kanit', sans-serif;
	text-align: center;
/*	border: 10px solid #fff; */
	box-shadow: 1px 1px 2px #e6e6e6;
	overflow: hidden;
	position: relative;
}
.box-section6:hover{ box-shadow: 13px 13px 15px rgba(0, 0, 0, 0.3); }
.box-section6:before{
	content: "";
	background: linear-gradient(to left top,#11998e,#38ef7d);
/*	background: linear-gradient(45deg,rgba(103,178,111,0.6), rgba(76,162,205,0.6));*/
	height: 100%;
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.4s linear;
}
.box-section6:hover:before{ opacity: 0.5; }
.box-section6 img{
	width: 100%;
	height: auto;
	transition: all 0.4s linear;
}
.box-section6:hover img{
	opacity: 0.3;
	transform: scale(3);
}
.box-section6 .box-section6-content{
	color: #fff;
	width: 100%;
	transform: translateY(-50%) scale(0);
	position: absolute;
	top: 50%;
	left: 0;
	transition: all 0.4s linear;
}
.box-section6:hover .box-section6-content{ transform: translateY(-50%) scale(1); }
.box-section6 .title{
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
}
.box-section6 .post{
	font-size: 16px;
	text-transform: capitalize;
}
.box-section6 .icon{
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	right: 8px;
	bottom: 10px;
}
.box-section6 .icon li{
	display: inline-block;
	margin: 0 1px;
	opacity: 0;
	transform: scale(1.3);
	transition: all 0.3s ease 0.4s;
}
.box-section6:hover .icon li{
	opacity: 1;
	transform: scale(1);
}
.box-section6:hover .icon li:nth-child(2){ transition: all 0.3s ease 0.2s; }
.box-section6 .icon li a{
	color: #11998e;
	background: #fff;
	font-size: 16px;
	line-height: 33px;
	height: 33px;
	width: 33px;
	border-radius: 50%;
	display: block;
	transition: all 0.5s ease;
}
.box-section6 .icon li  a:hover{
	color: #fff;
	background-color: #11998e;
	box-shadow: 0 0 5px #000;
}
@media only screen and (max-width:990px){
	.box-section6 { margin: 0 0 30px; }
}