body {
    background: #fff;
    overflow-x: hidden;
  }

.side-padding {
  padding-left: 5rem;
  padding-right: 5rem;
}

.mini-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1000;
  padding: 10px 50px;
  color: white;
  transition: all .2s ease-out;
}

.mini-nav.scrolled {
  background: #2e412db9;
  background: #435642;
  box-shadow: 2px 2px 10px -5px black;
}

.mini-nav .call {
  font-weight: bold;
  font-size: 1.1rem;
}
.mini-nav .work {
  font-size: 1.1em;
  margin-left: 20px;
}

.mini-nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.mini-nav ul li {
  display: inline-block;
  margin-right: 20px;
}

.mini-nav ul li a {
  color: white;
}


  .toggle{
      float: right;
  }
  .nav-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 40%;
  }
  
  .nav-container p {
    font-size: 20px;
  }
  
  .nav-container a {
    display: inline-block;
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    overflow: hidden;
    top: 5px;
    margin-left: 20px;
  }
  
  .nav-container a:after {
    content: '';
    position: absolute;
    background: #FF5252;
    height: 2px;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    -webkit-transition: .35s ease;
    transition: .35s ease;
  }
  
  .nav-container a:hover:after,
  .nav-container a:focus:after,
  .nav-container a:active:after {
  }
  
  .button_container {
    height: 30px;
    width: 50px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    position: relative;
    margin-right: 50px;
  }
  
  .button_container:hover {
    opacity: 1;
  }
  
  .button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    -ms-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(0px) translateX(0) rotate(45deg);
    background: #FFF;
    width: 50%;
  }
  
  .button_container.active .middle {
    opacity: 0;
    background: #FFF;
  }
  
  .button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
  }
  
  .button_container span {
    background: #fff;
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
  }
  
  .button_container span:nth-of-type(2) {
    top: 20px;
    width: 50%;
  }
  
  .button_container span:nth-of-type(3) {
    top: 22px;
    width: 50%;
  }
  
  .overlay {
    position: fixed;
    background: #435642;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    padding: 40px 100px;
    color: white;
  }
  
  .overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    z-index: 99;
  }
  
  .overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
  }
  
  .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
  }
  
  .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
  }
  
  .overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
  }
  
  .overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
  }
  
  .overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    
    font-weight: 700;
  }
  
  .overlay ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  .overlay ul li {
    display: block;
    height: 20%;
    height: calc(100% / 7);
    min-height: 30px;
    position: relative;
    opacity: 0;
  }
  
  .overlay ul li a {
    display: block;
    position: relative;
    color: #435642;
    color: white;
    text-decoration: none;
    overflow: hidden;
    font-family: 'Playfair Display';
    font-weight: normal;
  }
  
  .overlay ul li a:hover:after,
  .overlay ul li a:focus:after,
  .overlay ul li a:active:after {
  }
  
  .overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
  }

  .overlay-book {
    position: absolute;
    bottom: 100px;
    left: 100px;
  }

  .line {
    width: 40px;
    height: 2px;
    background: white;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0px;
  }

  .line-enter-active {
    transition: all .4s cubic-bezier(0,.46,.48,1);;
  }
  .line-leave-active {
    transition: all .4s cubic-bezier(0,.46,.48,1);;
  }
  .line-enter {
    
    width: 0% !important;
  }
  .line-leave-to {
    width: 0%;
    /*transform: translate(-100%);*/
    /*
    width: 0% !important;
    transform: translateX(-100%);
    */
  }

  .menu-enter-active {
    transition: all .2s cubic-bezier(0,.46,.48,1);
    transition-delay: .4s;
  }
  .menu-leave-active {
    transition: all .2s cubic-bezier(0,.46,.48,1);;
  }
  .menu-enter {
    
    transform: translateY(20px);
    opacity: 0;
  }
  .menu-leave-to {
    transform: translateY(-20px);
    opacity: 0;
    /*transform: translate(-100%);*/
    /*
    width: 0% !important;
    transform: translateX(-100%);
    */
  }

  .current {
    position: absolute;
    right: 300px;
    top: 100px;
    width: 400px;
    text-align: center;
  }

  .current img {
    margin: auto;
  }

  .current-text {
      margin-top: 50px;
  }


  @media (max-width: 500px) {
    .nav-container a {
      font-size: 1.7rem;
    }
    #overlay .current {
      display: none;
    }
    .mini-nav {
      padding: 10px 20px;
    }
    .side-padding {
      padding-left: 20px;
      padding-right: 20px;
    }
    .overlay {
      padding: 40px 20px;
    }
  }
  
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }

