.three-col-tab-content{
	max-width: 1240px;
	margin: 0 auto;
}
.three-col-tab-content ul.tab-list{
	display: flex;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
}
.three-col-tab-content .tab-list li.tab-item{
	background-size: cover;
	background-position: center center;
	flex: 1;
	text-align: center;
	letter-spacing: 2px;
	cursor: pointer;
	display: grid;
	place-content: center;
	height: 250px;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	padding: 20px;
	word-break: normal;
}
.three-col-tab-content .tab-list li.tab-item .image-bg,
.three-col-tab-content .tab-list li.tab-item .overlay{
	position: absolute;
	top: 0; bottom: -15px;
	left: 0; right: 0;
	z-index: -1;
}
.three-col-tab-content .tab-list li.tab-item:after{
	content: '';
	position: absolute;
	top: 100%; bottom: -16px;
	left: 0; right: -1px;
	background-color: #fff;
	clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0, 66.6666% 0, 50% 0%, 33.3333% 0);
	transition: 0.3s;
}
.three-col-tab-content .tab-list li.tab-item[aria-selected="true"]:after{
	clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0, 66.6666% 0, 50% 97%, 33.3333% 0);
}
.three-col-tab-content .tab-list li.tab-item .image-bg img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.three-col-tab-content .tab-list li.tab-item .overlay{
	background-color: #324047;
	mix-blend-mode: multiply;
	transition: 0.3s;
}
.three-col-tab-content .tab-list li.tab-item:hover .overlay,
.three-col-tab-content .tab-list li.tab-item:focus .overlay,
.three-col-tab-content .tab-list li.tab-item[aria-selected="true"] .overlay{
	background-color: #2C9A5F;
}
.three-col-tab-content .panel-list{
	position: relative;
}
.three-col-tab-content .panel-item{
	display: none;
	padding: 20px 30px 0;
	width: 100%;
}
.three-col-tab-content .panel-item[aria-hidden="false"]{
	display: block;
	opacity: 1;
	pointer-events: all;
}
.three-col-tab-content .panel-item[aria-hidden="false"] .top-section{
	opacity: 1;
	transform: translateY(0px);
	transition: 0.5s;
	transition-delay: 0.1s; 
}
.three-col-tab-content .panel-item[aria-hidden="false"] .column-item{
	opacity: 1;
}
.three-col-tab-content .panel-item[aria-hidden="true"]{
	opacity: 0;
	pointer-events: none;
}
.three-col-tab-content .panel-item[aria-hidden="true"] .top-section{
	opacity: 0;
	transform: translateY(-50%);
	transition: 0s;
	transition-delay: 0;
}
.three-col-tab-content .panel-item[aria-hidden="true"] .column-item{
	opacity: 0;
	transition: 0s !important;
	transition-delay: 0 !important;
}
.three-col-tab-content .panel-item .top-section{
	text-align: left;
	padding: 30px 0;
}
.three-col-tab-content .panel-item .top-section h2{
	font-family: var(--heading-font);
}
.three-col-tab-content .panel-item .top-section h3{
	font-family: var(--body-font);
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 0.5rem;
}
.three-col-tab-content .panel-item .top-section .description-text {
	padding: 1rem 0;
}
.three-col-tab-content .panel-item .top-section .description-text ul {
	display: grid;
	grid-template-columns: 1fr;
}
.three-col-tab-content .panel-item .top-section .description-text .col + .col {
	margin-top: 1.5rem;
}

.three-col-tab-content .content{
	font-weight: 300;
}
.three-col-tab-content .content > ul,
.three-col-tab-content .panel-item .top-section .description-text ul {
	padding: 0;
	margin: 0;
}
.three-col-tab-content .content > ul > li > ul {
	padding-left: 20px;
}
.three-col-tab-content .content ul li::marker,
.three-col-tab-content .panel-item .top-section .description-text ul li::marker{
	color: var(--secondary);
}
.three-col-tab-content .content li,
.three-col-tab-content .panel-item .top-section .description-text li{
	font-weight: 300;
	font-size: 1rem;
	color: var(--body);
	line-height: 1.6;
	padding: .5rem 0;
}
.three-col-tab-content .content li p,
.three-col-tab-content .panel-item .top-section .description-text li p{
	margin: 0;
}
.three-col-tab-content .panel-item .top-section .description-text ul {
	padding-left: 1.5rem;
}
@media (max-width: 1125px){
	.three-col-tab-content .tab-list li.tab-item{
		font-size: 0.85rem;
		padding: 10px;
		height: 150px;
	}
}
@media (max-width: 900px){
	.three-col-tab-content ul.tab-list{
		display: none;
		visibility: hidden;
		opacity: 0;
	}
	.three-col-tab-content .panel-list{
		height: auto !important;
	}
	.three-col-tab-content .panel-item{
		display: block!important;
		position: relative;
		padding: 20px 20px 0;
	}
	.three-col-tab-content .panel-item:before{
		content: '';
		position: absolute;
		top: 0;
		left: 20px;
		width: 60px;
		height: 4px;
		background: var(--secondary);
	}
	.three-col-tab-content .panel-item .top-section {
		padding: 0;
	}
	.three-col-tab-content .panel-item:first-child .top-section{
		padding-top: 0;
	}
}
@media (min-width: 992px) {
	.three-col-tab-content .panel-item .top-section .description-text ul {
		grid-template-columns: 1fr 1fr;
		column-gap: 4rem;
	}
}