/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 15 2023 | 00:11:56 */
.tabs--right-side {
	box-sizing: border-box;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	counter-reset: tabs;
	min-height: max(1160px, 60vh); /* fix to avoid overlap */
	padding: 20vh 0px;
}

.tabs--right-side .evlt-tabs__nav {
	box-sizing: border-box;
	order: 1;
	display: flex;
    flex-direction: column;
	padding-left: 120px;
	justify-content: center;
}

.tabs--right-side .evlt-tabs__btn {
	display: flex;
	flex-direction: column;
	background-color: transparent;
	font-family: var(--headings-font-family);
	font-size: 50px;
	line-height: 50px;
	color: rgba(17, 17, 17, 0.2);
	padding: 40px 0;
	border: 0;
	height: auto;
	text-align: left;
	cursor: pointer;
	
	counter-increment: tabs;
}

.tabs--right-side .evlt-tabs__btn.evlt-tabs__btn--active {
	color: #111;
}

.tabs--right-side .evlt-tabs__btn:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.tabs--right-side .evlt-tabs__btn::before {
	content: '0' counter(tabs) '.';
	display: block;
	color: rgba(17, 17, 17, 0.3);
	font-family: var(--main-font-family);
	font-size: 24px;
	font-weight: bold;
	line-height: 34px;
	margin-bottom: 10px;
}

.tabs--right-side .evlt-tabs__btn.evlt-tabs__btn--active::before {
	color:  var(--alt2-brand-color);
}

.tabs--right-side .evlt-tabs__item--active {
	height: 100%;
    display: flex;
}

.tabs__item--right-side-header {
	padding: 60px 90px;
}

.tabs__item--right-side-header .evlt-paragraph__sub-title {
	/* font-weight: bold; */
	font-size: 80px;
	line-height: 80px;
	font-weight: 100;
	font-family: var(--headings-font-family);
}

.evlt-tabs__item--active .tabs__item--right-side-header .evlt-paragraph__sub-title {
	color: 	#fff;
}

.tabs__item--right-side-header .evlt-paragraph__sub-title::before {
	content: '';
	display: block;
	width: 40px; height: 1px;
	background-color: var(--alt2-brand-color);
	margin: 0 auto 20px;
}

.tabs__item--right-side-header .evlt-paragraph__text {
	font-size: 16px;
	line-height: 22px;
	color: #999;
}

.tabs__item--right-side-header .evlt-paragraph__cta::before {
	display: none;
}

.tabs__item--right-side-header .evlt-paragraph__cta {
	color: var(--alt2-brand-color);
	padding-bottom: 8px;
	border-bottom: 1px solid currentColor;
	width: auto;
    margin: 0 auto;
}

.tabs__item--right-side {
	box-sizing: border-box;
	width: 100%; height: 100%;
}

.tabs__item--right-side .evlt-paragraph__text {
	color: white;
}

.tabs__item--right-side .evlt-paragraph__sub-title {
	color: white;
	font-weight: 300;
	height: 100%;
    max-width: 100%;
    background-color: rgba(0,0,0,0.5);
    padding: 95px;
    display: flex;
    flex-direction: row;
    align-items: center;
	margin-bottom: 0px;
}

.evlt-tabs__item {
	transition: all 0.3s ease;
}

@media (max-width: 1023px) {
	.tabs--right-side {
		display: flex;
    	flex-direction: column-reverse;
		min-height: auto;
	}
	
	.tabs--right-side .evlt-tabs__nav {
		padding: 0;
    	flex-direction: row;
		column-gap: 5px;
	}
	
	.tabs--right-side .evlt-tabs__btn {
		font-size: 20px;
		line-height: 1em;
		flex-grow: 1;
		flex-shrink: 0;
		width: calc(30%);
	}
	
	.tabs__item--right-side-header {
		padding: 30px;
		box-sizing: border-box;
		width: 100%;
	}
	
	.tabs__item--right-side-header .evlt-paragraph__sub-title {
		font-size: 40px;
    	line-height: 1em;
	}
}

@media (max-width: 767px) {
	.tabs--right-side {
		padding-top: 0px;
		padding-bottom: 20px;
	}
	
	.tabs--right-side .evlt-tabs__btn {
		padding-top: 0px;
	}
}