.nav-wrap {
    overflow: hidden;
    background: transparent;
}

.menu {
    margin: 0;
    visibility: hidden;
    position: relative;
    right: 100%;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
}
.menu.active {
    visibility: visible;
    right: 0;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    background-color: #6bceef;
}
.current {
    cursor: pointer;
    background-color: #179be2;
}
.menu ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}
.menu ul li {
    padding: 15px 30px;
    line-height: 1;
    margin-left: 0px;
    display: inline-block;
    font-family: Helvetica, sans-serif;
    color: #000;
}
.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: x-large;
}
.menu ul li:hover {
    cursor: pointer;
    background-color: #179be2;
}

.download:after {
    content: "\0021e7";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg);
    font-size: 15em;
    opacity: 0;
    transition: opacity 2s ease-in-out, font-size 2s ease-in-out,
        top 2s ease-in-out;
    /* box-sizing: border-box; */
}
.download:active:after {
    font-size: 1em;
    opacity: 1;
    transition: none;
    top: 0.3em;
}

/*Hamburger Nav Toggle*/
.toggle-nav {
    position: absolute;
    top: 0;
    cursor: pointer;
    width: 25px;
    height: 25px;
    z-index: 1;
    /* padding: 23.8px; */
}

.bar {
    display: block;
    width: 100%;
    height: 20%;
    margin-top: 20%;
    margin-left: 50%;
    background: white;
    color: tomato;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.animate .bar:nth-child(1) {
    transform: translateY(10px) rotate(135deg);
}

.animate .bar:nth-child(2) {
    opacity: 0;
}

.animate .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-135deg);
}
