.menu-button {
    /* width: 50px;
    height: 50px; */
    position: fixed;
    top: 0px;
    right: 25px;
    z-index: 999 !important;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    line-height: 70px;
    /* color: #006a92; */
    color: #fff;
    /* background-color: #f0f0f0; */
    border-radius: 100%;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.15); */
}
.menu-button i{
    font-size: 36px !important;
}

.nav-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.nav-wrap ul {
    height: 100%;
}

.nav-wrap li {
    position: fixed;
    overflow: hidden;
    /* opacity: 0.9; */
    transition: all 0.5s cubic-bezier(1, 0, 0.4, 1.3);
}

.nav-wrap li i {
    font-size: 36px;
}

.nav-wrap li:hover i {
    font-size: 56px;
}

.nav-wrap li:nth-child(1) {
    background-color: #006a92;
}

.nav-wrap li:nth-child(2) {
    background-color: #007799;
}

.nav-wrap li:nth-child(3) {
    background-color: #00839f;
}

.nav-wrap li:nth-child(4) {
    background-color: #0093a8;
}

/* .nav-wrap li:nth-child(5) {
    background-color: #00a0b0;
} */

.nav-wrap.vertical li {
    height: 0;
    top: 0;
}

.nav-wrap.vertical li.active {
    height: 100%;
}

.nav-wrap.vertical li:nth-child(1) {
    /* width: 20%; */
    width: 25%;
    left: 0%;
    transition-delay: 0s;
}

.nav-wrap.vertical li:nth-child(2) {
    /* width: 20%;
    left: 20%; (gdy jest 5 zakladek)*/
    width: 25%;
    left: 25%;
    transition-delay: 0.05s;
}

.nav-wrap.vertical li:nth-child(3) {
    /* width: 20%;
    left: 40%; */
    width: 25%;
    left: 50%;
    transition-delay: 0.1s;
}

.nav-wrap.vertical li:nth-child(4) {
    /* width: 20%;
    left: 60%; */
    width: 25%;
    left: 75%;
    transition-delay: 0.15s;
}

/* .nav-wrap.vertical li:nth-child(5) {
    width: 20%;
    left: 80%;
    transition-delay: 0.2s;
} */

.nav-wrap.horizontal li {
    width: 0;
    left: 0;
}

.nav-wrap.horizontal li.active {
    width: 100%;
}

.nav-wrap.horizontal li:nth-child(1) {
    height: 20%;
    top: 0%;
    transition-delay: 0s;
}

.nav-wrap.horizontal li:nth-child(2) {
    height: 20%;
    top: 20%;
    transition-delay: 0.05s;
}

.nav-wrap.horizontal li:nth-child(3) {
    height: 20%;
    top: 40%;
    transition-delay: 0.1s;
}

.nav-wrap.horizontal li:nth-child(4) {
    height: 20%;
    top: 60%;
    transition-delay: 0.15s;
}

/* .nav-wrap.horizontal li:nth-child(5) {
    height: 20%;
    top: 80%;
    transition-delay: 0.2s;
} */

.nav-wrap a {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f0f0f0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.nav-wrap i {
    margin-bottom: 15px;
    display: block;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-wrap span {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* hamburger */

  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke:#fff;
    stroke-width:5.5;
    stroke-linecap:round;
  }
  .ham1 .top {
    stroke-dasharray: 30 139;
  }
  .ham1 .bottom {
    stroke-dasharray: 30 180;
  }
  .ham1.active .top {
    stroke-dashoffset: -98px;
    stroke-dasharray: 40 139;
  }
  .ham1.active .bottom {
    stroke-dashoffset: -138px;
  }