/* Internal page hero banners */
.page_hero {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: #fff;
	margin-bottom: 0;
}
.page_hero_bg {
	position: absolute;
	inset: 0;
	background-image: var(--page-hero-image);
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.page_hero_shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 24, 16, 0.42) 0%, rgba(18, 24, 16, 0.58) 45%, rgba(18, 24, 16, 0.72) 100%);
	z-index: 1;
}
.page_hero_inner {
	position: relative;
	z-index: 2;
	padding-top: 56px;
	padding-bottom: 48px;
	box-sizing: border-box;
}
.page_hero_crumbs.crumbs {
	color: rgba(255, 255, 255, 0.7);
	padding-bottom: 18px;
}
.page_hero_crumbs.crumbs a {
	color: rgba(255, 255, 255, 0.85);
}
.page_hero_crumbs.crumbs a:hover {
	color: #fff;
}
.page_hero_crumbs .arrow {
	color: rgba(255, 255, 255, 0.45);
}
.page_hero_title {
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 44px;
	line-height: 1.22;
	font-weight: 800;
	margin: 0 0 14px;
	color: #fff;
	max-width: 820px;
	letter-spacing: -0.02em;
}
.page_hero_title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 14px;
	border-radius: 3px;
	background: #d7b46a;
}
.page_hero_usp {
	margin: 0;
	max-width: 640px;
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 18px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.94);
}
.page_hero_cta {
	padding-top: 28px;
}
.page_hero_cta .btn {
	display: inline-block;
	text-decoration: none;
}

/* When hero is present, hide duplicate in-content H1 */
body.page .page_wr > .title_wr:first-child,
body.page .about_wr > .wr > .title_wr:first-child,
body.page .page_catalog > .wr > .title_wr:first-child,
body.page .page_clients > .wr > .title_wr:first-child,
body.page .page_manufacturers > .wr > .title_wr:first-child {
	display: none;
}

@media screen and (max-width: 1000px) {
	.page_hero {
		min-height: 300px;
	}
	.page_hero_title {
		font-size: 32px;
	}
}
@media screen and (max-width: 720px) {
	.page_hero {
		min-height: 280px;
	}
	.page_hero_inner {
		padding-top: 40px;
		padding-bottom: 36px;
	}
	.page_hero_title {
		font-size: 26px;
	}
	.page_hero_usp {
		font-size: 15px;
	}
}
