/**
 * Front page: Section Orange Quote (People's Choice)
 * Two columns – left: image + stats/link; right: orange quote block
 */

@import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&display=swap');

.section-orange-quote {
	display: flex;
	min-height: 600px;
}

.section-orange-quote-signature {
	font-family: 'Monsieur La Doulaise', cursive;
	color: rgba(0, 0, 0, 0.6);
	font-size: 40px;
}

.section-orange-quote-col-l,
.section-orange-quote-col-r {
	flex: 0 0 50%;
}

.section-orange-quote-col-r {
	background-color: #f4a025;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px;
	gap: 34px;
	align-items: baseline;
	color: #000;
}

.section-orange-quote-col-r small {
	color: #956000;
}

.section-orange-quote-content {
	max-width: 500px;
}

.section-orange-quote-col-l {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
}

/* Top block: "20 Years Of Experience" */
.section-orange-quote-h-elem {
	background-color: #f4a025;
	width: 60%;
	height: 70px;
	position: relative;
}

.section-orange-quote-h-elem .section-orange-quote-h-elem-gray {
	background-color: #f9f9f9;
	height: 70px;
	position: absolute;
	width: 20%;
	left: 0;
	top: 0;
	z-index: 1;
}

.section-orange-quote-v-elem {
	height: 150px;
	background: #f4a025;
	width: 40%;
	margin-top: 70px;
	color: #fff;
	text-align: left;
	font-size: 20px;
	padding: 0 25px;
	line-height: 32px;
}

.section-orange-quote-v-elem a {
	text-decoration: none;
	color: #fff;
}

.section-orange-quote-v-elem strong {
	font-size: 40px;
}

.section-orange-quote-v-elem i {
	font-size: 1.5rem;
	vertical-align: middle;
}

/* Bottom block: Learn more + play icon */
.section-orange-quote-h-elem-2 {
	background-color: #f4a025;
	width: 60%;
	height: 70px;
	position: relative;
}

.section-orange-quote-h-elem-2 .section-orange-quote-h-elem-gray {
	background-color: #f9f9f9;
	height: 70px;
	position: absolute;
	width: 20%;
	left: 0;
	top: 0;
	z-index: 1;
}

.section-orange-quote-v-elem-2 {
	height: 50px;
	background: #f4a025;
	width: 40%;
	margin-top: -50px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.section-orange-quote-learn-link {
	text-decoration: none;
	text-align: center;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-orange-quote-play-icon {
	width: 90px;
	height: 90px;
	margin: -45px auto 0;
	display: block;
	cursor: pointer;
	color: #fff;
	font-size: 90px;
	line-height: 1;
	transition: transform 0.2s, color 0.2s;
}

.section-orange-quote-learn-link:hover .section-orange-quote-play-icon {
	transform: scale(1.05);
	color: #fff;
}

.section-orange-quote-v-elem-2 p {
	color: #fff;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 0;
}

.section-orange-quote-col-r h2 {
	margin: 0 0 0.5em;
	font-size: 1.75rem;
	font-weight: 700;
}

.section-orange-quote-col-r p {
	margin: 0 0 1em;
	line-height: 1.6;
}

.section-orange-quote-col-r p:last-of-type {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.section-orange-quote {
		flex-direction: column;
		min-height: auto;
	}

	.section-orange-quote-col-l {
		display: none;
	}

	.section-orange-quote-col-r {
		flex: 0 0 auto;
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.section-orange-quote-content {
		max-width: 100%;
	}
}
