.testimonials-sec__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,.8);
	opacity: 0;
	pointer-events: none;
	transition: .3s all;
}

.testimonials-sec.testimonial-open .testimonials-sec__bg {
	opacity: 1;
	pointer-events: auto;
	z-index: 90;
	cursor: pointer;
}

.testimonial-article {
	position: relative;
	border: 1px solid rgba(22, 22, 22, 0.25);
	padding: 42px 38px 118px;
	min-height: 100%;
	transition: .3s all;
	overflow: hidden;
}

.testimonial-article::before {
	content: "";
	display: block;
	width: 54px;
	height: 41px;
	background-image: url("data:image/svg+xml,%3Csvg width='54' height='41' viewBox='0 0 54 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.05 40.5C10.75 40.5 8.75 40.05 7.05 39.15C5.45 38.15 4.1 36.9 3 35.4C1.9 33.8 1.1 31.95 0.6 29.85C0.2 27.75 0 25.7 0 23.7C0 18.8 1.25 14.25 3.75 10.05C6.35 5.85 10.3 2.5 15.6 0L16.95 2.7C14.05 4 11.5 5.95 9.3 8.55C7.2 11.05 6 13.7 5.7 16.5C5.3 18.3 5.3 20 5.7 21.6C7.7 19.6 10.3 18.6 13.5 18.6C16.6 18.6 19.2 19.55 21.3 21.45C23.4 23.35 24.45 26.05 24.45 29.55C24.45 32.75 23.35 35.4 21.15 37.5C19.05 39.5 16.35 40.5 13.05 40.5ZM42.15 40.5C39.85 40.5 37.85 40.05 36.15 39.15C34.55 38.15 33.2 36.9 32.1 35.4C31 33.8 30.2 31.95 29.7 29.85C29.3 27.75 29.1 25.7 29.1 23.7C29.1 18.8 30.35 14.25 32.85 10.05C35.45 5.85 39.4 2.5 44.7 0L46.05 2.7C43.15 4 40.6 5.95 38.4 8.55C36.3 11.05 35.1 13.7 34.8 16.5C34.4 18.3 34.4 20 34.8 21.6C36.8 19.6 39.4 18.6 42.6 18.6C45.7 18.6 48.3 19.55 50.4 21.45C52.5 23.35 53.55 26.05 53.55 29.55C53.55 32.75 52.45 35.4 50.25 37.5C48.15 39.5 45.45 40.5 42.15 40.5Z' fill='%23B48B21'/%3E%3C/svg%3E%0A");
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	margin-bottom: 25px;
}

.testimonial-article.open {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;
	background-color: #fff;
}

.testimonial-article__content {
	position: relative;
}

.testimonial-article__text {
	color: var(--text-default);
	font-size: 15px;
	line-height: 1.53em;
}

.testimonial-article__read-more-btn {
	margin-top: 14px;
	border: 0;
	background-color: transparent;
	padding: 0;
	font-family: 'Lora', serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--gold);
	cursor: pointer;
}

.testimonial-article__text--full {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
}

.testimonial-article__text--full > *:first-child {
	margin-top: 0;
}

.testimonial-article__text--full > *:last-child {
	margin-bottom: 0;
}

.testimonial-article__info-block {
	position: absolute;
	bottom: 42px;
	left: 38px;
	right: 38px;
	font-size: 15px;
	font-style: italic;
	line-height: 1.53em;
}

.testimonial-article__author {
	font-family: 'Lora',serif;
	font-weight: 700;
}

@media screen and (min-width:768px) {
	.testimonial-article.open {
		position: absolute;
		left: 15px;
		width: calc(100% - 30px);
	}
	.testimonial-article::before {
		width: 39px;
		height: 29px;
		margin-bottom: 22px;
	}
	.testimonial-article__read-more-btn {
		font-size: 15px;
	}
}