﻿/* INTRO */
.intro .description .title {
	display:inline-block;
}

.intro .description .cont {
	margin-top:2em;
}

/* THUMBS - LIST */
.thumbs {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:flex-start;
	align-content:flex-start;
}

.thumbs .thumb {
	display:inline-block;
	width:22.5%;
	height:auto;
	cursor:pointer;
	/**/
	margin-bottom:3.33%;	/* not supported FireFox */
	margin-bottom:50px;
}

.thumbs a:hover {
	color:inherit;
}

.thumbs a.arrow_title {
	margin-top:24px;
	margin-bottom:11px;
	display:inline-block;
	/**/
	font-family:'jm';
	font-weight:normal;
	color:#000;
	font-size:1.25em;
}

.thumbs .thumb:hover .arrow_title span {
	border-bottom:solid 1px #000;
}

.thumbs .thumb .info .dy {
	color:#000;
	text-transform:uppercase;
}

.thumbs .thumb .info .abst {
	height:69px;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}

@media all and (max-width:1152px) {
	.thumbs .thumb {
		width:48.38%;
	}
}

@media all and (max-width:767px) {
	.thumbs .thumb {
		width:100%;
	}
}