.mdi-menu {
    font-size: 30px;
    color: #ffffff;
    padding: 25px 16px;
    cursor: pointer;
    display: none;
}
.topnav {
    margin: 0 auto 0 auto;
    background-color: #009a4e;
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.3);
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 20px;
    max-width: 1400px;
    z-index: 3000;
    transition: 0.3s all ease-in;
    padding: 5px 0;
    border-radius: 4px;
}


.topnav  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topnav-left {
    width: 45%;
    float: left;
    text-align: right;
    position: absolute;
    left: 0;
}
.topnav-centered .logo-holder {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.topnav a {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    padding:10px 16px;
    text-decoration: none!important;
    position: relative;
    font-family: 'Nunito', sans-serif;
    transition: 0.3s all ease-in-out;
    display: inline-block;
}
.topnav a.active , .topnav a:hover {
    color: #fbc50b;
}
.topnav-right {
    float: right;
    text-align: left;
    width: 45%;
    position: absolute;
    right: 0;
    z-index: 1;
}

/* Responsive navigation menu (for mobile devices) */
@media screen and (max-width: 1200px) {
    .topnav a {
        font-size: 16px;
    }
    .topnav-centered a {
        margin: 0 auto;
    }
}
@media screen and (min-width: 992px) {
    .topnav-left,.topnav-right {
        display: block!important;
    }
}
@media screen and (max-width: 991px) {
    .topnav {
        display: block;
        text-align: left;
    }

    .topnav a {
        display: block;
        text-align: left;
        font-size: 18px;
    }
    .topnav a:after {
        width: 0;
    }
    .topnav-centered {
        float: none;
        text-align: center !important;
        display: inline-block;
        position: relative;
    }

    .topnav-centered a {
        display: block;
        text-align: right;
    }

    .topnav-left {
        float: none;
        display: none;
        position: relative !important;
        width: 100%;
    }

    .topnav-right {
        float: none;
        display: none;
        position: relative !important;
        width: 100%;
    }

    .mdi-menu {
        display: inline-block;
        float: right;

    }
}
.dropdown-menu {
    background-color: #1c7430;
}
.dropdown-item:hover {
    background-color: transparent;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fbc50b;
    text-decoration: none;
    background-color: transparent;
}

