.steps-wrapper {
	display: flex;
	gap: 20px;
	margin: 56px auto 0;
}
.steps-items {
	flex: 0 0 47%;
}
.step-item {
	position: relative;
	padding-left: 32px;
	margin-bottom: 17px;
}
.steps-items .step-item:last-child {
	margin-bottom: 0;
}
.step-item:not(.active) {
	cursor: pointer;
}
.step-item .count {
	white-space: nowrap;
	position: absolute;
	left: -44px;
	top: 50%;
	background: #F6F6F6;
	width: 120px;
	text-align: center;
	height: 32px;
	border-radius: 24px 24px 0 0;
	transform: rotate(-90deg) translateX(12%);
	display: inline-flex;
	font-variation-settings: "wght" 500, "wdth" 100;
	font-size: 12px;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	color: var(--color_text);
	transition: 0.6s ease;
}
.step-item:hover .count,
.step-item.active .count {
	background: var(--primary);
	color: #fff;
}
.step-title {
	border: 1.41px solid #D1D1D1;
	border-radius: 30px;
	padding: 30px;
	min-height: 175px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.step-title .title {
	color: #000A30;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 14px;
}
.step-item.active .title {
	color: var(--primary);
}

.mobile-step-item .desc,
.step-title .desc {
	color: var(--gray);
	font-size: 13px;
	line-height: 1.8;
	text-align: justify;
}
.mobile-step-item .desc {
	margin-bottom: 24px;
}
.steps-media {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.step-image img {
	max-height: 630px;
	width: auto;
	margin: auto;
}
.mobile-step-item {
	position: relative;
	border: 1.41px solid #EBEBEB;
	border-radius: 30px;
	margin: 53px 0 20px;
}
.mobile-step-item .count {
	position: absolute;
	top: -33px;
	background: #F6F6F6;
	height: 33px;
	width: 132px;
	text-align: center;
	border-radius: 24px 24px 0 0;
	font-size: 12px;
	left: 41px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mobile-step-item .accordion {
	padding: 24px 20px 24px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.accordion-item.active .accordion::after {
	content: "\e91c";
	color: var(--primary);
}
.mobile-step-item .accordion::after {
	content: "\e91b";
	font-family: 'icomoon';
	color: var(--color_main);
	font-size: 38px;
	margin-left: auto;
	transition: 0.3s;
	line-height: 1;
}
.mobile-step-item .title {
	color: var(--color_text);
	font-size: 18px;
	line-height: 1.4;
}
.mobile-step-item .accordion-content {
	padding: 0 25px 20px;
}
.mobile-steps-wrapper {
	margin-top: 73px;
}
.video-btn {
	width: 41px;
	height: 41px;
	color: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	border-radius: 100%;
	cursor: pointer;
	transition: 0.4s ease;
	background: var(--primary);
}
.video-btn:hover {
	background: var(--gray);
}
.video-btn::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(151, 151, 151, 0.4);
	position: absolute;
	margin: auto;
	inset: -4px;
	border-radius: 100%;
	animation: pulse-on 1s ease-in-out infinite;
	z-index: -1;
}
@keyframes pulse-on {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1400px) {
	.steps-wrapper {
		max-width: 80%;
	}
}

