@charset "utf-8";
/* CSS Document */

/*
Proxima Nova Regular
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: normal;
Proxima Nova Italic
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-style: italic;
Proxima Nova Medium
	font-family: "proxima-nova", sans-serif;
	font-weight: 500;
	font-style: normal;
Proxima Nova Medium Italic
	font-family: "proxima-nova", sans-serif;
	font-weight: 500;
	font-style: italic;
Proxima Nova Bold
	font-family: "proxima-nova", sans-serif;
	font-weight: 700;
	font-style: normal;
Proxima Nova Bold Italic
	font-family: "proxima-nova", sans-serif;
	font-weight: 700;
	font-style: italic;
*/

body, html {
	height: 100%;
	width: 100%;
	background-color: black;
}
* {
	margin: 0px;
	padding: 0px;
	font-family: "proxima-nova", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: white;
}

h1 {
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	letter-spacing: 5px;
}
h2 {
	font-size: 20px;
	line-height: 24px;
}
p {
	font-size: 12px;
	line-height: 18px;
}


#bg {
	background-image: url("images/mobile_splash_v.jpg");
	height: 100vh;

	background-color: #0071b9;
	background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

/*	animation: slideshow 20s;*/
}
#fg {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
#mobileMark {
	opacity: 1;
	display: block;
	position: fixed;
	object-fit: cover;
    top: 0;
    left: 0;
    width: 100vw;
	height: 100vh;
	z-index: 1;

/*    animation: fade 1s linear 5s 1 forwards;*/
}
#tabletMark {
	opacity: 1;
	display: none;
	position: fixed;
	object-fit: cover;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    z-index: 0;

/*    animation: fade 1s linear 5s 1 forwards;*/
}
#tabletMark2 {
	opacity: 1;
	display: none;
	position: fixed;
	object-fit: cover;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    z-index: 0;
}
video, #animationMark {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
/*    height: 100vh;*/
	height: auto;
    z-index: 1;

    /*background-image: radial-gradient(circle, transparent 40%, #0071b9 50%),
		linear-gradient(to right, #004e80, #0071b9), url("images/GD_Class2023_Edited-107.jpg");
	background-size: cover;
	background-color:black;
	background-position: 0px 0px;
	background-blend-mode: multiply;
	animation: intro 2s 4s forwards;*/
	/*transition: all 0.5s ease-out;*/
}
video {
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
}

nav {
	position: fixed;
	top: 0;
	margin: 0;
	z-index: 20;
	width: 100vw;
	opacity: 0;

	-webkit-animation: navIntro 0.9s linear 0s 1 normal forwards;
    -moz-animation: navIntro 0.9s linear 0s 1 normal forwards;
    -ms-animation: navIntro 0.9s linear 0s 1 normal forwards;
    -o-animation: navIntro 0.9s linear 0s 1 normal forwards;
	animation: navIntro 0.9s linear 0s 1 normal forwards;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}
nav li a {
	display: block;
	text-decoration: none;
	color: white;
	text-align: center;
}
nav li a:hover {
	color: #f7be00;

	-webkit-transition: 0.3s;
 	-moz-transition: 0.3s;
  	-ms-transition: 0.3s;
 	-o-transition: 0.3s;
	transition: 0.3s;
}
#container {
    display: none;
    background-color: rgba(0, 0, 0, 1.0);
    box-shadow: 0px 5px 6px rgb(30 30 30 / 40%);
    margin: 0;
}
#mobile-container {
	display: block;
	background-color: rgba(0, 0, 0, 1.0);
    box-shadow: 0px 5px 6px rgb(30 30 30 / 40%);
    margin: 0;
}
.menu li {
	float: right;
	padding: 1em;
	cursor: pointer;
}
.menu li:first-child {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1.5em;
	margin: auto;

	background-image: url("images/wanted_mark_yellow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 100% 50%;

	height: auto;
	width: 3em;
	vertical-align: middle;
}
.menu li:first-child:hover {
	background-image: url("images/wanted_mark_white.svg");

	-webkit-transition: 0.3s;
 	-moz-transition: 0.3s;
  	-ms-transition: 0.3s;
 	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu li:nth-child(2) {
	padding-right: 2em;
}
#mobile-menu {
	opacity: 0;
	display: block;
	position: fixed;
	right: 0;
	width: 100%;
	margin: 0;
	padding: 20vh 0 10vh 0;
	list-style: none;
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
	
	-webkit-transition: 0.3s;
 	-moz-transition: 0.3s;
  	-ms-transition: 0.3s;
 	-o-transition: 0.3s;
	transition: 0.3s;
}
#mobile-menu li {
	float: none;
	padding: 1vh;
}
#mobile-menu li:first-child {
	background-image: none;
}
.menuitem {
	font-size: 18px;
}
/*.logoitem {
	height: auto;
	width: 3em;
	vertical-align: middle;
}*/
#hamburger {
	z-index: 3;
}
.bar1, .bar2, .bar3 {
	width: 35px;
	height: 3px;
	background-color: white;
	margin: 8px 0;
	border-radius: 2px;

	-webkit-transition: 0.3s;
 	-moz-transition: 0.3s;
  	-ms-transition: 0.3s;
 	-o-transition: 0.3s;
	transition: 0.3s;
}
.change .bar1 {
	transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2 {
	opacity: 0;
}
.change .bar3 {
	transform: translate(0, -11px) rotate(45deg);
}


.award {
    width: 71%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}
.award h1 {
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing: 2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
} 
.award h2 {
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing: 2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}
.award h3 {
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}
.award a {
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing: 2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}
.award h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing: 0px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
}
.award img {
	background-color: aqua;
    margin-bottom: 0px;
    margin-top: 30px;
    padding: 0;
}
.congrats {
    width: 85%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0%;
    margin-bottom: 4em;
}
.congrats h1 {
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 4vw;
    letter-spacing: 2px;
    margin-top: 0px;
    margin-bottom: -5px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}
.congrats h2 {
    padding-bottom: 0px;
    font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 3vw;
    letter-spacing: 2px;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: white;
    text-align: left;
}
.congrats h3 {
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 2vw;
    letter-spacing:0px;
    margin-top: -5px;
    margin-bottom: 0px;
    color: white;
    text-align: left;
}
.congrats a {
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.5em;
    font-size: 2.5vw;
    letter-spacing: 2px;
    margin-top: -20px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}
.congrats h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5vw;
    letter-spacing:0px;
    margin-bottom: 5px;
    margin-top: 5px;
    color: white;
    text-align: left;
}
#footer {
    display: block;
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0px;
    height: auto;
    overflow: hidden;
    background-color: black;
    z-index: 2;
}
.footcontainer {
	display: inline-flex;
    position: relative;
    background-color: none;
    width: 280px;
    max-height: 194px;
    min-height: 34px;
    margin-top: 20px;
    left: calc(50% - 280px/2);
    text-align: center;
}
.footericonf {
	display: inline-block;
    position: relative;
    padding-right: 2em;
    width: 60px;
    padding-top: 1px;
    overflow: hidden;
    float: left;
}
.footericoni {
	display: inline-block;
    position: relative;
    padding-right: 0em;
    width: 60px;
    overflow: hidden;
    float: left;
}
.footericont {
	display: inline-block;
    position: relative;
    padding-right: 1em;
    width: 60px;
    overflow: hidden;
    float: left;
}
.footericonl {
	display: inline-block;
    position: relative;
    padding-left: 2em;
    height: auto;
    width: 80px;
    overflow: hidden;
    float: left;
}
.orgs {
	display:block;
	position: relative;
	height: auto;
	width: 100%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.orgs h1 {
	display: inline-block;
    position: relative;
    /*font-family: titling-gothic-fb-compressed, sans-serif;
    font-weight: 500;*/
    font-family: antarctican-headline, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f7be00;
    font-size: 2.6vw;
    text-transform: uppercase;
    padding-right: 30px;
}
.orgs h1:hover {
      color: white;
}


.header {
	display: block;
    width: 100%;
    height:50%;
    min-height:20em;
    overflow: hidden;
    margin-top: 0px;
    background-image: url('images/header_splash_blue.jpg');
    background-size: cover;
    background-position: 50% 50%;
    opacity:0;
	transition: opacity 2s ease-in-out;
}
.header img {
	display: block;
	width: auto;
	height: 100%;
	position: relative;
	left: -62%;
	top: 30px;
}
.summary {
	display: block;
    position: absolute;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: auto;
    top: 20%;
    text-align: center;
	color: white;
}
.summary h1 {
	width: 70%;
	margin: auto;
	margin-top: 2%;
	margin-bottom: 2%;
}
.summary p {
	width: 70%;
	margin: auto;
}


.juror {
	display:block;
	position: relative;
	width: 90vw;
/*	margin: 0 auto;*/
	margin-left: 20px;
	margin-right: 20px;
}
.juror p {
	display:block;
	position: relative;
	width:90vw;
	font-size: 18px;
    line-height: 33px;

}
.juror h2{
		font-size: 2em;
		line-height: 33px;

	} 
.juror h1{
	font-size: 22px;
}
.jrportrait {
	display: inline-block;
	position: relative;
    width: 240px; 
    height: 46vh;
	background-image: url("images/rothberg.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 40px;
	margin-left: calc(50% - 240px/2);
	left: 0px;
}


.grid {
	position: relative;
    margin-bottom: 20%;
    background-color: black;
/*    height:100vw;*/
    height: 120vw;
    width: auto;

    display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
/*	padding-bottom: 900px;*/
	padding-bottom: 225%;
}
.grid a {
	width: 40%;
	height: 39%;
	margin: 1%;
}
.grid img{
    display: block;
    width: 40vw;
	height: auto;
	position: absolute;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}
.grid img.top:hover {
	opacity: 0;
	cursor: pointer;
}

.squareone, .squaretwo {
/*    background-color: red;*/
    width: 50%;
    height: 100%;
    margin: 0% 0% 0% 0%;
    display: inline-block;
    float: left;
}
.recone {
/*    background-color: green;*/
    width: 100%;
    height: 100%;
    margin: 0% 0% 0% 0%;
    display: inline-block;
    float: left;
}
.rectwo {
/*    background-color: blue;*/
    width: 100%;
    height: 100%;
    margin: 0% 0% 0% 0%;
    display: inline-block;
    float: left;
}
.item img {
	display: block;
	width: 100%;
}
.t-hide {
	display: inline-block;
}
.m-hide {
	display: none;
}



@keyframes fadeIn {
	0% { background-color: black; }
	100% { background-color: #0071b9; }
}
/*@keyframes fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}*/
/*@keyframes intro {
	0% {
		background-color:black;
		background-position: 0px 0px;
  	}
  	100% {
		background-color:white;
		background-position: 0px 400vh;
	}
}*/
@keyframes navIntro {
	0% { opacity: 0;transform: translateY(-50%); }
	100% { opacity: 1;transform: translateY(0%); }
}




/* Mobile Landscape */

@media all and (orientation: landscape) {
	#bg {
		background-image: url("images/mobile_splash_h.jpg");
		background-blend-mode: normal;
	    background-position: center;
	    background-repeat: no-repeat;
		background-size: cover;
	}
	#mobileMark {display: none; z-index: 0;}
}




/* Tablets */

@media all and (min-width: 767px) {
	h1 {
		font-size: 40px;
		line-height: 40px;
		font-weight: 700;
	}
	h2 {
		font-size: 24px;
		line-height: 24px;
	}
	p {
		font-size: 20px;
		line-height: 24px;
	}
	#bg {
		background-image: url("images/tablet_splash_v.jpg");
	}

	#mobileMark {display: none; z-index: 0;}
	#tabletMark {display: block; z-index: 1;}
	#tabletMark2 {display: none; z-index: 0;}

	.header {
	display: block;
    height: 80%;
		 opacity:0;
	transition: opacity 2s ease-in-out;
	    
	}
	.header img {
		position: relative;
		left: -32%;
	}
	.summary {
	    top: 22%;
	}
	.grid {
/*		height: 78vw;*/
		height: 102vw;
/*	    display: block;
	    position: relative;*/
	    padding: 1.75em 0 0 2.75%;
	    
	}
	.grid a {
		width: 20vw;
		height: auto;
		margin: 1vw;
	}
	.grid img{
	    width: 20vw;
		height: auto;
	}

	.squareone {
	    width: 19.2%;
	    height: 100%;
	    margin: 1% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.squaretwo {
		width: 21.17%;
	    height: 100%;
	    margin: 1% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.recone {
	    width: 38.4% ;
	    height: 100%;
	    margin: 1.02% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.rectwo {
	    width: 53.6% ;
	    height: 100%;
	    margin: 1.02% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.m-hide {
		display: inline-block;
	}
	.t-hide {
		display: none;
	}


	.footcontainer {
		display: inline-flex;
	    position: relative;
	    background-color: none;
	    width: 280px;
	    max-height: 194px;
	    min-height: 34px;
	    margin-top: 20px;
	    left: calc(50% - 280px/2);
	    text-align: center;
	}
}




/* Tablet Landscape */

@media all and (min-width: 767px) and (orientation: landscape) {
	#bg {
		background-image: url("images/tablet_splash_h.jpg");
		background-blend-mode: normal;
	    background-position: center;
	    background-repeat: no-repeat;
		background-size: cover;
	}
	#mobileMark {display: none; z-index: 0;}
	#tabletMark {display: none; z-index: 0;}
	#tabletMark2 {display: block; z-index: 1;}

	.juror {
	display: flex;
	flex-direction: row;
	width: 100%;
	}
	.juror #column1{
		width: 80%;
		margin-left: 10vw;

	}
	.juror #column2{
		display: block;
		position: relative;
		width: 20%;
		margin-right: 10vw;
		text-align: center;
	}
	.juror p {
	width: 100%;
	font-size: 20px;
    line-height: 28px;
	}
	.jrportrait {
		display: inline-block;
		position: relative;
	    width: 30vw; 
	    height: 49.3vh;
		background-image: url("images/rothberg.jpg");
		background-size: contain;
		background-repeat: no-repeat;
		margin-top: 178px;
		margin-left: 20px;
	}
}






/* Desktop */

@media all and (min-width: 1280px) { 
	h1 {
		font-size: 40px;
		line-height: 40px;
		font-weight: 700;
	}
	h2 {
		font-size: 24px;
		line-height: 24px;
	}
	p {
		font-size: 16px;
		line-height: 24px;
	}

	#bg {
		background-image: url("images/desktop_splash.jpg");
		background-color: black;
/*		background-color: #0071b9;*/
		background-blend-mode: darken;
	    background-position: center;
	    background-repeat: no-repeat;
		background-size: cover;
	}
	.animation {
		-webkit-animation: fadeIn 1s linear 2s 1 normal forwards;
 		-moz-animation: fadeIn 1s linear 2s 1 normal forwards;
  		-ms-animation: fadeIn 1s linear 2s 1 normal forwards;
 		-o-animation: fadeIn 1s linear 2s 1 normal forwards;
		animation: fadeIn 1s linear 2s 1 normal forwards;
	}
	#mobileMark {display: none;}
	#tabletMark {display: none;}
	#tabletMark2 {display: none;}
	#container {
	    display: block; 
	}
	#mobile-container {
		display: none;
	}
	.menu li:first-child {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 1.5em;
		margin: auto;
		background-image: url("images/wanted_mark_yellow.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 100% 50%;
	}
	.navIntro {
		-webkit-animation: navIntro 0.9s linear 2s 1 normal forwards;
 		-moz-animation: navIntro 0.9s linear 2s 1 normal forwards;
  		-ms-animation: navIntro 0.9s linear 2s 1 normal forwards;
 		-o-animation: navIntro 0.9s linear 2s 1 normal forwards;
		animation: navIntro 0.9s linear 2s 1 normal forwards;
	}
	.header {
	    height: 80%;
	     opacity:0;
	     transition: opacity 2s ease-in-out;
	}
	.header img {
		position: relative;
		left: auto;
		top: auto;
		width: 100%;
		height: auto;
	}
	.summary {
	    top: 35%;
	}
	.summary h1 {
		margin-top: 1%;
		margin-bottom: 1%;
	}

    .juror {
 	display: flex;
	flex-direction: row;
	margin: auto;
	}
	.juror #column1{
		width: 80%;
		margin-left: 10vw;
	}
	.juror #column2{
		display: block;
		position: relative;
		width: 20%;
		text-align: center;
		margin-right: 10vw;
	}
	.juror p {
	font-size: 22px;
    line-height: 33px;
	}
	.juror h2{
		font-size: 2em;

	} 
	.jrportrait {
		display: inline-block;
		position: relative;
	    width: 25vw; 
	    height: 49.3vh;
		background-image: url("images/rothberg.jpg");
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 20px;
/*		margin-top: 90px;*/
	}


	.grid{
		height: 102vw;
/*	    display: block;
	    position: relative;*/
	    padding: 1.75em 0 0 2.75%;
	}
	.grid img{
	    display: block;
	}
	.squareone, .squaretwo {
	    width: 15.8%;
	    height: 100%;
	    margin: 1% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.recone {
	    width: 31.6%;
	    height: 100%;
	    margin: 1% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.rectwo {
	    width: 40%;
	    height: 100%;
	    margin: 1.02% 0% 0% 1%;
	    display: inline-block;
	    float: left;
	}
	.m-hide {
		display: inline-block;
	}
	.t-hide {
		display: inline-block;
	}


	.footcontainer{
		display: inline-flex;
	    position: relative;
	    background-color: none;
	    width: 280px;
	    max-height: 194px;
	    min-height: 34px;
	    margin-top: 20px;
	    left: calc(50% - 280px/2);
	    text-align: center;
	}
}