@media (min-width: 375px) and (max-width: 575.98px) {

    .rwd {

        background-color: orange !important;

    }


}

@media (min-width: 576px) and (max-width: 767.98px) {

    .rwd {

        background-color: green !important;

    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    .rwd {

        background-color: violet !important;

    }


}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .rwd {

        background-color: yellow !important;

    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .rwd {

        background-color:rebeccapurple !important;

    }

}


/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 992px) {

    .navbar {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar .nav-item {
        padding: .5rem 0rem;
        margin: 0 .25rem;
    }

    /* makes the dropdown full width  */
    .navbar .dropdown {
        position: static;
    }

    .navbar .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        /*  height of nav-item  */
        top: 57px;

        display: block;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.3s linear;
        border-radius: 0px !important;
        border: 1px solid var(--border) !important;
        background-color: var(--white);
    }

    /* shows the dropdown menu on hover */
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown .dropdown-menu:hover {
        display: block;
        visibility: visible;
        opacity: 1;
        transition: visibility 0s, opacity 0.3s linear;
    }


}