/*---------------------------------------------------------------------------------------
    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-service 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=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');
/************************************* font end *************************************/

/************************************* root start *************************************/
/*=====================================
    root
=====================================*/
:root {
    /* body */
    --body-font-color: #999999;
    --body-font-size: 15px;
    --body-bgcolor: #ffffff;
    --body-font-family: "DM Sans", sans-serif;
    --body-font-weight: 400;
    --body-font-style: normal;
    --body-font-letter-spacing: 0px;
    --Lumanosimo-font:"Lumanosimo", cursive;
    --Gilda-font: "Gilda Display", serif;
    --Playball-font:"Playball", cursive;
    --DMSans-font:"DM Sans", sans-serif;
    --jost-font: "Jost", sans-serif;
    --dancing-font: "Dancing Script", cursive;

    /* heading */
    --heading-font-color: #333333;
    --heading-font-family: 'Jost', sans-serif;
    --heading-font-weight: 600;
    --heading-font-style: normal;

    /* section-heading */
    --section-heading-font-color: #333333;
    --section-heading-font-family: 'Jost', sans-serif;
    --section-heading-font-text: none;
    --section-heading-font-weight: 600;
    --section-heading-font-style: normal;
    --section-heading-font-line-height: 1.2;

    /* paragraph */
    --paragraph-font-line-height: 25px; 

    /* general color */
    --primary-color: #e3001b;
    --secondary-font-color: #232323;
    --tertiary-font-color: #ec6753;
    --extra-font-color: #ffffff;
    --extra-bgcolor: #f7f7f7;
    --product-new-sale-label-bgcolor: #6c58f4;
    --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: 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: #fff;
    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(--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);
}
.primary-btn, .secondary-btn, .tertiary-btn, .quaternary-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;
    padding-top: 110px !important;
}

/*=====================================
    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;
}
.section-capture span.sub-title {
    display: block;
    color: var(--primary-font-color);
    margin-bottom: 9px;
}
.section-capture p.section-desc {
    margin-top: 6px;
}
@media (min-width: 1200px) {
    .section-capture {
        margin-bottom: 30px;
    }
    .section-capture span.sub-title {
        margin-bottom: 14px;
    }
    .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: 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: -15px;
}
.ul-mt30>* {
    margin-top: 15px;
}
@media (min-width: 768px) {
    .ul-mt30 {
        margin-top: -30px;
    }
    .ul-mt30>* {
        margin-top: 30px;
    }
}

/*=====================================
    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-logo css
====================================*/
@media (min-width: 1200px) {
    .header-theme-logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .header-sticky .header-theme-logo {
        position: unset;
        left: unset;
        transform: translate(0, 0);
    }
    .header-theme-logo a.theme-logo {
        position: relative;
        z-index: 1;
    }
    .header-theme-logo a.theme-logo::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -30px;
        right: -30px;
        background-color: var(--body-bgcolor);
        z-index: -1;
    }
}

/*====================================
    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;
}
.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;
    font-size: 15px;
}
.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link {
    color: var(--primary-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: -3px;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: 0px auto;
    background-color: var(--primary-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;
    padding-top: 120px;
    padding-bottom: 70px;
}
/* .breadcrumb-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.5;
    z-index: -1;
} */
.breadcrumb-area span a {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    color: #dfdfdf;
}
.breadcrumb-area span a:hover {
    opacity: 0.7;
}
/************************************* breadcrumb-area css end *************************************/

/************************************* footer-service css start *************************************/
/*====================================
    service-area css
====================================*/
.service-area .service-content .service-icon {
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.service-area .service-content:hover .service-icon {
    transform: scaleX(-1);
}
/************************************* footer-service 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-insta slider-swiper css
====================================*/
.footer-insta .insta-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 25%;
}

/*====================================
    footer-social css
====================================*/
.footer-social ul.social-ul li.social-li a {
    -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;
}
.footer-social ul.social-ul li.social-li a:hover {
    color: var(--extra-font-color);
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}

/*====================================
    footer-list css
====================================*/
.footer-area .footer-list .ft-list {
    margin-top: 13px;
}
.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: 13px;
    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: 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.5);
    filter: brightness(0.5);
}

/*====================================
    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.5);
    filter: brightness(0.5);
}
.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: -4px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}
span.review-ratting>* {
    margin-top: 4px;
    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 *************************************/
/*====================================
    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,
.collection-wrap,
.testi-wrap,
.blog-wrap,
.insta-wrap {
    position: relative;
}
.shop-cat-wrap .swiper-buttons,
.collection-wrap .swiper-buttons,
.testi-wrap .swiper-buttons,
.blog-wrap .swiper-buttons,
.insta-wrap .swiper-buttons {
    display: none;
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}
.shop-cat-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,
.insta-wrap .swiper-buttons .swiper-buttons-wrap {
    display: inline-flex;
}
@media (min-width: 768px) {
    .shop-cat-wrap .swiper-buttons,
    .collection-wrap .swiper-buttons,
    .testi-wrap .swiper-buttons,
    .blog-wrap .swiper-buttons,
    .insta-wrap .swiper-buttons {
        margin-top: 0px;
    }
    .shop-cat-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,
    .insta-wrap .swiper-buttons .swiper-buttons-wrap {
        display: block;
    }
}

/* slider-arrow button css */
.shop-cat-wrap .swiper-buttons button,
.collection-wrap .swiper-buttons button,
.testi-wrap .swiper-buttons button,
.blog-wrap .swiper-buttons button,
.insta-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,
.collection-wrap .swiper-buttons button:last-child,
.testi-wrap .swiper-buttons button:last-child,
.blog-wrap .swiper-buttons button:last-child,
.insta-wrap .swiper-buttons button:last-child:last-child {
    margin: 0px;
}
.shop-cat-wrap .swiper-buttons button:hover,
.collection-wrap .swiper-buttons button:hover,
.testi-wrap .swiper-buttons button:hover,
.blog-wrap .swiper-buttons button:hover,
.insta-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,
    .collection-wrap .swiper-buttons button,
    .testi-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button,
    .insta-wrap .swiper-buttons button {
        position: absolute;
        z-index: 1;
        margin-right: 0px;
    }
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-prev {
        left: 0;
        transform: translateX(-50%);
    }
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(0);
    }
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-next {
        right: 0;
        transform: translateX(50%);
    }
    .container-fluid .collection-wrap .swiper-buttons button.swiper-next {
        transform: translateX(0);
    }
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .testi-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button,
    .insta-wrap .swiper-buttons button {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 1500px) {
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(calc(-100% - 30px));
    }
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-next {
        transform: translateX(calc(100% + 30px));
    }
}
@media (min-width: 1600px) {
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(calc(-100% - 50px));
    }
    .container-fluid .collection-wrap .swiper-buttons button.swiper-prev {
        transform: translateX(-50%);
    }
    .shop-cat-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,
    .insta-wrap .swiper-buttons button.swiper-next {
        transform: translateX(calc(100% + 50px));
    }
    .container-fluid .collection-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,
.collection-wrap .swiper-dots,
.testi-wrap .swiper-dots,
.blog-wrap .swiper-dots,
.insta-wrap .swiper-dots {
    display: none;
    margin-top: 30px;
    line-height: 0;
}
@media (min-width: 1200px) {
    .shop-cat-wrap .swiper-dots,
    .collection-wrap .swiper-dots,
    .testi-wrap .swiper-dots,
    .blog-wrap .swiper-dots,
    .insta-wrap .swiper-dots {
        margin-top: 60px;
    }
}

/* swiper slider-dots button css */
.shop-cat-wrap .swiper-dots .swiper-pagination,
.collection-wrap .swiper-dots .swiper-pagination,
.testi-wrap .swiper-dots .swiper-pagination,
.blog-wrap .swiper-dots .swiper-pagination,
.insta-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,
.collection-wrap .swiper-dots .swiper-pagination span,
.testi-wrap .swiper-dots .swiper-pagination span,
.blog-wrap .swiper-dots .swiper-pagination span,
.insta-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,
.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,
.insta-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-bottom keyframes css
====================================*/
@-webkit-keyframes slide-bottom {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slide-bottom {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}


/*====================================
    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 *************************************/

.offcanvas-trigger {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.offcanvas-trigger button {
    padding: 0;
    width: 18px;
    border: none;
    height: 18px;
    background-color: transparent;
}

.offcanvas-trigger span {
    width: 4px;
    height: 4px;
    float: left;
    margin: 1px;
    position: relative;
    border-radius: 50px;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: #fff;
}

.offcanvas-trigger:hover span:nth-child(1) {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.offcanvas-trigger:hover span:nth-child(2) {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

.offcanvas-trigger:hover span:nth-child(3) {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
}

.offcanvas-trigger:hover span:nth-child(4) {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.offcanvas-trigger:hover span:nth-child(6) {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
}

.offcanvas-trigger:hover span:nth-child(7) {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.offcanvas-trigger:hover span:nth-child(8) {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.offcanvas-trigger:hover span:nth-child(9) {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 13px 56px 13px 25px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 6px;
    width: 32px;
    height: 32px;
    background-color: #fff;
    background-image: url(../image/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-font-color);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.menudrop-li {
    padding: 5px 0px;
    border-bottom: 1px solid #dedede;
}

.menudrop-li:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.menudrop-li:last-child {
    border-bottom: none;
}

.abt-imgmnbx {
    position: relative;
}

.abt-imgone {
    position: absolute;
    top: -5%;
    left: -5%;
}

.abt-imgtwo {
    position: absolute;
    bottom: 2%;
    right: 1%;
}

.section-sbhd {
    font-family: var(--Playball-font);
    font-size: 22px;
    color: var(--primary-color);
}

.section-hd {
    font-size: 50px;
    font-weight: 600;
    font-family: var(--jost-font);
    line-height: 60px;
    margin: 0px 0px 0px;
}

.section-hd span {
    font-style: italic;
    position: relative;
    color: var(--primary-color);
}

/* .section-hd span::after {
    content: '';
    display: inline-block;
    left: -3px;
    position: absolute;
    z-index: -1;
    width: calc(100% + 6px);
    background-color: var(--primary-color);
    height: 5px;
    bottom: 2px;
} */

.abt-section {
    padding: 70px 0px;
    position: relative;
    overflow: hidden;
}

.section-text {
    margin: 12px 0px 0px;
}

.abt-secbtn {
    margin: 30px 0px 0px;
}

.abt-imgmnbx img {
    border-radius: 10px;
}

.abt-pointhd {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
}

.abt-pointtxt {
    margin: 10px 0px 0px;
}

.abt-inniconbx img {
    margin-right: 8px;
}

.abt-sec-pointbx {
    display: flex;
    gap: 20px;
    margin: 25px 0px 0px;
}

.abt-pointinnbx {
    border-right: 1px solid #dee2e6;
}

.abt-pointinnbx:last-child {
    border-right: 0;
}

.abt-verttxtbx {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    position: absolute;
    right: 8%;
    top: 8%;
    letter-spacing: 1px;
}

.abt-verttxtbx:before {
    content: "";
    height: 35px;
    width: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 47%;
    bottom: -15%;
}

.abt-imgtwo img {
    width: 190px;
}

.abt-verttxtbx span {
    color: var(--primary-color);
}

.category-sec {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.cate-cardbx {
    padding: 15px;
    background-color: #fff;
}

.category-mnbx {
    margin: 25px 0px 0px;
}

.cate-cntnhd {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--jost-font);
}

.cate-cntnicon {
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--extra-font-color);
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cate-cntnbx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px 0px;
}

.cate-cardimgbx img {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.cate-cardbx:hover .cate-cardimgbx img {
    webkit-filter: brightness(0.95);
    filter: brightness(0.95);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.cate-cardimgbx {
    overflow: hidden;
}

.product-tab-area {
    padding: 60px 0px;
    position: relative;
    background-color: #f5f5f4;
    overflow: hidden;
}
.allpro-tab {
    font-size: 16px;
    font-weight: 400;
    background: transparent none repeat scroll 0 0;
    border: 0;
    color: #000;
    margin: 0;
    outline: medium none;
    padding-right: 20px;
    line-height: 1.1;
    border-radius: 20px;
    position: relative;
    text-transform: capitalize;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
}

.allpro-tabli {
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
    position: relative;
}

.allpro-tab.active {
    color: var(--primary-color);
}

.allpro-tabli:before {
    content: '';
    height: 1px;
    width: 50px;
    background: #ddd;
    position: absolute;
    right: -42px;
    top: 53%;
}

.allpro-tabli:after {
    content: '';
    height: 8px;
    width: 8px;
    background: #ddd;
    border-radius: 50%;
    position: absolute;
    top: 32%;
    right: -21px;
}

.allpro-lastli:before{
    display: none;
}
.allpro-lastli:after{
    display: none;
}

.pro-slider-thumbnail {
    text-align: center;
    bottom: 0;
    padding-bottom: 0px;
}

.thumbnail {
    width: 30px;
    display: inline-block;
    border: 1px solid #e3000f42;
    border-radius: 5px;
    overflow: hidden;
    padding: 3px;
    background: #fff;
    cursor: pointer;
}

.product-title span a {
    font-size: 16px;
    font-weight: 600;
}

.product-qualitysec {
    padding: 60px 0px 20px;
    position: relative;
    background-image: url(../image/quality-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.qualiy-clipimg img {
    width: 100px;
}

.shoequality-clipimgbx img {
    width: 60%;
}

.shoequality-clipimgbx.text-center {
    margin: 30px 0px 30px 0px;
}

.shoequality-imgbx {
    position: relative;
}

.quality-cliptxt {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    line-height: 18px;
    margin: 20px 0px 0px;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
}

.quality-clipimgbxone {
    position: absolute;
    top: 10%;
    left: 12%;
}

.quality-clipimgbxtwo {
    position: absolute;
    top: 0;
    left: 45%;
}

.quality-clipimgbxthree {
    position: absolute;
    top: 10%;
    right: 12%;
}

.quality-clipimgbxone img, .quality-clipimgbxtwo img, .quality-clipimgbxthree img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}

.slipper-qualimgbx {
    padding: 220px 0px 0px;
    margin: 30px 0px 0px;
}

.quality-keylineone .line-vertical {
    border-top: 1px dashed #000;
    height: 10px;
    width: 220px;
    display: block;
    transform: rotate(340deg);
}

.quality-keylineone .line-horizontal {
    border-top: 1px dashed #000;
    height: 10px;
    width: 50px;
    display: block;
    position: absolute;
    top: 38px;
    left: -46px;
}

.quality-keylineone {
    position: absolute;
    top: 33%;
    left: 26%;
}


.quality-keylinetwo .line-vertical {
    border-top: 1px dashed #000;
    height: 10px;
    width: 220px;
    display: block;
    transform: rotate(340deg);
}

.quality-keylinetwo .line-horizontal {
    border-top: 1px dashed #000;
    height: 10px;
    width: 50px;
    display: block;
    position: absolute;
    top: 38px;
    left: -46px;
}
.quality-keylinetwo {
    position: absolute;
    bottom: 30%;
    left: 25%;
}

.quality-keylinethree .line-vertical {
    border-top: 1px dashed #000;
    height: 9px;
    display: block;
    transform: rotate(49deg);
    width: 50px;
    position: absolute;
    top: 17px;
    right: -39px;
}

.quality-keylinethree .line-horizontal {
    border-top: 1px dashed #000;
    width: 180px;
    display: block;
}

.quality-keylinethree {
    position: absolute;
    top: 22%;
    right: 22%;
}

.quality-keylinefour {
    position: absolute;
    top: 58%;
    right: 25%;
}

.quality-keylinefour .line-vertical {
    border-top: 1px dashed #000;
    height: 9px;
    display: block;
    transform: rotate(49deg);
    width: 50px;
    position: absolute;
    top: 17px;
    right: -39px;
}

.quality-keylinefour .line-horizontal {
    border-top: 1px dashed #000;
    width: 240px;
    display: block;
}

.quality-clipimgbxone span:before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotateFull 10s infinite ease-in-out;
    transition: all 0.3s ease;
}
.quality-clipimgbxtwo span:before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotateFull 10s infinite ease-in-out;
    transition: all 0.3s ease;
}
.quality-clipimgbxthree span:before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotateFull 10s infinite ease-in-out;
    transition: all 0.3s ease;
}

.quality-clipimgbxone span, .quality-clipimgbxtwo span, .quality-clipimgbxthree span {
    position: relative;
    width: 110px;
    height: 110px;
    display: inline-block;
}

@keyframes rotateFull {
    0% {
    rotate: 0deg;
}

50% {
    rotate: 360deg;
}
100% {
    rotate: 0deg;
}
    
}

.quality-bgimgbx {
    position: absolute;
    bottom: 0;
    opacity: .3;
}

.quality-bgimgbxtwo {
    position: absolute;
    top: 40%;
    right: 5%;
    transform: scaleX(-1);
    opacity: .7;
}

.quality-bgimgbxthree {
    position: absolute;
    top: 40%;
    left: 5%;
    opacity: .7;
}

.acc-slide {
    padding: 20px 20px 12px 20px;
    border: 1px solid #C7C7C7;
}

.acc-img {
    background-color: #eee;
}

.acc-info h4 {
    font-size: 16px;
    font-weight: 600;
}

.acc-img {
    background-color: #eee;
    margin-bottom: 7px;
}

.menslider-btn {
    position: absolute;
    top: 12px;
    width: 76px;
    height: 38px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    z-index: 99;
    -webkit-transform: inherit;
    transform: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    color: var(--primary-color);
}

.arriavls-items-column {
    position: relative;
    margin: 0px 0px 0px 20px;
}

.menslider-next {
    right: 0;
}   


.menslider-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.section-hd2 {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--jost-font);
    line-height: 40px;
    margin: 0px 0px 0px;
}

.section-hd2 span {
    font-style: italic;
    position: relative;
    color: var(--primary-color);
}

.mensSwiper {
    margin: 30px 0px 0px;
}

.accessories-section {
    padding: 60px 0px;
    overflow: hidden;
}

.prod-col {
    position: relative;
    text-align: left;
}

.prod-col img {
    border-radius: 10px;
}

.prod-col:before {
    content: "";
    border: 1px dashed #dcdde1;
    position: absolute;
    border-radius: 10px;
    right: -17px;
    top: 15px;
    bottom: 0px;
    left: 15px;
    z-index: -1;
}

.mens-opahd {
    background-image: linear-gradient(to left, #efefef, #efefef, #f7f7f7, #fdfdfc, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    position: absolute;
    top: 50px;
    right: -30px;
    line-height: 80px;
}


.women-sec {
    padding: 60px 0px;
    position: relative;
    background-image: url(../image/women-bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.women-sechd {
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--Gilda-font);
    line-height: 60px;
    font-weight: 600;
}

.women-secsbhd {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--Gilda-font);
    line-height: 40px;
    font-weight: 500;
    position: relative;
}

.women-secsbhd:before {
    content: "";
    height: 1px;
    width: 76%;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
    left: 24%;
}

.women-viewall {
    font-size: 18px;
    color: #fff;
    font-family: var(--jost-font);
    position: absolute;
    bottom: 20px;
    right: 0;
}

.women-viewall span {
    height: 30px;
    width: 30px;
    background-color: #fff;
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 15px;
    margin-left: 10px;
}

.women-hdbx {
    position: relative;
}

.women-procardimg {
    background-color: #faf1e8;
    border-radius: 8px;
}

.swiperWomen {
    margin: 30px 0px 0px;
}


.women-prohd {
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 0px 0px;
    border-radius: 8px;
    color: #232323;
}

.kids-sec {
    padding: 60px 0px;
    position: relative;
    background-image: url(../image/hero-bg-4-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.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: block;
}

@keyframes titleKids {
    0% {
    width: 0;
}

15% {
    width: 100%;
}
85% {
    opacity: 1;
}
90% {
    width: 100%;
    opacity: 0;
}
100% {
    width: 0;
    opacity: 0;
}
    
}

.kidshd-span span svg {
    animation: titleKids 4s infinite;
}

.kids-clipimgone {
    position: absolute;
    z-index: 0;
    bottom: 3%;
    left: 3%;
    transition: all 0.3s ease-out 0s;
    transform: scale(0.6);
}

.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);
}

@keyframes itrotate2 {
    0% {
    transform: rotateY(0deg);
}
100% {
    transform: rotateY(360deg);
}
    
}

.kids-clipimgthree {
    position: absolute;
    z-index: 0;
    top: 2%;
    left: 3%;
    animation: zoomIn 3s infinite;
}

.kids-clipimgfour {
    position: absolute;
    z-index: 0;
    top: 5%;
    right: 2%;
    animation: itswing 1s forwards infinite alternate;
    transform-origin: bottom center;
}

@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);
}
    
}

.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;
}

/* .fly-one {
    position: absolute;
    top: 6%;
    left: -19%;
    z-index: 1;
    transition: all 3s cubic-bezier(0.4, 0.2, 0.2, 1);
    animation: flap 0.3s infinite alternate ease-in-out;
    transform-origin: center 120%;
} */
@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);
}
    
}

.kids-clipimgfiveinn:after {
    left: -9%;
    bottom: 1px;
    border-radius: 10px 10px 268px 10px;
    background-color: #1AB69D;
    content: "";
    position: absolute;
    width: 322px;
    height: 265px;
    z-index: -1;
}

.kids-clipimgfiveinn {
    position: relative;
}

.kids-proone {
    transform: scaleX(-1);
}

.kids-clipimgsix {
    position: absolute;
    bottom: 13%;
    left: 8.5%;
    left: 0;
    transform: scale(0.7);
}

.kids-clipimgsixinn {
    position: relative;
}

.fly-two {
    position: absolute;
    top: 0%;
    left: 60%;
    z-index: 1;
    transition: all 3s cubic-bezier(0.4, 0.2, 0.2, 1);
    animation: flap 0.3s infinite alternate ease-in-out;
    transform-origin: center 120%;
}

.kids-clipimgsixinn:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1px;
    width: 322px;
    height: 265px;
    border-radius: 10px 10px 10px 262px;
    z-index: -1;
    background-color: #f8c62f;
}

.kids-hdbx {
    padding-top: 70px;
    padding-bottom: 120px;
    /* width: 50%; */
    margin: auto;
}

.kidssection-text {
    margin: 20px 0px 0px;
}

.kids-clipimgthree img {
    width: 60px;
}

.kids-clipimgseven {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.kids-clipimgseven img {
    width: 50%;
}

.kids-productsec {
    padding: 0px 0px 50px;
    position: relative;
}

.kidspro-card {
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kidsprocard-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.kids-proimg {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kids-prohd {
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 0px 0px;
    border-radius: 8px;
    color: #232323;
}

.kidsSwiper {
    margin: 30px 0px 0px;
}

.kids-section {
    position: relative;
    background-image: url(../image/bg-newhome2.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px;
}

.it-funfact-icon span svg path {
    fill: #000;
}

.it-funfact-number {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--jost-font);
}

.it-funfact-number i{
    font-style: normal;
}

.it-funfact-content {
    margin-left: 10px;
}

.it-funfact-icon {
    margin: 20px 0px 0px;
}

.it-funfact-icon span {
    z-index: 1;
    position: relative;
    display: inline-block;
    margin-right: 17px;
    padding-left: 12px;
}

.it-funfact-icon span::after {
    position: absolute;
    content: "";
    top: -10px;
    left: 0;
    display: inline-block;
    height: 41px;
    width: 41px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    z-index: -1;
    background-color: rgb(227 0 27 / 8%);
}

.it-funfact-item:hover .it-funfact-icon img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.it-funfact-icon span img {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.counter-sec {
    padding: 60px 0px 40px;
}

.newprocard-bxone{
    background-color: #f3eddf;
}

.newpro-tag {
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 2px;
}

.newprocard-bxone .newpro-tag{
    background-color: #8a8a8a;
}

.newprocard-bx {
    position: relative;
    padding: 20px 0px;
    overflow: hidden;
}

.newpro-tag {
    position: absolute;
    top: 20px;
    left: 20px;
}

.newpro-hd {
    background-color: #fff;
    padding: 5px 10px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: #232323;
    font-size: 17px;
    font-weight: 500;
}

.newpro-imgbx img {
    transition:  0.3s ease-in-out, filter 0.3s ease-in-out;
    transform: scale(1.3);
}

.newprocard-bx:hover .newpro-imgbx img {
    transform: scale(1);
}

.newprocard-bxtwo {
    background-color: #e6d3cc;
}

.newprocard-bxtwo .newpro-tag{
    background-color: #a35354;
}

.newprocard-bxthree {
    background-color: #dddfd1;
}

.newprocard-bxthree .newpro-tag{
    background-color: #63775c;
}

.newprocard-bxfour {
    background-color: #cfd7e1;
}

.newprocard-bxfour .newpro-tag{
    background-color: #73809b;
}

.newarrival-sec {
    padding: 60px 0px;
    position: relative;
}

.newarrSwiper {
    margin: 0px 0px 0px;
}

.banner-content-info {
    background-color: #333333;
}   

.banner-area .banner-block .banner-content .banner-content-info h2::after, .banner-area .banner-block .banner-content .banner-content-info h2 span::after {
    content: attr(data-text-shadow);
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-text-fill-color: #333;
    -webkit-background-clip: text;
    text-shadow: 1px 0 0 var(--body-font-color), 0 1px 0 var(--body-font-color), -1px 0 0 var(--body-font-color), 0 -1px 0 var(--body-font-color);
    margin-top: 5px;
    margin-left: 5px;
}

.banner-area .banner-block .banner-content .banner-content-info h2, .banner-area .banner-block .banner-content .banner-content-info h2 span {
    position: relative;
    z-index: 1;
}

.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);
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

.primary-btn::before, .primary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    z-index: -1;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.primary-btn::before {
    left: 0;
    border-radius: 0px 0px 0px 0px;
}

.primary-btn::after {
    right: 0;
    border-radius: 0px 0px 0px 0px;
}

.primary-btn:hover::before {
    width: 50%;
}

.primary-btn:hover::after {
    width: 50%;
}

.offer-text .offer-text-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(to left, rgba(var(--border-color), var(--border-opacity)), rgba(var(--border-color), var(--border-opacity)) 8px, transparent 8px, transparent 16px) 0px 1px / 100% 4px no-repeat, radial-gradient(circle at center, rgba(var(--border-color), var(--border-opacity)) 4px, transparent 2px) 4px 0 / 16px 4px repeat-x;
}

.offer-text .offer-text-wrap .offer-text-gif {
    bottom: -12px;
    animation: scissors-bottom 20s linear infinite;
}

@keyframes scissors-bottom {

    0% {
    left: 0;
}
100% {
    left: 100%;
}
    
}

.whyus-cardpointbx {
    padding: 40px 30px;
    border-radius: 86px 114px 122px 94px;
}

.whyus-cardpointbxone{
    background-color: #ffede9;
}

.whyus-point-iconbx i {
    color: var(--primary-color);
    font-size: 35px;
    margin: 0px 0px 20px 0px;
}

.whyuspoint-hd {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin-bottom: 10px;
}

.whyus-cntnbx {
    margin: 10px 0px;
}

.whyus-sec {
    padding: 70px 0px 0px;
    /* background-color: #fdf8f3; */
    position: relative;
    overflow: hidden;
    background-image: url(../image/16.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.footer-logobx img {
    width: 180px;
}

.footer-area {
    padding: 70px 0px 0px 0px;
}

.whyuspint-icon {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.whyus-pointhd {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
}

.whyus-pointiconbx {
    border-bottom: 1px solid #dee2e6;
    padding: 20px 30px 20px 0px;
}

.whyus-pointiconbx:last-child {
    border: 0;
}

.why-usrightimgbx {
    text-align: right;
    border-radius: 10px;
    position: relative;
}

.why-usrightimgbx img {
    border-radius: 10px;
}

.why-us-secondimg {
    position: absolute;
    bottom: -30px;
    left: 20px;
}

.postersec {
    margin: 30px 0px 0px;
}

.banner-area {
    padding: 40px 0px 60px;
    overflow: hidden;
}

.whyus-clipimgbx {
    position: absolute;
    opacity: .08;
    left: 0;
    top: 30%;
}

.whyus-sectpbx {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    top: -1px;
}

.whyus-sectpbx svg {
    width: calc(100% + 1.3px);
    height: 67px;
    display: block;
}

.whyus-sectpbx svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.counterhdtxt {
    font-size: 18px;
    color: #333;
    text-transform: capitalize;
    font-family: var(--jost-font);
    line-height: 30px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 5px 40px;
    border-radius: 30px;
}

.counter-sechd:before {
    content: "";
    border-top: 1px solid #dee2e6;
    width: 34%;
    display: block;
    top: 50%;
    left: 0;
    position: absolute;
}
.counter-sechd:after {
    content: "";
    border-top: 1px solid #dee2e6;
    width: 34%;
    display: block;
    top: 50%;
    right: 0;
    position: absolute;
}

.counter-sechd {
    position: relative;
    text-align: center;
    margin: 0px 0px 20px 0px;
}

.marqueeone {
    background-color: var(--primary-color);
}

.scroll-text .scroll-text-row.scroll-text-left {
    -webkit-animation: slide-left 50s linear infinite;
    animation: slide-left 50s linear infinite;
}

.scroll-text .scroll-text-row.scroll-text-right {
    -webkit-animation: slide-right 50s linear infinite;
    animation: slide-right 50s linear infinite;
}

@keyframes slide-right {

    0% {
    transform: translate3d(-50%, 0, 0);
}
100% {
    transform: translate3d(0, 0, 0);
}
    
}

.copyright {
    background-color: #fff;
    border-radius: 20px 20px 0px 0px;
    padding: 10px 0px;
    margin: 60px 20px 0px 20px;
}

.ft-title {
    position: relative;
    padding-left: 10px;
}

.ft-title:before {
    content: "";
    width: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.ftr-contacticon i {
    height: 40px;
    width: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftr-contctconbx {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.ftr-contacthd {
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 0px;
    border-radius: 8px;
    color: #fff;
}

.ftr-contactno {
    color: var(--body-font-color);
}

.ftr-contact-iconbxmn {
    margin: 20px 0px 0px;
}

/* Drawer */
.cart-drawer{
    width: 380px;
    right: -100%;
    background: #fff;
    transition: 0.4s ease;
    padding: 40px 30px;
    overflow-y: auto;
}

.cart-drawer.active{
    right: 0;
}

/* Close Button */
.drawer-close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* Logo */
.drawer-logo{
    margin-bottom: 30px;
}

.drawer-logo img{
    max-width: 180px;
}

/* About */
.drawer-about h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.drawer-about p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Contact */
.drawer-contact{
    margin-bottom: 30px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #222;
}

.contact-item i{
    width: 40px;
    height: 40px;
    background: #f3f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex: 0 0 40px;
}

/* Social */
.drawer-social{
    display: flex;
    gap: 12px;
}

.drawer-social a{
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.drawer-social a:hover{
    transform: translateY(-4px);
}

/* Mobile */
@media(max-width:575px){

    .cart-drawer{
        width: 100%;
        padding: 30px 20px;
    }

}

.drawer-close button:hover {
    color: #fff;
}

.acc-img img{
    height: 280px;
    object-fit: cover;
}

.abt-clipimgbx {
    position: absolute;
    right: 0;
    top: 7%;
    transform: scaleX(-1);
    opacity: .54;
}

.kids-prosliderimgbx {
    position: absolute;
    top: -40%;
    left: 5%;
    animation: animationUpandDown 8s linear infinite;
}

@keyframes animationUpandDown {
0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-60px);
}
100% {
    transform: translateY(0px);
}    
}

.intro-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-sec .container-fluid {
    padding: 0;
}

.video-sec {
    overflow: hidden;
    position: relative;
}

.intro-video-box {
    position: relative;
    height: 560px;
    border-radius: 10px;
    overflow: hidden;
}

.intro-video-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-video-box .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a {
    position: relative;
    background: var(--primary-color);
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.4s ease-in-out;
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 40%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a i {
    font-size: 34px;
    color: #fff;
    margin-left: 3px;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid #fff;
    opacity: 40%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {

    100% {
    transform: scale(1);
    opacity: 0;
}
    
}

.video-overlaycntn {
    position: absolute;
    top: 15%;
    z-index: 2;
    transform: translateX(0%);
}

.video-overlayhd {
    font-family: var(--jost-font);
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 40px;
}

.video-overlaytxt {
    text-align: center;
    color: #fff;
    margin: 20px 0px 0px;
}

.video-overlayhd span {
    font-style: italic;
    position: relative;
    color: var(--primary-color);
}

.bread-hd {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--jost-font);
    line-height: 50px;
    margin: 0px 0px 10px;
    color: #fff;
}

.bread-hd span {
    font-style: italic;
    position: relative;
    color: #ffffff;
    font-weight: 400;
}

.shop-content {
    padding: 70px 0px;
}

.pro-sidebaricon {
    height: 30px;
    width: 30px;
    background-color: #9b9b9b;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 10px;
}

.sidebar-procatebx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 7px 15px;
    border-radius: 10px;
}

.single-product-list .pro-img {
    background-color: #f8f8f8;
    display: block;
}

.product-item-img {
    background-color: #f8f8f8;
}

.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;
}

.pro-dtlswiperbtn {
    background-color: var(--primary-color);
}

.product-detail {
    padding: 70px 0px;
}

.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 {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.section-capture .section-title {
    display: flex;
    justify-content: center;
}

.section-capture {
    margin-bottom: 10px;
    overflow: hidden;
}

.related-area {
    background-color: #f8f8f7;
    padding: 60px 0px;
    position: relative;
}

.productdlt-hd {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--jost-font);
    line-height: 60px;
    margin: 0px 0px 0px;
}

.productdlt-hd span {
    font-style: italic;
    position: relative;
    color: #868686;
}

.productdtl-midhd {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin: 0px 0px 15px 0px;
    display: block;
}

.product-offer-block span i {
    height: 26px;
    width: 26px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-right: 10px;
}

.productdtl-btn {
    margin: 15px 0px 0px;
}

.product-offer-block span {
    background-color: #fff8f8;
    padding: 10px 15px;
    border-radius: 10px;
}

.product-card{
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: .3s;
}

.product-slider{
    position: relative;
}

.product-slider img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.product-card .swiper-button-prev,
.product-card .swiper-button-next{
    width:40px;
    height:40px;
    background:#fff !important;
    border-radius:50%;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.product-card:hover .swiper-button-prev,
.product-card:hover .swiper-button-next{
    opacity:1;
    visibility:visible;
}

.product-card .swiper-button-prev:after,
.product-card .swiper-button-next:after{
    font-size:14px;
    color:#000;
}

.product-content{
    padding: 0px;
    text-align:center;
}

.product-slider {
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
}

.pro-content-info {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
}

.product-action-wrap {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    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;
}
    
.product-cart-action {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    border-radius: 10px;
}

.product-cart-action a span.product-icon {
    color: var(--extra-font-color);
    font-size: 14px;
    width: 100%;
    height: 48px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border: 1px solid var(--primary-font-color);
    border-radius: var(--border-radius);
    -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;
    border-radius: 10px;
}


.single-product:hover .product-cart-action {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 2;
}

.product-action-wrap .product-action {
    display: flex;
    align-items: center;
}

.product-action-wrap .product-action {
    transform: translateX(15px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.product-action-wrap .product-action {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.product-action-wrap .product-action a {
    margin-right: 0px;
}


.product-action-wrap .product-action a:last-child {
    margin: 0px;
}
.product-action-wrap .product-action a {
    position: relative;
    margin-right: 10px;
}

.allpro-arrowbtn {
    height: 45px;
    width: 45px;
    background-color: #e3001b24;
    color: var(--primary-color);
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s ease;
}

.allpro-arrowgrup {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: right;
}

.allpro-arrowbtn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition: .3s ease;
}

.allpro-tabrow {
    margin-top: 20px;
}

.quality-secmn {
    position: relative;
    padding: 60px 0px;
    background-image: url(../image/quality-gradient.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-section {
    position: relative;
}

.quality-clipartimg {
    position: absolute;
    width: 40%;
    left: 35%;
    top: 30%;
    z-index: 1;
}

.quality-slipperimgbx {
    z-index: 2;
    position: relative;
    flex: 0 0 50%;
    width: 50%;
}
.quality-wingertxt {
    color: #eaeaea;
    font-size: 270px;
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
    top: 30%;
    left: 11%;
    opacity: .7;
    z-index: 0;
}

.quality-left {
    position: relative;
    display: flex;
    align-items: center;
}

.quality-secmnbx {
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
    background-image: url(../image/ithg3.png);
    background-position: revert;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid #eee;
}

.container-custom{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    position:relative;
}

/* Heading */

.hero-title{
    text-align:center;
    font-size:46px;
    font-weight:900;
    line-height:1.1;
    color:#222;
    position:relative;
    z-index:1;
}

.hero-title span{
    color: var(--primary-color);
}

/* Background Text */
.bg-text {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    font-size: 150px;
    font-weight: 900;
    color: #ececec;
    letter-spacing: 15px;
    z-index: 0;
    user-select: none;
    opacity: .5;
}

/* Shoe Area */

.product-wrapper{
    position:relative;
    /* width:650px; */
    margin:10px auto 0;
    text-align:center;
    z-index:1;
}

.product-img{
    width:520px;
    max-width:100%;
    transform:rotate(5deg);
    filter:drop-shadow(0 35px 35px rgba(0,0,0,.18));
    position:relative;
    z-index:5;
}

/* Orbit Lines */

.orbit{
    position:absolute;
    top:50%;
    left:50%;
    overflow:visible;
    pointer-events:none;
}

.orbit ellipse{
    fill:none;
    stroke-width:2.5;
    stroke-linecap:round;
}

/* Horizontal Orbit */

.orbit-1{
    width:600px;
    height:350px;
    transform:translate(-50%,-50%) rotate(12deg);
    animation:spin1 22s linear infinite;
}

.orbit-1 ellipse{
    stroke:#f6c6434a;
    stroke-dasharray:4 10;
}

/* Vertical Orbit */

.orbit-2{
    width:420px;
    height:520px;
    transform:translate(-50%,-50%) rotate(-25deg);
    animation:spin2 28s linear infinite;
}

.orbit-2 ellipse{
    stroke:#ff6b6b7d;
    stroke-dasharray:4 12;
}

/* Animations */

@keyframes spin1{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes spin2{
    from{
        transform:translate(-50%,-50%) rotate(360deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(0deg);
    }
}

/* Social */

.social{
    position:absolute;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    z-index:50;
}

.line{
    width:2px;
    height:80px;
    background:#222;
    margin-left:9px;
    margin-bottom:20px;
}

.social a{
    display:block;
    color:#222;
    margin:12px 0;
    font-size:14px;
    transition:.3s;
}

.social a:hover{
    transform:translateX(3px);
}

/* Price */

/* .price-box{
    position:absolute;
    left:20px;
    bottom:40px;
    z-index:50;
} */

.price-box h5{
    font-size:18px;
    font-weight:700;
}

.price-box p{
    color:#666;
}

.price-box .btn{
    border-radius:0;
    font-size:12px;
    padding:8px 14px;
}

/* Badge */

.badge-circle{
    position:absolute;
    right:60px;
    top:140px;
    width:100px;
    height:100px;
    border-radius:50%;
    background:#ff5757;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:10px;
    font-weight:700;
    text-align:center;
    z-index:50;
}

/* Stars */

.star{
    position:absolute;
    color:#ff5757;
    font-size:22px;
    z-index:1;
}

.star-1{
    left:100px;
    top:120px;
}

.star-2{
    right:150px;
    top:280px;
}

/* Number */

.page-no{
    position:absolute;
    right:40px;
    bottom:10px;
    font-size:90px;
    color:#dcdcdc;
    font-weight:300;
}

/* Responsive */

@media(max-width:992px){

    .hero-title{
        font-size:38px;
    }

    .bg-text{
        font-size:110px;
    }

    .product-img{
        width:320px;
    }

    .orbit-1{
        width:350px;
    }

    .orbit-2{
        width:280px;
        height:380px;
    }

    .badge-circle{
        width:70px;
        height:70px;
        font-size:8px;
    }

    .page-no{
        font-size:50px;
    }
}

.quality-iconcard {
    display: flex;
    gap: 20px;
}

.quality-cardhd {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--Playball-font);
    color: var(--secondary-font-color);
    text-align: left;
}

.quality-cardsbhd {
    text-align: left;
}

.quality-iconbx {
    height: 60px;
    width: 60px;
    
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    object-fit: contain;
    position: relative;
}

.quality-iconbx::before {
    content: "";
    border: 1px dashed var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: rotateFull 8s infinite ease-in-out;
}

.quality-iconcardone {
    position: absolute;
    top: 32%;
    left: 0;
    width: 25%;
}

.quality-iconcardtwo {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 25%;
}

.quality-iconcardthree {
    position: absolute;
    right: 0;
    top: 31%;
    width: 25%;
}

.quality-iconcardfour {
    position: absolute;
    right: 0;
    bottom: 15%;
    width: 25%;
}

@keyframes rotateFull {
    0% {
    rotate: 0deg;
}
50% {
    rotate: 360deg;
}
100% {
    rotate: 0deg;
}
}

.star-3 {
    position: absolute;
    top: 15%;
    right: 10%;
    animation: rotateFull 8s infinite ease-in-out;
}

.star-3 img {
    width: 70px;
}

#header{
    z-index: 11;
}

/* .quality-iconcardone .quality-iconbx img {
    background-color: var(--primary-color);
    border: 1px dashed #fff;
}

.quality-iconcardone .quality-iconbx img {
    background-color: var(--primary-color);
    border: 1px dashed #fff;
} */

.main-header {
    /* z-index: 999 !important; */
}

.quality-hdicon {
    position: absolute;
    top: 10%;
    left: 26%;
}

.quality-hdicon img {
    width: 40px;
}

.kids-bannerbx img {
    border-radius: 15px;
}


.kids-sliderhdbx {
    padding: 40px 0px 0px 0px;
}

.why-us-secondimg img {
    width: 250px;
}

.bestseller-rightbx {
    position: relative;
}
.bestseller-sec {
    overflow: hidden;
    padding: 0px 0px 20px;
    background-image: url(../image/bestselling-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.best-productimgbx {
    background-color: #eee9e3;
    border: 10px solid #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


/* .bestseller-rightimgbx {
    position: absolute;

    bottom: 0;
    left: -20%;
} */

.bestsellerProduct {
    padding: 20px 10px 20px 10px !important;
    margin: 20px 0px 0px;
}


.best-productimgbx img {
    height: 310px;
    object-fit: cover;
    padding: 20px;
}

.bestseller-productbx {
    position: relative;
}

.bestseller-tapeimgbx {
    position: absolute;
    width: 35%;
    transform: rotate(331deg);
    left: -8px;
    top: 0;
}

.bestseller-namebx{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 5px 10px;
    text-align: center;
    margin: 10px 0px 0px;
    font-size: 16px;
    font-weight: 600;
    color: #232323;
}

.bestseller-rightimgbx {
    margin-right: -30px;
}

.enquiryhm-formbx {
    padding: 100px 0px;
    background: linear-gradient(135deg, rgb(248, 249, 255), rgb(255, 255, 255));
}

.enquiryhm-formbx {
    padding: 30px 30px;
    background: linear-gradient(135deg, rgb(248, 249, 255), rgb(255, 255, 255));
    border-radius: 10px;
}

.form-row input {
    width: 100%;
    margin: 10px 0px;
}

.txtearea textarea {
    width: 100%;
    margin: 10px 0px;
}

.bestsection-hd {
    font-size: 70px;
    line-height: 70px;
}

.bestsection-hd span {
    color: #4e5337;
}

.bestsection-sbhd {
    font-size: 27px;
    color: #4e5337;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-family: var(--Playball-font);
}


.bestsection-sbhd:before {
    content: "";
    position: absolute;
    height: 3px;
    background-color: #4e5337;
    width: 80px;
    bottom: 0;
}

.bestsection-text {
    margin: 20px 0px -0px;
    position: relative;
}

.bestsection-text:before {
    content: "";
    position: absolute;
    height: 3px;
    background-color: #4e5337;
    width: 80px;
    top: 0;
}

.bestsection-text {
    margin: 20px 0px -0px;
    position: relative;
    padding-top: 20px;
}

.best-frameimgbx {
    position: relative;
}

.best-frameinnbx {
    position: absolute;
}

.best-productinframeinn img {
    width: 290px;
    margin: 60px 0px 0px 30px;
}

.best-producthd a {
    font-size: 22px;
    margin: 40px 0px 0px 80px;
    display: inline-block;
    transform: rotate(350deg);
    padding: 0px 0px 10px 0px;
    font-family: var(--dancing-font);
}

.bestright-imgbx {
    margin-right: -50px;
}

.bestright-imgbx {
    margin: 0px 0px 0px 0px;
}

/* .swiperBestRight {
    overflow: visible !important;
} */

.best-qualitybx {
    display: flex;
    gap: 15px;
    align-items: center;
}

.best-qualityiconbx {
    border: 1px solid #6f683f;
    padding: 0px;
    border-radius: 50%;
    background-color: #f3eeea;
}

.best-qualityiconbx img {
    padding: 10px;
}

.best-qualityhd {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    text-transform: uppercase;
}

.bestseller-qualityrow {
    margin: 20px 0px 0px;
}

.quality-logobx img {
    width: 120px;
    margin-bottom: 30px;
}

.hmenquiry-forminn {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin: 20px 0px 0px;
}

.hmenquiry-secbtn {
    margin: 10px 0px 0px;
}

.abtpgmnsec {
    padding: 90px 0px 60px;
    position: relative;
    overflow: hidden;
}

.corevalue-cardhd {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin-bottom: 10px;
}

.swiperCoreValue .corevalue-card .corevalueiconbx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
}


.swiperCoreValue .corevalue-card .corevalueiconbx:before {
    width: 100%;
    height: 50%;
    background-color: var(--primary-color);
    opacity: .12;
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: .4s cubic-bezier(.12, 0, .39, 0);
    transition: .4s cubic-bezier(.12, 0, .39, 0);
}

.corevalue-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 1;
    border-right: 1px solid #eee;
}

.swiperCoreValue .swiper-wrapper .swiper-slide:nth-child(even) .corevalueiconbx:before{
    transform: rotate(140deg);
}

.corevalue-card:hover .corevalueiconbx {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s cubic-bezier(.37, .8, .63, 1.2);
    transition: .3s cubic-bezier(.37, .8, .63, 1.2);
}

.corevalue-card:hover .corevalueiconbx:before {
    height: 100%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    /* opacity: 1; */
}

.swiperCoreValue {
    padding: 10px 0px !important;
    margin: 30px 0px 0px;
}

.corevalue-contentbx {
    padding: 0px 30px;
}

.half-circleimgbx {
    position: absolute;
    top: 0;
    opacity: .5;
    left: 0;
}

.brandstory-sec {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.brandstroycard-hd {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin-bottom: 10px;
    text-align: center;
}

.brandstory-cardcnthd {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin-bottom: 10px;
}

.brandstory-linebx {
    margin: 25px 0px;
    webkit-transition: .5s cubic-bezier(.5, 1, .89, 1);
    transition: .5s cubic-bezier(.5, 1, .89, 1);
    will-change: transform;
    position: relative;
}

.brandstory-linebx .brandstory-cardlinespan {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: .1;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-font-color);
}

.brandstory-circlemnbx {
    background-color: #fff1ee;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.brandstory-circleinn {
    height: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 100%;
}

.brand-cardbx:hover .brandstory-linebx {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.swiperBrand {
    padding: 10px 0px !important;
    margin: 30px 0px 0px;
}

.mv-sec {
    background-color: #f8f8f7;
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.mv-boxmn {
    margin: 50px 0px 0px;
}

.mvbxinn {
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.mv-mnbxhd-hd{
     font-size: 18px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: #fff;
    margin-bottom: 0px;
}

.mv-mnbxhd {
    position: absolute;
    top: -5%;
    background-color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 10px;
    left: 38%;
}

.director-sec {
    background-color: #f8f8f7;
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.direct-bandone {
    position: absolute;
    width: 180px;
    background-color: var(--primary-color);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.director-imgbx {
    z-index: 2;
    position: relative;
    border: 10px solid #fff;
}

.director-name {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--jost-font);
    color: var(--secondary-font-color);
    margin-bottom: 5px;
}

.director-sbname {
    font-family: var(--Playball-font);
    font-size: 22px;
    color: var(--primary-color);
}

.director-messgebx {
    border: 1px solid var(--primary-color);
    padding: 20px 30px;
}

.directormssgbx-cntn {
    margin: 20px 0px 0px;
}

.director-point li span {
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.director-point li {
    margin: 0px 0px 10px 0px;
}

.director-point {
    margin: 20px 0px 0px;
}

.director-img-btmhd {
    color: #fff;
    font-size: 20px;
    z-index: 2;
    position: relative;
    text-align: center;
    font-weight: 600;
    margin: 12px 0px 0px;
}

.director-img-btmhd span {
    color: var(--primary-color);
    margin-left: 10px;
}

.director-secondrow {
    margin: 30px 0px 0px 0px;
}

.founderstory-txtbx {
    border: 1px solid var(--primary-color);
    padding: 20px 30px;
}

.founderstory-txtbx p {
    margin: 5px 0px;
}

.founderstory-hdbx p {
    font-size: 60px;
    z-index: 2;
    position: relative;
    line-height: 50px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #ffffff;
    color: transparent;
    font-weight: 700;
    transform: rotate(270deg);
}

.founderstory-hdbxtwo p {
    font-size: 60px;
    z-index: 2;
    position: relative;
    line-height: 50px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--primary-color);
    color: transparent;
    font-weight: 700;
    transform: rotate(270deg);
}

.founderstorybx {
    position: relative;
    margin: 50px 0px 0px;
}
.founderstory-hdbxtwo {
    height: 100%;
    position: absolute;
    width: fit-content;
    z-index: 1;
    bottom: 5%;
    transform: translateY(18%);
    justify-content: center;
    padding: 0px 15px;
    display: flex;
    transition: .3s ease;
    left: 22%;
}

.founderstory-hdbx {
    height: 100%;
    position: absolute;
    width: fit-content;
    z-index: 1;
    bottom: 10%;
    transform: translateY(22%);
    justify-content: center;
    padding: 0px 15px;
    display: flex;
    transition: .3s ease;
    left: 10%;
}

.founderstoryhdbx {
    margin: 0px 0px 30px 0px;
}

.galleypg-sec {
    padding: 60px 0px;
    position: relative;
}

.gallery-section{
    padding:100px 5%;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading span{
    color:#7c3aed;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.gallery-heading h2{
    font-size:48px;
    margin-top:15px;
    color:#222;
}

.gallery-heading p{
    max-width:700px;
    margin:20px auto 0;
    color:#666;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    display:block;
    margin: 15px 0px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item::before{
    content:'+';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:var(--primary-color);
    font-size:40px;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}

.large{
    grid-column:span 2;
    grid-row:span 2;
}

.tall{
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .large,
    .wide,
    .tall{
        grid-column:span 1;
        grid-row:span 1;
    }

    .gallery-heading h2{
        font-size:36px;
    }
}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-heading h2{
        font-size:28px;
    }
}

.contact-touch {
    padding: 60px 0px;
}

.contact-touch-icon i {
    color: var(--primary-color);
}

.contact-touch-icon2 {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-touch-icon2 i {
    color: #fff;
}

.contact-form-wrapper {
    margin: 30px 0px 0px;
}

.contact-form {
    padding: 50px 0px 50px;
    background-color: #f8f8f7;
}

.faq-heading h2{
    font-size:48px;
    color:#111827;
    margin-bottom:15px;
}

.faq-heading p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--jost-font);
}

.faq-question span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:var(--primary-color);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 15px 15px;
    color:#6b7280;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
    background:var(--primary-color);
    color:#fff;
}

@media(max-width:768px){

    .faq-heading h2{
        font-size:34px;
    }

    .faq-question{
        font-size:17px;
        padding:22px;
    }

    .faq-answer p{
        padding:0 22px 22px;
    }
}

.faq-sec {
    background-color: #f8f8f7;
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.faq-videosec {
    position: relative;
    height: 580px;
    border-radius: 10px;
    overflow: hidden;
}

.quality-imgone {
    margin: 0px 150px 0px 0px;
}

.quality-assleft {
    position: relative;
}

.quality-imgtwo {
    position: absolute;
    bottom: -5%;
    right: 5%;
    width: 45%;
}

.quality-ass-sec {
    padding: 60px 0px 100px 0px;
    position: relative;
    overflow: hidden;
}

.quality-imgone img, .quality-imgtwo img {
    border-radius: 10px;
}

.quality-clipbx {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: .8;
}

.bestsellerpg-sec {
    padding: 60px 0px;
    position: relative;
}

.newarrSwiper {
    margin: 30px 0px 0px;
}

.certi-sec {
    padding: 60px 0px;
    position: relative;
}