.tabs-container {
	background: #FFF;
	border: 1px solid #D3D4DF;
	border-radius: 10px;
	display: flex;
}
.tabs-header {
	display: flex;
	flex-direction: column;
	width: 35%;
}
.tabs-img {
	width: 65%;
}
.tabs-header-item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	cursor: pointer;
	position: relative;
	flex: 1;
	padding: 40px;
}
.tabs-header-item__number,
.tabs-header-item__title {
	color: #1C1E2A;
	font-size: 22px !important;
	font-weight: 700;
	line-height: 28px !important;
	letter-spacing: 1px;
	margin: 0;
}
.active .tabs-header-item__number,
.active .tabs-header-item__title {
	color: #1463FF;
}
.tabs-header-item:not(.active) .tabs-header-item__description {
	display: none;
}
.tabs-header-item__description {
	color: #1C1E2A;
	font-size: 18px;
	font-weight: 300;
	line-height: 32px;
	letter-spacing: 1px;
	margin: 0;
}
.tabs-header-item__content {
	display: flex;
    flex-direction: column;
	gap: 12px;
}
.tabs-header-item:not(:last-child):after {
	content: '';
	background: #D3D4DF;
	width: 320px;
	height: 1px;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
	position: absolute;
}
.tabs-img {
	border-left: 1px solid #D3D4DF;
	padding: 15px;
}
.tab-img {
	width: 100%;
    object-fit: cover;
    height: 570px !important;
    border-radius: 8px !important;
	display: none;
}
.active {
	display: flex;
}

@media(max-width: 768px) {
	.tabs-header {
		width: 100%;
	}
	.tabs-header-item {
		padding: 40px 10px;
		flex-direction: column;
		gap: 23px;
	}
	.temp {
		display: flex;
		gap: 12px;
		padding-inline: 10px;
	}
	.tab-img {
		height: 246px !important;
	}
}