.hero-home {
	flex-direction: column;
	justify-content: flex-end;
	height: 100vh;
	margin-bottom: 50px;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 130px);
}
.hero-bg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.hero-cards {
	gap: 2rem;
	padding-bottom: 84px;
	z-index: 889;
}
.hero-card {
	display: flex;
	flex-direction: column;
	padding-bottom: 40px;
	width: calc(33.3333% - 1.3333rem);
	background-color: #efefef;
	box-shadow: 0px 8px 16px 0px #00000033;
}
.card_title {
	background-color: #fff;
	padding: 64px 40px 1rem 40px;
}
.card_title h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 1em;
	min-height: 3.3rem;
	border-left: 4px solid #FAA519;
}
.card_text {
	padding: 1rem 40px;
	min-height: 8.125rem;
	font-family: 'Roboto', sans-serif;
}
.card_text p {
	margin-bottom: 0;
}
.card-links {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 64px 40px 0;
	margin-top: auto;
	font-size: 12px;
	transform-origin: top center;
	-ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.card-links::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 38%;
	height: 4px;
	background-color: #FAA519;
	-ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.card-links a {
	display: flex;
	align-items: center;
	transform-origin: top center;
	height: 0;
	opacity: 0;
}
@media only screen and (min-width: 1025px) {
.hero-card:hover .card-links { bottom: -40px; }
.hero-card:hover .card-links::after { width: 100%; }
.hero-card:hover .card-links a {
	height: auto;
	padding-bottom: 20px;
	opacity: 1;
}
}
.card-links a::after {
	content: '\2192';
	margin-left: 1rem;
	font-size: 1.5em;
}
.card-links a:last-child {
	margin-left: auto;
}
@media not all and (min-resolution:.001dpcm) {
	@supports (-webkit-appearance:none) {
	.card-links a {
		display: flex;
		align-items: center;
	}
	.card-links a::after {
		transform: translateY(1px);
	}
}}
@media only screen and (max-width: 1080px) {
	.hero-home { flex-direction: column; justify-content: flex-end; height: 745px; margin-bottom: 58px;}
	.hero-bg { height: 582px; }
	.hero-cards { gap: 13px; padding-bottom: 24px; }
	.hero-card { padding-bottom: 0; background-color: #fff; }
	.card_title h3 { padding-left: 1rem; }
	.card_text { padding: 32px; background-color: #efefef;}
	.card-links { position: relative; padding-top: 15px; padding-left: 32px; padding-right: 32px; }
	.card-links a { height: auto; padding-bottom: 20px; opacity: 1; }
	.card-links a:after { margin-left: 8px; }
}
@media only screen and (max-width: 1080px) and (min-width: 1000px) {
	.hero-cards { align-items: stretch; }
	.hero-card { width: calc(33.3333% - 8.6666px); }
	.card_title { padding: 32px 12px 1rem 32px; }
}
@media only screen and (max-width: 999px) {
	.hero-home { height: auto; padding-top: 68vw; }
	.hero-bg { height: 90vw;}
	.hero-cards { flex-direction: column; padding-bottom: 20px; }
	.hero-card { width: 100%; }
	.card_text,
	.card-links,
	.hero-card::after { display: none !important; }
	.hero-card.open .card_text,
	.hero-card.open .hero-card:after { display: block !important; }
	.hero-card.open .card-links { display: flex !important; }
	.card_title { padding: 20px 20px 12px 30px; cursor: pointer; }
	.card_title h3 { padding-left: 1rem; padding-right: 1rem; }
	.card_title:before { position: absolute; content: '+'; font-size: 34px; line-height: 60px;  top: 20px; right: 20px;}
	.hero-card.open .card_title:before { content: '\2013'; }
}
