    /* Main Styles */

    /* Variables */
    :root {
        --primary-color: #3c51c4;
        --secondary-color: #14B8A6;
        --accent-color: #4f46e5;
        --dark-blue: #0f172a;
        --light-blue: #e0f2fe;
        --success-color: #22c55e;
        --warning-color: #f59e0b;
        --error-color: #ef4444;
        --text-dark: #0f172a;
        --text-medium: #64748b;
        --text-light: #94a3b8;
        --white: #ffffff;
        --background-light: #f8fafc;
        --background-medium: #f1f5f9;
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
        --radius-sm: 0.25rem;
        --radius-md: 0.5rem;
        --radius-lg: 1rem;
        --spacing-1: 0.25rem;
        --spacing-2: 0.5rem;
        --spacing-3: 0.75rem;
        --spacing-4: 1rem;
        --spacing-6: 1.5rem;
        --spacing-8: 2rem;
        --spacing-12: 3rem;
        --spacing-16: 4rem;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: var(--spacing-4);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        margin-bottom: var(--spacing-4);
    }

    .section-title {
        text-align: center;
        margin: var(--spacing-12) 0 var(--spacing-8);
        position: relative;
        font-weight: bold;
        font-size: 2.5rem;
    }

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
        margin: var(--spacing-4) auto 0;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: var(--spacing-3) var(--spacing-6);
        border-radius: 50px;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: var(--primary-color);
        color: var(--white);
    }

    .btn-primary:hover {
        background-color: #243590;
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .btn-secondary {
        background-color: #3c51c4;
        color: var(--white);
    }

    .btn-secondary:hover {
        box-shadow: var(--shadow-md);
        color: #fff;
    }

    .btn-dark {
        background-color: var(--dark-blue);
        color: var(--white);
        font-weight: 600;
        padding: var(--spacing-4) var(--spacing-8);
    }

    .btn-dark:hover {
        background-color: #1e293b;
        box-shadow: var(--shadow-md);
    }

    .btn-category {
        background-color: var(--primary-color);
        color: var(--white);
        width: 100%;
        padding: var(--spacing-3);
        text-align: center;
        border-radius: 0;
    }

    .btn-subscribe {
        background-color: #0f95e6;
        color: var(--white);
        padding: var(--spacing-2) var(--spacing-4);
    }

    /* Header */

    .header-scrolled {
        /* position: relative !important; */
        /* background: #fff; */
        top: 0 !important;
    }

    #main-header {
        /* position: sticky; */
        top: 0;
        /* background-color: var(--white); */
        box-shadow: var(--shadow-sm);
        z-index: 100;
        padding: var(--spacing-4) 0;
        display: flex;
        justify-content: space-between;
    }

    #main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100% !important;
    }

    .logo img {
        height: 40px;
    }

    .main-nav ul {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .main-nav a {
        font-weight: 500;
        color: #fff;
        transition: color 0.3s ease;
        letter-spacing: 3px;
    }

    .main-nav a:hover {
        color: var(--white);
    }

    .mobile-menu-toggle {
        display: none;
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    /* Hero Section */
    .hero {
        background-color: var(--background-light);
        padding-block: 3rem;
        padding-inline: 1rem;
    }

    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-8);
    }

    .hero-text {
        flex: 1;
    }

    .sticky-note .logo img {
        height: 60px;
    }

    .blue-box {
        /* width: 59%; */
        max-width: 100%;
        margin: auto;
        /* background-color: var(--primary-color); */
        /* color: var(--primary-color); */
        padding: var(--spacing-6);
        /* border-radius: var(--radius-md); */
        /* box-shadow: var(--shadow-md); */
        margin-bottom: var(--spacing-4);
        min-height: 303px;
    }

    .typing-note {
        color: var(--text-medium);
        font-size: 0.875rem;
        font-style: italic;
    }

    .hero-image {
        flex: 1;
        position: relative;
    }

    .video-play {
        position: absolute;
        bottom: 0;
        left: 0;
        color: orange;
        font-size: 0.875rem;
        font-style: italic;
    }

    .blue-box h1 {
        background: #3c51c4;
        display: inline;
        color: #fff;
    }

    /* Value Proposition Section */
    .value-prop {
        padding: var(--spacing-16) 0;
        position: relative;
    }

    .value-content {
        display: flex;
        align-items: center;
        gap: var(--spacing-12);
    }

    .inventory-image {
        flex: 1;
        position: relative;
    }

    .inventory-image .note {
        position: absolute;
        bottom: 0;
        left: 0;
        color: orange;
        font-size: 0.875rem;
        font-style: italic;
    }

    .value-text {
        flex: 1;
    }

    .value-text a.btn.btn-secondary {
        margin: auto;
        display: block;
        width: fit-content;
        padding-inline: 4rem;
        margin-top: 3rem;
        padding-block: 1rem;
    }

    .value-text h2 {
        color: var(--text-dark);
        margin-bottom: var(--spacing-6);
        font-size: 1.5rem;
    }

    .sticky-note {
        position: sticky;
        top: 0;
        right: 0;
        /* color: orange; */
        font-size: 0.975rem;
        /* font-style: italic; */
        /* background-color: rgba(255, 255, 255, 0.8); */
        padding: var(--spacing-2);
        border-radius: 0;
        background: #041e43;
        width: 100%;
        z-index: 999;
    }

    /* Categories Section */
    .categories,
    .categories-expanded {
        padding: var(--spacing-12) 0;
        background-color: var(--background-light);
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-8);
        margin-bottom: var(--spacing-8);
    }

    .category-card {
        /* background-color: var(--white); */
        /* border-radius: 40px; */
        overflow: hidden;
        /* box-shadow: var(--shadow-md); */
        position: relative;
    }

    .category-card img {
        width: 100%;
        object-fit: cover;
    }

    .category-buttons,
    .category-menu {
        display: flex;
        flex-direction: column;
        padding: var(--spacing-4);
        gap: var(--spacing-2);
    }

    .category-btn,
    .category-item {
        background-color: var(--primary-color);
        color: var(--white);
        padding: var(--spacing-2);
        border-radius: 50px;
        text-align: center;
        transition: all 0.3s ease;
        border: 5px solid #1f93e4;
        font-size: 14px;
    }

    .category-btn:hover,
    .category-item:hover {
        background-color: #243590;
        transform: translateY(-2px);
    }

    .cursor-note {
        position: absolute;
        bottom: 80px;
        left: 0;
        color: orange;
        font-size: 0.875rem;
        font-style: italic;
        max-width: 200px;
    }

    .sell-buy-action {
        text-align: center;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    /* Footer */
    .main-footer {
        background-color: #041e43;
        color: var(--white);
        padding: var(--spacing-16) 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-8);
    }

    .footer-col h3 {
        margin-bottom: var(--spacing-6);
        font-size: 1.2rem;
        font-weight: 500;
    }

    .footer-col p,
    .footer-col a {
        margin-bottom: var(--spacing-2);
        color: var(--text-light);
        transition: color 0.3s ease;
    }

    .footer-col a:hover {
        color: var(--white);
    }

    .social-icons {
        display: flex;
        gap: var(--spacing-4);
        margin-bottom: var(--spacing-6);
    }

    .social-icons a {
        background-color: var(--primary-color);
        color: var(--white);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background-color: var(--white);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

    .payment-methods {
        margin-bottom: var(--spacing-6);
    }

    .newsletter-form {
        display: flex;
        margin-top: var(--spacing-4);
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }

    .newsletter-form input {
        padding: var(--spacing-2) var(--spacing-4);
        /* border: 1px solid var(--text-light); */
        /* border-right: none; */
        /* border-radius: var(--radius-sm) 0 0 var(--radius-sm); */
        width: 100%;
        box-sizing: border-box;
        background: #fff;
        text-align: center;
        margin-bottom: 1rem;
    }

    .newsletter-form button {
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        width: fit-content;
        padding-inline: 4rem;
        border-radius: 0rem;
        font-weight: normal;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: var(--spacing-4);
    }

    .footer-logo p {
        letter-spacing: 2px;
        font-size: 0.875rem;
    }

    .sticky-note .btn.btn-primary {
        border-radius: 50px !important;
        background: none;
        border: 1px solid #3c51c4;
        padding-inline: 1rem;
        padding-block: .5rem;
    }

    .category-buttons {
        position: absolute;
        top: 2rem;
        left: 2rem;
        right: 0;
        width: 77%;
        margin: auto;
        opacity: 0;
        transition: .2s ease all;
        border-radius: 50% !important;
    }

    .categroy_icon {
        width: 40px;
        position: absolute;
        left: 2rem;
        top: 3rem;
        cursor: pointer;
    }

    .category-card.active .category-buttons {
        opacity: 1;
    }

    .categroy_icon1 {
        width: 40px;
        position: absolute;
        left: 2rem;
        cursor: pointer;
        top: 3rem;
    }

    .category-card.active .category-buttons {
        opacity: 1;
    }

    .category-grid .category-btn {
        background-color: #041e46;
    }

    .category-grid .category-buttons .category-btn:nth-child(1n) {
        border-color: #1e92e3;
    }

    .category-grid .category-buttons .category-btn:nth-child(2n) {
        border-color: #3e51ba;
    }

    .category-grid .category-buttons .category-btn:nth-child(3n) {
        border-color: #31cfb9;
    }


    .sell-buy-action a {
        font-size: 1.1rem;
        letter-spacing: 6px;
        font-weight: normal;
        padding-inline: 5rem;
        padding-block: .8rem;
    }

    .cate-gory-box {
        border-radius: 50px;
        overflow: hidden;
        display: inline-flex;
    }


    .category-card .btn-category {
        border-radius: 50px;
        font-size: 1.1rem;
        letter-spacing: 1.8px;
        font-weight: 400;
    }

    .footer_logo {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-col h4 {
        color: var(--text-light);
        font-weight: normal;
        line-height: 26px;
    }

    /*mobile menu css*/


    .mobile-menu,
    .mobile-menu-toggle1 {
        display: none;
    }

    .mobile-panel {
        display: none;
    }

    @media (max-width:990px) {
        .mobile-panel {
            display: flex;
        }

        .mobile-menu {
            display: block;
            /* position: absolute; */
            top: 0;
        }

        .mobile-menu-active .mobile-menu {
            position: absolute;
            width: 100%;
            left: 0;
            background: #fff;
        }

        .mobile-menu-active .mobile-menu li a {
            color: #000;
        }
    }

    .user_icon {
        width: 30px;
    }

    .cart_icon {
        width: 30px;
    }

    li.cart_icon img {
        filter: invert(1);
    }

    .logo.customLogo {
        margin-top: 15px;
    }

    .page-header .panel.wrapper {
        border-bottom: 1px solid #041e43;
        background-color: #041e43;
    }

    #main-header .logo {
        margin: 0;
    }

    nav.main-nav li {
        margin-right: 3rem;
    }



    a {
        text-decoration: none !important;
    }

    .category-card .btn-category:hover {
        color: #fff;
    }

    .sell-buy-action a:hover {
        color: #fff;
    }

    section.how_work {
        padding-bottom: 0rem;
    }

    .main-nav li img {
        filter: invert(1);
        display: inline-block;
        vertical-align: text-bottom;
        position: relative;
        z-index: 2;
    }

    nav.main-nav>li:nth-child(3) {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 6em;
        margin-right: 0;
    }

    .sell_item_panel {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        margin: 2rem 0;
    }

    .sell_list {
        text-align: center;
    }


    /*faq css start here*/


    .faq-container {
        max-width: 1200px;
        margin: auto;
        padding: 2rem 0;
        /* font-family: 'Segoe UI', sans-serif; */
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .faq-question {
        background: none !important;
        border: none !important;
        width: 100%;
        text-align: left;
        font-size: var(--font-24);
        padding: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
    }

    .faq-question .icon {
        font-size: var(--font-24);
        transition: transform 0.3s ease;
    }

    .faq-answer {
        overflow: hidden;
        max-height: 0;
        padding: 0 15px;
        transition: max-height 0.4s ease, padding 0.4s ease;
        margin-bottom: 1rem;
    }

    .faq-answer p {
        margin: 10px 0;
        font-size: var(--font-16);
    }

    .faq-item.active .faq-question .icon {
        transform: rotate(0deg);
        /* changes + to Ã— look */
    }

    ul.ul_list li {
        font-size: var(--font-16);
        margin-bottom: 1rem;
    }

    ul.ul_list {
        padding: 1rem 2rem;
    }

    .blog_group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .blog_list figure {
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 1rem;
        height: 262px;
    }

    .main_section.home-blogs {
        padding-bottom: 5rem;
    }

    li.icon-bg img {
        width: 20px;
        height: 20px;
        object-fit: cover;
        margin: 0;
        padding: 0;
    }

    li.icon-bg {
        background: #3d51c3;
        width: 45px;
        border-radius: 50%;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }

    .megamenu {
        display: none;
        position: absolute;
        top: 100%;
        background: #041e43;
        padding-block: 3rem 1rem;
        padding-inline: 6rem;
        width: 100%;
        z-index: 99;
        left: 0;
    }

    li.dropdown li {
        margin: 0 0 0.5rem;
        padding-inline: 0;
    }

    li.dropdown:hover .megamenu {
        display: block;
    }

    li.dropdown {
        /* position: relative; */
    }

    .medical_menu_list ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: flex-start;
    }

    li.dropdown li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        font-weight: bold;
    }

    li.icon-bg a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    img.down_arrow {
        width: 10px !important;
        margin: auto;
    }

    .search-box {
        position: relative;
        margin: 0;
        background: #041d44;
        padding-bottom: 2rem;
    }

    input.place_holder {
        width: 100%;
        border: 3px solid #3c51c4;
        border-radius: 30px;
        padding: 1rem 2rem;
        text-align: center;
        color: #e0e0e0;
        height: auto;
        background: none;
    }

    .search-box button {
        position: absolute;
        right: 30px;
        top: 10px;
        z-index: 9;
    }

    .search-box button img {
        filter: invert(1);
        mix-blend-mode: overlay;
    }

    input.place_holder::placeholder {
        color: #9da7df;
    }

    .sp_panel {
        margin-inline: 5rem;
        position: relative;
    }

    .header.panel>.header.links {
        display: none;
    }


    /*login css*/


    .login_group {
        display: grid;
        grid-template-columns: 50% 50%;
        gap: 50px;
        padding-block: 5rem;
    }

    .login_panel {
        background: #041d45;
    }

    .col-box h2 {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

    .col-box p {
        color: #fff;
        font-size: 14px;
    }

    input.form-control {
        background: #fff;
        width: 100%;
        display: block;
        border-radius: 5px;
        padding-inline: 1rem;
        padding-block: .5rem;
    }

    .email-form {
        margin-bottom: 1rem;
    }

    .form-group {
        padding-inline: 0;
    }

    .checkbox-form {
        color: #fff;
        font-size: 12px;
        margin-bottom: 2rem;
    }

    .other_login {
        display: flex;
        justify-content: space-between;
        padding-inline: 0;
        margin-bottom: 1rem;
    }

    button.btn_submit {
        border-radius: 50px !important;
        background: none;
        border: 1px solid #3c51c4;
        padding-inline: 3rem 3rem;
        padding-block: .3rem;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 14px;
    }

    .welcom_reigester {
        padding-inline: 0 10rem;
    }

    .new_custemer {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-inline: 0 7rem;
    }

    .register-col {
        padding-top: 1rem;
    }

    footer.page-footer {
        padding-bottom: 0;
    }

    ul.hover_list {
        display: block;
        position: static;
        right: -21.8rem;
        background: none;
        top: 0;
        width: 100%;
        padding-inline: 0;
        padding-block: 2rem;
    }

    .medical_menu_list li:hover ul.hover_list {
        display: block;
    }


    /*sales pages css start here*/

    /* Layout */
    .main-content {
        display: flex;
        padding: 20px 0;
        gap: 50px;
    }

    /* Sidebar */
    .sidebar {
        width: 250px;
        padding: 0;
        border-radius: 8px;
    }

    .sidebar h3 {
        font-size: 1rem;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 14px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    /* Accordion */
    .accordion-item {
        margin-bottom: 0;
        border-top: 1px solid #ccc;
        border-radius: 0px;
        overflow: hidden;
    }

    .accordion-header {
        background: #fff;
        padding: 12px 0;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        position: relative;
    }

    .accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f0f0f0;
    }

    .accordion-body ul {
        list-style: none;
        padding: 10px;
        margin: 0;
    }

    .accordion-body li {
        padding: 5px 0;
        font-size: 14px;
    }

    /* Product Grid */
    .product-area {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
        height: fit-content;
    }

    /* Product Card */
    .product-card {
        border-radius: 10px;
        text-align: center;
        background: #fff;
        overflow: hidden;
    }

    .product-card .title {
        background: #0a2c56;
        color: #fff;
        padding-inline: 1rem;
        font-weight: 500;
        padding-block: 1.2rem;
        font-size: 1rem;
        border: 2px solid #0a2c56;
        overflow: hidden;
        /* border-bottom: 0px; */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        letter-spacing: 2px;
        min-height: 100px;
        align-content: center;
    }

    .product-card .image {
        height: 100px;
        background: linear-gradient(to top, #a1c298, #e0f0fd);
    }

    .product-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .product-card .desc {
        padding: 4px;
        font-size: 12px;
    }

    .featured {
        grid-row: span 2;
    }

    .featured-title {
        background: #0a2c56;
        color: #fff;
        padding: 10px;
        font-weight: bold;
    }

    .product-card:nth-child(2n) .title {
        background: none;
        color: #0a2c56;
    }

    .pro-title {
        letter-spacing: 2px;
    }

    aside.sidebar h3 img {
        width: 25px;
    }

    button.accordion-header:after {
        width: 35px;
        content: "";
        height: 35px;
        background: url(../images/arrow.webp);
        position: absolute;
        right: 0;
        background-size: 100%;
        top: 10px;
    }

    button.accordion-header.active:after {
        transform: rotate(180deg);
    }

    .other_product_list {
        margin-top: 5rem;
    }

    .other_product_list .product-card {
        margin-bottom: 3rem;
    }

    .other_product_list .product-card:nth-child(2n) .title {
        background: #0a2c56;
        color: #fff;
    }

    /*inner css banner*/

    .inner-banner {
        background: #ddd;
        padding-block: 4rem;
    }

    .sales_panel {
        margin-block: 5rem 0;
    }

    .inner-banner .container {
        display: grid;
        grid-template-columns: 70% 25%;
    }

    .inner-banner-text {
        display: grid;
        /* grid-template-columns: 70% 25%; */
    }

    .inner-banner-text p {
        margin: 0;
        text-align: center;
    }

    .inner-banner-head h2 {
        margin: 0;
    }


    /*sales css start herr*/

    .stock_box {
        background: #041d44;
        border-radius: 30px;
        padding-inline: 3rem;
        padding-block: 3rem;
        color: #fff;
        position: relative;
    }

    .starting_your_stock {
        padding-block: 5rem 3rem;
    }

    .stock_box h6 {
        font-size: 1rem;
    }

    .stock_box h2 {
        font-size: 2.5rem;
    }

    .btn_download {
        background: #3d51c3;
        display: inline-block;
        border-radius: 30px;
        padding: .5rem 2rem;
        color: #fff;
    }

    .pos-top {
        position: absolute;
        bottom: 6rem;
        right: 5rem;
    }

    img.img-fluid.down {
        border: 1px solid #000;
        border-radius: 50%;
        padding: .3rem;
        filter: invert(1);
        width: 30px;
        height: 30px;
    }

    .btn_download a {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    img.img-fluid.down-file {
        border: 1px solid #000;
        border-radius: 50%;
        padding: .3rem;
        filter: invert(1);
        width: 30px;
        height: 30px;
    }

    .sell_item_block .row {
        display: flex;
        gap: 30px;
    }

    .col-lg-8 {
        width: 65%;
    }

    .col-lg-4 {
        width: 35%;
    }



    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="file"],
    select,
    textarea {
        width: 26rem;
        max-width: 100%;
        border: none;
        border-bottom: 1px dotted #000;
        padding: 5px 0;
        font-size: 14px;
        background: transparent;
        outline: none;
        border-radius: 0px;
        display: inline-block;
        position: relative;
        top: -.5rem;
    }

    .form_text p {
        font-weight: 600;
        color: #041d45;
    }

    .full_form_text {
        margin-bottom: 3rem;
    }

    .form_data h3 {
        font-size: 1.1rem;
        letter-spacing: 2px;
        color: #041d44;
    }

    .form_group {
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .form_group label {
        display: inline-block;
    }

    .season_block {
        display: flex;
        gap: 20px;
    }

    .sl1 {
        width: 57%;
        display: flex;
    }

    .sl2 {
        width: 30%;
        display: flex;
    }

    .sl3 {
        width: 30%;
        display: flex;
    }

    .sl1 label {
        width: 66%;
    }

    .sl2 label {
        width: 66%;
    }

    .sl3 label {
        width: 66%;
    }

    .btn_submit button {
        margin-top: 30px;
        padding: 12px 40px;
        background-color: #123986;
        color: #fff;
        border: none;
        font-size: 16px;
        border-radius: 30px;
        cursor: pointer;
    }

    .btn_submit button:hover {
        background-color: #0e2c6b;
    }

    .sell_item_block {
        padding-bottom: 6rem;
    }

    .upload-section h3 {
        font-size: 1.1rem;
        letter-spacing: 2px;
        color: #041d44;
    }

    .big_diplay {
        position: relative;
    }

    .download_icon {
        top: 0;
        align-content: center;
        text-align: center;
        cursor: pointer;
    }



    .big_diplay label {
        display: grid;
        align-items: center;
        justify-content: center;
    }

    .big_diplay label>* {
        grid-area: 1/1;
    }

    .file_upload_panel div {
        position: relative;
    }

    .resp1 label {
        display: grid;
    }

    .resp1 label>* {
        grid-area: 1/1;
    }

    .resp1 .download_icon {
        width: 30px;
        margin: auto;
    }

    .db {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .file_upload_panel {
        margin-bottom: 1rem;
    }

    .db label {
        font-weight: bold;
    }

    .img-banner img {
        width: 100%;
        height: 100%;
    }

    .inner_banner {
        display: grid;
        align-items: center;
        color: #fff;
        height: 100%;
    }

    .inner_banner>* {
        grid-area: 1/1;
    }

    .inner_banner h2 {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .blog_list {
        background: #391d77;
        border-radius: 20px;
        overflow: hidden;
        color: #fff;
        padding-inline: 1.2rem;
        padding-block: 1rem;
        position: relative;
    }

    .blog_category {
        background: #3b1c769c;
        display: inline-block;
        padding-inline: 1.2rem;
        border-radius: 30px;
        margin-bottom: 1rem;
        padding-block: .5rem;
        position: absolute;
        top: 2rem;
        left: 2rem;
        font-size: 14px;
    }

    .blog_list figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .date {
        margin-bottom: 1rem;
    }

    /*blog dtail css start here*/
    .img-banner {
        height: 100%;
    }

    .blog-categories,
    .blog-detail {
        background: #1b0b3a;
        color: #fff;
        padding-block: 3rem;
    }

    .blog-categories h2 {
        border-bottom: 1px solid #474fc1;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .blog-categories ul {
        display: flex;
        gap: 10px;
    }

    .blog-categories ul li a {
        border: 1px solid #fff;
        padding-inline: 1.2rem;
        border-radius: 30px;
        padding-block: .5rem;
        display: inline-block;
    }

    .blog_pnel1,
    .blog_pnel3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .blog-box-right {
        align-content: center;
    }

    .blog-box-left figure img {
        width: 100%;
    }

    .blog_pnel2 {
        padding-block: 3rem;
    }

    .blob_other_list ul {
        display: flex;
        gap: 30px;
    }

    .blob_other_list {
        margin-bottom: 1rem;
    }

    .blob_other_list ul li a {
        display: inline-block;
        border-radius: 30px;
        font-size: 14px;
    }

    .w-100 {
        width: 100%;
    }

    .blog_pnel2 p {
        margin-bottom: 3rem;
    }

    .blog_pnel3 {
        direction: rtl;
    }

    .blog_pnel3 .blog-box-right {
        text-align: left;
    }

    .main_section.home-blogs.main_blog {
        background: #1b0b3a;
    }

    .main_section.home-blogs.main_blog .blog_group {
        grid-template-columns: repeat(4, 1fr);
    }

    .main_section.home-blogs.main_blog h2.section-title {
        margin: 0 0 3rem;
        text-align: left;
        color: #fff;
    }

    .main_section.home-blogs.main_blog h2.section-title::after {
        display: none;
    }

    .contact-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 60px;
        max-width: 1200px;
        margin: auto;
        flex-wrap: wrap;
    }

    .contact-left {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: 100%;
        height: 500px;
        padding-top: 5rem;
    }

    .contact-left h2 {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 30px;
        color: #041d45;
    }

    .contact-left p {
        color: #333;
        font-size: 16px;
        line-height: 1.7;
        max-width: 500px;
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }

    .info-box {
        display: flex;
        align-items: center;
        gap: 15px;
        min-width: 220px;
    }

    .info-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
    }

    .info-text {
        font-size: 14px;
        color: #333;
    }

    .info-text span {
        font-weight: bold;
        display: block;
        color: #041d45;
        margin-bottom: 2px;
    }

    .contact-right {
        background-color: #041e43;
        padding: 40px;
        border-radius: 20px;
        max-width: 475px;
        width: 100%;
        color: #ffffff;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .contact-right h3 {
        font-size: 26px;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .contact-right label {
        display: block;
        margin-bottom: 7px;
        font-size: 14px;
    }

    .contact-right input,
    .contact-right textarea {
        width: 100%;
        padding: 12px 16px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        margin-bottom: 15px;
        background-color: #fff;
        color: #333;
        top: 0;
    }

    .contact-right textarea {
        resize: vertical;
        min-height: 100px;
    }

    .contact-right button {
        width: auto;
        padding: 0.5rem 3rem;
        border: none;
        background-color: #3c51c4;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .contact-right button:hover {
        background-color: #5c65d1;
    }

    @media (max-width: 768px) {
        .contact-container {
            flex-direction: column;
            align-items: stretch;
            padding: 40px 20px;
        }
    }


    section.inner-about1 {
        padding-block: 0rem;
    }


    .about-text1 {
        padding-block: 5rem;
    }

    .about-text1 h2 {
        margin-block: 4rem 2rem;
        color: #000;
    }

    .highlight-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 5rem;
    }

    .highlight-box {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .cta-section.sell-buy-action button {
        border-radius: 50px !important;

        border: 4px solid #3c51c4;
        padding-inline: 4rem;
        padding-block: .8rem;
        letter-spacing: 3px;
    }

    .blog-detail.mpblog-post-index .sidebar.sidebar-main {
        float: none;
        width: 100%;
    }

    .blog-detail.mpblog-post-index .column.main {
        width: 100%;
        float: none;
        padding: 0;
    }

    .blog-detail.mpblog-post-index .columns {
        display: flex;
        flex-direction: column;
    }


    .blog-detail.mpblog-post-index ul.block-content.menu-categories.category-level2 {
        display: flex;
    }

    .blog-detail.mpblog-post-index .col-xs-12 {
        display: flex;
    }

    .main_section.home-blogs .container {
        padding: 0;
    }

    .main_section.home-blogs h2.section-title {
        display: none;
    }

    .blog-detail.mpblog-post-index main#maincontent {
        padding-block: 2rem;
        padding-inline: 0;
    }

    .blog-detail.mpblog-post-index .breadcrumbs {
        padding: 1rem 0px;
    }

    .blog-detail.mpblog-post-index .breadcrumbs ul {
        display: flex;
        align-items: center;
    }


    .blog-detail.mpblog-post-index .breadcrumbs .item:not(:last-child):after {
        top: 5px;
        position: relative;
    }

    .blog-detail.mpblog-post-index .breadcrumbs ul li a,
    .blog-detail.mpblog-post-index .breadcrumbs ul li {
        font-size: 1rem;
    }

    .blog-detail.mpblog-post-index .sidebar.sidebar-main p.block-mp-sidebar-heading {
        font-size: 2.2rem;
    }

    .blog-detail.mpblog-post-index .post-list-body {
        display: flex;
        flex-wrap: wrap;
    }

    .blog-detail.mpblog-post-index .item.product.product-item {
        width: 50%;
    }



    .blog-detail.mpblog-post-index .pages .item {
        padding-inline: 1rem;
        padding-block: 1rem;
        width: 25px;
        height: 25px;
    }

    .blog-detail.mpblog-post-index .pages strong.page.pages strong.page {
        width: 15px;
        height: 15px;
    }

    .blog-detail.mpblog-post-index .pages strong.page {
        width: 45px;
        display: inline-block;
        border-radius: 50px;
        height: 45px;
    }

    .blog-detail.mpblog-post-index .pages a {
        width: 45px;
        display: inline-block;
        border-radius: 50px;
        height: 45px;
        color: #fff
    }

    .blog-detail.mpblog-post-index ul.items.pages-items {
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: inherit;
    }


    .blog-detail.mpblog-post-index .limiter {
        display: flex !important;
        align-items: center;
        font-size: 14px;
    }

    .blog-detail.mpblog-post-index select#limiter {
        top: 0;
        font-size: 14px;
    }

    .blog-detail {
        padding-block: 0 !important
    }

    .blog-detail.mpblog-post-index #hideminicart {
        display: none !important;
    }

    #hideminicart {
        display: none !important;
    }

    .products-grid .product-item-info {
        margin: 0px;
        border: 0px;
        padding: 0px;
        box-shadow: inherit;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .products-grid .product-item-info:hover,
    .products-grid .product-item-info.active {
        margin: 0px;
        border: 0px;
        padding: 0px;
        box-shadow: inherit;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    a.product-item-link {
        font-size: 18px;
    }

    /* .product-item .price-box .price-label {display: none;} */
    .field.limiter {
        display: none !important;
    }

    .pages strong.page,
    .pages .item a {
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }


    ul.items.pages-items {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        align-content: center;
    }



    .toolbar.toolbar-products .pages {
        text-align: center;
        width: 100%;
    }

    /* .toolbar.toolbar-products {
        display: none;
    }
    .breadcrumbs {
        display: none;
    } */

    .cart-summary._sticky {
        width: 100%;
        float: none;
        order: 2;
        position: static;
        background: none;
    }

    .cart-container .form-cart {
        width: 100%;
        float: none;
        padding: 0;
        order: 1;
    }

    .cart-container {
        display: flex;
        flex-wrap: wrap;
    }

    .cart.table-wrapper .product-item-details {
        padding: 0;
        align-content: center;
    }

    .cart.table-wrapper .product-item-name+.item-options {
        display: flex;
        margin: 0px;
    }

    .cart.table-wrapper .item-options dd {
        margin-right: 2rem;
    }

    .cart.table-wrapper .col.price {
        align-content: center;
        padding: 0;
        text-align: left;
    }

    .cart.table-wrapper .col.qty {
        align-content: center;
        text-align: left !important;
        padding: 0px;
    }

    .cart.table-wrapper .col.subtotal {
        align-content: center;
        text-align: left !important;
        padding: 0px 2rem 0 0;
    }

    tr.item-info {
        background: #f8f8f8;
    }

    .cart.table-wrapper .cart>.item {
        border: 0px;
        margin-top: 2rem;
        width: 100%;
        position: relative;
        border-bottom: 15px solid #fff;
    }

    .cart.table-wrapper .product-item-details a {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .cart.table-wrapper .col.price span.price {
        font-size: 24px;
        color: #041e43;
    }


    td.col.subtotal span.price {
        font-size: 24px;
        color: #041e43;
    }

    tr.item-actions {
        position: absolute;
        right: .8rem;
        z-index: 9;
        bottom: 3rem;
    }

    .cart.table-wrapper .item .col.item {
        padding-top: 0;
        padding-bottom: 0;
    }

    .cart.table-wrapper .cart>.item img.product-image-photo {
        width: 120px;
        height: 120px;
    }

    /* .cart.table-wrapper .actions-toolbar > .action-edit {
        display: none;
    } */
    .cart.table-wrapper .col.qty .input-text {
        height: 36px;
        margin-top: 15px;
        text-align: center;
        width: 60px;
        border: 1px solid #ddd;
        border-radius: 30px;
    }

    /* .cart-discount {
        display: none;
    }

    .cart-summary > .title {
        display: none;
    } */

    div#cart-totals {
        border: 0px;
    }

    .cart-totals .grand .mark {
        font-size: 1.5rem;
    }

    .cart-totals .grand strong {
        font-size: 1.5rem;
        color: #041e43;
    }

    .cart-summary .checkout-methods-items .action.primary.checkout {
        width: auto;
        border-radius: 50px;
        padding-inline: 4rem;
        margin-right: auto;
        font-size: 1.5rem;
        background: #3e51c3;
        padding-block: 0.5rem;
        border: 0px;
    }

    ul.checkout.methods.items.checkout-methods-items {
        text-align: right;
    }

    .field.qty {
        padding-inline: 2rem;
    }

    .opc-wrapper {
        width: 100%;
        background: none;
        padding: 0px;
    }

    aside.modal-custom.opc-sidebar.opc-summary-wrapper.custom-slide {
        width: 100%;
        float: none;
        margin: 0;
    }

    .opc-estimated-wrapper {
        background: #fff;
        border: 0px;
        margin: 0px !important;
    }

    .opc-estimated-wrapper .estimated-block {
        float: none;
    }

    .opc-block-summary {
        background: none;
        float: none;
    }



    .minicart-items .product-item-details .details-qty span {
        font-size: 1.2rem;
    }

    .opc-block-summary .product-item .price {
        font-size: 1.2rem;
    }

    .minicart-items .product .toggle {
        font-size: 1.2rem;
    }

    dl.item-options {
        display: flex;
        font-size: 1rem;
    }

    dl.item-options dd {
        margin-right: 1rem !important;
        font-size: 1rem;
    }

    .opc-block-summary .items-in-cart>.title {
        font-size: 0.8rem;
    }

    .opc-block-summary .items-in-cart>.title strong {
        font-size: 1.4rem;
    }

    .opc-block-summary>.title {
        font-size: 1.6rem;
    }

    .checkout-payment-method .step-title {
        font-size: 1.5rem;
    }

    .checkout-payment-method .payment-method-content>.actions-toolbar>.primary .action.primary {
        font-size: 1.5rem;
        padding-block: .5rem;
        padding-inline: 2rem;
        border-radius: 30px;
        background: #3c51c4;
        border-color: #3c51c4;
    }

    .checkout-payment-method .payment-method-content>.actions-toolbar>.primary .action.primary {
        font-size: 1.5rem;
        padding-block: .5rem;
        padding-inline: 2rem;
        border-radius: 30px;
        background: #3c51c4;
        border-color: #3c51c4;
    }

    fieldset.fieldset {
        margin: 0;
    }

    .checkout-payment-method .billing-address-form {
        max-width: 100%;
        width: 100%;
        display: block;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="file"],
    select,
    textarea {
        width: 100%;
        max-width: 100%;
        border: none;
        border-bottom: 1px dotted #000;
        padding: 5px 0;
        font-size: 14px;
        background: transparent;
        outline: none;
        border-radius: 0px;
        display: inline-block;
        position: relative;
        top: -.5rem;
    }

    .customer-account-login .page-wrapper {
        background: #041d44;
    }



    .login-container {
        color: #fff;
        padding-block: 6rem 0;
    }

    .login-container .block .block-title {
        border: 0px;
        font-weight: 900;
        font-size: 1.6rem;
    }

    .login-container .block .block-title strong {
        font-weight: bold;
    }

    form#login-form input[type="text"],
    form#login-form input[type="email"],
    form#login-form input[type="password"] {
        background: #fff;
        height: auto;
        padding-block: 1rem;
        color: #000;
        padding-inline: 1rem;
    }


    button.action.primary {
        border: 1px solid #3c51c4;
        background: none;
        border-radius: 50px;
        padding-inline: 3rem;
    }

    a.action.create.primary {
        border: 1px solid #3c51c4;
        background: none;
        border-radius: 50px;
        padding-inline: 3rem;
    }



    .block.block-new-customer {
        height: 400px;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

    /* .catalog-product-view .product-info-main .product-info-price .price-box .price-container span.price-label {
        display: none;
    } */

    .catalog-product-view .column.main {
        padding-block: 5rem;
    }

    .product-info-main .product-info-stock-sku {
        display: block;
        float: none;
        text-align: left;
        padding: 0;
    }



    .product-info-main .product-info-price .price-box .price-container>span span.price {
        font-size: 1.8rem;
        color: #041d44;
    }

    .product-info-main .product-add-form {
        padding-top: 0px;
        order: 2;
        width: 100%;
    }

    .product-add-form .product-options-wrapper .field .control {
        width: 100%;
    }

    select:disabled {
        border: 0px;
        border-bottom: 1px solid #ddd;
    }

    .field.qty {
        padding: 0;
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .product-options-bottom label.label {
        margin: 0px !important;
    }


    .box-tocart .input-text.qty {
        top: 0;
        border-radius: 50px;
        border: 1px solid #3e51c3;
        padding-inline: 1rem;
        text-align: center;
    }

    .box-tocart .action.tocart {
        color: #041d44;
        font-size: 1.4rem;
    }

    .product-info-main .product.attribute.overview h1 {
        font-size: 1.8rem;
        color: #041d44;
        font-weight: 600;
    }

    /* .product-social-links {
        display: none;
    } */

    .product-info-main {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .product-info-main .product.attribute.overview {
        order: 1;
        margin: 0;
    }

    /* .product-info-main .product-info-stock-sku {
        display: none;
    } */

    .product-info-main .product-info-price {
        border: 0px;
        margin-bottom: 0px;
    }

    /* .product.attribute.description {
        display: none;
    } */

    /* .page-main.page-main-details {
        display: none;
    } */

    .catalog-product-view .columns {
        padding-bottom: 0rem;
    }

    .main-footer .block.newsletter button.action.subscribe.primary {
        background-color: #0f95e6;
        color: var(--white);
        padding: .5rem 3rem;
        width: 100%;
        font-size: 15px;
        border-radius: 0px;
    }

    .block-minicart .subtotal {
        margin: 0 10px 10px;
        text-align: right;
        color: #000;
    }

    .block-minicart .block-content>.actions>.primary .action.primary {
        display: block;
        width: 100%;
        color: #041d44;
        font-size: 1.4rem;
        padding-block: .5rem;
    }

    .minicart-items .product-item-name a {
        color: #041d44;
        font-size: 1rem;
        font-weight: 600;
    }

    .minicart-items .product .toggle {
        color: #000;
        font-size: 1rem;
    }

    .block-minicart dl.product.options.list {
        color: #000;
        font-size: 1rem;
        display: flex;
    }

    .block-minicart dl.product.options.list dd {
        margin-right: 1rem !important;
    }

    .minicart-items .product-item-details .details-qty {
        margin-top: 10px;
        color: #041d44;
        font-size: 1rem;
    }

    .minicart-items .product-item-details .price {
        font-weight: 700;
        color: #041d44;
    }

    .minicart-items .item-qty {
        text-align: center;
        width: 60px;
        border-radius: 50px;
        border: 1px solid #000;
        top: 0;
        margin-left: 1rem;
    }

    .block-minicart .block-content>.actions>.secondary a.action.viewcart {
        color: #000;
    }

    div#checkout-step-payment {
        display: grid;
        grid-template-columns: 50% 50%;
    }


    /* .payment-option._collapsible.opc-payment-additional.discount-code {
        display: none;
    } */

    form.form.form-login {
        border: 0;
    }

    .blog_list a:active,
    a:hover,
    a:visited {
        color: white;
    }

    .product-info-main .product.attribute.sku {
        display: none !important;
    }

    #description {
        display: none !important;
    }


    .breadcrumbs {
        display: none;
    }

    a.product-item-link {
        color: #000 !important;
        min-height: 71px;
    }

    strong.product.name.product-item-name {
        min-height: 56px;
        align-content: center;
    }

    .inner-banner-head {
        text-align: right;
        color: #000;
    }

    .inner-banner-text {
        text-align: left;
        color: #000;
        font-size: 1.5rem;
        width: 38%;
        align-items: center;
        align-content: center;
        position: relative;
        top: 4rem;
        left: 6rem;
    }

    .products.wrapper.grid.products-grid .toolbar.toolbar-products {
        display: block;
    }

    .toolbar.toolbar-products:nth-child(3) {
        display: none;
    }

    .filter-options-content a:hover {
        background: none;
        color: #041d44 !important;
    }

    .swatch-option.text {
        height: auto;
        background: none !important;
        border: 2px solid #3e51c3;
        font-weight: normal;
        color: #0a2c56 !important;
        border-radius: 5px;
        padding-inline: .5rem;
        font-size: 1rem;
    }


    .block-actions.filter-actions a {
        color: #000 !important;
    }

    .filter .block-subtitle {
        border: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1.1rem;
        padding-bottom: 0;
    }

    .block-minicart .subtitle.empty {
        display: block;
        font-size: 14px;
        padding: 30px 0 20px;
        text-align: center;
        color: #000;
    }

    .filter-value {
        color: #757575;
        border: 1px solid #000;
        padding-inline: .5rem;
        background: #3e51c3;
        padding-block: .2rem;
        color: #fff;
        border-radius: 5px;
    }

    .swatch-option.text {
        height: auto;
    }

    input.swatch-input.super-attribute-select {
        display: none;
    }

    .swatch-option.text {
        height: auto;
    }

    input.swatch-input.super-attribute-select {
        display: none;
    }

    .box-tocart .action.tocart:hover {
        color: #fff;
        background: #3e51c3;
    }

    .swatch-option.selected {
        background: #3e51c3 !important;
        color: #fff !important;
        border-color: #3e51c3 !important;
        outline: #3e51c3 !important;
    }

    .toolbar.toolbar-products #toolbar-amount {
        display: none;
    }

    .page-main-details .product-section-title {
        border-bottom: 1px solid #c6c6c6;
        margin-bottom: 15px;
        padding-bottom: 12px;
        display: none !important;
    }

    .pdp-tabs {
        display: flex;
        border-bottom: 3px solid #3d56a5;
        position: relative;
        margin-bottom: 20px;
    }

    .pdp-tab {
        background: none;
        border: none;
        padding: 12px 20px;
        cursor: pointer;
        font-size: 16px;
        color: #333;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        position: relative;
    }

    .pdp-tab.active {
        color: #fff;
        background-color: #3d56a5;
    }

    .pdp-tab.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #3d56a5;
    }

    .pdp-tab-content {
        display: none;
    }

    .pdp-tab-content.active {
        display: block;
    }

    /*header sticky css*/


    .panel.wrapper.sticky .panel.header {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .panel.wrapper.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: white;
        /* optional */
    }

    .panel.wrapper.sticky .panel.header {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    li.dropdown li ul li a {
        font-weight: normal;
        font-size: .8rem;
    }

    li.dropdown a {
        position: relative;
    }

    li.dropdown:hover>a:after {
        content: "";
        width: 100%;
        height: 170px;
        position: absolute;
        bottom: 0;
        top: 100%;
        left: 0;
    }

    li.dropdown:nth-child(2) .medical_menu_list {
        max-height: 100%;
    }

    section.hero .container {
        max-width: 100%;
        padding: 0;
    }

    .y-video iframe {
        width: 100%;
        height: 54vh;
    }

    .blur-price {
        filter: blur(5px);
        transition: filter 0.3s ease;
    }

    @media (max-width:1642px) {
        .blue-box {
                max-width: 100%;
            }
        
    }

    .stickyCart
 {
    background: #3c51c4 !important;
}
.stickyCart .stickyChild #btnSticky:hover
 {
    background: #3c51c4 !important;
}
.stickyCart .stickyChild .clSticky .quantity .qty {
    color: white !important;
    top: 0 !important;
    width: 90px !important;
}
.stickyCart .btn-plus {
    top: -5px !important;
}

@media (min-width: 768px) {

    .page-header {
        width: 100%;
        transition: box-shadow 0.3s ease;
    }

    .page-header.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;

        background: #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);

        animation: headerSlideDown 0.35s ease forwards;
    }

    .page-wrapper {
        transition: padding-top 0.3s ease;
    }

    @keyframes headerSlideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }

}
@media (min-width: 768px){
    .page-header .header.panel {
        max-width: 95% !important;
    }
}

@media (max-width:1300px) {

    .sticky-note .logo img {
            height: 48px;
        }
                  nav.main-nav li {
                      margin-right: 2rem;
                      margin-bottom: 0;
                  }
    
}