
/* C27 Large Thumbnail Links */
.ltl-container {
	position: relative;
	overflow: hidden;
	width: calc(33.33% - 2%);
	height: 200px;
	margin-bottom: 2%;
	border-radius: 8px;
	-webkit-transition: all 200ms cubic-bezier(.25, .46, .45, .94);
	transition: all 200ms cubic-bezier(.25, .46, .45, .94);
	margin: 1%;
}

.ltl-container[href=''] {
	display: none;
}

.ltl-container:hover {
	box-shadow: 0 12px 12px -12px rgba(0, 0, 0, 0.5);
	-webkit-transform: scale(1.025);
	-ms-transform: scale(1.025);
	transform: scale(1.025);
}

.ltl-title {
	position: absolute;
	left: 0%;
	top: auto;
	right: 0%;
	bottom: -1px;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 75%;
	min-width: 160px;
	padding: 10px 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-top-right-radius: 8px;
	background-color: var(--color-lime);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	line-height: 1.1;
}

.ltl-container:nth-of-type(1n) .ltl-title {
	background-color: var(--color-evergreen);
}

.ltl-container:nth-of-type(3n) .ltl-title {
	background-color: #96172d;
}

.ltl-container:nth-of-type(2n) .ltl-title {
	background-color: #025293;
}

.ltl-container:nth-of-type(4n) .ltl-title {
	background-color: #7d0063;
}

.ltl-grid {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.ltl-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 50%;
	object-position: 50% 50%;
}

.ltl-wrapper {
	padding: 1%;
}

@media screen and (max-width: 991px) {
	.ltl-grid {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media screen and (max-width: 767px) {
	.ltl-container {
		width: 48%;
	}

	.ltl-image:hover {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.c27 {
		padding: 15px;
	}
}

@media screen and (max-width: 479px) {
	.ltl-container {
		width: 100%;
	}

	.ltl-title {
		width: 100%;
		height: 50px;
		padding-right: 0px;
		padding-left: 0px;
		border-radius: 0px;
	}

	.ltl-title.evergreen {
		border-radius: 0px;
	}

	.ltl-grid {
		grid-auto-columns: 1fr;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		-ms-grid-rows: auto auto;
		grid-template-rows: auto auto;
	}

	.ltl-wrapper {
		margin-top: 2em;
		margin-bottom: 2em;
		padding-right: 15px;
		padding-left: 15px;
	}
}

/* End C27 Large Thumbnail Links */
