:root {
	--primary: #0091EA;
}



html {
	box-sizing: border-box;
	font-family: "Helvetica Neue", sans-serif;
}
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
a, a:visited {
	color: var(--primary);
	text-decoration: none;
}
header {
	position: relative;
	background: linear-gradient(to right, #616161, #757575);
	clip-path: polygon(0% 0%, 100% 0%, 100% 32.5%, 95% 42%, 90% 49.5%, 85% 56%, 78.63% 63.14%, 70% 71%, 60.06% 78.12%, 49.94% 84.25%, 40% 88.87%, 30% 92.5%, 20% 95.5%, 10% 98%, 0.06% 100%);
	height: 50vh;
	width: 100vw;
	padding: 25% 15%;
	color: #fff;
	z-index: -1;
	font-size: 30px;
	font-weight: bold;
}
header p {
	font-style: italic;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 2.0;
	word-spacing: -1;
}
#navbtn1 {
	position: fixed;
	right: 5vw;
	top: 5vw;
	transition: right 1s;
}
#navbtn1.open {
	right: -10vw;
}
#navbtn2 {
	position: absolute;
	top: 5vw;
	left: 20px;
	filter: invert(1);
}
#navicon {
	width: 25px;
}
#navicon:hover, #imgswitch:hover {
	cursor: pointer;
}
p.nav {
	margin-bottom: 25px;
	font-weight: 700;
	font-size: 20px;
}
nav {
	position: fixed;
	top: 0;
	left: calc(100vw + 10px);
	height: 100vh;
	width: 80vw;
	padding-top: 5vw;
	text-align: center;
	font-size: 16px;
	overflow: hidden;
	background-color: var(--primary);
	transition: left 1s;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
	box-shadow: 0px 0px 10px #333;
}
nav.open {
	left: 20vw;
}
nav * {
	color: #fff;
	list-style: none;
}
nav li {
	margin: 5px 0px 5px -25%;
	width: 150%;
}
nav li.active {
	border-bottom: 2px solid #B0BEC5;
}
main {
	text-align: center;
	margin: 20px;
	padding: 10px;
}
main a.active {
	color: #555;
}
footer {
	position: relative;
	top: 10vh;
	padding: 1em;
	text-align: center;
	background-color: var(--primary);
}
footer * {
	list-style: none;
	color: #fff !important;
}
.copyright {
	margin-top: 20px;
	font-size: 12px;
	font-style: italic;
}
h1 {
	margin: 20px 0px 10px 10%;
	width: 80%;
	font-size: 26px;
	border-bottom: 3px solid var(--primary);
	font-weight: 300;
	letter-spacing: 10;
	text-transform: uppercase;
}
h2 {
	margin: 15px 0px 5px 0px;
	font-size: 20px;
}
table {
	margin: 25px 0px;
	width: 100%;
	overflow: hidden;
	font-size: 6px;
}
table td {
	border-top: 1px solid #000;
	padding: 2px 0px;
}
table img {
	width: 100%;
	max-width: 150px;
}
address {
	margin: 20px 0px;
}
#ds {
	margin-top: 20px;
	padding: 10px 18px;
	font-size: 12px;
	border-radius: 25px;
	border: 1px solid #37474F;
	color: #37474F;
	background-color: transparent;
	font-weight: bold;
}
.images {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.images a {
	display: block;
	width: 50px;
	height: 50px;
	margin: 2px;
	overflow: hidden;
}
.images img {
	width: 150%;
	transform: translateX(-25%);
}

@media screen and (min-width: 640px) and (max-width: 1080px) {
	nav {
		width: 60vw;
	}
	nav.open {
	 left: 40vw;
  }
	main {
		width: 75vw;
		margin-left: 12.5vw;
	}
	table {
		font-size: 12px;
	}
}

@media screen and (min-width: 1080px) {
	header {
		padding: 15% 10%;
		font-size: 50px;
	}
	#navbtn {
		display: none;
	}
	nav {
		width: 30vw;
	}
	nav.open {
	 left: 70vw;
  }
	nav li {
		margin: 10px;
		width: 125px;
	}
	main {
		width: 75vw;
		margin-left: 12.5vw;
		font-size: 16px;
	}
	table {
		font-size: 16px;
	}
	footer {
		top: 25vh;
	}
}
