.top-header {
    background: var(--black);
    padding: 12px 0;
}

.top-header .row {
    align-items: center;
}

.top-header a {
    color: var(--white);
    display: inline-block;
    font-size: 15px;
    line-height: normal;
}

.top-header .top-header-left .top-header-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header .top-header-left ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-header .top-header-right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.top-header .top-header-right .buss_time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header .top-header-right .social_media_link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-header .top-header-right a svg {
    color: var(--white);
    fill: var(--white);
}

.vertical_line {
    position: relative;
}

.vertical_line::after {
    content: "";
    border-right: 1px solid #fff;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: 2;
    width: 1px;
    height: 100%;
}



header {
    background-color: #fff !important;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 15px 4px 22px #00000012;
    position: sticky;
    top: -180px;
    z-index: 999999;
}

header.inverted {
    position: sticky;
    top: 0px;
    z-index: 999999;
    transition: top 1s;
    padding: 10px 0;
    /* background-color: #ffffffe7 !important;
     backdrop-filter: saturate(180%) blur(10px); */

}

header.inverted .logo img {
    height: 54px;
}

header.inverted .menu nav ul>li {
    padding: 8px 15px;
}



header .logo img {
    width: auto;
    height: 70px;
    object-fit: contain;
}

header .logo {
    display: flex;
    width: auto;
}

.size-sidebar-blackbg {
    width: 100%;
    height: 100vh;
    background: #0000004a;
    position: fixed;
    z-index: 999;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* scroll-behavior: revert-layer; */
    backdrop-filter: blur(3px);
    -webkit-overflow-scrolling: touch;
}

.size-sidebar-blackbg.size-sidebar-blackbg-add {
    display: block;
}

html.html_overflow_hiddens {
    overflow: hidden !important;
}


header .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    justify-items: stretch;
    align-items: center;
}

.inquiry-us-div a {
    padding: 6px 6px 6px 20px;
    background: var(--tan);
    color: #fff;
    border-radius: 50px;
    display: flex;
    max-width: max-content;
    align-items: center;
    gap: 15px;
}

header .inquiry-us-div {
    display: flex;
    justify-content: flex-end;

}

header .menu nav ul>li>a:hover {
    color: var(--black);
}


header .contact_infomation_side_bar {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
    padding-bottom: 30px;
    text-align: left !important;
}

header .contact_infomation_side_bar h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 20px;
}

header .menu nav ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    justify-content: center;
}

header .menu nav .dropdown-content ul {
    display: block;
}

header .menu nav .dropdown-content ul li {
    padding: 2px 0;
    margin: 4px 8px;
    padding-left: 18px;
}

header .menu nav .dropdown-content ul li a::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 11px;
    background-image: url(../images/footer-link-right-arrow.svg);
    left: 0;
    top: 6px;
    background-size: contain;
    background-repeat: no-repeat;
}

header .menu nav ul>li {

    list-style: none;
    margin: 0 6px;
    padding: 23px 16px;
    position: relative;
}

header .menu nav ul>li>a {
    display: flex;
    align-items: center;
    color: #000000;
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
    letter-spacing: 0;
    text-decoration: none;

}

header .menu nav ul .nav-link:hover>a {
    color: var(--tan);
    cursor: pointer;
}

header .menu nav ul>li>a svg {
    margin-left: 6px;
    margin-top: 0px;
    width: 16px;
    fill: #373737;
}

header.inverted nav ul>li>a svg {
    fill: var(--black);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0px 4px 16px 0px rgb(26 42 71 / 20%);
    z-index: 999;
    top: 50px;
    padding: 10px;
    border-radius: 0;
    transition: all 2s;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ddd;
    height: 0;
    left: -65px;
}

.dropdown-content a {
    margin-bottom: 8px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    text-decoration: none;
    font-weight: 400;
    color: var(--black);
}

header .menu nav ul>li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    animation: fadein 0.5s ease-in-out;
    transform: translateY(10px);
    display: block;
    height: auto;
}

header.inverted .menu nav ul>li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    animation: fadein 0.5s ease-in-out;
    transform: translateY(-14px);
    display: block;
    height: auto;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@media (min-width:1024px) {
    .sidebar {
        display: none;
    }

    header .main-content {
        display: none;
    }
}

@media (max-width:1420px) {}

@media (max-width:1220px) {
    header .menu nav ul>li {
        margin: 0 4px;
        padding: 6px 8px;
    }

    header .menu nav ul>li>a {
        font-size: 16px;
    }

    header .logo img {
        height: 60px;
    }

}

@media (max-width:1024px) {
    header .container {
        grid-template-columns: 1fr auto;
    }

    header .menu {
        display: none;
    }

    header .inquiry-us-div {
        display: none;
    }

    .sidebar-inner {
        display: block;
    }

    .sidebar {
        display: block;
        width: 90%;
        height: 100vh;
        background-color: #ffffff;
        color: var(--black);
        position: fixed;
        left: -91%;
        top: 0;
        transition: left 0.3s ease;
        padding: 0px;
        z-index: 1000;
        box-shadow: 1px 12px 16px #00000026;
        overflow-y: scroll;
    }

    .sidebar-inner {
        padding: 10px 15px 15px;
    }

    .side_bar_logo_close {
        position: sticky;
        top: 0;
        z-index: 99;
        background: #fff;
        padding: 20px 0;
    }

    .sidebar.show {
        left: 0;
        /* Show the sidebar */
    }

    .main-content {
        padding: 0px;
        margin-left: 0;
        width: auto;
        display: flex;
    }

    #toggle-btn,
    #close-btn {
        font-size: 20px;
        background-color: transparent;
        border: none;
        color: var(--black);
        cursor: pointer;
        padding: 0;
    }

    #close-btn {
        padding: 5px;
    }

    header.inverted #toggle-btn,
    header.inverted #close-btn {
        color: var(--black);
    }

    #close-btn {
        position: absolute;
        top: 10px;
        right: 5px;
        font-size: 24px;
        color: var(--black);
    }

    .ul-reset {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        list-style: none;
    }

    .accordion-wrapper {
        background: var(--white);
        padding-top: 20px;
        margin: auto;
    }

    header .accordion-wrapper>ul>li>a {
        color: var(--black) !important;
        font-size: 16px;
        font-weight: 500;
    }

    .accordion-wrapper ul {
        position: relative;
    }

    .accordion-wrapper>ul>li {
        border-top: 1px solid #e5e5e5;
        text-align: left;
    }

    .accordion-wrapper>ul>li:first-child {
        border-top: none;
    }

    .accordion-wrapper>ul>li:hover,
    .accordion-active {
        background: var(--white);
    }

    .accordion-wrapper>ul>li>a {
        color: rgb(0, 0, 0);
        display: block;
        font-size: 13px;
        padding: 12px 0px;
    }

    .accordion-content>a:after {
        content: " ";
        background-image: url(../images/down_arrow.svg);
        padding-right: 12px;
        position: absolute;
        right: 0;
        width: 21px;
        height: 17px;
        background-size: contain;
        background-repeat: no-repeat;
        transition: all 0.2s;
    }

    .accordion-active>a:after {
        content: " ";
        transform: rotate(180deg);
        background-image: url(../images/down_arrow.svg);
        padding-right: 12px;
        position: absolute;
        right: 0;
        width: 21px;
        height: 17px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .accordion-wrapper ul ul {
        display: none;
    }

    .accordion-wrapper ul ul li {
        border-top: 1px solid #ddd;
    }

    .accordion-wrapper ul ul li:first-child {
        border-top: none;
    }

    .accordion-wrapper ul ul a {
        background: #f4f0ea96;
        color: #000000;
        display: block;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 20px;
    }

    .sidebar .logo img {
        width: auto;
        object-fit: contain;
    }

    header .sidebar .logo {
        display: flex;
        width: 50%;
        margin-left: 0;
    }


    header .container-fluid {
        justify-content: space-between;
    }

    header .logo {
        display: flex;
        width: auto;
    }

    header .logo img {
        width: fit-content;
        height: 55px !important;
        object-fit: contain;
    }





    header {
        border-bottom: 1px solid #f2f2f2;
        padding: 12px 0;
    }



    header .inquiry-us-div-m {
        display: flex !important;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .inquiry-us-div-m a {
        margin-left: 0 !important;
        width: 57% !important;
        padding: 6px 10px 6px 13px;
    }

    header .container {
        justify-content: space-between;
    }

    .contact_infomation_side_bar>ul>li {
        margin-bottom: 18px;
    }

    .contact_infomation_side_bar>ul>li>a {
        display: flex;
        gap: 10px;
    }

    .contact_infomation_side_bar .social_media_link {
        display: flex !important;
        gap: 16px;
        margin-top: 10px;
    }


    .sidebar::-webkit-scrollbar {
        width: 4px;
        height: 12px;
        background-color: transparent;
    }

    .sidebar::-webkit-scrollbar-thumb {
        -webkit-box-shadow: inset 0 0 6px #f5e4c27a;
        background: var(--tan);
    }

    .sidebar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px #f5e4c27a;
        background-color: #f5e4c27a;
    }

    header .accordion-wrapper .accordion-content {
        max-height: max-content;
        padding: 0;
    }
}

@media (max-width:992px) {


    .product-card-wrapper .price-discounts {
        display: none;
    }

    header .logo img {
        width: fit-content;
        height: 44px !important;
        object-fit: contain;
    }

}

@media (max-width:768px) {
    header .accordion-wrapper>ul>li>a {
        font-size: 15px;
    }

    .accordion-content>a:after {
        width: 16px;
        height: 14px;
    }

    .contact_infomation_side_bar ul li span {
        font-size: 14px;
    }

    .contact_infomation_side_bar>ul>li>a {
        font-size: 14px;
    }

    .contact_infomation_side_bar>ul>li {
        margin-bottom: 13px;
    }


}