@media only screen and (max-width: 1200px) {
  #mobile-btn {
    display: block;
  }
	
	.lang {visibility: none; display: none;}
	  .logo {
    position: relative;
	  text-align: left;
	  
  }

  .nav-menu {
    display: none;
  }

  .wrapper {
    display: flex;
    min-height: 100%;
  }

  .sidebar {
    position: absolute;
    width: 220px;
    display: block;
  }

  #page {
    flex: 1;
    /* padding: 30px; */
    background: #eee;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s;
  }

  #page.isOpen {
    transform: translate3d(220px, 0, 0);
  }

  .button {
    cursor: pointer;
  }

  .button:before {
    content: "\f0c9";
    font: 42px fontawesome;
  }

  /* Demo Navigation */

  .title {
    font-size: 16px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 7px;
    color: #eee;
    border-bottom: 1px solid #222;
    background: #2a2a2a;
  }

  .nav li a {
    position: relative;
    display: block;
    padding: 15px 15px 15px 50px;
    font-size: 16px;
    color: #eee;
    border-bottom: 1px solid #222;
  }

  .nav li a:before {
    font: 14px fontawesome;
    position: absolute;
    top: 14px;
    left: 20px;
  }

  .nav li a:hover {
    background: #444;
  }

  .nav li a.active {
    box-shadow: inset 5px 0 0 #5b5, inset 6px 0 0 #222;
    background: #444;
  }

  /* Demo Description */
  #page {
    position: relative;
  }

  #page:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }

  #page.isOpen:after {
    opacity: 0.5;
    pointer-events: auto;
  }

  #close-mobile-menu {
    position: absolute;
    display: block;
    right: 20px;
    top: 20px;
    z-index: 1;
  }
}
