/*----------------------------------[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-news css
# footer css
# footer-product-slider css
# mobile-menu 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
# scrollbar css
# keyframes css
# animation css
---------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

    --primary-color: #223E92;



    /* heading */
    --heading-font-color: #333333;
    --heading-font-family: "Inter", sans-serif;
    --heading-font-weight: 600;
    --heading-font-style: normal;

    /* section-heading */
    --section-heading-font-color: #223E92;
    --section-heading-font-family: "Inter", 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;

    /* extra font-family */
    --extra-font-family: "Inter", sans-serif;

    /* general color */
    --dominant-font-color: #223E92;
    --secondary-font-color: #FFF;
    --extra-font-color: #ffffff;
    --extra-bgcolor: #ffffff;
    --product-new-sale-label-bgcolor: #333333;
    --product-discount-label-bgcolor: #e54747;
    --product-sold-label-bgcolor: #b02b28;
    --product-review-color: #ffa500;

    /* border */
    --border-color: 128, 128, 128;
    --border-opacity: 0.10;
    --border-radius: 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 *************************************/

/************************************* color start *************************************/
/*=====================================
    body property css
=====================================*/
.body-color,
.body-dominant-color,
.body-secondary-color {
    color: var(--body-font-color);
}

.dominant-link {
    color: var(--heading-font-color);
}

.body-dominant-color,
.body-secondary-color,
.dominant-link {
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.body-dominant-color:hover,
.dominant-link:hover {
    color: var(--dominant-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
=====================================*/
.dominant-color {
    color: var(--dominant-font-color);
}

.dominant-bg {
    background-color: var(--dominant-font-color);
}

.secondary-color {
    color: var(--secondary-font-color);
}

.secondary-bg {
    background-color: var(--secondary-font-color);
}

.extra-color {
    color: var(--extra-font-color);
}

.extra-bg {
    background-color: var(--extra-bgcolor);
}

.dominant-btn {
    color: var(--extra-font-color);
    background-color: var(--dominant-font-color);
    border: 2px solid var(--dominant-font-color);
}

.dominant-btn:hover {
    color: var(--dominant-font-color);
    background-color: var(--extra-font-color);
    border-color: var(--extra-font-color);
}

.secondary-btn {
    color: #000;
    background-color: #FFF;
    border: 2px solid #FFF;
}

.secondary-btn:hover {
    color: #FFF;
    background-color: var(--dominant-font-color);
    border: 2px solid var(--dominant-font-color);
}

.tertiary-btn {
    color: var(--extra-font-color);
    background-color: var(--secondary-font-color);
    border: 2px solid var(--secondary-font-color);
}

.tertiary-btn:hover {
    color: var(--dominant-font-color);
    background-color: var(--extra-font-color);
    border: 2px solid var(--extra-font-color);
}

.quaternary-btn {
    color: var(--dominant-font-color);
    background-color: transparent;
    border: 2px solid var(--dominant-font-color);
}

.quaternary-btn:hover {
    color: var(--extra-font-color);
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-font-color);
}

.dominant-btn,
.secondary-btn,
.tertiary-btn,
.quaternary-btn {
    -webkit-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.link-btn {
    display: inline-block;
    color: var(--dominant-font-color);
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
}

.link-body-dominant,
.link-body-secondary {
    color: var(--body-font-color);
}

.link-dominant-color {
    color: var(--dominant-font-color);
}

.link-secondary-color {
    color: var(--secondary-font-color);
}

.link-body-dominant,
.link-body-secondary,
.link-dominant-color,
.link-secondary-color {
    display: inline-block;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-bottom: 1px solid;
    -webkit-transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.link-body-dominant:hover,
.link-dominant-color:hover {
    color: var(--dominant-font-color);
}

.link-body-secondary:hover,
.link-secondary-color:hover {
    color: var(--secondary-font-color);
}

/*=====================================
    extra property css
=====================================*/
.extra-font {
    font-family: var(--extra-font-family);
}

.review-color {
    color: var(--product-review-color);
}

.review-bg {
    background-color: var(--product-review-color);
}

/************************************* color end *************************************/

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

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

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

/************************************* 'html', 'body', 'h1 to h6' end *************************************/

/************************************* section start *************************************/
/*=====================================
    section-capture css
=====================================*/
.section-capture {
    margin-bottom: 30px;
}

.section-capture span.sub-title {
    display: inline-block;
    color: var(--dominant-font-color);
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    margin-bottom: 12px;
}

@media (min-width: 1200px) {
    .section-capture {
        margin-bottom: 50px;
    }

    .section-capture span.sub-title {
        margin-bottom: 19px;
    }
}

/*=====================================
    section-heading css
=====================================*/
.section-heading {
    color: var(--section-heading-font-color);
    font-size: 24px;
    font-family: var(--section-heading-font-family);
    text-transform: uppercase;
    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: 35px;
    }
}

/*=====================================
    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;
}

.bg-attachment {
    background-attachment: fixed;
}

/************************************* 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: -2px;
}

.p-mtm15>* {
    margin-top: 2px;
}

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

.p-mtm20>* {
    margin-top: 7px;
}

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

.p-mtm30>* {
    margin-top: 17px;
}

/*=====================================
    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: 100px;
        padding-right: 100px;
    }
}

/************************************* '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: 576px) {
    .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: -13px;
}

.row-mtm20>* {
    margin-top: 13px;
}

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

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

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

.row-pmtm20>* {
    margin-top: 9px;
}

/*=====================================
    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: 576px) {
    .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: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    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: 576px) {

    .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: -4px;
}

.ul-mtm15>* {
    margin-top: 4px;
}

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

.ul-mtm-15>* {
    margin-top: 8px;
}

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

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

/*=====================================
    ul-mt30 css
=====================================*/
.ul-mt30 {
    margin-top: -15px;
}

.ul-mt30>* {
    margin-top: 15px;
}

@media (min-width: 576px) {
    .ul-mt30 {
        margin-top: -30px;
    }

    .ul-mt30>* {
        margin-top: 30px;
    }
}

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

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

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

.ul-ft>* {
    margin-top: 12px;
}

/************************************* ul end *************************************/

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

input,
select {
    height: 50px;
}

input,
textarea {
    padding: 10px 15px;
}

textarea {
    display: block;
}

/*=====================================
    placeholder css
=====================================*/
input::-webkit-input-placeholder,
input::placeholder,
textarea::-webkit-input-placeholder,
textarea::placeholder {
    color: #7F89A7;
    font-size: 14px;
    font-weight: 300;
}

/*=====================================
    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: -17px;
}

.field-row>* {
    margin-top: 17px;
}

@media (min-width: 576px) {
    .field-row {
        margin-top: -27px;
    }

    .field-row>* {
        margin-top: 27px;
    }
}

/*====================================
    input[type=file] attachment css
====================================*/
.field-row .field-col .field-attachment {
    position: relative;
    z-index: 1;
    border: 1px dashed var(--dominant-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(--dominant-font-color);
    opacity: 0.1;
    z-index: -1;
}

.field-row .field-col .field-attachment label {
    cursor: pointer;
}

.field-row .field-col .field-attachment .field-attached button {
    font-size: 12px;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
}

.field-row .field-col .field-attachment .field-attached img {
    width: 88px;
}

/*=====================================
    input-password css
=====================================*/
.field-row .field-col label.field-label {
    display: block;
    margin: 0px 0px 11px 0px;
}

.field-row .field-col .field-pwd {
    height: 50px;
    padding: 10px 15px;
    background-color: var(--extra-bgcolor);
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
}

.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;
}

.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));
}

.main-header .color-logo {
    display: inline-block;
}

.main-header .white-logo {
    display: none;
}

.home .main-header .color-logo {
    display: none;
}

.home .main-header .white-logo {
    display: inline-block;
}


.home .main-header.header-sticky .color-logo {
    display: inline-block;
}

.home .main-header.header-sticky .white-logo {
    display: none;
}

.main-header .header-top-area .header-top-first {
    background: #FFF;
}

.home .main-header .header-top-area .header-top-first {
    background: transparent;
}

.home .main-header.header-sticky .header-top-area .header-top-first {
    background: #FFF;
}

.home .home-slider {
    margin-top: -170px;
}


.home-slider-content {
    padding-bottom: 50px;
    z-index: 1 !important;
    left: 0;
    right: 0;
    bottom: 10px;

}

.home .mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: #FFF;
}

.home .main-header.header-sticky .mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: initial;
}






/*====================================
    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-icon-wrap a {
    color: #202020;
    font-weight: 400;
}

.header-icon-wrap a i {
    color: var(--primary-color);
}

.home .header-icon-wrap a {
    color: #FFF;
}

.home .header-icon-wrap a i {
    color: #FFF;
    margin-right: 5px;
}

.home .header-sticky .header-icon-wrap a {
    color: #202020;
}


.home .header-sticky .header-icon-wrap a i {
    color: var(--primary-color);
}


/************************************* header-menu css start *************************************/
/*====================================
    mainmenu-content css
====================================*/
.mainmenu-content {
    margin: 0px -10px;
}

.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link {
    color: var(--heading-font-color);
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.mainmenu-content .main-wrap ul.menu-ul li.menu-li:hover a.menu-link {
    color: var(--dominant-font-color);
}

.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title {
    position: relative;
    font-weight: 400;
    text-transform: capitalize;
}

.mainmenu-content .main-wrap ul.menu-ul li.menu-li a.menu-link span.menu-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: 0px auto;
    background-color: var(--dominant-font-color);
    -webkit-transition: width 0.5s linear;
    transition: width 0.5s 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;
}

@media (min-width: 1400px) {
    .mainmenu-content {
        margin: 0px -15px;
    }
}

/*====================================
    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.5s ease-in-out;
    transition: color 0.5s 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(--dominant-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: 5;
    column-gap: 30px;
}

/************************************* header-menu css end *************************************/

/************************************* breadcrumb-area css start *************************************/
/*====================================
    breadcrumb-area css
====================================*/
.breadcrumb-area {
    position: relative;
    z-index: 1;
    padding: 150px 20px;
    min-height: 250px;
    color: #FFF;
    z-index: -1;
}

.breadcrumb-area.account-breadcrumb {
   
    padding: 50px 20px;
    min-height: 100px;
}

.breadcrumb-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    opacity: 0.4;
    z-index: -1;
}

.breadcrumb-area span a {
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    color: #FFF;
}

.breadcrumb-area h1 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumb-area span a:hover {
    opacity: 0.7;
}

/************************************* mobile-menu css start *************************************/
/*====================================
    mobile-menu css
====================================*/
.mobile-menu {
    left: -350px;
    width: 350px;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: left 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: left 0.5s ease-in-out, visibility 0.5s 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;
    font-weight: 400;
}

.mobilemenu-content .main-wrap ul.menu-ul {
    margin-top: -1px;
    font-weight: 400;
}

.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: #202020;
    font-weight: 400;
}

.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(--dominant-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-modal css start *************************************/
/*====================================
    search-results css
====================================*/
.search-bar .search-results .search-for span::before {
    content: '"';
}

.search-bar .search-results .search-for span::after {
    content: '"';
}

.search-bar .search-results ul.search-ul {
    margin-top: -1px;
    max-height: 206px;
    overflow-y: auto;
}

/************************************* search-modal css end *************************************/

/************************************* cart-drawer css start *************************************/
/*====================================
    cart-drawer css
====================================*/
.cart-drawer {
    right: -450px;
    width: 450px;
    max-width: 100%;
    overflow: hidden;
    -webkit-transition: right 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: right 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cart-drawer.active {
    right: 0px;
}

@media screen and (max-height: 600px) {
    .cart-drawer {
        overflow-y: auto;
    }
}

/*====================================
    drawer-contents css
====================================*/
.cart-drawer form.drawer-contents {
    height: 100%;
}

@media screen and (max-height: 600px) {
    .cart-drawer form.drawer-contents {
        height: auto;
    }
}

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

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

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

/* drawer-recommended product-content css */
.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content {
    text-align: center;
}

.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
}

.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price {
    margin-top: 5px;
}

.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-recommended-product .drawer-recommended-product-wrap .drawer-recommended-product .drawer-recommended-single-product-wrap .product-content .pro-content .product-price .price-box {
    justify-content: center;
}

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

.cart-drawer form.drawer-contents .drawer-inner .drawer-scrollable .drawer-instruction a[aria-expanded="true"] span.drawer-instruction-icon {
    transform: scaleY(-1);
}

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

/************************************* cart-drawer css end *************************************/

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

/************************************* bottom-menu css end *************************************/

/************************************* bg-screen css start *************************************/
/*====================================
    bg-screen css
====================================*/
.bg-screen .bg-back,
.bg-screen .bg-shop,
.without-shop-sidebar .bg-screen .bg-back {
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s 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.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

@media (min-width: 1500px) {
    a#top {
        right: 30px;
    }
}

@media (min-width: 1600px) {
    a#top {
        right: 100px;
    }
}

/************************************* 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.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.banner-hover .banner-img .banner-btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s 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.5s ease-in-out, filter 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.banner-hover:hover .banner-btn img,
.banner-hover:hover .banner-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.banner-hover:hover .banner-img .banner-btn+img,
.banner-hover:hover .banner-img .banner-icon+img {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

/*====================================
    video css
====================================*/
.video .video-loader {
    display: none;
}

.video .video-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--body-bgcolor);
    opacity: 0.8;
}

.video .video-loader span svg {
    width: 56px;
    -webkit-animation: rotator 1s linear infinite;
    animation: rotator 1s linear infinite;
}

.video .video-loader span svg circle {
    stroke-dashoffset: 0;
    stroke-dasharray: 280;
    transform-origin: center;
    -webkit-animation: dash 1s ease-in-out infinite;
    animation: dash 1s ease-in-out infinite;
}

.video .video-img .banner-video-icon {
    position: relative;
}

.video .video-img .banner-video-icon::before,
.video .video-img .banner-video-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    background-color: var(--extra-bgcolor);
    z-index: -1;
    border-radius: 100%;
}

.video .video-img .banner-video-icon::before {
    -webkit-animation: hoverEffect 2s linear infinite;
    animation: hoverEffect 2s linear infinite;
}

.video .video-img .banner-video-icon::after {
    -webkit-animation: hoverEffect 4s linear infinite;
    animation: hoverEffect 4s linear infinite;
}

.video .video-img img,
.video video {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.video .video-frame {
    display: none;
}

.video video {
    display: none;
    object-fit: cover;
    object-position: center;
}

/************************************* banner-hover css end *************************************/

/************************************* quantity css start *************************************/
/*====================================
    quantity css
====================================*/
.js-qty-wrapper {
    width: 104px;
}

.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;
}

/* 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;
    align-items: center;
}

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-caption {
    display: none;
    font-size: 14px;
    margin-left: 5px;
    line-height: 1;
}

span.review-ratting span.review-caption::before {
    content: "(";
}

span.review-ratting span.review-caption::after {
    content: ")";
}

/************************************* review-ratting css end *************************************/

/************************************* social-icon css start *************************************/
/*====================================
    social-icon css
====================================*/
.behance {
    color: #3a67fa;
}

.bg-behance {
    background-color: #3a67fa;
}

.dribbble {
    color: #ea4c89;
}

.bg-dribbble {
    background-color: #ea4c89;
}

.facebook {
    color: #3b5998;
}

.bg-facebook {
    background-color: #3b5998;
}

.instagram {
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-instagram {
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin {
    color: #0a66c2;
}

.bg-linkedin {
    background-color: #0a66c2;
}

.pinterest {
    color: #e60023;
}

.bg-pinterest {
    background-color: #e60023;
}

.twitter {
    color: #00acee;
}

.bg-twitter {
    background-color: #00acee;
}

.youtube {
    color: #cd201f;
}

.bg-youtube {
    background-color: #cd201f;
}

/************************************* social-icon css end *************************************/

/************************************* custom-checkbox, radio, switch css start *************************************/
/*====================================
    custom-checkbox css
====================================*/
label.cust-checkbox-label {
    display: table;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

label.cust-checkbox-label input.cust-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

label.cust-checkbox-label span.cust-check {
    float: left;
    position: relative;
    top: 2px;
    width: 15px;
    height: 15px;
    background-color: var(--extra-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(--dominant-font-color);
    border-color: var(--dominant-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: 48px;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}

label.cust-checkbox-label input.cust-checkbox:checked~img {
    border-color: var(--dominant-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(--extra-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(--dominant-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(--dominant-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(--extra-bgcolor);
    cursor: pointer;
    border-radius: 25px;
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    -webkit-transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

label.cust-switch-label input:checked~span.cust-switch-slide {
    background-color: var(--dominant-font-color);
    border-color: var(--extra-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(--dominant-font-color);
    border-radius: 25px;
    border: 1px solid var(--dominant-font-color);
    -webkit-transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

label.cust-switch-label input:checked~span.cust-switch-slide::before {
    background-color: var(--extra-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(--extra-bgcolor);
    -webkit-transition: color 0.5s ease-in-out;
    transition: color 0.5s 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(--dominant-font-color);
}

.paginatoin-area ul.pagination-box li.page-item a.page-link.active {
    color: var(--extra-font-color);
    background-color: var(--dominant-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.5s ease-out;
    transition: all 0.5s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.95;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-container.mfp-iframe-holder {
    width: auto;
    left: 15px;
    right: 15px;
}

.mfp-iframe-holder .mfp-close {
    display: block !important;
    font-size: 16px;
    padding: 0;
    height: auto;
    width: auto;
    position: absolute;
    top: -20px;
    right: 0;
    background-color: transparent !important;
    line-height: 1;
}

.mfp-iframe-scaler iframe {
    border: none;
    border-radius: var(--border-radius);
}

/************************************* magnific-popup css end *************************************/

/************************************* slider-swiper css start *************************************/
/*====================================
    slider-swiper margin css
====================================*/
.collection-wrap .collection-slider.swiper {
    margin: -15px 0px 0px;
}

.collection-wrap .collection-slider.swiper .swiper-wrapper .swiper-slide .single-product {
    margin: 15px 0px 0px;
}

@media (min-width: 576px) {

    .collection-wrap .collection-slider.swiper,
    .collection-wrap .collection-slider.swiper .swiper-wrapper .swiper-slide .single-product {
        margin: 0px;
    }
}

/*====================================
    slider-swiper margin css
====================================*/
.collection-wrap .collection-slider.swiper {
    margin: -15px 0px 0px;
}

.collection-wrap .collection-slider.swiper .swiper-wrapper .swiper-slide .single-product {
    margin: 15px 0px 0px;
}

@media (min-width: 576px) {

    .collection-wrap .collection-slider.swiper,
    .collection-wrap .collection-slider.swiper .swiper-wrapper .swiper-slide .single-product {
        margin: 0px;
    }
}

/*====================================
    product slider-swiper css
====================================*/
.collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
}

@media (min-width: 768px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}

@media (min-width: 1200px) {
    .collection-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 25%;
    }
}

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

@media (min-width: 768px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .blog-wrap .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
        width: 33.33%;
    }
}

/************************************* slider-swiper css end *************************************/

/************************************* slider-arrow css start *************************************/
/*====================================
    slider-arrow css
====================================*/
.shop-cat-wrap,
.cat-wrap,
.collection-wrap,
.blog-wrap,
.testi-wrap {
    position: relative;
}

.shop-cat-wrap .swiper-buttons,
.cat-wrap .swiper-buttons,
.collection-wrap .swiper-buttons,
.testi-wrap .swiper-buttons,
.blog-wrap .swiper-buttons {
    display: none;
    margin-top: 30px;
    text-align: center;
    line-height: 0;
}

.shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
.cat-wrap .swiper-buttons .swiper-buttons-wrap,
.collection-wrap .swiper-buttons .swiper-buttons-wrap,
.testi-wrap .swiper-buttons .swiper-buttons-wrap,
.blog-wrap .swiper-buttons .swiper-buttons-wrap {
    display: inline-flex;
}

@media (min-width: 576px) {

    .shop-cat-wrap .swiper-buttons,
    .cat-wrap .swiper-buttons,
    .collection-wrap .swiper-buttons,
    .testi-wrap .swiper-buttons,
    .blog-wrap .swiper-buttons {
        margin-top: 0px;
    }

    .shop-cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .cat-wrap .swiper-buttons .swiper-buttons-wrap,
    .collection-wrap .swiper-buttons .swiper-buttons-wrap,
    .testi-wrap .swiper-buttons .swiper-buttons-wrap,
    .blog-wrap .swiper-buttons .swiper-buttons-wrap {
        display: block;
    }
}

/* slider-arrow button css */
.shop-cat-wrap .swiper-buttons button,
.cat-wrap .swiper-buttons button,
.collection-wrap .swiper-buttons button,
.testi-wrap .swiper-buttons button,
.blog-wrap .swiper-buttons button {
    color: var(--body-font-color);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--extra-bgcolor);
    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.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.shop-cat-wrap .swiper-buttons button:last-child,
.cat-wrap .swiper-buttons button:last-child,
.collection-wrap .swiper-buttons button:last-child,
.testi-wrap .swiper-buttons button:last-child:last-child,
.blog-wrap .swiper-buttons button:last-child:last-child {
    margin: 0px;
}

.shop-cat-wrap .swiper-buttons button:hover,
.cat-wrap .swiper-buttons button:hover,
.collection-wrap .swiper-buttons button:hover,
.testi-wrap .swiper-buttons button:hover,
.blog-wrap .swiper-buttons button:hover {
    color: var(--extra-font-color);
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-font-color);
}

@media (min-width: 576px) {

    .shop-cat-wrap .swiper-buttons button,
    .cat-wrap .swiper-buttons button,
    .collection-wrap .swiper-buttons button,
    .testi-wrap .swiper-buttons button,
    .blog-wrap .swiper-buttons button {
        position: absolute;
        z-index: 1;
        margin-right: 0px;
    }

    .shop-cat-wrap .swiper-buttons button.swiper-prev,
    .cat-wrap .swiper-buttons button.swiper-prev,
    .collection-wrap .swiper-buttons button.swiper-prev,
    .testi-wrap .swiper-buttons button.swiper-prev,
    .blog-wrap .swiper-buttons button.swiper-prev {
        left: 0;
        transform: translateX(-50%);
    }

    .shop-cat-wrap .swiper-buttons button.swiper-next,
    .cat-wrap .swiper-buttons button.swiper-next,
    .collection-wrap .swiper-buttons button.swiper-next,
    .testi-wrap .swiper-buttons button.swiper-next,
    .blog-wrap .swiper-buttons button.swiper-next {
        right: 0;
        transform: translateX(50%);
    }
}

@media (min-width: 1600px) {

    .shop-cat-wrap .swiper-buttons button,
    .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: 56px;
        height: 56px;
    }
}

/************************************* slider-arrow css end *************************************/

/************************************* slider-dot css start *************************************/
/*====================================
    swiper slider-dots css
====================================*/
.shop-cat-wrap .swiper-dots,
.cat-wrap .swiper-dots,
.collection-wrap .swiper-dots,
.testi-wrap .swiper-dots,
.blog-wrap .swiper-dots {
    display: none;
    margin-top: 30px;
    line-height: 0;
}

@media (min-width: 1200px) {

    .shop-cat-wrap .swiper-dots,
    .cat-wrap .swiper-dots,
    .collection-wrap .swiper-dots,
    .testi-wrap .swiper-dots,
    .blog-wrap .swiper-dots {
        margin-top: 50px;
    }
}

/* swiper slider-dots button css */
.shop-cat-wrap .swiper-dots .swiper-pagination,
.cat-wrap .swiper-dots .swiper-pagination,
.collection-wrap .swiper-dots .swiper-pagination,
.testi-wrap .swiper-dots .swiper-pagination,
.blog-wrap .swiper-dots .swiper-pagination {
    width: unset;
    position: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -5px 0px 0px -5px;
}

.shop-cat-wrap .swiper-dots .swiper-pagination span,
.cat-wrap .swiper-dots .swiper-pagination span,
.collection-wrap .swiper-dots .swiper-pagination span,
.testi-wrap .swiper-dots .swiper-pagination span,
.blog-wrap .swiper-dots .swiper-pagination span {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-font-color);
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--secondary-font-color);
}

.shop-cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.cat-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.collection-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.testi-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active,
.blog-wrap .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--dominant-font-color);
    border-color: var(--dominant-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: 50px;
    }
}

/************************************* 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(--dominant-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(--dominant-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(--dominant-font-color);
    }
}

/************************************* scrollbar css end *************************************/

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

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes loaderProgress {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

    100% {
        width: 100%;
    }
}

@keyframes loaderText {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

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

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes slide-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/*====================================
    DropDownSlide keyframes css
====================================*/
@media (min-width: 1200px) {
    .DropDownSlide {
        -webkit-animation-name: DropDownSlide;
        animation-name: DropDownSlide;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -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 12s linear infinite;
    animation: spin 12s 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 *************************************/



.section-about {
    background: #FFF;
}

.section-about .section-title {}

.section-capture p {
    color: #4E5366;
    font-weight: 400;
    margin-top: 20px;
}

.who-we-are {
    max-width: 1000px;
    margin: auto;
    width: 90%;
    margin-top: 40px;

}

.who-we-are .info-box {
    background-color: #283788e0;
    color: #fff;
    padding: 40px 60px;
    border-radius: 0;
}

.who-we-are h2 {
    font-weight: 500;
    margin-bottom: 20px;
    color: #FFF;
    font-size: 25px;
}

.who-we-are p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #FFF;
}

.product-images img {
    margin: 0 10px;
    transition: transform 0.3s;
    width: 50%;
}

.product-images img:hover {
    transform: scale(1.05);
}

.craft-image img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
}

.category-section {
    background: #FFF;
}

.category-item {
    margin-bottom: 20px;
}



.category-item .category-content {
    opacity: 1;
    visibility: visible;
    -webkit-transition: background-color 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out, visibility 0.5s ease-in-out;
    padding: 30px 30px;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    align-items: center;
    justify-content: end;

}

.category-item:hover .category-content {
    opacity: 1;
    visibility: visible;
    background: var(--dominant-font-color);
    color: #FFF;
    justify-content: center;
}

.category-item .category-content h6 {
    color: #FFF;
    line-height: 40px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.category-item .category-content span {
    color: #FFF;
    font-weight: 300;
    font-size: 18px;
    display: none;
}

.category-item:hover .category-content span {
    display: block;
}

.inner-image {
    overflow: hidden;
    width: 50%;
}

.inner-image img {
    width: 100%;
    max-width: 100%;
}



.timeless-box {
    max-width: 1000px;
    margin: auto;
    width: 90%;
    margin-top: 40px;

}

.timeless-box .info-box {
    background-color: #F5F8FF;
    color: #202020;
    padding: 40px 60px;
    border-radius: 0;
    height: 100%;
}

.timeless-box .info-box h2 {
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 25px;
    text-transform: uppercase;
}

.timeless-box .info-box p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #202020;
}

.sign {
    margin: 20px 0;
}

.timeless-box .row {
    display: flex;
    align-items: stretch;
    /* Ensures equal height */
}


.section-why-choose {
    background: #FFF;
}


.service-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
    overflow: hidden;
}

.why-choose-box {
    padding-top: 50px;
}

.section-why-choose .col {
    border-right: 1px solid #9dacdb4d;
}

.service-content img {
    max-width: 100px;
}

.service-content .service-text {
    margin-top: 20px;
}

.service-content h6 {
    font-size: 16px;
    font-weight: 400;
    color: #4E5366;
}


.section-why-choose .service-content {
    position: relative;
    z-index: 1;
}

.section-why-choose .service-content::before,
.section-why-choose .service-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
}

.section-why-choose .service-content::before {
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.section-why-choose .service-content:hover::before {
    opacity: 1;
    visibility: visible;
}

.section-why-choose .service-content::after {
    height: 4px;
    background-color: var(--dominant-font-color);
    transform: scaleX(0);
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.section-why-choose .service-content:hover::after {
    transform: scaleX(-1);
}


.cta-section {
    background-image: url(../images/cta-bg.png);
    background-size: cover;
    background-repeat: no-repeat;

    background-color: var(--primary-color);
    background-blend-mode: multiply;
}

.cta-section h2 {
    color: #FFF;
}

.cta-section p {
    color: #FFF;
}

.cta-section .section-capture {
    margin-bottom: 0;
}

.section-certificate {

    padding: 100px 0;
    position: relative;


}


.certificate-item img {
    width: 100%;
}

.certificate-box {
    padding-top: 20px;
}



.faq-section {
    background-color: var(--primary-color);

}

.faq-section h2 {
    color: #FFF;
    margin-bottom: 50px;
}


.faq-qstn {
    color: #FFF;
    font-weight: 400;
    line-height: 50px;
    font-size: 18px;
    padding-bottom: 15px;
}


.faq-answer {
    color: #F5F8FF;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 30px;

}

.faq-section .other-tab {
    border-bottom: 0.5px solid #f5f8ff4f;
    margin-bottom: 10px;
}

.faq-section .p-bullets::before {
    color: #F5F8FF;
}

footer {
    background-color: #F5F8FF;

}

.footer-area {
    background-color: #F5F8FF;
    padding-top: 60px;
    padding-bottom: 80px;
}

.footer-theme-logo img {
    width: 200px;
}

.footer-menu {}

.footer-menu .ft-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 30px;
    color: var(--primary-color);

}

.footer-menu .ft-link {}

.footer-menu .ft-link ul {}

.footer-menu .ft-link li {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #1A1F3D;
}

.footer-menu .ft-link li a {
    color: #1A1F3D;
}

.footer-menu p {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #1A1F3D;
}

.footer-menu input {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #1A1F3D;
    background: #FFF;
    margin-bottom: 10px;
    height: 40px;
}

.footer-menu .btn-style {
    font-size: 14px;
    font-weight: 400;
    height: 40px;
}

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    margin: 40px 0 20px 0;
}

.footer-payment-image {
    width: 100%;
}

.footer-middle .ft-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 30px;
    color: var(--primary-color);

}


.footer-middle p {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #1A1F3D;
}

.copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    color: #1A1F3D;
}

.footer-social-icon a {
    color: var(--primary-color);
}

.service-area {
    background: #F5F8FF;
    padding: 50px 0;
}

.service-area .service-content {
    flex-direction: row;
    padding: 30px 15px;
    overflow: hidden;
    gap: 20px;
}

.service-area .service-icon {
    color: var(--primary-color);
    font-size: 50px;
}

.service-area .service-text {
    margin-top: 0;
}

.service-area .service-text h6 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

.service-area .service-text span {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}


.contact-map iframe {
    height: 320px;
}

@media (min-width: 576px) {
    .contact-map iframe {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .contact-map iframe {
        height: 500px;
    }
}

.breadcrumb-box {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
}

.breadcrumb-box span a {
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    color: var(--primary-color);
}

.breadcrumb-area span a:hover {
    opacity: 0.7;
}


.contact-form-touch h2 {
    color: var(--primary-color);
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form-touch p {
    color: #1C1C1C;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
}

.contact-form {
    padding-top: 30px;
}


input,
textarea {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
}

.contact-option-box {
    margin-top: 140px;
    padding-left: 80px;
    position: relative;
}

.contact-option-box li {
    font-size: 15px;
    font-weight: 400;
    color: #1C1C1C;
    line-height: 30px;
    margin-bottom: 10px;
}

.contact-option-box li .contact-option-title {
    font-weight: 600;
    color: #1C1C1C;
    margin-right: 30px;
}

.contact-social-icon {
    color: var(--primary-color);
    margin-top: 30px;
    text-align: left;
}

.contact-social-icon a {
    background: var(--primary-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    font-size: 15px;
    justify-content: center;
    align-items: center;
}

.contact-social-icon a:hover {
    color: var(--primary-color);
    background: #F5F8FF;
}

.return-policy {
    color: #1C1C1C;
    font-size: 15px;
    font-weight: 300;
    padding-top: 50px;
    padding-bottom: 50px;
}

.return-policy h6 {
    color: #1C1C1C;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 5px;
    margin-top: 5px;
}


.return-policy h5,.return-policy h4,.return-policy h2,.return-policy h3 {
    color: #1C1C1C;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.return-policy p {
    color: #1C1C1C;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
    font-weight: 300;
}

.about-banner-box {
    background-image: url(../images/about-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    background-blend-mode: multiply;
    align-items: center;
    justify-content: center;
    padding: 50px 100px;
    border-radius: 30px;
}

.about-banner-section {
    padding: 10px 20px 50px 20px;
}

.about-banner-box h2 {
    color: #FFF;
    font-size: 30px;
    line-height: 45px;
    max-width: 700px;
    margin: auto;
    text-transform: initial;
}

.section-about {
    padding: 80px 0;

}

.about-content-box {
    width: 100%;
}

.about-content-box img {
    width: 100%;
    padding-right: 20%;
}

.about-content-box.right img {
    width: 100%;
    padding-right: 0;
    padding-left: 20%;
}

.about-content-box .info-box {
    padding: 10px 0;
}

.about-content-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 50px;
}

.about-content-box .subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-color);
    text-transform: uppercase;
}

.about-content-box p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #101010;
    margin-bottom: 20px;
}

.testi-content {
    background-image: url(../images/test-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
      color: #FFF;
}

.testi-content-inner {
    position: relative;
    padding-left: 100px;
}

.testi-content img{
    margin-top: -100px;
}

.test-qoute {
    color: #FFF;
    font-weight: 600;
    font-size: 200px;
    line-height: 100px;
    position: absolute;
    left: 0;
    top: 0;
}

.testi-content-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    color: #FFF;
}

.testi-content-name span {
    font-weight: 400;
    margin-left: 10px;
}

.testi-content p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #FFF;
    text-align: justify;
}



.register-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 50px;
}

.register-box  .subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-color);
    text-transform: uppercase;
}

.register-box  p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #101010;
    margin-bottom: 20px;
}



.register-box input,
.register-box textarea,.register-box .form-control {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
    box-shadow: none;
    border: 1px solid rgba(var(--border-color), var(--border-opacity));
    border-radius: var(--border-radius);
}

.register-box  .col-form-label {
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
}

.register-box  .form-check {
    font-size: 14px;
    font-weight: 400;
    color: #1C1C1C;
}

.register-box  .form-check .form-check-input {
    margin-right: 20px;
}

#alert {
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 9999;
}

.ap-info{
          background-color: #F5F8FF;
    color: #202020;
    padding: 30px 20px;
}

#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    height: max-content;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 99999999;
    visibility: hidden;
    transition: all 2s ease 0s;
}

#whatsapp-widget.ww-yes {
    visibility: visible;
}

#whatsapp-widget.ww-no {
    visibility: hidden !important;
}

#whatsapp-widget .ww-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    opacity: 0;
    animation: grow 3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

#whatsapp-widget .ww-link {
    opacity: 1;
    display: block;
    bottom: -15px;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    width: 60px;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    font-size: 11px;
    line-height: 11px;
    border: 0px;
    max-width: inherit;
    color: rgb(175, 175, 175) !important;
}

#whatsapp-widget .ww-link:hover {
    border: 0px;
    text-decoration: underline !important;
    color: rgb(175, 175, 175) !important;
}

#whatsapp-widget .ww-text {
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
    word-break: break-word;
    background: white;
    padding: 1rem;
    position: relative;
    box-shadow: 2px 2px 15px 2px rgb(0 0 0 / 17%);
    opacity: 0;
    animation: slide 1s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
    margin-bottom: 15px;
    z-index: 100;
}

#whatsapp-widget .ww-arrow {
    position: absolute;
    background: white;
    border-right: 0.5px solid #e2e2e2;
    border-bottom: 0.5px solid #e2e2e2;
    top: 50%;
    width: 20px;
    height: 20px;
    z-index: -100;
}

#whatsapp-widget.ww-right .ww-arrow {
    transform: translateY(-50%) rotate(-45deg);
    right: -11px;
    left: unset;
}

#whatsapp-widget.ww-left .ww-arrow {
    left: -11px;
    right: unset;
    transform: translateY(-50%) rotate(135deg);
}

#whatsapp-widget.ww-big .ww-text {
    font-size: 23px;
    line-height: 25px;
}

#whatsapp-widget.ww-medium .ww-text {
    font-size: 20px;
    line-height: 22px;
    padding: 15px;
}

#whatsapp-widget.ww-normal .ww-text {
    font-size: 17px;
    padding: 12px;
    line-height: 19px;
}

#whatsapp-widget svg {
    fill: rgb(255, 255, 255);
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.7s ease-in-out;
    width: 100%;
    height: 100%;
    stroke: none;
}

#whatsapp-widget svg:hover {
    transform: rotate(720deg);
}

#whatsapp-widget.ww-right .ww-text::after {
    right: -10px;
    transform: translateY(-50%) rotate(-45deg);
    background: none !important;
}

#whatsapp-widget.ww-left .ww-text::after {
    left: -10px;
    transform: translateY(-50%) rotate(135deg);
    background: none !important;
}

#whatsapp-widget.ww-left {
    left: 20px;
    flex-direction: row-reverse;
}

#whatsapp-widget.ww-right {
    right: 20px;
    flex-direction: row;
}

#whatsapp-widget .ww-icon-link {
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 200;
    display: block;
    border: 0px;
    background: rgb(77, 194, 71) !important;
}

#whatsapp-widget.ww-normal .ww-icon-link {
    width: 50px;
    height: 50px;
}

#whatsapp-widget.ww-medium .ww-icon-link {
    height: 65px;
    width: 65px;
}

#whatsapp-widget.ww-big .ww-icon-link {
    height: 75px;
    width: 75px;
}

#whatsapp-widget .ww-icon div {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    #whatsapp-widget {
        bottom: 30px;
    }

    #whatsapp-widget .ww-text {
        display: none;
    }

    #whatsapp-widget.ww-right {
        right: 20px;
        left: unset;
        bottom: 30px;
    }

    #whatsapp-widget.ww-left {
        left: 5px;
        right: unset;
    }
}

@keyframes slide {
    from {
        bottom: -20px;
        opacity: 0;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes grow {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
