﻿:root {
    /* Font families */
    --font-text: 'Akzidenz Grotesk', sans-serif;
    --font-title: 'SangBleu Sunrise', serif;
    /* border Radius */
    --border-radius-lg-base: 10px;
    --border-radius-base: 6px;
    --border-radius-sm-base: 3px;
    /* Font sizes */
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 20px;
    /* Font weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    /* color style */
    /* --primary: #015ddd; */
    --body-color: #d4dbd6;
    --primary-color: #876441;
    --secondary-color: #9b7302;
    --gray: #f3f4f8;
    --primary-hover: #6b4620;
    --primary-dark: #503214;
    --rgba-secondary-1: rgba(2, 98, 32, 1);
    --rgba-primary-1: rgba(135, 100, 65, 0.1);
    --rgba-primary-2: rgba(135, 100, 65, 0.2);
    --rgba-primary-3: rgba(135, 100, 65, 0.3);
    --rgba-primary-4: rgba(135, 100, 65, 0.4);
    --rgba-primary-5: rgba(135, 100, 65, 0.5);
    --rgba-primary-6: rgba(135, 100, 65, 0.6);
    --rgba-primary-7: rgba(135, 100, 65, 0.7);
    --rgba-primary-8: rgba(135, 100, 65, 0.8);
    --rgba-primary-9: rgba(135, 100, 65, 0.9);
    --dark-color: #000;
    --light-color: #fff;
    --title-color: #000;
    --text-color: #4a4a4a;
    --bgabout: -webkit-linear-gradient(92deg, #ffe99c, #b4e8ff);
    --bgallher: -webkit-linear-gradient(92deg, #000, #146c93);
    --bgallheranker: -webkit-linear-gradient(92deg, #000, #876441);
}
.dropdown-menu[data-bs-popper] {
    top: unset;
    left: unset;
    margin-top: var(--bs-dropdown-spacer);
}
/* ========================================
   1. Global Reset & Base Styles
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.ml-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

.pl-3 {
    padding-left: 30px;
}
.p-1 {
    padding:13px !important;
}
.pl-2 {
    padding-left: 20px;
}


body {
    width: 100%;
    height: 100%;
    font-family: var(--font-title);
    font-weight: 500;
    font-style: normal;
    overflow-x: hidden;
    font-size: 12px;
}


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

[data-aos] {
    max-width: 100%;
    overflow-x: hidden;
}






.w-30 {
    width: 30%;
}

::selection {
    background-color: var(--primary-color);
    color: var(--light-color);
}

a {
    text-decoration: none;
}

a {
    color: var(--primary-color);
}

    a:hover {
        color: var(--primary-hover);
    }

/* Lists */
ol,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* Links */
a,
.btn-link {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

    a:hover,
    .btn-link:hover {
        color: var(--primary-hover);
    }

/* Form Controls */
.form-control:focus,
.form-control:active {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}


/* ========================================
   2. Layout Spacing Utilities
======================================== */
.content-inner {
    padding: 80px 0 50px;
}

.content-inner2 {
    padding: 60px 0px 80px 0;
}

.content-inner3 {
    padding: 50px 0 30px;
}

.section-head {
    margin-bottom: 40px;
}

    .section-head .sub-title {
        border-bottom: 1px solid var(--title-color);
        display: inline-block;
        color: var(--title-color);
        transition: all 0.5s;
    }

        .section-head .sub-title:hover {
            color: var(--primary-color);
            transition: all 0.5s;
        }

    .section-head .title.text-lg {
        font-size: 100px
    }

    .section-head .title {
        margin-bottom: 5px;
    }

/* ========================================
   3. Typography System
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--title-color);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 5vw, 55px);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(28px, 4vw, 35px);
    margin-bottom: 18px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 25px);
    margin-bottom: 16px;
}

h4 {
    font-size: clamp(18px, 2vw, 20px);
    margin-bottom: 14px;
}

h5 {
    font-size: clamp(16px, 1.8vw, 18px);
    margin-bottom: 12px;
}

h6 {
    font-size: clamp(14px, 1.5vw, 12px);
    margin-bottom: 10px;
}

/* Paragraph */
p {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 12px;
}

    p small {
        font-size: clamp(12px, 1vw, 14px);
    }


/* ========================================
   4. Button System (Improved & Scalable)
======================================== */
.btn {
    position: relative;
    display: inline-block;
    padding: 11px 0px 8px 0px;
    font-size: 14px;
    border-radius: var(--border-radius-base);
    cursor: pointer;
    line-height: 1.1;
    border: 1px solid transparent;
    text-decoration: none;
    border-radius: 0;
    margin: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    /* Button 4 */
    .btn::after,
    .btn::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        transition: 0.5s;
    }

    .btn::after {
        top: -9px;
        left: -9px;
        border-top: 2px solid transparent;
        border-left: 2px solid transparent;
    }

    .btn::before {
        bottom: -9px;
        right: -9px;
        border-bottom: 2px solid transparent;
        border-right: 2px solid transparent;
    }


    .btn:hover::after,
    .btn:hover::before {
        width: calc(100% + 15px);
        height: calc(100% + 15px);
        border-color: var(--primary-hover);
    }

/* Button Sizes */
.btn-lg {
    padding: 12px 28px;
    font-size: 16px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}


/* Primary */
.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
    cursor: pointer;
}

    .btn-primary:hover,
    .btn-primary:active {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
    }

/* Outline Primary */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover,
    .btn-primary:active {
        background-color: var(--primary-hover) !important;
        color: var(--light-color) !important;
        border-color: var(--primary-hover) !important;
    }

/* Secondary */
.btn-secondary {
    background: var(--secondary);
    color: var(--light-color);
    border-color: var(--secondary);
}

    .btn-secondary:hover {
        opacity: 0.9;
    }

.px-30 {
    padding-right: 30px;
    padding-left: 30px;
}

.px-40 {
    padding-right: 40px;
    padding-left: 40px;
}

.px-50 {
    padding-right: 50px;
    padding-left: 50px;
}

.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: var(--primary-color);
}


.pagination {
    gap: 5px;
}

    .pagination .page-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-dark);
        background: #fff;
        transition: all 0.3s ease;
    }

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border: none;
}

    .page-item:first-child .page-link:hover,
    .page-item:last-child .page-link:hover {
        background-color: #fff;
        color: var(--primary-color);
    }

.pagination .page-link:hover,
.pagination .page-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}


.form-select {
    font-size: 12px;
}

/* ==================Loder======================*/
.myspiner12 {
    background-color: #000000b5;
    text-align: center;
    opacity: 0.9;
    z-index: 99999;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    user-select: none;
}

    .myspiner12 img {
        display: inline-block;
        width: 100px;
        height: 100px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

/* ========================================
   2. Top Bar
======================================== */
.top-bar {
    height: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .top-bar p {
        margin: 0;
        font-size: 10px;
    }

    .top-bar .h-social-icon {
        display: flex;
        margin: 0;
        padding: 0;
    }

        .top-bar .h-social-icon li {
            list-style: none;
        }

            .top-bar .h-social-icon li .s-icon {
                font-size: 14px;
                margin-right: 10px;
                color: #fff;
                transition: transform 0.3s ease;
            }

                .top-bar .h-social-icon li .s-icon:hover i {
                    transform: scale(1.2);
                }


/* ========================================
   3. Header
======================================== */
.open .header {
    z-index: 9999;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height, 80px);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .header.scrolled {
        position: fixed;
        top: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
    }

/* Logo */
header .logo {
    height: 100%;
    display: block;
    text-align: center;
}

    header .logo img {
        width: 140px;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.logo:hover {
    transform: scale(1.05);
}



.header .search-icon {
    color: var(--dark-color);
    transition: all 0.5s;
}

    .header .search-icon:hover {
        color: var(--primary-color);
        transition: all 0.5s;
    }

.header .logo-scrolled {
    opacity: 0;
    visibility: hidden;
    height: 80px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/*.scrolled .logo-scrolled {
    opacity: 1 !important;
    visibility: visible !important;
    height: 70px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}*/
    /* ========================================
   5. Banner
======================================== */
    .banner-media {
        position: relative;
        z-index: 1;
        height: 80vh;
    }

    .banner .banner-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner .swiper-button-next,
    .banner .swiper-button-prev {
        width: 35px;
        height: 35px;
        padding: 7px;
        background: transparent;
        border-radius: 50%;
        transition: all 0.5s;
    }

        .banner .swiper-button-next svg,
        .banner .swiper-button-prev svg {
            color: var(--dark-color);
            transition: all 0.5s;
        }

        .banner .swiper-button-next:hover svg,
        .banner .swiper-button-prev:hover svg {
            color: var(--primary-color);
            transition: all 0.5s;
        }
    /* global-start start */


    .seconglobals .global-box .global-media {
        width: 100%;
        position: relative;
        height: 130px;
    }

        .seconglobals .global-box .global-media .img-1 {
            filter: grayscale(0);
            transition: all 0.5s;
        }

    .seconglobals .global-box:hover .global-media .img-1 {
        filter: grayscale(1);
        transition: all 0.5s;
    }

    .global-box .global-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* footer end */
    .marquee {
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
    }

    .marquee-content {
        display: flex;
        width: auto;
        /* animation: marqueeMove 10s linear infinite; */
    }

    .marquee .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .usp-box {
        display: flex;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }


    .marquee-swiper .swiper-slide {
        position: relative;
        padding-left: 25px;
    }

        .marquee-swiper .swiper-slide p {
            margin-bottom: 0;
            position: relative;
            font-size: 10px;
            letter-spacing: 0.8px;
            font-weight: 500;
            color: #000;
            line-height: 1.2;
            text-transform: uppercase;
            font-family: var(--font-title);
        }

        .marquee-swiper .swiper-slide::before {
            content: "";
            position: absolute;
            left: 0px;
            top: 50%;
            transform: translateY(-50%);
            width: 7px;
            height: 7px;
            background-color: var(--primary-color);
            border-radius: 50%;
        }

    .our-catalog .c-nav {
        position: relative;
        margin-top: 50px;
    }

    .our-catalog .swiper-button-next,
    .our-catalog .swiper-button-prev {
        border: 1px solid var(--primary-color);
        padding: 10px;
        border-radius: 100%;
        width: 35px;
        color: var(--primary-color);
        height: 35px;
        transition: all 0.5s;
    }

        .our-catalog .swiper-button-next:hover,
        .our-catalog .swiper-button-prev:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transition: all 0.5s;
        }

    .our-catalog .swiper-button-next {
        left: 50%;
    }

    .our-catalog .swiper-button-prev {
        left: 38%;
    }

    .n-from-btn.btn::after,
    .n-from-btn.btn::before {
        content: none;
    }
    /* ========================================
   2. Top Bar
======================================== */
    .top-bar {
        height: 20px;
        background-color: var(--primary-color);
        color: #fff;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .top-bar p {
            margin: 0;
            text-transform: uppercase;
            font-size: 9px;
            letter-spacing: 1.4px;
        }

        .top-bar .h-social-icon {
            display: flex;
            margin: 0;
            padding: 0;
        }

            .top-bar .h-social-icon li {
                list-style: none;
            }

                .top-bar .h-social-icon li .s-icon {
                    font-size: 14px;
                    margin-right: 10px;
                    color: #fff;
                    transition: transform 0.3s ease;
                }

                    .top-bar .h-social-icon li .s-icon:hover i {
                        transform: scale(1.2);
                    }
    /* Logo transition for scroll */
    /* ========================================
   4. Navigation
======================================== */
    .nav-list {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin: 0;
    }

    .nav-link {
        position: relative;
        font-size: 12px;
        letter-spacing: 0.8px;
        font-weight: 500;
        color: #000;
        line-height: 1.2;
        transition: color var(--duration-short) ease;
        padding: 5px 0 2px;
        text-transform: uppercase;
        font-family: var(--font-title);
    }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background-color: var(--dark-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link:focus::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--dark-color);
        }
    /* Hamburger Menu for Mobile */
   

        .nav-toggle.open {
           
            transform: rotate(-45deg);
        }
    /* ========================================
   6. Hero Big Logo (Optional)
======================================== */
.big-logo {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 450px;
    max-width: 100%;
    max-height: 170px;
    z-index: 999;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: transform 0.1s linear;
    will-change: transform;
    object-fit:contain;
}

        .big-logo.finished {
            opacity: 1;
            visibility: visible;
            position: fixed;
            width: 100%;
            top: 40px !important;
            height: 100px;
            z-index: 1000 !important;
            object-fit: contain;
            transform: translate(-50%, -50%) scale(0.611111) !important;
        }

    .hero-logo-wrapper {
        height: 360px;
        position: relative;
    }
    /* ========================================
   7. Header Form
======================================== */
    .header .h-form {
        position: relative;
    }

        .header .h-form .f-icon {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .header .h-form .form-control {
            border: none;
            padding-right: 35px;
            border-radius: 0;
            border-bottom: 2px solid rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease;
        }

            .header .h-form .form-control:focus,
            .header .h-form .form-control:active {
                border-color: var(--primary-color);
            }
    /* our Catalog start */
    .our-catalog {
        position: relative;
    }

        .our-catalog .section-head.style-1 {
            position: sticky;
            top: 140px;
            margin-bottom: 180px;
        }

        .our-catalog .catalog-box {
            padding: 0;
            position: relative;
            border-radius: 0;
            transition: all 0.5s;
            overflow: hidden;
            color: #000;
            cursor: pointer;
            box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
            height:100%;
        }

            .our-catalog .catalog-box:hover {
                box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
                transition: all 0.5s;
            }

            .our-catalog .catalog-box.style-1 {
                border: 1px solid var(--rgba-primary-2);
            }

                .our-catalog .catalog-box.style-1 .catalog-media {
                    height: 250px;
                }

            .our-catalog .catalog-box .catalog-media {
                width: 100%;
                height: 350px;
                border-radius: 0;
                position: relative;
                text-align: center;
            }

                .our-catalog .catalog-box .catalog-media img {
                    width: 100%;
                    max-width: 100%;
                    height: 100%;
                    object-fit: cover;
                    margin: auto;
                }


                .our-catalog .catalog-box .catalog-media .ct-img.style-1 {
                    width: 100%;
                    height: 100%;
                    max-width: 100%;
                    object-fit: cover;
                    top: 0;
                    left: 0;
                    margin: auto;
                    transform: none;
                }

                .our-catalog .catalog-box .catalog-media .ct-img {
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .our-catalog .catalog-box .catalog-media .ct-1 {
                    opacity: 1;
                    transition: all 0.5s;
                }

                .our-catalog .catalog-box .catalog-media .ct-2 {
                    opacity: 0;
                    transition: all 0.5s;
                }

            .our-catalog .catalog-box:hover .catalog-media .ct-1 {
                opacity: 0;
                transition: all 0.5s;
            }

            .our-catalog .catalog-box:hover .catalog-media .ct-2 {
                opacity: 1;
                transition: all 0.5s;
            }

            .our-catalog .catalog-box .catalog-content {
                padding: 10px;
            }

                .our-catalog .catalog-box .catalog-content .title,
                .our-catalog .catalog-box .catalog-content .content {
                    margin: 0;
                }

                .our-catalog .catalog-box .catalog-content .content {
                    font-size: 10px;
                    color: rgba(0, 0, 0, 0.5);
                }

                .our-catalog .catalog-box .catalog-content .title {
                    font-size: 16px;
                    margin-bottom: 6px;
                }
    /* our Catalog end */
    /* About Us Start */
    .about-us {
        position: relative;
    }

        .about-us .about-media {
            width: 100%;
            background-color: var(--rgba-primary-2);
            height: 500px;
            position: relative;
        }

            .about-us .about-media .a-content {
                position: absolute;
                bottom: 70px;
                left: 50%;
                width: 100%;
                transform: translateX(-50%);
                text-align: center;
            }

            .about-us .about-media.style-1 img {
                width: 100%;
                object-fit: cover;
            }

            .about-us .about-media img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

    .about-media video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    /* product start */
    .product-box-wrapper {
        width: 100%;
        height: 70vh;
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        /* background-attachment: fixed; */
        background-repeat: no-repeat;
        z-index: 1;
        background-position: center;
    }

        .product-box-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--rgba-primary-2);
            width: 100%;
            height: 100%;
            z-index: -1;
        }

    .product-box .product-list-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 18px;
    }

        .product-box .product-list-box .product-list {
            color: rgb(0 0 0 / 70%);
            transition: all 0.5s;
            font-size: 80%;
            position: relative;
        }

            .product-box .product-list-box .product-list:hover,
            .product-box .product-list-box .product-list.active {
                color: var(--primary-color);
                transition: all 0.5s;
            }

            .product-box .product-list-box .product-list::after {
                content: '';
                position: absolute;
                bottom: -2px;
                right: 0;
                width: 0;
                height: 1px;
                background-color: var(--primary-color);
                transition: all 0.5s;
            }

            .product-box .product-list-box .product-list:hover:after,
            .product-box .product-list-box .product-list.active:after {
                width: 100%;
                right: auto;
                left: 0;
                transition: all 0.5s;
            }

    .product-list-box span {
        cursor: pointer;
    }
    /* our event start */
    .our-event .our-event-box .event-media {
        width: 100%;
        height: 100%;
        height: 250px;
        overflow: hidden;
        background-color: var(--rgba-primary-1);
        border-radius: var(--border-radius-base) !important;
    }

        .our-event .our-event-box .event-media img {
            width: 100%;
            height: 100%;
            transition: all 1.5s;
        }

    .our-event .our-event-box:hover .event-media img {
        transform: scale(1.3);
        transition: all 1.5s;
    }

    .our-event .our-event-box {
        padding: 15px;
    }

        .our-event .our-event-box .event-content {
            padding: 20px 30px;
            text-align: center;
        }


            .our-event .our-event-box .event-content p {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
                overflow: hidden;
            }

            .our-event .our-event-box .event-content a {
                font-size: 10px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                font-weight: 500;
            }
    /* our event end */
    /* portfolio section start */
    .portfolio-section .portfolio-media {
        width: 100%;
        height: 300px;
        position: relative;
        overflow: hidden;
    }

        .portfolio-section .portfolio-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }

        .portfolio-section .portfolio-media:hover img {
            transform: scale(1.3);
            transition: all 0.5s;
        }
    /* portfolio section end */
    /* global-start start */
    .global-box .global-media {
        width: 100%;
        position: relative;
        height: 250px;
    }

        .global-box .global-media img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .global-box .global-media .img-1 {
            filter: grayscale(0.8);
            transition: all 0.5s;
        }

    .global-box:hover .global-media .img-1 {
        filter: grayscale(0);
        transition: all 0.5s;
    }

    .global-box .global-content {
        padding: 15px;
        /* display: flex; */
        text-align: center;
    }

        .global-box .global-content .g-flag {
            width: 30px;
            min-width: 30px;
            height: auto;
            margin: auto;
            margin-bottom: 10px;
        }

            .global-box .global-content .g-flag img {
                width: 100%;
                height: auto;
            }

        .global-box .global-content .title {
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .global-box .global-content .g-info a {
            font-size: 12px;
            line-height: 16px;
            color: var(--title-color);
            transition: all 0.5s;
            display: inline-flex;
            margin-bottom: 5px;
        }

            .global-box .global-content .g-info a:hover {
                color: var(--primary-color);
                transition: all 0.5s;
            }
    /* global-start end */

    .about-media.swiper .swiper-slide {
        opacity: 0 !important;
    }

        .about-media.swiper .swiper-slide.swiper-slide-active {
            opacity: 1 !important;
        }
    /* footer start */


    .footer {
        position: relative;
        background-color: rgb(255 255 255 / 10%);
        z-index: 1;
        padding: 10px 0;
        border-top: 2px solid var(--primary-color);
    }

        .footer .footer-top .footer-box .footer-logo {
            width: 130px;
            height: 100%;
            margin-bottom: 10px;
        }

            .footer .footer-top .footer-box .footer-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .footer .footer-top .footer-box .footer-link-list {
            display: flex;
            gap: 0px 28px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer .newsletter-section {
            border-bottom: 1px solid var(--rgba-primary-5);
        }

        .footer .footer-box {
            margin-bottom: 30px;
            text-align: center;
        }

            .footer .footer-box .footer-head {
                margin-bottom: 10px;
                padding-bottom: 10px;
                font-weight: 600;
            }

            .footer .footer-box .footer-link-box .footer-link {
                border: none;
                background-color: transparent;
                outline: 0px;
            }

            .footer .footer-box .form-group .footer-link {
                position: absolute;
                right: 0;
                margin: 10px !important;
            }


            .footer .footer-box .footer-link-box .footer-link:hover a {
                color: var(--primary-color);
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link a:after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 0;
                height: 1px;
                background-color: var(--primary-color);
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link:hover a:after {
                width: 100%;
                right: auto;
                left: 0;
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link a {
                font-size: 14px;
                color: var(--title-color);
                margin-bottom: 10px;
                display: inline-block;
                position: relative;
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link:hover a {
                color: var(--primary-color);
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link a:after {
                content: '';
                position: absolute;
                bottom: 0;
                right: 0;
                width: 0;
                height: 1px;
                background-color: var(--primary-color);
                transition: all 0.5s;
            }

            .footer .footer-box .footer-link-box .footer-link:hover a:after {
                width: 100%;
                right: auto;
                left: 0;
                transition: all 0.5s;
            }

        .footer .footer-bottom {
            padding: 10px 0;
            border-top: 1px solid var(--rgba-primary-5);
        }

            .footer .footer-bottom p {
                margin-bottom: 0;
            }

            .footer .footer-bottom .footer-content {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .footer .footer-bottom .social-icon {
                display: flex;
                gap: 20px;
                justify-content: end;
            }

                .footer .footer-bottom .social-icon li {
                    /* margin-right: 10px; */
                }

            .footer .footer-bottom .f-icon {
                font-size: 16px;
                transition: all 0.5s;
                color: var(--title-color);
                position: relative;
                z-index: 1;
                display: inline;
            }


        .footer p {
            margin-bottom: 0;
        }

        .footer .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    footer .s-content {
        display: flex;
        align-items: center;
        justify-content: center !important;
        margin-bottom: 40px;
    }

    .footer .social-icon {
        display: flex;
        gap: 20px;
        justify-content: end;
    }

    .footer .f-icon {
        font-size: 16px;
        transition: all 0.5s;
        color: var(--title-color);
        position: relative;
        z-index: 1;
        display: inline;
    }

        .footer .f-icon .tooltip {
            padding: 6px 7px;
            border-radius: var(--border-radius-sm-base);
            color: var(--light-color);
            background-color: var(--primary-color);
            opacity: 0;
            line-height: 1;
            font-size: 12px;
            position: absolute;
            top: -25px;
            left: 50%;
            transition: all 0.5s;
            z-index: -1;
            transform: translateX(-50%);
        }

            .footer .f-icon .tooltip:after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                width: 8px;
                height: 8px;
                background-color: var(--primary-color);
            }

        .footer .f-icon:hover .tooltip {
            padding: 6px 7px;
            opacity: 1;
            top: -35px;
            transition: all 0.5s;
        }

        .footer .f-icon:hover {
            transform: scale(1.1);
            color: var(--primary-color);
            transition: all 0.5s;
        }

    .footer .footer-box .form-group {
        position: relative;
    }

        .footer .footer-box .form-group .btn::after,
        .footer .footer-box .form-group .btn:before {
            content: none;
        }

        .footer .footer-box .form-group .form-control {
            padding-right: 100px;
            line-height: 0;
            border: none;
            border-bottom: 2px solid rgba(0, 0, 0, 0.3);
            border-radius: 0;
        }

            .footer .footer-box .form-group .form-control:active,
            .footer .footer-box .form-group .form-control:focus {
                border-color: var(--primary-color);
            }
    /* footer end */

    .usp-box li {
        position: relative;
        padding-left: 25px;
        margin-left: 25px;
    }

        .usp-box li p {
            margin-bottom: 0;
            line-height: 8px;
            letter-spacing: 1.2px;
            color: var(--title-color);
            text-transform: uppercase;
            font-size: 10px;
            text-wrap: nowrap;
            font-weight: 600;
        }

        .usp-box li::before {
            content: "";
            position: absolute;
            left: 0%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 5px;
            height: 5px;
            background-color: var(--primary-color);
            border-radius: 50%;
        }

    .our-catalog .c-nav {
        position: relative;
        margin-top: 50px;
    }

    .our-catalog .swiper-button-next,
    .our-catalog .swiper-button-prev {
        border: 1px solid var(--primary-color);
        padding: 10px;
        border-radius: 100%;
        width: 35px;
        color: var(--primary-color);
        height: 35px;
        transition: all 0.5s;
    }

        .our-catalog .swiper-button-next:hover,
        .our-catalog .swiper-button-prev:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transition: all 0.5s;
        }

    .our-catalog .swiper-button-next {
        left: 50%;
    }

    .our-catalog .swiper-button-prev {
        left: 38%;
    }

    .n-from-btn.btn::after,
    .n-from-btn.btn::before {
        content: none;
    }
    /* product list start */
    .our-catalog .product-top-box {
        margin-bottom: 20px;
        padding: 10px 20px 20px;
        position: sticky;
        top: 80px;
        background-color: #fff;
        z-index: 999;
    }


    .pt-right {
        display: flex;
        align-items: center;
        height: 30px;
        width: 30px;
        cursor: pointer;
        justify-content: center;
        background-color: #876441;
        border-radius: var(--border-radius-base);
        border: 1px solid #876441;
        position: fixed;
        bottom: 15px;
        z-index: 999;
        right: 15px;
    }

        .pt-right i {
            color: #fff;
            font-size: 14px;
        }

        .pt-right:hover {
            background-color: #fff;
            border: 1px solid #876441;
        }

            .pt-right:hover i {
                color: #876441;
            }

    .pt-toggle {
        position: relative;
        width: 25px;
        height: 2px;
        background: #000;
        transition: 0.3s ease;
    }

        .pt-toggle::before,
        .pt-toggle::after {
            content: "";
            position: absolute;
            height: 2px;
            background: #000;
            left: 0;
            transition: 0.3s ease;
        }

        .pt-toggle::before {
            width: 80%;
            top: -6px;
        }

        .pt-toggle::after {
            width: 60%;
            top: 6px;
        }

    .pt-right:hover .pt-toggle {
        background: var(--primary-hover);
    }

        .pt-right:hover .pt-toggle::before,
        .pt-right:hover .pt-toggle::after {
            background: var(--primary-hover);
            width: 100%;
        }

    .product-p-list {
        position: relative;
    }
    /* product list end */

    .footer .footer-box .footer-link-box .form-group .footer-link a:after {
        width: 100%;
        background-color: var(--dark-color);
    }

    .footer .footer-box .footer-link-box .form-group .footer-link:hover a:after {
        width: 100%;
        background-color: var(--primary-color);
    }



    .marquee-swiper {
        width: 100%;
        overflow: hidden;
    }

        .marquee-swiper .swiper-wrapper {
            transition-timing-function: linear !important;
        }

        .marquee-swiper .swiper-slide {
            width: auto;
            padding: 0 40px;
            white-space: nowrap;
            font-size: 10px;
            line-height: 10px;
            text-transform: uppercase;
            color: var(--title-color);
            font-weight: 600;
        }

    .instagram {
        color: #E1306C !important;
    }

    .instagram-bg,
    .footer .f-icon .tooltip.instagram-bg:after {
        background-color: #E1306C !important;
    }

    .facebook {
        color: #1877F2 !important;
    }

    .facebook-bg,
    .footer .f-icon .tooltip.facebook-bg:after {
        background-color: #1877F2 !important;
    }

    .apple {
        color: #1d9bee !important;
    }

    .apple-bg,
    .footer .f-icon .apple-bg.tooltip:after {
        background-color: #1d9bee !important;
    }

    .android {
        color: #38bdff !important;
    }

    .android-bg,
    .footer .f-icon .android-bg.tooltip:after {
        background-color: #38bdff !important;
    }


    .our-catalog.product-p-list .p-list-bottom {
        display: flex;
        align-items: center;
        justify-content: end;
        margin-top: 20px;
        padding-top: 20px;
    }

        .our-catalog.product-p-list .p-list-bottom .list-bottom-number {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .our-catalog.product-p-list .p-list-bottom .list-bottom-number .l-content {
                margin-right: 10px;
                padding-right: 10px;
                margin-bottom: 0;
                position: relative;
            }

                .our-catalog.product-p-list .p-list-bottom .list-bottom-number .l-content.style-1:after {
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 50%;
                    width: 1px;
                    background-color: var(--primary-color);
                    height: calc(100% + 10px);
                    transform: translateY(-50%) rotate(15deg);
                }

    .brdcamp-bar {
        background: linear-gradient(130deg, rgb(203 160 118 / 31%) 0%, rgb(255 237 186 / 34%) 50%, rgb(245 237 215) 100%);
    }

    .brdcamp {
        position: relative;
        padding: 40px 0px;
    }

        .brdcamp h2 {
            text-align: center;
            color: var(--primary-color);
            font-size: 42px;
            margin: 0px;
            text-transform: capitalize;
        }

    @-webkit-keyframes hue {
        from {
            -webkit-filter: hue-rotate(0deg)
        }

        to {
            -webkit-filter: hue-rotate(-360deg)
        }
    }

    .bradcamper {
        padding: 10px 0px;
        background: linear-gradient(130deg, rgb(203 160 118 / 31%) 0%, rgb(255 237 186 / 34%) 50%, rgb(245 237 215) 100%);
    }

        .bradcamper p {
            text-align: center;
            color: #000;
            font-size: 16px;
            margin-bottom: 0px;
            background-image: var(--bgallher);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-animation: 10s linear infinite hue;
        }

            .bradcamper P a {
                color: #876441 !important;
                background-image: var(--bgallheranker);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                -webkit-animation: 10s linear infinite hue;
            }

                .bradcamper P a:hover {
                    color: var(--primary-color) !important;
                    cursor: pointer;
                }

    .f-icon img {
        width: 16px;
        height: 16px;
        margin-bottom: 4px;
    }
    /* ===============================
   Base Container
================================ */
    .container {
        width: 100%;
        padding-inline: 15px;
        margin-inline: auto;
    }



    .filterheding {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
        padding-left: 10px;
    }

        .filterheding h5 {
            font-size: 21px;
            color: var(--primary-color);
            margin-bottom: 0px;
            border-bottom: 1px solid;
            padding-bottom: 5px;
        }
    /* width */
    ::-webkit-scrollbar {
        width: 5px;
    }
    /* Track */
    ::-webkit-scrollbar-track {
        background: #ffff;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: var(--primary-color);
    }
        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #ffff;
        }

    .allfilter .accordion-button:not(.collapsed) {
        padding: 10px;
        background-color: #fff;
        color: #6c5a1a;
    }

    .allfilter .accordion-button {
        padding: 10px;
        background-color: #fff;
    }

    .allfilter .accordion-item {
        border: 0px;
        border-bottom: 1px solid #dbd5d5;
    }

    .allfilter .accordion-body {
        padding: 10px;
    }

        .allfilter .accordion-body ul li {
            padding: 5px 0px;
            font-size: 14px;
        }

            .allfilter .accordion-body ul li label {
                margin-left: 5px;
            }

    .allfilter .accordion {
        --bs-accordion-btn-icon-width: 11px;
    }

    .allfilter .accordion-button::after {
        background-image: url('../images/pluse.svg');
        width: 11px;
        height: 11px;
    }


    .allfilter .accordion-button:focus {
        box-shadow: 0px;
    }

    .allfilter .accordion-button:not(.collapsed) {
        box-shadow: none;
    }

        .allfilter .accordion-button:not(.collapsed)::after {
            background-image: url('../images/minus.svg') !important;
            width: 11px;
            height: 11px;
        }

    .allsideimages ul li {
        margin-bottom: 5px;
        margin-right: 8px;
        display: inline-flex;
    }

    .allsideimages .smallimage {
        width: 100px;
        height: 100px;
        border: 1px solid #e3d2c1;
        cursor: pointer;
    }

        .allsideimages .smallimage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .fullimage {
        width: 100%;
        height: 400px;
    }

        .fullimage img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: zoom-in;
            transition: 0.3s;
        }

            .fullimage img:hover {
                transform: scale(1.03);
            }

    .productpage {
        padding: 50px 0px;
    }


    .img-modal {
        position: fixed;
        inset: 0;
        background: #c59264e3;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        cursor: zoom-out;
        animation: fadeIn 0.3s ease;
    }

        .img-modal img {
            max-width: 50%;
            max-height: 98%;
        }
    /* Close Button */
    .close-btn {
        position: absolute;
        top: 0px;
        right: 30px;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        font-weight: bold;
    }
        /* Close Button */
        .close-btn:hover {
            color: var(--secondary-color);
        }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .top-data {
        border-bottom: 1px solid #c1af9d;
        padding-bottom: 15px;
    }

        .top-data h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .top-data ul li {
            font-size: 13px;
            margin-bottom: 10px;
        }

            .top-data ul li strong {
                font-weight: 800;
                display: inline-flex;
                width: 120px;
            }

            .top-data ul li span {
                font-weight: 400;
                margin-left: 4px;
            }

    .top-data2 ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

        .top-data2 ul li strong {
            font-weight: 800;
            display: inline-flex;
            width: 120px;
        }

        .top-data2 ul li span {
            font-weight: 400;
            margin-left: 4px;
        }

    .priceare {
        padding: 30px 0px 30px 0px;
        border-bottom: 1px solid #c1af9d;
    }

        .priceare h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

    .productdetail .btn {
        margin: 0px;
    }

    .priceare h3 span {
        color: var(--primary-color);
    }

    .priceare p {
        font-size: 16px;
        color: #000;
        margin-bottom: 0px;
    }

        .priceare p strong {
            font-weight: 800;
            display: inline-flex;
            width: 120px;
        }

    .pt-left ul li {
        display: inline-flex;
        align-items: center;
        margin-left: 10px;
        font-size: 14px;
        gap: 20px;
    }



    .smallitems {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .smallitems span {
            font-size: 12px;
            margin-bottom: 4px;
        }

            .smallitems span strong {
                text-transform: uppercase;
            }

    .phoneopen {
        display: none;
    }

    .filterheader {
        position: sticky;
        top: 80px;
        padding: 5px 10px 12px 10px;
        background-color: #ffff;
        z-index: 999;
    }

    .priceon {
        font-size: 14px;
        color: var(--primary-color);
    }

        .priceon strong {
            color: #000;
            font-size: 12px;
        }
    /*----------------- wishlist_heart ---------------*/
    .wishlist_heart {
        --fuschia: #cbbd8c;
        --size: 20px;
        width: var(--size);
        height: var(--size);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: var(--size);
        color: transparent;
        -webkit-text-stroke: 2px var(--fuschia);
        animation: beat_off 300ms forwards;
    }

        .wishlist_heart._active {
            color: var(--fuschia);
            -webkit-text-stroke: 0;
            animation: beat_on 400ms forwards;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

    @keyframes beat_on {
        0% {
            transform: scale(1);
        }

        20% {
            transform: scale(1.1);
        }

        50% {
            transform: scale(0.5);
        }

        80% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes beat_off {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.4);
        }

        80% {
            transform: scale(0.9);
        }

        100% {
            transform: scale(1);
        }
    }

    .wishicon {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 9;
    }

    .pt-left ul {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .mini-w {
        min-width: 100px;
    }

    .mini-w2 {
        min-width: 120px;
    }


    .stonepart {
        margin-top: 10px;
    }

        .stonepart h4 {
            margin-bottom: 8px;
            font-size: 20px;
        }

    .minidetail ul li {
        font-size: 13px;
        padding: 6px 0px;
        text-align: right;
    }

        .minidetail ul li strong {
            display: inline-flex;
            width: 120px;
            float: left;
        }

    .hedingppro {
        display: flex;
        align-items: center;
        justify-content: end;
        margin: 10px 0px;
    }

    .normal-slider .item {
        margin: 5px;
    }

    .our-catalog .normal-slider .catalog-box .catalog-media {
        width: 100%;
        height: 284px;
    }

    .pull-left,
    .pull-right {
        text-align: center;
        position: absolute;
        top: 100%;
        color: #000;
        z-index: 9;
        width: 40px;
        height: 40px;
        font-size: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        color: #876441;
        border: 1px solid #876441;
        margin-top: 30px;
    }

        .pull-left:hover,
        .pull-right:hover {
            background-color: #876441;
            color: #fff;
            border: 1px solid #876441;
        }

    .pull-left {
        left: 46%;
    }

    .pull-right {
        right: 46%;
    }

    .paddingprodu {
        padding: 90px 0px 90px 0px;
    }

        .paddingprodu h2 {
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 20px;
            font-size: 26px;
            letter-spacing: 1px;
        }

    .recent-slider .item {
        margin: 5px;
    }

    .our-catalog .recent-slider .catalog-box .catalog-media {
        width: 100%;
        height: 350px;
    }

    .catalog-box a {
        color: #000;
    }

    .small-left,
    .small-right {
        border: 0px;
        background-color: transparent;
        font-size: 18px;
        position: absolute;
        top: 39%;
        z-index: 99;
        color: #e3d2c1;
    }

        .small-left:hover,
        .small-right:hover {
            color: var(--secondary-color);
        }


    .small-left {
        left: 0px;
    }

    .small-right {
        right: 0px;
    }

    .small-left.filetrslid {
        left: -15px;
    }

    .small-right.filetrslid {
        right: -15px;
    }

    .filetrslid {
        top: 15px;
        font-size: 14px;
        color: var(--primary-color);
    }

    .allcontent {
        margin-top: 0px;
        position: relative;
    }

        .allcontent .areahedings {
            padding: 15px;
            border-bottom: 1px solid #87644166;
            background-color: #87644130;
        }

    .areahedings h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .areahedings p {
        font-size: 14px;
        margin-bottom: 0px;
        color: #000;
    }

    .undercontent {
        padding: 15px 15px 15px 15px;
        text-align: center;
    }

        .undercontent p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #000;
            font-weight: 500;
        }

            .undercontent p a {
                font-weight: 400;
                color: #876441;
                margin-left: 10px;
            }

                .undercontent p a:hover {
                    color: var(--secondary-color);
                }


                .undercontent p a img {
                    width: 28px;
                    height: 28px;
                }

        .undercontent h3 {
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 5px;
            color: #876441;
        }
    /* about use page */
    .aboutuspage {
        padding: 50px 0px;
    }

    .overview-sec h2 {
        text-transform: uppercase;
    }

    .overview-sec p {
        font-size: 14px;
        color: #000;
        padding-right:40px;
    }

    .overview-sec h3 {
        font-size: 20px;
        color: #000;
        margin-bottom: 25px;
    }

    .overview-img {
        width: 100%;
        height: auto;
    }

        .overview-img img {
            width: 100%;
            height: 100%;
            border: 1px solid #e7e7e7;
        }

    .mission {
        padding: 50px 0px 30px 0px;
    }

    .mission-content {
        padding: 0px 0px 30px 0px;
        text-align: center;
        width: 70%;
        margin: 0px auto auto;
    }

        .mission-content h2 {
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .mission-content p {
            font-size: 14px;
            color: #000;
        }

    .corevalue img {
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

        .corevalue img:hover {
            transform: scale(1.02);
        }

    .Infrast-content p {
        font-size: 14px;
        color: #000;
    }

    .corevalue {
        padding: 70px 0px;
    }

    .fiterdrop {
        padding: 12px 0px 0px 0px;
    }

        .fiterdrop .dropdown .dropdown-toggle {
            border: 0px !important;
            border-bottom: 1px solid #dfd5cc !important;
            width: 100%;
            text-align: left;
            padding: 2px 5px 2px 1px;
            background-color: #fff;
            outline: 0px;
        }

            .fiterdrop .dropdown .dropdown-toggle::after {
                float: right;
                margin-top: 8px;
            }


        .fiterdrop .dropdown-menu {
            padding: 0px;
            border-radius: 0px;
            z-index: 9999;
            --bs-dropdown-min-width: 100% !important;
        }

            .fiterdrop .dropdown-menu li {
                cursor: pointer;
                border-bottom: 1px solid #fff;
            }

                .fiterdrop .dropdown-menu li:hover {
                    border-bottom: 1px solid #f8f0dc;
                }

    .opetionfilter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: #000;
        padding: 5px;
        gap: 10px;
        background-color: #fff;
        cursor:pointer;
    }

        .opetionfilter input {
            width: 12px;
            height: 12px;
            outline: 0px;
        }

        .opetionfilter input {
            accent-color: var(--primary-color);
        }

    .mniinp {
        display: flex;
        align-items: center;
    }

    .opetionfilter:hover {
        background-color: #f8f0dc;
        color: var(--primary-color);
    }

    .fillarea {
        padding: 12px 0px 0px 0px;
    }

        .fillarea label {
            font-weight: 400 !important;
            font-size: 12px !important;
            letter-spacing: 0.6px;
            margin: 0;
            position: absolute;
            bottom: 4px;
            transition: 0.3s ease;
            z-index: 99;
        }

        .fillarea .form-select {
            height: 25px;
            padding: 5px 30px 5px 5px;
            border: 0;
            position: relative;
            border-bottom: 1px solid #dfd5cc;
            border-radius: 0;
        }
            /* Focus hone par */
            .fillarea .form-select:focus + label {
                bottom: 20px;
            }
            /* Jab value select ho jaye */
            .fillarea .form-select:valid + label {
                bottom: 20px;
            }

    .filter-slider .slick-track {
        margin-left: inherit !important;
    }

    .fillarea2 {
        padding: 12px 0px 0px 0px;
    }

        .fillarea2 .form-select {
            height: 25px;
            padding: 5px 30px 5px 5px;
            border: 0;
            position: relative;
            border-bottom: 1px solid #dfd5cc;
            border-radius: 0;
            z-index: 999;
            background-color: transparent;
        }

        .fillarea2 label {
            font-weight: 400 !important;
            font-size: 12px !important;
            letter-spacing: 0.6px;
            margin: 0;
            position: absolute;
            bottom: 15px;
            transition: 0.3s ease;
            z-index: 99;
        }
        /* Focus hone par */
        .fillarea2 .form-select:focus + label {
            bottom: 30px;
        }

        .fillarea2 .form-select:valid + label {
            bottom: 30px;
        }

    .productbrek {
        position: sticky;
        top: 85px;
    }

    .areatab {
        padding: 30px 0px 15px 0px;
        border-bottom: 1px solid #c1af9d;
    }

        .areatab h2 {
            font-size: 20px;
            margin-bottom: 8px;
            text-transform: uppercase;
            color: var(--primary-color);
        }

        .areatab .nav-pills .nav-link {
            font-size: 12px;
            color: var(--bgallher);
        }

            .areatab .nav-pills .nav-link:hover {
                color: var(--secondary-color);
                background-color: #fff;
            }

            .areatab .nav-pills .nav-link.active {
                color: var(--secondary-color);
                background-color: #fff;
            }

                .areatab .nav-pills .nav-link.active::after {
                    width: 100%;
                }

            .areatab .nav-pills .nav-link::after {
                background-color: var(--secondary-color);
            }


    .undercontent h2 {
        font-size: 18px;
        padding: 5px 10px;
    }

    .navbar {
        height: 80px;
    }

    header .logo img {
        width: 140px;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }

    .jscleft {
        justify-content: end;
    }
    /* login and  registration form  */
    .partlogim {
        padding: 40px 0px 20px 0px;
        border-bottom: 1px solid #dedfdf;
    }

    .formarea {
        padding: 40px 0px;
    }

    .seclogins {
        padding: 40px 0px 80px 0px;
    }

    .loginimage {
        text-align: center;
    }

        .loginimage h2 {
            font-size: 24px;
            margin-bottom: 0px;
            color: var(--primary-color);
        }

    .rgisterhed {
        text-align: center;
    }

        .rgisterhed h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .rgisterhed p {
            font-size: 16px;
        }

    .form-input {
        position: relative;
    }

        .form-input input,
        .form-input select,
        .form-input textarea {
            font-size: 12px;
            border: 0px;
            border-bottom: 1px solid #dbcfc4;
            border-radius: 0px;
            color: #000;
            width: 100%;
            padding: 5px 0px;
            outline: 0px;
        }

        .form-input label {
            font-size: 12px;
            color: #000;
            position: absolute;
            top: 7px;
            left: 0;
            transition: 0.3s ease;
            z-index: 99;
            pointer-events: none;
            text-transform: uppercase;
        }

        .form-input input:focus + label,
        .form-input select:focus + label,
        .form-input select:valid + label,
        .form-input textarea:focus + label {
            top: -13px;
            font-size: 12px;
        }
        /* Jab input me value ho */
        .form-input input:not(:placeholder-shown) + label,
        .form-input textarea:not(:placeholder-shown) + label {
            top: -13px;
            font-size: 12px;
        }


        .form-input textarea:focus + label {
            top: -13px;
            font-size: 12px;
        }

    .iocn {
        position: absolute;
        right: 0px;
        top: 6px;
        background-color: #fff;
        z-index: 999;
    }

        .iocn i {
            font-size: 12px;
            color: #000;
        }


    .lastline {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .lastline span {
            font-size: 14px;
            margin-right: 4px;
        }

        .lastline a {
            font-size: 14px;
            position: relative;
            padding-bottom: 5px;
            color: var(--secondary-color);
        }

            .lastline a:hover::after,
            .lastline a:focus::after {
                width: 100%;
            }

            .lastline a::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 1px;
                background-color: var(--secondary-color);
                transition: width 0.3s ease;
            }

    .form-control[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer;
        height: 30px;
        padding-top: 4px;
    }

    .upload-input input:not(:placeholder-shown) + label {
        top: -25px;
        font-size: 12px;
    }

    .hedingforms {
        margin-top: 30px;
        margin-bottom: 15px;
    }

        .hedingforms h3 {
            font-size: 15px;
            color: var(--primary-color);
        }

        .hedingforms h2 {
            font-size: clamp(28px, 4vw, 35px);
            text-transform: uppercase;
        }

    .capytchaimage {
        width: 100%;
        height: 34px;
    }

        .capytchaimage img {
            width: 100%;
            height: 100%;
        }

    .refreshser {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

        .refreshser i {
            font-size: 18px;
            cursor: pointer;
            color: #000;
        }

            .refreshser i:hover {
                transition: transform 0.3s ease;
                transform: rotate(160deg);
            }

    .aboutinfras ul li {
        font-size: 13px;
        color: #000;
        margin-bottom: 15px;
    }

    .btn-what {
        padding: 6px 10px;
        text-align: center;
        display: flex;
        height: 30px;
        justify-content: center;
        background-color: #50b500;
        color: #fff;
        width: 40%;
        margin: auto;
        align-items: center;
        cursor: pointer;
        gap: 5px;
        font-size: 13px;
        border: 1px solid #50b500;
    }

        .btn-what:hover {
            color: #50b500;
            background-color: #fff;
        }

        .btn-what span {
            margin-bottom: 0px;
            margin-top: 3px;
        }

    .puritytimeline-img {
        position: sticky;
        top: 88px;
        padding: 0px 10px;
    }

    .puritytimeline {
        padding: 10px 40px;
    }

    .timelinesec {
        padding: 70px 0px;
    }

    .contputime {
        padding: 25px 0px 10px 0px;
        text-align: center;
        position: relative;
        border: 1px solid #ffded0;
        margin-bottom: 25px;
        background-color: #fff;
    }

        .contputime h2 {
            font-size: 14px;
            color: #000000;
            margin-bottom: 0px;
            position: absolute;
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #ffffff;
            width: 60px;
            height: 37px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contputime h3 {
            font-size: 14px;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .contputime p {
            font-size: 14px;
            color: #000;
            margin-top: 10px;
        }

    .imageser {
        width: 100%;
        height: auto;
    }

        .imageser img {
            width: 100%;
            height: 100%;
        }

    .usename {
        width: 24px;
        height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        background-color: #f7e5d3;
        color: #000000;
        border-radius: 2px;
        border: 1px solid #d5ac84;
    }

        .usename:hover {
            background-color: #fff;
            color: var(--primary-color);
        }

    .user-login {
        right: 0px !important;
        left: auto !important;
        padding: 0px 0px;
        top: 105%;
        border-radius: 0px;
    }

    .mydrop .dropdown-menu[data-bs-popper] {
        top: 112%;
        margin-top: 0px;
    }

    .user-login li {
        padding: 0px 0px;
    }

        .user-login li a {
            background-color: #fff;
            color: var(--primary-color);
            padding: 3px 8px;
            display: block;
            font-size: 12px;
            cursor: pointer;
        }

        .user-login li form {
            background-color: #fff;
            color: var(--primary-color);
            padding: 3px 8px;
            display: block;
            font-size: 12px;
            cursor: pointer;
        }

        .user-login li a:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

    .mydrop:hover .user-login {
        display: block;
    }

    .cheboxline {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

        .cheboxline label {
            display: inline-block;
            width: 100%;
            cursor: pointer;
        }

    .cart-icon {
        width: 18px;
    }

        .cart-icon:hover {
            color: #000;
            /* hover color */
        }

    .searchanker {
        cursor: pointer;
    }

.search-dropdown {
    width: 100%;
    position: fixed;
    top: 96px;
    right: 0px;
    left: 0px;
    padding: 10px 10px;
    background-color: #ffff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
    .search-dropdown  .dropdown {
        width: 60%;
        position: relative;
        margin: auto;
    }
.search-dropdown input {
    font-size: 12px;
    border: 0px;
    border-bottom: 1px solid #dbcfc4;
    border-radius: 0px;
    color: #000;
    width: 100%;
    padding: 5px 0px;
    outline: 0px;
}
.header.scrolled .search-dropdown{
    top: 80px;
}
    /* Default hidden */
    .my-search {
        display: none;
        border: 1px solid #c3b1a0;
    }

    #searchInput:not(:placeholder-shown) + .iocn + .my-search {
        display: block;
    }

    .search-dropdown .iocn {
        position: absolute;
        right: 0px;
        top: 5px;
        background-color: #fff;
        z-index: 999;
    }

.search-dropdown .iocn2 {
    position: absolute;
    right: 20px;
    top: 5px;
    background-color: #fff;
    z-index: 999;
}
.iocn2 i {
    font-size: 16px;
    color: #000;
}
    .iocn i:hover,
    .iocn2 i:hover {
        font-size: 16px;
        color: #767676;
    }
    .search-dropdown .dropdown-menu {
        width: 100%;
        border-radius: 0px;
        padding: 0px;
        margin-top: 0px;
    }

    .list-autocomplete {
        max-height: 250px;
        min-height: 100%;
        overflow: auto;
        padding-bottom: 28px;
    }

    .btn-extra {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
        font-size: 12px;
        height: 28px;
        background-color: #fff;
        color: var(--primary-color);
        border: 0px;
        border-top: 1px solid #c3b1a0;
    }

        .btn-extra:hover {
            background-color: var(--primary-color);
            color: #fff;
        }


    .customlisting {
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 10px;
        width: 100%;
        padding: 5px 5px;
        cursor: pointer;
    }

        .customlisting:hover h3 {
            color: var(--secondary-color);
        }

        .customlisting:hover {
            background-color: #cdcdcd6b;
        }

    .imgcuslis img {
        width: 50px;
        height: 50px;
        border: 1px solid;
    }

    .concuslis h3 {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 4px;
        line-height: 15px;
        letter-spacing: 0.8px;
    }

    .f-12 {
        font-size: 12px;
    }

    .concuslis .pric-sku {
        text-align: left;
        line-height: 18px;
        display: grid;
        font-size: 11px;
    }



    .cheboxline input[type="checkbox"] {
        accent-color: var(--primary-color);
        height: 12px;
    }

    .cartnu span {
        font-size: 12px;
        font-size: 12px;
        position: absolute;
        top: -1px;
        left: 100%;
    }

    .tableenquiry table {
        width: 100%;
        border: 1px solid #f1e7ddba;
    }

        .tableenquiry table thead th {
            background-color: var(--primary-color);
            color: #fff;
            padding: 8px 5px;
        }

        .tableenquiry table td {
            padding: 7px 5px;
        }

        .tableenquiry table tr:nth-child(odd) {
            background-color: #f1e7ddba;
        }

        .tableenquiry table tr:nth-child(even) {
            background-color: #fff;
        }

    .sub-row table tr:nth-child(odd) {
        background-color: #edededba;
    }

    .sub-row table tr:nth-child(even) {
        background-color: #fff;
    }

    .sub-row table thead th {
        background-color: #a37b54;
        color: #ffffff;
    }

    .tableenquiry table td {
        line-height: 20px;
    }

    .classtd button {
        padding: 0px 5px 1px 5px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border: 1px solid #876441;
        background-color: #876441;
        color: #fff;
        width: 20px;
        height: 20px;
    }


    .btnareasclear {
        display: inline-flex;
        align-items: end;
        justify-content: left;
        gap: 15px;
        height: 100%;
        width: 100%;
    }

    .btn2 {
        font-size: 14px;
        border: 1px solid var(--primary-color);
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 100%;
    }

    .btn3 {
        color: var(--primary-color);
    }

        .btn3:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

    .btn:disabled {
        background-color: #d7bfa7;
        color: #fff;
        border: 1px solid #d7bfa7;
    }

    .mysearch {
        background-color: var(--primary-color);
        color: #fff;
        width: 50%;
    }

    .myclear {
        color: var(--primary-color);
        background-color: #fff;
        width: 50%;
    }

    .mysearch:hover {
        color: var(--primary-color);
        background-color: #fff;
    }

    .myclear:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    .card-cart {
        background-color: #fff;
        padding: 0px;
        border: 1px solid #d7bfa7;
        border-radius: 5px;
    }

    .cartpimage {
        width: 100%;
        height: 170px;
        overflow: hidden;
    }

        .cartpimage img {
            width: 100%;
            height: 100%;
        }

    .li-cartitem {
        padding: 10px 10px;
        border-bottom: 1px solid #edd9c5;
    }

    .skudetail {
        border-bottom: 1px solid #f1e3d5;
        padding: 5px 0px 10px 0px;
    }

        .skudetail h2 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .skudetail ul li {
            font-size: 16px;
        }

            .skudetail ul li span {
                font-weight: 600;
                display: inline-flex;
                width: 120px;
            }

    .dleteline {
        padding: 10px 0px 5px 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .dleteline .delete-btn {
            background-color: var(--primary-color);
            color: #fff;
            border: 1px solid var(--primary-color);
            padding: 4px 10px;
            font-size: 14px;
        }

    .delete-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }

    .price-cart span {
        font-size: 16px;
        color: var(--secondary-color);
    }

    .aretotalammot {
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .aretotalammot .totaltsag {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .aretotalammot span {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 500;
        }

    .btningcarts .form-input {
        position: relative;
        margin-bottom: 10px;
    }

        .btningcarts .form-input textarea {
            font-size: 14px;
            border: 0px;
            border-bottom: 1px solid #dbcfc4;
            border-radius: 0px;
            color: #000;
            width: 100%;
            padding: 5px 0px;
            outline: 0px;
        }


        .btningcarts .form-input label {
            font-size: 14px;
        }

    .btningcarts {
        border-bottom: 1px solid #dfb488;
        padding-bottom: 10px;
        position: sticky;
        top: 80px;
    }

        .btningcarts .form-input label {
            top: 0px;
        }

        .btningcarts .form-input textarea:not(:placeholder-shown) + label {
            top: -21px;
            font-size: 12px;
        }

        .btningcarts .form-input textarea:focus + label {
            top: -21px;
            font-size: 12px;
        }

    .formarea .form-input input:not(:placeholder-shown) + label,
    .formarea .form-input textarea:not(:placeholder-shown) + label {
        top: -16px;
        font-size: 12px;
    }

.hedermenus.show {
    margin-top: 25px !important;
}

    .hedermenus {
        border-radius: 0px;
        /* max-height: 285px; */
        overflow: auto;
        --bs-dropdown-min-width: 100% !important;
        position: fixed;
        left: 0px;
        right: 0px;
        padding: 34px 0px;
        margin-top: 25px;
        border: 1px solid #e0e1e0;
    }

        .hedermenus .row .col-lg-4 ul {
            column-count: 2;
        }
      
            .hedermenus .row .col-lg-4 ul li {
                break-inside: avoid;
            }

    .headerdropdown::before {
        position: absolute;
        content: '';
        padding: 25px 0px;
        width: 100%;
    }


    .headerdropdown:hover .hedermenus {
        display: block;
    }

    .header.scrolled .hedermenus {
        margin-top: 28px;
    }

    .menuone-pic {
        width: 100%;
        height: 100%;
        height: 250px;
        overflow: hidden;
    }

        .menuone-pic img {
            width: 100%;
            height: 100%;
            transition: all 1.5s;
        }

            .menuone-pic img:hover {
                transform: scale(1.03);
                transition: all 0.5s;
            }

    .hedermenus ul li {
        padding: 0px 0px;
    }

    .headstiky {
        position: sticky;
        padding: 0px 40px;
        top: 0px;
    }

    .hedermenus ul li a {
        background-color: #fff;
        color: #000;
        padding: 5px 8px;
        display: block;
        font-size: 12px;
        cursor: pointer;
    }


        .hedermenus ul li a:hover {
            color: var(--primary-color);
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 1px;
            transition: all 0.5s;
        }

    .cardcontry {
        background-color: #fff;
        border-radius: 2px;
        height: 100%;
        width: 100%;
        padding: 25px 20px;
        text-align: center;
        border-top: 1px solid #9b7302;
        cursor: pointer;
    }

    .contctsect {
        padding: 50px 0px 0px 0px;
    }

        .contctsect .cardcontry {
            background: linear-gradient(1deg, rgba(127, 138, 14, 1) 0%, rgb(255 255 255) 0%, rgb(255 250 244) 53%, rgb(255 210 166 / 48%) 100%);
        }

    .stopcontact {
        position: sticky;
        top: 80px;
    }

    .cardcontry:hover {
        transform: scale(1.03);
        background: linear-gradient(175deg, rgba(127, 138, 14, 1) 0%, rgb(255 255 255) 0%, rgb(255 250 244) 53%, rgb(255 210 166) 100%);
    }

    .cardcontry h2 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 26px;
        color: var(--primary-color);
        text-transform: capitalize;
    }

        .cardcontry h2 span {
            font-size: 13px;
            color: #000;
        }

    .cardcontry p {
        font-size: 12px;
        color: #000;
        line-height: 24px;
        margin-bottom: 5px;
    }

        .cardcontry p a {
            font-size: 12px;
            color: #564002;
        }

            .cardcontry p a:hover {
                color: var(--secondary-color);
            }

    .banner-about.brdcamp {
        position: relative;
        padding: 0px 0px;
    }



    .banner-about {
        position: relative;
        z-index: 1;
        height: 32vh;
    }

        .banner-about h2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .banner .banner-about img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .oureventscontent {
        padding: 60px 0px;
    }

    .eventcard {
        border-radius: 4px;
        margin: 30px 0px;
    }

    .datediv {
        text-align: center;
    }

        .datediv h4 {
            line-height: 30px;
            font-size: 13px;
            margin-bottom: 0px;
            color: #282622;
        }
    /*.datediv h4 span {
                    color: var(--primary-color);
                    font-size: 17px;
                    font-weight: 600;
                    margin-right: 6px;
                }*/

    .imageevent {
        width: 100%;
        height: 250px;
        padding: 1px;
    }

        .imageevent img {
            width: 100%;
            height: 100%;
            border-radius: 4px;
            object-fit: contain;
        }

    .datediv strong {
        color: var(--primary-color);
        font-size: 12px;
        margin-top: 5px;
    }

    .eventdatetime p {
        font-size: 12px;
        margin: 10px 0px;
        font-style: italic;
    }

    .contentevent {
        padding: 15px 15px 0px 0px;
        border-top: 1px solid #f9eee9;
        border-bottom: 1px solid #f9eee9;
        height: 100%;
    }

    .eventdatetime {
        padding: 0px 0px 10px 0px;
        display: flex;
        gap: 29px;
        align-items: center;
        text-align: center;
    }



    .contentevent h3 {
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contentevent p {
        font-size: 13px;
        margin: 0px;
        color: #282622;
    }

        .contentevent p strong {
            color: var(--secondary-color);
            margin-right: 3px;
        }

    .contentevent .plbnandno {
        display: inline-flex;
        justify-content: space-between;
        gap: 17px;
        margin-bottom: 15px;
    }

    .contentevent p span {
        font-size: 12px;
        margin-bottom: 0px;
    }

    .phei {
        line-height: 20px;
        margin-top: 5px;
    }

    .onlyphone {
        display: none;
    }

    .webonly {
        display: block;
    }

    .surcingcard {
        margin: 20px;
        background-color: #fff;
        text-align: center;
    }

        .surcingcard .img-surce {
            width: 100%;
            height: auto;
            border-radius: 20%;
            overflow: hidden;
        }

            .surcingcard .img-surce img {
                width: 100%;
                height: 100%;
            }

    .name-cuntry {
        text-align: center;
    }

    .name-cuntry {
        padding: 10px 0px;
    }

        .name-cuntry h2 {
            font-size: 15px;
            margin: 10px 0px 5px 0px;
            text-transform: uppercase;
        }

        .name-cuntry p {
            margin: 0px;
            text-transform: uppercase;
            font-size: 13px;
        }

    .sourc-network {
        padding: 30px 0px 70px 0px;
    }

    .surcetext {
        position: sticky;
        top: 80px;
        padding-top: 24px;
    }


        .surcetext p {
            font-size: 14px;
            line-height: 23px;
            margin: 20px 0px 10px 0px;
            font-size: 13px;
            color: #000;
        }

    .fawsec {
        padding: 50px 0px 70px 0px;
    }

        .fawsec .accordion .accordion-item {
            border: 0px;
            margin-bottom: 20px;
        }

        .fawsec .accordion .accordion-header {
            margin-bottom: 0;
            background-color: #ffff;
        }

        .fawsec .accordion .accordion-button {
            font-size: 15px;
            border-bottom: 1px solid #e3e2e2;
            border-radius: 4px;
            padding: 15px 15px;
            font-weight: 600;
        }

            .fawsec .accordion .accordion-button:not(.collapsed) {
                color: #000;
                background-color: #fff;
                box-shadow: none;
            }


        .fawsec .accordion .accordion-body {
            padding: 17px 15px;
            font-size: 14px;
            color: #000;
            line-height: 22px;
            margin: 10px 0px 20px 0px;
            border-radius: 4px;
            border-bottom: 1px solid #f7f3f3;
        }

            .fawsec .accordion .accordion-body ul li {
                list-style: disc;
                font-size: 13px;
                line-height: 24px;
            }

            .fawsec .accordion .accordion-body p {
                font-size: 13px;
                line-height: 20px;
                margin-bottom: 5px;
            }

                .fawsec .accordion .accordion-body p strong {
                    font-size: 13px;
                    line-height: 26px;
                }

            .fawsec .accordion .accordion-body ul {
                padding-left: 15px;
            }

    .accordion-collapse.collapse.show {
        height: 100%;
    }

    .accordion-button::after {
        background-image: url(../images/pluse.svg);
        background-repeat: no-repeat;
        background-size: 14px;
        width: 14px;
        height: 14px;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url(../images/minus.svg);
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .nodatepages {
        text-align: center;
        padding: 20px 15px;
    }

        .nodatepages span {
            font-size: 18px;
        }

    .plusebtn {
        width: 14px;
        height: 14px;
    }

    .plearsbtn {
        color: var(--primary-color);
        font-size: 12px;
    }

        .plearsbtn:hover {
            color: var(--secondary-color);
            text-decoration: underline;
            text-underline-offset: 7px;
            text-decoration-thickness: 0px;
        }

    .showloign {
        padding-bottom: 5px;
    }
.menu-close {
    position: absolute;
    right: 10px;
    top: 5px;
}
.alldropsmens .dropdwonmenus {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}
/* ===============================
     media responsive
================================ */
@media (max-width: 1024px) {
    h2 {
        font-size: 24px;
    }

    p,
    .ct-box .ct-content .btn-link {
        font-size: 14px;
    }

    .content-inner {
        padding-block: 60px;
    }

    .category-box {
        padding-bottom: 60px;
    }

    .banner-media {
        height: auto;
    }

        .banner-media img {
            object-fit: contain;
        }
}

    @media (max-width: 991px) {
       
        .px-50 {
            padding: 30px;
        }

        .r-nav {
            width: 100%;
            height: 70px !important;
            margin-bottom: 10px;
        }

            .r-nav img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .open .nav {
            transform: translateX(0);
        }


        .nav-link {
            font-size: 12px;
        }



        .our-catalog .section-head.style-1 {
            position: relative;
            margin-bottom: 30px;
            top: auto;
        }

        .section-head {
            margin-bottom: 30px;
        }

        .px-30 {
            padding-right: 20px;
            padding-left: 20px;
        }

        .about-us .about-media {
            height: 400px;
        }

        .content-inner {
            padding: 70px 0 40px;
        }

        .content-inner2 {
            padding: 70px 0;
        }

        .content-inner3 {
            padding: 40px 0 20px;
        }

        .hero-logo-wrapper {
            height: 300px;
        }

        .big-logo {
            width: 290px;
            max-height:100px;
        }

        .our-catalog .catalog-box .catalog-media {
            height: 250px;
        }

        .product-box-wrapper {
            height: 60vh;
        }
    }



    @media(max-width:768px) {
        .hedermenus .row .col-lg-4 ul {
            column-count: 1;
        }
        .seclogins {
            padding: 40px 15px 80px 15px;
        }

        .imageevent {
            width: 100%;
            height: 100%;
            padding: 1px;
        }
        .contctsect .container-fluid.px-5 {
            padding: 0px 15px !important;
        }
        .hedermenus {
            padding: 20px 10px;
            margin-top: 10px;
        }
        .header.scrolled .hedermenus {
            margin-top: 10px;
        }
            .hedermenus.show {
                margin-top: 10px !important;
            }
        .headstiky {
            padding: 0px 10px;
        }
            .search-dropdown {
                width: 100%;
                top: 90px;
                right: 0px;
                left: 0px;
            }

                .search-dropdown .dropdown {
                    width: 91%;
                    position: relative;
                    margin-right: auto;
                    margin-left: unset;
                }

                .search-dropdown .iocn2 {
                    right: 12px;
                    top: 15px;
                }

            .header.scrolled .search-dropdown {
                top: 80px;
            }

            .footer {
                padding: 0px;
            }

            .aboutuspage {
                padding: 50px 0px 20px 0px;
            }

            .section-head .title {
                font-size: 22px !important;
                padding-top: 0px;
            }

            .our-catalog .catalog-box .catalog-content .title {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .hederside {
                margin-left: auto;
                width: 100%;
            }

            .surcetext {
                position: sticky;
                top: 77px;
                padding-top: 24px;
            }

            .mission-content {
                width: 100%;
                margin: 0px auto auto;
            }

            .corevalue {
                padding: 30px 0px 10px 0px;
            }

            .sourc-network {
                padding: 0px 0px 70px 0px;
            }

            .content-inner {
                padding: 30px 0 30px;
            }

            .timelinesec {
                padding: 30px 0px;
            }

            .puritytimeline {
                padding: 10px 0px;
            }

            .overview-sec p {
                font-size: 14px;
                text-align: center;
                color: #000;
                padding-right: 0px;
            }

            .overview-img .col-6.mb-4 {
                margin-bottom: 5px !important;
                padding: 2px 5px;
            }

            .overview-img .col-md-12.mb-4 {
                margin-bottom: 5px !important;
                padding: 2px 5px;
            }

            .banner-about {
                height: 20vh;
            }

            .px-50 {
                padding: 20px;
            }



            .onlyphone {
                display: block;
            }

            .webonly {
                display: none;
            }

            .jscleft {
                justify-content: unset;
            }

            .cartonli {
                margin-left: auto;
            }

            .header {
                padding: 10px 5px;
            }

            .nav-link {
                font-size: 12px;
            }

            .header .container-fluid {
                padding: 0px 10px;
            }

            .nav-link i {
                font-size: 15px;
                color: var(--primary-color);
            }

        .sidebarmenu {
            position: fixed;
            inset: 0 auto 0 0;
            width: 70%;
            height: 100vh !important;
            background: #fff;
            padding: 20px 10px;
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in;
            align-items: baseline;
            justify-content: left;
            display: block;
            z-index: 999;
        }

                .sidebarmenu .nav-list {
                    list-style: none;
                    display: grid;
                }


            .header .logo-scrolled {
                opacity: 25;
                visibility: visible;
                height: 70px;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .header.scrolled {
                height: 80px;
            }

            header .logo img {
                width: 160px;
                height: 100%;
                object-fit: contain;
                transition: transform 0.3s ease;
                position: absolute;
                top: 10px;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-list {
                flex-direction: inherit;
            }

            .open .sidebarmenu {
                transform: translateX(0);
            }

       

            .fillarea {
                padding: 10px 5px;
                position: relative;
            }

            .fillarea2 {
                padding: 10px 0px 10px 0px;
                position: relative;
            }

            .pt-left ul {
                display: block;
            }

                .pt-left ul li {
                    display: block;
                    justify-content: space-between;
                    align-items: center;
                }

            .fillarea {
                padding: 10px 5px;
                position: relative;
                margin-right: 0px !important;
            }

            .filterheader {
                padding: 8px 0px 0px 0px;
                top: 78px;
                border-bottom: 1px solid #876441;
            }

            .allfilter {
                padding: 10px 5px 10px 5px;
                position: sticky;
                top: 80px;
            }

            .fillarea2 {
                margin-right: 0px !important;
            }

            .fillarea label {
                bottom: 15px;
            }
            /* Focus hone par */
            .fillarea .form-select:valid + label,
            .fillarea .form-select:focus + label {
                bottom: 30px;
            }



            .filter-box {
                position: fixed;
                width: 300px;
                height: 100vh;
                background-color: var(--light-color);
                overflow-y: scroll;
                left: -320px;
                top: 0;
                z-index: 9999;
                transition: all 0.5s;
            }

                .filter-box.open-box {
                    left: 0;
                    transition: all 0.5s;
                    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
                }

            .phoneopen {
                display: block;
            }

            .hero-logo-wrapper {
                height: 90px;
            }
        }

    @media (max-width: 576px) {
        .our-catalog .catalog-box .catalog-content .title {
            font-size: 12px;
            margin-bottom: 4px;
        }

        .footer-head.mb-0.text-center {
            padding-top: 40px;
        }

        .brdcamp h2 {
            font-size: 24px;
        }

        .banner-about {
            height: 15vh;
        }

        .p-1 {
            padding: 7px !important;
        }
        .our-catalog .col-lg-8 .row {
            padding: 0px 10px;
        }
        h2 {
            font-size: 18px;
        }


        .content-inner {
            padding-block: 40px;
            padding: 40px 0px 40px;
        }

        .category-box {
            padding-bottom: 40px;
        }

        header .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        header .h-social-icon li .s-icon {
            font-size: 15px;
            margin-right: 6px;
        }

        .product-box-wrapper {
            height: 50vh;
        }

        .hamburger {
            width: 16px;
        }

        .m-center {
            text-align: center;
        }

        p,
        .ct-box .ct-content .btn-link {
            font-size: 12px;
        }



        header .logo img {
            width: 150px;
        }

        header .h-social-icon li .s-icon {
            font-size: 15px;
            margin-right: 6px;
        }

        .hamburger {
            width: 16px;
        }

        .top-bar {
            height: auto;
        }

        .product-box .product-list-box {
            gap: 10px;
        }

        .px-30 {
            padding-right: 10px;
            padding-left: 10px;
        }

        .about-us .about-media {
            height: 350px;
        }



        .content-inner2 {
            padding: 40px 0;
        }

        .content-inner3 {
            padding: 30px 0 20px;
        }

        .big-logo {
            width: 170px;
            
        }

        .hero-logo-wrapper {
            height: 90px;
        }

        .big-logo.finished {
            width: 62%;
        }

        .our-catalog .catalog-box .catalog-media {
            height: 140px;
        }

        .about-us .about-media.style-1 {
            height: 250px;
        }

        .about-us .about-media .a-content {
            bottom: 10px;
        }

            .about-us .about-media .a-content .title {
                font-size: 12px;
            }

        .global-box .global-content {
            padding: 5px
        }

        .global-box .global-media {
            width: 100%;
            position: relative;
            height: 200px;
        }

    }


    @media (max-width:420px){
        
    }