.fivex-faster {
	background-color: var(--white);
	box-shadow: var(--shadow-section);
}

.fivex-faster-row {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 1fr 275px;
	grid-gap: 30px;
	grid-template-areas: "right left";
}

.fivex-faster-label-wrap {
	display: none;
}

.fivex-faster-tab {
	grid-area: left;
}

.fivex-faster-content {
	grid-area: right;
}

.fivex-faster-tab li {
	position: relative;
	/* padding: 14px 0; */
	font-weight: 700;
	font-size: 18px;
	color: var(--dark);
	cursor: pointer;
	transition: all 0.3s;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.fivex-faster-tab li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.fivex-faster-tab li.active,
.fivex-faster-tab li:hover {
	color: var(--orange);
}

.fivex-faster-tab li:hover {
	opacity: 1;
}

.fivex-faster-tab {
	display: flex;
	align-items: center;
	background: var(--lightGradientAlt);
	border-radius: 12px;
	padding: 48px;
	border: 1px solid var(--border);
	/* max-height: 368px; */
	/* overflow: auto; */
	/* position: relative; */
}

.fivex-faster-tab::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

.fivex-faster-tab::-webkit-scrollbar-track {
	background: #dadada;
}

.fivex-faster-tab::-webkit-scrollbar-thumb {
	background: var(--orange);
	border-radius: 6px;
}

.fivex-faster-content-item {
	display: none;
	padding: 48px;
	border: 1px solid var(--border);
	background: var(--lightGradientAlt);
	border-radius: 12px;
	height: 100%;
	position: relative;
	flex-direction: column;
}

.fivex-faster-content-item::before {
	position: absolute;
	content: attr(data-count);
	font-size: 36px;
	font-weight: 900;
	color: var(--border);
	right: 36px;
	top: 36px;
	line-height: 1;
}

.fivex-faster-content-item .title {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
	color: var(--dark);
	margin-bottom: 32px;
}

.fivex-faster-content-item .desc {
	font-weight: 400;
	color: var(--bodyText);
	max-width: 85%;
}

.fivex-faster-content-item .desc:has(+ div) {
	margin-bottom: 20px;
}

.fivex-faster-content-item .desc ul {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	gap: 12px;
}

.fivex-faster-content-item .desc ul li {
	position: relative;
	padding-left: 30px;
	font-weight: 600;
	font-size: 18px;
}

.fivex-faster-content-item .desc ul li::before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzMyODBfMjM2NTEpIj4KPHBhdGggZD0iTTcuOTk5NjcgMTQuNjY1NEMxMS42ODE2IDE0LjY2NTQgMTQuNjY2MyAxMS42ODA2IDE0LjY2NjMgNy45OTg3QzE0LjY2NjMgNC4zMTY4IDExLjY4MTYgMS4zMzIwMyA3Ljk5OTY3IDEuMzMyMDNDNC4zMTc3OCAxLjMzMjAzIDEuMzMzMDEgNC4zMTY4IDEuMzMzMDEgNy45OTg3QzEuMzMzMDEgMTEuNjgwNiA0LjMxNzc4IDE0LjY2NTQgNy45OTk2NyAxNC42NjU0WiIgc3Ryb2tlPSIjRkY2MDAwIiBzdHJva2Utd2lkdGg9IjEuMzMzMzMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNiA4LjAwMTNMNy4zMzMzMyA5LjMzNDY0TDEwIDYuNjY3OTciIHN0cm9rZT0iI0ZGNjAwMCIgc3Ryb2tlLXdpZHRoPSIxLjMzMzMzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zMjgwXzIzNjUxIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	left: 0;
	top: 8px;
}

.fivex-faster-tools {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 30px;
}

.fivex-faster-tools .tool-item {
	border: 1px solid var(--gray);
	background: #edf0f3;
	width: 64px;
	height: 64px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fivex-faster-tools .tool-item img {
	display: block;
	max-width: 32px;
	height: auto;
}

.fivex-faster .btn-arrows {
	display: flex;
	align-items: center;
	margin-top: auto;
	justify-content: space-between;
	user-select: none;
	gap: 20px;
}

.fivex-faster-arrow {
	display: flex;
	align-items: center;
	gap: 15px;
}

.fivex-faster-arrow-prev,
.fivex-faster-arrow-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--darkChoco);
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.3s;
	transform-origin: center;
}

.fivex-faster-arrow-prev:active,
.fivex-faster-arrow-next:active {
	transform: scale(0.95);
}

.fivex-faster-arrow-prev:hover,
.fivex-faster-arrow-next:hover {
	background-color: var(--orange);
	border-color: var(--orange);
}

.fivex-faster-arrow-prev:hover svg,
.fivex-faster-arrow-next:hover svg {
	filter: brightness(0) invert(1);
}

.fivex-faster-content-item.active {
	display: flex;
}



@media screen and (max-width: 1920px) {
	.fivex-faster-row {
		grid-template-columns: 1fr 450px;
	}

	.fivex-faster-content-item .desc ul li::before {
		top: 6px;
	}

	.general-cta .left-block {
		padding: 45px 40px;
	}

	.general-cta .content h3,
	.general-cta .content .h3 {
		font-size: 32px;
	}

	.fivex-faster-content-item .desc {
		max-width: 90%;
	}
}

@media screen and (max-width: 1560px) {
	.fivex-faster-content-item .desc ul li {
		font-size: 16px;
	}

	.fivex-faster-content-item .desc ul li::before {
		top: 5px;
	}

	.fivex-faster-content-item .desc {
		max-width: 100%;
	}

	.fivex-faster-content-item {
		padding: 36px 26px;
	}

	.fivex-faster-content-item .title {
		margin-bottom: 20px;
		padding-right: 40px;
	}

	.fivex-faster-tools .tool-item {
		width: 54px;
		height: 54px;
	}

	.fivex-faster-arrow-prev,
	.fivex-faster-arrow-next {
		width: 40px;
		height: 40px;
		padding: 7px;
	}
}


@media screen and (max-width: 991px) {
	.fivex-faster-row {
		display: flex;
		flex-direction: column;
		margin-top: 0;
	}

	.fivex-faster-tab {
		display: none;
	}

	.fivex-faster-tools {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	.fivex-faster-content-item .title {
		max-width: 80%;
	}

	.fivex-faster-tools {
		gap: 10px;
	}

	.fivex-faster .btn-arrows {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}

	.fivex-faster-content-item {
		padding: 30px 20px 20px;
	}
}

@media screen and (max-width: 576px) {
	.fivex-faster .btn-arrows {
		flex-direction: column;
	}
}

@media screen and (min-width: 2160px) {
	.fivex-faster-content-item .title {
		font-size: 28px;
	}

	.fivex-faster-tab li {
		font-size: 22px;
	}

	.fivex-faster-row {
		grid-template-columns: 1fr 520px;
	}

	.fivex-faster-tools .tool-item {
		width: 75px;
		height: 75px;
	}

	.fivex-faster-tools .tool-item img {
		max-width: 44px;
	}

	.fivex-faster-content-item .desc ul li {
		background-position: 0 8px;
	}

	.fivex-faster-tab li.active {
		background-size: 30px;
	}
}