.services {
	gap: 2rem;
	z-index: 889;
}
.service {
	display: flex;
	flex-direction: column;
	width: calc(33.3333% - 1.3333rem);
	background-color: #efefef;
	box-shadow: 0px 8px 16px 0px #00000033;
}
.service::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;
}
.service_title {
	background-color: #fff;
	padding: 40px 40px 1rem 40px;
}
.service_title h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 1em;
	min-height: 3.3rem;
	border-left: 4px solid #FAA519;
}
.service_text {
	padding: 1rem 40px;
	min-height: 8.125rem;
}
.service-links {
	background-color: #fff;
	padding: 40px 40px 0;
	margin-top: auto;
	font-size: 12px;
	white-space: nowrap;
	-ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.service-links a {
	height: 0;
	opacity: 0;
}
.service-links a::after {
	content: '\2192';
	margin-left: 1rem;
	font-size: 1.5em;
}
@media only screen and (min-width: 1081px) {
	.service:hover::after {
		width: 100%;
	}
	.service:hover .service-links a {
		height: auto;
		padding-bottom: 20px;
		opacity: 1;
	}
}

.service-links a:last-child {
	margin-left: auto;
}
@media only screen and (max-width: 1080px) {
	.services { gap: 13px; }
	.service { background-color: #fff; }
	.service_title h3 { padding-left: 1rem; }
	.service_text { padding: 32px; background-color: #efefef; }
	.service-links { padding-left: 32px; padding-right: 32px; }
	.service-links a { height: auto; padding-bottom: 20px; opacity: 1; }
	.service-links a::after { margin-left: 8px;}
}
@media only screen and (max-width: 1080px) and (min-width: 1000px) {
	.services { align-items: stretch; }
	.service { width: calc(33.3333% - 8.6666px); }
	.service_title { padding: 32px 12px 1rem 32px; }
}
@media only screen and (max-width: 999px) {
	.services { flex-direction: column; padding-bottom: 20px; }
	.service { width: 100%; }
	.service_text,
	.service-links,
	.service::after { display: none !important; }
	.service.open .service_text,
	.service.open .service::after { display: block !important; }
	.service.open .service-links { display: flex !important; }
	.service_title { padding: 20px 20px 12px 30px; cursor: pointer; }
	.service_title h3 { padding-left: 1rem; padding-right: 1rem; }
	.service_title:before { position: absolute; content: '+'; font-size: 34px; line-height: 60px;  top: 20px; right: 20px;}
	.service.open .service_title:before { content: '\2013'; }
	.service_text { min-height: 1px; }
}