.dv2-page {
	--dv2-primary: var(--color-primary, #0097dc);
	background: #fff;
	color: #17324d;
	overflow: hidden;
}

.dv2-container {
	width: min(100% - 32px, 1210px);
	margin: 0 auto;
}

.dv2-section-heading h1,
.dv2-section-heading h2 {
	margin: 0;
	color: var(--dv2-primary);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.dv2-section-heading--center {
	text-align: center;
}

.dv2-section-heading span,
.dv2-section-heading::after {
	content: "";
	display: block;
	width: 58px;
	height: 4px;
	margin: 18px auto 0;
	border-radius: 99px;
	background: var(--dv2-primary);
}

.dv2-section-heading--center::after {
	display: none;
}

.dv2-section-heading:not(.dv2-section-heading--center)::after {
	margin-left: 0;
}

.dv2-section-heading:not(.dv2-section-heading--center) span {
	display: none;
}

.dv2-hero {
	padding-top: 53px;
}

.dv2-hero picture,
.dv2-hero img {
	display: block;
	width: 100%;
}

.dv2-hero img {
	height: min(33.333vw, 640px);
	object-fit: cover;
}

@media (max-width: 767px) {
	.dv2-container {
		width: min(100% - 28px, 480px);
	}

	.dv2-section-heading h1,
	.dv2-section-heading h2 {
		font-size: 24px;
	}

	.dv2-section-heading span,
	.dv2-section-heading::after {
		width: 44px;
		height: 3px;
		margin-top: 10px;
	}

	.dv2-hero img {
		height: auto;
			max-height: 640px;
			aspect-ratio: auto;
			object-position: center;
		}
		
		.dv2-hero {
			padding-top: 0;
		}

		.dv2-hero img {
			padding-top: 0;
		}
}