.highlights {
	margin-bottom: 40px;
	overflow: hidden;
}

.highlights,
.highlights .img-cont {
	position: relative;
}

.highlights .img-cont {
	margin-bottom: 0;
}

.highlights .img-cont img {
	display: block;
	width: 100%;
}

.highlights h4,
.highlights h4 a {
	font-family: 'Roboto Condensed', sans-serif;
	color: var(--Teal);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.13;
	text-decoration: none;
	margin-bottom: 8px;
}

.highlights .slide:nth-of-type(even) h4,
.highlights .slide:nth-of-type(even) h4 a {
	color: white;
}

.highlights .content-section {
	justify-content: flex-start;
	padding: 15px 20px 30px;
	background-color: white;
}

.highlights .slide:nth-of-type(even) .content-section {
	background-color: var(--Teal);
}

.highlights .content-section p {
	font-family: 'Roboto', sans-serif;
	color: var(--Gray);
	font-size: 15px;
	letter-spacing: 0.04em;
	line-height: 1.34;
}

.highlights .slide:nth-of-type(even) .content-section p {
	color: white;
}

.highlights .content-section .read-more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-size: 15px;
	background-color: var(--Yellow);
	color: var(--Gray);
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.04em;
	margin-top: 15px;
	line-height: normal;
}

.highlights .content-section .read-more i {
	margin-left: 5px;
}

@media (min-width: 40em) {
	.highlights {
		background-color: var(--Beige);
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.highlights .slide > .inner {
		display: flex;
		justify-content: space-between;
	}

	.highlights .slide:nth-of-type(even) {
		padding-top: 10px;
	}

	.highlights .slide .inner .img-cont,
	.highlights .slide .inner .content-section {
		width: calc(50%);	
	}

	.highlights .slide:nth-of-type(odd) .inner .content-section {
		margin-left: 20px;
	}

	.highlights .slide:nth-of-type(even) .inner .content-section {
		margin-right: 20px;
	}

	.highlights .slide .inner .img-cont {
		margin: 0;
	}

	.highlights .slide:nth-of-type(odd) .inner .img-cont {
		order: 2;
	}

	.highlights .slide .inner .content-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
}

@media (min-width: 64em) {
	.highlights {
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	.highlights .slide {
		opacity: 0;
		transform: translateX(100px);
		transition: opacity ease-out 0.6s, transform ease-out 0.9s;
	}

	.highlights .slide:nth-of-type(even) {
		transform: translateX(-100px);
	}

	.highlights .slide.appear {
		opacity: 1;
		transform: translateX(0);
	}

	.highlights .slide:nth-of-type(odd) {
		margin-left: 60px;
	}

	.highlights .slide:nth-of-type(even) {
		margin-right: 60px;
	}

	.highlights .slide:not(:first-of-type) {
		padding-top: 16px;
	}

	.highlights .slide:nth-of-type(odd) .inner .content-section {
		padding: 40px;
	}

	.highlights .slide:nth-of-type(even) .inner .content-section {
		padding: 40px;
	}

	.highlights .slide .inner .img-cont,
	.highlights .slide .inner .content-section {
		width: calc(50%);	
	}

	.highlights .slide .inner .img-cont {
		width: 90%;
	}

	.highlights h4,
	.highlights h4 a {
		font-size: 40px;
		line-height: 1.08;
		margin-bottom: 18px;
	}

	.highlights .content-section p {
		font-size: 18px;
		line-height: 1.62;
		margin-bottom: 22px;
	}

	.highlights .content-section .read-more {
		font-size: 17px;
		padding: 8px 17px;
	}
}

@media screen and (min-width: 80em) {
	.highlights .slide:nth-of-type(odd) {
		margin-left: 132px;
	}

	.highlights .slide:nth-of-type(even) {
		margin-right: 132px;
	}

	.highlights .slide:nth-of-type(odd) .inner .content-section {
		padding: 78px 78px 78px 78px;
	}

	.highlights .slide:nth-of-type(even) .inner .content-section {
		padding: 78px 78px 78px 78px;
	}
}