.eventlist {
	display: flex;
	flex-wrap: wrap;	
}

.indexitem.event, .indexitem.service {
	flex: 0 0 33%;	
	padding: 0 20px 40px;
}


.indexitem.event .ii_image, .indexitem.service .ii_image {
	width: 100%;
	xmargin: 10px;
	background: #ccc;
	background-size: cover;
	background-position: center;
	position: relative;
}

.indexitem.event .ii_image:before, .indexitem.service .ii_image:before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 50%;
}

.ii_image A {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.ii_inner {
	border: 1px solid #ececec;
	xpadding: 10px 10px;
	background: #2b4a68;
}

.indexitem.service .ii_inner {
	background: #568abb;
}


.ii_label {
	padding: 10px;
	display: flex;
}

.ii_label *, .ii_label A:visited {
	color: white;
}

.ii_title A {
	font-weight: 700;
}


@media (max-width: 1000px) { 
	
	.indexitem.event, .indexitem.service {
		flex: 0 0 50%;
	}
	
}

