html {
  color: white;
  font-size: 10px;
}

.mnav {
    position: fixed;
    width: 100%;
    height: 65px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(236, 233, 220, 0.9);
    top: 0;
    z-index: 10;
    cursor: pointer;

}

.menu {
  transition: 0.1s -webkit-transform linear;
  transition: 0.1s transform linear;
  transition: 0.1s transform linear, 0.1s -webkit-transform linear;
  position: fixed;
  background: 0;
  float: left;
  margin: 2rem;
  height: 2.7rem;
  width: 3.5rem;
  z-index: 1;
  outline: 0;
  padding: 0;
  border: 0;
  z-index: 100000;
}

.bar, .bar::before, .bar::after {
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
  transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
  position: absolute;
  background: #000;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  content: '';
  top: 50%;
  left: 0;
    background-color: #5a7890;
}
.bar {
  margin-top: -0.2rem;
}
.bar::before {
  top: -1.2rem;
}
.bar::after {
  top: 1.2rem;
}
.bar::before, .bar::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.active .bar {
  background: 0;
}
.active .bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
      background-color: #ded3bd;
}
.active .bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
      background-color: #ded3bd; 
}
.active .bar::before, .active .bar::after {
  top: 0;
}
.active .bar, .active .bar::before, .active .bar::after {
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
  transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}

.mobilenav {
  width: 250px;
  height: 100%;
  background: #eaeaea;
  position: fixed;
  -webkit-transform: translateX(-250px);
          transform: translateX(-250px);
  transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91), -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
  padding-top: 6.2rem;
    z-index: 10;
}
.menu-open .mobilenav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
     background-color: #657b92;
}

.mobileli a {
    display: block;
    font-family: "Arial", "Helvetica";
    font-size: 18px;
    color: #ded3bd;
    text-align: center;
    padding: 15px 36px 15px 25px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.mobileli a:hover {
    color: #5a7890;
    background-color: #ded3bd;
}

.mobilenav .mobileul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.mobilenav .mobileul .mobileli {
  padding: 20px 5px;
  font-size: 2rem;
    width: 90%;
}
.mobilenav .mobileli:hover {
  color: #ded3bd;
  background-color: #657b92;
}

.mobilenav:hover {
    color: white;
    transition-duration: 0.7s;
}

.mnav-logo {
    position: relative;
    width: 200px;
    margin-top: 10px;
    margin-right: 7%;
    display: block;
    float: right;
    z-index: 10000000000000;
}



/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------MIN-WIDTH 1001px-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media only screen and (min-width: 1001px) {
    .mnav {
        display: none;
    }
}


