.t02-s02,
.t02-s02 * {
	box-sizing: border-box;
}

.t02-s02 {
	background: var(--color-white);
	color: #000;
	font-family: var(--type-font-body);
	height: 788px;
	position: relative;
}

.t02-s02__header {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 66px;
	transform: translateX(-50%);
	width: 715px;
}

.t02-s02__eyebrow {
	align-items: center;
	color: var(--color-brand-gold);
	display: flex;
	font-size: 20px;
	font-weight: 700;
	gap: 16px;
	justify-content: center;
	line-height: 24px;
	margin: 0 0 20px;
	text-transform: capitalize;
}

.t02-s02__eyebrow span {
	background: var(--color-brand-gold);
	height: 1px;
	width: 50px;
}

.t02-s02 h2 {
	font-family: "Roboto Condensed", Arial, sans-serif;
	font-size: var(--section-heading-font-size, 60px);
	font-weight: var(--section-heading-font-weight, 900);
	letter-spacing: -0.55px;
	line-height: var(--section-heading-line-height, 65px);
	margin: 0;
	text-align: center;
}

.t02-s02 h2 > span {
	display: block;
	height: 65px;
	margin: 0 auto;
	width: max-content;
}

.t02-s02 h2 > span:last-child {
	background: var(--color-brand-red);
	box-shadow: 0 4px 60px rgba(255, 255, 255, 0.4);
	color: var(--color-white);
	height: 70px;
	line-height: var(--section-heading-line-height, 65px);
	padding: 0;
	width: 329px;
}

.t02-s02__intro {
	color: #2d2d2d;
	font-size: 18px;
	font-weight: 400;
	left: 50%;
	line-height: 24px;
	margin: 0;
	position: absolute;
	text-align: center;
	top: 269px;
	transform: translateX(-50%);
	width: 729px;
}

.t02-s02__intro strong {
	font-weight: 700;
}

.t02-s02__intro--mobile,
.t02-s02__mobile-note {
	display: none;
}

.t02-s02__cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, 301px);
	height: 288px;
	left: 50%;
	position: absolute;
	top: 392px;
	transform: translateX(-50%);
	width: 1276px;
}

.service-option-card {
	background: #171717;
	border-radius: 16px;
	color: var(--color-white);
	height: 288px;
	overflow: hidden;
	position: relative;
	width: 301px;
}

.service-option-card:focus-visible {
	box-shadow: 0 0 0 3px var(--color-white), 0 0 0 6px var(--color-brand-red);
	outline: none;
}

.service-option-card__image,
.service-option-card__shade {
	inset: 0;
	position: absolute;
}

.service-option-card__image {
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}

.service-option-card__shade {
	background: linear-gradient(205.58deg, rgba(0, 0, 0, 0) 29.518%, rgba(0, 0, 0, 0.691) 87.674%);
	transition: background 220ms ease;
}

.service-option-card h3 {
	font-size: 22px;
	font-weight: 700;
	left: 24px;
	line-height: 28px;
	margin: 0;
	position: absolute;
	top: 158px;
	transition: top 220ms ease;
	width: 253px;
}

.service-option-card__short,
.service-option-card__full {
	font-weight: 400;
	left: 24px;
	margin: 0;
	position: absolute;
	transition: opacity 160ms ease, transform 220ms ease;
	width: 253px;
}

.service-option-card__short {
	font-size: 16px;
	line-height: 22px;
	opacity: 1;
	top: 196px;
}

.service-option-card__full {
	font-size: 14px;
	line-height: 19px;
	opacity: 0;
	top: 60px;
	transform: translateY(8px);
}

.service-option-card__cta {
	align-items: center;
	color: var(--color-brand-gold);
	display: flex;
	font-size: 16px;
	font-weight: 700;
	gap: 14px;
	left: 24px;
	line-height: 20px;
	position: absolute;
	text-decoration: none;
	top: 248px;
	white-space: nowrap;
}

.service-option-card__cta img {
	flex: 0 0 20px;
	transform: rotate(90deg);
}

.service-option-card:hover .service-option-card__image,
.service-option-card:focus-within .service-option-card__image,
.service-option-card.is-expanded .service-option-card__image {
	transform: scale(1.035);
}

.service-option-card:hover .service-option-card__shade,
.service-option-card:focus-within .service-option-card__shade,
.service-option-card.is-expanded .service-option-card__shade {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.93));
}

.service-option-card:hover h3,
.service-option-card:focus-within h3,
.service-option-card.is-expanded h3 {
	top: 24px;
}

.service-option-card:hover .service-option-card__short,
.service-option-card:focus-within .service-option-card__short,
.service-option-card.is-expanded .service-option-card__short {
	opacity: 0;
	transform: translateY(-8px);
}

.service-option-card:hover .service-option-card__full,
.service-option-card:focus-within .service-option-card__full,
.service-option-card.is-expanded .service-option-card__full {
	opacity: 1;
	transform: translateY(0);
}

.service-option-card__cta:hover,
.service-option-card__cta:focus-visible {
	color: #efd19f;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 1319px) {
	.t02-s02 {
		height: auto;
		padding: 66px 24px 108px;
	}

	.t02-s02__header,
	.t02-s02__intro,
	.t02-s02__cards {
		left: auto;
		position: relative;
		top: auto;
		transform: none;
	}

	.t02-s02__header,
	.t02-s02__intro {
		margin-left: auto;
		margin-right: auto;
	}

	.t02-s02__intro {
		margin-top: 51px;
	}

	.t02-s02__cards {
		grid-template-columns: repeat(2, 301px);
		height: auto;
		margin: 51px auto 0;
		width: 626px;
	}
}

@media (max-width: 1023px) {
	.t02-s02 {
		height: 1588px;
		padding: 0 20px;
	}

	.t02-s02__header {
		left: 20px;
		position: absolute;
		top: 46px;
		transform: none;
		width: calc(100% - 40px);
	}

	.t02-s02__eyebrow {
		font-size: 13px;
		gap: 12px;
		line-height: 17px;
		margin: 0;
		text-transform: uppercase;
	}

	.t02-s02__eyebrow span {
		width: 24px;
	}

	.t02-s02 h2 {
		font-size: var(--section-heading-font-size, 36px);
		letter-spacing: 0;
		line-height: var(--section-heading-line-height, 42px);
		margin-top: 18px;
	}

	.t02-s02 h2 > span {
		height: 42px;
	}

	.t02-s02 h2 > span:last-child {
		height: 46px;
		line-height: var(--section-heading-line-height, 42px);
		margin-top: 2px;
		padding: 0;
		width: 224px;
	}

	.t02-s02__intro {
		font-size: 16px;
		font-weight: 400;
		left: 20px;
		line-height: 23px;
		margin: 0;
		position: absolute;
		top: 198px;
		transform: none;
		width: calc(100% - 40px);
	}

	.t02-s02__intro--desktop {
		display: none;
	}

	.t02-s02__intro--mobile {
		display: block;
	}

	.t02-s02__cards {
		gap: 16px;
		grid-template-columns: minmax(0, 1fr);
		height: auto;
		left: 20px;
		margin: 0;
		position: absolute;
		top: 291px;
		transform: none;
		width: calc(100% - 40px);
	}

	.service-option-card {
		height: 288px;
		width: 100%;
	}

	.service-option-card__shade {
		background: linear-gradient(202.375deg, rgba(0, 0, 0, 0) 29.518%, rgba(0, 0, 0, 0.691) 87.674%);
	}

	.service-option-card h3 {
		font-family: var(--type-font-body);
		width: calc(100% - 48px);
	}

	.service-option-card__short,
	.service-option-card__full {
		width: calc(100% - 48px);
	}

	.service-option-card__short {
		font-weight: 500;
		line-height: 24px;
	}

	.service-option-card__full {
		display: none;
	}

	.service-option-card__cta {
		font-size: 14px;
		line-height: 18px;
		text-transform: uppercase;
	}

	.service-option-card:hover .service-option-card__image,
	.service-option-card:focus-within .service-option-card__image,
	.service-option-card.is-expanded .service-option-card__image {
		transform: none;
	}

	.service-option-card:hover .service-option-card__shade,
	.service-option-card:focus-within .service-option-card__shade,
	.service-option-card.is-expanded .service-option-card__shade {
		background: linear-gradient(202.375deg, rgba(0, 0, 0, 0) 29.518%, rgba(0, 0, 0, 0.691) 87.674%);
	}

	.service-option-card:hover h3,
	.service-option-card:focus-within h3,
	.service-option-card.is-expanded h3 {
		top: 158px;
	}

	.service-option-card:hover .service-option-card__short,
	.service-option-card:focus-within .service-option-card__short,
	.service-option-card.is-expanded .service-option-card__short {
		opacity: 1;
		transform: none;
	}

	.service-option-card:active .service-option-card__shade {
		background: linear-gradient(202.375deg, rgba(0, 0, 0, 0.08) 29.518%, rgba(0, 0, 0, 0.78) 87.674%);
	}

	.t02-s02__mobile-note {
		color: #616161;
		display: block;
		font-size: 12px;
		font-weight: 400;
		left: 20px;
		line-height: 18px;
		margin: 0;
		position: absolute;
		text-align: center;
		top: 1521px;
		width: calc(100% - 40px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-option-card__image,
	.service-option-card__shade,
	.service-option-card h3,
	.service-option-card__short,
	.service-option-card__full {
		transition: none;
	}
}

/* Page148 I190: retain staged pallet in wide tablet cards. */
@media(min-width:681px) and (max-width:1199px){body.page-id-148 .t02-s02__cards .service-option-card:nth-child(2) .service-option-card__image{object-position:50% 100%;}}
