ul.testimonial_list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.testimonials {
	display: flex;
	align-items: center;
	margin-top: 105px;
	margin-bottom: 150px;
}

.testimonial {
	background-color: #EEFBFF;
	border-radius: 4px;
	border: 2px solid rgba(11, 187, 239, 0.20);
	padding: 55px 70px 47px;
}

.testimonial__content {
	font-size: 16px;
	line-height: 29px;
}

.testimonials_wrapper {
	padding: 0 34px;
	position: relative;
	max-width: 60%;
	flex: 0 0 652px;
}

.testimonial__footer {
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 8px;
}

.testimonial__author__photo img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: block;
}

.testimonial__author__name {
	font-weight: bold;
	color: var(--dark-blue);
	margin-bottom: 2px;
}

.testimonial__content {
	margin-bottom: 26px;
}

.testimonial__author__job {
	color: #979797;
	font-style: italic;
}

.testimonial {
	display: none;
}

.testimonial.active {
	display: block;
}

.testimonials_titles {
	text-align: center;
	flex-grow: 1;
}

.testimonials_titles h2 {
	font-size: 32px;
	margin-bottom: 5px;
}

.testimonial_subtitle {
	font-size: 24px;
	color: var(--dark-blue);
}

.testimonials_titles_inside {
	max-width: 426px;
	padding: 0 20px;
	margin: 0 auto;
}

ul.testimonials_nav {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 22px;
	justify-content: center;
	margin-top: 35px;
	position: absolute;
	width: 100%;
	left: 0;
	align-items: center;
}

.testimonial_dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #A7ACC5;
	cursor: pointer;
}

.testimonial_dot.active {
	background-color: var(--dark-blue);
}

.testimonial_arrow {
	width: 16px;
	height: 28px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.testimonial_arrow.prev {
	background-image: url(../../img/arrow-left.svg);
	left: 0;
}

.testimonial_arrow.next {
	background-image: url(../../img/arrow-right.svg);
	right: 0;
}

@media (min-width: 768px) {
	.testimonials_nav .testimonial_arrow {
		display: none;
	}
}

@media (max-width: 767px) {
	.testimonials_titles {
		order: 1;
		margin-bottom: 30px;
	}

	.testimonials_wrapper {
		order: 2;
		padding: 0;
	}

	.testimonials {
		flex-direction: column;
		margin-top: 80px;
		margin-bottom: 110px;
	}

	.testimonials_wrapper {
		max-width: 100%;
		flex: 0 0 100%;
	}

	.testimonials_wrapper > .testimonial_arrow {
		display: none;
	}

	.testimonial_arrow {
		position: static;
	}

	.testimonial_subtitle {
		font-size: 20px;
	}

	.testimonials_titles h2 {
		font-size: 28px;
	}

	.testimonial {
		padding: 28px;
	}

	.testimonials_titles_inside {
		padding: 0;
	}

	.testimonial_arrow {
		transform: none;
		height: 14px;
		width: 10px;
	}

	.testimonial_arrow.prev {
		background-image: url(../../img/arrow-left-mobile.svg);
	}

	.testimonial_arrow.next {
		background-image: url(../../img/arrow-right-mobile.svg);
	}
}
