/* --- CSS Reset --- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  	margin: 0px;
  	padding: 0;
  	border: 0;
  	font-weight: inherit;
  	font-style: inherit;
  	font-size: inherit;
  	font-family: inherit;
  	vertical-align: baseline;
}

html{
	scroll-behavior: smooth;
}

.logo { 
	width:100%;
	display:block;
		
}

h1 { 
	font-family: 'Josefin Slab', serif;
	font-weight:700;
	color:#fff;
	font-size:85px;
	text-transform: uppercase;
	margin-top: 4%;
}

h2 { 
	font-family: 'Signika', serif;
	font-weight:400;
	color:#fff;
	font-size: 50px;
}

p{
	font-family: 'Signika', serif;
	font-weight:300;
	color:#000000;
	font-size: 20px;
}

.nav{
	width:100%;
	display:flex;
	background-color: #bbb;
	z-index:1;
	overflow: hidden;
	
}

.stickyNav {
  position: fixed;
  top: 0;
  box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.4);
}

.stickyNav + .block1 {
  padding-top: 9%;
}


.nav-btn{
	flex:1; 
	font-family: 'Signika', serif;
	font-size:30px;
	font-weight:300;
	border: 1px solid #000000;
	text-align:center;
	padding:1%;
	text-decoration:none;
	color:#000000;
	transition: all 0.3s ease;
}

.nav-btn:hover{
	color:#ffffff;
	background:#0899CD;
}

.content{
	position:relative;
	min-height: 100%;
	min-width: 100%;
	background:#000;
	right:0px;
	box-shadow: 0px 4px 15px 10px rgba(0,0,0,0.4);
	transition: all 0.3s ease;
}

.contentMove{
	right:0px;
}

.mobileNav{
	height: 100%;
	width: 100%;
	border: 1px solid #000000;
	background-color: #bbb;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	position: fixed;
	z-index: 0;
  
}

.mobile-nav-btn{
	display:block;
	font-family: 'Signika', serif;
	font-size:30px;
	font-weight:300;
	border: 1px solid #000000;
	text-align:right;
	padding:1%;
	text-decoration:none;
	color:#000000;
	transition: all 0.3s ease;
	left:0;
	right:0;
}

.mobile-nav-btn:hover{
	color:#ffffff;
	background:#0899CD;
}

.openMobileNav{
	display:none;
	font-size:40px;
	cursor:pointer;
	top:-10px;
	right:0;
	position:fixed;
	padding:1%;
	z-index:1;
}

.closeMobileNav{
	font-size:85px;
	cursor:pointer;
	top:-35px;
	right:0;
	position:fixed;
	padding:1%;
	z-index:1;
	display:none;
}


.show{
	display:none;
}

.block1 {
	background:#343896;
	width:100%;
	padding:5%;
	display:block;	
}

.block2 {
	background:#0899CD;
	width:100%;
	padding:5%;
	display:block;
}
	
* {box-sizing:border-box}



.display-img{
	margin:auto;
	display:block;
	max-width:100%;
	height:auto;
	padding:2% 0 2% 0;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

.display-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding:2% 0 2% 0;
}

.site-btn{
	font-family: 'Signika', serif;
	font-weight:300;
	color:#000000;
	font-size: 20px;
	text-align:center;
	background-color: #bbb;
	padding:1%;
	border-style: none;
	transition: all 0.3s ease;	
	width:10%;
	text-decoration:none;
	display:block;
	margin-bottom: 2%;
}

.site-btn:hover{
	cursor: pointer;
	color:#ffffff;
	background:#0899CD;
}

.contactParent{
	display:flex;
}

.contactForm{
	width:50%;
	padding-right:2%;
}

.contactFormText {
	padding:2% 0 2% 0;
}

.contactInputs{
	width:100%;
	padding:2%;
	font-size:20px;
}

.submit-btn{
	-webkit-appearance: none;
	font-family: 'Signika', serif;
	font-size:20px;
	font-weight:300;
	color:#000000;
	background-color: #bbb;
	padding:2%;
	border-style: none;
	margin-top: 2%;
	transition: all 0.3s ease;
}

.submit-btn:hover{
	cursor: pointer;
	color:#ffffff;
	background:#343896;

}

.contactInfo{
	flex:1;
}

.contactInfo p{
	padding:2% 0 2% 0;
}

footer{
text-align:center;
background-color: #bbb;
padding:2%;
}


@media only screen and (max-width: 1060px) {
	h1 { 
		font-size:85px;
	}

	h2 { 
		font-size: 50px;
	}

	p{
		font-size: 20px;
	}

	.nav-btn{
		font-size:30px;
	}

}

@media only screen and (max-width: 850px) {
	h1 { 
		font-size:55px;
	}

	h2 { 
		font-size: 40px;
	}

	p{
		font-size: 17px;
	}

	.nav{
		display:none;
	}
	
	.show{
		display:block;
	}
	
	
	.contentMove{
		right:250px;
	}
	
	.stickyNav {
	  box-shadow: 0px 0px 0px 0px;
	}
	
	.display-img{
		padding:3% 0 3% 0;
	}
	
	.site-btn{
		width:100%;
		font-size: 15px;
		margin-bottom:6%;
	}
	
	.contactParent{
		display:block;
	}
	
	.contactForm{
		width:100%;
	}
	
	.submit-btn{
		width:100%;
	}

}

@media only screen and (max-width: 600px) {
	h1 { 
		font-size:40px;
	}

	h2 { 
		font-size: 30px;
	}

	p{
		font-size: 15px;
	}

	.nav-btn{
		font-size:13px;
	}
}

