
.tabs-container {
	display: flex;
	margin-top: 18px;
	gap: 31px;
}
.section-tabs .tabs-left {
	width: calc(25% - 31px);
}
.tabs-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sl-title {
	padding: 25px 10px 25px 22px;
	cursor: pointer;
	margin-bottom: 19px;
	border-radius: 36px;
	background: #FBFBFB;
	transition: 0.4s ease;
	font-size: 17px;
	color: #0E1448;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 5px;
}
.sl-title:not(.active):hover {
	box-shadow: 0px 0px 12px 0px #0533E61A inset;
}
.sl-title::before {
	content: '\e912';
	clip-path: inset(0 100% 0 0);
	color: var(--primary);
	font-size: 25px;
	line-height: 36px;
	font-family: icomoon;
	vertical-align: -2px;
	transition: 0.4s ease;
	margin-left: -25px;
}
.sl-title.active::before {
	clip-path: inset(0 0 0 0);
	margin-left: 0;
}
.tabs-list .sl-title:last-child {
	margin-bottom: 0;
}
.sl-title.active {
	box-shadow: 0px 0px 44px 0px #0533E61A inset;
	padding-left: 12px;
}
.tabs-right {
	width: 70%;
}
.tabs-right .sl-content {
	height: 100%;
}
.item-tab-content {
	box-shadow: 0px 0px 84px 0px #0533E60D inset;
	border-radius: 36px;
	padding: 38px 50px 38px 38px;
	display: flex;
	height: 100%;
	align-items: center;
	gap: 20px;
}
.tab-body .link {
	border-radius: 16px;
	min-width: 96px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	font-size: 16px;
	align-items: center;
	transition: 0.4s ease;
	background: var(--primary);
	border: none;
	box-shadow: 0px 4px 14px 0px #0533E633;
	color: #fff;
	margin-top: 28px;
}
.item-tab-content .link:hover {
	background: #fff;
	color: var(--primary);
}
.item-tab-content svg ,
.item-tab-content .thumbnail {
	flex: 0 0 40%;
}
.thumbnail img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
}
.tab-body .title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 14px;
}
.tab-body .excerpt {
	font-size: 13px;
	line-height: 1.6;
}
.tab-box {
	height: 100%;
}

@media screen and (max-width: 991.99px) {
	.section-tabs .tabs-left {
		width: 100%;
	}
	.sl-title {
		flex: 1 0 48%;
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767.99px) {
	.item-tab-content .tab-body {
		text-align: center;
		padding: 0;
	}
	.item-tab-content {
		padding: 40px 35px 38px;
		gap: 10px;
		flex-direction: column;
	}

}
@media screen and (min-width: 1400px) {
	.section-tabs .tabs-container {
		max-width: 80%;
		margin: auto;
	}
}
@media screen and (min-width: 1700px) {
	.section-tabs .sl-title {
		font-size: 16px;
	}
}