/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Marcellus", sans-serif;
    --nav-font: "DM Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4bc1b9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529; /* The default color of the main navmenu links */
    --nav-hover-color: #4bc1b9; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4bc1b9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #e7fefc;
    --default-color: #000000;
    --heading-color: #000000;
    --accent-color: #ffffff;
    --surface-color: #ffffff;
    --contrast-color: #4bc1b9;
}

.dark-background {
    --background-color: #4bc1b9;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--default-color);
    text-decoration:none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
       
    }

.cslink a, .cslink:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
.gelbtn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 35px;
    border-radius: 0px;
    border:none;
    line-height:1;
}

    .gelbtn:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

.newsletter .gelbtn {
    border:none;
    width:100%;
}

.redclr, .redtext {
    color: #c32f00;
}
 .cslink {
    text-decoration: underline;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #1d2626;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 997;
}

    .header .topbar {
        margin: 0;
        padding: 5px 0;
        display: block;
        font-size: 14px;
        color: #000;
        border-bottom: 1px solid #eee;
    }

        .header .topbar .cslink i {
            margin-right: 5px;
        }

        .header .topbar i {
            color: #4bc1b9;
        }

        .header .topbar .contact-info {
            display: flex;
            align-items: center;
        }

        .header .topbar .c-content {
            display: flex;
            align-items: center;
            color: #1d2626;
            padding: 3px 10px 3px 5px;
            margin-right: 5px;
            border-right: 1px solid #000;
        }

            .header .topbar .c-content:last-child {
                border-right: 0;
            }

            .header .topbar .c-content a {
                color: #1d2626;
            }

        .header .topbar .social-links {
            float: inline-end;
        }

            .header .topbar .social-links a {
                font-size: 15px;
            }

    .header .main-header {
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .header .main-header .logo {
            line-height: 1;
            max-height: 105px;
            padding-left: 0;
        }

            .header .main-header .logo img {
                max-height: 90px;
                padding: 5px 0;
            }

        .header .main-header .header-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .header .main-header .header-actions {
            gap: 5px;
            padding-left: 1.2rem;
            padding-right: 0;
        }

            .header .main-header .header-actions .header-action-btn {
                position: relative;
                background: none;
                border: none;
                padding: 0.5rem;
                color: #1d2626;
                font-size: 10px;
                cursor: pointer;
                transition: color 0.3s ease;
            }

                .header .main-header .header-actions .header-action-btn i {
                    font-size: 15px;
                }

                    .header .main-header .header-actions .header-action-btn i.bi-person {
                        font-size: 18px;
                    }

                .header .main-header .header-actions .header-action-btn:hover {
                    color: #4bc1b9;
                }

                .header .main-header .header-actions .header-action-btn .badge {
                    position: absolute;
                    top: -5px;
                    right: -5px;
                    background-color: #4bc1b9;
                    color: var(--contrast-color);
                    font-size: 10px;
                    padding: 2px 6px;
                    border-radius: 10px;
                    min-width: 18px;
                    height: 18px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

        .header .main-header .account-dropdown .dropdown-menu {
            background-color: var(--surface-color);
            min-width: 280px;
            padding: 0;
            border-radius: 6px;
            margin-top: 0.75rem;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .header .main-header .account-dropdown .dropdown-menu .dropdown-header {
                padding: 1.25rem;
                border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
                    margin: 0 0 0.25rem;
                    color: #4bc1b9;
                    font-size: 16px;
                }

                .header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
                    font-size: 13px;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
                padding: 1.25rem;
                background-color: color-mix(in srgb, var(--default-color), transparent 97%);
                border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
                    font-size: 14px;
                    padding: 0.5rem 1rem;
                    background-color: #4bc1b9;
                    border-color: #4bc1b9;
                    color: #fff;
                    transition: 0.3s;
                    border-radius: 50px;
                }

                    .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn:hover {
                        background-color: #6CE1D9;
                    }

                .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
                    border-color: #4bc1b9;
                    background-color: transparent;
                    color: #4bc1b9;
                }

                    .header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
                        background-color: #6CE1D9;
                        color: var(--contrast-color);
                    }


@media (max-width: 600px) {
    .main-header {
        display: flex;
    }

    .mobile-nav-toggle {
        display: visible;
    }

    .navmenu a:not(:first-child) {
        display: none;
    }

    .navmenu a.icon {
        float: right;
        display: block;
    }

    .navmenu.responsive {
        position: relative;
    }

        .navmenu.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .navmenu.responsive a {
            float: none;
            display: block;
            text-align: left;
        }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    --background-color: rgba(110, 178, 173, 0.755);
    --heading-color: #464a4d;
    --contrast-color: #252525;
    padding: 24px 0 0;
    color: #1b2626;
    font-size: 14px;
}

    .footer .wrapper {
        background-color: #ccf3ef;
    }

    .footer h4 {
        color: #1b2626;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .footer .footer-contact p {
        line-height: 1.7;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links ul li {
            padding: 5px 0;
        }

    .footer .footer-links a {
        color: #1b2626;
        text-decoration: none;
        font-size: 13px;
    }

        .footer .footer-links a:hover {
            color: #4bc1b9;
        }

    .footer .footer-newsletter p {
        font-size: 13px;
    }

    .footer .footer-newsletter .newsletter-form {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 6px 8px;
        position: relative;
        border-radius: 0;
        border: 1px solid #4bc1b9;
        display: flex;
        background-color: #fff;
        transition: 0.3s;
    }

    .footer .pay-methods p {
        font-size: 12px;
    }

    .footer .social-links .aligning {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .footer .social-links .icons {
        display: flex;
        gap: 8px;
    }

        .footer .social-links .icons a {
            font-size: 1.2rem;
            color: #1b2626;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

            .footer .social-links .icons a:hover {
                background-color: #4bc1b9;
                color: white;
                border-color: #4bc1b9;
            }



    .footer .container.copyright {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px;
        background-color: #f8f8f8;
        border-top: 1px solid #eee;
    }

    .footer .terms-cont {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

        .footer .terms-cont a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
        }

            .footer .terms-cont a:hover {
                color: #4bc1b9;
            }

    .footer .text-end {
        text-align: right;
    }

        .footer .text-end p {
            margin-bottom: 0;
            color: #777;
            font-size: 0.85rem;
        }

    .footer .sitename {
        color: #333;
    }

.copyright-txt {
    text-align: end;
}

@media (max-width: 768px) {
    .footer .container.copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .terms-cont {
        justify-content: center;
        margin-bottom: 15px;
        gap: 8px;
    }

    .copyright-txt {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.container-fluid {
    padding: 0 50px;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .container-fluid {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .container-fluid {
        padding: 0 15px;
    }
}

.form-group {
    margin-bottom: 15px;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-weight: 600;
        margin-bottom: 15px;
        color: #202020;
    }

    .section-title p {
        font-family: var(--heading-font);
        font-size: 16px;
        width: 50%;
        margin: 0 auto;
    }

@media (max-width: 991px) {
    .section-title p {
        width: 100%;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding-top: 60px;
    margin-bottom: 1pc;
    padding-bottom: 60px;
}

    .features .features-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0rem;
        position: relative;
    }

@media (max-width: 1199px) {
    .features .features-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "image image" "left right";
    }

        .features .features-grid .center-image {
            grid-area: image;
            justify-self: center;
        }

        .features .features-grid .left-column {
            grid-area: left;
        }

        .features .features-grid .right-column {
            grid-area: right;
        }
}

@media (max-width: 768px) {
    .features .features-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "left" "right";
    }
}

.features .features-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features .feature-card {
    display: flex;
    gap: 0;
    padding: 1.75rem;
    border-radius: 0;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .features .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .features .feature-card .content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 0.75rem;
        transition: color 0.3s ease;
    }

    .features .feature-card .content p {
        font-size: 15px;
        margin-bottom: 0;
        line-height: 1.6;
        font-weight: 100;
    }

.features .center-image {
    position: relative;
    align-self: center;
}

    .features .center-image .device-wrapper {
        position: relative;
        padding: 0px;
        z-index: 2;
    }

        .features .center-image .device-wrapper img {
            max-height: 550px;
            position: relative;
            z-index: 5;
        }

        .features .center-image .device-wrapper .shape-decoration {
            position: absolute;
            width: 150%;
            height: 70%;
            top: 15%;
            left: -25%;
            border-radius: 50%;
            z-index: 1;
            filter: blur(40px);
        }

.features .card-left {
    position: absolute;
    bottom: 20px;
    background-color: #e7fefc;
    box-shadow: none;
    z-index: 99;
    border-radius: 0;
    left: 150px;
}

.features .card-right {
    background-color: #4bc1b9;
    top: 100px;
    box-shadow: none;
    z-index: 99;
    border-radius: 0;
    right: 5pc;
    position: relative;
    color: #fff;
}

    .features .card-right h3 {
        color: #fff;
    }

.features .more-btn {
    background-color: #fff;
    color: #4bc1b9;
    border-radius: 0;
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .features .feature-card {
        padding: 1.5rem;
    }

        .features .feature-card .icon-wrapper {
            width: 60px;
            height: 60px;
            min-width: 60px;
        }

            .features .feature-card .icon-wrapper i {
                font-size: 24px;
            }

        .features .feature-card .content h3 {
            font-size: 17px;
        }

    .features .center-image .device-wrapper img {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .features .features-column {
        gap: 1.5rem;
    }

    .features .center-image {
        margin: 2rem 0;
    }

        .features .center-image .device-wrapper img {
            max-height: 400px;
        }

        .features .center-image .shape-decoration {
            width: 120%;
            height: 60%;
        }
}



/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 {
    padding: 60px 0;
}

    .features-3 .container {
        border: 1px solid #eee;
        padding: 0;
    }

    .features-3 .pr-0 {
        padding-right: 0;
    }

    .features-3 .pl-0 {
        padding-left: 0;
        margin: 0;
    }

    .features-3 .features-item + .features-item {
        margin-top: 0px;
    }

    .features-3 .features-item .content {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        padding: 30px;
        border-radius: 0px;
    }

    .features-3 .features-item h3 {
        font-weight: 700;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .features-3 .features-item .more-btn {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 10px 35px;
        border-radius: 0px;
    }

        .features-3 .features-item .more-btn:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

    .features-3 .features-item ul {
        list-style: none;
        padding: 0;
    }

        .features-3 .features-item ul li {
            padding-bottom: 10px;
            display: flex;
            align-items: center;
        }

            .features-3 .features-item ul li:last-child {
                padding-bottom: 0;
            }

        .features-3 .features-item ul i {
            font-size: 20px;
            margin-right: 10px;
            color: var(--accent-color);
        }

    .features-3 .features-item img {
        border-radius: 0;
        width: 100%;
    }

/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .product-list .section-title p {
        font-size: 15px;
        width: 50%;
        margin: 0 auto;
    }

    .product-list .product-card {
        position: relative;
        height: 100%;
        background-color: var(--accent-color);
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

        .product-list .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

    .product-list .product-image {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
        background-color: #f8f9fa;
    }

        .product-list .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

    .product-list .product-tags {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
    }

    .product-list .product-actions {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        z-index: 2;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

        .product-list .product-actions button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--surface-color);
            border: none;
            color: var(--heading-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: background-color 0.3s ease, color 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

            .product-list .product-actions button:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
            }

            .product-list .product-actions button i {
                font-size: 1rem;
            }

    .product-list .product-card:hover .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .product-list .product-info {
        padding: 1.25rem;
    }

    .product-list .product-title {
        font-family: var(--heading-font);
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 300;
        height: 2.4rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-align: center;
    }

        .product-list .product-title a {
            color: var(--heading-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .product-list .product-title a:hover {
                color: var(--accent-color);
            }

    .product-list .product-price {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 300;
        gap: 0.5rem;
    }

        .product-list .product-price .current-price {
            font-size: 1.125rem;
            font-weight: 300;
            color: var(--heading-color);
        }

        .product-list .product-price .original-price {
            font-size: 0.875rem;
            text-decoration: line-through;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .product-list .product-rating {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: #ffc107;
        font-size: 0.875rem;
    }

        .product-list .product-rating i {
            margin-right: 2px;
        }

        .product-list .product-rating .rating-count {
            margin-left: 4px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 0.75rem;
        }

    .product-list .btn-add-to-cart {
        padding: 10px 25px;
        margin: 10px auto 0;
        background-color: var(--contrast-color);
        color: var(--accent-color);
        border: none;
        border-radius: 0;
        font-size: 0.875rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

        .product-list .btn-add-to-cart:hover {
            background-color: color-mix(in srgb, var(--contrast-color), #000 10%);
        }

        .product-list .btn-add-to-cart i {
            font-size: 1rem;
        }

        .product-list .btn-add-to-cart.btn-disabled {
            background-color: #e9ecef;
            color: #6c757d;
            cursor: not-allowed;
        }

            .product-list .btn-add-to-cart.btn-disabled:hover {
                background-color: #e9ecef;
            }

@media (max-width: 991.98px) {
    .product-list .product-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .product-list .product-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .product-list .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

.center-block {
    display: block;
    margin: 0 auto;
}
/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about {
    padding-bottom: 0;
}

    .about .section-title {
        margin-bottom: 0;
        padding-bottom: 0;
    }

        .about .section-title p {
            width: 100%;
        }

    .about .btnweb {
        background-color: #fff;
        padding: 10px 25px;
        color: #000;
        margin-right: 25px;
    }

    .about .values-section {
        position: relative;
        z-index: 1;
    }

        .about .values-section ::before {
            content: "";
            width: 100%;
            height: 85%;
            position: absolute;
            background-color: var(--accent-color);
            z-index: -1;
            left: 0;
            top: 25%;
        }

        .about .values-section .values-content {
            text-align: center;
        }

            .about .values-section .values-content .values-title {
                color: #fff;
                font-size: 20px;
                font-weight: 300;
                line-height: 1.2;
                margin-top: 70px;
                margin-bottom: 1rem;
                text-transform: uppercase;
            }

@media (min-width: 768px) {
    .about .values-section .values-content .values-title {
        font-size: 25px;
    }
}

.about .values-section .values-content .values-desc {
    color: #fff;
    font-size: 14px;
}

.about .values-section .values-content .values-list .value-item {
    display: flex;
    margin-bottom: 1.5rem;
}

    .about .values-section .values-content .values-list .value-item .value-icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }

        .about .values-section .values-content .values-list .value-item .value-icon i {
            color: var(--accent-color);
            font-size: 1.5rem;
        }

    .about .values-section .values-content .values-list .value-item .value-text h4 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: inline;
    }

    .about .values-section .values-content .values-list .value-item .value-text p {
        display: inline;
        margin-left: 0.5rem;
    }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.gray-bg-4 {
    background: #f8f8f8;
}

/*--------------------------------------------------------------
# Instagram 
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

    .gallery .section-title h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        line-height: 1;
    }

        .gallery .section-title h2 img {
            padding: 0 10px;
        }

        .gallery .section-title h2 a {
            color: #000;
            text-decoration: underline;
        }


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 10px;
}

    .contact .info {
        background-color: var(--surface-color);
        padding: 40px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

        .contact .info h3 {
            font-weight: 600;
            font-size: 24px;
        }

        .contact .info p {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 30px;
            font-size: 15px;
        }

    .contact .info-item + .info-item {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .contact .info-item i {
        font-size: 24px;
        color: var(--accent-color);
        transition: all 0.3s ease-in-out;
        margin-right: 20px;
    }

    .contact .info-item h4 {
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .contact .php-email-form {
        width: 100%;
    }

        .contact .php-email-form .form-group {
            padding-bottom: 8px;
        }

        .contact .php-email-form input[type=text],
        .contact .php-email-form input[type=email],
        .contact .php-email-form textarea {
            color: var(--default-color);
            background-color: var(--surface-color);
            border-radius: 0px;
            box-shadow: none;
            font-size: 14px;
            border-color: color-mix(in srgb, var(--default-color), transparent 80%);
        }

            .contact .php-email-form input[type=text]:focus,
            .contact .php-email-form input[type=email]:focus,
            .contact .php-email-form textarea:focus {
                border-color: var(--accent-color);
            }

            .contact .php-email-form input[type=text]::placeholder,
            .contact .php-email-form input[type=email]::placeholder,
            .contact .php-email-form textarea::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .contact .php-email-form input[type=text],
        .contact .php-email-form input[type=email] {
            height: 48px;
            padding: 10px 15px;
        }

        .contact .php-email-form textarea {
            padding: 10px 12px;
            height: 290px;
        }

        .contact .php-email-form button[type=submit] {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: 0;
            padding: 13px 50px;
            transition: 0.4s;
            border-radius: 4px;
        }

            .contact .php-email-form button[type=submit]:hover {
                background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
            }


.pay-methods {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}

/*Search*/
div#offcanvasTop {
    margin: 2pc;
    height: 155px;
    width: Calc(100% - 4pc)
}

.txtsearch {
    width: Calc(100% - 60px)
}

.Searchpnl {
    flex-direction: row;
    justify-content: space-between
}

.searchicon {
    width: 40px;
    height: 40px
}

a#searchbtn {
    color: #fff;
    padding: 7px 10px;
    line-height: 2.5
}

.offcanvas-body {
    padding: 0 2pc
}

.offcanvas-header.text-center {
    padding: 1pc 2pc
}

.closem, .closem:hover {
    position: absolute;
    right: -17px;
    top: -16px;
    background: #4bc1b9;
    border: 0;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    z-index: 99
}

.Searchpnl {
    flex-direction: row;
    justify-content: space-between;
}

.Searchpnl, div#Serchpnl {
    display: flex;
}

.contact-stores {
    display: none;
}

.all-pages {
    display: block;
}

.contact-info-grid .contact-stores {
    display: block;
}

.contact-info-grid .all-pages {
    display: none;
}

@media (max-width: 991.98px) {
    .container-fluid, .container {
        padding: 0 20px;
    }

    .container-fluid, .container {
        max-width: 100% !important;
    }

    .header .main-header .header-actions {
        gap: 0.5rem;
    }

        .header .main-header .header-actions .header-action-btn {
            padding: 0.25rem;
        }

            .header .main-header .header-actions .header-action-btn i {
                font-size: 20px;
            }

                .header .main-header .header-actions .header-action-btn i.bi-person {
                    font-size: 22px;
                }
}

@media (max-width: 768px) {
    .pay-methods, .footer .social-links {
        justify-content: center;
    }

    .footer .social-links {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .header .topbar .contact-info {
        display: block;
    }

    .header .topbar span {
        padding: 5px 0;
        margin-right: 0;
        border-right: 0px solid #000;
    }

    .header .topbar .c-content {
        border-right: 0;
        padding: 3px 0;
        margin: 0;
    }
}

@media(max-width:576px) {
    .pay-methods {
        display: flex;
        align-items: center;
        flex-direction: column;
        row-gap: 8px;
    }

    .copyright-txt {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .topbar .contact-info .c-content span {
        display: none;
    }

    .header .topbar .contact-info {
        display: flex;
    }

    .topbar .col-9, .topbar .col-3 {
        flex: 0 0 auto;
        width: 50%;
    }
}
