/*---------------------------------------------------------------------------------------
    Project: Erona
    Description: Erona - Fashion eCommerce HTML5 Template with Bootstrap 5
    Author: Spacingtech
    Support: spacingtech10@gmail.com
    Version: 1.0.0
    Primary use: Suitable E-Commerce business startups
---------------------------------------------------------------------------------------*/

/*----------------------------------[Table of contents]----------------------------------
# font css
# root css (including color-codes & typography)
# general css
# 'html', 'body', 'h1 to h6' css
# 'section' css
# 'p' css
# 'container', 'container-fluid' css
# 'row' css
# 'a' css
# 'button' css
# 'ul' css
# 'input', 'textarea', 'select' css
# preloader css
# notification-bar css
# header css
# header-menu css
# breadcrumb-area css
# footer css
# mobile-menu css
# search-bar css
# search-modal css
# cart-drawer css
# bottom-menu css
# bg-screen css
# back-to-top css
# banner-hover css
# quantity css
# add-to-cart css
# review-ratting css
# social-icon css
# custom-checkbox, radio, switch css
# pagination css
# magnific-popup css
# slider-swiper css
# slider-arrow css
# slider-dot css
# view-button css
# keyframes css
# animation css
---------------------------------------------------------------------------------------*/

/************************************* font start *************************************/
/*====================================
    google font
====================================*/
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap');
/************************************* font end *************************************/

/************************************* root start *************************************/
/*=====================================
    root
=====================================*/
:root {
    /* body */
    --body-font-color: #666666;
    --body-font-size: 16px;
    --body-bgcolor: #ffffff;
    --body-font-family: 'Urbanist', sans-serif;
    --body-font-weight: 500;
    --body-font-style: normal;
    --body-font-letter-spacing: 0px;

    /* heading */
    --heading-font-color: #333333;
    --heading-font-family: 'Urbanist', sans-serif;
    --heading-font-weight: 700;
    --heading-font-style: normal;

    /* section-heading */
    --section-heading-font-color: #333333;
    --section-heading-font-family: 'Urbanist', sans-serif;
    --section-heading-font-text: none;
    --section-heading-font-weight: 700;
    --section-heading-font-style: normal;
    --section-heading-font-line-height: 1.2;

    /* paragraph */
    --paragraph-font-line-height: 25px; 

    /* general color */
    --primary-font-color: #ff6633;
    --secondary-font-color: #333333;
    --tertiary-font-color: #ffcc33;
    --extra-font-color: #ffffff;
    --extra-bgcolor: #f8f8f7;
    --product-new-sale-label-bgcolor: #ff6633;
    --product-discount-label-bgcolor: #3cb371;
    --product-sold-label-bgcolor: #b02b28;
    --product-review-color: #ffa500;

    /* border */
    --border-color: 112,112,112;
    --border-opacity: 0.1;
    --border-radius: 0px;
    --border-radius2: 0px;

    /* box-shadow */
    --box-shadow-outer: 51, 51, 51;
    --box-shadow-outer-opacity: 0.15;
    --box-shadow-inner: 51, 51, 51;
    --box-shadow-inner-opacity: 0.15;
}
/************************************* root end *************************************/

/************************************* general start *************************************/
/*=====================================
    body property css
=====================================*/
.body-color,
.body-primary-color,
.body-secondary-color {
    color: var(--body-font-color);
}
.primary-link {
    color: var(--heading-font-color);
}
.body-primary-color,
.body-secondary-color,
.primary-link {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
/* .body-primary-color:hover,
.primary-link:hover {
    color: var(--primary-font-color);
} */
.body-secondary-color:hover {
    color: var(--secondary-font-color);
}
.body-bg {
    background-color: var(--body-bgcolor);
}
.body-weight {
    font-weight: var(--body-font-weight);
}

/*=====================================
    heading property css
=====================================*/
.heading-color {
    color: var(--heading-font-color);
}
.heading-weight {
    font-weight: var(--heading-font-weight);
}
.section-heading-family {
    font-family: var(--section-heading-font-family);
}
.section-heading-text {
    text-transform: var(--section-heading-font-text);
}
.section-heading-weight {
    font-weight: var(--section-heading-font-weight);
}
.section-heading-lh {
    line-height: var(--section-heading-font-line-height);
}

/*=====================================
    general property css
=====================================*/
.primary-color {
    color: var(--primary-font-color);
}
.primary-bg {
    background-color: var(--primary-font-color);
}
.secondary-color {
    color: var(--secondary-font-color);
}
.secondary-bg {
    background-color: var(--secondary-font-color);
}
.tertiary-color {
    color: var(--tertiary-font-color);
}
.tertiary-bg {
    background-color: var(--tertiary-font-color);
}
.extra-color {
    color: var(--extra-font-color);
}
.extra-bg {
    background-color: var(--extra-bgcolor);
}
.primary-btn {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border: 1px solid var(--primary-font-color);
}
.primary-btn:hover {
    color: var(--secondary-font-color);
    background-color: var(--tertiary-font-color);
    border-color: var(--tertiary-font-color);
}
.secondary-btn {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border: 1px solid var(--secondary-font-color);
}
.secondary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);    
}
.tertiary-btn {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border: 1px solid var(--primary-font-color);
}
.tertiary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
.quaternary-btn {
    color: var(--secondary-font-color);
    background-color: transparent;
    border: 1px solid var(--secondary-font-color);
}
.quaternary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
.quinary-btn {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border: 1px solid var(--secondary-font-color);
}
.quinary-btn:hover {
    color: var(--secondary-font-color);
    background-color: var(--tertiary-font-color);
    border-color: var(--tertiary-font-color);
}
.primary-btn, .secondary-btn, .tertiary-btn, .quaternary-btn, .quinary-btn {
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.link-btn {
    display: inline-block;
    color: var(--primary-font-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
}
.link-body-primary, .link-body-secondary {
    color: var(--body-font-color);
}
.link-primary-color {
    color: var(--primary-font-color);
}
.link-secondary-color {
    color: var(--secondary-font-color);
}
.link-body-primary, .link-body-secondary, .link-primary-color, .link-secondary-color {
    display: inline-block;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
    -webkit-transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.link-body-primary:hover, .link-primary-color:hover {
    color: var(--primary-font-color);
}
.link-body-secondary:hover, .link-secondary-color:hover {
    color: var(--secondary-font-color);
}

/*=====================================
    extra property css
=====================================*/
.review-color {
    color: var(--product-review-color);
}
.review-bg {
    background-color: var(--product-review-color);
}
/************************************* general end *************************************/

/************************************* 'html', 'body', 'h1 to h6' start *************************************/
/*=====================================
    html css
=====================================*/
html {
    scroll-behavior: smooth;
}

/*=====================================
    body css
=====================================*/
body {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    background-color: var(--body-bgcolor);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    line-height: normal;
    letter-spacing: var(--body-font-letter-spacing);
    word-break: break-word;
}

/*=====================================
    heading css
=====================================*/
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-font-color);
    margin: 0;
    padding: 0;
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    line-height: normal;
}
/************************************* 'html', 'body', 'h1 to h6' end *************************************/

/************************************* section start *************************************/
/*=====================================
    section-capture css
=====================================*/
.section-capture {
    margin-bottom: 30px;
    overflow-x: hidden;
}
.section-capture span.sub-title {
    display: block;
    color: var(--primary-font-color);
    margin-bottom: 6px;
}
/* .section-capture .section-title {
    display: flex;
    justify-content: center;
} */
/* .section-capture .section-title h2 {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
} */
/* .section-capture .section-title h2::before,
.section-capture .section-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100vw;
    height: 1px;
    background-color: rgba(var(--border-color), var(--border-opacity));
}
.section-capture .section-title h2::before {
    left: 0;
    transform: translateX(-100%);
} */
.section-capture .section-title h2::after {
    right: 0;
    transform: translateX(100%);
}
.section-capture p.section-desc {
    margin-top: 6px;
}

@media (min-width: 1200px) {
    .section-capture {
        margin-bottom: 60px;
    }
    .section-capture p.section-desc {
        width: 83.33%;
        margin-top: 13px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1400px) {
    .section-capture p.section-desc {
        width: 75%;
    }
}
@media (min-width: 1600px) {
    .section-capture p.section-desc {
        width: 66.66%;
    }
}

/*=====================================
    section-heading css
=====================================*/
.section-heading {
    color: var(--section-heading-font-color);
    font-size: 24px;
    font-family: var(--section-heading-font-family);
    text-transform: var(--section-heading-font-text);
    font-weight: var(--section-heading-font-weight);
    font-style: var(--section-heading-font-style);
    line-height: var(--section-heading-font-line-height);
}
@media (min-width: 1200px) {
    .section-heading {
        font-size: 40px;
    }
}

/*=====================================
    section padding css
=====================================*/
.section-ptb {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-pt {
    padding-top: 50px;
}
.section-pb {
    padding-bottom: 50px;
}
@media (min-width: 1200px) {
    .section-ptb {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .section-pt {
        padding-top: 100px;
    }
    .section-pb {
        padding-bottom: 100px;
    }
}

/*=====================================
    section-bgimg css
=====================================*/
.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
/************************************* section end *************************************/

/************************************* 'p' start *************************************/
/*=====================================
    paragraph css
=====================================*/
p {
    margin: 0;
    line-height: var(--paragraph-font-line-height);
}
.p-mtm15, .p-mtm20, .p-mtm30 {
    display: flex;
    flex-wrap: wrap;
}
.p-mtm15>*, .p-mtm20>*, .p-mtm30>* {
    width: 100%;
}

/*=====================================
    p-mtm15 css
=====================================*/
.p-mtm15 {
    margin-top: -1px;
}
.p-mtm15>* {
    margin-top: 1px;
}

/*=====================================
    p-mtm20 css
=====================================*/
.p-mtm20 {
    margin-top: -6px;
}
.p-mtm20>* {
    margin-top: 6px;
}

/*=====================================
    p-mtm30 css
=====================================*/
.p-mtm30 {
    margin-top: -16px;
}
.p-mtm30>* {
    margin-top: 16px;
}

/*=====================================
    p-bullets css
=====================================*/
.p-bullets {
    position: relative;
    padding-left: 17px;
}
.p-bullets::before {
    content: "\f3c1";
    font-family: remixicon;
    color: var(--heading-font-color);
    font-size: 7px;
    position: absolute;
    left: 0;
    font-weight: var(--heading-font-weight);
}
/************************************* 'p' end *************************************/

/************************************* 'container', 'container-fluid' start *************************************/
/*=====================================
    'container' css
=====================================*/
.container {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 1600px) {
    .container {
        max-width: 1380px;
    }
}

/*=====================================
    'container-fluid' css
=====================================*/
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 1500px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 1600px) {
    .container-fluid {
        padding-left: 80px;
        padding-right: 80px;
    }
}
@media (min-width: 1800px) {
    .container-fluid {
        padding-left: 150px;
        padding-right: 150px;
    }
}
/************************************* 'container', 'container-fluid' end *************************************/

/************************************* 'row' start *************************************/
/*=====================================
    row, col css
=====================================*/
.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.row>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (min-width: 768px) {
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*=====================================
    row-mtm15 css
=====================================*/
.row-mtm15 {
    margin-top: -15px;
}
.row-mtm15>* {
    margin-top: 15px;
}

/*=====================================
    row-mtm20 css
=====================================*/
.row-mtm20 {
    margin-top: -12px;
}
.row-mtm20>* {
    margin-top: 12px;
}

/*=====================================
    row-mtm-20 css
=====================================*/
.row-mtm-20 {
    margin-top: -20px;
}
.row-mtm-20>* {
    margin-top: 20px;
}

/*=====================================
    row-pmtm20 css
=====================================*/
.row-pmtm20 {
    margin-top: -6px;
}
.row-pmtm20>* {
    margin-top: 6px;
}

/*=====================================
    row-mtm css
=====================================*/
/* .row-mtm {
    margin-top: -30px;
}
.row-mtm>* {
    margin-top: 30px;
} */

/*=====================================
    row-mtm30 css
=====================================*/
.row-mtm30 {
    margin-top: -15px;
}
.row-mtm30>* {
    margin-top: 15px;
}
@media (min-width: 768px) {
    .row-mtm30 {
        margin-top: -30px;
    }
    .row-mtm30>* {
        margin-top: 30px;
    }
}

/*=====================================
    row-mtm50 css
=====================================*/
.row-mtm50 {
    margin-top: -30px;
}
.row-mtm50>* {
    margin-top: 30px;
}
@media (min-width: 1200px) {
    .row-mtm50 {
        margin-top: -50px;
    }
    .row-mtm50>* {
        margin-top: 50px;
    }
}

/*=====================================
    row-mtm100 css
=====================================*/
.row-mtm100 {
    margin-top: -50px;
}
.row-mtm100>* {
    margin-top: 50px;
}
@media (min-width: 1200px) {
    .row-mtm100 {
        margin-top: -100px;
    }
    .row-mtm100>* {
        margin-top: 100px;
    }
}
/************************************* 'row' end *************************************/

/************************************* 'a' start *************************************/
/*=====================================
    'a' tag css
=====================================*/
a {
    color: var(--heading-font-color);
    text-decoration: none;
}
a:focus, .page-link:focus, .active>.page-link, .page-link.active {
    outline: none;
    box-shadow: none;
}
/************************************* 'a' end *************************************/

/************************************* button start *************************************/
/*=====================================
    'button' tag css
=====================================*/
button {
    display: inline-block;
    padding: 0px;
    background: 0 0;
    font-family: var(--body-font-family);
    border: none;
}
button, button:focus {
    outline: none;
    box-shadow: none;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: none;
    box-shadow: none;
}

/*=====================================
    btn-row css
=====================================*/
.btn-row {
    margin-top: -15px;
}
.btn-row>* {
    margin-top: 15px;
}

/*=====================================
    btn-row15 css
=====================================*/
.btn-row15 {
    margin-top: -15px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.btn-row15>* {
    margin-top: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

/*=====================================
    btn-style css
=====================================*/
.btn-style {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-radius: var(--border-radius);
}

/*====================================
    disabled css
====================================*/
button.disabled, a.disabled {
    pointer-events: none;
    opacity: 0.5;
}
/************************************* button end *************************************/

/************************************* ul start *************************************/
/*=====================================
    'ul' tag css
=====================================*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* .ul-row, .ul-mt5, .ul-mt10, .ul-mt15, .ul-mtm15, .ul-mtm-15, .ul-mtm20, .ul-mt30, .ul-mtm30, .ul-ft {
    display: flex;
    flex-wrap: wrap;
} */
.ul-mtm-15>*, .ul-mtm20>*, .ul-mtm30>*, .ul-ft>* {
    width: 100%;
}
.ul-row, .ul-mt15, .ul-mtm15, .ul-mt30 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.ul-row>*, .ul-mt15>*, .ul-mtm15>*, .ul-mt30>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (min-width: 768px) {
    .ul-row, .ul-mtm15, .ul-mt30 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .ul-row>*, .ul-mtm15>*, .ul-mt30>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*=====================================
    ul-mt5 css
=====================================*/
.ul-mt5 {
    margin-top: -5px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.ul-mt5>* {
    margin-top: 5px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

/*=====================================
    ul-mt10 css
=====================================*/
.ul-mt10 {
    margin-top: -10px;
    margin-left: -5px;
    margin-right: -5px;
}
.ul-mt10>* {
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

/*=====================================
    'ul-row', 'ul-mt15' css
=====================================*/
.ul-row, .ul-mt15 {
    margin-top: -15px;
}
.ul-row>*, .ul-mt15>* {
    margin-top: 15px;
}

/*=====================================
    ul-mtm15 css
=====================================*/
.ul-mtm15 {
    margin-top: -7px;
}
.ul-mtm15>* {
    margin-top: 7px;
}

/*=====================================
    ul-mtm-15 css
=====================================*/
.ul-mtm-15 {
    margin-top: -7px;
}
.ul-mtm-15>* {
    margin-top: 7px;
}

/*=====================================
    ul-mtm20 css
=====================================*/
.ul-mtm20 {
    margin-top: -12px;
}
.ul-mtm20>* {
    margin-top: 12px;
}

/*=====================================
    ul-mt30 css
=====================================*/
.ul-mt30 {
    margin-top: -0px;
}
.ul-mt30>* {
    margin-top: 15px;
}
@media (min-width: 768px) {
    .ul-mt30 {
        margin-top: -0px;
    }
    .ul-mt30>* {
        margin-top: 30px;
    }
}

/*=====================================
    ul-mtm30 css
=====================================*/
.ul-mtm30 {
    margin-top: -22px;
}
.ul-mtm30>* {
    margin-top: 22px;
}

/*=====================================
    ul-ft css
=====================================*/
.ul-ft {
    margin-top: -12px;
}
.ul-ft>* {
    margin-top: 12px;
}
/************************************* ul end *************************************/

/************************************* input, select, textarea start *************************************/
/*=====================================
    'input', 'select', 'textarea' tag css
=====================================*/
input, select, textarea {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    background-color: var(--extra-bgcolor);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    border: 0px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
input, select {
    height: 48px;
}
input, textarea {
    padding: 10px 15px;
}
textarea {
    display: block;
}

/*=====================================
    placeholder css
=====================================*/
input::-webkit-input-placeholder, input::placeholder, textarea::-webkit-input-placeholder, textarea::placeholder {
    color: var(--body-font-color);
}

/*=====================================
    msg_error css
=====================================*/
input.msg_error, textarea.msg_error {
    color: var(--extra-font-color);
    --bs-bg-opacity: 0.5;
    --bs-danger-opacity: 0.5;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
    border-color: rgba(var(--bs-danger-rgb), var(--bs-danger-opacity));
}
input.msg_error::-webkit-input-placeholder, input.msg_error::placeholder, textarea.msg_error::-webkit-input-placeholder, textarea.msg_error::placeholder {
    color: var(--extra-font-color);
}

/*=====================================
    focus css
=====================================*/
input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active {
    outline: none;
    border-color: rgba(var(--border-color),var(--border-opacity));
    box-shadow: none;
}

/*=====================================
    select css
=====================================*/
select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    padding: 10px 30px 10px 15px;
}

/*=====================================
    field-row css
=====================================*/
.field-row {
    margin-top: -16px;
}
.field-row>* {
    margin-top: 16px;
}
@media (min-width: 768px) {
    .field-row {
        margin-top: -26px;
    }
    .field-row>* {
        margin-top: 26px;
    }
}

/*====================================
    input[type=file] attachment css
====================================*/
.field-row .field-col .field-attachment {
    position: relative;
    z-index: 1;
    border: 0px dashed var(--primary-font-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.field-row .field-col .field-attachment::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-font-color);
    opacity: 0.1;
    z-index: -1;
}
.field-row .field-col .field-attachment label {
    cursor: pointer;
}
.field-row .field-col .field-attachment .field-attached button {
    font-size: 12px;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
}
.field-row .field-col .field-attachment .field-attached img {
    width: 88px;
}

/*=====================================
    input-password css
=====================================*/
.field-row .field-col label.field-label {
    display: block;
    margin: 0px 0px 11px 0px;
}
.field-row .field-col .field-pwd {
    height: 48px;
    padding: 10px 15px;
    background-color: var(--extra-bgcolor);
    border: 0px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
/************************************* input, textarea, select end *************************************/

/************************************* preloader css start *************************************/
/*====================================
    preloader css
====================================*/
.preloader {
    -webkit-transition: opacity 0.15s ease-in-out,visibility 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out,visibility 0.15s ease-in-out;
}
body.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/************************************* preloader css end *************************************/

/************************************* notification-bar css start *************************************/
/*====================================
    notification-slider swiper css
====================================*/
.notification-bar .notification-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}

/*====================================
    notification-marquee css
====================================*/
.notification-bar .notification-marquee .notification-marquee-row {
    -webkit-animation: slide-left 20s linear infinite;
    animation: slide-left 20s linear infinite;
}
.notification-bar:hover .notification-marquee .notification-marquee-row,
.notification-bar:focus .notification-marquee .notification-marquee-row {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}
/************************************* notification-bar css end *************************************/

/************************************* header css start *************************************/
/*====================================
    header-top-area css
====================================*/
.main-header .header-top-area .header-top-first.header-border {
    position: relative;
}
.main-header .header-top-area .header-top-first.header-border::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(var(--border-color),var(--border-opacity));
}
/************************************* header css end *************************************/

/*====================================
    header-icon css
====================================*/
.header-icon-block ul.header-icon-element li.header-icon-wrap .header-icon-wrapper a span.header-block-icon-wrap span.header-block-counter {
    top: -5px;
    height: 16px;
    width: 16px;
    line-height: 1.1;
}

/************************************* header-menu css start *************************************/
/*====================================
    mainmenu-content css
====================================*/
.mainmenu-content {
    margin: 0px -15px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: var(--heading-font-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
/* .mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link {
    color: var(--primary-font-color);
} */
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title {
    position: relative;
}
/* .mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: 0px auto;
    background-color: var(--primary-font-color);
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link span.menu-title::after {
    width: 100%;
} */
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover .menu-dropdown.collapse:not(.show) {
    display: block;
}

/*====================================
    menu-sub css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right {
    position: relative;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub {
    min-width: 230px;
    border-radius: var(--border-radius);
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right .menu-dropdown.menu-sub {
    left: auto;
    right: 0;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menu-sublink a {
    color: var(--body-font-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li:hover .menu-sublink a {
    color: var(--primary-font-color);
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown {
    top: 0;
    left: 100%;
    overflow-y: auto;
    border-radius: var(--border-radius);
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li.menu-bottom .menusub-dropdown {
    top: auto;
    bottom: 0;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown,
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li.menu-right .menusub-dropdown {
    left: auto;
    right: 100%;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li:hover .menusub-dropdown.collapse:not(.show) {
    display: block;
}

/*====================================
    menu-mega css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-mega .menu-overview {
    column-count: 6;
    column-gap: 30px;
}
/************************************* header-menu css end *************************************/

/************************************* breadcrumb-area css start *************************************/
/*====================================
    breadcrumb-area css
====================================*/
.breadcrumb-area {
    position: relative;
    z-index: 1;
}
/* .breadcrumb-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.2;
    z-index: -1;
} */
.breadcrumb-area span a {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.breadcrumb-area span a:hover {
    opacity: 0.7;
}
/************************************* breadcrumb-area css end *************************************/

/************************************* footer css start *************************************/
/*====================================
    footer-list css
====================================*/
.footer-area .footer-list .ft-list {
    margin-top: 15px;
}
.footer-area .footer-list .ft-list:first-child {
    margin: 0px;
}
@media (min-width: 768px) {
    .footer-area .footer-list .ft-list {
        margin: 0px;
    }
}

/*====================================
    footer-title css
====================================*/
.footer-area .footer-list .ft-list a.ft-title {
    padding-top: 15px;
    border-top: 1px solid rgba(var(--border-color),var(--border-opacity));
}
.footer-area .footer-list .ft-list:only-child a.ft-title,
.footer-area .footer-list .ft-list:first-child a.ft-title {
    padding: 0px;
    border: none;
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="false"] {
    color: var(--heading-font-color);
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="true"] {
    color: var(--primary-font-color);
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="true"] span.ftmenu-icon i::before {
    content: "\f1af";
}

/*====================================
    footer-link css
====================================*/
@media (min-width: 768px) {
    .footer-area .footer-list .footer-menu .ft-link.collapse:not(.show) {
        display: block;
    }
}
/************************************* footer css end *************************************/

/************************************* mobile-menu css start *************************************/
/*====================================
    mobile-menu css
====================================*/
.mobile-menu {
    left: -350px;
    width: 350px;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: left 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: left 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.mobile-menu.active {
    left: 0px;
}
@media screen and (max-height: 600px) {
    .mobile-menu {
        overflow-y: auto;
    }
}

/* mobile-contents css */
.mobile-menu .mobile-contents {
    height: 100%;
}
@media screen and (max-height: 600px) {
    .mobile-menu .mobile-contents {
        height: auto;
    }
}

/*====================================
    mobilemenu-content css
====================================*/
.mobilemenu-content {
    overflow-y: auto;
}
.mobilemenu-content .main-wrap ul.menu-ul {
    margin-top: -1px;
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button,
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="false"],
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn span a {
    color: var(--body-font-color);
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"],
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"] + span a {
    color: var(--primary-font-color);
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"] i::before {
    content: "\f1af";
}
/************************************* mobile-menu css end *************************************/

/************************************* search-bar css start *************************************/
/*====================================
    search-bar css
====================================*/
form.search-form .search-bar .form-search input {
    border-radius: var(--border-radius) 0px 0px var(--border-radius);
}
form.search-form .search-bar .form-search button {
    border-radius: 0px var(--border-radius) var(--border-radius) 0px;
}
/************************************* search-bar css end *************************************/

/************************************* search-modal css start *************************************/
/*====================================
    search-results css
====================================*/
.search-bar .search-results .search-for span::before {
    content: '"';
}
.search-bar .search-results .search-for span::after {
    content: '"';
}
.search-bar .search-results ul.search-ul {
    margin-top: -1px;
    max-height: 206px;
    overflow-y: auto;
}
/************************************* search-modal css end *************************************/

/************************************* cart-drawer css start *************************************/
/*====================================
    cart-drawer css
====================================*/
.cart-drawer {
    right: -450px;
    width: 450px;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: right 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: right 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.cart-drawer.active {
    right: 0px;
}
@media screen and (max-height: 600px) {
    .cart-drawer {
        overflow-y: auto;
    }
}

/*====================================
    drawer-contents css
====================================*/
.cart-drawer form.drawer-contents {
    height: 100%;
}
@media screen and (max-height: 600px) {
    .cart-drawer form.drawer-contents {
        height: auto;
    }
}

/*====================================
    drawer-inner css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable {
    margin-top: -1px;
}

/*============================================
    drawer-recommended-product swiper css
============================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 33.33%;
}

/* drawer-recommended product-image css */
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-image a.pro-img {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* drawer-recommended product-content css */
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content {
    text-align: center;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price {
    margin-top: 5px;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price .price-box {
    justify-content: center;
}

/*====================================
    drawer-instruction css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a span.drawer-instruction-icon,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a[aria-expanded="false"] span.drawer-instruction-icon {
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a[aria-expanded="true"] span.drawer-instruction-icon {
    transform: scaleY(-1);
}

/*====================================
    drawer-footer css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-footer .drawer-cart-checkout .drawer-cart-box {
    margin-top: -4px;
}
/************************************* cart-drawer css end *************************************/

/************************************* bottom-menu css start *************************************/
/*====================================
    bottom-menu css
====================================*/
.bottom-menu .bottom-menu-element a span.bottom-menu-icon-wrap span.bottom-menu-counter {
    top: -5px;
    width: 15px;
    height: 15px;
    line-height: 1.1;
}
/************************************* bottom-menu css end *************************************/

/************************************* bg-screen css start *************************************/
/*====================================
    bg-screen css
====================================*/
.bg-screen .bg-back,
.bg-screen .bg-shop,
.without-shop-sidebar .bg-screen .bg-back {
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
@media (min-width: 1200px) {
    .bg-screen .bg-back {
        display: none;
    }
    .without-shop-sidebar .bg-screen .bg-back {
        display: block;
    }
}
/************************************* bg-screen css end *************************************/

/************************************* back-to-top css start *************************************/
/*====================================
    back-to-top css
====================================*/
a#top {
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
/************************************* back-to-top css end *************************************/

/************************************* banner-hover css start *************************************/
/*====================================
    banner-hover css
====================================*/
.banner-hover .banner-img .banner-icon {
    transform: translate(-50%,-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.banner-hover .banner-img .banner-btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.banner-hover:hover .banner-img .banner-btn,
.banner-hover:hover .banner-img .banner-icon {
    opacity: 1;
    visibility: visible;
}
.banner-hover .banner-img img {
    -webkit-transition: transform 0.3s ease-in-out,filter 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,filter 0.3s ease-in-out;
}
.banner-hover:hover .banner-btn img,
.banner-hover:hover .banner-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.banner-hover:hover .banner-img .banner-btn + img,
.banner-hover:hover .banner-img .banner-icon + img {
    -webkit-filter: brightness(0.95);
    filter: brightness(0.95);
}

/*====================================
    video css
====================================*/
.video .video-loader {
    display: none;
}
.video .video-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--body-bgcolor);
    opacity: 0.8;
}
.video .video-loader span svg {
    width: 56px;
    -webkit-animation: rotator 1s linear infinite;
    animation: rotator 1s linear infinite;
}
.video .video-loader span svg circle {
    stroke-dashoffset: 0;
    stroke-dasharray: 280;
    transform-origin: center;
    -webkit-animation: dash 1s ease-in-out infinite;
    animation: dash 1s ease-in-out infinite;
}
.video .video-img .banner-video-icon {
    position: relative;
}
.video .video-img .banner-video-icon::before,
.video .video-img .banner-video-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    background-color: var(--body-bgcolor);
    z-index: -1;
    border-radius: 100%;
}
.video .video-img .banner-video-icon::before {
    -webkit-animation: hoverEffect 2s linear infinite;
    animation: hoverEffect 2s linear infinite;
}
.video .video-img .banner-video-icon::after {
    -webkit-animation: hoverEffect 4s linear infinite;
    animation: hoverEffect 4s linear infinite;
}
.video .video-img img,
.video video {
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
}
.video .video-frame {
    display: none;
}
.video video {
    display: none;
    object-fit: cover;
    object-position: center;
}
/************************************* banner-hover css end *************************************/

/************************************* quantity css start *************************************/
/*====================================
    quantity css
====================================*/
.js-qty-wrapper {
    width: 112px;
}
.js-qty-wrapper .js-qty-wrap button.js-qty-adjust {
    width: 32px;
    height: 32px;
}
.js-qty-wrapper .js-qty-wrap input.js-qty-num {
    width: calc(100% - 64px);
    height: 32px;
    background-color: var(--body-bgcolor);
}

/* Chrome, Safari, Edge, Opera */
.js-qty-wrapper .js-qty-wrap input.js-qty-num::-webkit-outer-spin-button,
.js-qty-wrapper .js-qty-wrap input.js-qty-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
.js-qty-wrapper .js-qty-wrap input.js-qty-num[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.js-qty-wrapper .js-qty-wrap input.js-qty-num[type="number"]:hover,
.js-qty-wrapper .js-qty-wrap input.js-qty-num[type="number"]:focus {
    -moz-appearance: number-input;
    appearance: number-input;
}
/************************************* quantity css end *************************************/

/************************************* add-to-cart css start *************************************/
/*====================================
    add-to-cart css start
====================================*/
.add-to-cart.loading span.product-icon span.product-bag-icon,
.add-to-cart.done span.product-icon span.product-bag-icon {
    display: none;
}
.add-to-cart span.product-icon span.product-loader-icon {
    display: none;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.add-to-cart.loading span.product-icon span.product-loader-icon {
    display: block;
}
.add-to-cart span.product-icon span.product-check-icon {
    display: none;
}
.add-to-cart.done span.product-icon span.product-check-icon {
    display: block;
}
/************************************* add-to-cart css end *************************************/

/************************************* review-ratting css start *************************************/
/*====================================
    review-ratting css
====================================*/
span.review-ratting {
    display: flex;
    flex-wrap: wrap;
    margin-top: -9px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
span.review-ratting>* {
    margin-top: 9px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}
span.review-ratting span.review-star {
    color: var(--product-review-color);
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
}
span.review-ratting span.review-star i {
    margin: 0px 0px 0px 3px;
}
span.review-ratting span.review-star i:first-child {
    margin: 0;
}
span.review-ratting span.review-average {
    display: none;
    font-size: 14px;
}
span.review-ratting span.review-average span.review-caption {
    margin-left: 4px;
}
span.review-ratting span.review-average span.review-caption::before {
    content: "(";
}
span.review-ratting span.review-average span.review-caption::after {
    content: ")";
}
/************************************* review-ratting css end *************************************/

/************************************* social-icon css start *************************************/
/*====================================
    social-icon css
====================================*/
.behance {
    color: #3a67fa;
}
.bg-behance {
    background-color: #3a67fa;
}
.dribbble {
    color: #ea4c89;
}
.bg-dribbble {
    background-color: #ea4c89;
}
.facebook {
    color: #3b5998;
}
.bg-facebook {
    background-color: #3b5998;
}
.instagram {
    background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-instagram {
    background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.linkedin {
    color: #0a66c2;
}
.bg-linkedin {
    background-color: #0a66c2;
}
.pinterest {
    color: #e60023;
}
.bg-pinterest {
    background-color: #e60023;
}
.twitter {
    color: #00acee;
}
.bg-twitter {
    background-color: #00acee;
}
.youtube {
    color: #cd201f;
}
.bg-youtube {
    background-color: #cd201f;
}
/************************************* social-icon css end *************************************/

/************************************* custom-checkbox, radio, switch css start *************************************/
/*====================================
    custom-checkbox css
====================================*/
label.cust-checkbox-label {
    display: table;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
label.cust-checkbox-label input.cust-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
label.cust-checkbox-label span.cust-check {
    float: left;
    position: relative;
    top: 2px;
    width: 15px;
    height: 15px;
    background-color: var(--body-bgcolor);
    margin: 0px 5px 0px 0px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
label.cust-checkbox-label:hover span.cust-check,
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check {
    box-shadow: inset 0px 0px 5px rgba(var(--box-shadow-inner),var(--box-shadow-inner-opacity));
}
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check {
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
label.cust-checkbox-label span.cust-check::after {
    display: none;
    content: "\eb7a";
    font-family: 'remixicon' !important;
    color: var(--extra-font-color);
    font-size: 13px;
}
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check::after {
    display: block;
}

/*====================================
    custom-checkbox img css
====================================*/
label.cust-checkbox-label img {
    width: 56px;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}
label.cust-checkbox-label input.cust-checkbox:checked ~ img {
    border-color: var(--secondary-font-color);
}

/*====================================
    custom-radio css
====================================*/
label.cust-radio-label {
    display: table;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
label.cust-radio-label input {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
label.cust-radio-label span.cust-check {
    float: left;
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--body-bgcolor);
    margin: 0px 5px 0px 0px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: 50%;
}
label.cust-radio-label input:checked ~ span.cust-check {
    border-color: var(--primary-font-color);
}
label.cust-radio-label span.cust-check::after {
    display: none;
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-font-color);
    border-radius: 50%;
}
label.cust-radio-label input:checked ~ span.cust-check::after {
    display: block;
}
label.cust-radio-label span.cust-text span.cust-other-text {
    font-size: 12px;
}

/*====================================
    custom-switch css
====================================*/
label.cust-switch-label {
    position: relative;
    width: 30px;
    height: 10px;
}
label.cust-switch-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.cust-switch-label span.cust-switch-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: var(--body-bgcolor);
    cursor: pointer;
    border-radius: 25px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    -webkit-transition: background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
label.cust-switch-label input:checked ~ span.cust-switch-slide {
    background-color: var(--primary-font-color);
    border-color: var(--body-bgcolor);
}
label.cust-switch-label span.cust-switch-slide::before {
    content: "";
    position: absolute;
    left: 0px;
    transform: translateX(0%);
    width: 10px;
    height: 20px;
    background-color: var(--primary-font-color);
    border-radius: 25px;
    border: 1px solid var(--primary-font-color);
    -webkit-transition: background-color 0.3s ease-in-out,transform 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out,transform 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
label.cust-switch-label input:checked ~ span.cust-switch-slide::before {
    background-color: var(--body-bgcolor);
    transform: translateX(200%);
    border-color: rgba(var(--border-color),var(--border-opacity));
}
/************************************* custom-checkbox, radio, switch css end *************************************/

/************************************* pagination css start *************************************/
/*====================================
    pagination css
====================================*/
.paginatoin-area ul.pagination-box li.page-item a.page-link {
    color: var(--heading-font-color);
    background-color: var(--body-bgcolor);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.paginatoin-area ul.pagination-box li.page-item a.page-link:not(.icon-16) {
    font-size: var(--body-font-size);
}
.paginatoin-area ul.pagination-box li.page-item:not(.first,.last) a.page-link {
    width: 30px;
    height: 30px;
}

/* pagination page-link active css */
.paginatoin-area ul.pagination-box li.page-item a.page-link:hover {
    color: var(--primary-font-color);
}
.paginatoin-area ul.pagination-box li.page-item a.page-link.active {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
}

/* pagination disabled css */
.paginatoin-area ul.pagination-box li.page-item.disabled a.page-link {
    opacity: 0.5;
}
/************************************* pagination css end *************************************/

/************************************* magnific-popup css start *************************************/
/*==============================
    magnific-popup css
==============================*/
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.95;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-container.mfp-iframe-holder {
    width: auto;
    left: 15px;
    right: 15px;
}
.mfp-iframe-holder .mfp-close {
    display: block!important;
    font-size: 16px;
    padding: 0;
    height: auto;
    width: auto;
    position: absolute;
    top: -20px;
    right: 0;
    background-color: transparent!important;
    line-height: 1;
}
.mfp-iframe-scaler iframe {
    border: none;
    border-radius: var(--border-radius);
}
/************************************* magnific-popup css end *************************************/

/************************************* slider-swiper css start *************************************/
/*====================================
    slider-swiper margin css
====================================*/
.collection-wrap .collection-product-slider.swiper {
    margin: -15px 0px 0px;
}
.collection-wrap .collection-product-slider.swiper .swiper-wrapper .swiper-slide .single-product {
    margin: 15px 0px 0px;
}
@media (min-width: 768px) {
    .collection-wrap .collection-product-slider.swiper,
    .collection-wrap .collection-product-slider.swiper .swiper-wrapper .swiper-slide .single-product {
        margin: 0px;
    }
}

/*====================================
    product slider-swiper css
====================================*/
.collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 768px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 1200px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}

/*====================================
    blog slider-swiper css
====================================*/
.blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 768px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
/************************************* slider-swiper css end *************************************/

/************************************* slider-arrow css start *************************************/
/*====================================
    slider-arrow css
====================================*/
.shop-cat-wrap,
.cat-wrap,
.brand-wrap,
.collection-wrap,
.testi-wrap,
.blog-wrap {
    position: relative;
}
.shop-cat-wrap .swiper-buttons,
.cat-wrap .swiper-buttons,
.brand-wrap .swiper-buttons,
.collection-wrap .swiper-buttons,
.testi-wrap .swiper-buttons,
.blog-wrap .swiper-buttons {
    display: none;
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}
.shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
.cat-wrap .swiper-buttons .swiper-buttons-wrap,
.brand-wrap .swiper-buttons .swiper-buttons-wrap,
.collection-wrap .swiper-buttons .swiper-buttons-wrap,
.testi-wrap .swiper-buttons .swiper-buttons-wrap,
.blog-wrap .swiper-buttons .swiper-buttons-wrap {
    display: inline-flex;
}
@media (min-width: 768px) {
    .shop-cat-wrap .swiper-buttons,
    .cat-wrap .swiper-buttons,
    .brand-wrap .swiper-buttons,
    .collection-wrap .swiper-buttons,
    .testi-wrap .swiper-buttons,
    .blog-wrap .swiper-buttons {
        margin-top: 0px;
    }
    .shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .brand-wrap .swiper-buttons .swiper-buttons-wrap,
    .collection-wrap .swiper-buttons .swiper-buttons-wrap,
    .testi-wrap .swiper-buttons .swiper-buttons-wrap,
    .blog-wrap .swiper-buttons .swiper-buttons-wrap {
        display: block;
    }
}

/* slider-arrow button css */
.shop-cat-wrap .swiper-buttons button,
.cat-wrap .swiper-buttons button,
.brand-wrap .swiper-buttons button,
.collection-wrap .swiper-buttons button,
.testi-wrap .swiper-buttons button,
.blog-wrap .swiper-buttons button {
    color: var(--secondary-font-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--extra-font-color);
    margin-right: 10px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: 100%;
    box-shadow: rgba(var(--box-shadow-outer),var(--box-shadow-outer-opacity));
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.shop-cat-wrap .swiper-buttons button:last-child,
.cat-wrap .swiper-buttons button:last-child,
.brand-wrap .swiper-buttons button:last-child,
.collection-wrap .swiper-buttons button:last-child,
.testi-wrap .swiper-buttons button:last-child,
.blog-wrap .swiper-buttons button:last-child:last-child {
    margin: 0px;
}
.shop-cat-wrap .swiper-buttons button:hover,
.cat-wrap .swiper-buttons button:hover,
.brand-wrap .swiper-buttons button:hover,
.collection-wrap .swiper-buttons button:hover,
.testi-wrap .swiper-buttons button:hover,
.blog-wrap .swiper-buttons button:hover {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
@media (min-width: 768px) {
    .shop-cat-wrap .swiper-buttons button,
    .cat-wrap .swiper-buttons button,
    .brand-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .testi-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button {
        position: absolute;
        z-index: 1;
        margin-right: 0px;
    }
    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .cat-wrap .swiper-buttons button.swiper-prev,
    .brand-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .testi-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        left: 0;
    }
    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(-50%);
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .brand-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .testi-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(0);
    }
    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .cat-wrap .swiper-buttons button.swiper-next,
    .brand-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .testi-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        right: 0;
    }
    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(50%);
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-next,
    .container-fluid .brand-wrap .swiper-buttons button.swiper-next,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-next,
    .container-fluid .testi-wrap .swiper-buttons button.swiper-next,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(0);
    }
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-buttons button,
    .cat-wrap .swiper-buttons button,
    .brand-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .testi-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 1600px) {
    .container-fluid .cat-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .brand-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .testi-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(-50%);
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-next,
    .container-fluid .brand-wrap .swiper-buttons button.swiper-next,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-next,
    .container-fluid .testi-wrap .swiper-buttons button.swiper-next,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(50%);
    }
}
/************************************* slider-arrow css end *************************************/

/************************************* slider-dot css start *************************************/
/*====================================
    swiper slider-dots css
====================================*/
.shop-cat-wrap .swiper-dots,
.cat-wrap .swiper-dots,
.brand-wrap .swiper-dots,
.collection-wrap .swiper-dots,
.testi-wrap .swiper-dots,
.blog-wrap .swiper-dots {
    margin-top: 30px;
    line-height: 0;
}
.shop-cat-wrap .swiper-dots {
    display: none;
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-dots,
    .cat-wrap .swiper-dots,
    .brand-wrap .swiper-dots,
    .collection-wrap .swiper-dots,
    .testi-wrap .swiper-dots,
    .blog-wrap .swiper-dots {
        margin-top: 60px;
    }
}

/* swiper slider-dots button css */
.shop-cat-wrap .swiper-dots .swiper-pagination,
.cat-wrap .swiper-dots .swiper-pagination,
.brand-wrap .swiper-dots .swiper-pagination,
.collection-wrap .swiper-dots .swiper-pagination,
.testi-wrap .swiper-dots .swiper-pagination,
.blog-wrap .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px 0px 0px -5px;
}
.shop-cat-wrap .swiper-dots .swiper-pagination span,
.cat-wrap .swiper-dots .swiper-pagination span,
.brand-wrap .swiper-dots .swiper-pagination span,
.collection-wrap .swiper-dots .swiper-pagination span,
.testi-wrap .swiper-dots .swiper-pagination span,
.blog-wrap .swiper-dots .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-font-color);
    margin: 5px 0px 0px 5px;
    opacity: 0.15;
    border: 1px solid var(--secondary-font-color);
}
.shop-cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.brand-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.collection-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.testi-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.blog-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
/************************************* slider-dot css end *************************************/

/************************************* view-button css start *************************************/
/*====================================
    view-button css
====================================*/
.view-button {
    margin-top: 30px;
    text-align: center;
}
@media (min-width: 1200px) {
    .view-button {
        margin-top: 60px;
    }
}
/************************************* view-button css end *************************************/

/************************************* scrollbar css start *************************************/
/*====================================
    scrollbar css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown,
.mobile-menu .mobilemenu-content,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable,
.search-bar .search-results ul,
.shop-filter-sidebar,
.tce-area .ck.ck-editor__editable_inline {
    -webkit-scrollbar-width: thin;
    scrollbar-width: thin;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar,
.mobile-menu .mobilemenu-content::-webkit-scrollbar,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar,
.search-bar .search-results ul::-webkit-scrollbar,
.shop-filter-sidebar::-webkit-scrollbar,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar {
    width: 2px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-track,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-track,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-track,
.search-bar .search-results ul::-webkit-scrollbar-track,
.shop-filter-sidebar::-webkit-scrollbar-track,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-track {
    background-color: #eeeeee;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-thumb,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-thumb,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-thumb,
.search-bar .search-results ul::-webkit-scrollbar-thumb,
.shop-filter-sidebar::-webkit-scrollbar-thumb,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-thumb:hover,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-thumb:hover,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-thumb:hover,
.search-bar .search-results ul::-webkit-scrollbar-thumb:hover,
.shop-filter-sidebar::-webkit-scrollbar-thumb:hover,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-font-color);
}
@media (min-width: 768px) {
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info {
        -webkit-scrollbar-width: thin;
        scrollbar-width: thin;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar {
        width: 2px;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-track {
        background-color: #eeeeee;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary-font-color);
    }
}
@media screen and (max-height: 600px) {
    .mobile-menu,
    .cart-drawer {
        -webkit-scrollbar-width: thin;
        scrollbar-width: thin;
    }
    .mobile-menu::-webkit-scrollbar,
    .cart-drawer::-webkit-scrollbar {
        width: 2px;
    }
    .mobile-menu::-webkit-scrollbar-track,
    .cart-drawer::-webkit-scrollbar-track {
        background-color: #eeeeee;
    }
    .mobile-menu::-webkit-scrollbar-thumb,
    .cart-drawer::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
    }
    .mobile-menu::-webkit-scrollbar-thumb:hover,
    .cart-drawer::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary-font-color);
    }
}
/************************************* scrollbar css end *************************************/

/************************************* keyframes css start *************************************/
/*====================================
    loaderProgress keyframes css
====================================*/
@-webkit-keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/*====================================
    loaderText keyframes css
====================================*/
@-webkit-keyframes loaderText {
    0% {
        width: 0%;
    } 100% {
        width: 100%;
    }
}
@keyframes loaderText {
    0% {
        width: 0%;
    } 100% {
        width: 100%;
    }
}

/*====================================
    slide-left keyframes css
====================================*/
@-webkit-keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/*====================================
    slide-right keyframes css
====================================*/
@-webkit-keyframes slide-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slide-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/*====================================
    DropDownSlide keyframes css
====================================*/
@media (min-width: 1200px) {
    .DropDownSlide {
        -webkit-animation-name: DropDownSlide;
        animation-name: DropDownSlide;
        -webkit-animation-duration: 0.3s;
        animation-duration: 0.3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
}
@-webkit-keyframes DropDownSlide {
    0% {
        opacity: 0;
        visibility: hidden;
    } 100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes DropDownSlide {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    } 100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*====================================
    hoverEffect keyframes css
====================================*/
@-webkit-keyframes hoverEffect { 
    0% {
        opacity: 1;
        -webkit-transform: scale(0.1);
        transform: scale(0.1)
    } 100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}
@keyframes hoverEffect {
    0% {
        opacity: 1;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    } 100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

/*====================================
    rotator keyframes css
====================================*/
@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    } 100% {
        transform: rotate(270deg);
    }
}
@keyframes rotator {
    0% {
        transform: rotate(0deg);
    } 100% {
        transform: rotate(270deg);
    }
}

/*====================================
    dash keyframes css
====================================*/
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 280;
    } 50% {
        stroke-dashoffset: 75;
        transform: rotate(135deg);
    } 100% {
        stroke-dashoffset: 280;
        transform: rotate(450deg);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 280;
    } 50% {
        stroke-dashoffset: 75;
        transform: rotate(135deg);
    } 100% {
        stroke-dashoffset: 280;
        transform: rotate(450deg);
    }
}

/*====================================
    spin keyframes css
====================================*/
.spin {
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/************************************* keyframes css end *************************************/

/************************************* animation css start *************************************/
/*====================================
    animation css
====================================*/
[data-animate] {
    opacity: 0
}
[data-animate].animate__animated {
    opacity: 1
}
/************************************* animation css end *************************************/

/* --product--css */

/************************************* product-slider css start *************************************/
/*====================================
    product-slider-big swiper css
====================================*/
.product-detail-slider .product-img-big .product-swiper .swiper:not(.swiper-initialized) .swiper-slide:not([style]),
.product-detail-slider .product-img-big.slider-big-h .swiper:not(.swiper-initialized) .swiper-slide:not([style]),
.product-detail-slider .product-img-big.slider-big-v .swiper:not(.swiper-initialized) .swiper-slide:not([style]),
.product-detail-slider .product-img-big.slider-big-s .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}

/*====================================
    product-img-big css
====================================*/
/* slider-big product-item-img css */
@media (min-width: 1200px) {
    .product-detail-slider .product-img-big .product-swiper-slide .product-item-img:hover span.pro-zoom img.zoomImg {
        cursor: crosshair;
    }
}

/* slider-big navigation css */
.product-detail-slider .product-img-big .swiper-buttons button.swiper-prev {
    left: 15px;
}
.product-detail-slider .product-img-big .swiper-buttons button.swiper-next {
    right: 15px;
}
.product-detail-slider .product-img-big .swiper-buttons button[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

/* slider-big dots css */
.product-detail-slider .product-img-big .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px 0px 0px -5px;
}
.product-detail-slider .product-img-big .swiper-dots .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: transparent;
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--primary-font-color);
}
.product-detail-slider .product-img-big .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}

/*====================================
    product-slider-small swiper css
====================================*/
.product-detail-slider .product-img-small.slider-small-h .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 25%;
}
.product-detail-slider .product-img-small.slider-small-v .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 25%;
}
@media (min-width: 576px) {
    .product-detail-slider .product-img-small.slider-small-v .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 100%;
    }
}

/*====================================
    product-img-small css
====================================*/
.product-detail-slider .product-img-small .product-swiper-slide .product-item-img {
    border: 1px solid transparent;
}
.product-detail-slider .product-img-small .product-swiper-slide .product-item-img:hover,
.product-detail-slider .product-img-small .product-swiper-slide.swiper-slide-thumb-active .product-item-img {
   border-color: var(--heading-font-color);
}
/************************************* product-slider css end *************************************/

/************************************* product-detail-info css start *************************************/
/*====================================
    product-ratting css
====================================*/
.product-detail-info .product-ratting .pro-review-write {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -8px;
    margin-left: -5px;
    margin-right: -5px;
}
.product-detail-info .product-ratting .pro-review-write>* {
    margin-top: 8px;
    padding-left: 5px;
    padding-right: 5px;
}
.product-detail-info .product-ratting .pro-review-write .pro-review span.review-ratting {
    margin-top: -11px;
}
.product-detail-info .product-ratting .pro-review-write .pro-review span.review-ratting>* {
    margin-top: 11px;
}
.product-detail-info .product-ratting .pro-review-write .pro-review span.review-ratting span.review-average {
    display: block;
    font-size: var(--body-font-size);
}

/*====================================
    product-timer css
====================================*/
.product-detail-info .product-timer .product-timer-countdown span.countdown>*::before {
    content: ":";
    margin-right: 4px;
}
.product-detail-info .product-timer .product-timer-countdown span.countdown>*:first-child::before {
    display: none;
}

/*====================================
    product-price css
====================================*/
.product-detail-info .product-price .pro-price-box span.discount-price::before {
    content: "(";
}
.product-detail-info .product-price .pro-price-box span.discount-price::after {
    content: ")";
}

/*====================================
    product-stock css
====================================*/
.product-detail-info .product-stock span.stock-fill,
.product-detail-info .product-stock span.stock-empty {
    position: relative;
    padding-left: 20px;
}
.product-detail-info .product-stock span.stock-fill::before,
.product-detail-info .product-stock span.stock-fill::after,
.product-detail-info .product-stock span.stock-empty::before,
.product-detail-info .product-stock span.stock-empty::after {
    content: "";
    position: absolute;
    --bs-bg-opacity: 1;
    border-radius: 50%;
}
.product-detail-info .product-stock span.stock-fill::before,
.product-detail-info .product-stock span.stock-empty::before {
    top: 6px;
    left: 4px;
    width: 8px;
    height: 8px;
}
.product-detail-info .product-stock span.stock-fill::after,
.product-detail-info .product-stock span.stock-empty::after {
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid;
    --bs-border-opacity: 0.3;
}
.product-detail-info .product-stock span.stock-fill::before {
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
}
.product-detail-info .product-stock span.stock-empty::before {
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity));
}
.product-detail-info .product-stock span.stock-fill::after {
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity));
}
.product-detail-info .product-stock span.stock-empty::after {
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity));
}

/* product-stock-bar css */
.product-detail-info .product-stock .product-stock-bar {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: rgba(var(--border-color), var(--border-opacity));
    --border-opacity: 0.2;
}
.product-detail-info .product-stock .product-stock-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    --bs-bg-opacity: 1;
}
.product-detail-info .product-stock .product-stock-bar.product-stock-fill::after {
    width: 66%;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
}
.product-detail-info .product-stock .product-stock-bar.product-stock-empty::after {
    width: 9%;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
}

/*====================================
    product-offer css
====================================*/
.product-detail-info .product-offer .product-offer-block {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}
/* .product-detail-info .product-offer .product-offer-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-font-color);
    opacity: 0.1;
    z-index: -1;
} */

/*====================================
    product-quantity-action css
====================================*/
.product-detail-info .product-quantity-action .product-quantity .js-qty-wrapper .js-qty-wrap {
    align-items: center;
}
.product-detail-info .product-quantity-action .product-quantity .js-qty-wrapper .js-qty-wrap,
.product-detail-info .product-quantity-action .product-quantity .js-qty-wrapper .js-qty-wrap button.js-qty-adjust,
.product-detail-info .product-quantity-action .product-quantity .js-qty-wrapper .js-qty-wrap input.js-qty-num {
    height: 40px;
}
.product-detail-info .product-quantity-action .product-action .product-notify-stock a {
    padding-left: 0px;
    padding-right: 0px;
}
.product-detail-info .product-quantity-action .product-action button,
.product-detail-info .product-quantity-action .product-action a {
    padding-left: 15px;
    padding-right: 15px;
}

/*====================================
    product-pickup css
====================================*/
.product-detail-info .product-pickup .product-pickup-info {
    position: relative;
    z-index: 1;
}
.product-detail-info .product-pickup .product-pickup-info::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-font-color);
    opacity: 0.1;
    z-index: -1;
}

/*====================================
    product-service css
====================================*/
.product-detail-info .product-service .product-service-info>* {
    position: relative;
    z-index: 1;
}
.product-detail-info .product-service .product-service-info>*::before,
.product-detail-info .product-service .product-service-info>*::after {
    content: "";
    position: absolute;
    top: 26px;
    width: calc(50% - 24px);
    height: 2px;
    background-color: var(--heading-font-color);
    z-index: -1;
}
.product-detail-info .product-service .product-service-info>*::before {
    left: 0;
}
.product-detail-info .product-service .product-service-info>*::after {
    right: 0;
}
.product-detail-info .product-service .product-service-info>*:first-child::before,
.product-detail-info .product-service .product-service-info>*:last-child::after {
    display: none;
}

/*====================================
    product-preorder css
====================================*/
.product-detail-info .product-preorder .product-preorder-info {
    --bs-bg-opacity: 0.1;
    --bs-border-opacity: 0.1;
    border: 1px solid;
}
/************************************* product-detail-info css end *************************************/

/************************************* size-modal css start *************************************/
/*====================================
    size-modal css
====================================*/
.size-modal .size-modal-content .table-img {
    width: 100%;
}
@media (min-width: 400px) {
    .size-modal .size-modal-content .table-img {
        width: 66.67%;
    }
}
@media (min-width: 576px) {
    .size-modal .size-modal-content .table-img {
        width: 75%;
    }
}
/************************************* size-modal css end *************************************/

/************************************* share-modal css start *************************************/
/*====================================
    share-modal css
====================================*/
@media (min-width: 768px) {
    .share-modal .share-modal-content .product-link input {
        border-radius: var(--border-radius) 0px 0px var(--border-radius);
    }
    .share-modal .share-modal-content .product-link button {
        border-radius: 0px var(--border-radius) var(--border-radius) 0px;
    }
}
/************************************* share-modal css end *************************************/

/************************************* product-frequently-bought css start *************************************/
/*====================================
    frequent-image css
====================================*/
.frequent .frequent-group form .frequent-detail .frequent-image ul {
    margin-left: -15px;
    margin-right: -15px;
}
.frequent .frequent-group form .frequent-detail .frequent-image ul>* {
    padding-left: 15px;
    padding-right: 15px;
}
.frequent .frequent-group form .frequent-detail .frequent-image ul li {
    position: relative;
}
.frequent .frequent-group form .frequent-detail .frequent-image ul li::before {
    content: "\f4b2";
    font-family: remixicon !important;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
.frequent .frequent-group form .frequent-detail .frequent-image ul li:first-child::before {
    display: none;
}
.frequent .frequent-group form .frequent-detail .frequent-image ul li span.freq-img.active img {
    border-color: var(--heading-font-color);
}

/*====================================
    frequent-info css
====================================*/
.frequent .frequent-group form .frequent-detail .frequent-info .frequent-content a {
    border-bottom: 1px solid var(--heading-font-color);
}
.frequent .frequent-group form .frequent-detail .frequent-info .frequent-content a[aria-expanded="true"] i {
    transform: scaleY(-1);
}
/************************************* product-frequently-bought css end *************************************/

/************************************* product-detail-tab css start *************************************/
/*====================================
    product-tab-nav css
====================================*/
.product-tab .product-tab-nav ul.nav-tabs {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.product-tab .product-tab-nav ul.nav-tabs>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media(min-width: 768px) {
    .product-tab .product-tab-nav ul.nav-tabs {
        margin-left: -15px;
        margin-right: -15px;
    }
    .product-tab .product-tab-nav ul.nav-tabs>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*====================================
    horizontal-tab css
====================================*/
.product-tab.horizontal-tab .product-tab-nav ul.nav-tabs {
    margin-top: -11px;
}
.product-tab.horizontal-tab .product-tab-nav ul.nav-tabs>* {
    margin-top: 11px;
}
.product-tab.horizontal-tab .product-tab-nav ul.nav-tabs li a {
    color: var(--heading-font-color);
    border-bottom: 2px solid transparent;
    -webkit-transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.product-tab.horizontal-tab .product-tab-nav ul.nav-tabs li a.active {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*====================================
    collapse-tab css
====================================*/
.product-tab .collapse-tab {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--border-color), var(--border-opacity));
}
.product-tab .collapse-tab:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border-top: none;
}
.product-tab .collapse-tab button[aria-expanded="false"] {
    color: var(--heading-font-color);
}
.product-tab .collapse-tab button[aria-expanded="true"] {
    color: var(--primary-font-color);
}
.product-tab .collapse-tab button[aria-expanded="true"] span.tab-icon i::before {
    content: "\f1af";
}

/*====================================
    vertical-tab css
====================================*/
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs {
    margin-top: -16px;
}
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs>* {
    margin-top: 16px;
}
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs li a {
    position: relative;
    z-index: 1;
}
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs li a span {
    color: var(--heading-font-color);
    border-bottom: 2px solid transparent;
    -webkit-transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs li a.active span {
    color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
.product-tab.vertical-tab .product-tab-nav ul.nav-tabs li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--border-color),var(--border-opacity));
    z-index: -1;
}

/*====================================
    product-tab-title css
====================================*/
.product-tab h6.product-tab-title span {
    border-bottom: 2px solid;
}
/************************************* product-detail-tab css end *************************************/

/************************************* product-detail-specifications css start *************************************/
/*========================================
    product-detail-specifications css
========================================*/
.product-specifications-info ul {
    list-style-type: disc;
    padding-left: 17px;
}
/************************************* product-detail-specifications css end *************************************/

/************************************* product-detail-review css start *************************************/
/*====================================
    product-review css
====================================*/
.product-review .product-review-count span.product-review-stars {
    width: 30px;
}
.product-review .product-review-count span.product-review-progress {
    width: calc(100% - 100px);
    height: 5px;
    position: relative;
    z-index: 1;
}
.product-review .product-review-count span.product-review-progress::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--heading-font-color);
    z-index: -1;
    opacity: 0.2;
}
.product-review .product-review-count span.product-review-number {
    width: 50px;
}

/*====================================
    product-review-form css
====================================*/
.product-review .product-review-form .product-review-ratting .product-ratting span.review-ratting span.review-star i {
    cursor: pointer;
}

/*====================================
    product-review-comment css
====================================*/
.product-review .product-review-comment .product-review-detail .product-reviewer-info span {
    position: relative;
    z-index: 1;
}
.product-review .product-review-comment .product-review-detail .product-reviewer-info span::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-font-color);
    opacity: 0.1;
    z-index: -1;
}
/************************************* product-detail-review css end *************************************/

/************************************* related-slider css start *************************************/
/*====================================
    related-slider swiper css
====================================*/
.collection-wrap #related-slider-full.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 768px) {
    .collection-wrap #related-slider-full.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 1200px) {
    .collection-wrap #related-slider-full.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}
@media (min-width: 1400px) {
    .collection-wrap #related-slider-full.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 20%;
    }
}
/************************************* related-slider css end *************************************/

/************************************* product-comparison css start *************************************/
/*====================================
    product-comparison css
====================================*/
.product-comparison .product-compare-area {
    overflow-x: hidden;
}
.product-comparison .product-compare-area>* {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-scrollbar-width: thin;
}
.product-comparison .product-compare-area>*::-webkit-scrollbar-track {
    background-color: #eeeeee;
}
.product-comparison .product-compare-area>*::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
.product-comparison .product-compare-area>*::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-font-color);
}
@media (min-width: 1200px) {
    .product-comparison .product-compare-area>* {
        -webkit-scrollbar-width: unset;
        scrollbar-width: unset;
        max-width: unset;
        overflow-x: unset;
    }
}

/*====================================
    product-compare-block-row css
====================================*/
.product-comparison .product-compare-area .product-compare-block .product-compare-block-row {
    width: calc(100% + 33.33%);
}
@media (min-width: 420px) {
    .product-comparison .product-compare-area .product-compare-block .product-compare-block-row {
        width: calc(100% + 0%);
    }
}

/*====================================
    product-compare-block-chain css
====================================*/
.product-comparison .product-compare-area .product-compare-block .product-compare-block-row .product-compare-block-chain>* {
    position: relative;
}
.product-comparison .product-compare-area .product-compare-block .product-compare-block-row .product-compare-block-chain>*::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--border-color),var(--border-opacity));
}
.product-comparison .product-compare-area .product-compare-block .product-compare-block-row .product-compare-block-chain>*::before {
    top: 0;
    width: 1px;
}
.product-comparison .product-compare-area .product-compare-block .product-compare-block-row .product-compare-block-chain>*:first-child::before {
    display: none;
}

/*====================================
    compare-modal css
====================================*/
@media (min-width: 768px) {
    .compare-modal .modal-dialog {
        max-width: 750px;
    }
}

/* compare-product-results css */
.compare-modal .compare-search .compare-product-results {
    max-height: 386px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-scrollbar-width: thin;
    scrollbar-width: thin;
}
.compare-modal .compare-search .compare-product-results::-webkit-scrollbar {
    width: 2px;
}
.compare-modal .compare-search .compare-product-results::-webkit-scrollbar-track {
    background-color: #eeeeee;
}
.compare-modal .compare-search .compare-product-results::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
.compare-modal .compare-search .compare-product-results::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-font-color);
}

/* compare-product-label css */
.compare-modal .compare-search .compare-product-results label.compare-product-label {
    display: block;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.compare-modal .compare-search .compare-product-results label.compare-product-label input.cust-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
.compare-modal .compare-search .compare-product-results label.compare-product-label:hover .compare-product-content,
.compare-modal .compare-search .compare-product-results label.compare-product-label input.cust-checkbox:checked ~ .compare-product-content {
    border-color: var(--primary-font-color);
}
/************************************* product-comparison css end *************************************/

/************************************* keyframes css start *************************************/
/*====================================
    blinking keyframes css
====================================*/
.blinking {
    -webkit-animation: blinking 2s cubic-bezier(.4, 0, .6, 1) infinite;
    animation: blinking 2s cubic-bezier(.4, 0, .6, 1) infinite;
}
@-webkit-keyframes blinking {
    50% {
        opacity: 0.5;
    }
}
@keyframes blinking {
    50% {
        opacity: 0.5;
    }
}
/************************************* keyframes css end *************************************/

/* --theme-5 */
/*---------------------------------------------------------------------------------------
    Project: Erona
    Description: Erona - Fashion eCommerce HTML5 Template with Bootstrap 5
    Author: Spacingtech
    Support: spacingtech10@gmail.com
    Version: 1.0.0
    Primary use: Suitable E-Commerce business startups
---------------------------------------------------------------------------------------*/

/*----------------------------------[Table of contents]----------------------------------
# font css
# root css (including color-codes & typography)
# general css
# 'html', 'body', 'h1 to h6' css
# 'section' css
# 'p' css
# 'container', 'container-fluid' css
# 'row' css
# 'a' css
# 'button' css
# 'ul' css
# 'input', 'textarea', 'select' css
# preloader css
# notification-bar css
# header css
# header-menu css
# breadcrumb-area css
# footer-brand-logo css
# footer css
# mobile-menu css
# search-bar css
# search-modal css
# cart-drawer css
# bottom-menu css
# bg-screen css
# back-to-top css
# banner-hover css
# quantity css
# add-to-cart css
# review-ratting css
# social-icon css
# custom-checkbox, radio, switch css
# pagination css
# magnific-popup css
# slider-swiper css
# slider-arrow css
# slider-dot css
# view-button css
# keyframes css
# animation css
---------------------------------------------------------------------------------------*/

/************************************* font start *************************************/
/*====================================
    google font
====================================*/
@font-face {
    font-family: 'americanabt';
    src: url('../font/americana/americanabt_bold.ttf') format('woff2'),
         url('../font/americana/americanabt_italic.ttf') format('woff'),
         url('../font/americana/americanabt_roman.ttf') format('woff');
}
/************************************* font end *************************************/

/************************************* root start *************************************/
/*=====================================
    root
=====================================*/
:root {
    /* body */
    --body-font-color: #666666;
    --body-font-size: 16px;
    --body-bgcolor: #ffffff;
    --body-font-family: "Outfit", sans-serif;;
    /* --body-font-weight: 500; */
    --body-font-style: normal;
    --body-font-letter-spacing: 0px;

    /* heading */
    --heading-font-color: #333333;
    --heading-font-family: "Libre Franklin", sans-serif;
    --heading-font-weight: 700;
    --heading-font-style: normal;

    /* section-heading */
    --section-heading-font-color: #333333;
    --section-subheading-font-family: 'americanabt';
    --section-womenhead: "Playball", cursive;
    --section-heading-font-text: none;
    --section-heading-font-weight: 700;
    --section-heading-font-style: normal;
    --section-heading-font-line-height: 1.2;

    /* paragraph */
    --paragraph-font-line-height: 25px; 

    /* general color */
    --primary-color: #292829;
    --secondary-color: #dbdb00;
    --third-color: #f90400;
    --white-color: #ffffff;
    --extra-bgcolor: #f7f7f7;
    /* --product-new-sale-label-bgcolor: #fb7645;
    --product-discount-label-bgcolor: #3cb371;
    --product-sold-label-bgcolor: #b02b28;
    --product-review-color: #ffa500; */

    /* border */
    --border-color: 153,153,153;
    --border-opacity: 0.15;
    --border-radius: 5px;
    --border-radius2: 0px;

    /* box-shadow */
    --box-shadow-outer: 51, 51, 51;
    --box-shadow-outer-opacity: 0.15;
    --box-shadow-inner: 51, 51, 51;
    --box-shadow-inner-opacity: 0.15;
}
/************************************* root end *************************************/

/************************************* general start *************************************/
/*=====================================
    body property css
=====================================*/
.body-color,
.body-primary-color,
.body-secondary-color {
    color: var(--body-font-color);
}
.primary-link {
    color: var(--heading-font-color);
}
.body-primary-color,
.body-secondary-color,
.primary-link {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
/* .body-primary-color:hover,
.primary-link:hover {
    color: var(--primary-font-color);
} */
.body-secondary-color:hover {
    color: var(--secondary-font-color);
}
.body-bg {
    background-color: var(--body-bgcolor);
}
.body-weight {
    font-weight: var(--body-font-weight);
}

/*=====================================
    heading property css
=====================================*/
.heading-color {
    color: var(--heading-font-color);
}
.heading-weight {
    font-weight: var(--heading-font-weight);
}
.section-heading-family {
    font-family: var(--section-heading-font-family);
}
.section-heading-text {
    text-transform: var(--section-heading-font-text);
}
.section-heading-weight {
    font-weight: var(--section-heading-font-weight);
}
.section-heading-lh {
    line-height: var(--section-heading-font-line-height);
}

/*=====================================
    general property css
=====================================*/
.primary-color {
    color: var(--primary-font-color);
}
.primary-bg {
    background-color: var(--primary-font-color);
}
.secondary-color {
    color: var(--secondary-font-color);
}
.secondary-bg {
    background-color: var(--secondary-font-color);
}
.tertiary-color {
    color: var(--tertiary-font-color);
}
.tertiary-bg {
    background-color: var(--tertiary-font-color);
}
.extra-color {
    color: var(--extra-font-color);
}
.extra-bg {
    background-color: var(--extra-bgcolor);
}
.primary-btn {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border: 1px solid var(--primary-font-color);
}
.primary-btn:hover {
    color: var(--primary-font-color);
    background-color: transparent;
    border-color: var(--primary-font-color);
}
.secondary-btn {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border: 1px solid var(--secondary-font-color);
}
.secondary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);    
}
.tertiary-btn {
    color: var(--extra-font-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.tertiary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
.quaternary-btn {
    color: var(--secondary-font-color);
    background-color: transparent;
    border: 1px solid var(--secondary-font-color);
}
.quaternary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
.quinary-btn {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border: 1px solid var(--primary-font-color);
}
.quinary-btn:hover {
    color: var(--primary-font-color);
    background-color: var(--extra-font-color);
    border-color: var(--extra-font-color);
}
.primary-btn, .secondary-btn, .tertiary-btn, .quaternary-btn, .quinary-btn {
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.link-btn {
    display: inline-block;
    color: var(--primary-font-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
}
.link-body-primary, .link-body-secondary {
    color: var(--body-font-color);
}
.link-primary-color {
    color: var(--primary-font-color);
}
.link-secondary-color {
    color: var(--secondary-font-color);
}
.link-body-primary, .link-body-secondary, .link-primary-color, .link-secondary-color {
    display: inline-block;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
    -webkit-transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.link-body-primary:hover, .link-primary-color:hover {
    color: var(--primary-font-color);
}
.link-body-secondary:hover, .link-secondary-color:hover {
    color: var(--secondary-font-color);
}

/*=====================================
    extra property css
=====================================*/
.review-color {
    color: var(--product-review-color);
}
.review-bg {
    background-color: var(--product-review-color);
}
/************************************* general end *************************************/

/************************************* 'html', 'body', 'h1 to h6' start *************************************/
/*=====================================
    html css
=====================================*/
html {
    scroll-behavior: smooth;
}

/*=====================================
    body css
=====================================*/
body {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    background-color: var(--body-bgcolor);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-style: var(--body-font-style);
    line-height: normal;
    letter-spacing: var(--body-font-letter-spacing);
    word-break: break-word;
}

/*=====================================
    heading css
=====================================*/
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-font-color);
    margin: 0;
    padding: 0;
    font-family: var(--heading-font-family);
    font-weight: var(--heading-font-weight);
    font-style: var(--heading-font-style);
    line-height: normal;
}
/************************************* 'html', 'body', 'h1 to h6' end *************************************/

/************************************* section start *************************************/
/*=====================================
    section-capture css
=====================================*/
.section-capture {
    margin-bottom: 10px;
}
.section-capture span.sub-title {
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 20px;
    position: relative;
}
.section-capture p.section-desc {
    margin-top: 6px;
}
@media (min-width: 1200px) {

    .section-capture p.section-desc {
        width: 83.33%;
        margin-top: 12px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1400px) {
    .section-capture p.section-desc {
        width: 75%;
    }
}
@media (min-width: 1600px) {
    .section-capture p.section-desc {
        width: 66.66%;
    }
}

/*=====================================
    section-heading css
=====================================*/
.section-heading {
    color: var(--section-heading-font-color);
    font-size: 45px;
    font-family: var(--heading-font-family);
    text-transform: var(--section-heading-font-text);
    font-weight: 600;
    font-style: var(--section-heading-font-style);
    line-height: var(--section-heading-font-line-height);
} 

/*=====================================
    section padding css
=====================================*/
.section-ptb {
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-pt {
    padding-top: 50px;
}
.section-pb {
    padding-bottom: 50px;
}
@media (min-width: 1200px) {
    .section-ptb {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .section-pt {
        padding-top: 100px;
    }
    .section-pb {
        padding-bottom: 100px;
    }
}

/*=====================================
    section-bgimg css
=====================================*/
.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
/************************************* section end *************************************/

/************************************* 'p' start *************************************/
/*=====================================
    paragraph css
=====================================*/
p {
    margin: 0;
    line-height: var(--paragraph-font-line-height);
}
.p-mtm15, .p-mtm20, .p-mtm30 {
    display: flex;
    flex-wrap: wrap;
}
.p-mtm15>*, .p-mtm20>*, .p-mtm30>* {
    width: 100%;
}

/*=====================================
    p-mtm15 css
=====================================*/
.p-mtm15 {
    margin-top: -1px;
}
.p-mtm15>* {
    margin-top: 1px;
}

/*=====================================
    p-mtm20 css
=====================================*/
.p-mtm20 {
    margin-top: -6px;
}
.p-mtm20>* {
    margin-top: 6px;
}

/*=====================================
    p-mtm30 css
=====================================*/
.p-mtm30 {
    margin-top: -16px;
}
.p-mtm30>* {
    margin-top: 16px;
}

/*=====================================
    p-bullets css
=====================================*/
.p-bullets {
    position: relative;
    padding-left: 17px;
}
.p-bullets::before {
    content: "\f3c1";
    font-family: remixicon;
    color: var(--heading-font-color);
    font-size: 7px;
    position: absolute;
    left: 0;
    font-weight: var(--heading-font-weight);
}
/************************************* 'p' end *************************************/

/************************************* 'container', 'container-fluid' start *************************************/
/*=====================================
    'container' css
=====================================*/
.container {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 1600px) {
    .container {
        max-width: 1380px;
    }
}

/*=====================================
    'container-fluid' css
=====================================*/
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 1500px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 1600px) {
    .container-fluid {
        padding-left: 55px;
        padding-right: 55px;
    }
}
/************************************* 'container', 'container-fluid' end *************************************/

/************************************* 'row' start *************************************/
/*=====================================
    row, col css
=====================================*/
.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.row>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (min-width: 768px) {
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*=====================================
    row-mtm15 css
=====================================*/
.row-mtm15 {
    margin-top: -15px;
}
.row-mtm15>* {
    margin-top: 15px;
}

/*=====================================
    row-mtm20 css
=====================================*/
.row-mtm20 {
    margin-top: -8px;
}
.row-mtm20>* {
    margin-top: 8px;
}

/*=====================================
    row-mtm-20 css
=====================================*/
.row-mtm-20 {
    margin-top: -20px;
}
.row-mtm-20>* {
    margin-top: 20px;
}

/*=====================================
    row-pmtm20 css
=====================================*/
.row-pmtm20 {
    margin-top: -6px;
}
.row-pmtm20>* {
    margin-top: 6px;
}

/*=====================================
    row-mtm css
=====================================*/
/* .row-mtm {
    margin-top: -30px;
} */
/* .row-mtm>* {
    margin-top: 30px;
} */

/*=====================================
    row-mtm30 css
=====================================*/
.row-mtm30 {
    margin-top: -15px;
}
.row-mtm30>* {
    margin-top: 15px;
}
@media (min-width: 768px) {
    .row-mtm30 {
        margin-top: -30px;
    }
    .row-mtm30>* {
        margin-top: 30px;
    }
}

/*=====================================
    row-mtm50 css
=====================================*/
.row-mtm50 {
    margin-top: -30px;
}
.row-mtm50>* {
    margin-top: 30px;
}
@media (min-width: 1200px) {
    .row-mtm50 {
        margin-top: -50px;
    }
    .row-mtm50>* {
        margin-top: 50px;
    }
}

/*=====================================
    row-mtm100 css
=====================================*/
.row-mtm100 {
    margin-top: -50px;
}
.row-mtm100>* {
    margin-top: 50px;
}
@media (min-width: 1200px) {
    .row-mtm100 {
        margin-top: -100px;
    }
    .row-mtm100>* {
        margin-top: 100px;
    }
}
/************************************* 'row' end *************************************/

/************************************* 'a' start *************************************/
/*=====================================
    'a' tag css
=====================================*/
a {
    color: var(--heading-font-color);
    text-decoration: none;
}
a:focus, .page-link:focus, .active>.page-link, .page-link.active {
    outline: none;
    box-shadow: none;
}
/************************************* 'a' end *************************************/

/************************************* button start *************************************/
/*=====================================
    'button' tag css
=====================================*/
button {
    display: inline-block;
    padding: 0px;
    background: 0 0;
    font-family: var(--body-font-family);
    border: none;
}
button, button:focus {
    outline: none;
    box-shadow: none;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: none;
    box-shadow: none;
}

/*=====================================
    btn-row css
=====================================*/
.btn-row {
    margin-top: -15px;
}
.btn-row>* {
    margin-top: 15px;
}

/*=====================================
    btn-row15 css
=====================================*/
.btn-row15 {
    margin-top: -15px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.btn-row15>* {
    margin-top: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

/*=====================================
    btn-style css
=====================================*/
.btn-style {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-radius: var(--border-radius);
}

/*====================================
    disabled css
====================================*/
button.disabled, a.disabled {
    pointer-events: none;
    opacity: 0.5;
}
/************************************* button end *************************************/

/************************************* ul start *************************************/
/*=====================================
    'ul' tag css
=====================================*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* .ul-row, .ul-mt5, .ul-mt10, .ul-mt15, .ul-mtm15, .ul-mtm-15, .ul-mtm20, .ul-mt30, .ul-mtm30, .ul-ft {
    display: flex;
    flex-wrap: wrap;
} */
.ul-mtm-15>*, .ul-mtm20>*, .ul-mtm30>*, .ul-ft>* {
    width: 100%;
}
.ul-row, .ul-mt15, .ul-mtm15, .ul-mt30 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.ul-row>*, .ul-mt15>*, .ul-mtm15>*, .ul-mt30>* {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (min-width: 768px) {
    .ul-row, .ul-mtm15, .ul-mt30 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .ul-row>*, .ul-mtm15>*, .ul-mt30>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*=====================================
    ul-mt5 css
=====================================*/
.ul-mt5 {
    margin-top: -5px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
.ul-mt5>* {
    margin-top: 5px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

/*=====================================
    ul-mt10 css
=====================================*/
.ul-mt10 {
    margin-top: -10px;
    margin-left: -5px;
    margin-right: -5px;
}
.ul-mt10>* {
    margin-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

/*=====================================
    'ul-row', 'ul-mt15' css
=====================================*/
.ul-row, .ul-mt15 {
    margin-top: -15px;
}
.ul-row>*, .ul-mt15>* {
    margin-top: 15px;
}

/*=====================================
    ul-mtm15 css
=====================================*/
.ul-mtm15 {
    margin-top: -3px;
}
.ul-mtm15>* {
    margin-top: 3px;
}

/*=====================================
    ul-mtm-15 css
=====================================*/
.ul-mtm-15 {
    margin-top: -3px;
}
.ul-mtm-15>* {
    margin-top: 3px;
}

/*=====================================
    ul-mtm20 css
=====================================*/
.ul-mtm20 {
    margin-top: -8px;
}
.ul-mtm20>* {
    margin-top: 8px;
}

/*=====================================
    ul-mt30 css
=====================================*/
.ul-mt30 {
    margin-top: -0px;
}
.ul-mt30>* {
    margin-top: 15px;
}
@media (min-width: 768px) {
    .ul-mt30 {
        margin-top: -0px;
    }
    .ul-mt30>* {
        margin-top: 0px;
    }
}

/*=====================================
    ul-mtm30 css
=====================================*/
.ul-mtm30 {
    margin-top: -18px;
}
.ul-mtm30>* {
    margin-top: 18px;
}

/*=====================================
    ul-ft css
=====================================*/
.ul-ft {
    margin-top: -8px;
}
.ul-ft>* {
    margin-top: 8px;
}
/************************************* ul end *************************************/

/************************************* input, select, textarea start *************************************/
/*=====================================
    'input', 'select', 'textarea' tag css
=====================================*/
input, select, textarea {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    background-color: var(--body-bgcolor);
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
input, select {
    height: 48px;
}
input, textarea {
    padding: 10px 15px;
}
textarea {
    display: block;
}

/*=====================================
    placeholder css
=====================================*/
input::-webkit-input-placeholder, input::placeholder, textarea::-webkit-input-placeholder, textarea::placeholder {
    color: var(--body-font-color);
}

/*=====================================
    msg_error css
=====================================*/
input.msg_error, textarea.msg_error {
    color: var(--extra-font-color);
    --bs-bg-opacity: 0.5;
    --bs-danger-opacity: 0.5;
    background-color: rgba(var(--bs-danger-rgb),var(--bs-bg-opacity));
    border-color: rgba(var(--bs-danger-rgb), var(--bs-danger-opacity));
}
input.msg_error::-webkit-input-placeholder, input.msg_error::placeholder, textarea.msg_error::-webkit-input-placeholder, textarea.msg_error::placeholder {
    color: var(--extra-font-color);
}

/*=====================================
    focus css
=====================================*/
input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active {
    outline: none;
    border-color: rgba(var(--border-color),var(--border-opacity));
    box-shadow: none;
}

/*=====================================
    select css
=====================================*/
select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    padding: 10px 30px 10px 15px;
}

/*=====================================
    field-row css
=====================================*/
.field-row {
    margin-top: -14px;
}
.field-row>* {
    margin-top: 14px;
}
@media (min-width: 768px) {
    .field-row {
        margin-top: -24px;
    }
    .field-row>* {
        margin-top: 24px;
    }
}

/*====================================
    input[type=file] attachment css
====================================*/
.field-row .field-col .field-attachment {
    position: relative;
    z-index: 1;
    border: 0px dashed var(--primary-font-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.field-row .field-col .field-attachment::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-font-color);
    opacity: 0.1;
    z-index: -1;
}
.field-row .field-col .field-attachment label {
    cursor: pointer;
}
.field-row .field-col .field-attachment .field-attached button {
    font-size: 12px;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
}
.field-row .field-col .field-attachment .field-attached img {
    width: 88px;
}

/*=====================================
    input-password css
=====================================*/
.field-row .field-col label.field-label {
    display: block;
    margin: 0px 0px 9px 0px;
}
.field-row .field-col .field-pwd {
    height: 48px;
    padding: 10px 15px;
    background-color: var(--body-bgcolor);
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
/************************************* input, textarea, select end *************************************/

/************************************* preloader css start *************************************/
/*====================================
    preloader css
====================================*/
.preloader {
    -webkit-transition: opacity 0.15s ease-in-out,visibility 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out,visibility 0.15s ease-in-out;
}
body.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/************************************* preloader css end *************************************/

/************************************* notification-bar css start *************************************/
/*====================================
    notification-marquee css
====================================*/
.notification-bar .notification-marquee .notification-marquee-row {
    -webkit-animation: slide-left 20s linear infinite;
    animation: slide-left 20s linear infinite;
}
.notification-bar:hover .notification-marquee .notification-marquee-row,
.notification-bar:focus .notification-marquee .notification-marquee-row {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}
/************************************* notification-bar css end *************************************/

/************************************* header css start *************************************/
/*====================================
    header-top-area css
====================================*/
.main-header .header-top-area .header-top-first.header-border {
    position: relative;
}
.main-header .header-top-area .header-top-first.header-border::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: rgba(var(--border-color),var(--border-opacity));
}
/************************************* header css end *************************************/

/*====================================
    header-icon css
====================================*/
.header-icon-block ul.header-icon-element li.header-icon-wrap .header-icon-wrapper a span.header-block-icon-wrap span.header-block-counter::before {
    content: "(";
}
.header-icon-block ul.header-icon-element li.header-icon-wrap .header-icon-wrapper a span.header-block-icon-wrap span.header-block-counter::after {
    content: ")";
}

/************************************* header-menu css start *************************************/
/*====================================
    mainmenu-content css
====================================*/
.mainmenu-content {
    margin: 0px -15px 0px 140px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: var(--heading-font-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
/* .mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link {
    color: var(--primary-font-color);
} */
.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title {
    position: relative;
    font-weight: 600;
}
/* .mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: 0px auto;
    background-color: var(--primary-font-color);
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link span.menu-title::after {
    width: 100%;
} */
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover .menu-dropdown.collapse:not(.show) {
    display: block;
}

/*====================================
    menu-sub css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right {
    position: relative;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub {
    min-width: 230px;
    border-radius: 0px 0px 10px 10px;
    border-top: 2px solid #000;
    top: 85px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right .menu-dropdown.menu-sub {
    left: auto;
    right: 0;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menu-sublink a {
    color: var(--body-font-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li:hover .menu-sublink a {
    color: var(--primary-font-color);
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown {
    top: 0;
    left: 100%;
    overflow-y: auto;
    border-radius: var(--border-radius);
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li.menu-bottom .menusub-dropdown {
    top: auto;
    bottom: 0;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li.menu-right .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown,
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li.menu-right .menusub-dropdown {
    left: auto;
    right: 100%;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li:hover .menusub-dropdown.collapse:not(.show) {
    display: block;
}

/*====================================
    menu-mega css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-mega .menu-overview {
    column-count: 6;
    column-gap: 30px;
}
/************************************* header-menu css end *************************************/

/************************************* breadcrumb-area css start *************************************/
/*====================================
    breadcrumb-area css
====================================*/
.breadcrumb-area {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 50px;
}
/* .breadcrumb-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.2;
    z-index: -1;
} */
.breadcrumb-area span a {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.breadcrumb-area span a:hover {
    opacity: 0.7;
}
/************************************* breadcrumb-area css end *************************************/

/************************************* footer-brand-logo css start *************************************/
.brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 768px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 992px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 20%;
    }
}

/*====================================
    brand-content css
====================================*/
.brand-logo .brand-slider .brand-content .brand-bgimg-overlay {
    inset: 0;
    -webkit-filter: brightness(0.3);
    filter: brightness(0.3);
}
.brand-logo .brand-slider .brand-content:hover span.brand-img,
.brand-logo .brand-slider .brand-content span.brand-img-overlay,
.brand-logo .brand-slider .brand-content .brand-bgimg-overlay {
    opacity: 0;
    visibility: hidden;
}
.brand-logo .brand-slider .brand-content:hover span.brand-img-overlay,
.brand-logo .brand-slider .brand-content:hover .brand-bgimg-overlay {
    opacity: 1;
    visibility: visible;
}
.brand-logo .brand-slider .brand-content span,
.brand-logo .brand-slider .brand-content .brand-bgimg-overlay {
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
/************************************* footer-brand-logo css end *************************************/

/************************************* footer css start *************************************/
/*====================================
    footer-news css
====================================*/
.footer-news .news-form .news-wrap input {
    border-radius: var(--border-radius) 0px 0px var(--border-radius);
}
.footer-news .news-form .news-wrap button {
    border-radius: 0px var(--border-radius) var(--border-radius) 0px;
}

/*====================================
    footer-list css
====================================*/
.footer-area .footer-list .ft-list {
    margin-top: 15px;
}
.footer-area .footer-list .ft-list:first-child {
    margin: 0px;
}
@media (min-width: 768px) {
    .footer-area .footer-list .ft-list {
        margin: 0px;
    }
}

/*====================================
    footer-title css
====================================*/
.footer-area .footer-list .ft-list a.ft-title {
    padding-top: 15px;
    border-top: 1px solid rgba(var(--border-color),var(--border-opacity));
}
.footer-area .footer-list .ft-list:only-child a.ft-title,
.footer-area .footer-list .ft-list:first-child a.ft-title {
    padding: 0px;
    border: none;
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="false"] {
    color: var(--heading-font-color);
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="true"] {
    color: var(--primary-font-color);
}
.footer-area .footer-list .ft-list a.ft-title[aria-expanded="true"] span.ftmenu-icon i::before {
    content: "\f1af";
}

/*====================================
    footer-link css
====================================*/
@media (min-width: 768px) {
    .footer-area .footer-list .footer-menu .ft-link.collapse:not(.show) {
        display: block;
    }
}
/************************************* footer css end *************************************/

/************************************* mobile-menu css start *************************************/
/*====================================
    mobile-menu css
====================================*/
.mobile-menu {
    left: -350px;
    width: 350px;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: left 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: left 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.mobile-menu.active {
    left: 0px;
}
@media screen and (max-height: 600px) {
    .mobile-menu {
        overflow-y: auto;
    }
}

/* mobile-contents css */
.mobile-menu .mobile-contents {
    height: 100%;
}
@media screen and (max-height: 600px) {
    .mobile-menu .mobile-contents {
        height: auto;
    }
}

/*====================================
    mobilemenu-content css
====================================*/
.mobilemenu-content {
    overflow-y: auto;
}
.mobilemenu-content .main-wrap ul.menu-ul {
    margin-top: -1px;
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button,
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="false"],
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn span a {
    color: var(--body-font-color);
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"],
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"] + span a {
        color: var(--secondary-color);
}
.mobilemenu-content .main-wrap ul.menu-ul li.menu-li .menu-btn button[aria-expanded="true"] i::before {
    content: "\f1af";
}
/************************************* mobile-menu css end *************************************/

/************************************* search-bar css start *************************************/
/*====================================
    search-bar css
====================================*/
form.search-form .search-bar .form-search input {
    border-radius: var(--border-radius) 0px 0px var(--border-radius);
}
form.search-form .search-bar .form-search button {
    border-radius: 0px var(--border-radius) var(--border-radius) 0px;
}
/************************************* search-bar css end *************************************/

/************************************* search-modal css start *************************************/
/*====================================
    search-results css
====================================*/
.search-bar .search-results .search-for span::before {
    content: '"';
}
.search-bar .search-results .search-for span::after {
    content: '"';
}
.search-bar .search-results ul.search-ul {
    margin-top: -1px;
    max-height: 206px;
    overflow-y: auto;
}
/************************************* search-modal css end *************************************/

/************************************* cart-drawer css start *************************************/
/*====================================
    cart-drawer css
====================================*/
.cart-drawer {
    width: 380px;
    right: -100%;
    background: var(--primary-color);
    transition: 0.4s ease;
    padding: 40px 30px;
    overflow-y: auto;
}
.cart-drawer.active {
    right: 0px;
}
@media screen and (max-height: 600px) {
    .cart-drawer {
        overflow-y: auto;
    }
}

/*====================================
    drawer-contents css
====================================*/
.cart-drawer form.drawer-contents {
    height: 100%;
}
@media screen and (max-height: 600px) {
    .cart-drawer form.drawer-contents {
        height: auto;
    }
}

/*====================================
    drawer-inner css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable {
    margin-top: -1px;
}

/*============================================
    drawer-recommended-product swiper css
============================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 33.33%;
}

/* drawer-recommended product-image css */
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-image a.pro-img {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* drawer-recommended product-content css */
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content {
    text-align: center;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price {
    margin-top: 3px;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price .price-box {
    justify-content: center;
}

/*====================================
    drawer-instruction css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a span.drawer-instruction-icon,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a[aria-expanded="false"] span.drawer-instruction-icon {
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a[aria-expanded="true"] span.drawer-instruction-icon {
    transform: scaleY(-1);
}

/*====================================
    drawer-footer css
====================================*/
.cart-drawer form.drawer-contents .drawer-inner .drawer-footer .drawer-cart-checkout .drawer-cart-box {
    margin-top: -6px;
}
/************************************* cart-drawer css end *************************************/

/************************************* bottom-menu css start *************************************/
/*====================================
    bottom-menu css
====================================*/
.bottom-menu .bottom-menu-element a span.bottom-menu-icon-wrap {
    margin-left: -1.5px;
    margin-right: -1.5px;
}
.bottom-menu .bottom-menu-element a span.bottom-menu-icon-wrap>* {
    padding-left: 1.5px;
    padding-right: 1.5px;
}
.bottom-menu .bottom-menu-element a span.bottom-menu-icon-wrap span.bottom-menu-counter::before {
    content: "(";
}
.bottom-menu .bottom-menu-element a span.bottom-menu-icon-wrap span.bottom-menu-counter::after {
    content: ")";
}
/************************************* bottom-menu css end *************************************/

/************************************* bg-screen css start *************************************/
/*====================================
    bg-screen css
====================================*/
.bg-screen .bg-back,
.bg-screen .bg-shop,
.without-shop-sidebar .bg-screen .bg-back {
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
@media (min-width: 1200px) {
    .bg-screen .bg-back {
        display: none;
    }
    .without-shop-sidebar .bg-screen .bg-back {
        display: block;
    }
}
/************************************* bg-screen css end *************************************/

/************************************* back-to-top css start *************************************/
/*====================================
    back-to-top css
====================================*/
a#top {
    bottom: 60px;
    right: 15px;
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
@media (min-width: 768px) {
    a#top {
        right: 30px;
    }
}
/************************************* back-to-top css end *************************************/

/************************************* banner-hover css start *************************************/
/*====================================
    banner-hover css
====================================*/
.banner-hover .banner-img .banner-icon {
    transform: translate(-50%,-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.banner-hover .banner-img .banner-btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.banner-hover:hover .banner-img .banner-btn,
.banner-hover:hover .banner-img .banner-icon {
    opacity: 1;
    visibility: visible;
}
.banner-hover .banner-img img {
    -webkit-transition: transform 0.3s ease-in-out,filter 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,filter 0.3s ease-in-out;
}
.banner-hover:hover .banner-btn img,
.banner-hover:hover .banner-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.banner-hover:hover .banner-img .banner-btn + img,
.banner-hover:hover .banner-img .banner-icon + img {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

/*====================================
    video css
====================================*/
.video .video-loader {
    display: none;
}
.video .video-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--body-bgcolor);
    opacity: 0.8;
}
.video .video-loader span svg {
    width: 56px;
    -webkit-animation: rotator 1s linear infinite;
    animation: rotator 1s linear infinite;
}
.video .video-loader span svg circle {
    stroke-dashoffset: 0;
    stroke-dasharray: 280;
    transform-origin: center;
    -webkit-animation: dash 1s ease-in-out infinite;
    animation: dash 1s ease-in-out infinite;
}
.video .video-img .banner-video-icon {
    position: relative;
}
.video .video-img .banner-video-icon::before,
.video .video-img .banner-video-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    background-color: var(--body-bgcolor);
    z-index: -1;
    border-radius: 100%;
}
.video .video-img .banner-video-icon::before {
    -webkit-animation: hoverEffect 2s linear infinite;
    animation: hoverEffect 2s linear infinite;
}
.video .video-img .banner-video-icon::after {
    -webkit-animation: hoverEffect 4s linear infinite;
    animation: hoverEffect 4s linear infinite;
}
.video .video-img img,
.video video {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}
.video .video-frame {
    display: none;
}
.video video {
    display: none;
    object-fit: cover;
    object-position: center;
}
/************************************* banner-hover css end *************************************/

/************************************* quantity css start *************************************/
/*====================================
    quantity css
====================================*/
.js-qty-wrapper {
    width: 112px;
}
.js-qty-wrapper .js-qty-wrap button.js-qty-adjust {
    width: 32px;
    height: 32px;
}
.js-qty-wrapper .js-qty-wrap input.js-qty-num {
    width: calc(100% - 64px);
    height: 32px;
    background-color: var(--body-bgcolor);
}

/* Chrome, Safari, Edge, Opera */
.js-qty-wrapper .js-qty-wrap input.js-qty-num::-webkit-outer-spin-button,
.js-qty-wrapper .js-qty-wrap input.js-qty-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
.js-qty-wrapper .js-qty-wrap input.js-qty-num[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.js-qty-wrapper .js-qty-wrap input.js-qty-num[type="number"]:hover,
.js-qty-wrapper .js-qty-wrap input.js-qty-num[type="number"]:focus {
    -moz-appearance: number-input;
    appearance: number-input;
}
/************************************* quantity css end *************************************/

/************************************* add-to-cart css start *************************************/
/*====================================
    add-to-cart css start
====================================*/
.add-to-cart.loading span.product-icon span.product-bag-icon,
.add-to-cart.done span.product-icon span.product-bag-icon {
    display: none;
}
.add-to-cart span.product-icon span.product-loader-icon {
    display: none;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.add-to-cart.loading span.product-icon span.product-loader-icon {
    display: block;
}
.add-to-cart span.product-icon span.product-check-icon {
    display: none;
}
.add-to-cart.done span.product-icon span.product-check-icon {
    display: block;
}
/************************************* add-to-cart css end *************************************/

/************************************* review-ratting css start *************************************/
/*====================================
    review-ratting css
====================================*/
span.review-ratting {
    display: flex;
    flex-wrap: wrap;
    margin-top: -9px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
span.review-ratting>* {
    margin-top: 9px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}
span.review-ratting span.review-star {
    color: var(--product-review-color);
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
}
span.review-ratting span.review-star i {
    margin: 0px 0px 0px 3px;
}
span.review-ratting span.review-star i:first-child {
    margin: 0;
}
span.review-ratting span.review-average {
    display: none;
    font-size: 14px;
}
span.review-ratting span.review-average span.review-caption {
    margin-left: 4px;
}
span.review-ratting span.review-average span.review-caption::before {
    content: "(";
}
span.review-ratting span.review-average span.review-caption::after {
    content: ")";
}
/************************************* review-ratting css end *************************************/

/************************************* social-icon css start *************************************/
/*====================================
    social-icon css
====================================*/
.behance {
    color: #3a67fa;
}
.bg-behance {
    background-color: #3a67fa;
}
.dribbble {
    color: #ea4c89;
}
.bg-dribbble {
    background-color: #ea4c89;
}
.facebook {
    color: #3b5998;
}
.bg-facebook {
    background-color: #3b5998;
}
.instagram {
    background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-instagram {
    background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.linkedin {
    color: #0a66c2;
}
.bg-linkedin {
    background-color: #0a66c2;
}
.pinterest {
    color: #e60023;
}
.bg-pinterest {
    background-color: #e60023;
}
.twitter {
    color: #00acee;
}
.bg-twitter {
    background-color: #00acee;
}
.youtube {
    color: #cd201f;
}
.bg-youtube {
    background-color: #cd201f;
}
/************************************* social-icon css end *************************************/

/************************************* custom-checkbox, radio, switch css start *************************************/
/*====================================
    custom-checkbox css
====================================*/
label.cust-checkbox-label {
    display: table;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
label.cust-checkbox-label input.cust-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
label.cust-checkbox-label span.cust-check {
    float: left;
    position: relative;
    top: 4px;
    width: 15px;
    height: 15px;
    background-color: var(--body-bgcolor);
    margin: 0px 5px 0px 0px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: var(--border-radius);
}
label.cust-checkbox-label:hover span.cust-check,
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check {
    box-shadow: inset 0px 0px 5px rgba(var(--box-shadow-inner),var(--box-shadow-inner-opacity));
}
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check {
    background-color: var(--secondary-font-color);
    border-color: var(--secondary-font-color);
}
label.cust-checkbox-label span.cust-check::after {
    display: none;
    content: "\eb7a";
    font-family: 'remixicon' !important;
    color: var(--extra-font-color);
    font-size: 13px;
}
label.cust-checkbox-label input.cust-checkbox:checked ~ span.cust-check::after {
    display: block;
}

/*====================================
    custom-checkbox img css
====================================*/
label.cust-checkbox-label img {
    width: 56px;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}
label.cust-checkbox-label input.cust-checkbox:checked ~ img {
    border-color: var(--secondary-font-color);
}

/*====================================
    custom-radio css
====================================*/
label.cust-radio-label {
    display: table;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
label.cust-radio-label input {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
label.cust-radio-label span.cust-check {
    float: left;
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--body-bgcolor);
    margin: 0px 5px 0px 0px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: 50%;
}
label.cust-radio-label input:checked ~ span.cust-check {
    border-color: var(--primary-font-color);
}
label.cust-radio-label span.cust-check::after {
    display: none;
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-font-color);
    border-radius: 50%;
}
label.cust-radio-label input:checked ~ span.cust-check::after {
    display: block;
}
label.cust-radio-label span.cust-text span.cust-other-text {
    font-size: 12px;
}

/*====================================
    custom-switch css
====================================*/
label.cust-switch-label {
    position: relative;
    width: 30px;
    height: 10px;
}
label.cust-switch-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
label.cust-switch-label span.cust-switch-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: var(--body-bgcolor);
    cursor: pointer;
    border-radius: 25px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    -webkit-transition: background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
label.cust-switch-label input:checked ~ span.cust-switch-slide {
    background-color: var(--primary-font-color);
    border-color: var(--body-bgcolor);
}
label.cust-switch-label span.cust-switch-slide::before {
    content: "";
    position: absolute;
    left: 0px;
    transform: translateX(0%);
    width: 10px;
    height: 20px;
    background-color: var(--primary-font-color);
    border-radius: 25px;
    border: 1px solid var(--primary-font-color);
    -webkit-transition: background-color 0.3s ease-in-out,transform 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out,transform 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
label.cust-switch-label input:checked ~ span.cust-switch-slide::before {
    background-color: var(--body-bgcolor);
    transform: translateX(200%);
    border-color: rgba(var(--border-color),var(--border-opacity));
}
/************************************* custom-checkbox, radio, switch css end *************************************/

/************************************* pagination css start *************************************/
/*====================================
    pagination css
====================================*/
.paginatoin-area ul.pagination-box li.page-item a.page-link {
    color: var(--heading-font-color);
    background-color: var(--body-bgcolor);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.paginatoin-area ul.pagination-box li.page-item a.page-link:not(.icon-16) {
    font-size: var(--body-font-size);
}
.paginatoin-area ul.pagination-box li.page-item:not(.first,.last) a.page-link {
    width: 30px;
    height: 30px;
}

/* pagination page-link active css */
.paginatoin-area ul.pagination-box li.page-item a.page-link:hover {
    color: var(--primary-font-color);
}
.paginatoin-area ul.pagination-box li.page-item a.page-link.active {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
}

/* pagination disabled css */
.paginatoin-area ul.pagination-box li.page-item.disabled a.page-link {
    opacity: 0.5;
}
/************************************* pagination css end *************************************/

/************************************* magnific-popup css start *************************************/
/*==============================
    magnific-popup css
==============================*/
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.95;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-container.mfp-iframe-holder {
    width: auto;
    left: 15px;
    right: 15px;
}
.mfp-iframe-holder .mfp-close {
    display: block!important;
    font-size: 16px;
    padding: 0;
    height: auto;
    width: auto;
    position: absolute;
    top: -20px;
    right: 0;
    background-color: transparent!important;
    line-height: 1;
}
.mfp-iframe-scaler iframe {
    border: none;
    border-radius: var(--border-radius);
}
/************************************* magnific-popup css end *************************************/

/************************************* slider-swiper css start *************************************/
/*====================================
    slider-swiper margin css
====================================*/
.collection-wrap .collection-product-slider.swiper {
    margin: -15px 0px 0px;
}
.collection-wrap .collection-product-slider.swiper .swiper-wrapper .swiper-slide .single-product {
    margin: 15px 0px 0px;
}
@media (min-width: 768px) {
    .collection-wrap .collection-product-slider.swiper,
    .collection-wrap .collection-product-slider.swiper .swiper-wrapper .swiper-slide .single-product {
        margin: 0px;
    }
}

/*====================================
    product slider-swiper css
====================================*/
.collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}
@media (min-width: 768px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
@media (min-width: 1200px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}

/*====================================
    blog slider-swiper css
====================================*/
.blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 100%;
}
@media (min-width: 768px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}
/************************************* slider-swiper css end *************************************/

/************************************* slider-arrow css start *************************************/
/*====================================
    slider-arrow css
====================================*/
.shop-cat-wrap,
.cat-wrap,
.collection-wrap,
.blog-wrap {
    position: relative;
}
.shop-cat-wrap .swiper-buttons,
.cat-wrap .swiper-buttons,
.collection-wrap .swiper-buttons,
.blog-wrap .swiper-buttons {
    display: none;
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}
.shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
.cat-wrap .swiper-buttons .swiper-buttons-wrap,
.collection-wrap .swiper-buttons .swiper-buttons-wrap,
.blog-wrap .swiper-buttons .swiper-buttons-wrap {
    display: inline-flex;
}
@media (min-width: 768px) {
    .shop-cat-wrap .swiper-buttons,
    .cat-wrap .swiper-buttons,
    .collection-wrap .swiper-buttons,
    .blog-wrap .swiper-buttons {
        margin-top: 0px;
    }
    .shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .collection-wrap .swiper-buttons .swiper-buttons-wrap,
    .blog-wrap .swiper-buttons .swiper-buttons-wrap {
        display: block;
    }
}

/* slider-arrow button css */
.shop-cat-wrap .swiper-buttons button,
.cat-wrap .swiper-buttons button,
.collection-wrap .swiper-buttons button,
.blog-wrap .swiper-buttons button {
    color: var(--secondary-font-color);
    font-size: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--extra-font-color);
    margin-right: 10px;
    border: 1px solid rgba(var(--border-color),var(--border-opacity));
    border-radius: 100%;
    box-shadow: rgba(var(--box-shadow-outer),var(--box-shadow-outer-opacity));
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,border-color 0.3s ease-in-out;
}
.shop-cat-wrap .swiper-buttons button:last-child,
.cat-wrap .swiper-buttons button:last-child,
.collection-wrap .swiper-buttons button:last-child,
.blog-wrap .swiper-buttons button:last-child {
    margin: 0px;
}
.shop-cat-wrap .swiper-buttons button:hover,
.cat-wrap .swiper-buttons button:hover,
.collection-wrap .swiper-buttons button:hover,
.blog-wrap .swiper-buttons button:hover {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
@media (min-width: 768px) {
    .shop-cat-wrap .swiper-buttons button,
    .cat-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button {
        position: absolute;
        z-index: 1;
        margin-right: 0px;
    }
    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .cat-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        left: 0;
        transform: translateX(-50%);
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(0);
    }
    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .cat-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        right: 0;
        transform: translateX(50%);
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-next,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-next,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(0);
    }
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-buttons button,
    .cat-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 1500px) {
    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .cat-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(calc(-100% - 30px));
    }
    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .cat-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(calc(100% + 30px));
    }
}
@media (min-width: 1600px) {
    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .cat-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(calc(-100% - 50px));
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(-50%);
    }
    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .cat-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(calc(100% + 50px));
    }
    .container-fluid .cat-wrap .swiper-buttons button.swiper-next,
    .container-fluid .collection-wrap .swiper-buttons button.swiper-next,
    .container-fluid .blog-wrap .swiper-buttons button.swiper-next {
        transform: translateX(50%);
    }
}
/************************************* slider-arrow css end *************************************/

/************************************* slider-dot css start *************************************/
/*====================================
    swiper slider-dots css
====================================*/
.shop-cat-wrap .swiper-dots,
.cat-wrap .swiper-dots,
.collection-wrap .swiper-dots,
.collection-list-wrap .swiper-dots,
.blog-wrap .swiper-dots {
    display: none;
    margin-top: 30px;
    line-height: 0;
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-dots,
    .cat-wrap .swiper-dots,
    .collection-wrap .swiper-dots,
    .blog-wrap .swiper-dots {
        margin-top: 60px;
    }
}

/* swiper slider-dots button css */
.shop-cat-wrap .swiper-dots .swiper-pagination,
.cat-wrap .swiper-dots .swiper-pagination,
.collection-wrap .swiper-dots .swiper-pagination,
.collection-list-wrap .swiper-dots .swiper-pagination,
.blog-wrap .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px 0px 0px -5px;
}
.shop-cat-wrap .swiper-dots .swiper-pagination span,
.cat-wrap .swiper-dots .swiper-pagination span,
.collection-wrap .swiper-dots .swiper-pagination span,
.collection-list-wrap .swiper-dots .swiper-pagination span,
.blog-wrap .swiper-dots .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-font-color);
    margin: 5px 0px 0px 5px;
    opacity: 0.15;
    border: 1px solid var(--secondary-font-color);
}
.shop-cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.collection-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.collection-list-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.blog-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
/************************************* slider-dot css end *************************************/

/************************************* view-button css start *************************************/
/*====================================
    view-button css
====================================*/
.view-button {
    margin-top: 30px;
    text-align: center;
}
@media (min-width: 1200px) {
    .view-button {
        margin-top: 60px;
    }
}
/************************************* view-button css end *************************************/

/************************************* scrollbar css start *************************************/
/*====================================
    scrollbar css
====================================*/
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown,
.mobile-menu .mobilemenu-content,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable,
.search-bar .search-results ul,
.shop-filter-sidebar,
.tce-area .ck.ck-editor__editable_inline {
    -webkit-scrollbar-width: thin;
    scrollbar-width: thin;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar,
.mobile-menu .mobilemenu-content::-webkit-scrollbar,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar,
.search-bar .search-results ul::-webkit-scrollbar,
.shop-filter-sidebar::-webkit-scrollbar,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar {
    width: 2px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-track,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-track,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-track,
.search-bar .search-results ul::-webkit-scrollbar-track,
.shop-filter-sidebar::-webkit-scrollbar-track,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-track {
    background-color: #eeeeee;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-thumb,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-thumb,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-thumb,
.search-bar .search-results ul::-webkit-scrollbar-thumb,
.shop-filter-sidebar::-webkit-scrollbar-thumb,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li .menu-dropdown.menu-sub ul.menudrop-ul li.menudrop-li .menusub-dropdown::-webkit-scrollbar-thumb:hover,
.mobile-menu .mobilemenu-content::-webkit-scrollbar-thumb:hover,
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable::-webkit-scrollbar-thumb:hover,
.search-bar .search-results ul::-webkit-scrollbar-thumb:hover,
.shop-filter-sidebar::-webkit-scrollbar-thumb:hover,
.tce-area .ck.ck-editor__editable_inline::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-font-color);
}
@media (min-width: 768px) {
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info {
        -webkit-scrollbar-width: thin;
        scrollbar-width: thin;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar {
        width: 2px;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-track {
        background-color: #eeeeee;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
    }
    .quickview-modal .quickview-modal-content .quickview-info .quickview-detail-info::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary-font-color);
    }
}
@media screen and (max-height: 600px) {
    .mobile-menu,
    .cart-drawer {
        -webkit-scrollbar-width: thin;
        scrollbar-width: thin;
    }
    .mobile-menu::-webkit-scrollbar,
    .cart-drawer::-webkit-scrollbar {
        width: 2px;
    }
    .mobile-menu::-webkit-scrollbar-track,
    .cart-drawer::-webkit-scrollbar-track {
        background-color: #eeeeee;
    }
    .mobile-menu::-webkit-scrollbar-thumb,
    .cart-drawer::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
    }
    .mobile-menu::-webkit-scrollbar-thumb:hover,
    .cart-drawer::-webkit-scrollbar-thumb:hover {
        background-color: var(--primary-font-color);
    }
}
/************************************* scrollbar css end *************************************/

/************************************* keyframes css start *************************************/
/*====================================
    loaderProgress keyframes css
====================================*/
@-webkit-keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    } 100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

/*====================================
    loaderText keyframes css
====================================*/
@-webkit-keyframes loaderText {
    0% {
        width: 0%;
    } 100% {
        width: 100%;
    }
}
@keyframes loaderText {
    0% {
        width: 0%;
    } 100% {
        width: 100%;
    }
}

/*====================================
    slide-left keyframes css
====================================*/
@-webkit-keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/*====================================
    DropDownSlide keyframes css
====================================*/
@media (min-width: 1200px) {
    .DropDownSlide {
        -webkit-animation-name: DropDownSlide;
        animation-name: DropDownSlide;
        -webkit-animation-duration: 0.3s;
        animation-duration: 0.3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
}
@-webkit-keyframes DropDownSlide {
    0% {
        opacity: 0;
        visibility: hidden;
    } 100% {
        opacity: 1;
        visibility: visible;
    }
}
@keyframes DropDownSlide {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    } 100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*====================================
    hoverEffect keyframes css
====================================*/
@-webkit-keyframes hoverEffect { 
    0% {
        opacity: 1;
        -webkit-transform: scale(0.1);
        transform: scale(0.1)
    } 100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}
@keyframes hoverEffect {
    0% {
        opacity: 1;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    } 100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

/*====================================
    rotator keyframes css
====================================*/
@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    } 100% {
        transform: rotate(270deg);
    }
}
@keyframes rotator {
    0% {
        transform: rotate(0deg);
    } 100% {
        transform: rotate(270deg);
    }
}

/*====================================
    dash keyframes css
====================================*/
@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 280;
    } 50% {
        stroke-dashoffset: 75;
        transform: rotate(135deg);
    } 100% {
        stroke-dashoffset: 280;
        transform: rotate(450deg);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 280;
    } 50% {
        stroke-dashoffset: 75;
        transform: rotate(135deg);
    } 100% {
        stroke-dashoffset: 280;
        transform: rotate(450deg);
    }
}

/*====================================
    spin keyframes css
====================================*/
.spin {
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    } 100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/************************************* keyframes css end *************************************/

/************************************* animation css start *************************************/
/*====================================
    animation css
====================================*/
[data-animate] {
    opacity: 0
}
[data-animate].animate__animated {
    opacity: 1
}
/************************************* animation css end *************************************/

.drpdwn-li a {
    padding: 5px 20px;
    display: block !important;
}

.menudrop-ul{
    padding: 10px 0px;
    background-color: var(--primary-color);
}

.drpdwn-li a {
    position: relative;
    color: var(--white-color);
}

/* .drpdwn-li a:before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    background: #000;
    border-radius: 100%;
    transition: left .2s ease-out, right .2s ease-out;
    left: -15px;
}

.drpdwn-li a:hover:before{
    left: 20px;
}

.drpdwn-li a:hover {
    padding-left: 35px;
} */

.menu-li {
    padding: 30px 0px;
}

.about-widget {
    position: relative;
    cursor: pointer;
}

.main-header.header-style-three .outer-box .hamburger {
    width: 65px;
    height: 65px;
    padding: 23px 17px;
}
.hamburger {
    width: 46px;
    height: 46px;
    display: flex;
    border-radius: 50px;
    padding: 16px 12px;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: #292829;
}

html:not(.body-menu-opened) .hamburger .top-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.hamburger span {
    height: 2px;
    width: 83.33333333%;
    background: #fff;
    transition: all 400ms ease-in-out;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

html:not(.body-menu-opened) .hamburger .meat {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
.hamburger .meat {
    width: 100%;
    transition: all 200ms ease-in-out;
}

html:not(.body-menu-opened) .hamburger .bottom-bun {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
.hamburger .bottom-bun {
    width: 58.33333333%;
    transition: all 100ms ease-in-out;
}

@keyframes burger-hover {
    0% {
    width: 100%;
    }
    50% {
        width: 50%;
    }
    100% {
        width: 100%;
    }
}

.hdr-right-ul li {
    display: inline-block;
}

.cs_fs_14 {
    font-family: var(--heading-font-family);
    font-size: 15px;
    font-weight: 600;
}

.cs_call_btn_icon {
    background-color: #292829;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

.cs_call_btn_icon span {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font-family);
}

.cs_call_btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hdr-right-ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cs_call_btn_icon:before {
    content: "";
    border: 1px solid #ccc;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    position: absolute;
    border-radius: 6px;
    z-index: -1;
}

.menusub-ul {
    padding: 10px 0px;
}

.notification-bar {
    background-color: #292829;
}

.category-sec {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.sub-title {
    font-family: var(--section-subheading-font-family);
}

.wt-small-separator {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    z-index: 1;
    font-family: var(--section-subheading-font-family);
}

.wt-small-separator:before {
    content: "";
    height: 23px;
    width: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    background-color: #443935;
    top: 0px;
    z-index: -1;
    margin-left: -18px;
}

.wt-small-separator > i {
    color: #fff;
    padding-bottom: 10px;
    display: block;
}

.wt-small-separator:after {
    content: "";
    height: 23px;
    width: 26px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    background-color: var(--third-color);
    top: 0px;
    z-index: -1;
    margin-left: -1px;
}



.section-heading span {
    color: var(--secondary-color);
}

.section-capture span.sub-title:before {
    content: "";
    height: 1px;
    width: 80px;
    background-color: var(--primary-color);
    position: absolute;
    left: -66%;
    top: 50%;
}

.section-capture span.sub-title:after {
    content: "";
    height: 1px;
    width: 80px;
    background-color: var(--primary-color);
    position: absolute;
    right: -66%;
    top: 50%;
}

.category-bx {
    position: relative;
}

.category-bx-bg {
    position: absolute;
    width: 95%;
    left: 40px;
    bottom: 20%;
    border-radius: 15px;
    top: 0;
}

.cate-bgone {
    background-color: #9ef0e4;
}

.category-bx-inner {
    position: relative;
    background: #f7f7f7;
    border-radius: 10px;
    /* overflow: hidden; */
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    /* z-index: 2; */
}

.category-bx-inner:before {
    content: "";
    top: 10%;
    right: -7%;
    position: absolute;
    bottom: -9%;
    left: 8%;
    z-index: -1;
    border-radius: 10px;
}

.cate-bgone:before{
    background-color: #9ef0e4;
}

.cate-bgtwo:before{
    background-color: #b8d0ff;
}

.cate-bgthree:before{
    background-color: #f7c4cd;
}

.cate-imgbx {
    margin: 30px auto -70px auto;
    text-align: center;
    padding: 30px 0px 0px 0px;
}

.cate-imgbx img {
    width: 290px;
    margin-bottom: -50px;
}

.category-bx-title {
    position: absolute;
    top: 0;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    right: 2%;
    font-size: 25px;
    font-weight: 700;
    color: #2223;
    text-transform: uppercase;
    text-align: center;
    height: 100%;
    font-family: var(--heading-font-family);
}

.cate-imgbx {
    text-align: center;
    padding: 35px 0px 0px 0px;
}

.category-bx {
    position: relative;
    margin: 0px 10px 0px 10px;
}

@keyframes categAnimation {
    16.65% {
    transform: translateX(7px);
}

33.33% {
    transform: translateX(-5px);
}

49.95% {
    transform: translateX(3px);
}

66.6% {
    transform: translateX(-2px);
}

83.25% {
    transform: translateX(1px);
}

100% {
    transform: translateX(0px);
}
    
}

.shoe-card:hover .shoe-img {
    animation: floatShoe 4s ease-in-out infinite;   
}

.cate-arrow a {
    height: 40px;
    width: 40px;
    display: inline-flex;
    background-color: var(--primary-color);
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    transform: translateX(15px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    top: 5%;
}

.category-bx:hover .cate-arrow a {
    opacity: 1;
    visibility: visible;
}

.cate-arrow a:hover {
    background-color: var(--secondary-color);
}

.category-bx:hover .category-bx-title {
    color: var(--primary-color);
}

.shoe-section{
    padding:100px 0;
    overflow:hidden;
}

.shoe-card{
    position:relative;
    height:350px;
}

.shoe-card-bg{
    position:absolute;
    width:95%;
    height:320px;
    left:35px;
    bottom:0;
    border-radius:20px;
    transition:.5s;
}

.bg-mint {
    background: linear-gradient(135deg, #3a4764, #c3d6ff);
}

.bg-blue{
    background:linear-gradient(135deg,#9bc0ff,#dce8ff);
}

.bg-pink{
    background:linear-gradient(135deg,#ffc7d1,#ffe4e9);
}

.shoe-card-inner{
    position:relative;
    height:320px;
    background:rgba(255,255,255,.95);
    border-radius:20px;
    /* overflow:hidden; */
    z-index:2;

    backdrop-filter:blur(15px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.12),
    0 5px 15px rgba(0,0,0,.05);

    transition:.5s;
}

/* .shoe-card-inner::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.7);
    border-radius:50%;
    top:-120px;
    right:-100px;
    filter:blur(50px);
} */

.category-tagone{
    
    z-index:5;

    background:#000;
    color:#fff;

    padding:8px 18px;
    border-radius:50px;

    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
}

.category-tagmnbx{
    position:absolute;
    top:25px;
    left:25px;
}

.shoe-img {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 72%;
    max-width: 370px;
    z-index: 3;
    /* animation: floatShoe 4s ease-in-out infinite;     */
    transition: .5s;
    padding-left: 30px;
    height: 100%;
}

@keyframes floatShoe{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }
}

.vertical-title {
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, .12);
    text-transform: uppercase;
    height: 70%;
    line-height: 32px;
}

.arrow-btn{
    position:absolute;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;
    background:#000;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    z-index:5;

    transition:.4s;
}

.arrow-btn:hover{
    color:#fff;
    transform:rotate(45deg) scale(1.1);
}

.shoe-card:hover .shoe-card-inner{
    transform:translateY(-10px);
}

.shoe-card:hover .shoe-card-bg{
    transform:translate(5px,5px);
}

.shoe-card:hover .shoe-img{
    transform:scale(1.08) rotate(-5deg);
}

.shoe-card{
    animation:fadeUp .8s ease forwards;
}

.shoe-card:nth-child(1){
    animation-delay:.2s;
}

.shoe-card:nth-child(2){
    animation-delay:.4s;
}

.shoe-card:nth-child(3){
    animation-delay:.6s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:991px){

    .shoe-card{
        height:380px;
    }

    .shoe-card-inner{
        height:290px;
    }

    .shoe-card-bg{
        height:290px;
    }

    .vertical-title{
        font-size:30px;
    }

    .shoe-img{
        width:65%;
    }
}

.arrow-btn:hover {
    background-color: var(--secondary-color);
}

.category-row {
    margin: 30px 0px 0px;
}

.section-left span.sub-title:before{
    display: none;
}

.ex-circlebx {
    background-image: linear-gradient(135deg, transparent 45%, #464646 45%, #464646 55%, transparent 0);
    background-size: 5px 5px;
    background-color: var(--primary-color);
    height: 250px;
    width: 250px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ex-circlebx:before {
    content: "";
    border: 1px dashed var(--secondary-color);
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    position: absolute;
    border-radius: 50%;
}

.ex-circlehdbx {
    font-size: 80px;
    color: var(--white-color);
    font-family: var(--heading-font-family);
    font-weight: 600;
    position: relative;
    text-align: center;
}

.ex-circlehdbx span {
    font-size: 30px;
    position: absolute;
    top: 10%;
    right: 15%;
}

.section-txt {
    font-size: 16px;
    line-height: 26px;
}

.abtpoint-hd {
    font-size: 20px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.abt-pointcard {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    border-top: 1px solid #e4e4e4;
    padding: 25px 0px 0px;
}

.abt-point-iconbx i {
    font-size: 50px;
}

.abt-point-iconbx {
    flex: 0 0 65px;
    border: 1px solid #ccc;
    height: 65px;
    border-radius: 50%;
    padding: 10px;
}

.abt-pointsbxrow {
    margin: 50px 0px 0px;
}

.product-sec {
    background-color: #F7F4EF;
    padding: 60px 0px;
    margin-top: 0px;
    position: relative;
}

/* product-swiper */

.product-card{
    background:#fff;
}

.product-gallery{
    position:relative;
    height:320px;
    overflow:hidden;
    cursor:pointer;
    background-color: #eee;
}

.gallery-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .25s ease;
    padding: 35px;
}

.gallery-img.active{
    opacity:1;
}

.product-content{
    padding:15px;
}

.product-cardhd{
    margin:0 0 5px;
    font-size:18px;
    font-family: var(--section-subheading-font-family);
}

.price{
    font-size:22px;
    font-weight:700;
}

.image-indicators{
    position:absolute;
    left:15px;
    right:15px;
    bottom:10px;
    display:flex;
    gap:5px;
    z-index:10;
}

.image-indicators span{
    flex:1;
    height:3px;
    background:rgba(255,255,255,.5);
    transition:.3s;
}

.image-indicators span.active{
    background:#fff;
}

.swiper-button-next,
.swiper-button-prev{
    color:#000;
}

.allpro-tab {
    font-size: 17px;
    line-height: 55px;
    letter-spacing: 0.7px;
    background-color: #FFFFFF;
    padding: 0px 65px 0px 65px;
}

.allpro-tabli {
    margin: 0px 0px 10px 0px;
    padding: 0px 5px 0px 5px;
}

.tab-content {
    margin: 20px 0px 0px;
}

.product-cardsec {
    display: flex;
    justify-content: center;
    margin: 30px 0px 0px;
}

.allpro-tab.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.qualitytxt {
    margin: 30px 0px 0px;
    text-align: justify;
} 

.quality-sec {
    padding: 60px 0px 60px;
}

.about-three_button{
    position:relative;
}

.btn-style-three {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    padding: 8px 8px 8px 28px;
    color: var(--white-color);
    text-transform: capitalize;
    font-family: "Lexend Deca", sans-serif;
    background-color: var(--primary-color);
}
.theme-btn {
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-style-three:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-color: var(--secondary-color);
}
.btn-style-three .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-three i {
    position: relative;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-left: 15px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background-color: var(--secondary-color);
}
.btn-style-three .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover:before {
    top: -40%;
}

.btn-style-three:hover .btn-wrap .text-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three:hover i {
    background-color: var(--primary-color);
}

.btn-style-three:hover .btn-wrap .text-two {
    color: var(--white-color);
}

.btn-style-three:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.quality-btn {
    margin: 40px 0px 0px;
}

.quality-mininn img {
    margin: 0px -30px 0px -60px;
}

.quality-mininn {
    position: relative;
}

.quality-mininn:before {
    content: "";
    height: 370px;
    width: 370px;
    background-color: var(--secondary-color);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    top: 10%;
}

.quality-point-inn {
    margin: 30px 0px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 0;
}

.quality-pointhd {
    font-size: 20px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.quality-pointicon {
    height: 80px;
    width: 80px;
    border: 1px solid #999999;
    border-radius: 50%;
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.quality-pointicon img {
    width: 40px;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:100px 0;
}

/* Background Glow */

.hero::before{
    content:'';
    position:absolute;
    width:800px;
    height:800px;
    background:radial-gradient(circle,#dfff00 0%,transparent 70%);
    opacity:.08;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

/* LEFT */

.hero-content h6{
    color:#dfff00;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    color:#fff;
    line-height:1;
    margin-bottom:25px;
}

.hero-content p{
    color:#b5b5b5;
    font-size:18px;
    line-height:1.8;
    max-width:500px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-top:35px;
    text-decoration:none;
    color:#111;
    background:#dfff00;
    padding:18px 32px;
    border-radius:100px;
    font-weight:700;
    transition:.4s;
}

.hero-btn:hover{
    transform:translateY(-5px);
    color:#111;
}

/* CENTER */

.product-area{
    position:relative;
    width:450px;
    height:450px;
    margin:auto;
}

/* Rotating Ring */

.circle-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed #dbdb006b;
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
}

.circle-ring::before{
    content:'';
    position:absolute;
    inset:40px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
}

@keyframes rotateRing{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Shoe */

.shoe-image{
    position:absolute;
    /* width:550px; */
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:1;
    animation:floatShoe2 5s ease-in-out infinite;
}

.shoe-image img{
    width:400px;
    filter:drop-shadow(0 40px 40px rgba(0,0,0,.4));
}

@keyframes floatShoe2{
    0%,100%{
        transform:translate(-50%,-50%) translateY(0);
    }
    50%{
        transform:translate(-50%,-50%) translateY(-20px);
    }
}

/* HOTSPOTS */

.hotspot{
    position:absolute;
    z-index:10;
}

.hotspot-dot{
    width:20px;
    height:20px;
    background:var(--secondary-color);
    border-radius:50%;
    cursor:pointer;
    position:relative;
}

.hotspot-dot::before{
    content:'';
    position:absolute;
    inset:-10px;
    border:2px solid var(--secondary-color);
    border-radius:50%;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(.8);
        opacity:1;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

.hotspot-content{
    position:absolute;
    background:#17181f;
    color:#fff;
    width:220px;
    padding:20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.hotspot:hover .hotspot-content{
    opacity:1;
    visibility:visible;
}

.hotspot-content h5{
    color:#dfff00;
    margin-bottom:10px;
    font-size:18px;
}

.hotspot-content p{
    font-size:14px;
    color:#b8b8b8;
    margin:0;
}

/* Positions */

.hot-1{
    top:15%;
    left:10%;
}

.hot-1 .hotspot-content{
    right:35px;
    top:-50px;
}

.hot-2{
    top:18%;
    right:10%;
}

.hot-2 .hotspot-content{
    left:35px;
    top:-50px;
}

.hot-3{
    bottom:20%;
    left:5%;
}

.hot-3 .hotspot-content{
    right:35px;
    top:-40px;
}

.hot-4{
    bottom:15%;
    right:5%;
}

.hot-4 .hotspot-content{
    left:35px;
    top:-40px;
}

/* STATS */

.stats-box{
    margin-top:40px;
    display:flex;
    gap:40px;
}

.stats-box h3{
    color:#fff;
    font-weight:800;
}

.stats-box span{
    color:#999;
}

/* MOBILE */

@media(max-width:991px){

.hero{
    text-align:center;
}

.hero-content h1{
    font-size:50px;
}

.product-area{
    width:420px;
    height:420px;
    margin:70px auto;
}

.shoe-image{
    width:350px;
}

.hotspot-content{
    display:none;
}
}

@media(max-width:576px){

.product-area{
    width:300px;
    height:300px;
}

.shoe-image{
    width:250px;
}

.hero-content h1{
    font-size:40px;
}
}

.product-area:before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #dfff00 0%, transparent 70%);
    opacity: .08;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-area:after {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    border-radius: 50%;
    opacity: .1;
}
.quality-pointicon:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 5px;
    bottom: 5px;
    border-radius: 50px;
    border: 1px solid #DDDDDD;
}

/* .quality-point-inn:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 200px;
    height: 100%;
    background: var(--secondary-color);
    animation: rotateFirm 5s linear forwards infinite;
    transform-origin: top center;
    z-index: 0;
}

@keyframes rotateFirm{
    0% {
    transform: rotate(0);
}
100% {
    transform: rotate(360deg);
}
} */

.feature-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    padding:18px;
    border-radius:24px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.6);
    overflow:hidden;
    transition:.5s;
    margin: 0px 0px 20px
}

.feature-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.feature-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:24px;
    padding:1px;
    background:linear-gradient(
    135deg,
    #d4d800,
    transparent,
    #d4d800);
    
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
}

.feature-number{
    position:absolute;
    right:20px;
    top:10px;
    font-size:55px;
    font-weight:800;
    color:rgba(212,216,0,.08);
}

.feature-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(212, 216, 0, .25); */
    font-size: 30px;
    color: #d4d800;
    transition: .6s;
    /* border: 1px dashed var(--secondary-color); */
    position: relative;
}

.feature-card:hover .feature-icon{
    transform:rotate(360deg) scale(1.1);
}

.feature-content h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p{
    margin:0;
    color:#666;
    line-height:1.5;
}

.feature-icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 1px dashed var(--secondary-color);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
}

.menspro-hd {
    margin: 0 0 5px;
    font-size: 18px;
    font-family: var(--section-subheading-font-family);
    text-align: center;
    color: var(--primary-color);
}

.menspro-sbhd {
    text-align: center;
}

.swiperMens {
    padding: 20px 20px 20px 20px !important;
    background-color: #fff !important;
}

.mens-right-sec {
    margin: 0px 0px 0px -100px;
}

.mens-productsec {
    padding: 60px 0px;
    background-color: transparent;
    background-image: linear-gradient(270deg, #F5F5F5 65%, #EDEDED 50%);
}

.mens-section {
    background-color: #f0f0ee;
}

/* .swiperMens {
    margin-top: -40px;
} */

.menspro-content {
    margin: 10px 0px 0px;
}

.mens-left {
    margin-left: -40px;
}

.women-leftimgbx {
    margin-left: -35px;
}

.mensppro-sec {
    margin-bottom: 50px;
}

.women-hd {
    font-size: 35px;
    font-family: var(--section-womenhead);
    color: #5b3e38;
    margin-bottom: 8px;
    text-align: center;
}

.women-sbhd {
    text-align: center;
    font-size: 45px;
    color: #362015;
    font-family: var(--section-subheading-font-family);
    line-height: 60px;
}

.womenpro-card {
    background-color: #f2ece6;
    border: 8px solid #fff;
    position: relative;
    padding: 40px 50px 30px 0px;
}

.women-procardhd p {
    margin: 0 0 5px;
    font-size: 18px;
    font-family: var(--section-subheading-font-family);
    text-align: center;
    background-color: var(--white-color);
    margin: 0px 10px 10px;
    padding: 5px 10px;
    border-radius: 10px;
}

.women-procardsbhd {
    margin: 0 0 5px;
    font-size: 20px;
    position: absolute;
    top: 5%;
    font-weight: 500;
    right: 5%;
}

.swiperWomenOne .swiper-wrapper{
    transition-timing-function: linear !important;
    
}

.women-rightbgbx{
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 40%;
    background-color: rgb(232,237,243)  ;
}

.women-rightbgbx:before{
    position: absolute;
    content: '';
    left: -15px;
    top: 0px;
    width: 29px;
    height: 100%;
    background: url(../image/vector-26.png);
    background-repeat: repeat-y;
}

.women-leftshapebx{
    position: absolute;
    left: -20px;
    top: -20px;
    width: 108px;
    height: 512px;
    background-repeat: no-repeat;
    background: url(../image/vector-25.png);
}

.women-iconone{
    position: absolute;
    left: 38%;
    bottom: 13%;
    width: 50px;
    height: 52px;
    background-repeat: no-repeat;
    background: url(../image/heart.png);
}

.women-posterbx{
    position: relative;
    z-index: 1;
    display: inline-block;
    transform: rotate(354deg);
    margin-top: var(--margin-top-80);
    border: 10px solid var(--white-color);
}

.women-vectorone{
    position: absolute;
    left: -50px;
    top: -50px;
    width: 100px;
    height: 94px;
    z-index: -2;
    background-repeat: no-repeat;
    background: url(../image/vector-27.webp);
}

.women-vectortwo{
    position: absolute;
    left: -30px;
    bottom: 160px;
    width: 52px;
    height: 30px;
    background-repeat: no-repeat;
    background: url(../image/vector-28.webp);
}

.women-vectorthree{
       position: absolute;
    right: -210px;
    top: 150px;
    width: 96px;
    height: 101px;
    background-repeat: no-repeat;
    background: url(../image/vector-29.png);
}

.women-vectorfour{
    position: absolute;
    right: -280px;
    bottom: 120px;
    width: 31px;
    height: 48px;
    background-repeat: no-repeat;
    background: url(../image/vector-30.png);
}

.women-vectorfive{
    position: absolute;
    right: 0px;
    bottom: -200px;
    width: 38px;
    height: 62px;
    background-repeat: no-repeat;
    background: url(../image/vector-31.png);
}
/* .women-vectorsix{
    position: absolute;
    left: -120px;
    bottom: 160px;
    width: 52px;
    height: 30px;
    background-repeat: no-repeat;
    background: url(../image/vector-28.png);
}

.women-vectorseven{
    position: absolute;
    left: -120px;
    bottom: 160px;
    width: 52px;
    height: 30px;
    background-repeat: no-repeat;
    background: url(../image/vector-28.png);
} */

.women-sec {
    position: relative;
    background-color: rgb(245, 246, 252);
    padding: 60px 0px;
    overflow: hidden;
}

.women-procard {
    background-color: #e8edf3;
    border: 10px solid var(--white-color);
}

.women-proswiper {
    margin: 30px 0px 0px;
}

.quality-midbx {
    position: relative;
    margin: 0px 0px 00px;
}

.quality-midbx:before {
    content: "";
    background-image: url(../image/manufacturing-video.mp4);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    bottom: 30%;
    left: 0;
    right: 0;
}

/* .quality-imgbx {
    margin: 0px 0px -30%;
}

.quality-imgbx img {
    width: 500px;
} */

.swiperQuality{
    position: absolute;
}

.quality-imgbx {
    margin: 40px 60px;
    padding: 20px 0px 0px;
    text-align: center;
}

.work__area-two {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.work__bg {
    background-color: var(--secondary-color);
    width: 100%;
    height: 65%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(../image/images.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.work__item-wrap-two {
    padding: 55px 50px 30px;
    background: var(--white-color);
    margin: 20px 0px 0px;
}

.work__item-two {
    background: #F5F5F5;
}
.work__item {
    background: #F5F5F5;
    padding: 45px 50px;
    position: relative;
}


.work__icon-two {
    border: none;
    background: var(--white-color);
}
.work__icon {
    width: 62px;
    height: 62px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    background: #FAF7EF;
    line-height: 0;
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 25px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.work__content .title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}

.work__item-two .number {
    color: #DDDDDD;
    font-weight: 400;
}
.work__item .number {
    position: absolute;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
    color: #EEECE8;
    right: 40px;
    line-height: 1;
    top: 58px;
}


.work__item .icon {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-white-default);
    color: var(--primary-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid #FAF7EF;
    z-index: 2;
}

.work__item-two .icon {
    background: #F5F5F5;
    border-color: var(--white-color);
}

.work__item-wrap .row > *:last-child .work__item .icon {
    display: none;
}

.work__bg:before {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: .4;
}

.process-subtitle:before{
    background-color: var(--white-color) !important;
}

.process-subtitle:after{
    background-color: var(--white-color) !important;
}

.work__item:hover .work__icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.counter-bx .counter {
    font-size: 42px;
    position: relative;
    font-family: var(--heading-font-family);
    margin-bottom: 25px;
}

.counter-bx .counter:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    width: 50px;
    height: 5px;
    background: var(--secondary-color);
}
.counter-bx {
    text-align: center;
}

.mensppro-sec {
    margin: 40px 0px 50px;
}

.swiperMens {
    margin: 20px 0px 0px;
}

.kids-section {
    position: relative;
    background-image: url(../image/bg-newhome2.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0px;
    margin: 40px 0px 0px 0px;
}

.kids-clipimgthree {
    position: absolute;
    z-index: 0;
    top: 2%;
    left: 3%;
    animation: zoomIn 3s infinite;
}

.kids-clipimgthree img {
    width: 60px;
}

.kids-clipimgtwo {
    position: absolute;
    z-index: 0;
    bottom: 10%;
    left: 50%;
    animation: itrotate2 3s ease-in-out 3s infinite alternate forwards;
}

.kids-clipimgtwo img {
    transition: all 0.3s ease-out 0s;
    transform: scale(0.6);
}

.kids-clipimgfour {
    position: absolute;
    z-index: 0;
    top: 5%;
    right: 2%;
    animation: itswing 1s forwards infinite alternate;
    transform-origin: bottom center;
}

.kids-clipimgfive {
    text-align: end;
    position: absolute;
    right: 9.5%;
    top: 10%;
    right: 35%;
    transition: all 3s cubic-bezier(0.4, 0.2, 0.2, 1);
    animation: flap 0.3s infinite alternate ease-in-out;
}

.kids-hdbx {
    padding-top: 70px;
    padding-bottom: 120px;
    /* width: 50%; */
    margin: auto;
}

.kids-secsbhd {
    font-family: var(--Playball-font);
    font-size: 22px;
    color: var(--primary-color);
}

.kids-section-hd {
    font-size: 55px;
    font-weight: 600;
    font-family: var(--DMSans-font);
    line-height: 60px;
    margin: 0px 0px 0px;
}

.kidshd-span {
    position: relative;
    z-index: 1;
    font-size: 50px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.kidshd-span span {
    position: absolute;
    bottom: 0%;
    right: 8%;
    z-index: -1;
    display: none;
}

.kidshd-span span svg {
    animation: titleKids 4s infinite;
}

@keyframes zoomIn{
    0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
}
50% {
    opacity: 1;
}
}

@keyframes itrotate2 {
    0% {
    transform: rotateY(0deg);
}
100% {
    transform: rotateY(360deg);
}
    
}

@keyframes itswing {

    0% {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    transform: rotate(4deg);
}
100% {
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    transform: rotate(-4deg);
}
    
}

@keyframes flap {
    0% {
    transform: rotate(-10deg) scaleY(0.95);
}

25% {
    transform: rotate(-5deg) scaleY(1);
}
50% {
    transform: rotate(0deg) scaleY(1.05);
}
75% {
    transform: rotate(5deg) scaleY(1);
}
100% {
    transform: rotate(10deg) scaleY(0.95);
}
    
}

.cs_pricing_table.cs_style_1 {
    padding: 50px 45px 60px;
    position: relative;
}

.cs_center_column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cs_pricing_table.cs_style_1 .cs_pricing_table_shape {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.cs_pricing_table.cs_style_1 .cs_pricing_table_shape svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cmsPricingSection{
    padding:100px 0;
}

.cmsPricingHeader{
    text-align:center;
    margin-bottom:60px;
}

.cmsPricingSubTitle{
    color:#ff5b8d;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.cmsPricingTitle{
    font-size:48px;
    font-weight:700;
    color:#142433;
}

.cmsPricingBorder{
    padding:10px;
    border-radius:30px;
    transition:all .4s ease;
    height:100%;
}

.cmsPricingBorder:hover{
    transform:translateY(-12px);
}

.cmsBorderBlue{
    border:2px solid #4fd4e6;
}

.cmsBorderPink{
    border:2px solid #ff7ca8;
}

.cmsBorderGreen{
    border:2px solid #b9e6b7;
}

.cmsPricingCard{
    background:#fff;
    border-radius:25px;
    padding:15px 5px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
}

.cmsInnerBlue{
    border:10px solid rgba(79,212,230,.12);
}

.cmsInnerPink{
    border:10px solid rgba(255,124,168,.12);
}

.cmsInnerGreen{
    border:10px solid rgba(185,230,183,.25);
}

/* Decorative Top Circle */

.cmsPricingCard::before{
    content:'';
    width:160px;
    height:160px;
    background:rgba(255,91,141,.04);
    position:absolute;
    top:-80px;
    right:-80px;
    border-radius:50%;
}

.cmsPlanTitle{
    font-size:20px;
    font-weight:700;
    color:#163341;
    margin-bottom:0px;
    font-family: var(--heading-font-family);
}

.cmsPlanDesc{
    color:#7c8188;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Price Circle */

.cmsPriceCircle{
    width:120px;
    height:120px;
    margin:0 auto 35px;
    background:#0e1031;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:42px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(14,16,49,.15);
}

/* Feature List */

.cmsFeatureList{
    list-style:none;
    padding:0;
    margin:0 0 40px;
    text-align:left;
}

.cmsFeatureList li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    color:#6f7780;
    font-size:16px;
}

.cmsFeatureList li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:22px;
    height:22px;
    background:#ff5b8d;
    color:#fff;
    border-radius:50%;
    font-size:12px;
    line-height:22px;
    text-align:center;
    font-weight:700;
}

/* Button */

.cmsPlanBtn{
    display:inline-block;
    padding:15px 42px;
    background:#0e1031;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.cmsPlanBtn:hover{
    background:#ff5b8d;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .cmsPricingBorder{
        margin-bottom:30px;
    }

    .cmsPricingTitle{
        font-size:36px;
    }

    .cmsPlanTitle{
        font-size:28px;
    }

}

.swiperKidsPro  {
    padding: 20px 0px !important;
}


.footer-area {
    background-image: url(../image/bg_shape03.svg);
    background: var(--primary-color);
    padding: 70px 0px;
}

.kids-productsec {
    padding: 20px 0px 60px 0px;
}

.footer-tphd {
    font-size: 70px;
    color: var(--white-color);
    font-weight: 600;
    font-family: var(--heading-font-family);
}

.footer__cta-wrap .tg-btn {
    flex: 0 0 auto;
}
.tg-btn.white-btn {
    background: var(--secondary-color);
    color: var(--white-color);
}
.tg-btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: none;
    color: var(--tg-heading-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: var(--tg-fw-semi-bold);
    font-family: var(--tg-heading-font-family);
    line-height: 1.2;
    padding: 16px 24px 15px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    --arrow-hover-move-x: 110%;
    --arrow-hover-move-y: 100%;
    gap: 10px;
}

.footertp-rightbtn {
    text-align: right;
}

.footwear-showcase{
    background:#f4f4f4;
    overflow:hidden;
    position:relative;
}

.footwear-left{
    min-height:700px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
    position:relative;
}

.footwear-subtitle{
    color:#777;
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.footwear-title{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#111;
    margin-bottom:35px;
}

.footwear-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:220px;
    height:60px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:17px;
    font-weight:700;
    transition:.4s;
}

.footwear-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}

.footwear-bg-text {
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 68px;
    font-weight: 900;
    color: #dfdfdf;
    letter-spacing: 10px;
    user-select: none;
    left: 30%;
    height: 100%;
}

/* =========================
   CENTER IMAGE SWIPER
========================= */

/* .footwear-main-slider{
    height:700px;
} */

.footwear-main-slider .swiper-slide{
    overflow:hidden;
}

.footwear-main-slider img{
    width:100%;
    /* height:700px;     */
    object-fit:cover;
}

/* =========================
   RIGHT PRODUCT SLIDER
========================= */

.footwear-product-slider{
    /* height:700px; */
    padding:30px;
}

.footwear-product-card{
    background:#fff;
    border-radius:14px;
    padding:10px 12px;
    display:flex;
    align-items:center;
    gap:12px;
    min-height:110px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.footwear-product-card:hover{
    transform:translateY(-5px);
}

.footwear-product-image{
    width:120px;
    height:120px;
    background:#f5f5f5;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footwear-product-image img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.footwear-product-info{
    flex:1;
}

.footwear-product-info h4{
    font-size:20px;
    margin-bottom:10px;
    color:var(--primary-color);
    font-family: var(--section-subheading-font-family);
}

.footwear-product-price{
    margin-bottom:12px;
}

.footwear-product-price del{
    color:#999;
    margin-right:10px;
}

.footwear-product-price span{
    color:#111;
    font-size:24px;
    font-weight:700;
}

.footwear-product-info a{
    text-decoration:none;
    color:#111;
    font-weight:700;
}

.footwear-product-info a:hover{
    color:#000;
}

.footwear-wishlist{
    width:45px;
    height:45px;
    border:1px solid #e5e5e5;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.4s;
}

.footwear-wishlist:hover{
    background:#111;
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footwear-left{
        min-height:auto;
        padding:50px 25px;
        text-align:center;
    }

    .footwear-title{
        font-size:42px;
    }

    .footwear-btn{
        margin:auto;
    }

    .footwear-bg-text{
        display:none;
    }

    /* .footwear-main-slider,
    .footwear-main-slider img{
        height:450px;
    } */

    .footwear-product-slider{
        height:500px;
    }

}

.footwear-product-slider .swiper-slide{
    height:auto !important;
}

/* Card */
.footwear-product-card {
    height: auto;
    margin: 20px 0px;
}

.footwear-main-slider .swiper-slide{
    height:auto !important;
}

.rkf-testimonial-section{
    position:relative;
    padding:100px 0;
    background:#f7f7f7;
    overflow:hidden;
}

.rkf-testimonial-container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
    position:relative;
    z-index:2;
}

/* Background Circle */

.rkf-bg-circle{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#f3eaea;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:1;
}

/* Decorative Left Curves */

.rkf-left-curves{
    position:absolute;
    left:-220px;
    bottom:-180px;
    width:400px;
    height:400px;
    border:1px solid #e4e4e4;
    border-radius:50%;
}

.rkf-left-curves::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border:1px solid #ececec;
    border-radius:50%;
    left:-60px;
    top:-60px;
}

.rkf-left-curves::after{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border:1px solid #f0f0f0;
    border-radius:50%;
    left:-125px;
    top:-125px;
}

/* Heading */

.rkf-review-tag{
    text-align:center;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
    color:#222;
}

.rkf-review-tag span{
    color:#ff0000;
}

.rkf-review-title{
    text-align:center;
    font-size:54px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:50px;
    color:#111;
}

.rkf-review-title span{
    color:#ff0000;
}

/* Layout */

.rkf-slider-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
}

/* Slider */

.rkfReviewSwiper{
    width:800px;
    overflow:hidden;
}

/* Review Content */

.rkf-review-content{
    text-align:center;
}

.rkf-review-content p{
    font-size:22px;
    line-height:1.8;
    color:#555;
    max-width:900px;
    margin:auto;
}

/* User Card */

.rkf-user-card{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:12px 25px;
    border-radius:60px;
    margin-top:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.rkf-user-card img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.rkf-user-card h4{
    font-size:22px;
    font-weight:500;
    color:#222;
}

/* Navigation */

.rkf-nav-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.4s;
    font-size:22px;
    user-select:none;
}

.rkf-prev-btn{
    background:#fff;
    color:#111;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.rkf-next-btn{
    background:#ff0000;
    color:#fff;
}

.rkf-nav-btn:hover{
    transform:translateY(-5px);
}

/* Slipper Image */

.rkf-slipper-image{
    position:absolute;
    right:50px;
    bottom:20px;
    width:170px;
    z-index:2;
}

/* Responsive */

@media(max-width:991px){

    .rkf-review-title{
        font-size:40px;
    }

    .rkf-slider-wrapper{
        gap:20px;
    }

    .rkf-review-content p{
        font-size:18px;
    }

    .rkf-slipper-image{
        width:120px;
    }
}

@media(max-width:767px){

    .rkf-testimonial-section{
        padding:70px 0;
    }

    .rkf-review-title{
        font-size:30px;
    }

    .rkf-review-content p{
        font-size:16px;
        line-height:1.7;
    }

    .rkf-nav-btn{
        width:45px;
        height:45px;
        font-size:16px;
    }

    .rkf-user-card{
        padding:10px 18px;
    }

    .rkf-user-card img{
        width:40px;
        height:40px;
    }

    .rkf-user-card h4{
        font-size:16px;
    }

    .rkf-bg-circle{
        width:300px;
        height:300px;
    }

    .rkf-slipper-image{
        display:none;
    }
}


.top-marquee{
    background:#292829;
    overflow:hidden;
    white-space:nowrap;
    padding:15px 0;
}

.marquee-track{
    display:inline-block;
    animation:marquee 30s linear infinite;
}

.marquee-track span{
    display:inline-block;
    margin-right:50px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    font-family: var(--heading-font-family);
}

@keyframes marquee{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* =====================
   FOOTER SECTION
===================== */

.footer-section{
    background:#111;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Background Pattern */

.footer-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 2px,
        transparent 2px,
        transparent 12px
    );
}

.footer-content{
    position:relative;
    z-index:2;
}

/* CTA */

.footer-cta{
    padding:40px 0 40px;
}

.footer-cta h2{
    font-size:50px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:0;
    color: var(--white-color)
}

.contact-btn{
    background:#fff;
    color:#000;
    padding:18px 40px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.contact-btn:hover{
    background:var(--secondary-color);
    color:#000;
}

.footer-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin-bottom:60px;
}

/* Footer Titles */

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    color: var(--white-color);
    /* font-family: var(--section-subheading-font-family); */
}

.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-12px;
    width:40px;
    height:4px;
    background:var(--secondary-color);
}

/* Logo */

.footer-logo{
    font-size:58px;
    font-weight:800;
    color:var(--secondary-color);
    line-height:1;
}

.footer-logo span{
    color:#fff;
}

.footer-desc{
    color:#ddd;
    margin-top:25px;
    line-height:1.6;
}

/* Social */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--secondary-color);
    color:#000;
}

/* Links */

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

.footer-links ul li{
    margin-bottom:18px;
}

.footer-links ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:var(--secondary-color);
}

/* Contact */

.contact-info p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Newsletter */

.newsletter p{
    color:#ddd;
    margin-bottom:25px;
    line-height:1.8;
}

.newsletter input{
    width:100%;
    height:60px;
    background:#000;
    border:none;
    color:#fff;
    padding:0 20px;
    margin-bottom:15px;
}

.newsletter input:focus{
    outline:none;
}

.newsletter button{
    width:100%;
    height:60px;
    border:none;
    background:var(--secondary-color);
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.newsletter button:hover{
    background:#fff;
}

/* Copyright */

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
    color:#ccc;
    margin-top:30px;
}

/* Responsive */

@media(max-width:1199px){

    .footer-cta h2{
        font-size:60px;
    }

}

@media(max-width:991px){

    .footer-cta{
        text-align:center;
    }

    .footer-cta h2{
        font-size:48px;
        margin-bottom:30px;
    }

}

@media(max-width:767px){

    .footer-cta h2{
        font-size:36px;
    }

    .footer-title{
        margin-top:40px;
    }

    .footer-logo{
        font-size:48px;
    }

}

.contact-info p span {
    height: 42px;
    width: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s;
    flex: 0 0 42px;
}

.contact-info p:hover span{
    background-color: var(--secondary-color);
    color: var(--primary-color)
}

.drpdwn-li a:before {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    top: auto;
    bottom: -25px;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 0;
    height: 1px;
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
    background-color: var(--white-color);
}
/* .drpdwn-li a:hover{
    padding-left: 30px;
} */
.drpdwn-li a:hover:before {
    width: 70%;
    left: 0;
    right: auto;
}

.menudrop-li .menu-sublink a {
    color: var(--white-color) !important;
}

.menudrop-li .menu-sublink{
    position: relative;
}

.menudrop-li .menu-sublink:before {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    top: auto;
    bottom: -25px;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 0;
    height: 1px;
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
    background-color: var(--white-color);
}

.menudrop-li .menu-sublink:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.menusub-dropdown {
    background-color: var(--primary-color);
    border-radius: 0px !important; 
}

.menusub-dropdown ul li span a {
    color: var(--white-color);
}

.menusub-dropdown ul li span {
    position: relative;
}

.menusub-dropdown ul li span:before {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    top: auto;
    bottom: -25px;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 0;
    height: 1px;
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
    background-color: var(--white-color);
}


.menusub-dropdown ul li span:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.menudrop-li .menu-sublink:hover{
    padding-left: 30px;
}

.header-logo {
    width: 160px;
}
.shoes-cardone .category-tagone {
    background: linear-gradient(135deg, #7588b1, #c3d6ff);
    color: var(--primary-color);
}

.shoes-cardtwo .category-tagone {
    background: linear-gradient(135deg, #9bc0ff, #dce8ff);
    color: var(--primary-color);
}


.shoes-cardthree .category-tagone {
    background: linear-gradient(135deg,#ffc7d1,#ffe4e9);
    color: var(--primary-color);
}

.abt-point-iconbx img {
    width: 90px;
}

.feature-icon img {
    width: 40px;
}

.menspro-imgbx {
    background-color: #dfdcd7;
    padding: 20px;
}

.work__icon img {
    padding: 0px;
    width: 45px;
}   

.footer-logo img {
    width: 170px;
}

.drawer-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.drawer-logo {
    margin-bottom: 30px;
}

.drawer-logo img {
    max-width: 180px;
}

.drawer-about h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--heading-font-family);
    color: var(--white-color);
}

.drawer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #f3f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    flex: 0 0 40px;
}

.contact-item span a {
    color: #fff;
}

.drawer-social {
    display: flex;
    gap: 12px;
}

.drawer-social a {
    width: 42px;
    height: 42px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.drawer-about p {
    color: var(--white-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quality-imgbx img{
    width: 300px;
}

/* .swiperQuality  {
    margin-top: -250px;
} */

.quality-midbx video {
    border-radius: 15px;
    /* opacity: .5; */
}

.theme-logo img {
    width: 190px;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.kd-sec {
    padding: 50px 0px 30px;
}

.kids-banner img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.gr-eyebrow{
  font-family: var(--sans);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.72rem;
  color:var(--gold);
  margin-bottom:.6rem;
}
.gr-h1{
  font-family:var(--serif);
  font-weight:700;
  font-size:2.7rem;
  line-height:1.18;
  color:var(--ink);
  margin-bottom:1.1rem;
}
.gr-h2{
  font-family:var(--serif);
  font-weight:700;
  font-size:2.15rem;
  line-height:1.25;
  color:var(--ink);
}
.gr-h3{
  font-family:var(--serif);
  font-weight:600;
  font-size:1.7rem;
  color:#fff;
}
.gr-h5{font-family:var(--heading-font-family); font-weight:600; font-size:1.2rem;}
.gr-h6{font-family:var(--heading-font-family); font-weight:600; font-size:1.05rem; margin:.9rem 0 .5rem;}
.gr-accent{color:var(--gold);}
.gr-lead{
  font-size:1rem;
  color:var(--text-muted);
  max-width:480px;
  line-height:1.7;
}
.gr-body-text{
  color:var(--text-muted);
  line-height:1.8;
  font-size:.97rem;
}
.gr-small-text{
  color:var(--text-muted);
  font-size:16px;
  line-height:1.7;
  margin-top: 10px;
}
.gr-light-text{color:#d8cdbf !important;}

/* ---------- Navbar ---------- */
.gr-navbar{
  background:var(--espresso);
}
.gr-brand{gap:.7rem;}
.gr-logo-mark{
  width:42px;height:42px;border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);
  color:var(--gold);
  font-size:1.2rem;
  font-weight:700;
  flex-shrink:0;
}
.gr-brand-text{display:flex;flex-direction:column;line-height:1.1;}
.gr-brand-name{
  font-family:var(--serif);
  color:var(--gold-light);
  font-size:1.25rem;
  font-weight:700;
}
.gr-brand-tag{
  font-size:.62rem;
  color:#9c8f7f;
  letter-spacing:.02em;
}
.gr-navbar .nav-link{
  color:#e8e0d3;
  font-size:.92rem;
  font-weight:500;
  padding:.5rem .9rem;
  position:relative;
}
.gr-navbar .nav-link.active{color:var(--gold-light);}
.gr-navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left:.9rem; right:.9rem; bottom:.1rem;
  height:2px;
  background:var(--gold);
}
.gr-navbar .nav-link:hover{color:var(--gold-light);}
.gr-cart-icon{
  position:relative;
  width:38px;height:38px;
  border:1px solid #4a3c30;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#e8e0d3;
}
.gr-cart-badge{
  position:absolute; top:-5px; right:-5px;
  background:var(--gold);
  color:var(--espresso);
  font-size:.6rem; font-weight:700;
  width:17px;height:17px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

/* ---------- Hero ---------- */
.gr-hero{
  background:linear-gradient(180deg, var(--cream) 0%, #F1E9DA 100%);
  padding:4rem 0 3rem;
}
.gr-btn-dark{
  background:var(--espresso);
  color:#f6f1e8;
  border:none;
  padding:.7rem 1.6rem;
  font-size:.9rem;
  font-weight:600;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  transition:.25s;
}
.gr-btn-dark:hover{
  background:var(--leather-deep);
  color:#fff;
}
.gr-feature-row{max-width:480px;}
.gr-feature-icon{
  color:var(--gold);
  font-size:1.4rem;
  display:block;
  margin-bottom:.5rem;
}
.gr-feature-text{
  font-size:.78rem;
  font-weight:500;
  color:var(--ink);
  line-height:1.3;
  margin:0;
}

.gr-hero-img-wrap{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio: 4/3.1;
  box-shadow:0 25px 50px -20px rgba(28,20,15,.45);
}
.gr-hero-img{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(0,0,0,.55) 0%, transparent 45%),
    linear-gradient(120deg, #c98a52 0%, #8a5630 38%, #5e3c24 65%, #3a2a1f 100%);
}
.gr-hero-img::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 2px, transparent 2px, transparent 14px);
  mix-blend-mode:overlay;
}
.gr-hero-img::after{
  content:"\f54b";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  bottom:-10%; right:2%;
  font-size:15rem;
  color:rgba(255,255,255,.12);
  transform:rotate(-15deg) scaleX(-1);
}
.gr-hero-watermark{
  position:absolute; top:14px; right:18px;
  color:rgba(255,255,255,.55);
  font-family:var(--serif);
  font-size:.78rem;
  display:flex; align-items:center; gap:3px;
}
.gr-hero-watermark span{letter-spacing:.04em;}

/* ---------- Sections generic ---------- */
.gr-section{padding:4.5rem 0;}
.gr-section-cream{background:var(--cream);}

/* Collage (company overview) */
.gr-collage{
  /* display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap:14px;
  height:420px; */
}
.gr-collage-main{
  border-radius:14px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(160deg,#4a342380,#1c140f 70%), linear-gradient(135deg,#7a4a2e,#2a1c12);
}
.gr-collage-main::after{
  content:"\f54b";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute; bottom:-8%; right:-5%;
  font-size:11rem;
  color:rgba(255,255,255,.08);
  transform:rotate(10deg);
}
.gr-collage-overlay{
  position:absolute; inset:0;
  padding:1.6rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.gr-collage-overlay p{
  color:#fff;
  font-family:var(--serif);
  font-size:1.35rem;
  font-weight:600;
  line-height:1.3;
  margin:0;
  max-width:75%;
}
.gr-play-btn{
  align-self:flex-end;
  width:42px;height:42px;
  background:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--espresso);
  font-size:.8rem;
}
.gr-collage-side{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:14px;
}
.gr-collage-top, .gr-collage-bottom{
  border-radius:14px;
  background-size:cover;
}
.gr-collage-top{
  background:
    linear-gradient(160deg, rgba(20,14,10,.45), rgba(20,14,10,.1) 60%),
    linear-gradient(135deg,#e8ddc8,#cbb98f);
}
.gr-collage-bottom{
  background:
    linear-gradient(160deg, rgba(20,14,10,.5), rgba(20,14,10,.15) 60%),
    linear-gradient(135deg,#5a4636,#2c2117);
}

.gr-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.3em;
    margin: 0 auto .6rem;
    transition: .4s;
}
.gr-mini-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
    margin: 0;
    font-family: var(--heading-font-family);
}

/* ---------- Purpose / Mission Vision ---------- */
.gr-purpose-icon{
  width:60px;height:60px;
  border-radius:50%;
  background:var(--primary-color);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
transition: .4s;
margin-bottom: 10px;
}

.gr-purpose-icon:hover{
    background-color: var(--secondary-color);
}
.gr-shoe-display{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:2.2rem;
  padding-bottom:1.6rem;
  overflow:hidden;
}
.gr-shoe-display::before {
    content: "";
    left: 0;
    position: absolute;
    border-left: 1px dashed #29282952;
    top: 0;
    bottom: 0;
}

.gr-shoe-display::after {
    content: "";
    right: 0;
    position: absolute;
    border-left: 1px dashed #29282952;
    top: 0;
    bottom: 0;
}
.gr-shoe{
  width:78px; height:130px;
  border-radius:14px 14px 6px 6px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  color:rgba(255,255,255,.75);
  box-shadow:0 12px 18px -8px rgba(0,0,0,.35);
  position:relative; z-index:1;
}
.gr-shoe-boot{background:linear-gradient(160deg,#9a6437,#6b4128); transform:translateY(-6px);}
.gr-shoe-sneaker{background:linear-gradient(160deg,#2b2b34,#16161c); transform:translateY(6px);}
.gr-shoe-heel{background:linear-gradient(160deg,#e6dcc6,#c9bb9c); color:#7c6a4d;}

/* ---------- What sets us apart ---------- */
.gr-apart-icon{
  font-size:2rem;
  color:var(--leather);
  background:var(--taupe);
  width:74px;height:74px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto;
}

/* ---------- Timeline ---------- */
.gr-timeline{position:relative;}
.gr-timeline-line{
  position:absolute;
  top:34px; left:8%; right:8%;
  height:2px;
  background:repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
  z-index:0;
  display:none;
}
@media (min-width: 992px){ .gr-timeline-line{display:block;} }
.gr-timeline-icon{
  width:68px;height:68px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--taupe);
  box-shadow:0 8px 18px rgba(120,90,50,.12);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
  color:var(--leather);
  position:relative;
  z-index:1;
}
.gr-timeline-year{
  font-family:var(--serif);
  font-weight:700;
  color:var(--gold);
  margin:.9rem 0 .2rem;
  font-size:1.1rem;
}

/* ---------- Gratitude / stats band ---------- */
.gr-gratitude{
  background:linear-gradient(120deg, #1c140f 0%, #2c1f15 55%, #1c140f 100%);
  padding:3.2rem 0;
}
.gr-stat-icon{
  color:var(--gold);
  font-size:1.5rem;
  margin-bottom:.6rem;
  display:block;
}
.gr-stat-num{
  font-family:var(--serif);
  color:#fff;
  font-weight:700;
  font-size:1.8rem;
  margin:0;
}
.gr-stat-label{
  color:#cbbfae;
  font-size:.78rem;
  margin:.2rem 0 0;
}

/* ---------- Footer ---------- */
.gr-footer{
  background:var(--espresso);
  padding:3.5rem 0 0;
}
.gr-footer-title{
  font-family:var(--serif);
  color:#fff;
  font-size:1.05rem;
  margin-bottom:1.1rem;
}
.gr-footer-list{
  list-style:none;
  padding:0; margin:0;
  display:flex; flex-direction:column; gap:.65rem;
}
.gr-footer-list a{
  color:#bcb0a0;
  font-size:.88rem;
}
.gr-footer-list a:hover{color:var(--gold-light);}
.gr-contact-list li{
  color:#bcb0a0;
  font-size:.85rem;
  display:flex;
  gap:.6rem;
  line-height:1.5;
}
.gr-contact-list i{color:var(--gold); margin-top:.2rem;}
.gr-social{display:flex; gap:.6rem;}
.gr-social a{
  width:34px;height:34px;
  border:1px solid #43352a;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#e8e0d3;
  font-size:.85rem;
}
.gr-social a:hover{background:var(--gold); color:var(--espresso); border-color:var(--gold);}
.gr-copyright{
  margin-top:3rem;
  background:var(--gold);
  color:var(--espresso);
  text-align:center;
  font-size:.82rem;
  font-weight:600;
  padding:.7rem 0;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px){
  .gr-h1{font-size:2.2rem;}
  .gr-h2{font-size:1.7rem;}
  .gr-collage{height:auto; grid-template-columns:1fr 1fr;}
  .gr-collage-main{min-height:260px;}
  .gr-collage-top, .gr-collage-bottom{min-height:120px;}
  .gr-gratitude .row > div{margin-bottom:1.5rem;}
}
@media (max-width: 575.98px){
  .gr-collage{grid-template-columns:1fr;}
  .gr-collage-side{grid-template-columns:1fr 1fr; grid-template-rows:1fr;}
  .gr-shoe{width:60px; height:100px; font-size:1.2rem;}
  .gr-hero{padding:2.5rem 0 2rem;}
}


.aboutpg-left .section-capture span.sub-title:after {
    right: -90%;
}

.gr-icon-circle:hover {
    background-color: var(--secondary-color);
}

.gr-purpose {
    background-color: #f4f0eb;
    padding: 60px 0px;
}

.mission-vision-imagebx {
    padding: 0px 30px;
}

.why-us-imgbx img {
    width: 60px;
    position: relative;
}

.why-us-imgbx {
    margin-top: 20px;
    position: relative;
    display: inline-block;
    height: 80px;
    width: 80px;
    padding: 15px;
}

.why-us-imgbx:before {
    content: "";
    border: 1px dashed #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.breadcrumb-hd {
    color: var(--section-heading-font-color);
    font-size: 40px;
    font-family: var(--heading-font-family);
    text-transform: var(--section-heading-font-text);
    font-weight: 700;
    font-style: var(--section-heading-font-style);
    line-height: var(--section-heading-font-line-height);
}

.breadcrumb-hd span {
    color: var(--secondary-color);
}

.slv-topbar{
  background:var(--slv-espresso);
  color:#cfc4b4;
  font-size:.74rem;
  padding:.45rem 0;
}
.slv-topbar__inner{display:flex; justify-content:space-between; flex-wrap:wrap; gap:.4rem;}
.slv-topbar__list{display:flex; gap:1.4rem; flex-wrap:wrap;}
.slv-topbar__list li{display:flex; align-items:center; gap:.4rem;}
.slv-topbar__list--right{gap:1.2rem;}

/* ---------- Navbar ---------- */
.slv-navbar{
  background:#fff;
  border-bottom:1px solid var(--slv-border);
}
.slv-brand{gap:.6rem;}
.slv-brand__mark{
  width:40px;height:40px;border-radius:10px;
  background:linear-gradient(150deg, var(--slv-gold-light), var(--slv-tan));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--slv-serif);
  font-weight:700;
  font-size:1.25rem;
  flex-shrink:0;
}
.slv-brand__text{display:flex; flex-direction:column; line-height:1.05;}
.slv-brand__name{
  font-family:var(--slv-serif);
  font-weight:800;
  letter-spacing:.04em;
  font-size:1.3rem;
  color:var(--slv-espresso);
}
.slv-brand__name--footer{color:#fff;}
.slv-brand__tag{
  font-size:.6rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--slv-muted);
}
.slv-navbar .nav-link{
  color:var(--slv-ink);
  font-weight:500;
  font-size:.92rem;
  padding:.5rem .9rem;
  position:relative;
}
.slv-navbar .nav-link.active{color:var(--slv-tan); font-weight:600;}
.slv-search{
  align-items:center;
  background:var(--slv-cream);
  border-radius:8px;
  padding:.5rem .9rem;
  gap:.5rem;
  min-width:230px;
}
.slv-search i{color:var(--slv-muted); font-size:.85rem;}
.slv-search input{
  border:none; background:transparent; outline:none;
  font-size:.85rem; width:100%; color:var(--slv-ink);
}
.slv-icon-btn{
  color:var(--slv-ink);
  font-size:1.05rem;
  position:relative;
  display:inline-flex;
}
.slv-icon-btn--cart{position:relative;}
.slv-cart-badge{
  position:absolute; top:-8px; right:-9px;
  background:var(--slv-tan);
  color:#fff;
  font-size:.58rem;
  font-weight:700;
  width:16px;height:16px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

.slv-filters{
  border:1px solid var(--secondary-color);
  border-radius:12px;
  
}
.slv-filters__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background-color: #f7f7f7;
    padding: 12px 20px;
    border-radius: 12px 12px 0px 0px;
}
.slv-filters__head h6{
  font-weight:700; font-size:16px; margin:0;
  display:flex; align-items:center; gap:.5rem;
}
.slv-filters__clear{font-size:.78rem; color:var(--slv-tan); font-weight:600;}

.slv-filter-group{
  padding-bottom:1.1rem;
  border-bottom:1px solid var(--slv-border);
  padding:0px 1.3rem 1.3rem 1.3rem;
}
.slv-filter-group:last-of-type{border-bottom:none;}
.slv-filter-group__title{
  font-size:17px; font-weight:700;
  margin-bottom:.7rem;
  display:flex; align-items:baseline; gap:.4rem;
}
.slv-filter-group__sub{font-size:.68rem; color:var(--slv-muted); font-weight:400;}

.slv-filter-list li{margin-bottom:.55rem;}
.slv-filter-list a {
    font-size: 16px;
    color: var(--slv-ink);
    width: 100%;
    display: block;
    transition: .4s;
    padding: 2px 10px;
}
.slv-filter-list__active{
      color: var(--secondary-color) !important;
    font-weight: 600;
    border: 1px solid;
    width: 100%;
    display: block;
    padding: 2px 10px;
}

.slv-size-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.5rem;
}
.slv-size-chip{
  border:1px solid var(--slv-border);
  background:#fff;
  border-radius:6px;
  padding:.4rem 0;
  font-size:.8rem;
  color:var(--slv-ink);
  cursor:pointer;
  transition:.2s;
}
.slv-size-chip:hover{border-color:var(--slv-tan); color:var(--slv-tan);}

.slv-color-row{display:flex; gap:.6rem;}
.slv-color-dot{
  width:24px; height:24px;
  border-radius:50%;
  background:var(--slv-dot);
  border:2px solid #fff;
  box-shadow:0 0 0 1px var(--slv-border);
  cursor:pointer;
}

.slv-check-list li{margin-bottom:.55rem;}
.slv-check-list label{
  display:flex; align-items:center; gap:.5rem;
  font-size:.85rem; color:var(--slv-ink);
  cursor:pointer;
}
.slv-check-list input{accent-color:var(--slv-tan);}
.slv-filter-more{font-size:.8rem; color:var(--slv-tan); font-weight:600;}

.slv-price-range{accent-color:var(--slv-tan); margin-bottom:.5rem;}
.slv-price-labels{
  display:flex; justify-content:space-between;
  font-size:.78rem; color:var(--slv-muted);
}

.slv-promo-card{
  position:relative;
  background:var(--slv-cream);
  border-radius:12px;
  padding:1.2rem;
  margin-bottom:1.3rem;
  overflow:hidden;
  min-height:170px;
}
.slv-promo-card h5{
  font-family:var(--slv-serif);
  font-weight:700;
  font-size:1.15rem;
  margin-bottom:.3rem;
  position:relative;
  z-index:2;
}
.slv-promo-card p{
  font-size:.78rem;
  color:var(--slv-muted);
  margin-bottom:.8rem;
  position:relative;
  z-index:2;
}
.slv-promo-card__btn{
  background:var(--slv-espresso);
  color:#fff;
  font-size:.78rem;
  font-weight:600;
  padding:.45rem 1rem;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  position:relative;
  z-index:2;
}
.slv-promo-card__img{
  position:absolute;
  right:-10px; bottom:-10px;
  width:60%; height:65%;
  background-image:
    linear-gradient(160deg, rgba(36,26,18,.05), rgba(36,26,18,.25)),
    url('https://images.unsplash.com/photo-1543163521-1bf539c55dd2?fm=jpg&q=70&w=500&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  border-radius:10px;
  opacity:.85;
}

.slv-trust-list li{
  display:flex; gap:.7rem; align-items:flex-start;
  margin-bottom:.9rem;
  font-size:.8rem;
}
.slv-trust-list li:last-child{margin-bottom:0;}
.slv-trust-list i{color:var(--slv-tan); font-size:1rem; margin-top:.15rem;}
.slv-trust-list strong{display:block; font-size:.82rem;}
.slv-trust-list span{color:var(--slv-muted); font-size:.74rem;}

.slv-shop {
    padding: 60px 0px;
}

.product-sidemenuposter {
    padding: 0px 1.3rem 1.3rem;
    border-radius: 10px;
    overflow: hidden;
}

.product-sidemenuposter img {
    border-radius: 10px;
}

.category-menu{
    margin-top:0px;
}

.category-item{
    border-bottom:1px solid #e9e9e9;
}

.category-parent{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    font-weight:600;
    color:#222;
    text-decoration:none;
    font-size:16px;
}

.category-parent:hover{
    color:var(--secondary-color);
}

.subcategory-list{
    list-style:none;
    padding-left:0px;
    margin-bottom:15px;
}

.subcategory-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.subcategory-list li a{
    color:#666;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.subcategory-list li a:hover,
.subcategory-list li a.active{
    color: var(--secondary-color);
    padding-left:5px;
}

.category-parent i{
    font-size:12px;
}

.subcategory-list li:last-child {
    border-bottom: 0;
}

.product-item-img {
    background-color: #eee;
}

.prodtl-subhd {
    font-size: 20px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.key-feat-icon {
    height: 25px;
    width: 25px;
    border: 1px dashed var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: var(--secondary-color);
}

.prodtl-btn {
    margin-top: 25px;
}

.product-detail {
    padding: 50px 0px 0px;
}

.product-detail-tab {
    padding: 60px 0px 50px;
}

.related-productsec {
    background-color: #f4f0eb;
    padding: 60px 0px;
}

.related-product-slider {
    margin: 30px 0px 0px;
}

.certificate-sec {
    padding: 60px 0px;
}

.cmsPricingCard a img {
    height: 100%;
    width: 100%;
}   
.certi-innerbxmn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 0px 20px;
    border-radius: 15px;
    height: 100%;
}

.certi-imgbx {
    border: 1px solid #ccc;
    flex: 0 0 42%;
    width: 42%;
    position: relative;
}

.certi-imgbx:before {
    content: "";
    height: 10px;
    width: 10px;
    background-color: var(--secondary-color);
    position: absolute;
    right: -15%;
    border-radius: 50%;
    top: 50%;
}

.certi-contentbx {
    flex: 0 0 48%;
    width: 48%;
    /* border: 1px solid #e10249; */
    padding: 20px 10px;
}

.contact-info p a {
    color: #ddd;
}

.ex-mapimgbx img {
    height: 100%;
    width: 100%;
}

.certi-imgbx:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    right: -13%;
    top: 0;
}

.certificate-hd {
    font-size: 20px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.certificate-btn {
    margin: 20px 0px 0px;
}

.contact-banner-touch {
    padding: 60px 0px 60px;
}

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 30px 20px;
    background-color: #F7F4EF;
    border-radius: 10px;
}

.row-mtm {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 50px 20px;
    border-radius: 20px;
}

.contactdtl-icon {
    height: 60px;
    width: 60px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    font-size: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.ul-mt30 {
    display: flex;
    flex-wrap: wrap;
}

.ul-mt32 li {
    margin: 20px 0px;
}

.ul-mt32 {
    margin-top: 30px;
}


.bread-menu {
    background-color: #ccc;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 0px 10px 0px 10px;
}

.drpdwn-li a:hover{
    color: var(--white-color);
}

.menusub-dropdown ul li span a{
    color: var(--white-color);
}

.ul-mt10 {
    display: flex;
}

.svab-directors{padding:4.5rem 0 2.5rem; background:#fdfbf7;}
.svab-section-head{margin-bottom:3rem;}
.svab-divider{
  display:inline-block;
  width:60px; height:2px;
  background:var(--svab-gold);
  margin-top:1rem;
  position:relative;
}
.svab-divider::before{
  content:"";
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:6px; height:6px;
  border-radius:50%;
  background:var(--svab-gold);
}

.svab-director-card{
  background:#fff;
  border:1px solid var(--svab-border);
  border-radius:16px;
  overflow:hidden;
  margin-bottom:2rem;
  box-shadow:0 14px 34px -20px rgba(36,26,18,.18);
  margin-top: 30px;
}
.svab-director-photo{
  height:100%;
  min-height:340px;
  background-size:cover;
  background-position:center top;
  position:relative;
  display:flex;
  align-items:flex-end;
}
.svab-director-photo__caption {
    width: 100%;
    padding: 8px 0px;
    background: #ffffffc4;
    color: #fff;
    margin: 0px 15px 15px;
    border-radius: 15px;
}
.svab-director-photo__signature {
    font-family: var(--section-subheading-font-family);
    font-size: 22px;
    color: var(--primary-color);
    display: block;
    margin-bottom: .1rem;
    opacity: 1;
    font-weight: 900;
    text-align: center;
}
.svab-director-photo__caption h5{
  font-family:var(--svab-serif);
  font-weight:700;
  font-size:1.15rem;
  margin:0;
}
.svab-director-photo__caption p {
    color: var(--body-font-color);
    font-size: 15px;
    font-weight: 500;
    margin: .15rem 0 0;
    text-align: center;
}

.svab-director-body{padding:2.2rem 2.2rem 1.8rem;}
.svab-quote-icon{
  color:var(--secondary-color);
  font-size:1.6rem;
  margin-bottom:1rem;
  display:block;
}
.svab-director-text{
  color:var(--svab-muted);
  font-size:.93rem;
  line-height:1.85;
  margin-bottom:1.6rem;
}
.svab-trait-row{margin:0;}
.svab-trait{display:flex; gap:.8rem; align-items:flex-start;}
.svab-trait__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    transition: .4s;
}
.svab-trait p{
  font-size:.8rem;
  color:var(--svab-ink);
  line-height:1.4;
  margin:.3rem 0 0;
}

.svab-trait__icon:hover {
    background-color: var(--secondary-color);
}

.prodtl-sizebx {
    border: 1px solid var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
}

.prodtl-sizebx.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}


/*==============================
Product Color Variants
==============================*/

.product-colors{
    margin-top:35px;
}

.product-colors h5{
    font-size:20px;
    font-weight:600;
    color:#222;
}

.color-count{
    background:#f3f3f3;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    color:#777;
}

.color-card {
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 16px;
    padding: 0 10px 10px;
    text-align: center;
    cursor: pointer;
    transition: .35s;
}

.color-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: .35s;
    margin-top: -40px;
}

.color-card span{
    display:block;
    margin-top: 0px;
    font-size:14px;
    font-weight:600;
    color:#555;
    margin-top: -10px;
}

.color-card:hover{
    transform:translateY(-6px);
    border-color:#000;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.color-card:hover img{
    transform:scale(1.08);
}

.color-card.active{
    border-color:#000;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.color-card.active span{
    color:#000;
}

@media(max-width:767px){

.color-card img{
    height:65px;
}

.product-colors h5{
    font-size:18px;
}

}


    .no-product-found {
        background: #ffffff;
        border: 1px solid #eeeeee;
        border-radius: 14px;
        padding: 55px 20px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        width: 100%;
    }

    .no-product-found .no-product-icon {
        width: 86px;
        height: 86px;
        margin: 0 auto 18px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 38px;
    }

    .no-product-found h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #222;
    }

    .no-product-found p {
        font-size: 15px;
        color: #777;
        margin-bottom: 0;
    }

    .all-probtn {
        position: absolute;
    top: 45%;
    
    z-index: 2;
    background-color: #292829;
    height: 40px;
    width: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .allpro-arrowmnbx {
    position: absolute;
    top: 26%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    right: 4%;
    gap: 15px;
} */

.all-probtn-next {
    right: 0;
}

    .mens-probtn {
        position: absolute;
    top: 45%;
    
    z-index: 2;
    background-color: #292829;
    height: 40px;
    width: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mens-probtn-next {
    right: 0;
}

.mens-probtn-prev {
    left: 0;
}

    .women-probtn {
        position: absolute;
    top: 45%;
    
    z-index: 2;
    background-color: #292829;
    height: 40px;
    width: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.women-probtn-next {
    right: 0;
}

.women-probtn-prev {
    left: 0;
}

.header-top-first {
    padding: 8px 0px;
}

.export-mapsec {
    background-color: #f7f4ef;
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

/* .ex-mapimgbx {
    margin-bottom: 60px;
} */

/* =====================================================
           PIN POSITIONS
        ====================================================== */
.dorson-export-uae {
    left: 60%;
    top: 38%;
}

.dorson-export-saudi {
    left: 45%;
    top: 42%;
}


.dorson-export-qatar {
    left: 52%;
    top: 32%;
}


.dorson-export-south-africa {
    left: 51%;
    top: 72%;
}
.dorson-export-location {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
}

.dorson-export-map {
    position: relative;
    /* width: 100%;
    height: 390px; */
    margin-top: 15px;
}

.dorson-export-pin {

            position: relative;

            width: 58px;
            height: 58px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 50% 50% 50% 0;

            background: #dce500;

            border: 3px solid #fff;

            transform: rotate(-45deg);

            box-shadow:
                0 12px 30px rgba(0,0,0,.18);

            transition: .3s ease;
        }


        .dorson-export-location:hover
        .dorson-export-pin {

            transform:
                rotate(-45deg)
                translateY(-5px);

            box-shadow:
                0 18px 35px rgba(0,0,0,.22);
        }


        .dorson-export-pin::after {

            content: "";

            position: absolute;

            width: 9px;
            height: 9px;

            border-radius: 50%;

            background: white;
        }

        .dorson-export-country {

            margin-top: 13px;

            padding: 7px 13px;

            white-space: nowrap;

            border-radius: 20px;

            background: rgba(255,255,255,.95);

            font-size: 12px;

            font-weight: 700;

            color: #222;

            box-shadow:
                0 7px 20px rgba(0,0,0,.08);
        }


        .ecports-btnbg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58%;
    opacity: .5;
}

.dorson-export-form-box {
    width: 100%;
    /* min-height: 720px; */
    padding: 30px 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
}


        /* =====================================================
           FORM HEADER
        ====================================================== */

        .dorson-export-form-header {

            display: flex;

            align-items: center;

            gap: 20px;
        }


        .dorson-export-form-icon {

            flex: 0 0 70px;

            width: 70px;
            height: 70px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #e0e900;

            font-size: 30px;

            color: #111;
        }


        .dorson-export-form-header h3 {

            margin: 0;

            font-size: 31px;

            font-weight: 800;

            letter-spacing: -.8px;
        }


.dorson-export-form-header p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #777;
}


        .dorson-export-yellow-line {

            width: 65px;
            height: 3px;

            margin:
                18px 0
                28px;

            background: #dce500;
        }


        /* =====================================================
           INPUTS
        ====================================================== */

.dorson-export-input {
    position: relative;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 11px;
    background: #fff;
    transition: .3s ease;
}


        .dorson-export-input:hover {

            border-color: #ccc;
        }


        .dorson-export-input:focus-within {

            border-color: #dce500;

            box-shadow:
                0 0 0 4px
                rgba(220,229,0,.11);
        }


        .dorson-export-input > i {

            margin-left: 17px;

            color: #777;

            font-size: 17px;
        }


        .dorson-export-input input,
        .dorson-export-input select {

            width: 100%;
            height: 100%;

            padding:
                0 15px;

            outline: none;

            border: 0;

            background: transparent;

            font-family: inherit;

            font-size: 13px;

            color: #333;
        }


        .dorson-export-input select {

            appearance: none;

            cursor: pointer;
        }


        .dorson-export-select-arrow {

            margin:
                0 17px 0 0 !important;

            font-size: 12px !important;
        }


        /* =====================================================
           TEXTAREA
        ====================================================== */

.dorson-export-textarea {
    position: relative;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
    padding-top: 17px;
    border: 1px solid #ddd;
    border-radius: 11px;
    background: #fff;
    transition: .3s ease;
}


        .dorson-export-textarea:focus-within {

            border-color: #dce500;

            box-shadow:
                0 0 0 4px
                rgba(220,229,0,.11);
        }


        .dorson-export-textarea > i {

            margin-left: 17px;

            color: #777;

            font-size: 17px;
        }


.dorson-export-textarea textarea {
    width: 100%;
    min-height: 70px;
    padding: 0 17px;
    resize: none;
    outline: none;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
}


        /* =====================================================
           SUBMIT
        ====================================================== */

        .dorson-export-submit {

            width: 100%;
            height: 58px;

            margin-top: 2px;

            border: 0;

            border-radius: 11px;

            background:
                linear-gradient(
                    90deg,
                    #e5ec00,
                    #b9ce00
                );

            color: #111;

            font-family: inherit;

            font-size: 14px;

            font-weight: 800;

            cursor: pointer;

            transition: .3s ease;
        }


        .dorson-export-submit:hover {

            transform: translateY(-3px);

            box-shadow:
                0 12px 30px
                rgba(180,200,0,.25);
        }


        .dorson-export-submit i {

            margin-right: 8px;
        }


        /* =====================================================
           TRUST FEATURES
        ====================================================== */

        .dorson-export-trust {

            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            margin-top: 35px;

            padding-top: 28px;

            border-top: 1px solid #eee;
        }


        .dorson-export-trust-item {

            padding:
                0 18px;

            text-align: center;

            border-right:
                1px solid #e8e8e8;
        }


        .dorson-export-trust-item:last-child {

            border-right: 0;
        }


        .dorson-export-trust-icon {

            width: 48px;
            height: 48px;

            display: flex;

            align-items: center;
            justify-content: center;

            margin:
                0 auto 10px;

            border:
                2px solid #dce500;

            border-radius: 50%;

            color: #bac700;

            font-size: 20px;
        }


        .dorson-export-trust-item h5 {

            margin: 0 0 6px;

            font-size: 13px;

            font-weight: 800;
        }


        .dorson-export-trust-item p {

            margin: 0;

            font-size: 11px;

            line-height: 1.5;

            color: #777;
        }

        @keyframes moveXS {
            0% {
    transform: translate(0);
}

30% {
    transform: translate(20px);
}
70% {
    transform: translate(50px);
}
100% {
    transform: translate(0);
}
            
        }

.export-mapsec {
    background-color: #f7f4ef;
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
}

.ecports-artone {
    position: absolute;
    bottom: 0;
    width: 150px;
}

.ecports-arttwo {
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
    animation: moveXS 8s linear infinite;
}

/*==========================
Premium Floating Dock
==========================*/

.eliteDock {
    position: fixed;
    bottom: 10%;
    right: 25px;
    transform: translateY(-10%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Animated Gradient Border */

.eliteItem {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: .55s cubic-bezier(.175, .885, .32, 1.275);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

/* Animated Border */

.eliteItem:before{

content:"";

position:absolute;

inset:-2px;

border-radius:60px;

padding:2px;

background:linear-gradient(
45deg,
#00ff99,
#00c8ff,
#5a6cff,
#ff00ff,
#00ff99);

background-size:400%;

animation:borderMove 6s linear infinite;

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

}

@keyframes borderMove{

0%{background-position:0 0;}

100%{background-position:400% 0;}

}

/* .eliteItem:hover{

width:270px;

transform:translateX(-10px) rotate(-2deg);

box-shadow:
0 20px 60px rgba(0,255,200,.45);

} */

.eliteItem i {
    width: 68px;
    font-size: 20px;
    text-align: center;
    z-index: 2;
    transition: .5s;
}

.eliteItem span:last-child{

opacity:0;

margin-left:10px;

font-size:17px;

font-weight:700;

letter-spacing:.5px;

transition:.5s;

z-index:2;

}

.eliteItem:hover span:last-child{

opacity:1;

margin-left:0;

}

/* Ripple */

.eliteRipple{

position:absolute;

width:15px;

height:15px;

background:rgba(255,255,255,.25);

border-radius:50%;

left:26px;

top:26px;

animation:ripple 2.2s infinite;

}

@keyframes ripple{

0%{

transform:scale(1);

opacity:.7;

}

100%{

transform:scale(7);

opacity:0;

}

}

/* Icon Rotation */

.eliteItem:hover i{

transform:rotate(360deg) scale(1.25);

}

/* Floating */

.eliteItem{

animation:floatDock 4s ease-in-out infinite;

}

.phone{

animation-delay:.6s;

}

.email{

animation-delay:1.2s;

}

@keyframes floatDock{

50%{

transform:translateY(-8px);

}

}

/* Colors */

.whatsapp{

background:linear-gradient(135deg,#25D366,#0f8b45);

}

.phone{

background:linear-gradient(135deg,#0066ff,#002f9f);

}

.email{

background:linear-gradient(135deg,#ff6b35,#ff1744);

}

/* Mobile */

@media(max-width:768px){

.eliteDock{

right:12px;

}

.eliteItem {
    width: 38px;
    height: 38px;
}

.eliteItem:hover{

width:58px;

transform:none;

}

.eliteItem span:last-child{

display:none;

}
    .eliteItem i {
        width: 42px;
        font-size: 18px;
    }

}

/*==========================
Modal
===========================*/

.rq-modal {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
    width: 580px;
}

/*==========================
Header
===========================*/

.rq-header{

    background:linear-gradient(135deg,#0057ff,#00b4ff);

    padding:35px;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.rq-header h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:8px;

}

.rq-header p{

    margin:0;

    opacity:.9;

}

/*==========================
Inputs
===========================*/

.rq-input{

    position:relative;

}

.rq-input i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#0d6efd;

    z-index:5;

}

.rq-input input,
.rq-input select,
.rq-input textarea{

    padding-left:48px;

    border-radius:12px;

    min-height:55px;

    border:1px solid #d9d9d9;

    transition:.3s;

}

.rq-input textarea{

    padding-top:16px;

}

.rq-input input:focus,
.rq-input select:focus,
.rq-input textarea:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

/*==========================
Phone
===========================*/

.input-group-text{

    background:#0d6efd;

    color:#fff;

    border:none;

    font-weight:600;

    padding:0 18px;

}

/*==========================
Button
===========================*/

.rq-btn{

    border:none;

    padding:15px 45px;

    border-radius:50px;

    background:linear-gradient(135deg,#0057ff,#00b4ff);

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,87,255,.25);

}

.rq-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,87,255,.4);

}

.rq-btn i{

    margin-right:10px;

}

/*==========================
Modal Animation
===========================*/

.modal.fade .modal-dialog{

    transform:scale(.8);

    transition:.35s;

}

.modal.show .modal-dialog{

    transform:scale(1);

}

.form-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px #dbdb00;
    max-width: 900px;
    width: 100%;
    background: #ffffff;
}
    /* Right Side - Gradient Panel */
    .welcome-panel {
      background: var(--primary-color);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;
    }

    .welcome-panel h2 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    .welcome-panel p {
      font-weight: 300;
      opacity: 0.9;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Form Section styling */
    .form-panel {
      padding: 45px;
    }

    .form-title {
      font-weight: 700;
      color: #2b2b2b;
      margin-bottom: 5px;
    }

    .form-subtitle {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 30px;
    }

    /* Custom Input Wrapper for Design */
.custom-input-group {
    background: #ffffff;
    border-radius: 30px;
    padding: 2px 18px;
    margin-bottom: 18px;
    border: 1px solid #dbdb00;
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .custom-input-group:focus-within {
      box-shadow: 0 4px 20px rgba(252, 96, 118, 0.3);
      border-color: var(--secondary-color);
    }

.custom-input-group .input-group-text {
    background: transparent;
    border: none;
    color: #dbdb00;
    padding-right: 10px;
}

    .custom-input-group .form-control,
    .custom-input-group .form-select {
      border: none;
      box-shadow: none;
      background: transparent;
      color: var(--secondary-color);
      font-size: 0.9rem;
      padding: 10px 5px;
    }

    .custom-input-group .form-control::placeholder {
      color: var(--secondary-color);
      opacity: 0.7;
    }

    /* Fixed Country Code Styling */
    .country-code-badge {
      font-weight: 600;
      color: var(--secondary-color);
      font-size: 0.9rem;
      padding-right: 8px;
      border-right: 1px solid #dbdb008a;
      margin-right: 8px;
      width: 50px;
    }

    /* Gradient Submit Button */
.btn-gradient {
    background: var(--secondary-color);
    border: none;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px var(--glow-color);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

    .btn-gradient:hover {
      transform: translateY(-2px);
      /* box-shadow: 0 12px 25px rgba(255, 42, 133, 0.4); */
      color: #fff;
      background-color: var(--primary-color);
    }

    /* Custom Checkbox */
    .form-check-input:checked {
      background-color: #fc6076;
      border-color: #fc6076;
    }

    .form-check-label {
      font-size: 0.8rem;
      color: #fc6076;
      font-weight: 500;
    }

    .form-check-label a {
      color: #ff2a85;
      text-decoration: underline;
    }

    #quoteModal .modal-dialog {
    width: 580px;
}

.abt-tagline {
    font-size: 24px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 20px;
}

.exp-contentbx p {
    font-size: 20px;
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 6px;
    text-align: center; 
}

.exp-contentbx p span {
    color: var(--secondary-color);
    display: block;
}

.swiperMens .swiper-slide img{
    width:100%;
    height:245px;
    object-fit:contain;   /* or cover */
    display:block;
}

.menu-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.swiperWomenPro .swiper-slide img{
    width:100%;
    height:280px;
    object-fit:contain;   /* or cover */
    display:block;
}

.women-leftbx {
    position: relative;
}