.services-hero {
	position: relative;
	width: 100%;
	min-height: 519px;
	background-color: #09b36f;
	background-image: url("../../images/services-hero-background.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.services-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(9, 179, 111, 0.8);
	z-index: 1;
	pointer-events: none;
}

.services-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 620px);
	align-items: stretch;
	gap: 24px;
	min-height: 519px;
	position: relative;
	z-index: 2;
}

.services-hero-copy {
	max-width: 640px;
	align-self: center;
	padding: 48px 0;
	z-index: 2;
}

.services-hero-copy h1 {
	font-family: var(--font-secondary);
	font-size: 52px;
	font-weight: 700;
	font-style: normal;
	line-height: 110%;
	letter-spacing: 0;
	color: var(--white);
	margin: 0 0 18px;
}

.services-hero-copy h1 .hero-highlight {
	color: #ffff00;
}

.services-hero-copy h1 .hero-h1-line {
	display: block;
}

html[lang="en"] .services-hero-copy h1 .hero-h1-line {
	white-space: nowrap;
}

.services-hero-list {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0;
	color: var(--white);
	margin: 0 0 28px;
}

.btn-quote-yellow {
	width: 251px;
	height: 43px;
	padding: 12px 80px;
	border-radius: 6px;
	gap: 10px;
	background: #ffff00;
	color: #111;
	font-family: var(--font-secondary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	box-sizing: border-box;
}

.btn-quote-yellow:hover {
	background: #fff;
	color: #111;
}

.services-hero-media {
	position: relative;
	height: 550px;
	overflow: hidden;
	z-index: 2;
	align-self: end;
}

.services-hero-media img {
	position: absolute;
	left: 60%;
	bottom: -230px;
	transform: translateX(-50%);
	width: min(500px, 55vw);
	height: auto;
	max-width: none;
	object-fit: cover;
	object-position: top center;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.services-hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
	}

	.services-hero-media {
		height: 550px;
	}

	.services-hero-media img {
		left: 60%;
		bottom: -230px;
		width: min(500px, 55vw);
	}

	.services-hero-copy h1,
	.services-hero-copy h1 .hero-highlight {
		font-size: 40px;
	}

	html[lang="en"] .services-hero-copy h1 .hero-h1-line {
		white-space: normal;
	}
}

@media (max-width: 900px) {
	.services-hero,
	.services-hero-inner,
	.services-hero-media {
		min-height: 0;
	}

	.services-hero-inner {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.services-hero-copy {
		max-width: 100%;
		padding: 40px 0 12px;
	}

	.services-hero-copy h1,
	.services-hero-copy h1 .hero-highlight {
		font-size: 32px;
		line-height: 112%;
		margin-bottom: 14px;
	}

	.services-hero-list {
		font-size: 15px;
		line-height: 24px;
		margin-bottom: 22px;
	}

	.btn-quote-yellow {
		width: auto;
		max-width: 100%;
		padding: 12px 32px;
	}

	.services-hero-media {
		height: 320px;
		width: 100%;
	}

	.services-hero-media img {
		left: 60%;
		bottom: -130px;
		transform: translateX(-50%);
		width: min(360px, 88vw);
		height: auto;
		max-width: none;
		object-fit: cover;
		object-position: top center;
	}
}

@media (max-width: 480px) {
	.services-hero-copy {
		padding: 32px 0 8px;
	}

	.services-hero-copy h1,
	.services-hero-copy h1 .hero-highlight {
		font-size: 28px;
	}

	.services-hero-list {
		font-size: 14px;
		line-height: 22px;
	}

	.btn-quote-yellow {
		width: 100%;
		padding: 12px 16px;
	}

	.services-hero-media {
		height: 280px;
	}

	.services-hero-media img {
		left: 50%;
		bottom: -160px;
		width: min(290px, 90vw);
	}
}

.service-category-section {
	background: var(--white);
}

.service-category-section .category-block {
	padding-top: 28px;
	padding-bottom: 28px;
}

.service-category-section + .service-category-section .category-block {
	padding-top: 16px;
}

@media (max-width: 900px) {
	.service-category-section .category-block {
		padding-top: 24px;
		padding-bottom: 28px;
	}
}
