﻿button {
    background: none;
    border: none;
}

    button::-moz-focus-inner {
        border: 0;
    }

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

@media(min-width:768px){
    .dropdown-menu {
        top: 90%;
    }
    .nav-list .nav-item .dropdown-menu {
        display: none;
    }

    .nav-list .nav-item:hover .dropdown-menu {
        display: block !important;
    }
}

@media(max-width:767px) {
    .btn-nav:hover {
        cursor: pointer;
    }

        .btn-nav:hover .bar {
            background: #55b9e6;
        }

    .bar {
        display: block;
        height: 5px;
        width: 30px;
        background: #fff;
        margin: 10px auto;
    }

    .btn-nav {
        display: block;
        height: 24px;
        margin: 10px auto;        
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        z-index: 10;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
    }

        .btn-nav:focus {
            outline: none;
        }

    .middle {
        margin: 0 auto;
    }

    .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;
    }

        .animated .arrow-top-r {
            -webkit-transform: rotateZ(-45deg) translateY(11px);
            -moz-transform: rotateZ(-45deg) translateY(11px);
            -ms-transform: rotateZ(-45deg) translateY(11px);
            -o-transform: rotateZ(-45deg) translateY(11px);
            transform: rotateZ(-45deg) translateY(11px);
            width: 25px;
        }

        .animated .arrow-middle-r {
            -webkit-transform: translateX(25px);
            -moz-transform: translateX(25px);
            -ms-transform: translateX(25px);
            -o-transform: translateX(25px);
            transform: translateX(25px);
        }

        .animated .arrow-bottom-r {
            -webkit-transform: rotateZ(45deg) translateY(-11px);
            -moz-transform: rotateZ(45deg) translateY(-11px);
            -ms-transform: rotateZ(45deg) translateY(-11px);
            -o-transform: rotateZ(45deg) translateY(-11px);
            transform: rotateZ(45deg) translateY(-11px);
            width: 25px;
        }

    .nav-container {
        background: rgba(0, 0, 0, 0.9);
        height: 100%;
        position: fixed;
        right: -50%;
        top: 0;
        width: 100%;
    }

    .SidebarNav .nav-container ul {
        margin: 150px 0 0;
        padding: 0;
        list-style: none;
    }

        .SidebarNav .nav-container ul li {
            text-align: left;
            padding: 15px 0 15px 50px;
            cursor: default;
        }

            .SidebarNav .nav-container ul li a {
                font-family: 'FiraSans-Heavy';
                color: #fff;
                font-size: 30px;
                line-height: 100%;
                text-decoration: none;
            }

                .SidebarNav .nav-container ul li a.active,
                .SidebarNav .nav-container ul li a:hover {
                    color: #55b9e6;
                }

    .innerPage .btn-nav {
        padding: 0;
    }

    .nav-list {
        cursor: pointer;
        list-style-type: none;
        top: 0;
        text-align: center;
        position: relative;
        margin: 0;
        padding: 0;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }

    .list-item {
        margin: 20px auto;
        border: 2px solid #fff;
        width: 50px;
        padding: 15px;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
    }

        .list-item:hover {
            border: 2px solid #17BEBB;
            -webkit-transition: all 1s ease;
            -moz-transition: all 1s ease;
            -ms-transition: all 1s ease;
            -o-transition: all 1s ease;
            transition: all 1s ease;
        }

            .list-item:hover .fa {
                color: #17BEBB;
                -webkit-transform: scale(1.5);
                -moz-transform: scale(1.5);
                -ms-transform: scale(1.5);
                -o-transform: scale(1.5);
                transform: scale(1.5);
                -webkit-transition: all 1s ease;
                -moz-transition: all 1s ease;
                -ms-transition: all 1s ease;
                -o-transition: all 1s ease;
                transition: all 1s ease;
            }

        .list-item a {
            color: #fff;
            font-size: 1.7em;
            display: block;
            width: 100%;
        }

    .fa {
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
    }

    .showNav {
        -webkit-animation: showNav .5s ease forwards;
        -moz-animation: showNav 1s ease forwards;
        -o-animation: showNav 1s ease forwards;
        animation: showNav .5s ease forwards;
    }

    .hideNav {
        -webkit-animation: hideNav 1s ease forwards;
        -moz-animation: hideNav 1s ease forwards;
        -o-animation: hideNav 1s ease forwards;
        animation: hideNav 1s ease forwards;
    }

    .showNav {
        opacity: 1;
    }

    .hideNav {
        opacity: 0;
        -webkit-transition: ease-in-out .5s;
        -moz-transition: ease-in-out .5s;
        transition: ease-in-out .5s;
        z-index: -100;
    }
}

@keyframes showNav {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@-webkit-keyframes showNav {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@-moz-keyframes showNav {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@-o-keyframes showNav {
    from {
        right: -100%;
    }

    to {
        right: 0;
    }
}

@keyframes hideNav {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}

@-webkit-keyframes hideNav {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}

@-moz-keyframes hideNav {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}

@-o-keyframes hideNav {
    from {
        right: 0;
    }

    to {
        right: -100%;
    }
}
