/* HIGHLIGHTS */
.highlights-wrapper {
	position: relative;
	display: flex;
	align-items:  center;
	overflow:  hidden;
	margin-bottom:  70px;
}
.highlights-wrapper figure {
	position:  relative;
	flex: 1 1 1%;
	transition: flex-basis 0.3s ease;
	height: 562px;
}
.highlights-wrapper figure::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #789bc2;
	opacity: 0;
	-webkit-transition: -webkit-transform;
	transition: opacity, transform;
	transition-duration: 0.6s;
	transition-timing-function: ease;
}
.highlights-wrapper figure picture img {
	height: 100%;
	width: 100%;
	object-fit:  cover;
	font-family: 'object-fit: cover;';
}
.highlights-wrapper figure picture .gradient-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background-image: url(/includes/public/assets/images/gradient-overlay-middle-out.png);
	background-position: center;
	background-repeat: repeat-x;
	opacity: .4;
}
.highlights-wrapper figure figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	text-align:  center;
	z-index:  2;
	max-width: 79%;
}
.highlights-wrapper figure figcaption h3 {
	font-family: "proxima-nova-condensed",sans-serif;
	font-size: 56px;
	line-height: 1;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #fff;
	margin:  0;
	padding:  0;
	text-align:  center;
}
.highlights-wrapper figure:nth-child(even) figcaption h3 {
	font-family: "essonnes-display",serif;
	font-style: italic;
	font-weight: 400;
	text-transform: lowercase;
	margin-top: -13px;
	text-align:  center;
}
.highlights-wrapper figure:nth-child(even) .link-accent {
	margin-top: 30px;
}
.highlights-wrapper figcaption p {
	font-family: "proxima-nova-condensed",sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 21px;
	line-height: 1.285;
	text-transform: uppercase;
	color: #fff;
}
.highlights-wrapper figcaption p {
	margin: 0 0 35px;
}
.highlights-wrapper figure .link-accent {
	font-family: "proxima-nova-condensed",sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 34px;
	line-height:  1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0px;
	width: 81px;
	height: 37px;
	background-color: #a57a3f;
	color: #fff;
     cursor: pointer;
}
.highlights-wrapper figure .link-accent span {
	display: none;
}
.highlights-wrapper figure .link-accent::before {
	content: "+";
	margin-top: 3px;
}
.highlights-wrapper .link-accent i.fa {
	background-color: #000f47;
	height: 100%;
	color: #fff;
	width: 46px;
	align-items: center;
	justify-content: center;
}
.highlights-wrapper figure figcaption i.fa,
.highlights-wrapper figure figcaption p {
	display:  none;
}
@media only screen and (min-width: 64.063em) {
	.highlights-wrapper figure:hover::after {
		opacity: 0.7;
	}
	.highlights-wrapper figure:hover {
		flex-basis: 2%;
	}
	.highlights-wrapper figure.active figcaption {
		transform: translate(-50%, -50%);
	}
	.highlights-wrapper figure.active::after {
		opacity: 0.7;
		transform: scale(0.8, 0.65);
	}
	.highlights-wrapper figure.active figcaption h3 {
		margin: 20px 0 25px;
	}
	.highlights-wrapper figure.active:nth-child(even) figcaption h3 {
		margin: -8px 0 35px;
	}
	.highlights-wrapper figure.active .link-accent {
		height: 50px;
		width: 200px;
		display: flex;
		align-items:  center;
		background-color:  #fff;
		border: 1px solid #a57a3f;
		padding: 2px;
		text-transform: uppercase;
		color: #a57a3f;font-family: "proxima-nova-condensed",sans-serif;
		font-style: normal;
		font-weight: 400;
		justify-content: space-between;
		font-size: 15px;
		line-height: 1.1;
		letter-spacing: 2px
	}
	.highlights-wrapper figure.active .link-accent::before {
		content: '';
		margin-top:  0;
	}
	.highlights-wrapper figure.active .link-accent span {
		display: block;
	}
	.highlights-wrapper figure.active figcaption i.fa {
		display: flex;
	}
	.highlights-wrapper figure.active figcaption p {
		display:  block;
	}
}
@media only screen and (max-width: 64em) {
	.highlights-wrapper {
		flex-flow: row wrap;
	}
	.highlights-wrapper figure {
		flex: 1 1 40%;
	}
}
@media only screen and (max-width: 40em) {
	.highlights-wrapper {
		flex-flow: column;
	}
	.highlights-wrapper figure {
		flex: 1 1 100%;
		height: auto;
		margin-bottom: 5px;
	}
	.highlights-wrapper figure figcaption h3 {
		font-size: 33px;
		line-height: 1;
	}
	
	.highlights-wrapper figure figcaption {
		transform: translate(-50%, -50%);
	}
	.highlights-wrapper figure .link-accent {
		margin-top: 5px;
	}
	.highlights-wrapper figure:nth-child(even) .link-accent {
		margin-top: 7px;
	}
	.highlights-wrapper figure picture .gradient-overlay {
		opacity: .6;
	}
	.ie-view figure {
		display: block;
		flex:none;
		width: 100%;
	}
}

