.module-quote {
	margin-bottom: 49px;
	padding-top: 48px;
	text-align: center;
	line-height: 1.2;
}

.module-quote-holder {
	font-size: 2.75rem;
	font-weight: 400;
	font-family: var(--font-family-heading), sans-serif;
	color: var(--color-primary);
}

.module-quote-holder:before {
	margin: 0 auto 29px;
	display: block;
	width: 125px;
	height: 86px;
	background-image: url('../../images/quote-icon.svg');
	background-repeat: no-repeat;
	content: '';
	pointer-events: none;
}

.module-quote p {
	margin-bottom: 0;
}

.module-quote strong {
	display: block;
	color: var(--color-secondary);
}

@media screen and (min-width: 768px) {
	.module-quote {
		margin-bottom: 108px;
		padding-top: 90px;
		text-align: left;
		line-height: 1;
	}

	.module-quote-holder {
		padding-top: 20px;
		padding-left: 166px;
		position: relative;
		font-size: 2.813rem;
		max-width: 1050px;
	}

	.module-quote-holder:before {
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transform: translateX(-30px);
	}

	.module-quote.animated .module-quote-holder:before {
		animation: quote-icon-fade-in-left 600ms 0.8s ease-out forwards;
	}
}

@keyframes quote-icon-fade-in-left {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
