﻿.nav-responsive {
    margin: 0;
    padding: 0;
}

body .nav-responsive.scrolled {
    background-color: #70bf32 !important;
    transition: background-color 200ms linear;
    z-index: 1;
}
    .nav-responsive .open {
        left: 0;
    }

    .nav-responsive nav {
        background-color: #34495e;
    }

    .nav-responsive .logo {
        display: flex;
    }

    .nav-responsive .toggle {
        display: none;
    }

        .nav-responsive .toggle a {
            text-decoration: none;
            color: white;
            display: block;
            font-size: 25px;
        }

@media (max-width: 992px) {
    .nav-responsive .toggle {
        align-items: center;
        display: flex;
    }
}

.nav-responsive .content-menu {
    width: 100%;
    position: relative;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.nav-responsive ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-responsive ul {
        align-items: center;
        position: absolute;
        flex-direction: column;
        top: 0;
        left: -1000px;
        transition: 0.3s;
        background-color: #70bf32;
        width: 100%;
        height: 100vh;
    }
}

.nav-responsive ul li {
    color: #fff;
}

@media (max-width: 992px) {
    .nav-responsive ul li:first-child {
        padding: 15px 10px;
    }
    .nav-responsive ul li {
        padding: 0.5rem;
        width: 100%;
        border-bottom: 1px solid #dee2e6;
    }
        .nav-responsive ul li:last-child {
            border: none;
        }
}

.nav-responsive ul li a.nav-link {
    text-decoration: none;
    color: #fff;
}

.mobile-nav .row > div{
    position: static !important;
    display: none;
}