/* ------------------------------------------Mobile Media Query----------------------------- */
@media screen and (max-width: 576px) {
    .header-responsive {
        display: none !important;
    }

    .poster-img {
        margin-bottom: 5px;
    }

    .sidebar-logo img {
        max-width: 140px;
    }

    .header-bottom {
        background-color: #111;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0px;
    }

    #navbar-open,
    .navbar-btn {
        display: block;
        color: white;
    }

    .sidebar-logo {
        background: #111;
        padding: 6px;
        border-radius: 5px;
    }


    .footer-logo {
        background-color: #153e76;
    }
}



/* ------------------------------------------Tablet Media Query----------------------------- */

@media screen and (min-width: 577px) and (max-width: 991px) {
    .header-responsive {
        display: none !important;
    }

    .poster-img {
        margin-bottom: 5px;
    }

    .sidebar-logo img {
        max-width: 150px;
    }

    .header-bottom {
        background-color: #111;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0px;
    }

    #navbar-open,
    .navbar-btn {
        display: block;
        color: white;
    }

    .sidebar-logo {
        background: #111;
        padding: 6px;
        border-radius: 5px;
    }


    .footer-logo {
        background-color: #153e76;
    }
}