.main-tool-bar {
  height: 80px;
  background: #f7f7f7;
  text-align: center;
  color: #0e1111;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  transition: ease 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*.main-tool-bar {
  height: 80px;
  background: #f7f7f7;
  text-align: center;
  color: #0e1111;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
z-index: 2;
  transition: ease 0.4s;
}*/


#navlist {
    display: flex;
    align-items: center;
    height: 80px;
    max-width: 2000px;
    margin: 0 auto;
    background: #f7f7f7;
}

#navlist a {
    display: block;
    text-decoration: none;
    padding:2rem;
    
}

.logo {
  padding-left: 2rem;
}

.logo a {
    color: #0e1111;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-decoration: none;
}
ul {
  list-style: none;
}
li{
  display: list-item;
  font-family: 'Montserrat', sans-serif;
}

li a {
  color: #0e1111;
}

.nav_close_section {
  display: none;
}

@media screen and (min-width:768px) {
  #burger_menu {
    display: none;
  }
}

@media screen and (max-width:1023px) {
  #navlist a {
    padding: 1.8rem 1.4rem;
  }
}

@media screen and (max-width:767px) {

  .main-tool-bar {
    height: 60px;
  }

  .logo {
    padding-left: 1.5rem;
  }

  #mainnav {
    position: absolute;
    right: 1.5rem;
    top: 60px;
    background: white;
    box-shadow: 0 0 28px 3px rgba(0,0,0,0.1);
    display: none;
  }

  #burger_menu {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: calc(1.5rem - 15px);
  }

  .burger {
    position: relative;
  }

  .burger::before, .burger::after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -15px;
    top: -10px;
  }

  .burger::after {
    top: auto;
    bottom: -10px;
  }

  .burger, .burger::before, .burger::after {
    width: 30px;
    height: 3px;
    background: #0e1111;
    border-radius: 3px;
    transition: 200ms ease-in-out all;
  }

  #navlist {
    align-items: stretch;
    height: auto;
    flex-direction: column;
    padding: 1rem 0;
  }

  #navlist a {
    text-align: right;
    padding: 1.3rem 1.7rem 1.3rem;
    width: 100%;
  }

  #navlist li {
    position: relative;
    min-width: 40vw;
    width: 250px;
    max-width: 75vw;
  }

  #navlist li + li::before {
    content: "";
    position: absolute;
    left: 1rem;
    width: calc(100% - 2rem);
    background: black;
    top: 0;
    height: 0.5px;
  }

  .nav_close_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    background: transparent;
  }

  .burger_menu--is-active .burger {
    width: 0;
  }

  .burger_menu--is-active .burger::before {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .burger_menu--is-active .burger::after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  

}