body,
html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav {
    position: relative;
    width: auto;
    display: inline-block;
    border: none;
}

.btn-nav {
    background: transparent;
    border: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    z-index: 99999;
}

.btn-nav:focus {
    outline: 0;
}

.icon-bar {
    display: block;
    margin: 2px 0;
    height: 3px;
    border-radius: 2px 2px 2px 2px;
    background-color: #111111;
}

.icon-bar.top {
    width: 20px;
}

.icon-bar.middle {
    width: 14px;
}

.icon-bar.bottom {
    width: 20px;
}


.btn-nav:hover .icon-bar {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #111111;
}

.nav-content {
    position: fixed;
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: block;
    height: 100%;
    z-index: 999;
}

.nav-content ul {
    float: left;
}


.nav-list {
    list-style: none;
    padding: 0;
    position: relative;
    margin-top: 140px;
    width: 20%;
}

.item-anchor:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    left: 0;
    bottom: 0;
    z-index: 9;
    background: transparent;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.item-anchor {
    color: #111;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    padding: 10px;
}

.nav-list li:nth-child(1) .item-anchor {
    font-size: 22px;
    font-weight: bold;
}

.nav-list2 li:nth-child(7) .item-anchor {
    font-size: 22px;
    font-weight: bold;
}

.nav-list2 li:nth-child(8) .item-anchor {
    font-size: 22px;
    font-weight: bold;
}

.item-anchor:hover,
.item-anchor:focus {
    color: #111;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after {
    width: 100%;
    background: #dcdcdc;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.nav-item {
    margin: 30px auto;
    text-align: center;
}

.animated {
    display: block;
}

.animated:hover .icon-bar,
.animated:focus .icon-bar {
    background-color: #111111;
}

.animated:focus {
    cursor: pointer;
    z-index: 9999;
}

.middle {
    margin: 0 auto;
}

.icon-bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    z-index: 999999;
}

.animated .icon-bar {
    z-index: 999999;
    background-color: #111111;
}

.animated .top {
    -webkit-transform: translateY(5px) rotateZ(45deg);
    -moz-transform: translateY(5px) rotateZ(45deg);
    -ms-transform: translateY(5px) rotateZ(45deg);
    -o-transform: translateY(5px) rotateZ(45deg);
    transform: translateY(5px) rotateZ(45deg);
}

.animated .bottom {
    -webkit-transform: translateY(-5px) rotateZ(-45deg);
    -moz-transform: translateY(-5px) rotateZ(-45deg);
    -ms-transform: translateY(-5px) rotateZ(-45deg);
    -o-transform: translateY(-5px) rotateZ(-45deg);
    transform: translateY(-5x) rotateZ(-45deg);
}

.animated .middle {
    width: 0;
}

@keyframes showNav {
    from {
        top: -100%;
    }
    to {
        top: 0;
    }
}

@-webkit-keyframes showNav {
    from {
        top: -100%;
    }
    to {
        top: 0;
    }
}

@-moz-keyframes showNav {
    from {
        top: -100%;
    }
    to {
        top: 0;
    }
}

@-o-keyframes showNav {
    from {
        top: -100%;
    }
    to {
        top: 0;
    }
}

.showNav {
    -webkit-animation: showNav 1s ease forwards;
    -moz-animation: showNav 1s ease forwards;
    -o-animation: showNav 1s ease forwards;
    animation: showNav 1s ease forwards;
}

@keyframes hideNav {
    from {
        top: 0;
    }
    to {
        top: -100%;
    }
}

@-webkit-keyframes hideNav {
    from {
        top: 0;
    }
    to {
        top: -100%;
    }
}

@-moz-keyframes hideNav {
    from {
        top: 0;
    }
    to {
        top: -100%;
    }
}

@-o-keyframes hideNav {
    from {
        top: 0;
    }
    to {
        top: -100%;
    }
}

.hideNav {
    -webkit-animation: hideNav 1s ease forwards;
    -moz-animation: hideNav 1s ease forwards;
    -o-animation: hideNav 1s ease forwards;
    animation: hideNav 1s ease forwards;
}


@keyframes hideNavUl {
    from {
        opacity: 100;
        top: 0;
    }
    to {
        opacity: 0;
        top: -2000px;
    }
}

@-webkit-keyframes hideNavUl {
    from {
        opacity: 100;
        top: 0;
    }
    to {
        opacity: 0;
        top: -2000px;
    }
}

@-moz-keyframes hideNavUl {
    from {
        opacity: 100;
        top: 0;
    }
    to {
        opacity: 0;
        top: -2000px;
    }
}

@-o-keyframes hideNavUl {
    from {
        opacity: 100;
        top: 0;
    }
    to {
        opacity: 0;
        top: -2000px;
    }
}

.hideNav ul {
    -webkit-animation: hideNavUl .5s ease forwards;
    -moz-animation: hideNavUl .5s ease forwards;
    -o-animation: hideNavUl .5s ease forwards;
    animation: hideNavUl .5s ease forwards;
}

.hidden {
    display: none;
}

