.navigation {
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 99;
}

.navigation ul {
  display: flex;
  list-style: none;
  color: #ffffff;
}

.navigation ul li {
  letter-spacing: 1px;
  margin: 0 18px;
}

@media (width <= 1680px) {
  .navigation {
    display: none;
  }
}

.phone {
  display: none;
}

@media (width <= 1680px) {
  .navigation a {
    text-decoration: none;
    color: #1e1e23;
    opacity: 1;
    font-family: 'HelveticaNeue-Regular';
    font-size: 12px;
    font-weight: 400;
    transition: 200ms;
    margin: 0;
  }
  .navigation a:hover {
    opacity: 0.5;
  }
  .navigation ul {
    padding: 0;
    list-style-type: none;
  }

  .navigation .container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phone {
    position: absolute;
    top: 18px;
    width: 223px;
    height: 283px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    left: 0;
  }
  .content {
    width: 94%;
    height: 97%;

    overflow: hidden;
  }
  nav {
    background-color: transparent;
    height: 65px;
  }

  #menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 17px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }

  @media (width <= 992px) {
    #menuToggle {
      left: 12px;
      top: 35px;
    }
  }

  #menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 99;
  }

  #menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383f;
  }
  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    box-shadow: 0 0 10px #85888c;
    margin: -50px 0 0 -24px;
    padding-top: 75px;
    padding-bottom: 18px;
    width: 280px;
    display: flex;
    flex-direction: column;
    background-color: #f5f6fa;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu li {
    padding: 10px 0 0 0;

    display: block;
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }
}
