/* Tabs Section */
.toggle-nav {
	justify-content: center;
	width: fit-content;
	margin: 0 auto 30px;
	column-gap: 25px;
	flex-wrap: wrap;
	row-gap: 25px;
}
.toggle-nav .nav-item {
	background-color: var(--color-6);
	color: #fff;
	padding: .75em 1.5em;
	min-width: 270px;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	transition: all ease .3s;
	border-bottom: 2px solid var(--color-4);
}
.toggle-nav .nav-item.active {
	background-color: var(--color-2);
	border-color: var(--color-3);
}
.toggle-nav .nav-item:hover {
	border-color: var(--color-3);
}
.toggle-section {
	display: none;
}
.toggle-section.active {
	display: block;
}
.toggle-section .section-heading {
	text-align: center;
	background: var(--color-2);
	color: #fff;
	margin: 0;
	padding: 10px 0;
	font-weight: 100;
	font-size: 40px;
	font-family: unset;
}
.tabs-sections {
	padding: 60px 0 0 0;
}
.tabs-section .tabs {
	margin: 0;
	flex-wrap: wrap;
}
.tabs-section .tabs .item{
	margin: 6px 0;
}
.tabs-section .tabs .item:nth-child(even) .content-col {
	border: none;
}
.tabs-section .tabs .item .image-col {
	flex: 1 1 50%;
	position: relative;
	border: 4px solid var(--color-2);
}
.tabs-section .tabs .item .content-col {
	flex: 1 1 50%;
	padding: 50px;
	align-self: center;
	background-color: var(--color-6);
	margin-left: 6px;
}
.tabs-section .tabs .item .content-col a{
	color: #fff;
}
.tabs-section .tabs .item .content-col a:hover,
.tabs-section .tabs .item .content-col a:focus {
	color: var(--color-2);
}
@media screen and (max-width: 991px) {
	.tabs-section .tabs.img-cover .image-col .image {
		position: static;
	}
	.tabs-section .tabs .col {
		border: none;
	}
	.tabs-section .tabs .item .content-col {
		padding: 18px;
		margin-left: 0;
	}
}