/* stylelint-disable */
.c-quote-slider {
	height: 100%;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

@media (min-width: 1024px) {
	.c-quote-slider {
		margin-top: 6rem;
		margin-bottom: 6rem;
	}
}

.c-quote-slider__slide.swiper-slide {
	height: auto;
}

.c-quote-slider__slide-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-quote-slider__quote {
	max-width: 768px;
}

.c-quote-slider__text {
	text-align: center;
}

.c-quote-slider__author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 28px;
}

@media (min-width: 1024px) {
	.c-quote-slider__author {
		margin-top: 49px;
	}
}

.c-quote-slider__author-avatar {
	width: 40px;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.c-quote-slider__author-avatar {
		width: 56px;
	}
}

.c-quote-slider__author-name {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
}

.c-quote-slider__author-title {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
}

.c-quote-slider__button-next,
.c-quote-slider__button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: var(--z-1);
	cursor: pointer;
}

@media (min-width: 0) and (max-width: 1023px) {
	.c-quote-slider__button-next,
	.c-quote-slider__button-prev {
		display: none;
	}
}

.c-quote-slider__button-next {
	right: 2px;
}

.c-quote-slider__button-prev {
	left: 2px;
}

.c-quote-slider__pagination {
	margin: 43px 0 16px 0;
	position: relative;
	width: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 0.5em;
}

.c-quote-slider__pagination .swiper-pagination-bullet {
	background-color: var(--color-grey-9);
}

.c-quote-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color-grey-700);
}

@media (min-width: 1024px) {
	.c-quote-slider__pagination {
		display: none;
	}
}

/*# sourceMappingURL=quote-slider.css.map */