html, body {
  height: 100% !important;
}

#menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  background-color: #293624;
  padding: 15px;
  z-index: 1001;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#menu-btn .bar {
  background-color: #FFF;
  width: 25px;
  height: 1px;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#menu-btn.open {
  background-color: #FFF;
}

#menu-btn.open:hover, #menu-btn.open:focus {
  background-color: #e2ecdd;
}

#menu-btn.open .bar {
  background-color: #293624;
}

#menu-btn:hover, #menu-btn:focus {
  background-color: #3e5335;
}

.open div:first-child {
  -webkit-transform: translate(0, 7px) rotate(-45deg);
          transform: translate(0, 7px) rotate(-45deg);
}

.open div:nth-child(2) {
  opacity: 0;
}

.open div:last-child {
  -webkit-transform: translate(0, -7px) rotate(45deg);
          transform: translate(0, -7px) rotate(45deg);
}

#nav-menu {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  list-style: none;
  text-align: center;
  z-index: -100;
  font-family: 'Roboto', 'Times New Roman', serif;
  font-size: 250%;
  background-color: #293624;
  margin: 0;
  padding: 30px;
  overflow: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#nav-menu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
}

#nav-menu li {
  margin: 8px 0px;
}

#nav-menu li a {
  display: inline-block;
  padding: 10px 0px;
  color: #FFF;
  text-decoration: none;
  margin: 0px auto;
  position: relative;
}

#nav-menu li a:hover, #nav-menu li a:focus {
  color: #e2ecdd;
}

#nav-menu li a:hover::before, #nav-menu li a:focus::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#nav-menu li a::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #e2ecdd;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

#home-container {
  height: 100%;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px auto;
}

#home-container #home-logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#home-container #home-logo img {
  margin: 0px auto;
}

@media (max-width: 650px) {
  #home-container #home-logo img {
    max-width: 80%;
  }
}

@media (min-width: 651px) {
  #home-container #home-logo img {
    max-width: 50%;
  }
}

#home-container #home-logo #tagline {
  font-family: 'Roboto', 'Times New Roman', serif;
  font-size: 1.4rem;
  margin-top: 10px;
  text-align: center;
}

#home-container #home_footer {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  padding: 25px 0px;
  text-align: center;
  font-size: 1.0rem;
}
/*# sourceMappingURL=style.css.map */