h1 {
	text-transform: uppercase;
}

.homeBgSection {
	background-image:
		linear-gradient(
			rgba(15, 23, 42, 0.25),
			rgba(15, 23, 42, 0.35)
		),
		var(--section-bg-image);

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;

	padding: 60px 0;
}

.homeIntroBg {
	--section-bg-image: url('../images/sunrise-desert-path.png');
}

.homeWhatWeDoBg {
	--section-bg-image: url('../images/sunrise-canyon-path.png');
}

.homeTransformBg {
	--section-bg-image: url('../images/sunrise_over_mountain_path_and_ridge.png');
}

.homeIntroPanel {
	/*max-width: 920px;*/
	margin: 0 auto;
	padding: 45px 55px;

	background: rgb(0 46 99 / 69%);
	border-radius: 26px;

	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(8px);
}

.homeIntroPanelPink {
	background: rgb(89 25 74 / 69%);
}

.homeIntroPanel h1 {
	margin-top: 0;
	margin-bottom: 22px;
	color: #FFFFFF;
}

.homeIntroPanel p {
	color: #E5E5E5;
	font-size: 18px;
	line-height: 1.65;
}

.includeBox {
	display: inline-block;
	width: auto;
	max-width: 100%;
	
	color: #FFF;

	margin: 5px auto 5px;
	padding: 12px 20px;

	background: rgb(64 16 53 / 57%);
	border-radius: 24px;

	text-align: center;
}

.includeBox p {
	margin: 0 0 18px 0;
}

.includeBox ul {
	display: inline-block;
	margin: 0;
	padding-left: 20px;

	text-align: left;
}

.includeBox li {
	margin-bottom: 6px;
}

@media (max-width: 767px) {
	.homeIntroBg {
		background-attachment: scroll;
		background-position: center center;
	}

	.homeIntroPanel {
		padding: 30px 24px;
		border-radius: 20px;
	}
	
	.homeIntroPanel h1 {
		font-size: 2.0rem;
	}

	.homeIntroPanel p {
		font-size: 16px;
	}
	
	.mtMobileLg {
		margin-top: 40px;
	}
}

/* ------------------------------------------- */

.valuePillarCards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 45px;
	text-align: left;
}

.valuePillarCard {
	position: relative;
	width: calc(25% - 18px);
	min-height: 300px;
	padding: 100px 26px 30px 26px;
	box-sizing: border-box;

	display: flex;
	flex-direction: column;

	background: rgba(255,255,255,0.94);
	border: 2px solid rgba(15,23,42,0.08);
	border-radius: 24px;
	overflow: hidden;

	box-shadow: 0 18px 45px rgba(15,23,42,0.10);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		background-color 0.35s ease,
		border-color 0.35s ease;
}

.valuePillarCard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 62px;

	background: #003344;

	transition: background-color 0.35s ease;
}

.valuePillarCard:hover {
	transform: translateY(-8px);
	background: #ffffff;
	border-color: rgba(225,38,160,0.35);
	box-shadow: 0 24px 55px rgba(15,23,42,0.16);
}

.valuePillarCard:hover::before {
	background: #C04A73;
}

.valuePillarNumber {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);

	display: flex;
	align-items: center;
	justify-content: center;

	width: 50px;
	height: 50px;

	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;

	background: #27AAE1;
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(15,23,42,0.18);

	z-index: 2;

	transition:
		background-color 0.35s ease,
		transform 0.35s ease;
}

.valuePillarCard:hover .valuePillarNumber {
	background: #F490B3;
	transform: translateX(-50%) scale(1.06);
}

.valuePillarCard h3 {
	margin: 0 0 18px 0;

	color: #0f172a;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

.valuePillarCard p {
	margin: 0;

	color: #475569;
	font-size: 15px;
	line-height: 1.65;
	text-align: center;
}

@media (max-width: 991px) {
	.valuePillarCard {
		width: calc(50% - 12px);
		min-height: 280px;
	}
}

@media (max-width: 767px) {
	.valuePillarCards {
		display: block;
		margin-top: 35px;
	}

	.valuePillarCard {
		width: 100%;
		min-height: 0;
		margin-bottom: 24px;
		padding-top: 100px;
	}

	.valuePillarCard:last-child {
		margin-bottom: 0;
	}
}