.featured-side-by-side {
	margin: 0 auto 30px;
	max-width: 1440px;
}

.featured-side-by-side .inner {
	position: relative;
}

.featured-side-by-side .img-cont {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}

.featured-side-by-side .img-cont img {
	width: 100%;
}

.featured-side-by-side .content-section {
	padding-left: 20px;
	padding-right: 20px;
}

.featured-side-by-side .title-top h2 {
	text-transform: uppercase;
	color: #5e3f24;
	font-weight: 100;
	font-size: 17px;
	margin-bottom: 6px;
}

.featured-side-by-side .content-section h4,
.featured-side-by-side .content-section h4 a {
    font-family: 'Suez One', sans-serif;
    font-size: 25px;
    line-height: 1.1em;
    color: #0C2641;
    margin: 8px 0px 5px;
}

.featured-side-by-side .content-section p {
	margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    color: #000;
    font-size: 13px;
    line-height: 1.6em;
    font-weight: 400;
}

.featured-side-by-side a.read-more {
	display: inline-flex;
	color: rgb(12, 38, 65);
	border: 3px solid rgb(233, 191, 96);
	border-radius: 45px;
	margin-bottom: 30px;
	padding: 11px 30px;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	transition: background-color .3s, color .3s;
}

.featured-side-by-side a.read-more:hover {
    border-color: rgb(233, 191, 96);
    background-color: rgb(12, 38, 65);
    color: rgb(255, 255, 255);
}

.featured-side-by-side .read-more i {
	padding-left: 5px;
	position: relative;
	color: rgb(226, 103, 32);
}

@media (min-width: 800px) {
	.featured-side-by-side {
		padding: 20px;
	}

	.featured-side-by-side .inner {
		display: flex;
	}
	
	.featured-side-by-side .inner > div {
		width: 50%;
	}

	.featured-side-by-side .slide {
		padding-bottom: 60px;
	}

	.featured-side-by-side .img-cont {
		margin-bottom: 0;
	}

	.featured-side-by-side .content-section {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-left: 20px;
		padding-right: 0;
		align-items: baseline;
	}

	.featured-side-by-side .content-section > * {
		max-width: 100%;
	}

	.featured-side-by-side a.read-more {
		margin: 0;
	}
}

@media (min-width: 1024px) {
	.featured-side-by-side {
		padding: 80px;
		padding-bottom: 30px;
	}

	.featured-side-by-side .inner {
		max-width: 1300px;
		margin: 0 auto;
	}

	.featured-side-by-side .content-section {
		padding-left: 50px;
	}


	.featured-side-by-side .title-top h2 {
		font-size: 30px;
		margin-bottom: 5px;
	}

	.featured-side-by-side .content-section h4,
	.featured-side-by-side .content-section h4 a {
		font-size: 40px;
		margin-bottom: 25px;
	}

	.featured-side-by-side .content-section p {
		font-size: 16px;
	}

	.featured-side-by-side a.read-more {
		padding: 15px 35px 17px;
	}
}

@supports (display: grid) {
	@media (min-width: 800px) {
		.featured-side-by-side .inner {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-gap: 20px;
		}

		.featured-side-by-side .inner > div {
			width: 100%;
		}

		.featured-side-by-side .content-section {
			padding-left: 0;
		}
	}
	
	@media (min-width: 1024px) {
		.featured-side-by-side .inner {
			grid-gap: 55px;
		}
	}
}