.hero-full-screen {
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("../img/hero.jpg") center center no-repeat;
  background-size: cover;
}
@media screen and (min-width:312px) and (max-width: 800px) {
    .hero-full-screen {
    height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url("../img/hero-m.jpg") center center no-repeat;
    background-size: cover;
  }  
}

@media screen and (max-width:312px) {
    .hero-full-screen {
    height: 100vh;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url("../img/hero-s.jpg") center center no-repeat;
    background-size: cover;
  }  
}

.hero-full-screen .middle-content-section {
  text-align: center;
  color: #fefefe;
}

.hero-full-screen .top-content-section {
  width: 100%;
}

.hero-full-screen .bottom-content-section {
  padding: 1rem;
}

.hero-full-screen .bottom-content-section svg {
  height: 3.75rem;
  width: 3.75rem;
  fill: #b78a5e;
}

.hero-full-screen .top-bar {
  background: transparent;
}

.hero-full-screen .top-bar .menu {
  background: transparent;
}

.hero-full-screen .top-bar .menu-text {
  color: #fefefe;
}

.hero-full-screen .top-bar .menu li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-full-screen .top-bar .menu a {
  color: #b78a5e;
  font-weight: bold;
}

li a.nav {
  padding-top: 30px;
}

body {
  font-family: 'Open Sans', sans-serif;
}

a {
  font-weight: 700;
}

#content-section {
  margin: 4rem 0;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  margin: 1rem 0;
  color: #462207;
}

img.content {
  margin: 2rem 0 3rem;
  box-shadow: 0px 1px 3px rgba(150, 150, 150, 0.8);
}

figcaption {
  margin: -2.8rem 0 2rem;
  font-size: 0.9rem;
  font-style: italic;
}

ul.menu, ul.menu > li > a, ul.menu li > a:hover {
  color: #462207;
}

footer {
  padding: 3rem 0 2rem;
  background: #b78a5e;
  text-align: center;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

.gallery {
  margin: 1rem 0 2rem;
}

.gallery img {
  border: 1px solid #462207;
}

a:hover {
  color: #333;
}