/* IMAGEBOXES */
.imagebox {
	position: relative;
	margin-bottom: 70px;
}
.imagebox figure {
	border: 7px solid #fff;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.imagebox figure .videolink {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #FFF;
	font-size: 79px;
	opacity: .85;
}
.imagebox figcaption {
	position: absolute;
	bottom: 7px;
	left: 7px;
	right:  7px;
	background-color: rgba(255,255,255,0.8);
	padding: 25px 20px 20px;
}
.imagebox figcaption h3 {
	font-family: "proxima-nova-condensed",sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 30px;
	line-height: 1;
	margin:  0;
	padding:  0;
	color:  #000f47;
	text-transform:  uppercase;
}
.imagebox figcaption .sh-more-link + h3 {
	margin-bottom: 0;
	padding-right:  55px;
	-webkit-transition: margin-bottom .3s ease-in-out;
	transition: margin-bottom .3s ease-in-out;
}
.imagebox:hover figcaption .sh-more-link + h3 {
	margin-bottom: 15px;
}
.imagebox figcaption .sh-more-link {
	width: 81px;
	height: 0;
	background-color: #b99564;
	font-size: 0;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	right: -7px;
	bottom: 18px;
	z-index: 2;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	line-height: 39px;
	-webkit-transition: font-size, height, opacity .3s ease-in-out;
	transition: font-size, height, opacity .3s ease-in-out;
}
.imagebox:hover figcaption .sh-more-link {
	font-size: 19px;
	height: 37px;
	opacity: 1;
	pointer-events:all;
}
@media only screen and (max-width: 64em) {
	.imagebox figcaption h3 {
		font-size: 24px;
		line-height: .9;
	}
	.imagebox figcaption .sh-more-link + h3 {
		margin-bottom: 0;
		padding-right:  0;
	}
	.imagebox figcaption .sh-more-link {
		display: none;
	}
}
@media only screen and (max-width: 40em) {
	.imagebox {
		margin-bottom: 35px;
	}
	.imagebox figcaption {
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.imagebox figcaption h3 {
		font-size: 21px;
		line-height: 1.1;
	}
	.imagebox figcaption .sh-more-link + h3 {
		margin-bottom: 0;
		padding-right:  0;
	}
	.imagebox figcaption .sh-more-link {
		display: none;
	}
}
