.section-guides {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.section-guides__header {
	display: flex;
	justify-content: space-between;
}

.section-guides__title {
	font-size: 40px;
	font-weight: bold;
	line-height: 47px;
	letter-spacing: 0.03em;
}

.guides {
	display: flex;
}

.swiper-slide.guide {
	width: 240px;
	min-height: 227px;
	display: flex;
	gap: 25px;
	justify-content: center;
}

.guide__photo {
	width: 127px;
	height: 127px;
}

.guide__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	white-space: nowrap;
	gap: 15px;
}

.guide__name {
	font-size: 20px;
	font-weight: bold;
	line-height: 24.3px;
}

.guide__experience {
	font-size: 16px;
	line-height: 17.55px;
	color: var(--DEFAULT);
}

.guide__quote {
	padding-top: 20px;
	position: relative;
	display: flex;
}

.guide__quote-img {
	display: flex;
	position: absolute;
	top: 0;
	left: -10px;
}

.guide__quote-text {
	font-size: 16px;
	line-height: 22px;
	white-space: break-spaces;
	z-index: 1;
}

@media (max-width: 1200px) {
	.section-guides__title {
		font-size: 24px;
		line-height: 130%;
	}

	.guide__info {
		justify-content: center;
		flex-direction: row;
	}

	.swiper-slide.guide {
		width: 100%;
		flex-direction: column;
	}

	.guide__photo {
		width: 78px;
		height: 78px;
	}
}