@charset "UTF-8";
* {
	box-sizing: border-box;
}
.wrappers {
}
.float-left{
	float:left;
}
.direction-ltr{
	direction:ltr;
}
.imgboxs {
	display: flex;
	flex-flow: row wrap;
}

.imgbox {
	margin: 10px;
	width: calc((100% / 5) - 20px);
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
	.imgbox {
	 width: calc((100% / 2) - 20px);
	}
}
@media screen and (max-width: 767px) {
	.imgbox {
	 width: calc((100% / 2) - 20px);
	}
}
.imgbox:hover .imgbox__inner {
	background-color: #1abc9c;
	transform: scale(1.05);
}
.imgbox__inner {
	width: 100%;
	padding: 0px;
	position: relative;
	cursor: pointer;
	background-color: #949fb0;
	color: #eceef1;
	font-size: 1.5em;
	text-transform: uppercase;
	text-align: center;
	transition: all 0.2s ease-in-out;
	height:150px;
	cursor: pointer;
}
.imgbox__inner h4{
	padding:20px;
	text-align: center;
	color:#FFF;
	background:rgba(0,0,0,0.4);
	font-size:14px;
	line-height:20px;
	text-shadow:0px 0px 5px #000;
	position: absolute;
	width:100%;
	height:100%;
	right:0;
	left:0;
	top:0;
	bottom:0;
	overflow:hidden;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
.previewimg{
	position: relative;
	height:450px;
}
.imgbox__inner:hover h4{
	opacity: 1;
}
.imgbox__inner:after {
	transition: all 0.3s ease-in-out;
}
.imgbox__inner .fa {
	width: 100%;
	margin-top: 0.25em;
}
.imgbox__expander {
	transition: all 0.2s ease-in-out;
	background-color: #333a45;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: left;
	align-items: left;
	color: #eceef1;
	line-height: 190%;
	direction: rtl;
}
.imgbox__expander .fa {
	font-size: 0.75em;
	position: absolute;
	top: 10px;
	left: 10px;
	cursor: pointer;
	z-index: 10;
}
.imgbox__expander h2{
	font-size:16px;
	padding: 0;
	margin: 0;
	color:#FFF;
	margin-bottom: 15px;
}
a.btn-detail{
	display:block;
	width:200px;
	color:#FFF;
	padding: 0px;
	margin-top:15px;
	margin-bottom:15px;
	border-radius: 100px;
	border:1px solid #CCC;
	text-align: center;
	line-height:30px;
}
.imgbox__expander .fa:hover {
	opacity: 0.9;
}
.imgbox.is-collapsed .imgbox__inner:after {
	content: "";
	opacity: 0;
}
.imgbox.is-collapsed .imgbox__expander {
	max-height: 0;
	min-height: 0;
	overflow: hidden;
	margin-top: 0;
	opacity: 0;
}
.imgbox.is-expanded .imgbox__inner {
	background-color: #1abc9c;
}
.imgbox.is-expanded .imgbox__inner:after {
	content: "";
	opacity: 1;
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	bottom: -30px;
	right: calc(50% - 15px);
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	border-bottom: 15px solid #333a45;
}
.imgbox.is-expanded .imgbox__inner .fa:before {
	content: "";
}
.imgbox.is-expanded .imgbox__expander {
	max-height: 1000px;
	min-height: 200px;
	overflow: visible;
	margin-top: 30px;
	opacity: 1;
}
.imgbox.is-expanded:hover .imgbox__inner {
	transform: scale(1);
}
.imgbox.is-inactive .imgbox__inner {
	pointer-events: none;
	opacity: 0.5;
}
.imgbox.is-inactive:hover .imgbox__inner {
	background-color: #949fb0;
	transform: scale(1);
}

@media screen and (min-width: 992px) {
	.imgbox:nth-of-type(5n+2) .imgbox__expander {
	 margin-right: calc(-100% - 20px);
	}

	.imgbox:nth-of-type(5n+3) .imgbox__expander {
	 margin-right: calc(-200% - 40px);
	}

	.imgbox:nth-of-type(5n+4) .imgbox__expander {
	 margin-right: calc(-300% - 60px);
	}

	.imgbox:nth-of-type(5n+5) .imgbox__expander {
	 margin-right: calc(-400% - 80px);
	}

	.imgbox:nth-of-type(5n+4) {
	 clear: right;
	}

	.imgbox__expander {
	 width: calc(500% + 80px);
	}
}
@media screen and (min-width: 0px) and (max-width: 991px) {
	.imgbox:nth-of-type(2n+2) .imgbox__expander {
	 margin-right: calc(-100% - 20px);
	}

	.imgbox:nth-of-type(2n+3) {
	 clear: right;
	}

	.imgbox__expander {
	 width: calc(200% + 20px);
	}
}