@font-face {
    font-family: 'Peignot Light';
    src: url('/assets/fonts/Peignot-Light.woff2') format('woff2'),
        url('/assets/fonts/Peignot-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cheltenham ITC Pro Book';
    src: url('/assets/fonts/CheltenhamITCPro-Bold.woff2') format('woff2'),
        url('/assets/fonts/CheltenhamITCPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cheltenham ITC Pro Book';
    src: url('/assets/fonts/CheltenhamITCPro-BoldItalic.woff2') format('woff2'),
        url('/assets/fonts/CheltenhamITCPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Cheltenham ITC Pro';
    src: url('/assets/fonts/CheltenhamITCPro-Light.woff2') format('woff2'),
        url('/assets/fonts/CheltenhamITCPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cheltenham ITC Pro';
    src: url('/assets/fonts/CheltenhamITCPro-LightItalic.woff2') format('woff2'),
        url('/assets/fonts/CheltenhamITCPro-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
*,*:before,*:after {
    box-sizing: border-box;
}
body,html { min-height: 100%; height: 100%;  }
body {
	-webkit-font-feature-settings: "kern";
	-webkit-font-smoothing: antialiased;
	background: #FDFCF6;
	font-feature-settings: "kern";
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	overscroll-behavior: none;
	padding: 100vh 0 0 0;
	text-rendering: optimizeLegibility;
	transition: opacity 0.5s linear 0.25s;
}
body, input, select, textarea {
	color: #402B4A;
    font-family: 'Cheltenham ITC Pro', Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: 300;
}
h1, h2 {
	color: #402B4A;
    font-family: 'Peignot Light', Georgia, 'Times New Roman', Times, serif;
	font-size: 50px;
	font-weight: 400;
	line-height: 125%;
	margin: 0 0 27px;
	text-align: center;
	text-transform: uppercase;
	padding: 0;
}
a {
	color: #402B4A;
}
@media (max-width: 768px) {
	h1, h2 {
		font-size: 32px;
		margin-bottom: 25px;
	}
}
@media (max-width: 500px) {
	h1 {
		max-width: 285px;
		margin-left: auto;
		margin-right: auto;
	}
}

.hr {
	margin: 190px auto;
}

.hr img {
	display: block;
	width: 100%;
}

.hr img.mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.hr {
		margin: 100px auto;
	}

	.hr img.mobile-hide {
		display: none;
	}

	.hr img.mobile-only {
		display: block;
	}
}


/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Hero Section ----------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ */
section.hero {
	background: #000 url(/assets/images/hero.webp?v=0.07) 50% 50% no-repeat;
	background-size: cover;
	display: flex;
	height: 100dvh;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.25s linear;
}
section.hero:before {
	background: #000;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.10;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 1s linear 2s; 
}
body.loaded .hero:before {
	opacity: 0;
}
img.hero-logo {
	left: 50%;
	opacity: 0;
	position: absolute;
	top: calc(50% - 53px);
	transform: translateX(-50%);
	transition: opacity 1s ease 0.5s, top 1s ease 2s, width 1s ease 2s;
	width: 396px;
	z-index: 2;
}
body.loaded img.hero-logo {
	top: 80px;
	opacity: 1;
	width: 266px;
}

/*
.inquire-link {
	align-items: center;
	border: 1px solid #fff;
	color: #fff;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	opacity: 0;
	position: absolute;
	right: 175px;
	text-align: center;
	text-decoration: none;
	top: 80px;
	transition: opacity 1s ease 3s, background 0.2s ease, color 0.2s ease;
	width: 106px;
}
body.loaded .inquire-link {
	opacity: 1;
}
.inquire-link:hover {
	background: #fff;
	color: #402B4A;
}
*/

body.at-bottom section.hero {
	opacity: 0;
}

.scroll-down-link {
	background: url(/assets/images/dropdown-arrow.svg) 50% 100% no-repeat;
	background-size: 23px auto;
	display: block;
	left: 50%;
	padding-bottom: 30px;
	position: absolute;
	top: 50px;
	text-decoration: none;
	transform: translateX(-50%);
}

.scroll-down-link:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	section.hero {
		background-image: url(/assets/images/hero-mobile.webp?v=0.06);
	}

	img.hero-logo {
		width: 200px;
	}
	body.loaded img.hero-logo {
		top: 40px;
		opacity: 1;
		width: 150px;
	}
	.inquire-link { 
		bottom: 190px;
		left: 50%;
		right: auto;
		top: auto;
		transform: translateX(-50%);
	}
}

@media (max-width: 600px) {
	section.hero {
		height: calc(100dvh - 150px);
	}
}


/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Form Section ----------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ */
section.form {
	background: #FDFCF6;
	padding: 275px 20px 150px 20px;
	position: relative;
	z-index: 3;
}
section.form > p {
	text-align: center;
}
section.form > p.coming-fall-note {
	margin-top: 60px;
}
form#spark-registration-form {
	margin: 0;
	padding: 0;
}
@media (min-width: 768.5px) {
	form#spark-registration-form {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin: 0;
	}
}
form#spark-registration-form h2 {
	margin-bottom: 100px;
	text-align: center;
	width: 100%;
}
form#spark-registration-form .field-wrap {
	margin-bottom: 55px;
	position: relative;
	width: 100%;
}
@media (min-width: 768.5px) {
	form#spark-registration-form .field-wrap:not(.sub-field-wrap) {
		width: calc(50% - 10px);
	}
}
form#spark-registration-form .field-wrap.select-wrap,
form#spark-registration-form .field-wrap.yes-no-field-wrap {
	align-items: flex-end;
	border-bottom: 1px solid #402B4A;
	display: flex;
	height: 51px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap {
	padding-bottom: 15px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap > label {
	margin-right: 5%;
	width: 40%;
}
form#spark-registration-form .field-wrap:not(.yes-no-field-wrap,.multi-field-wrap) label {
	bottom: 15px;
	max-width: 40%;
	pointer-events: none;
	position: absolute;
}
form#spark-registration-form input[type=text],
form#spark-registration-form textarea {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #402B4A;
	border-radius: 0;
	height: 51px;
	line-height: 51px;
	display: block;
	outline: none;
	padding: 15px 0 15px 45%;
	width: 100%;
}
form#spark-registration-form textarea {
	border: 1px solid #402B4A;
	height: 200px;
	padding: 20px;
}
form#spark-registration-form input[type=text]::-webkit-input-placeholder,
form#spark-registration-form textarea::-webkit-input-placeholder {
	color: #402B4A; 
	opacity: 0.3;
}
form#spark-registration-form input[type=text]::-moz-placeholder,
form#spark-registration-form textarea::-moz-placeholder {
	color: #402B4A; 
	opacity: 0.3;
}
form#spark-registration-form input[type=text]:-ms-input-placeholder,
form#spark-registration-form textarea:-ms-input-placeholder {
	color: #402B4A; 
	opacity: 0.3;
}
form#spark-registration-form .field-wrap.error > label {
	color: red;
}
.choices__placeholder {
	opacity: 0.3;
}
form#spark-registration-form .field-wrap.error input[type=text]::-webkit-input-placeholder { color: #ff4d4d; }
form#spark-registration-form .field-wrap.error input[type=text]::-moz-placeholder { color: #ff4d4d; }
form#spark-registration-form .field-wrap.error input[type=text]:-ms-input-placeholder { color: #ff4d4d; }
form#spark-registration-form .field-wrap.error textarea::-webkit-input-placeholder { color: #ff4d4d; }
form#spark-registration-form .field-wrap.error textarea::-moz-placeholder { color: #ff4d4d; }
form#spark-registration-form .field-wrap.error textarea:-ms-input-placeholder { color: #ff4d4d; }
.choices {
	padding: 0 0 0 45%;
	width: 100%;
}
.choices__list--single {
	padding: 0;
}
.choices__inner {
	background: url(/assets/images/dropdown-arrow.svg) calc(100% - 15px) 50% no-repeat;
	border-radius: 0;
	border: 0;
	display: block;
	font-size: 18px;
	height: 51px;
	padding: 15px 40px 15px 0;
	min-height: 0;
	width: 100%;
}
.choices[data-type*=select-one]:after {
	display: none;
}
.choices__list--dropdown {
	width: 55%;
}
.choices__list--dropdown .choices__item {
	font-size: 18px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap .yes-no-wrap {
	display: flex;
	align-items: center;
	gap: 40px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap .yes-no-wrap label {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio] {
	-moz-appearance: none;
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	border: 1px solid #402B4A;
	border-radius: 0;
	cursor: pointer;
	display: inline-flex;
	height: 24px;
	margin: 0;
	padding: 0;
	justify-content: center;
	position: relative;
	width: 24px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio]:before,
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio]:after {
	background: #402B4A;
	content: '';
	height: 24px;
	left: 11px;
	opacity: 0;
	position: absolute;
	top: -0.5px;
	transform: rotate(45deg);
	transition: opacity 0.1s ease;
	width: 1px;
}
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio]:after {
	transform: rotate(-45deg);
}
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio]:checked:before,
form#spark-registration-form .field-wrap.yes-no-field-wrap input[type=radio]:checked:after {
	opacity: 1;
}
.cf-turnstile {
	margin: 0 auto;
}
.grecaptcha-badge {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
form#spark-registration-form.submitting {
	cursor: wait;
	opacity: 0.5 !important;
}
form#spark-registration-form.submitting * {
	pointer-events: none;
}
@media (min-width: 768.5px) {
	form#spark-registration-form .submit-wrap {
		align-items: flex-start;
		display: flex;
		margin-left: auto;
		margin-top: -40px;
		width: calc(50% - 10px);
	}
}
form#spark-registration-form .submit-wrap .policy-note {
	font-size: 13.5px;
	margin-bottom: 20px;
}
@media (min-width: 768.5px) {
	form#spark-registration-form .submit-wrap .policy-note {
		font-size: 13.5px;
		margin: 0;
		padding-right: 25px;
		width: 45%;
	}
	form#spark-registration-form .submit-wrap .policy-note .inner {
		max-width: 260px;
	}
}
a.submit {
	background: #402B4A;
	border: 1px solid #402B4A;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 300;
	line-height: 100%;
	padding: 11px 25px;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}
a.submit:hover {
	background: transparent;
	color: #402B4A;
}
@media (max-width: 768px) {
	body, input, select, textarea,
	.choices__inner,
	.choices__list--dropdown .choices__item {
		font-size: 16px;
	}
	section.form {
		padding: 160px 20px 100px;
	}
	form#spark-registration-form h2 {
		margin-bottom: 50px;
	}
	form#spark-registration-form .field-wrap {
		margin-bottom: 35px;	
	}
	form#spark-registration-form .submit-wrap {
		display: block;
	}
	a.submit {
		text-align: center;
		width: 100%;
	}
}


/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Thank You Overlay ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------------ */
.thank-you-overlay {
	align-items: center;
	background: #FDFCF6;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	left: 0;
	right: 0;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 3;
}
.thank-you-overlay h2 {
	width: 100%;
}


/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Footer ----------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ */
.footer {
	align-items: flex-end;
	background: #FDFCF6;
	display: flex;
	flex-wrap: wrap;
	font-size: 13.5px;
	gap: 20px;
	padding: 20px;
	position: relative;
	z-index: 2;
}
.footer h2 {
	margin-bottom: 150px;
	width: 100%;
}
.footer .col {
	flex: 1;
}
.footer .col:first-child {
	display: flex;
	gap: 50px;
}
.footer .col .row {
	display: flex;
}
.footer .col .row:first-child {
	border-bottom: 1px solid #402B4A;
	margin-bottom: 33px;
	padding-bottom: 30px;
}
.footer .col .row .sub-col {
	flex: 1;
}
.footer .col .row .sub-col:first-child {
	max-width: 40%;
	min-width: 40%;
}
.footer .col .row .sub-col p {
	margin: 0 0 15px 0;
}
.footer .col .row .sub-col p:last-child {
	margin: 0;
}
.footer .col .row {
	gap: 50px;
}
.footer .col .row .sub-col:last-child {
	padding-right: 25px;
}
.disclaimer {
	font-size: 10px;
	max-width: 812px;
}

@media (max-width: 1024px) { 
	.footer .col .row {
		flex-direction: column;
		gap: 10px;
	}
	.footer .col .row .sub-col:first-child {
		max-width: 100%;
		width: 100%;
	}
	.footer .col .row .sub-col:last-child {
		padding-right: 0;
	}
}

#responsive-check-element {
	display: none;
}

@media (max-width: 768px) { 
	#responsive-check-element {
		bottom: 0;
		display: block;
		pointer-events: none;
		position: fixed;
		right: 0;
		z-index: -999;
	}

	.footer {
		align-items: flex-start;
		flex-direction: column-reverse;
		gap: 50px;
	}

	.footer h2 {
		margin-bottom: 75px;
	}

	.footer .col {
		width: 100%;
	}

	.footer .col:first-child,
	.footer .col .row {
		gap: 25px;
	}

	.privacy-link-wrap,
	.footer .col .row .sub-col:first-child {
		width: 100%;
	}

	.google-notice {
		margin-left: auto;
	}
}

@media (max-width: 500px) {
	.footer .col:first-child, 
	.footer .col .row {
		flex-direction: column;
	}
}


/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Legal Page ------------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ */
body.legal-page {
	font-size: 18px;
	padding-top: 75px !important;
}

.back-to-home-link {
	display: block;
	margin: 0 auto 175px;
	width: 266px;
}

.back-to-home-link img {
	display: block;
	width: 100%;
}

section.legal {
	margin: 0 auto 100px;
	max-width: 890px;
	padding: 0 30px;
	text-align: center;
}

section.legal h2 {
	font-family: 'Cheltenham ITC Pro', Georgia, 'Times New Roman', Times, serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0;
	margin-top: 50px;
	text-transform: none;
}

section.legal ul {
    list-style-position: inside;
    padding-left: 0;
}
