.wtp_quote {
	margin-bottom: 50px;
	margin-top: 50px;
	border-radius: 24px;
	background-color: rgb(251 227 236 / 50%);
	padding: 30px;
	font-size: 24px;
	line-height: 37px;
	font-style: italic;
	color: var(--pink);
	position: relative;
	text-align: center;
}

.wtp_quote:before,
.wtp_quote:after {
	content: '';
	position: absolute;
	display: block;
	width: 45px;
	height: 32px;
}

.wtp_quote:before {
	background-image: url(../../img/quote-top-left.svg);
	top: 0;
	left: 23px;
	transform: translateY(-50%);
}

.wtp_quote:after {
	background-image: url(../../img/quote-bottom-right.svg);
	bottom: 0;
	right: 23px;
	transform: translateY(50%);
}

@media (max-width: 767px) {
	.wtp_quote {
		font-size: 16px;
		line-height: 28px;
		padding: 30px 16px;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.wtp_quote:before {
		left: 16px;
	}

	.wtp_quote:after {
		right: 16px;
	}
