/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-display: swap;
  font-stretch: 75% 125%;
  font-style: normal;
  font-weight: 100 900;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-display: swap;
  font-stretch: 75% 125%;
  font-style: italic;
  font-weight: 100 900;
}

/* Display */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-grid { display: grid !important; }
.d-inline-grid { display: inline-grid !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Responsive variants */
@media (min-width: 576px) {
  .d-sm-none { display: none !important; }
  .d-sm-inline { display: inline !important; }
  .d-sm-inline-block { display: inline-block !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  .d-sm-grid { display: grid !important; }
}

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-inline { display: inline !important; }
  .d-md-inline-block { display: inline-block !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-grid { display: grid !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-inline { display: inline !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-grid { display: grid !important; }
}

@media (min-width: 1200px) {
  .d-xl-none { display: none !important; }
  .d-xl-inline { display: inline !important; }
  .d-xl-inline-block { display: inline-block !important; }
  .d-xl-block { display: block !important; }
  .d-xl-flex { display: flex !important; }
  .d-xl-grid { display: grid !important; }
}

@media (min-width: 1400px) {
  .d-xxl-none { display: none !important; }
  .d-xxl-inline { display: inline !important; }
  .d-xxl-inline-block { display: inline-block !important; }
  .d-xxl-block { display: block !important; }
  .d-xxl-flex { display: flex !important; }
  .d-xxl-grid { display: grid !important; }
}

:root {
	--primary: #b90066;
	--secondary: #ffffff;
	--border-radius: 10px;
	--font: "Montserrat", sans-serif;
}
body {
	font-family: var(--font);
	line-height: 1.6;
	color: #333;
}
body * {
	box-sizing: border-box;
}
.menu-open {
	overflow: hidden;
}
sup {
	vertical-align: super;
	line-height: 1;
	font-size: 0.9rem;
}

.h-100 {
	height: 100%;
}
.align-items-center {
	align-items: center;
}

.btn {
	background: var(--primary);
	color: var(--secondary);
	max-width: 250px;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
	font-size: 1rem;
	font-family: var(--font);
	border: none;
	cursor: pointer;
}
.btn--white {
	background: var(--secondary);
	color: var(--primary) !important;
}
.btn--full {
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 1.5rem 0;
}
ul, ol {
	list-style: outside;
	margin: 0 0 1.5rem 40px;
}
ul li,
ol li {
	margin: 0 0 0.5rem 0;
}
.heading--lg {
	margin: 3rem 0;
}

.heading > span {
	color: var(--secondary);
	padding: 1rem 2rem;
	display: inline-flex;
	font-weight: 700;
	line-height: 1.4;
	overflow: hidden;
	position: relative;
	font-size: 65px;
}
.heading > span:nth-of-type(2) {
	top: -15px;
}
.heading > span:before {
	content: '';
	background: var(--primary);
	width: 0%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s 0.5s;
}
.is-ready .heading > span:before {
	width: 100%;
}
.heading > span > span {
	position: relative;
	top: 90px;
	transition: all 0.5s 0.75s;
}
.is-ready .heading > span > span {
	top: 0;
}
.heading--md > span {
	font-size: 30px;
}
.heading--sub > span {
	
}
.heading--sub > span {
	font-size: 1.4rem;
}
.sub-heading {
	font-weight: 700;
	color: var(--primary);
	font-size: 20px;
	line-height: 1.2;
}
.lead {
	padding: 2rem;
	border: 1px solid var(--primary);
	color: var(--primary);
	border-radius: var(--border-radius);
	text-align: center;
	font-size: 1.4rem;
}
.reference {
	font-size: 0.8rem;
}
.fw-semibold {
	font-weight: 600;
}
.fw-bold {
	font-weight: 700;
}
.fs-md {
	font-size: 1.4em;
}
.text-primary {
	color: var(--primary);
}
.text-center {
	text-align: center;
}
a {
	color: var(--primary);
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mb {
	margin-bottom: 1.5rem;
}
.mb-0 {
	margin-bottom: 0;
}
.bg-primary {
	background: var(--primary);
}
.bg-blue {
	background: #464e7e;
}
.bg-green {
	background: #8cac89;
}
.bg-grey {
	background: #f1f1f1;
}
.bg-purple {
	background: #563d82;
}
.text-white,
.text-white * {
	color: #fff;
}
.text-upper {
	text-transform: uppercase;
}
.text-underline {
	text-decoration: underline;
}
.h-100 {
	height: 100%;
}
.stretched-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.no-break {
	text-wrap: nowrap;
}
hr {
	color: var(--primary);
	margin: 75px 0;
}
hr.small {
	margin: 1rem 0;
}

.terms h2 {
	text-transform: uppercase;
	font-weight: 700;
}
.terms h3 {
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: underline;
}
.terms table {
	border-top: 1px solid #000;
}
.terms table th,
.terms table td {
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	padding: 0.5rem;
	text-align: left;
}
.terms table th:last-of-type,
.terms table td:last-of-type {
	border-right: none;
}
.terms table th {
	font-weight: 700;
}

.top-bar {
	background: #fff;
	height: 58px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 15;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.top-bar a {
	display: block;
}
.top-bar img {
	height: 48px;
	width: auto;
	display: block;
}

.header {
	background: var(--primary);
	color: var(--secondary);
	position: relative;
	z-index: 10;
}
.header .container {
	height: 115px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.header__logo {
	background: var(--primary);
	width: 250px;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	top: -30px;
	left: 0;
}
.header__logo img {
	width: 150px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.header__spacer,
.header__cta {
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.2rem;
}
.header__nav > * {
	color: currentColor;
	text-decoration: none;
}
.header__nav > *:hover {
	text-decoration: underline;
}
.header__nav > .active {
	font-weight: 700;
	text-decoration: none;
}
.menu-toggle {
	background: transparent;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: var(--secondary);
	cursor: pointer;
}
.menu-toggle svg {
	width: 30px;
	height: 30px;
	display: block;
	fill: currentColor;
}
.header__mobile-nav {
	background: var(--primary);
	width: 100%;
	height: 100%;
	display: block;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 100;
	padding: 100px 2rem 2rem 2rem;
	transition: all 0.5s ease-in-out;
}
.menu-open .header__mobile-nav {
	left: 0;
}
.header__mobile-nav .menu-toggle {
	position: absolute;
	top: 58px;
	right: 0;
}
.header__mobile-nav a:not(.btn) {
	color: var(--secondary);
	font-size: 1.2rem;
	text-decoration: none;
	margin: 0 0 1rem 0;
	height: 40px;
	display: flex;
	align-items: center;
}
.header__mobile-nav a:not(.btn).active {
	text-decoration: underline;
}

.footer {
	border-top: 5px solid var(--primary);
	padding: 2rem 0;
}
.footer__nav {
	margin: 0 0 1.5rem 0;
	align-items: center;
	gap: 2rem;
}
.footer__nav > * {
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	display: flex;
	align-items: center;
	height: 30px;
}
.footer__nav > *:hover {
	text-decoration: underline;
}
.footer__nav > .active {
	text-decoration: underline;
}
.footer_disclaimer {
	font-size: 0.8rem;
	color: #666;
}

.hero {
	background: #000;
	height: 350px;
	position: relative;
	overflow: hidden;
}
.hero--lg {
	height: 610px;
	margin-bottom: -115px;
	padding-bottom: 115px;
}

@keyframes grow {
	0% {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.2, 1.2, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}
.hero__background {
	content: '';
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.6;
	transform: scale3d(1, 1, 1);
	animation: grow 30s ease-in-out infinite;
	will-change: transform;
	opacity: 0;
	transition: all 0.5s;
}
.hero--lg:after {
	content: '';
	background: var(--primary);
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s 0.25s;
}
.hero__content {
	position: relative;
	z-index: 5;
}
.is-ready .hero--lg:after {
	width: 35%;
}
.is-ready .hero__background {
	opacity: 1;
}

.main {
	position: relative;
	padding: 75px 0;
}
.main--gradient {
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
}
.body {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 75px 2rem;
}
.callout {
	padding: 2rem;
	background: var(--primary);
	color: var(--secondary);
	font-size: 1.2rem;
}
.callout a {
	color: currentColor;
}

.card {
	padding: 2rem;
	text-align: center;
}
.card__icon {
	margin: 0 0 1rem 0;
}

.to-top {
	background: var(--primary);
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: fixed;
	bottom: -80px;
	right: 2rem;
	border: none;
	cursor: pointer;
	transition: all 0.5s;
}
.is-ready .to-top {
	bottom: 5rem;
}
.to-top img {
	display: block;
	width: 50%;
	height: auto;
}
.modal-container {
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	padding: 1rem;
	display: none;
}
.modal-open .modal-container {
	display: flex;
}
.modal {
	background: #fff;
	width: 100%;
	max-width: 800px;
	border-top: 10px solid var(--primary);
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	font-size: 1.2rem;
	max-height: 80%;
	overflow: auto;
}
.modal__image {
	width: 200px;
	height: 300px;
	display: block;
	object-fit: cover;
	object-position: center;
}
.modal__form {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	user-select: none;
}
.checkbox input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.checkbox__box {
	width: 40px;
	height: 40px;
	border: 2px solid var(--primary);
	display: grid;
	place-items: center;
	transition: background 0.2s, border-color 0.2s;
}
.checkbox__box::after {
	content: '';
	width: 20px;
	height: 6px;
	border: solid white;
	border-width: 0 0 2px 2px;
	transform: rotate(-45deg);
	opacity: 0;
	transition: opacity 0.2s;
	margin-top: -4px;
}
.checkbox input:checked + .checkbox__box {
	background: var(--primary);
	border-color: var(--primary);
}
.checkbox input:checked + .checkbox__box::after {
	opacity: 1;
}
.checkbox input:focus-visible + .checkbox__box {
	outline: 3px solid #80aaff;
	outline-offset: 2px;
}

.related {
	position: relative;
}
.related__media {
	background: url(/assets/images/hero-background.png);
	background-size: cover;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0.5rem 0;
}
.related__icon {
	background: var(--primary);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.related__icon > * {
	width: 50%;
	height: auto;
	display: block;
}

.split-card {
	padding: 0 1rem 1rem 1rem;
}
.split-card h3 {
	width: calc(100% + 2rem);
	text-align: center;
	margin: 0 -1rem 1rem -1rem;
	font-size: 1.2rem;
	font-weight: 700;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.img-fluid {
	max-width: 100%;
	height: auto;
	display: block;
}
.animate {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 0.5s 0.25s;
}
.animate-loaded {
	opacity: 1;
	transform: translate(0, 0);
}

.table-responsive {
	width: 100%;
	overflow-x: auto;
}

@media only screen and (max-width: 991px) {
	.animate {
		opacity: 1;
		transform: translate(0);
	}
	.container {
		max-width: 100%;
	}
	.heading--lg > span {
		font-size: 45px;
	}
}

@media only screen and (max-width: 640px) {
	body {
		font-size: 14px;
	}
	.animate {
		opacity: 1;
		transform: translate(0);
	}
	.hero--lg {
		height: 475px;
		padding-bottom: 40px;
	}
	.heading > span {
		font-size: 30px;
		padding: 0.5rem 1rem;
	}
	.heading--md > span {
		font-size: 20px;
		padding: 0.5rem 1rem;
	}
	.heading--sub > span {
		font-size: 14px;
	}
	.heading--lg {
	  margin: 1rem 0 0 0;
	}
	.body {
		padding: 1rem;
	}
	.lead {
		padding: 1rem;
		font-size: 1.2rem;
	}
	.modal {
		flex-direction: column;
	}
	.modal__image {
		display: none;
	}
	.main {
		padding: 50px 0;
	}
	hr {
		margin: 50px 0;
	}
}