body {
  background: #1a1a1a;
  font-family: 'Maven Pro', sans-serif;
  font-size: 18px;
}
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
#logo {
  padding: 20px 50px;
}
#logo img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  height: auto;
}
.section {
  position: relative;
  display: inline-block;
  width: 33.33%;
  margin: 0 -4px 0 0;
  padding: 0 10px 20px 10px;
  box-sizing: border-box;
}
#section-products,
#section-contact {
  width: 50%;
}
.section .teaser {
  position: relative;
  text-align: center;
  background: url(img/about.jpg) center center no-repeat;
  background-size: cover;
  height: 0;
  padding-top: 120%;
  cursor: pointer;
}

#section-products .teaser,
#section-contact .teaser {
  padding-top: 50%;
}

#section-about-me .teaser { background-image: url(img/about-me.jpg); }
#section-booking .teaser { background-image: url(img/booking.jpg); }
#section-products .teaser { background-image: url(img/products.jpg); }
#section-contact .teaser { background-image: url(img/contact.jpg); }
.section .teaser h2 {
  position: absolute;
  left: 5%;
  width: 90%;
  bottom: 10%;
  padding: 5px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.section .teaser:hover h2 {
  background: rgba(0,0,0,0.8);
}
.section-content {
  display: none;
  position: fixed;
  padding: 120px 50px 40px 50px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-y: scroll; 
  -webkit-overflow-scrolling: touch;
  background: #f1f1f1 url(img/logo-black.png) center 20px no-repeat;
  background-size: 100px auto;
  z-index: 10;
  box-sizing: border-box;
}
.section-content-active {
  display: block;
}
.section-content-exit {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.section-content-exit .exit-1,
.section-content-exit .exit-2 {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 2px;
  background: #333;
  display: block;
   -ms-transform: rotate(-47deg); /* IE 9 */
  -webkit-transform: rotate(-47deg); /* Safari */
  transform: rotate(-47deg);
}
.section-content-exit .exit-2 {
  -ms-transform: rotate(47deg); /* IE 9 */
  -webkit-transform: rotate(47deg); /* Safari */
  transform: rotate(47deg);
}



#footer {
  color: #fff;
  text-align: center;
}