html, body {
	margin: 0px;
	padding: 0px;
	font-family: "Avenir";
	font-family: 'Avenir Next LT Pro Condensed';
}

a {
	text-decoration: none;
}

@font-face {
	font-family: 'Avenir Next LT Pro Condensed';
	font-style: normal;
	font-weight: normal;
	src: local('Avenir Next LT Pro Condensed'), url('AvenirNextLTPro-Cn.woff') format('woff');
}

@font-face {
	font-family: 'Avenir Next LT Pro Demi';
	font-style: normal;
	font-weight: normal;
	src: local('Avenir Next LT Pro Demi'), url('AvenirNextLTPro-Demi.woff') format('woff');
}

.border {
	position: fixed;
	background-color: white;
}

#left-border {
	width: 20px;
	height: 100vh;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

#right-border {
	width: 20px;
	height: 100vh;
	top: 0px;
	right: 0px;
	z-index: 1000;
}

#bottom-border {
	width: 100vw;
	height: 20px;
	bottom: 0px;
	left: 0px;
	z-index: 1000;
}

header {
	width: 100vw;
	height: 70px;
	background-color: white;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

.title {
	font-size: 48px;
	padding-top: 5px;
	padding-left: 20px;
	display: inline-block;
}

.title a {
	color: black;
	font-family: 'Avenir Next LT Pro Demi';
}

h1 {
	font-family: 'Avenir Next LT Pro Demi';
}

#burger {
	width: 35px;
	float: right;
	padding: 17px;
	padding-right: 20px;
	cursor: pointer;
	display: none;
}

.nav {
	float: right;
	padding-top: 12px;
	margin-right: -10px;
}

.nav li {
	display: inline-block;
	padding-right: 30px;
}

.nav li a {
	color: black;
	font-size: 25px;
}

.link-points {
	background-color: blue;
	position: absolute;
	top: 0px;
	left: 0px;
}

.link-point {
	height: calc(100vh - 90px);
}

.page-section {
	width: calc(100vw - 40px);
	height: calc(100vh - 90px);
	margin-left: 20px;
	background-size: cover;
	background-position: center center;
}

.home {
	margin-top: 70px;
	background-image: url("home.jpg");
}

.menu {
	background-image: url("menu.jpg");
}

.gallery {
	background-image: url("gallery.jpg");
}

.about {
	background-image: url("about.jpg");
}

.find-us {
	background-image: url("find-us.jpg");
	padding-bottom: 20px;
}

.menu-outer {
	padding: auto;
	height: 100%;
	width: 100%;
	text-align: center;
	display: table;
}

.menu-inner {
	width: calc(100vw - 40px);
	height: calc(100vh - 90px);
	display: table-cell;
	vertical-align: middle;
}

.menu-inner img {
	display: inline-block;
	max-height: 80%;
	max-width: 47%;
}

.menu-inner a {
	color: white;
	font-size: 60px !important;
	/*-webkit-text-stroke: 1px #ccc;*/
	font-family: 'Avenir Next LT Pro Demi';
  	transition: 0.3s;
}

#menu-divide {
	border-bottom: white solid 7px;
	margin-bottom: 20px;
	margin-top: 10px;
	margin-right: 40%;
	margin-left: 40%;
}

.menu-inner a:hover {
	text-decoration: underline;
  	transition: 0.3s;
}

.about-content {
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	padding: 40px;
	text-align: center;
	color: white;
	font-size: 20px;
}

.about-content img {
	width: 350px;
	max-width: 70%;
	border: 10px white solid;
}

.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#caption {
	display: block;
	position: absolute;
	padding: 0px 6px 0px 6px;
	left: 20px;
	bottom: 20px;
	z-index: 900;
	color: white;
	background-color: black;
	font-size: 25px;
}

.controls {
	display: block;
	position: absolute;
	top: calc(50% - 25px);
	z-index: 900;
}

.controls img {
	height: 50px;
	width: auto;
}

#next {
	right: 0px;
}

.map {
	width: 812px;
	height: 400px;
	max-height: calc(100% - 65px);
	max-width: 90%;
	border: 10px white solid;
}

@media only screen and (max-width: 720px) {
  header {
    /*background-color: lightblue;*/
  }
  #burger {
  	display: block;
  }
  .nav {
  	height: 0px;
  	margin: -1px;
  	padding-top: 0px !important;
  	padding-bottom: 0px;
  	padding-left: 20px;
  	overflow: hidden;
  	float: none;
  	margin-right: 0px;
  	display: block;
  	background-color: white;
  	transition: height 0.5s;
  }
  .nav li {
  	display: block;
  	padding-right: 30px;
  }
  .show {
  	height: 140px !important;
  	padding-bottom: 6px;
  	transition: height 0.5s;
  }
  .about-content {
  	width: calc(100% - 20px);
  	height: calc(100% - 20px);
  	padding: 10px;
  }
/*  .menu {
	height: calc(50vh - 90px);
  }
  .menu-inner {
  	height: calc(50vh - 90px);
  }
  .gallery {
	height: calc(50vh - 90px);
  }*/
}