    .sidebar-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 400px;
        height: 100vh;
        transform: translateX(-100%);
        transition: all 0.5s ease;
        z-index: 99;
    }

    .sidebar-container.active {
        transform: translateX(0px);
    }

    .sidebar-container.h5 {
        width: 100% !important;
    }

    .sidebar-nav .active {
        background-color: #1b455e;
    }

    .sidebar-item a div::after {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        opacity: 0;
        transition: opacity 300ms ease;
    }

    .sidebar-item a:hover div::after {
        opacity: 1;
    }

    .footer-nav li a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0px;
        bottom: 0px;
        opacity: 0;
        background-color: #00a9f4;
    }

    .footer-nav li a:hover::after {
        opacity: 1;
    }

    @media (min-width:1024px) {
        .nav-item::after {
            content: "";
            width: 100%;
            height: 2px;
            background-color: #00a9f4;
            position: absolute;
            left: 0;
            bottom: 0px;
            opacity: 0;
            transition: opacity 300ms ease;
        }

        .nav-item:hover::after {
            opacity: 1;
        }

        .nav-item.active a {
            color: #00a9f4;
        }

        .nav-item.active::after {
            opacity: 1;
        }

    }

    @media (max-width:1024px) {}