/* max-width: 320 sm mobail screen
320px — 480px: Mobile devices.
481px — 768px: iPads, Tablets.
769px — 1024px: Small screens, laptops.
1025px — 1200px: Desktops, large screens.
1201px and more — Extra large screens, TV. */
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

@media screen and (min-width:1201px) {}


@media screen and (min-width:1025px) and (max-width:1200px) {}


@media screen and (min-width:769px) and (max-width:1024px) {
    .nav-link {
        color: #fff;
        /* border: 1px solid red; */
        padding: 0.3rem 0.3rem !important;
        margin: 0.2rem 0.3rem;
        position: relative;
        transition: all .5s ease-in-out;
    }
}

@media screen and (min-width:821px) and (max-width:912px) {}

@media screen and (min-width:769px) and (max-width:820px) {}

@media screen and (min-width:577px) and (max-width:768px) {}


@media screen and (max-width:576px) {
    .logo{
        max-width: 50px !important;
    }
    .bkseven {
        height: 290px;
        padding-bottom: 20px;
    }
    .reserved{
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
    }
    .reserved p,
    .reserved a,
    .reserved span{
        font-size: 12px;
    }
    .nav-link{
        padding: 0.5rem 1rem !important;
        color: #fff !important;
    }
    /* header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 99;
        background: var(--theme-color) !important;
        background: red;
        transition: all .5s ease;
    } */
}

@media screen and (max-width:375px) {}