
/* C18 Resource Cards */
#c18 .card-grid {
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

#c18 h3 {
	text-align: center;
}

#c18 .r-card {
	height: 280px;
	width: 49%;
	margin: 10px 0;
}

#c18 .r-card:nth-of-type(3) .r-card-img {
	order: 2;
}

#c18 .r-card:nth-of-type(4) .r-card-img {
	order: 2;
}

#c18 .r-card-img {
	height: 100%;
	width: 50%;
	background-color: #14562b;
}

#c18 .r-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#c18 .r-card-content {
	height: 100%;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#c18 .r-card:nth-of-type(1n) .r-card-content {
	background-color: #025193;
}

#c18 .r-card:nth-of-type(2n) .r-card-content {
	background-color: #840065;
}

#c18 .r-card:nth-of-type(3n) .r-card-content {
	background-color: #941a31;
}

#c18 .r-card:nth-of-type(4n) .r-card-content {
	background-color: #fd8852;
}

#c18 .r-card-text {
	padding: 10%;
	color: #fff;
	max-width: 100%;
	word-break: break-word;
}

#c18 .r-card-text p,
#c18 .r-card-text h2 {
	font-family: HelveticaNeueLTStd-MdCn, sans-serif;
	color: #fff;
}

#c18 .r-card-text h2 {
	font-size: 1.5rem;
}

#c18 .r-card-text a {
	text-align: left;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: #fff;
}

#c18 .r-card-text a div {
	text-align: left;
	text-transform: uppercase;
}

#c18 .r-card-text a span {
	display: inline-block;
	position: relative;
	width: 25px;
	height: 25px;
	border: 1px solid #fff;
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: 20px;
	top: 5px;
}

#c18.resource-card span:before {
	content: "";
	width: 12px;
	height: 12px;
	top: 5px;
	left: 7px;
	border-top: 6px solid #fff;
	border-right: 6px solid #fff;
	border-left: 6px solid transparent;
	border-bottom: 6px solid transparent;
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
}

@media (max-width: 1100px) {
	#c18 .r-card-text h2 {
		font-size: 1.3em;
	}
}

@media (max-width: 900px) {
	#c18 .r-card {
		width: 100%;
		height: 225px;
	}

	#c18 .r-card-content {
		width: 100%;
	}

	#c18 .r-card-text h2 {
		font-size: 1.2em;
	}
}

@media (max-width: 400px) {
	#c18 .r-card-img {
		display: none;
	}
}

/* End Resource Cards */
