#how-it-works-parent {
	position: relative;
	height: 2000px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
	top: unset !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: #463cf5 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #463cf5 !important;
	border-color: #463cf5 !important;
}

#test-slider {
	/* animation: sliderAnimate 9s linear 2s infinite normal; */
	width: 0%;
}

.how-it-works-title {
	font-size: 53px;
	text-align: center;
	color: white;
	font-family: "Instrument Sans", system-ui;
	font-weight: 500;
}

.how-it-works-content {
	display: flex;
	background: rgba(255, 255, 255, 0.2);
	align-items: center;
	column-gap: 56px;
	padding: 24px;
	box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.08);
	border-radius: 32px;
}

.how-it-works-content img {
	width: 100%;
	max-width: 700px;
	border-radius: 13px;
}

.how-it-works-content p {
	color: white;
}

.how-it-works-content > div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.how-it-works-content p:first-of-type {
	font-size: 80px;
	font-weight: 900;
	margin-bottom: 56px;
	margin-top: 32px;
}

.how-it-works-content p:nth-of-type(2) {
	font-size: 40px;
	font-weight: 700;
}

.how-it-works-content p:nth-of-type(3) {
	font-size: 16px;
	font-weight: 500;
}

@media screen and (max-width: 1024px) {
	.how-it-works-content img {
		width: 65%;
	}
}

@media screen and (max-width: 768px) {
	#how-it-works-parent {
		height: unset;
	}
	.how-it-works-content {
		flex-direction: column;
		row-gap: 32px;
		padding: 16px;
	}

	.how-it-works-content img {
		width: 100%;
	}

	.how-it-works-content p:first-of-type {
		font-size: 56px;
		margin-bottom: 32px;
	}

	.how-it-works-content p:nth-of-type(2) {
		font-size: 32px;
	}

	.how-it-works-content p:nth-of-type(3) {
		font-size: 16px;
	}
}

@keyframes sliderAnimate {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}
