html{
	font-family: Trueno, Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: 16px;
	height: 100%;
	overflow-x: hidden;
}

body{
	min-height: 100%;
	margin: 0px;
	color: var(--default-black);
	overflow-x: hidden;
}

:root{
	--default-orange: #f2a551;
	--default-lightgreen: #47abac;
	--default-darkgreen: #388b8c;
	--default-black: #0f2120;
}

@font-face {
	font-family: "Trueno";
	src: url('fonts/TruenoExBd.woff2') format('woff2'), url('fonts/TruenoExBd.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: "Trueno";
	src: url('fonts/TruenoRg.woff2') format('woff2'), url('fonts/TruenoRg.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

.noBullets{
	list-style: none;
	padding-left: 0px;
}

.resetFormElemStyle{
	font-family: inherit;
	border: none;
	font-size: inherit;
	width: 100%;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	border-radius: inherit;
	font-weight: inherit;
}

a{
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

a:hover{
	opacity: 0.7;
}

#navbar{
	position: fixed;
	width: 100%;
	height: 45px;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px black;
	z-index: 100;
	background-color: white;
}

#navLogo{
	display: inline-block;
	position: absolute;
	width: 150px;
	margin-left: 12px;
	height: 100%;
}

.navLogo{
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
}

#navLogoIcon{
	background-image: url(svg/logo_corner.svg);
	width: 46px;
}

#navLogoText{
	background-image: url(svg/logo_corner_text.svg);
	width: calc(100% - 50px);
}

@media (max-width: 500px){
	#navLogoText{
		display: none;
	}
}

@media (max-width: 400px){
	#navLogoIcon{
		display: none;
	}
}

#navMenu{
	display: inline-block;
	float: right;
	margin: 13px;
	font-size: 12px;
}

#navMenu > li{
	display: inline-block;
	margin-left: 10px;
}

.navButton{
	transition: color 0.2s;
}

.navButton.active{
	color: var(--default-darkgreen);
}

#navSocial{
	float: right;
	margin-top: 12px;
	margin-right: 15px;
}

@media (max-width: 380px){
	#navSocial{
		display: none;
	}
}

.socialItemNav{
	width: 17px !important;
	filter: brightness(0);
}

#pages{
	overflow-x: hidden;
}

.page{
	display: block;
}

.fullPage{
	width: 100vw;
	height: calc(100vh - 45px);
	position: relative;
}

.hatBG, .gameItem{
	overflow: hidden;
	position: relative;
}

.hatBG:before, .gameItem:before{
	content:'';
	background-image: url(svg/hatBG.svg);
	background-size: 3vh;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0.1;
}

#navBarEmptySpace{
	height: 45px;
}


/*front page*/
#frontPage{
	overflow: hidden;
}

#frontPageVideoContainer{
	position: absolute;
	top: 50%;
	left: 50%;
	/*transform: translate(50%, 50%) scale(0.3);*/
}

#frontPageVideo{
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

#frontPageLogoContainer{
	width: 300px;
	height: 300px;
	margin: auto;
	position: relative;
	z-index: 50;
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.7));
	top: 50%;
	transform: translate(0, -50%);
}

#frontPageLogo{
	background: url(svg/logo_white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 80%;
}

#frontPageLogoText{
	display: inline-block;
	font-size: 40px;
	width: 100%;
	text-align: center;
}

@media (max-width: 500px){
	#frontPageLogo{
		height: 60%;
	}
	#frontPageLogoContainer{
		width: 200px;
	}
	#frontPageLogoText{
		font-size: 25px;
	}
}

.pageArrow{
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, -10px);
	transition: transform 0.2s;
	background: url(svg/downArrow.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.pageArrow:hover{
	transform: translate(-50%, 0px);
}


/*games*/
#gamesPage{
	box-sizing: border-box;
	padding-bottom: 50px;
}

#gamesPageTitle{
	color: var(--default-lightgreen);
	text-align: center;
}

#gamesContainer{
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	max-width: 900px;
	margin: auto;
}

.gameItem{
	flex: 0 0 27%;
	margin: 7px;
	cursor: pointer;
	box-shadow: inset 5px 5px 30px rgba(0, 0, 0, 0.12);
}

.gameItem:before{
	content: '';
	opacity: 0;
	transition: opacity 0.2s;
	background-size: 1vh;
}

.gameItem:hover:before{
	opacity: 0.05;
}

.gameItem:active:before{
	opacity: 0.1;
}

.gameItem:hover{
	opacity: 1;
}

.gameItemImage{
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 10;
	position: absolute;
	transition: transform 1s, filter 1s;
}

.gameItemImage.zooming{
	transform: scale(1.1);
}
.gameItemImageBg{
	z-index: -10;
	transform: scale(1.1);
}
.gameItemImageBg.zooming{
	transform: scale(1.03);
	filter: blur(3px);
}


.gameItemImageBg:hover{

}

@media (max-width: 400px){
	.gameItem{
		margin: 5px;
		flex: 0 0 80%;
	}
}

.gameItem:after{
	content: '';
	display: block;
	padding-bottom: 100%;
}


/*about*/
#aboutPage{
	overflow: hidden;
	height: calc(100vh - 140px);
}

#aboutPageBGImage1{
	background-image: url(img/teamPelicanParty.jpg);
}
#aboutPageBGImage2{
	background-image: url(img/teamPelicanPartyAlt.jpg);
}

.aboutPageBGImage{
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.aboutPageBGImage:before{
	background-size: 1vh;
}

#aboutRope1{
	background-image: url(img/switch_rope_2.png);
}
#aboutRope2{
	background-image: url(img/switch_rope_1.png);
}

.aboutPageRope{
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 100px;
	height: 700px;
	position: absolute;
	z-index: 10;
	transform: translateY(-510px);
	transition: transform 0.5s;
	cursor: pointer;
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.7));
}

.aboutPageRope:hover{
	transform: translateY(-480px);
}

.aboutPageRope:active{
	transform: translateY(-450px);
}

#aboutContainer{
	padding: 30px 40px;
	max-width: 950px;
	margin: auto;
	line-height: 1.5em;
	font-weight: normal;
}

#aboutContainer h2{
	color: var(--default-lightgreen);
	margin: 10px 0px;
}

#aboutContainer p{
	margin: 0px;
	margin-bottom: 30px;
}

#partners{
	text-align: center;
	margin: auto;
}
#partners a:hover{
	opacity: 1;
}
.partners{
	height: 35px;
	filter: saturate(0%) brightness(0.8);
	transition: filter 0.5s, opacity 0.5s;
	opacity: 0.8;
	margin: 5px;
}
.partners:hover{
	filter: saturate(100%) brightness(1) drop-shadow(0px 6px 8px rgba(0,0,0,0.4));
	opacity: 1;
}

@media (max-width: 850px){
	#aboutContainer{
		grid-template-columns: 1fr;
		grid-template-areas:
			"header"
			"item1"
			"item2"
			"item3";
		grid-row-gap: 20px;
	}
}


/*newsletter*/
#newsLetterPage{
	background-color: var(--default-lightgreen);
	color: white;
}

#newsLetterContainer{
	font-size: 20pt;
	position: relative;
	margin: auto;
	top: 50%;
	transform: translate(0, -50%);
	width: 80%;
	min-width: 300px;
	max-width: 400px;
}

#newsLetterEmailGrid{
	display: grid;
	grid-template-columns: 1fr auto;
	grid-column-gap: 10px;
}

.newsLetterEmailInput{
	display: inline-block;
	box-sizing: border-box;
	padding: 5px;
	font-size: 12pt;
}

.formButton{
	cursor: pointer;
	transition: filter 0.2s;
}

.formButton:hover{
	filter: brightness(0.9);
}

.formButton:active{
	filter: brightness(0.8);
}

#newsLetterEmailBox::placeholder{
	color: var(--default-lightgreen);
}

#newsLetterEmailButton{
	background: var(--default-orange);
	color: white;
}

#newsLetterPageUpArrow{
	transform: translate(-50%, 0px) rotate(180deg);
}

#newsLetterPageUpArrow:hover{
	transform: translate(-50%, -10px) rotate(180deg);
}


/*contact*/
#contactPage{
	background-color: var(--default-orange);
	color: white;
}

#contactContainer{
	padding: 30px 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 20px;
	max-width: 950px;
	margin: auto;
	grid-template-areas: "connect social sites";
}

.social-items {
	text-align: center;
}

@media (max-width: 800px){
	#contactContainer{
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
			"connect sites"
			"social sites";
	}

	.social-items {
		text-align: left;
	}
}

@media (max-width: 500px){
	#contactContainer{
		grid-template-columns: 1fr;
		grid-template-areas:
			"connect"
			"social"
			"sites";
	}
}

.contactHeader{
	margin: 0px;
}

.contactList li{
	margin-bottom: 10px;
}

.socialLiItem{
	display: inline-block;
}

.socialItem{
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}

.textFieldLabel{
	line-height: 1.25;
	min-height: 1.25em;
	white-space: pre-wrap;
}

.contactFormTextField{
	padding: 5px;
	margin-bottom: 5px;
	box-sizing: border-box;
}

#contactMessage{
	height: 100%;
	resize: none;
}

#contactSendBtn{
	background: var(--default-lightgreen);
	color: white;
}

.contactTinyText{
	font-size: 8pt;
}
