.testimonials {
    margin-block: 100px;
}

.testimonials .testimonials-title {
	margin: 0;
}

.testimonials .testimonials-items {
	position: relative;
	padding: 40px 40px 90px;
	border-radius: 20px;
	background: linear-gradient(180deg, #475AA380 0%, var(--blue-ray) 100%);
	box-shadow: inset 10px 10px 30px 0px #FFFFFF40;
}

.testimonials .testimonials-items::after {
	content: '';
	position: absolute;
	bottom: 41px;
	right: 110px;
	border-top: 50px solid var(--white);
	border-left: 70px solid transparent;
	border-right: 0px solid transparent;
}

.testimonials .testimonials-items:not(:first-child) {
    margin-top: 80px;
}

.testimonials .testimonials-items__inner.is-slider+.swiper-pagination {
	bottom: 52px !important;
}

.testimonials .testimonials-items__inner:not(.is-slider)+.swiper-pagination {
    display: none;
}

.testimonials .testimonials-item {
	position: relative;
	height: initial;
	padding: 45px 45px 35px;
	background-color: var(--white);
}

.testimonials .testimonials-item__inner {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.testimonials .testimonials-item__text {
	
}

.testimonials .testimonials-item__text > *:first-child::before {
    content: "“";
}

.testimonials .testimonials-item__text > *:last-child::after {
    content: "”";
}

.testimonials .testimonials-item__info {
	display: flex;
	align-items: flex-end;
	gap: 25px;
}

.testimonials .testimonials-item__image {
	flex-shrink: 0;
	display: flex;
	width: 120px;
	height: 120px;
}

.testimonials .testimonials-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonials .testimonials-item__name {
	font-weight: 800;
    color: var(--orange);
}

.testimonials .testimonials-item__position {
    font-weight: 600;
    color: var(--orange);
}

.testimonials .testimonials-item__position:not(:first-child) {
    margin-top: 4px;
}

@media (max-width: 1024px) {
	.testimonials {
        margin-block: 80px;
    }

	.testimonials .testimonials-items {
		padding: 30px 30px 70px;
	}

	.testimonials .testimonials-items::after {
		bottom: 31px;
		right: 100px;
		border-top-width: 40px;
		border-left-width: 60px;
	}

	.testimonials .testimonials-items:not(:first-child) {
		margin-top: 60px;
	}

	.testimonials .testimonials-items__inner.is-slider+.swiper-pagination {
		bottom: 40px !important;
	}

	.testimonials .testimonials-item {
		padding: 35px;
	}
}

@media (max-width: 767px) {
	.testimonials {
        margin-block: 60px;
    }

	.testimonials .testimonials-items {
		padding: 24px 24px 50px;
	}

	.testimonials .testimonials-items::after {
		bottom: 21px;
		right: 50px;
		border-top-width: 30px;
		border-left-width: 50px;
	}

	.testimonials .testimonials-items:not(:first-child) {
		margin-top: 40px;
	}

	.testimonials .testimonials-items__inner.is-slider+.swiper-pagination {
		bottom: 28px !important;
	}

	.testimonials .testimonials-item {
		padding: 25px;
	}

	.testimonials .testimonials-item__inner {
		gap: 15px;
	}

	.testimonials .testimonials-item__info {
		gap: 15px;
	}

	.testimonials .testimonials-item__image {
		width: 90px;
		height: 90px;
	}

	.testimonials .testimonials-item__position:not(:first-child) {
		margin-top: 0;
	}

	.testimonials .testimonials-item__position br {
		display: none;
	}
}