/* First-time visitor promotional banner calibration. */
.feature-banner {
	width: min(1200px, calc(100% - 48px));
	min-height: 470px;
	margin: 200px auto 80px;
	grid-template-columns: 1fr 1fr;
	background: #fff;
	overflow: visible;
}
.feature-banner__media {
	position: relative;
	overflow: visible;
}
.feature-banner__media img {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% + 120px);
	object-fit: cover;
	object-position: center top;
}
.feature-banner__content {
	align-items: flex-start;
	justify-content: center;
	padding: 60px 58px 60px 70px;
	background: #fff;
	color: #3d4760;
	text-align: left;
}
.feature-banner__content > p:first-child {
	font-size: 0;
	line-height: 1.5;
	margin: 0 0 14px;
	opacity: 1;
	letter-spacing: 0;
	order: 2;
}
.feature-banner__content > p:first-child::after {
	content: "We Are Pleased To Offer You";
	font-size: 13px;
	font-weight: 400;
	color: #4b4f58;
}
.feature-banner__content h2 {
	order: 1;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.15;
	color: #3d4760;
	margin: 0 0 15px;
	text-align: left;
}
.feature-banner__content h3 {
	order: 3;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	color: #3d4760;
	margin: 0 0 14px;
	text-align: left;
}
.feature-banner__content .feature-banner__note {
	order: 4;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: #3d4760;
	opacity: 1;
	margin: 0 !important;
	letter-spacing: .02em;
	text-align: left;
}
.feature-banner__content .button {
	display: none;
}

@media (max-width: 1050px) {
	.feature-banner {
		width: min(760px, calc(100% - 48px));
		min-height: 380px;
		margin-top: 175px;
	}
	.feature-banner__media img {
		height: calc(100% + 95px);
	}
	.feature-banner__content {
		padding: 45px 30px 45px 42px;
	}
	.feature-banner__content h2 {
		font-size: 23px;
	}
	.feature-banner__content h3 {
		font-size: 21px;
	}
}

@media (max-width: 767px) {
	.feature-banner {
		width: min(560px, calc(100% - 32px));
		min-height: 0;
		margin: 48px auto;
		grid-template-columns: 1fr;
	}
	.feature-banner__media {
		height: auto;
		min-height: 0;
	}
	.feature-banner__media img {
		position: static;
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		object-fit: cover;
		object-position: center top;
	}
	.feature-banner__content {
		padding: 36px 24px 42px;
	}
	.feature-banner__content h2 {
		font-size: 24px;
	}
	.feature-banner__content h3 {
		font-size: 21px;
	}
}
