.features {
	padding: 60px 30px;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	background-image: linear-gradient(to bottom, transparent 120px, #000 60px);
}

@media (min-width: 641px) {
	.features {
		padding: 80px 30px;
		background-image: linear-gradient(to bottom, transparent 180px, #000 100px);
	}	
}

.features .slides {
	margin: 0 auto;
	max-width: 1140px;
}

.features .slide + .slide {
	margin-top: 80px;
}

@media (min-width: 1024px) {
	.features .slide > .inner {
		display: flex;
	}
	
	.features .slide:nth-child(2n) > .inner {
		flex-direction: row-reverse;
	}
}

.features .slide .img-cont {
	flex: 0 1 590px;
	margin: 0 auto;
	margin-bottom: 20px;
	max-width: 590px;
}

.features .slide img {
	display: block;
	width: 100%;
}

@supports (display: grid) {
	.features .slide .img-cont {
		display: grid;
		grid-template-columns: 14px 1fr 10px 10px 24px;
		grid-template-rows: 22px 9px 1fr 20px 10px;
	}

	@media (min-width: 1024px) {
		.features .slide .img-cont {
			grid-template-columns: 30px 1fr 20px 20px 44px;
			grid-template-rows: 42px 19px 1fr 40px 20px;
		}
	}

	.features .slide .img-cont a {
		grid-column: 1 / span 2;
		grid-row: 1 / span 3;
	}

	.features .slide .img-cont::before {
		content: "";
		display: block;
		grid-column: 2 / span 3;
		grid-row: 2 / span 3;
		background-image: linear-gradient(50deg, #003b4d, #007381);
	}

	.features .slide:nth-child(2n) .img-cont::before {
		background-image: linear-gradient(50deg, #4b0e25, #d04486);
	}

	.features .slide .img-cont::after {
		content: "";
		display: block;
		grid-column: 4 / span 2;
		grid-row: 2 / -2;
		border: 2px solid #f0df02;
		border-top-width: 3px;
		border-bottom-width: 3px;
		transform: skewY(48deg);
	}
}

.features .slide .content-section {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features .slide .content-section > .inner {
	padding: 0;
	max-width: 476px;
}

@media (min-width: 1024px) {
	.features .slide .content-section > .inner {
		padding: 30px;
	}
}

.features .slide .cat {
	display: block;
	margin-bottom: 22px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	color: #f0df02;
	text-transform: uppercase;
	text-align: right;
	letter-spacing: 1px;
	background-image: linear-gradient(to right, #f0df02, #f0df02);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left center;
}

.features .slide .cat span {
	display: inline-block;
	padding-left: 12px;
	background-color: #000;
}

.features .slide .title {
	margin-bottom: 26px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.375;
	color: inherit;
	text-transform: capitalize;
	letter-spacing: 1px;
}

.features .slide .description {
	margin-bottom: 22px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: inherit;
}

.features .slide .read-more {
	display: inline-block;
	padding: 14px 44px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #fff;
}

@media (min-width: 1024px) {
	.features .slide .cat {
		font-size: 18px;
	}

	.features .slide .cat span {
		padding-left: 20px;
	}

	.features .slide:nth-child(2n) .cat {
		text-align: left;
	}

	.features .slide:nth-child(2n) .cat span {
		padding-left: 0;
		padding-right: 20px;
	}

	.features .slide .title {
		font-size: 24px;
	}

	.features .slide .read-more {
		font-size: 18px;
		font-weight: 700;
	}
}