/**
 * Online consultation page.
 */

.online-consultation-hero {
	--consultation-color-ink: #0b173d;
	background-color: #f7f8fa;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--consultation-color-ink);
	font-family: var(--renewal-font-sans);
	min-height: clamp(27rem, 33.8vw, 33rem);
	position: relative;
}
.online-consultation-hero.zoom{
	background-image: url("../img/online-consultation-hero.jpg");
}
.online-consultation-hero.zoom_type{
	background-image: url("../img/online-changecourse-hero.jpg");
}
.online-consultation-hero,
.online-consultation-hero *,
.online-consultation-hero *::before,
.online-consultation-hero *::after {
	box-sizing: border-box;
}

.online-consultation-hero__inner {
	align-items: center;
	display: flex;
	margin: 0 auto;
	max-width: 71rem;
	min-height: inherit;
	padding: clamp(2.5rem, 4vw, 4.5rem) 1.5rem;
	width: 100%;
}

.online-consultation-hero__content {
	/*max-width: 34rem;*/
	width: 62%;
}

.online-consultation-hero__eyebrow {
	align-items: center;
	display: flex;
	font-size: clamp(1.15rem, 1.8vw, 1.65rem);
	font-weight: 700;
	gap: 0.75rem;
	line-height: 1.45;
	margin: 0 0 0.7rem;
}

.online-consultation-hero__device-icon {
	color: currentColor;
	flex: 0 0 auto;
	height: 3.5rem;
	width: 4.4rem;
}

.online-consultation-hero__title {
	color: inherit;
	font-size: clamp(2rem, 3vw, 2.75rem);
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.35;
	margin: 0;
}

.online-consultation-hero__divider {
	border-top: 2px solid currentColor;
	margin: 1.15rem 0 2.65rem;
	max-width: 31rem;
	position: relative;
}

.online-consultation-hero__divider::after {
	background: #f7f8fa;
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	height: 1.35rem;
	left: 50%;
	position: absolute;
	top: -0.7rem;
	transform: translateX(-50%) rotate(45deg);
	width: 1.35rem;
}

.online-consultation-hero__targets {
	display: grid;
	font-size: clamp(1rem, 1.25vw, 1.15rem);
	font-weight: 700;
	gap: 0.75rem;
	line-height: 1.55;
	list-style: none;
	margin: 0 0 1.65rem;
	padding: 0;
}

.online-consultation-hero__targets li {
	padding-left: 2.25rem;
	position: relative;
}

.online-consultation-hero__targets li::before {
	align-items: center;
	border: 1.5px solid #17499b;
	border-radius: 50%;
	color: #17499b;
	content: "✓";
	display: flex;
	font-size: 0.72em;
	height: 1.25rem;
	justify-content: center;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 0.18em;
	width: 1.25rem;
}

.online-consultation-hero__description {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
}

.online-consultation-hero__description p {
	margin: 0 0 0.35rem;
}

@media (max-width: 48rem) {
	.online-consultation-hero {
		background-position: 74% center;
		min-height: 38rem;
	}

	.online-consultation-hero::before {
		background: rgb(var(--renewal-color-paper-rgb) / 82%);
		content: "";
		inset: 0;
		position: absolute;
	}

	.online-consultation-hero__inner {
		justify-content: center;
		padding: 3rem 1.25rem;
		position: relative;
		z-index: 1;
	}

	.online-consultation-hero__content {
		max-width: 36rem;
		text-align: center;
		width: 100%;
	}

	.online-consultation-hero__eyebrow {
		flex-direction: column;
		gap: 0.4rem;
		justify-content: center;
	}

	.online-consultation-hero__divider {
		margin-left: auto;
		margin-right: auto;
		width: min(100%, 28rem);
	}

	.online-consultation-hero__targets {
		justify-items: center;
	}

	.online-consultation-hero__targets li {
		padding-left: 0;
	}

	.online-consultation-hero__targets li::before {
		margin: 0 auto 0.4rem;
		position: static;
	}
}
