.imagebox {
	margin-bottom: 30px;
}
.imagebox,
.imagebox .img-cont {
	position: relative;
}
.imagebox .img-cont:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	pointer-events: none;
	transform: translate(-50%, -50%);
	text-align: center;
	border: solid 4px white;
	width: 90%;
	height: 60%;
	backdrop-filter: blur(4px);
	background-color: rgba(44, 59, 93, 0.31);
}
.imagebox .slide {
	margin-bottom: 30px;
}
.imagebox .slide .inner {
	position: relative;
}
.imagebox .img-cont img {
	display: block;
	width: 100%;
}
.imagebox h4,
.imagebox h4 a {
	color: #fff;
	pointer-events: all;
	font-family: 'Avenir LT W01_95 Black1475556';
	font-size: 25px;
	line-height: 40px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}
.imagebox .content-section {
	padding: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	pointer-events: none;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 90%;
	flex-direction: column;
	justify-content: center;
	display: flex;
}
.imagebox .content-section p {
	color: #fff;
	font-family: 'Avenir LT W01_65 Medium1475532';
	font-size: 18px;
	line-height: 20px;
}
.imagebox .content-section .read-more {
	display: inline-block;
	/* IE, requires any display property other than inline to work
	 with pointer events all here */
	pointer-events: all;
	color: #fff;
	pointer-events: all;
	background-color: #98c11d;
	font-family: 'Avenir LT W01_95 Black1475556';
	font-size: 14px;
	padding: 5px 20px;
	width: 145px;
	margin: 0 auto;
	border: solid 2px #98c11d;
	transition: ease 500ms;
}
.imagebox .title-cont {
	text-align: center;
	margin-bottom: 15px;
	padding: 0 20px;
}
.imagebox .title-cont h4 {
	font-family: 'Avenir LT W01_95 Black1475556';
	color: #97c2d4;
	font-size: 21px;
	line-height: 24px;
}
@media (max-width: 640px) {
.imagebox .img-cont:after {
		height: 80%;
	}
}
@media (min-width: 640px) {
	.panel-two-col .imagebox {
		margin-bottom: 0;
	}
	.imagebox .cols {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.imagebox .slide {
		flex: 0 1 calc((100% - 10px) / 2 );
		flex-basis: calc(50% - 5px);
		margin-right: 10px
	}
	.imagebox .slide:nth-of-type(even){
		margin-right: 0;
	}
	.imagebox .content-section {
		transform: translate(-50%, -40%);
	}
}
@media (min-width: 64em) {
	.imagebox {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.imagebox .cols {
		display: flex;
		flex-wrap: wrap;
	}
	.imagebox .cols .slide {
		margin-right: 30px;
		flex: 0 1 calc((100% - 30px) / 2); 
		flex-basis: calc(50% - 15px);
	}
	.imagebox .cols .slide:nth-of-type(even) {
		margin-right: 0;
	}
	.imagebox h4 {
		font-size: 25px;
		line-height: 30px;
		font-weight: 900;
	}
	.imagebox .content-section p {
		font-size: 25px;
		line-height: 28px;
	}
	.imagebox .title-cont h4 {
		font-size: 33px;
		line-height: 39px;
	}
	.imagebox .title-cont {
		margin-bottom: 50px;
	}
	.imagebox .content-section .read-more {
		opacity: 0;
		font-size: 17px;
		line-height: 25px;
	}
	.imagebox .content-section {
		width: 70%;
		transition: ease 500ms;
		height: 35%;
	}
	.imagebox .slide:hover .content-section .read-more {
		opacity: 1;
	}
	.imagebox .content-section .read-more:hover {
		background-color: #fff;
		color: #98c11d;
		border: solid 2px #98c11d;
	}
	.imagebox .img-cont:after {
		width: 75%;
		height: 40%;
		transition: 500ms ease;
	}
	.imagebox .slide:hover .img-cont:after {
		width: 95%;
		height: 95%;
		transition: 500ms ease;
		backdrop-filter: blur(0);
	}
	.imagebox h4, 
	.imagebox h4 a {
		font-size: 43px;
		line-height: 49px;
	}
}