@import url(https://fonts.googleapis.com/css?family=Raleway:400,700,800,900);
@font-face {
	font-family: 'Gotham-Black';
	src: url('../fonts/Gotham-Black.eot');
	src: local('?'), url('../fonts/Gotham-Black.woff') format('woff'), url('../fonts/Gotham-Black.ttf') format('truetype'), url('../fonts/Gotham-Black.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham-Ultra';
	src: url('../fonts/Gotham-Ultra.eot');
	src: local('?'), url('../fonts/Gotham-Ultra.woff') format('woff'), url('../fonts/Gotham-Ultra.ttf') format('truetype'), url('../fonts/Gotham-Ultra.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Gotham-Light';
	src: url('../fonts/Gotham-Light.eot');
	src: local('?'), url('../fonts/Gotham-Light.woff') format('woff'), url('../fonts/Gotham-Light.ttf') format('truetype'), url('../fonts/Gotham-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
*{
    box-sizing:        border-box;
	-moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
	--light-color: rgba(33,117,127,1.00);
	--dark-color: rgba(11,43,46,1.00);
}
:root {
  interpolate-size: allow-keywords;
}
html{width: 100%;}
body{margin: 0; padding: 0; font-size: 100%; font-family: Raleway; width: 100%; background-color: rgb(20,18,42);}
a{color: inherit; }
.whole-page-container{
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	-webkit-transform: translateX(0%), translateZ(0);
	transform: translateX(0%), translateZ(0);
	position: relative;
	max-width: 100%;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
	box-shadow: 0 0 15px rgba(0,0,0,0.5);
}


/*---------------------NAV STYLES -----------------------------------------*/

.nav-container{
	position: sticky;
	top: 0;
	left: 0;
	-webkit-transition: padding 0.5s;
	transition: padding 0.5s;
	width: 100%;
	height: 60px;
	text-align: center;
	background-color: var(--dark-color);
	z-index: 100;
}
ul.nav{
	display: block;
	position: absolute;
	top: 50%;
		left: 620px;
	left: 1em;
	right: 1em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
	margin: 0;
	font-weight: 400;
		/*font-size: 0.6em;*/
	color: white;
	text-align: center;
	font-size: 1.1em;
}
ul.nav>li{
	display: inline-block;
	vertical-align: middle;
	text-align:center;
	margin: 0;
	list-style-image: none;
	line-height: 1.6em;
	border-radius: 4px;
}
ul.nav a{
	font-weight: inherit;
	color: inherit;
	text-decoration:none;
	padding: 0.25em 1em;
}
ul.nav li:hover, ul.nav li.selected{background-color: rgba(255,255,255,0.2);}

.navControl{
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	padding: 5px;
	background-color: rgb(32,27,68); 
	z-index: 10;
	-webkit-box-shadow: 0 0 10px black;
	box-shadow: 0 0 10px black;
}
.navControl img{
	float:left;
	height: 100%;
	width: auto;
	display: inline-block;
	vertial-align: middle;
}
.navControl a{
	display: inline-block;
	vertial-align:middle;
	background-color: rgba(255,255,255,0.3);
	padding: 8px 5px;
	width: 35px;
	height: 35px;
	border-radius: 3px;
	border:none;
	margin-right: 10px;
	float:left;
}
.navControl a:before{
	content: '';
	display: block;
	border-style: solid;
	border-color: white;
	border-width: 2px 0 2px 0;
	height: 6px;
	position: relative;
}
.navControl a:after{
	content: '';
	display: block;
	border-style: solid;
	border-color: white;
	border-width: 0 0 2px 0;
	height: 6px;
	position: relative;
}
.mobileNavLogo{
	font-weight: 900;
	font-size: 2em;
	color: white;
	text-transform: uppercase;
}
.mobileNavLogo span{
	font-size: 0.8em;
	font-weight: 800;
}
.titleLogo{
	height: 50px;
	vertical-align:middle; 
	margin-right: 15px;
}
/*--------------------------- END NAV STYLES ------------------------------------*/

.virtual-graphic-container{
	display: block;
	text-align: center;
	padding: 0.5em 0;
}

.virtual-pics{
	display: inline-block;
	width: calc(33.33% - 2em);
	min-width: 250px;
	margin: 0.5em;
	
}

.a-button{
	display: block;
	border: none;
/*	background-image: linear-gradient(0deg, rgba(92,76,141,1.00) 60%,rgba(146,120,193,1.00));*/
	background-color: black;
	color: white;
	text-transform: uppercase;
	font-size: 120%;
	padding: 10px;
	text-decoration: none;
	max-width: 20em;
	width: 100%;
	margin: 2em auto;
}


.hero-container{
	position: relative;
	width: 100%;
/*	height: calc(100vh - 60px);*/
	overflow: hidden;
	display: grid;
	grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-columns: 1fr 1fr;
	gap: clamp(7px, 0.9vw, 1em);
	background-image: radial-gradient(rgba(255,255,254,1.00), rgba(32,27,68,1.00));
}
.hero-container.single-image{
	display: block;
}
.hero-container.single-image > img {
	width: 100%;
	height: auto;
}

.hero-container .hero-image{
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-container .top-left {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%) rotate(-45deg);
	background-color: rgba(132,206,186,1.00);
	color: white;
	font-family: Raleway;
	font-weight: 900;
	font-size: clamp(0.4em, 2vw, 2em);
	line-height: 1em;
	text-transform: uppercase;
	padding: 8em 5em 0.5em 5em;
	text-align: center;
}
.hero-container .bottom-right {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: rgba(132,206,186,1.00);
	color: white;
	font-family: Raleway;
	font-weight: 900;
	transform: translate(50%, 50%) rotate(-45deg);
	font-size:  clamp(0.4em, 2vw, 2em);
	line-height: 1em;
	text-transform: uppercase;
	padding: 0.5em 5em 8em 5em;
	text-align: center;
}
.hero-container .hero-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35vw;
	aspect-ratio: 1;
}


.coming-container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.coming-container>div{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 0px;
	flex: 1 1 0;
	padding: 0.5em;
	max-height: 100%;
}
.coming-container a{
	width: 100%;
	max-width: 15em;
	display: block;
	margin: 0 auto;
	padding: 0.5em;
	font-size: 1.5em;
	color: white;
	font-weight: bold;
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(100,0,150)), to(rgb(200,0,250)));
	background-image: linear-gradient(0deg, rgb(100,0,150), rgb(200,0,250));
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1.2em;
}
.coming-container a[href="#"]{
	opacity: 0.5;
}

.topBar{
	background-color: var(--light-color); 
	color: rgba(255,255,255,1.00); 
	text-align:center; 
	font-size: 2.2rem; 
	padding: 1em;
	text-align: center;
}
.comingBar{
	position: relative;
	background-color: var(--light-color); 
	color: white; 
	font-size: 3em;
	font-weight: 900; 
	font-family: "Gotham-Ultra";
	padding: 0.5em; 
	text-align:center;
	overflow: hidden;
}
.comingBar.homepage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.comingBar.homepage>div{
	padding: 0.5em;
	background-color: rgba(255,255,255,0.4);
	border-radius: 0.125em;
	margin: 0.25em;
}
.date-container {
	background-color: rgba(132,206,186,1.00)!important;
}
/*
.comingbar:before{
	content: "APRIL 22, 2017"; 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	-webkit-transform: translate(-50%,-50%); 
	-ms-transform: translate(-50%,-50%); 
	transform: translate(-50%,-50%); 
	font-size: 1.6em; 
	color: rgba(255,255,255,0.05);
	width: 100%; 
	display: block;
}
*/
.more-dates-bar{
	position: relative;
	background-color: rgb(32,27,68); 
	color: white; 
	font-size: 2em;
	font-weight: 900; 
	font-family: "Gotham-Ultra";
	padding: 0.5em; 
	text-align:center;
	overflow: hidden;
}
.cancelled{
	position: relative;
}
.cancelled:after{
	content: 'Cancelled';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%) rotate(30deg);
	transform: translate(-50%,-50%) rotate(-30deg);
	color: lightgray;
	font-size: 0.9em;
	text-shadow: 0 0 0.25em black, 0 0 0.25em black, 0 0 0.75em black;
}
.mainImg{width: 100%; height: auto; vertical-align: top;}

.marcsCreds{
	-o-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-webkit-column-width: 280px;
	column-width: 280px;
}

.countdownContainer{
	width: 100%;
	background: -webkit-gradient(linear, left top, right top, from(rgb(100,100,100)), to(rgb(255,255,255)));
	background: linear-gradient(90deg, rgb(100,100,100) 0%, rgb(255,255,255) 100%);
	min-height:  120px;
	text-align:center;
	clear: right;
	color:  black;
	font-family: Gotham-Light;
	padding: 30px 0 15px 0;
}
	.countdownContainer figure{
		display: inline-block;
		margin: 0;
		padding: 0;
		position:relative;
	}
	.countdownContainer figCaption{
		font-size: 0.48em;
		color: white;
		margin: 0;
		padding: 0;
		letter-spacing: normal;
		opacity: 0.4;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		text-align:center;
	}
#clock{
	margin: 0px 0px 10px 15px; 
	position:relative;
	display:block;
	font-family: Gotham-Black;
	font-size: 2.8em;
	color:black;
	letter-spacing: -0.1em;
	margin: 0 auto;
	padding: 0;
	display:inline-block;
}
	#clock input{
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		display:inline-block;
		width: 1.7em;
		text-align:center;
		margin: 0;
		padding: 0;
		background-color: transparent;
		border:none;
	}
	input#days{
		width: 2.2em;
	}


.rules{
	background-color: var(--light-color); 
	color: white;
	padding: 2em;
	overflow: hidden;
}
.rules .expand{
	border: none;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.2);
	color: white;
	font-weight: 700;
	padding: 0.2em 1em;
	font-size: 1em;
	vertical-align:bottom;
	margin-bottom: 1em;
	display: block;
	margin: 1em auto 0 auto;
	width: 8em;
	text-align:center;
}

.rules>div{
	width: 1200px;
	max-width: 90%;
	margin: 0em auto;
	text-align:left;
	position: relative;
}
.rules .soldout {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-20deg);
	font-size: 3.5em;
	font-weight: 900;
	color: white;
	filter: drop-shadow(0 0 0.5em black) drop-shadow(0 0 0.25em black);
	white-space: nowrap;
}
.rules hr{
	margin: 2em 0 0 0;
}
.rules li{
	margin-bottom: 0.5em;
}
.rules .divisions{
	display: inline-block;
	vertical-align:top;
	width: 23%;
	margin: 1em 1%;
	min-width: 220px;
}
.rules .scrollContainer{
	-webkit-transition: height 1s;
	transition: height 1s;
	height: 0;
	overflow: hidden;
}
.stream-link{
	font-family: Raleway; 
	font-size: 1.2rem; 
	font-weight: bold;
	text-decoration: none;
	display: block;
	width: 20em;
	max-width: 100%;
	margin: 1em auto 0 auto;
	border: none;
	background-image: linear-gradient(0deg, rgba(92,76,141,1.00), rgba(142,116,189,1.00));
	padding: 0.2em 0 0.3em 0;
}
.director-reveal{
	display: block;
	width: 100%;
	max-width: 20em;
	margin: 2em auto;
/*	background-image: linear-gradient(0deg, rgba(0,0,0,1.00) 60%, rgba(11,43,46,1.00));*/
	background-color: rgba(11,43,46,1.00);
	color: white;
	border: none;
	font-weight: bold;
	font-size: 14pt;
	letter-spacing: 0.05em;
	padding: 5px 10px;
	text-align: center;
	text-transform: uppercase;
	line-height: 2em;
	
}
.director-reveal-checkbox{
	position: absolute;
	left: -10000px;
}

.fromDirector{
	background-color: rgba(213,214,218,1.00);
	color: rgba(11,43,46,1.00);
	line-height: 1.5em;
	position: relative;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
}
.director-reveal-checkbox:checked + .fromDirector{
	height: auto;
}

.fromDirector > div:nth-of-type(1) {
	flex: 1 1 500px;
}
.fromDirector div:nth-of-type(2){
	flex: 3 1 500px;
	padding: 1em 5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}
.fromDirector img {;
	vertical-align: top;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/*
.fromDirector div:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: rotate(-5deg);
	background-color: rgba(255,255,255,0.1);
}
.fromDirector img{
	float:left;
	margin: 0 3em 0 0;
	display: inline-block;
	height: 380px;
	vertical-align: top;
}
*/

.uniquePoints{
	padding: 3em;
	background-color: var(--light-color); 
}
	.uniquePoints h1{
		text-align: center;
		color: white;
		font-size: 3.5em;
		margin-top: 0;
		padding-top: 0;
	}
	.uniquePoints ul{
		display: block;
		color: rgba(255,255,255,0.5);
		font-size: 1.5em;
		width: 1200px;
		max-width: 90%;
		margin: 0 auto;
		padding-left: 1em;
	}
	.uniquePoints ul li{
		line-height: 1.2em;
		margin: 0.8em 0;
	}
	
.contact{
	background: url("../images/Insert 02C.webp") center right;
	background-size: cover;
	font-size: 0.7em;
	padding: 5em 2em;
	text-align:center;
	color: var(--light-color); 
}
.contact>p{
	margin: 0;
}
.contact>p:first-of-type{
	font-size: 3em;
}
.contact>p:nth-of-type(2){
	font-family: "Gotham-Black";
	font-size: 6em;
	color: var(--dark-color); 
}
.contact>p:nth-of-type(3){
	font-size: 1.6em;
	line-height: 1.2em;
}

.contact>a{
	font-weight: 900;
	font-size: 2em;
	text-decoration: none;
	color: inherit;
}
.social{
	position:relative;
	padding: 1em 0 2em 0;
}
.social .divider{
	display:inline-block;
	height: 65px;
	width: 5px;
	background-color: white;
	vertical-align: middle;
	margin: 5px 15px;
}
.social img{
	display: inline-block;
	vertical-align:middle;
	margin: 5px;
}
.footer{
	background-color: var(--dark-color); 
	font-size: 0.8rem;
	color:white;
	text-align:center;
	overflow:hidden;
	padding: 0 8%;
	position: relative;
}
.footer a img{
	border:none;
}
.footer a:first-of-type img{
	float:right;
}
.footer a:last-of-type img{
	float:left;
}
.footer p{
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-60%);
	transform: translateY(-60%);
	/*left: calc(310px + 8%);
	right: calc(310px + 8%);*/
	width: 100%;
	padding: 5px 440px;
}

.health-statement{
	background-color: rgb(20,18,42);
	color: white;
	text-align: center;
	padding: 1em;
	font-size: 1.8em;
}
.health-statement span{
	font-size: 1.4em;
	vertical-align: baseline;
}

/* ---------------------- HEALTH PROTOCOL PAGE ------ */


.covid-link{
	display: block;
	text-align: center;
	padding: 1em;
	background-image: -webkit-gradient(linear, left top, right top, from(rgb(100,0, 50)), color-stop(50%, rgb(50,0,20)));
	background-image: linear-gradient(90deg, rgb(100,0, 50) 0%, rgb(50,0,20) 50%);
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	margin-top: 60px;
	width: 100%;
}
.effective-date{
	margin: -1em 0 2em 0;
	
}
.protocol-container{
}
.protocol-container h4{
	margin-top: 2em;
	font-size: 1.2em;
}
.protocol-container > p{
	margin: 1em 0 0 2em;
	line-height: 1.4em;
}


/* --------------------------- AWARDS PAGE ------------------------------ */

.awardsImgContainer{
	width: 50%;
	float:right;
	margin: 0 0 1em 3em;
	-webkit-box-shadow: 0 0 50px rgba(255,255,255,0.5);
	box-shadow: 0 0 50px rgba(255,255,255,0.5);
	position: relative;
}
.awardsImgContainer>div{
	width: 100%;
	padding-bottom: 70%;
	background-image: url('../images/awards-1.webp');
	background-position: center center;
	background-size: cover;
	position: relative;
}
.banner{
	display: block;
	width: 100%;
	padding-bottom: 22.222%;
	min-height: 215px;
	background-image: url("../images/2024-05_bottom_banner.webp");
	background-position: center center;
	background-size: cover;
}
.banner2{
	display: block;
	width: 100%;
	padding-bottom: 22.222%;
	min-height: 215px;
	background-image: url(../images/banner2.jpg);
	background-position: center center;
	background-size: cover;
}
.banner3 {
	display: block;
	width: 100%;
	aspect-ratio: 100 / 22.22;
	background-color: white;
	text-align: center;
	position: relative;
}
.banner3 > img:nth-of-type(1) {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	z-index: 2;
	mask-image: linear-gradient(90deg, rgba(0,0,0,1) 80%, rgba(0,0,0,0) );
}
.banner3 > img:nth-of-type(2) {
	position: relative;
	height: 100%;
	width: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	vertical-align: top;
}
.banner3 > img:nth-of-type(3) {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	z-index: 2;
	mask-image: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,1) 20%);
}

.image-container{
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	margin: 3em 0 1em 0;
}
.image-container img{
	flex: 0 1 0;
	width: 360px;
	max-width: 100%;
	height: auto;
	max-height: 275px;
	padding: 0.5em;
	filter: drop-shadow(0 0 2em rgba(255,255,255,0.3));
}
.masked{
  	mask-type: alpha;
	-webkit-mask: url("../images/reg-mask.jpg");
	mask: url("../images/reg-mask.png");
}



@media all and (max-width: 1150px){
	.topBar{font-size: 1.8em;}
	ul.nav{font-size: 1em;}
	.footer p{padding: 5px 400px;}

}
@media all and (max-width: 1000px){
	.contact{font-size: 0.7em;}
	.footer{padding: 0}
	.footer img{max-width: 30%; height: auto;}
	.footer p{font-size: 0.8em; padding: 4px 31%;}
	.fromDirector img {
		margin: 0 auto;
		max-height: 400px;
		aspect-ratio: 1;
		width: auto;
		max-width: 100%;
		height: auto;
		display: block;
	}
}
@media all and (max-width: 950px){
	.topBar{font-size: 1.5em;}
}

@media only screen and (max-width: 850px){
	.whole-page-container{z-index: 2; padding: 45px 0 0 0;}
	.navControl{display:block!important;}
	.nav-container{position: fixed; display:none; z-index: 1; width: 100%; padding: 45px 0 10px 0;text-align:center;}
	.nav-container>a>img{display:none;}
	.nav-container .social-links{position:relative; -webkit-transform: none; transform: none; display:block; margin: 10px 0; top: auto; right: auto;}
	ul.nav{width: 100%; height: auto; position: relative; left: 0; top: 0; -webkit-transform: none; transform: none;}
	ul.nav li{display:block;width: 100%; text-align:left; padding: 0;}
	ul.nav>li:first-of-type{display:block;}
	ul.nav a{padding: 5px 10px; background-color: rgba(255,255,255,0.1); width: 100%;line-height: 2em; display:block; }
	ul.nav li:hover,ul.nav li.selected{background-color: rgba(255,255,255,0.2);}
	.topBar{display:none;}
	.covid-link{position: fixed; bottom: 0; z-index: 10}
	.footer{padding: 0 0 50px 0;}
}

@media all and (max-width: 750px){
	.comingBar{font-size: 3em;}
	.contact{font-size: 0.7em;}
	.uniquePoints{font-size: 0.8em; padding: 2em;}
	.awardsImgContainer{
		width: 600px;
		max-width: 100%;
		float: none;
		margin: 1em auto;
	}
	.awardsImgContainer>div{
		width: 100%;
		padding-bottom: 55%;
		background-image: url('../images/awards-1.webp');
		background-position: top center;
	}
	
}
@media all and (max-width: 600px){
	.contact{font-size: 0.6em;}
	.contact img{max-width: 10%;}
	.contact .divider{display:none;}
	.footer a:first-of-type img, 
	.footer a:last-of-type img{ float: none; display: inline-block; max-width: 40%; margin: 0 2px;}
	.footer p{position: relative; top: auto; left: auto; right: auto; -webkit-transform: none; transform: none; padding: 1em;}
	.fromDirector div{padding: 1em 2em!important;}
}
@media all and (max-width: 575px){
	.comingBar{font-size: 2em;}
	.virtual-pics{width: calc(100% - 2em);}	
}
@media all and (max-width: 450px){
	.topBar{font-size: 1.6rem;}
	.contact>p:nth-of-type(2){font-size: 4.2em;}
}
@media all and (max-width: 400px){
	.countdownContainer{font-size: 0.8em; min-height: 0;}
}