.container-tabs {
	padding: unset;
	margin: 0 auto var(--space-16);
	max-width: 1178px;

	--color: var(--oc-black);
	--color-hover: var(--primary-color-800);
	--text-color: var(--color);
	--button-color: var(--color);
	--border-color: var(--gray-200);
}

/* Tab Active/Inactive Functionality */
.container-tabs .tab-outer {
	opacity: 1;
	transition: opacity 150ms ease;
}

.container-tabs .tab-outer.animating {
	opacity: 0;
}

.inner-tab-cont,
.container-tabs .tab-outer > div.contentRender:not(.active):not(.contentRender_name_plugins_common_custom_tab_inner) {
	display: none;
}
/**/

.container-tabs .tab-outer > div.contentRender.active,
.inner-tab-cont.active {
	display: block;
}

.container-tabs .tabs-header {
	display: flex;
    flex-direction: column;
    padding: unset;
}

.container-tabs .tabs-header .title-cont {
	margin: 0 auto;
    max-width: 800px;
    width: 100%;
	padding: 0 30px;
	margin-bottom: var(--space-3);
}
.container-tabs .tabs-header .title-cont .title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl-1);
	line-height: 1.08em;
    font-weight: 800;
    color: var(--text-color);
}

@media (min-width: 375px) {
	.container-tabs .tabs-header .title-cont .title {
		font-size: 3.125rem;
	}
}

/*Tabs*/
.container-tabs .tabs {
	background: var(--lighter-blue);
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	padding: 0 0 15px 30px;
}


.container-tabs .tabs ul {
	display: flex;
    flex-direction: row;
    justify-content: start;
	gap: var(--space-3) var(--space-5);
	padding: var(--space-6) 0;
	margin: 0 auto;
    max-width: 800px;
	overflow-x: auto;
}

@media (max-width: 640px) {
	.container-tabs .tabs ul li:last-child {
		padding-right: 17px;
	}
}

@media (min-width: 40em) {
	.container-tabs .tabs {
		padding-bottom: 0;
	}

	.container-tabs .tabs ul {
		overflow-x: unset;
	}
}

.container-tabs .tabs button {
	color: var(--text-color);
	padding: unset;
	background: unset;
	line-height: var(--leading-snug);
	text-transform: uppercase;
	width: max-content;
	font-family: var(--font-display);
	font-size: var(--text-base);
}

.container-tabs .tabs li.active button {
	color: var(--atlantic-blue);
	border-bottom: 4px solid var(--hot-pink);
}

@media (min-width: 980px) {
	.container-tabs {
		margin-bottom: var(--space-32);
	}
	.container-tabs .tabs-header {
		position: relative;
		z-index: 1;
		bottom: -82px;
	}
	.container-tabs .tabs-header .title-cont {
		margin-bottom: 60px;
		padding: 0 var(--space-4);
		max-width: unset;
	}
	.container-tabs .tabs-header .title-cont .title {
		font-size: calc(75px + (110 - 75) * ((100vw - 980px) / (1440 - 980)));
	}
	.container-tabs .tabs {
		position: relative;
		background-color: unset;
		pointer-events: none;
		padding-right: 33px;
	}

	.container-tabs .tabs ul {
		max-width: unset;
		justify-content: end;
		gap: var(--space-3) calc(20px + (40 - 20) * ((100vw - 980px) / (1440 - 980)));;
		padding: 0 30px;
	}

	.container-tabs .tabs button {
		font-size: calc(20px + (22 - 20) * ((100vw - 980px) / (1440 - 980)));
		pointer-events: all;
	}
	.container-tabs .tab-outer {
		position: relative;
	}
	.container-tabs .tab-outer::before {
		content: "";
		background-color: var(--lighter-blue);
		height: 100%;
		width: 67.4%;
		position: absolute;
		right: 0;
		top: 0;
		border-radius: 10px;
		pointer-events: none;
	}
}

@media (min-width: 1440px) {
	.container-tabs .tabs-header .title-cont .title {
		font-size: 6.875rem;
	}
	.container-tabs .tabs ul {
		gap: var(--space-3) var(--space-10);
	}
	.container-tabs .tabs button {
		font-size: var(--text-xl-1);
		pointer-events: all;
	}
}
