.fc_quick_links {
	position: relative;
	display: grid;
	grid-template-columns: 0.6fr 0.5fr;
	grid-gap: clamp(15px, 18vw, 260px);
	align-items: center;
}

.fc_quick_links::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(145,171,198,0.9);
}

.fc_quick_links .wp_content ,
.fc_quick_links .the_quick_links {
	position: relative;
}


.fc_quick_links .wp_content *:not(.button) {
	color: #fff;
}

.fc_quick_links .wp_content .pre-text:before {
	background: #fff;
}

.the_quick_links a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	gap: 10px;
	padding: clamp(20px, 2.5vw, 40px) 10px clamp(15px, 1vw, 20px) 10px;
	color: #FFFFFF;
	border-bottom: 1px solid #fff;
	background: transparent;
}

.the_quick_links a:hover {
	background: rgba(91,121,145,0.6);
}
.the_quick_links a::after {
	content: '';
	background: no-repeat center / 26px url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 26'%3E%3Cpath d='M19 13 .5 21.6V26L24 15v-4L.4 0v4.6l18.7 8.5Z' fill='%23fff'/%3E%3Cpath d='M.4 8.2 10.9 13 .4 17.7V8.2Z' fill='%23fff'/%3E%3C/svg%3E");
	width: 26px;
	height: 26px;

}

.fc_quick_links.bg_green::before {
	background-color: rgba(79,166,174,0.9);
}
.fc_quick_links.bg_green a:hover {
	background: rgba(255,255,255,0.1);
}
@media (max-width: 1300px) {
	.fc_quick_links {
		grid-gap: clamp(15px, 10vw, 100px);
	}
}

@media (max-width: 768px) {

	.fc_quick_links {
		grid-template-columns: 1fr;
		grid-gap: clamp(15px, 3vw, 40px);
	}

}