.banner-desktop,
.banner-mobile {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fff;
    overflow: hidden;
}

.banner-desktop {
    background-size: cover;
    aspect-ratio: 16 / 9;
    min-height: 700px;
}

.banner-mobile {
    /*background-size: contain;*/
    background-size:cover;
    background-position: top;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background-color: #fff;
}

.banner-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000;
    z-index: -1;
}

@media (max-width: 400px) {
    .banner-mobile {
        height: 100vh;
        min-height: 640px;
        /*background-size: contain;*/
        background-size:cover;
        background-position: top center;
    }
}

@media (max-width: 576px) {
    .banner-mobile {
        /*height: 100%;*/
        min-height: 590px;
        /*background-size: contain;*/
        background-size:cover;
        background-position: top center;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .banner-mobile {
        height: 100vh;
        /*background-size: contain;*/
        background-size:cover;
        background-position: top center;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .banner-mobile {
        min-height: 90vh;
        background-size: cover;
        background-position: top center;
    }
}

@media (min-width: 901px) and (max-width: 1024px) {
    .banner-mobile {
        min-height: 95vh;
        background-size: cover;
        background-position: center top;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .banner-mobile {
        min-height: 100vh;
        /*background-size: contain;*/
        background-size:cover;
        background-position: center top;
    }
}

@media (min-width: 1281px) and (max-width: 1366px) {
    .banner-desktop {
        aspect-ratio: 16 / 9;
        min-height: 650px;
        background-size: cover;
    }
}

@media (width: 540px) and (height: 720px) {
    .banner-mobile {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 720px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-size: 102% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #fff;
        box-sizing: border-box;
    }

    body, html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background-color: #fff;
    }
}


@media (width: 1024px) and (height: 600px) {
    .banner-desktop {
    aspect-ratio: 16 / 9;
        min-height: 630px;
        background-size: cover;
    }
}

.banner-mobile::before {
    display: none;
}

@media (min-width: 1600px) {
    .banner-desktop {
        aspect-ratio: 21 / 9;
        min-height: 800px;
        background-size: cover;
    }
}

.header-nav {
    position: relative;
    z-index: 999;
    background-color: #fff;
    transition: all 0.3s ease;
}

.header-nav .logos img {
    width: 200px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.header-nav .sidemenu-btn img {
    width: 22px;
    height: auto;
    transition: all 0.3s ease;
}

.mobilie_header_nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobilie_header_nav .mobile_menu_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.mobilie_header_nav .mobile_logo img {
    width: 180px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.mobilie_header_nav .menubar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobilie_header_nav .menubar img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .header-nav .logos img {
        width: 170px;
    }
}

@media (max-width: 992px) {
    .header-nav .logos img {
        width: 150px;
    }
    .header-nav .sidemenu-btn img {
        width: 20px;
    }
    #respMenu {
        font-size: 13px !important;
    }

    .mobilie_header_nav .mobile_logo img {
        width: 160px;
    }

    .mobilie_header_nav .menubar {
        width: 32px;
        height: 32px;
    }

    .mobilie_header_nav .menubar img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .header-nav .logos img {
        width: 130px;
    }

    .mobilie_header_nav .mobile_logo img {
        width: 140px;
    }

    .mobilie_header_nav .menubar {
        width: 30px;
        height: 30px;
    }

    .mobilie_header_nav .menubar img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .header-nav .logos img {
        width: 120px;
    }

    .mobilie_header_nav .mobile_logo img {
        width: 120px;
    }

    .mobilie_header_nav .menubar {
        width: 28px;
        height: 28px;
    }

    .mobilie_header_nav .menubar img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 400px) {
    .mobilie_header_nav .mobile_logo img {
        width: 100px;
    }

    .mobilie_header_nav .menubar {
        width: 26px;
        height: 26px;
    }

    .mobilie_header_nav .menubar img {
        width: 20px;
        height: 20px;
    }
}

.mobilie_header_nav .menubar img {
    position: relative;
    top: 1px;
}

.header-nav #respMenu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

.header-nav #respMenu li a.list-item {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    /*text-transform: uppercase; */
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    background: transparent;
}

.header-nav #respMenu li a.list-item:hover,
.header-nav #respMenu li a.list-item:focus,
.header-nav #respMenu li.active > a.list-item {
    color: #dc3545;
    background: transparent;
    font-weight: 600;
}

.header-nav #respMenu li a.list-item::before,
.header-nav #respMenu li a.list-item::after {
    background: none !important;
    content: none !important;
}

.header-nav .logos {
    display: flex;
    align-items: center;
}

.header-nav .sidemenu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Tablet */
@media (max-width: 1024px) {
    .header-nav #respMenu {
        gap: 25px;
    }

    .header-nav #respMenu li a.list-item {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-nav #respMenu {
        display: none;
    }
}


/* Banner Dots Style */
.banner-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.banner-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-dots .dot.active {
    background-color: #dc3545;
    width: 12px;
    height: 12px;
}



