:root {
	--black: #000000;
	--white: #ffffff;
}

/* Story */

.story__item {
	display: flex;
}

.story__left {
	width: 33.3333%;
	padding-right: 64px;
	padding-bottom: 32px;
	position: relative;
}


.story__left::after {
	content: '';
	width: 2px;
	background-color: var(--decoration-color);
	height: 100%;
	position: absolute;
	right: 32px;
	top: 0;
	transform: translateX(50%);
}

.story__items .story__item:last-child .story__left::after {
	content: none;
}

.story__left::before {
	content: '';
	background-color: var(--decoration-color);
	width: 16px;
	height: 16px;
	border-radius: 32px;
	position: absolute;
	top: 0;
	right: 32px;
	transform: translateX(50%);
}

.story__right {
	padding-bottom: 24px;
}

.story__title-left {
	margin-bottom: 12px;
}

.story__title-right {
	margin-bottom: 12px;
}

.story__subtitle {
	padding-left: 8px;
}

.story__text p {
	margin-bottom: 0;
}



@media (min-width: 768px) {
    .story__right {
        width: 75%;
    }

    .story__left {
        width: 25%;
        min-width: 300px;
    }
}


@media (max-width: 1500px) {
	.story__left {
		width: 25%;
	}

	.story__right {
		width: 75%;
	}
}

@media (max-width: 1023px) {
	.story__left {
		width: 35%;
	}

	.story__right {
		width: 65%;
	}
}

@media (max-width: 767px) {
	.story__item {
		flex-direction: column;
		padding-left: 24px;
		position: relative;
	}

	.story__item:before {
		content: '';
		background-color: var(--decoration-color);
		width: 16px;
		height: 16px;
		border-radius: 32px;
		position: absolute;
		top: 0;
		left: -14px;
		transform: translateX(50%);
	}

	.story__item:after {
		content: '';
		width: 2px;
		background-color: var(--decoration-color);
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		transform: translateX(50%);
	}

	.story__left {
		width: 100%;
	}

	.story__right {
		width: 100%;
	}

	.story__left:before {
		content: none;
	}

	.story__left:after {
		content: none;
	}

	.story__subtitle {
		padding-left: 0;
	}

	.story__item:last-child .story__right {
		padding-bottom: 0;
	}
}

/* @media (max-width: 1024px) {
	.story__item {
		flex-direction: column;
	}

	.story__left {
		width: auto;
		padding-right: 0;
		padding-left: 64px;
	}

	.story__left::after {
		right: auto;
		left: 32px;
		transform: translateX(-50%);
	}

	.story__left::before {
		right: auto;
		left: 32px;
		transform: translateX(-50%);
	}

	.story__right {
		padding-left: 64px;
	}

	.story__right::after {
		content: '';
		width: 2px;
		background-color: var(--decoration-color);
		height: 100%;
		position: absolute;
		left: 32px;
		top: 0;
		transform: translateX(-50%);
	}
} */

/* Testimonial */
.testimonial__item-wrapper {
	padding-top: 32px;
	padding-left: 32px;
	position: relative;
}

.testimonial__image {
	width: 64px;
	height: 64px;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.testimonial__item {
	padding: 32px;
	cursor: pointer;
}

.testimonial__text {
	margin-bottom: 16px;
}

.testimonial-pagination {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.testimonial-pagination .swiper-pagination-bullet {
	background-image: none;
	width: 12px;
	height: 12px;
	font-size: 0;
	background-color: #FFF;
}

/* @media(max-width: 1024px) {
	.testimonial__item-wrapper {
		padding: 32px;
	}
} */