/*-----// FONTS //-----*/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




/*-----// LAYOUT //-----*/

:root {
	--black: #000;
	--lightgrey: #eee;
    --grey: #ccc;
    --darkgrey: #3B3C3C;
	--white: #fff;
	--darkpurple: #3D0059;
	--purple: #972BC8;
	--yellow: #FFE700;
	
	--serif: Times, serif;
	--sans: 'Montserrat', sans-serif;
}

html {
    min-height: 100%;
    padding: 0px;
    margin: 0px;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    background: var(--white);
    padding: 0px;
    font-family: var(--sans);
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
	line-height: 1.4;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.page-template-page-landing {
	background: var(--darkpurple);
	color: var(--white);
}
p, li, .p, address {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
}
a {
	color: var(--black);
}
a:hover, a:focus {
	color: var(--black);
}
main {
	position: relative;
	overflow: hidden;
}
main p, main ul, main ol {
	margin: 0 0 20px;
}
main ul, main ol {
	padding-left: 20px;
}
main li {
	margin: 5px 0px;
}
main a {
	text-decoration: underline;
}
main a:hover, main a:focus {
	text-decoration: none;
}
a, a:hover, button, .animate, .animate:hover, input[type="submit"], input[type="submit"]:hover {
	transition: all 0.6s ease;
}
*:focus {
	outline: none !important;
	box-shadow: none;
}
button {
	border: 0;
	padding: 0;
	background-color: transparent;
    outline: none;
}
b, strong {
	font-weight: 700;
}
small {
	font-size: 0.75em;
}
.serif {
	font-family:  var(--serif) !important;
}
.sans {
	font-family: var(--sans) !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-style: normal;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1, .h1 {
	font-size: 4rem;
	font-weight: 600;
}
h2, .h2 {
	font-size: 3.4rem;
	font-weight: 600;
}
h3, .h3 {
	font-size: 2.8rem;
	font-weight: 600;
}
h4, .h4 {
	font-size: 2.4rem;
	font-weight: 600;
}
h5, .h5 {
	font-size: 1.8rem;
	font-weight: 600;
}
h6, .h6 {
	font-size: 1.4rem;
	font-weight: 600;
}

@media (max-width : 767px) {
	h1, .h1 {
		font-size: 3rem;
	}
	h2, .h2 {
		font-size: 2.6rem;
	}
	h3, .h3 {
		font-size: 2rem;
	}
	h4, .h4 {
		font-size: 1.8rem;
	}
	h5, .h5 {
		font-size: 1.8rem;
	}
	h6, .h6 {
		font-size: 1.4rem;
	}
}

img, figure {
	max-width: 100%;
	height: auto;
}
.img-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

blockquote, blockquote p {
	font-size: 2rem;
	margin: 0 0 20px;
	line-height: 3rem;
	padding: 0px;
	border-left: none;
	text-align: center;
}
.blockquote_caption {
	font-size: 2rem;
	font-weight: 400;
	font-style: normal;
	line-height: 3rem;
}
.blockquote_caption small {
	line-height: 1.3;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
hr {
	margin-top: 3rem;
	margin-bottom: 3rem;
	background-color: var(--yellow);
	opacity: 1;
}

/*-----// BOOTSTRAP ADDITIONS //-----*/

.container-fluid {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
}

@media (max-width : 767px) {
	.container-fluid {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}


/*-----// BUTTON CLASSES //-----*/

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.btn, .gform_button {
	font-size: 1.6rem;
	font-weight: 600;
	padding: 12px 24px;
	border: 1px solid;
	border-radius: 0rem;
	margin: 0;
	text-decoration: none;
	min-width: 175px;
}

.btn-black {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
	background-color: var(--white);
	border-color: var(--black);
	color: var(--black);
}
.btn-yellow {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--purple);
}
.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active {
	background-color: var(--purple);
	border-color: var(--purple);
	color: var(--yellow);
}
.btn-purple {
	background-color: var(--purple);
	border-color: var(--purple);
	color: var(--yellow);
}
.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--purple);
}
.btn-darkpurple {
	background-color: var(--darkpurple);
	border-color: var(--darkpurple);
	color: var(--yellow);
}
.btn-darkpurple:hover,
.btn-darkpurple:focus,
.btn-darkpurple:active {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--purple);
}


/*-----// CUSTOM CLASSES //-----*/

.text-white {
	color: var(--white);
}
.text-black {
	color: var(--black);
}
.text-yellow {
	color: var(--yellow);
}
.text-purple {
	color: var(--purple);
}
.text-darkpurple {
	color: var(--darkpurple);
}

.bg-none {
	background-color: transparent;
}
.bg-white {
    background-color: var(--white);
}
.bg-black {
    background-color: var(--black);
}
.bg-purple {
    background-color: var(--purple);
}
.bg-darkpurple {
    background-color: var(--darkpurple);
}
.bg-yellow {
    background-color: var(--yellow);
}

hr.line {
    width: 100px;
	display: block;
    border-top-width: 2px;
    margin-left: 0;
	margin-top: 2rem;
    margin-bottom: 2rem;
}
hr.line-center {
	margin-left: auto;
	margin-right: auto;
}
hr.line-white {
    border-top-color: var(--white);
}


/*-----// MASTER LAYOUT //-----*/

.align-center,
.aligncenter {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.align-left {
    float: left;
}
.align-right {
    float: right;
}


/*-----// ANIMATIONS //-----*/

.animate-up {
    transform: translateY(100px);
    opacity: 0;
}
.animate-stagger .col {
    opacity: 0;
    transform: translateY(30px);
}
.animate-up.in-view, 
.animate-stagger .col.in-view {
    transform: translateY(0px);
    opacity: 1;
}
.animate-delay-10 {
    transition-delay: 0.1s;
}
.animate-delay-15 {
    transition-delay: 0.15s;
}
.animate-delay-20 {
    transition-delay: 0.2s;
}


/*-----// HEADER //-----*/

header.header {
	position: relative;
	z-index: 98;
}
.header--tagline {
	color: var(--white);
	font-size: 1.4rem;
}
.header--main {
	display: flex;
	align-items: center;
}
.header--main-logo img {
	width: 200px;
}


/*-----// MAIN NAVIGATION //-----*/

.nav--main {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.nav--main-parent {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.nav--main-item {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--yellow);
	font-size: 1.6rem;
	height: 110px;
	display: flex;
	align-items: center;
	padding: 10px 1.1vw;
	border-bottom: 4px solid var(--darkpurple);
}
.nav--main-item:hover,
.nav--main-parent:hover .nav--main-item {
	color: var(--yellow);
	border-bottom: 4px solid var(--yellow);
}
.nav--main-item-alt {
	height: auto;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	padding: 10px 1.1vw;
	background-color: var(--yellow);
	color: var(--darkpurple);
	border: none !important;
}
.nav--main-item-alt:hover {
	background-color: var(--purple);
	color: var(--yellow);
	border: none !important;
}
.header--search-trigger {
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 20px;
}
.header--search-trigger svg {
	transition: all 0.6s ease;
}
.header--search-trigger:hover svg {
	fill: var(--purple) !important;
	transition: all 0.6s ease;
}
.nav--main-parent > .widget.widget_block {
	position: absolute;
	top: 100%;
	left: -20px;
	z-index: 99;
	background-color: var(--darkpurple);
	padding: 20px;
	opacity: 0;
	pointer-events: none;
}
.nav--main-parent:hover > .widget.widget_block {
	opacity: 1;
	pointer-events: all;
}
.nav--main-parent > .widget.widget_block .wp-block-columns {
    display: flex;
	align-items: flex-start !important;
	gap: 20px;
}
.nav--main-parent > .widget.widget_block .wp-block-column, .nav--main-parent > .widget.widget_block .widget {
	width: 160px;
}
.nav--main-parent > .widget.widget_block .wp-block-column h2, .nav--main-parent > .widget.widget_block .widget h2 {
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--yellow);
	margin: 0 0 2px;
}
.nav--main-parent > .widget.widget_block .wp-block-column .menu, .nav--main-parent > .widget.widget_block .widget .menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav--main-parent > .widget.widget_block .wp-block-column .menu a, .nav--main-parent > .widget.widget_block .widget .menu a {
	color: var(--yellow);
	text-decoration: none;
	font-size: 1.6rem;
	padding: 2px 0;
	display: block;
}
.nav--main-parent > .widget.widget_block .wp-block-column .menu a:hover, .nav--main-parent > .widget.widget_block .widget .menu a:hover {
	color: var(--purple);
}


/*-----// SEARCH //-----*/

.header--search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--darkpurple);
	padding: 0 0 10px 0;
	z-index: -1;
	transform: translateY(-100%);
	transition: all 440ms ease;
}
.header--search.active {
	transform: translateY(0);
}
.search-form {
	display: flex;
}
.search-field {
	flex: 1;
    padding: 10px 20px;
    background-color: var(--white);
    border: 0;
    border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--purple);
}
.search-submit {
    width: 50px;
    padding: 10px 15px;
    background-color: var(--purple);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}



/*-----// FOOTER //-----*/

.footer--nav {
	width: 100%;
}
.footer--nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer--nav a {
	text-decoration: none;
	color: var(--yellow);
	font-size: 1.6rem;
	display: block;
	padding: 4px 0;
}
.footer--form .wfe_component input[type="submit"] {
	background-color: var(--yellow);
	font-weight: 700;
	text-decoration: uppercase;
	color: var(--purple);
}
.footer--form .wfe_component input[type="submit"]:hover {
	background-color: var(--darkpurple);
	color: var(--yellow);
}

@media (min-width : 992px) {
	.footer--nav ul {
		column-count: 2;
		column-gap: 30px;
	}
}

@media (max-width : 991px) {
	.footer--nav a {
		text-align: center;
	}
}


/*-----// LAYOUT : HEADER //-----*/

@media (max-width : 991px) {
	.header--logo img {
		width: 200px;
		margin-bottom: 20px;
	}
}


/*-----// LAYOUT : MAP //-----*/

.landing--map {
	background: url("../images/map@2x.png") no-repeat 50% 50% / auto 100%;
}
.landing--map h1 {
	position: relative;
	z-index: 1;
}

.sash {
	position: absolute;
	z-index: 0;
	overflow: hidden;
}
.sash:before {
	content: '';
	position: absolute;
	width: 100%;
	transform: rotate(-45deg);
	transform-origin: 0 0;
}
.sash-sm:before {
	height: 40px;
}
.sash-md:before {
	height: 50px;
}
.sash-lg:before {
	height: 90px;
}
.sash-purple:before {
	background-color: var(--purple);
}
.sash-yellow:before {
	background-color: var(--yellow);
}
#sash-map-1 {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
#sash-map-1:before {
	top: 100%;
	left: 0px;
}

@media (max-width : 991px) {
	#sash-map-1:before {
		left: 30%;
	}
}


/*-----// LAYOUT : DRAWING //-----*/

.landing--drawing {
	overflow: hidden;
}
.drawing {
	overflow-x: hidden;
}
.drawing img {
	max-width: none;
	height: 167px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

#sash-map-2 {
	right: 50%;
    bottom: 0;
    width: 50vw;
    height: 315px;
}
#sash-map-2:before {
	top: -70px;
    right: 460px;
    width: 200%;
	transform-origin: 100% 0;
}
#sash-map-3 {
	right: 50%;
    bottom: 0;
    width: 50vw;
    height: 245px;
}
#sash-map-3:before {
	top: -70px;
    right: 445px;
    width: 200%;
	transform-origin: 100% 0;
}
#sash-map-4 {
	right: 50%;
    bottom: 0;
    width: 50vw;
    height: 45px;
	transform: translateX(55px);
}
#sash-map-4:before {
	top: -70px;
    right: 0;
    width: 200%;
	transform-origin: 100% 0;
}

#sash-map-5 {
	left: 50%;
    bottom: 0;
    width: 50vw;
    height: 325px;
}
#sash-map-5:before {
	top: 100%;
    left: 100px;
    width: 200%;
    transform-origin: 0 100%;
}
#sash-map-6 {
	left: 50%;
    bottom: 135px;
    width: 50vw;
    height: 205px;
}
#sash-map-6:before {
	top: 100%;
    left: 300px;
    width: 200%;
    transform-origin: 0 100%;
}


/*-----// LAYOUT : FORM //-----*/

.wfe_component {
	text-align: center;
	margin-bottom: 10px;
}
.wfe_component input {
	width: 100%;
	max-width: 380px;
	padding: 10px 20px;
	background-color: var(--white);
	border: 0;
	border-radius: 4px;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--purple);
}
::-ms-input-placeholder { 
	color: var(--purple);
}
::placeholder {
	color: var(--purple);
}
.wfe_component input[type="submit"] {
	background-color: var(--purple);
	font-weight: 700;
	text-decoration: uppercase;
	color: var(--white);
}
.wfe_component input[type="submit"]:hover {
	background-color: var(--yellow);
	color: var(--purple);
}
.link-no-underline {
	text-decoration: none;
}
.link-no-underline:hover {
	color: var(--yellow);
}


/*-----// LAYOUT : PARTNERS //-----*/


.partners--grid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.partners--grid-item {
	padding: 20px;
}
.partners--grid-item img {
	width: auto;
	max-height: 80px;
}

@media (max-width : 991px) {
	.partners--grid-item img {
		width: auto;
		max-height: 50px;
	}
}


/*-----// LAYOUT : BREADCRUMBS //-----*/

.layout--breadcrumb {
	padding: 10px 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	color: var(--yellow);
}
.layout--breadcrumb a {
	font-size: 1.4rem;
	color: var(--yellow);
	text-decoration: none;
}


/*-----// LAYOUT : HEADER //-----*/

section[class^="section--"] {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
section[class^="section--page"]::before {
	content: "";
	width: 1px;
	margin-left: -1px;
	float: left;
	height: 0;
	padding-bottom: 100vh;
}
section[class^="section--16-9"]::before {
	content: "";
	width: 1px;
	margin-left: -1px;
	float: left;
	height: 0;
	padding-bottom: 56.25vw;
}
section[class^="section--header"]::before {
	content: "";
	width: 1px;
	margin-left: -1px;
	float: left;
	height: 0;
	padding-bottom: 400px;
}
section[class^="section--"]::after { 
	content: "";
	display: table;
	clear: both;
}
.section--inner {
	z-index: 2;
	position: relative;
}
.section--cover {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}
.section--video-cover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
	height: 100%;
	width: 200vh;
	min-width: 100%;
	min-height: 56.25vw;
}
.section--video-cover + .section--cover {
	opacity: 0;
}


@media (max-width : 991px) {
	section[class^="section--16-9"]::before {
		content: "";
		width: 1px;
		margin-left: -1px;
		float: left;
		height: 0;
		padding-bottom: 100vw;
	}
}

.col--inner {
	max-width: 585px;
	margin: auto;
}
.col--inner *:last-child {
	margin-bottom: 0;
}
.col--inner-img {
	position: relative;
	overflow: hidden;
}
.video-fit {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    height: 100%;
    width: 177.77777778%;
    min-width: 100%;
    min-height: 56.25%;
}
.video-fit + img {
	opacity: 0;
}
section[class^="section--header"] {
	align-items: flex-end;
	background-color: var(--darkpurple);
}
section[class^="section--header"] iframe,
section[class^="section--header"] img {
	opacity: 0.6;
}
section[class^="section--header"] h1 {
	text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


/*-----// LAYOUT : LIST //-----*/

.list--row {
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	width: 100%;
}
.list-col {
	padding: 8px 0;
	flex: 1;
}


/*-----// LAYOUT : TEXT + IMAGE GRID //-----*/

.text-image-tile-grid.grid--2 {  
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	grid-auto-rows: 1fr;
	gap: 0px 0px;
	grid-auto-flow: row;
}
.text-image-tile-grid.grid--3 {  
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-auto-rows: 1fr;
	gap: 0px 0px;
	grid-auto-flow: row;
}
.text-image-tile-grid.grid--4 {  
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-auto-rows: 1fr;
	gap: 0px 0px;
	grid-auto-flow: row;
}
.text-image-tile-grid.grid--6 {  
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-auto-rows: 1fr;
	gap: 0px 0px;
	grid-auto-flow: row;
}

@media (min-width : 992px) and (max-width : 1399px) {
	.text-image-tile-grid.grid--6 {  
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: 1fr;
		grid-auto-rows: 1fr;
		gap: 0px 0px;
		grid-auto-flow: row;
	}
}
@media (min-width : 768px) and (max-width : 991px) {
	.text-image-tile-grid.grid--6 {  
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr;
		grid-auto-rows: 1fr;
		gap: 0px 0px;
		grid-auto-flow: row;
	}
	.text-image-tile-grid.grid--4 {  
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr;
		grid-auto-rows: 1fr;
		gap: 0px 0px;
		grid-auto-flow: row;
	}
}
@media (max-width : 767px) {
	.text-image-tile-grid.grid--6, .text-image-tile-grid.grid--4, .text-image-tile-grid.grid--3, .text-image-tile-grid.grid--2 {  
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		grid-auto-rows: 1fr;
		gap: 0px 0px;
		grid-auto-flow: row;
	}
}

.tile-yellow {
	background-color: var(--yellow);
	color: var(--darkpurple);
}
.tile-purple {
	background-color: var(--purple);
	color: var(--yellow);
}
.tile-darkpurple {
	background-color: var(--darkpurple);
	color: var(--white);
}
.text-image-tile--label {
	font-size: 1.8rem;
	font-weight: 700;
	padding: 10px 0 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	overflow: hidden;
}
.text-image-tile--label svg {
	width: 10px;
}
.tile-yellow svg {
	fill: var(--darkpurple);
}
.tile-purple svg {
	fill: var(--yellow);
}
.tile-darkpurple svg {
	fill: var(--white);
}


.text-image-tile--image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden
}
.text-image-tile--image img {
	transform: scale(1);
	transition: all 440ms ease;
}
.text-image-tile-grid a, .text-image-tile-grid a:hover {
	text-decoration: none;
}
.text-image-tile {
	filter: grayscale(0);
	transition: all 440ms ease;
}
.text-image-tile-grid a:hover .text-image-tile {
	filter: grayscale(0.2);
	transition: all 440ms ease;
}
.text-image-tile--label-arrow {
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 25px;
	transform: translateX(0);
	transition: all 440ms ease;
}
.text-image-tile-grid a:hover .text-image-tile--label-arrow {
	transform: translateX(10px);
}
.text-image-tile-grid a:hover .text-image-tile {
	filter: grayscale(0.2);
	transition: all 440ms ease;
}
.text-image-tile-grid a:hover .text-image-tile--image img {
	transform: scale(1.1)
}

/*-----// LAYOUT : SUBSCRIBE //-----*/

.layout--subscribe {
	position: relative;
}
.subscribe--image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.subscribe--overlay {
	position: relative;
	z-index: 2;
}
.subscribe--text a {
	text-decoration: none;
	color: var(--white);
	text-decoration-color: var(--yellow);
}
.subscribe--text a:hover {
	text-decoration: underline;
	text-decoration-color: var(--yellow);
}


/*-----// LAYOUT : TESTIMONIAL //-----*/

.layout--testimonial {
	position: relative;
}
.testimony--text {
	max-width: 800px;
	margin: 0 auto 40px;
	color: var(--white);
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
}
.testimony--bio {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}
.testimony--avatar {
	width: 120px;
	height: 120px;
	margin-right: 20px;
	border-radius: 120px;
	overflow: hidden;
	flex: 0 0 120px;
}
.testimony--name {
	color: var(--yellow);
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
}
.testimony--position {
	color: var(--purple);
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
}

.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
}
.owl-dot {
	width: 8px;
	height: 8px;
	display: block;
	margin: 8px;
	border-radius: 8px;
	overflow: hidden;
}
.owl-dot span {
	width: 100%;
	height: 100%;
	display: block;
	background-color: var(--yellow);
}
.owl-dot.active span {
	background-color: var(--purple);
}

#sash-map-7 {
    right: 50%;
    bottom: 0px;
    width: 50vw;
    height: 135px;
}
#sash-map-7:before {
	top: -70px;
    right: 445px;
    width: 200%;
    transform-origin: 100% 0;
}
#sash-map-8 {
    right: 50%;
    bottom: 0px;
    width: 50vw;
    height: 115px;
}
#sash-map-8:before {
	top: -70px;
    right: 445px;
    width: 200%;
    transform-origin: 100% 0;
}


/*-----// LAYOUT : RECENT NEWS //-----*/

.news-article--image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.news-article--image img {
	transform: scale(1);
	transition: all 440ms ease;
}
.news-article--image:hover img {
	transform: scale(1.1);
}


/*-----// LAYOUT : RACE SCHEDULE //-----*/

.layout--race-schedule {
	position: relative;
}
.schedule {
	display: flex;
}
.schedule {
	display: flex;
	gap: 20px;
	margin-bottom: 8px;
}
.schedule-label {
	flex: 1;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

#sash-map-9 {
    left: 50%;
    bottom: 0px;
    width: 50vw;
    height: 135px;
}
#sash-map-9:before {
	top: 140px;
    left: 445px;
    width: 200%;
    transform-origin: 0 0;
}
#sash-map-10 {
    left: 50%;
    bottom: 0px;
    width: 50vw;
    height: 245px;
}
#sash-map-10:before {
	bottom: -80px;
    left: 375px;
    width: 200%;
    transform-origin: 0 100%;
}


/*-----// LAYOUT : HERO BANNER //-----*/

.hero-banner--wrapper {
	height: 100vh;
	position: relative;
}
.hero-banner--image-video {
	position: relative;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.hero-banner--overlay {
	position: relative;
	z-index: 9;
	width: 100%;
    padding: 100px 0;
}
.hero-banner--text {
	max-width: 800px;
	background-color: var(--darkpurple);
	padding: 15px 20px;
	margin-bottom: 20px;
	display: inline-block;
}
.hero-banner--text * {
	color: var(--yellow);
}
.hero-banner--text *:last-child {
	margin-bottom: 0;
}
.hero-banner--cta {
	background-color: var(--darkpurple);
	padding: 15px 20px;
	display: inline-block;
	color: var(--yellow);
	text-decoration: none;
	font-size: 2rem;
}
#hero-banner--nav {
	position: absolute;
	bottom: 0;
	right: 15px;
	z-index: 10;
	padding: 0 0 100px 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}
#hero-banner--nav button {
	width: 54px;
	height: 54px;
	border-radius: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--darkpurple);
	color: var(--white);
	font-size: 40px;
	transition: all 440ms ease;
}
#hero-banner--nav button:hover {
	color: var(--yellow);
}
#hero-banner--nav button span {
	transform: translateY(-3px);
}
.hero-banner--image-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	z-index: 11;
	transform: translate(-50%, -50%);
}

@media (max-width : 767px) {
	.hero-banner--overlay, #hero-banner--nav {
		padding: 0 0 50px 0;
	}
}


/*-----// LAYOUT : COUNTDOWN //-----*/

.countdown--wrapper {
	display: flex;
}
.countdown--left {
	flex: 1;
	background-color: var(--darkpurple);
	color: var(--white);
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.countdown--left-label {
	font-size: 3rem;
	font-weight: 700;
}
.countdown--left-timer {
	font-size: 3rem;
	font-weight: 500;
	display: flex;
	gap: 20px;
}
.countdown--right {
	flex: 0 0 auto;
	background-color: var(--yellow);
	color: var(--black);
	display: flex;
	flex-direction: column;
	max-width: 250px
}
.countdown--right > a {
	background-color: var(--yellow);
	width: 100%;
	height: 100%;
	display: block;
	padding: 25px 20px;
}
.countdown--right > a:hover {
	background-color: var(--purple);
	color: var(--yellow);
}
.countdown--right a {
	text-decoration: none;
	text-align: center;
}
.countdown--right-label {
	font-size: 4rem;
	font-weight: 700;
	display: block;
}
.countdown--right-terms {
	font-size: 1.4rem;
	display: block;
}

@media (max-width : 991px) {
	.countdown--wrapper {
		flex-direction: column;
	}
	.countdown--right {
		flex: 1;
		max-width: 100%
	}
	.countdown--left {
		text-align: center;
	}
	.countdown--left-timer {
		justify-content: center;
	}
}

@media (max-width : 767px) {
	.countdown--left-label {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.countdown--left-timer {
		font-size: 1.4rem;
	}
}


/*-----// SEARCH //-----*/

.news-article--image {
	background-color: var(--purple);
}




/*-----// BREADCRUMBS //-----*/

.breadcrumbs {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 0;
	z-index: 3;
}
.breadcrumbs * {
	color: var(--white);
	font-size: 1.2rem;
	text-decoration: none;
}
.breadcrumbs a:hover {
	color: var(--yellow);
}
