/*-----------------------------------------------------------
    * Template Name    : Treats - Fast Food & Restaurant HTML Template
    * Author           : KreativDev
    * File Description : This file contains the styling for the actual template, this
                        is the file you need to edit to change the look of the
                        template.
*------------------------------------------------------------

**  This files table contents are outlined below >>>>>

*******************************************
*******************************************
    ** - Variables CSS
    ** - Reset CSS
    ** - Typography CSS
    ** - Utilities CSS
    ** - Animation CSS
    ** - Color CSS
    ** - Button CSS
    ** - Form CSS
    ** - Lazyload CSS
    ** - Preloader CSS
    ** - Swiper Slider CSS
    ** - Nav Tabs CSS
    ** - Nice Select CSS
    ** - Go top CSS
    ** - Title CSS
    ** - Social Link CSS
    ** - Ratings CSS
    ** - Animation CSS
    ** - Header CSS
    ** - Hero Banner CSS
    ** - About CSS
    ** - Category CSS
    ** - Product CSS
    ** - Menu CSS
    ** - Testimonial CSS
    ** - Blog CSS
    ** - Gallery CSS
    ** - Footer CSS
    ** - Sidebar Widget CSS
    ** - Breadcrumb CSS
    ** - Pagination CSS
    ** - Shop Single CSS
    ** - Shopping CSS
    ** - Authentication CSS
    ** - Blog Single CSS
    ** - Reservation CSS
    ** - Faq CSS
    ** - Contact CSS
    ** - Terms & Conditions CSS
    ** - Coming Soon CSS
    ** - Error CSS
*/


/* -----------------------------------------
    Variables CSS
----------------------------------------- */

:root {
    --font-heading: "Lora", serif;
    --font-body: "Roboto", sans-serif;
    --font-icon: "Font Awesome 5 Pro";
    --font-base: 16px;
    --font-sm: 14px;
    --font-xsm: 12px;
    --font-lg: 18px;
    --font-normal: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-size--h1: 64px;
    --font-size--h2: 48px;
    --font-size--h3: 32px;
    --font-size--h4: 24px;
    --font-size--h5: 20px;
    --font-size--h6: 18px;
    --color-primary: #4F5AE4;
    --color-red: #EB4C4C;
    --color-green: #00B67A;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #121212;
    --color-light: #dcdcdc;
    --color-medium: #747474;
    --color-primary-rgb: 79, 90, 228;
    --color-red-rgb: 235, 76, 76;
    --color-green-rgb: 0, 182, 122;
    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 0, 0, 0;
    --color-dark-rgb: 18, 18, 18;
    --color-medium-rgb: 141, 141, 141;
    --color-light-rgb: 242, 242, 242;
    --border-color: #e8e8e8;
    --border-color-2: #a7a7a7;
    --text-dark: var(--color-dark);
    --text-medium: var(--color-medium);
    --text-white: var(--color-white);
    --text-light: var(--color-light);
    --btn-color: var(--text-white);
    --btn-hover-color: var(--text-white);
    --bg-1: #F3F3F3;
    --bg-2: #F8F8F8;
    --bg-3: #1f1f1f;
    --bg-white: var(--color-white);
    --bg-dark: var(--color-dark);
    --bg-primary-light: rgba(var(--color-primary-rgb), .05);
    --gradient-1: linear-gradient(135deg, rgba(var(--color-white-rgb), .4) 0%, #FAF9F6 100%);
    --shadow-md: 0 5px 30px -5px rgb(8, 0, 42, .08);
    --shadow-round: 0 10px 30px -5px rgb(8, 0, 42, .08);
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-xl: 15px;
    --radius-lg: 20px;
    --radius-pill: 50rem;
}


/* -----------------------------------------
    Reset CSS
----------------------------------------- */

:focus {
    outline: none;
}

img {
    max-width: 100%;
}

.form-control:focus {
    box-shadow: none;
}

ul {
    padding: 0;
}

figure,
blockquote,
ul {
    margin-bottom: 0;
}

table,
th,
td {
    vertical-align: middle;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: rgba(var(--color-dark-rgb), 0.2);
}


/* -----------------------------------------
    Typography CSS
----------------------------------------- */

body {
    font-family: var(--font-body);
    font-size: var(--font-base);
    font-weight: var(--font-normal);
    color: var(--text-medium);
    overflow-x: hidden;
    background-color: var(--bg-white);
}

a {
    color: var(--text-dark);
    text-decoration: none;
    outline: 0 !important;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #FAF9F6;
}

a.hover-primary:hover {
    color: #FAF9F6 !important;
}

.color-primary a {
    color: inherit;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a {
    color: inherit;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a:hover {
    color: #FAF9F6;
}

:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

:is(.h1, .h2, .h3, .h4, .h5, .h6) {
    display: block;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-family: var(--font-heading);
    color: #111111;
    font-weight: var(--font-bold);
    line-height: 1.3;
}

h1 {
    font-size: var(--font-size--h1);
}

h2,
.h2 {
    font-size: var(--font-size--h2);
}

h3,
.h3 {
    font-size: var(--font-size--h3);
}

h4,
.h4 {
    font-size: var(--font-size--h4);
}

h5,
.h5 {
    font-size: var(--font-size--h5);
}

h6,
.h6 {
    font-size: var(--font-size--h6);
}

p,
.text,
.card-text {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

p:last-child,
.text:last-child,
.card-text:last-child {
    margin-bottom: 0;
}

p:last-child {
    margin-bottom: 0 !important;
}

.font-lg {
    font-size: var(--font-lg) !important;
}

.font-sm {
    font-size: var(--font-sm) !important;
}

.font-xsm {
    font-size: var(--font-xsm) !important;
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-bold {
    font-weight: var(--font-bold);
}

b {
    font-weight: 500;
}


/* margin CSS*/

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}


/* Padding CSS*/

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-120 {
    padding-bottom: 120px;
}

.px-60 {
    padding-inline: 60px;
}

.px-30 {
    padding-inline: 20px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    /* padding: 40px !important; */
}

.pb-0 {
    padding-bottom: 0 !important;
}

.spacer-x {
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
}

.spacer-x .swiper-slide {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.pxy-center {
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}


/* Border */

.border,
.border-top,
.border-bottom,
.border-end,
.border-start {
    border-color: var(--border-color) !important;
}


/* Border Radius */

.radius-0 {
    border-radius: 0 !important;
}

.radius-sm {
    border-radius: var(--radius-sm) !important;
}

.radius-md {
    border-radius: var(--radius-md) !important;
}

.radius-lg {
    border-radius: var(--radius-lg) !important;
}

.radius-xl {
    border-radius: var(--radius-xl) !important;
}

.opacity-1 {
    opacity: 1 !important;
}

.opacity-65 {
    opacity: 0.65 !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-85 {
    opacity: 0.85 !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

.opacity-95 {
    opacity: 0.95 !important;
}

.mw-75 {
    max-width: 75%;
}

.mw-80 {
    max-width: 80%;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

/* :is(.lc-1, .lc-2, .lc-3) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
} */

/* .lc-1 {
    -webkit-line-clamp: 1 !important;
    line-clamp: 1 !important;
} */

.lc-1 {
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    white-space: normal !important;
}

.lc-2 {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
}

.lc-3 {
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-25 {
    gap: 25px !important;
}


/* Tooltip CSS */

.tooltip {
    --bs-tooltip-bg: var(--color-dark);
    --bs-tooltip-padding-x: 10px;
    --bs-tooltip-padding-y: 5px;
    --bs-tooltip-font-size: var(--font-xsm);
}

.no-animation {
    transform: none;
    animation: none;
}


/* Badge CSS */

.badge {
    font-size: var(--font-xsm);
    font-weight: var(--font-medium);
}

.badge.bg-primary {
    color: #111111;
    background: #edcd9f !important;
}

.badge.bg-success {
    color: var(--bs-success);
    background: rgba(var(--bs-success-rgb), 0.2) !important;
}

.badge.bg-info {
    color: var(--bs-info);
    background: rgba(var(--bs-info-rgb), 0.2) !important;
}

.badge.bg-danger {
    color: var(--bs-danger);
    background: rgba(var(--bs-danger-rgb), 0.2) !important;
}

.badge.bg-warning {
    color: var(--bs-warning);
    background: rgba(var(--bs-warning-rgb), 0.2) !important;
}


/* Card CSS */

.card {
    --bs-card-bg: #edece6;
    border: none;
    border-radius: 10px;
}

.card .card-title {
    margin-bottom: 20px;
}

.card .card-title a:hover {
    color: #111111;
}

.card .card-text {
    color: var(--text-medium);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: var(--color-black); */
    opacity: 0.4;
    z-index: -1;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--border-color);
}

.lines .line:nth-child(1) {
    margin-left: -40%;
}

.lines .line:nth-child(1)::after {
    animation-delay: 2s;
}

.lines .line:nth-child(2) {
    margin-left: -20%;
}

.lines .line:nth-child(2)::after {
    animation-delay: 2.5s;
}

.lines .line:nth-child(4) {
    margin-left: 20%;
}

.lines .line:nth-child(4)::after {
    animation-delay: 2.5s;
}

.lines .line:nth-child(5) {
    margin-left: 40%;
}

.lines .line:nth-child(5)::after {
    animation-delay: 2s;
}

.lines .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 30px;
    width: 2px;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(var(--color-primary-rgb), 0) 0%, var(--color-secondary) 70%, #FAF9F6 100%);
    animation: run 5s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.bg-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-shape.h-auto img {
    vertical-align: bottom;
}

.bg-shape img {
    vertical-align: top;
}

.hidden {
    overflow: hidden;
    display: none;
    visibility: hidden;
}

.progress {
    height: 10px;
    border-radius: 30px;
}

.progress .progress-bar {
    border-radius: 30px;
    background: #FAF9F6;
}

.click-show {
    position: relative;
    overflow: hidden;
    max-height: 120px;
}

.click-show::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.001) 60%);
    transition: all 0.4s ease-out;
}

.click-show.show {
    max-height: 100% !important;
}

.click-show.show::after {
    opacity: 0;
}

.read-more-btn {
    color: #1F1F26;
    cursor: pointer;
    font-weight: var(--font-medium);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

ul.list-bullet {
    list-style-type: disc !important;
}

ul.list-bullet li {
    list-style-type: disc !important;
}

@media (min-width: 576px) {
    .fluid-left {
        padding-inline-start: calc((100vw - 540px) / 2);
        padding-inline-end: calc((100vw - 540px) / 2);
    }

    .fluid-right {
        padding-inline-start: calc((100vw - 540px) / 2);
        padding-inline-end: calc((100vw - 540px) / 2);
    }

    .border-sm-end {
        border-inline-end: 1px solid var(--border-color);
    }
}

@media (min-width: 768px) {
    .fluid-left {
        padding-inline-start: calc((100vw - 720px) / 2);
        padding-inline-end: 0;
    }

    .fluid-right {
        padding-inline-end: calc((100vw - 720px) / 2);
        padding-inline-start: 0;
    }
}

@media (min-width: 992px) {
    .img-left {
        margin-inline-start: -60px;
    }

    .img-right {
        margin-inline-end: -60px;
    }

    .fluid-left {
        padding-inline-start: calc((100vw - 960px) / 2);
        padding-inline-end: 0;
    }

    .fluid-right {
        padding-inline-end: calc((100vw - 960px) / 2);
        padding-inline-start: 0;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .border-lg-end {
        border-inline-end: 1px solid var(--border-color);
    }
}

@media (min-width: 1200px) {
    .fluid-left {
        padding-inline-start: calc((100vw - 1140px) / 2);
    }

    .fluid-right {
        padding-inline-end: calc((100vw - 1140px) / 2);
    }

    .container-custom {
        max-width: 1440px;
    }
}

@media (min-width: 1400px) {
    .fluid-left {
        padding-inline-start: calc((100vw - 1320px) / 2);
    }

    .fluid-right {
        padding-inline-end: calc((100vw - 1320px) / 2);
    }

    .col-xxl-5th {
        width: 20%;
    }

    .img-left {
        margin-inline-start: -100px;
    }

    .img-right {
        margin-inline-end: -100px;
    }
}

.bg-s-contain {
    background-repeat: no-repeat;
    background-size: contain !important;
}

.bg-a-fixed {
    background-attachment: fixed;
}

.clients-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clients-avatar .client-img {
    z-index: 1;
    position: relative;
}

.clients-avatar .client-img img {
    max-width: 40px;
    border-radius: 50%;
    border: 3px solid var(--colo-white);
}

.clients-avatar .client-img img:not(:first-child) {
    margin-inline-start: -16px;
}

.clients-avatar .client-img span {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--text-white);
    margin-inline-start: -16px;
    border: 3px solid var(--colo-white);
    z-index: 2;
    font-size: var(--font-xsm);
    background-color: #FAF9F6;
}

.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-input .qty-btn {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0;
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    /* color: var(--text-dark); */
}

.quantity-input input {
    height: 35px;
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-inline: unset;
    background-color: transparent;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/* -----------------------------------------
    Color CSS
----------------------------------------- */


/* Theme Color CSS */

.theme-color-1 {
    --color-primary: #C19F5F;
    --color-primary-rgb: 193, 159, 95;
    --btn-color: var(--color-dark);
}

.theme-color-2 {
    --color-primary: #FAB940;
    --color-primary-rgb: 250, 185, 64;
    --btn-color: var(--color-dark);
    --btn-hover-color: var(--color-white);
    --font-heading: "Josefin Sans", sans-serif;
    --font-body: "Lato", sans-serif;
}

.theme-color-3 {
    --color-primary: #623620;
    --color-primary-rgb: 69, 42, 28;
    --font-heading: "Playfair Display", serif;
}

.theme-color-4 {
    --color-primary: #85C33C;
    --color-primary-rgb: 133, 195, 60;
    --font-heading: "Jost", sans-serif;
    --font-body: "Inter", sans-serif;
}

.theme-color-5 {
    --color-primary: #EE7712;
    --color-primary-rgb: 238, 119, 18;
    --font-heading: "Poppins", sans-serif;
    --font-body: "Roboto", sans-serif;
}


/* Color CSS */

.color-primary {
    color: #111111 !important;
}

.color-white {
    color: var(--text-white) !important;
}

.color-light {
    color: var(--text-light) !important;
}

.color-dark {
    color: var(--color-dark) !important;
}

.color-medium {
    color: var(--text-medium) !important;
}

.color-blue {
    color: var(--color-blue) !important;
}

.color-green {
    color: var(--color-green) !important;
}

.color-red {
    color: var(--color-red) !important;
}

.color-yellow {
    color: var(--color-yellow) !important;
}

.color-purple {
    color: #FAF9F6 !important;
}

.color-orange {
    color: var(--color-orange) !important;
}

.bg-primary {
    background-color: #FAF9F6 !important;
}

.bg-primary-light {
    --bg-primary-light: rgba(var(--color-primary-rgb), .05);
    background-color: var(--bg-primary-light) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-secondary-light {
    --bg-secondary-light: rgba(var(--color-secondary-rgb), .05);
    background-color: var(--bg-secondary-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.bg-light {
    background-color: #ffd4d4 !important
}

.bg-light-2 {
    background-color: var(--bg-2) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
}

.bg-gradient {
    background-image: var(--gradient-1) !important;
}

.border-primary {
    border-color: #FAF9F6 !important;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-none {
    background-color: transparent !important;
    background: transparent !important;
}

.fill-primary {
    fill: #FAF9F6 !important;
}

.stroke-primary {
    stroke: #FAF9F6 !important;
}

.fill-primary-light {
    fill: #FAF9F6 !important;
    filter: contrast(30%);
}

.fill-dark {
    fill: #FAF9F6 !important;
    filter: brightness(50%);
}


/* -----------------------------------------
    Button CSS
----------------------------------------- */

button,
.btn {
    cursor: pointer;
    border: none;
    background: inherit;
}

button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none;
    box-shadow: none;
}

button:hover,
.btn:hover {
    outline: none;
}

.btn {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 0;
    letter-spacing: 0.05em;
    font-weight: var(--font-medium);
    z-index: 1;
    transition: all 0.3s ease-out;
}

.icon-start i {
    margin-inline-end: 5px;
}

.icon-end i {
    margin-inline-start: 5px;
}

.btn-lg {
    padding: 14px 34px;
    border-radius: 7px;
}

.btn-md {
    padding: 10px 24px;
    font-size: var(--font-sm);
    border-radius: 5px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: var(--font-xsm);
    border-radius: 5px;
}

.btn-sm.btn-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
}

.btn-primary {
    color: #fdf5db;
    background-color: #111111;
    transition: all 0.3s ease-out;
    box-shadow: 0 10px 30px -7px rgba(var(--color-primary-rgb), 0.5);
    border: 1px solid #d77935;
}

.btn-primary::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    content: "";
    background: var(--bg-dark);
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--btn-hover-color);
    background-color: #FAF9F6;
    border-color: #FAF9F6;
}

.btn-primary:hover::before {
    transform: translateY(0) scale(2);
}

.btn-secondary {
    color: var(--btn-color);
    background-color: var(--color-dark);
    transition: all 0.3s ease-out;
    border: 1px dashed var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
}

.btn-gradient::before {
    background-image: var(--gradient-1);
}

.btn-fancy {
    border-radius: 15px 0 15px 0;
}

.btn.no-animation {
    transform: none;
    animation: none;
    background-color: #FAF9F6;
}

.btn.no-animation::before,
.btn.no-animation::after {
    content: none;
}

.btn-danger {
    border: 1px solid var(--color-red);
    background-color: var(--color-red);
    transition: background 0.3s ease-out;
}

.btn-danger:hover {
    border-color: var(--color-red);
    background-color: var(--color-red);
}

.btn-outline {
    color: #FAF9F6;
    transition: all 0.3s ease-out;
    border: 1px solid #FAF9F6;
}

.btn-outline::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    content: "";
    background: #FAF9F6;
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--btn-color);
    border-color: #FAF9F6;
}

.btn-outline:hover::before {
    transform: translateY(0) scale(2);
}

.btn-outline-2 {
    color: var(--text-dark);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.btn-outline-2:hover {
    color: #FAF9F6;
}

.btn-img {
    padding: 0;
    border: 1px solid var(--border-color-2);
    background-color: transparent !important;
}

.btn-img img {
    max-width: 150px;
}

.btn-img.size-sm img {
    max-width: 120px;
}

.btn-img:hover {
    border-color: var(--border-color-2) !important;
}

.btn-groups {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.btn-remove {
    padding: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    background: rgba(var(--color-primary-rgb), 0.12) !important;
    color: #FAF9F6 !important;
}

.btn-text {
    line-height: 1;
    color: var(--text-dark);
    font-size: var(--font-sm);
    font-weight: 500;
}

.btn-text:hover {
    color: #FAF9F6 !important;
}

.btn-tag {
    display: inline-block;
    padding: 10px 24px;
    font-size: var(--font-sm);
    border-radius: 50px;
    background: var(--bg-1);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.btn-tag:not(:last-child) {
    margin-inline-end: 5px;
}

.btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-align: center;
}

.btn-icon:hover {
    border-color: transparent;
    color: var(--text-white);
    background-color: #FAF9F6;
}

.btn-icon-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    --size: 30px;
}

.btn-icon-text span:last-child {
    font-weight: var(--font-medium);
}

.btn-icon-text i {
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    text-align: center;
    background-color: #FAF9F6;
    font-size: 14px;
    border-radius: 50%;
    color: var(--text-white);
    box-shadow: 0px 14px 20px 5px rgba(var(--color-primary-rgb), 0.1);
}

button.mfp-close {
    display: inline-block;
    width: 35px !important;
    height: 35px;
    line-height: 35px;
    background: #FAF9F6 !important;
    color: var(--color-white) !important;
    opacity: 1;
    right: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.btn.disabled {
    border: none;
    cursor: not-allowed !important;
    pointer-events: initial !important;
}


/* Video Btn CSS */

.video-btn {
    --size: 75px;
    position: relative;
    width: var(--size);
    height: var(--size);
    padding: 0;
    font-size: 22px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #FAF9F6;
    background-color: var(--bg-white);
}

.video-btn:hover {
    background-color: #FAF9F6;
    color: var(--text-white);
}

.video-btn::after {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    animation: ripple 3s infinite;
    background-color: var(--bg-white);
    border-radius: 50%;
    z-index: -2;
}

.video-btn::before {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    animation: ripple 3s 0.9s infinite;
    background-color: var(--bg-white);
    border-radius: 50%;
    z-index: -1;
}

.video-btn-sm {
    --size: 50px;
    font-size: var(--font-sm);
}

.video-btn-sm::before,
.video-btn-sm::after {
    animation-name: ripple2;
}

.video-btn.p-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-btn-text {
    --size: auto;
    border: none;
    gap: 10px;
    background: transparent;
}

.video-btn-text::before,
.video-btn-text::after {
    content: none;
}

.video-btn-text i {
    --size: 45px;
    position: relative;
    width: var(--size);
    height: var(--size);
    padding: 0;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #FAF9F6;
    border: 1px solid #FAF9F6;
}

.video-btn-text span {
    color: var(--text-medium);
}

.video-btn-text:hover {
    background-color: transparent;
    color: #FAF9F6;
}

.video-btn-text:hover span {
    color: #FAF9F6;
}

.show-more-btn {
    --size: auto;
    cursor: pointer;
    color: #FAF9F6;
    border: 0;
}


/* -----------------------------------------
    Form CSS
----------------------------------------- */

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    height: 55px;
    line-height: 55px;
    padding: 0;
    padding-inline-start: 18px;
    padding-inline-end: 18px;
    font-size: 14px;
    color: var(--text-medium);
    transition: border-color 0.4s;
}

.form-control:focus {
    color: var(--text-dark);
    background-color: transparent;
}

.form-control.color-white::-moz-placeholder {
    color: var(--text-white) !important;
}

.form-control.color-white::placeholder {
    color: var(--text-white) !important;
}

:is(input:not([type=radio], [type=checkbox]), textarea, .nice-select):is(:focus, :visited, :focus-within, :focus-visible) {
    border-color: #5961F9 !important;
}

select.form-select {
    background-size: 8px !important;
}

textarea {
    height: auto;
    line-height: 1.7;
    padding: 15px 18px 18px;
}

textarea.form-control {
    min-height: 200px;
    line-height: 1.7;
    padding: 15px 18px 18px;
}

textarea::-moz-placeholder {
    font-size: var(--font-base);
}

textarea::placeholder {
    font-size: var(--font-base);
}

::-moz-placeholder {
    color: var(--text-medium) !important;
}

::placeholder {
    color: var(--text-medium) !important;
}

.custom-radio .form-radio-label {
    position: relative;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    padding: 0;
    vertical-align: middle;
    padding-inline-start: 20px;
}

.custom-radio .form-radio-label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    border: 1px solid #FAF9F6;
    border-radius: 50%;
}

.custom-radio input[type=radio]:checked+.form-radio-label::after {
    opacity: 1;
}

.custom-radio input[type=radio]+.form-radio-label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    opacity: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FAF9F6;
    transition: all 0.2s ease-out;
}

.custom-radio .input-radio {
    display: none;
}

.custom-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    padding: 0;
    vertical-align: middle;
    padding-inline-start: 22px;
}

.custom-checkbox .form-check-label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    border: 1px solid #FAF9F6;
    border-radius: 2px;
}

.custom-checkbox input[type=checkbox]:checked+.form-check-label::after {
    opacity: 1;
}

.custom-checkbox input[type=checkbox]+.form-check-label::after {
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 2px;
    opacity: 0;
    height: 5px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: translateY(-65%) rotate(-45deg);
    transition: all 0.2s ease-out;
}

.custom-checkbox .input-checkbox {
    display: none;
}

input[type=checkbox]:checked+.form-check-label::before,
input[type=radio]:checked+.form-check-label::before {
    background-color: #FAF9F6;
    border-color: #FAF9F6;
}

input[type=checkbox]:checked+.form-check-label::after,
input[type=radio]:checked+.form-check-label::after {
    opacity: 1;
}

.form-group,
.input-group {
    position: relative;
}

.form-group.icon-end label,
.input-group.icon-end label {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    width: 18px;
    font-size: var(--font-sm);
    margin-inline-start: auto;
    margin-inline-end: 10px;
    transform: translateY(-50%);
}

.form-group.icon-start .form-control,
.input-group.icon-start .form-control {
    padding-inline-start: 44px;
}

.form-group.icon-start .icon,
.input-group.icon-start .icon {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    width: 18px;
    font-size: var(--font-sm);
    margin-inline-end: auto;
    margin-inline-start: 20px !important;
    transform: translateY(-50%);
    z-index: 1;
}

.form-group.icon-start input[type=number],
.input-group.icon-start input[type=number] {
    text-align: right;
    padding-inline-end: 10px;
}

.input-inline {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-inline .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    padding: 15px 25px;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.input-inline .btn {
    margin-inline-start: -1px;
    position: relative;
    z-index: 2;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.show-password-field {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.show-password-field .show-icon {
    font-family: var(--font-icon);
    font-style: normal;
}

.show-password-field .show-icon::before {
    content: "\f06e";
}

.show-password-field .show-icon.show::before {
    content: "\f070";
}

.file-upload {
    position: relative;
    line-height: 100px;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.faq-form textarea.form-control {
    min-height: 150px;
}

.faq-form :focus {
    color: var(--text-dark);
    background-color: var(--bg-white);
}


/* -----------------------------------------
Lazyload CSS
----------------------------------------- */

.lazy-container {
    position: relative;
    overflow: hidden;
    display: table;
    table-layout: fixed;
    width: 100%;
    background-color: var(--bg-1);
    z-index: 1;
}

.lazy-container::after {
    position: absolute;
    content: "\f03e";
    font-family: "Font Awesome 5 Pro";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    font-size: 25px;
    color: var(--text-medium);
    z-index: -1;
}

.lazy-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    max-width: 100%;
    min-width: 100%;
    max-height: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lazy-container img.lazy-load {
    filter: blur(5px);
    transition: filter 400ms;
}

.lazy-container img.lazyloaded {
    filter: blur(0);
}

.lazy-container.bg-none::after {
    opacity: 0;
}

.ratio::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.ratio.ratio-1-1::before {
    padding-bottom: 100%;
}

.ratio.ratio-1-2::before {
    padding-bottom: 114%;
}

.ratio.ratio-1-3::before {
    padding-bottom: 126.14%;
}

.ratio.ratio-2-3::before {
    padding-bottom: 66.67%;
}

.ratio.ratio-16-11::before {
    padding-bottom: 53.57%;
}

.ratio.ratio-16-8::before {
    padding-bottom: 50%;
}

.ratio.ratio-21-9::before {
    padding-bottom: 42.85%;
}

.ratio.ratio-21-8::before {
    padding-bottom: 38.0952380952%;
}

.ratio.ratio-5-3::before {
    padding-bottom: 60%;
}

.ratio.ratio-5-4::before {
    padding-bottom: 80%;
}

.ratio.ratio-4-3::before {
    padding-bottom: 133.3333333333%;
}

.ratio.ratio-3-4::before {
    padding-bottom: 75%;
}

.ratio.ratio-vertical::before {
    padding-bottom: 164%;
}

.blur-up {
    filter: blur(5px);
    transition: filter 400ms;
}

.lazyloaded.blur-up {
    filter: blur(0);
}


/* -----------------------------------------
    Preloader CSS
----------------------------------------- */

#preLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
    background-color: var(--bg-white);
}


/* -----------------------------------------
    Swiper Slider CSS
----------------------------------------- */

.swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.swiper-wrapper {
    -webkit-transform-style: preserve-3d;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    opacity: 1;
    background-color: #FAF9F6;
    opacity: 0.3;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #FAF9F6;
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    line-height: 1;
    bottom: 0;
}

.slider-navigation {
    z-index: 3;
}

.slider-navigation .slider-btn {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: #FAF9F6;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: var(--btn-color);
    font-size: 24px;
    transition: all 0.3s ease-out;
}

.slider-navigation .slider-btn:last-child {
    margin-inline-start: 10px;
}

.slider-navigation .slider-btn i {
    transition: transform 0.3s ease-out;
}

.slider-navigation .slider-btn.btn-outline {
    background: transparent;
    color: #FAF9F6;
    border-color: #FAF9F6;
}

.slider-navigation .slider-btn.btn-outline:hover {
    color: var(--text-white);
    background: #FAF9F6;
}

.slider-navigation .slider-btn:disabled {
    cursor: not-allowed;
}

.slider-navigation.position-middle .slider-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(var(--color-white-rgb), 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.slider-navigation.position-middle .slider-btn.slider-btn-prev {
    left: 0%;
}

.slider-navigation.position-middle .slider-btn.slider-btn-next {
    right: 0%;
}

.swiper-lazy {
    background-color: var(--text-light);
}

.swiper-lazy-loaded.blur-up {
    filter: blur(0);
}


/* -----------------------------------------
    Nav Tabs CSS
----------------------------------------- */

.tabs-navigation::-webkit-scrollbar {
    height: 8px;
}

.tabs-navigation::-webkit-scrollbar-track {
    background-color: var(--bg-light);
}

.tabs-navigation::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: rgba(var(--color-dark-rgb), 0.2);
}

.tabs-navigation .nav {
    display: inline-flex;
    border: none;
    gap: 20px;
    justify-content: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.tabs-navigation .nav li {
    flex: 0 0 auto;
}

.tabs-navigation .nav .nav-link {
    color: #111111;
    font-weight: var(--font-medium);
    margin: 0;
    z-index: 999;
    border: 0;
    border: 1px solid var(--border-color-2);
    cursor: pointer;
}

.tabs-navigation .nav .nav-link:is(.active) {
    color: var(--btn-color);
    background-color: #FAF9F6;
    border-radius: 0;
}

.tabs-navigation .nav[data-hover=fancyHover] .nav-link:is(.active, :hover) {
    color: #111111;
    background: transparent !important;
    border-color: #FAF9F6;
}

.tabs-navigation .nav[data-hover=fancyHover] .nav-item {
    z-index: 2;
}

.tabs-navigation .nav[data-hover=fancyHover] .nav-item:is(.active) .nav-link {
    color: var(--btn-color);
    background-color: #FAF9F6 !important;
    border-color: #FAF9F6;
}

.tabs-navigation .nav[data-hover=fancyHover] .nav-item:is(.active) .nav-link:is(:hover) {
    background: transparent !important;
}

.tabs-navigation .target {
    position: absolute;
    background-color: #FAF9F6;
    border: 1px solid #FAF9F6;
    z-index: 1;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.tabs-navigation-2 .nav {
    gap: 0;
}

.tabs-navigation-2 .nav .nav-link {
    color: #111111;
    border-radius: 0 !important;
    background-color: transparent !important;
}

.tabs-navigation-2 .nav[data-hover=fancyHover] .nav-link {
    border: 0;
    border-bottom: 3px solid transparent;
}

.tabs-navigation-2 .nav[data-hover=fancyHover] .nav-link:is(.active, :hover) {
    border-color: transparent !important;
}

.tabs-navigation-2 .nav[data-hover=fancyHover] .nav-item:is(.active) .nav-link {
    color: #111111;
    background-color: transparent !important;
}

.tabs-navigation-2 .nav[data-hover=fancyHover] .nav-item:is(.active) .nav-link.active {
    border-color: transparent !important;
    border-bottom-color: #FAF9F6 !important;
}

.tabs-navigation-2 .nav .target {
    border-radius: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    height: 3px !important;
    border: none;
}

.tabs-navigation-3 .nav {
    gap: 10px;
    width: 100%;
}

.tabs-navigation-3 .nav .nav-item {
    flex: 0 0 auto;
    width: calc(25% - 10px);
}

.tabs-navigation-3 .nav .nav-link {
    color: var(--text-medium);
    border-radius: 0 !important;
    background-color: transparent;
    border-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.tabs-navigation-3 .nav .nav-link .menu-icon {
    font-size: 52px;
    line-height: 1;
    color: #FAF9F6;
}

.tabs-navigation-3 .nav .nav-link:is(.active, :hover) {
    border-color: transparent;
    background-color: #FAF9F6;
}

.tabs-navigation-3 .nav .nav-link:is(.active, :hover) * {
    color: var(--color-white);
}

.tab-pane.fade {
    transition: all 0.3s;
    transform: translateY(0.5rem);
}

.tab-pane.fade.show {
    transform: translateY(0rem);
}

.tab-pane.slide.show {
    animation: slideUp 1 0.4s;
}


/* -----------------------------------------
    Nice Select CSS
----------------------------------------- */

.nice-select {
    float: unset;
    font-weight: var(--font-medium);
    padding-left: 0;
    padding-right: 0;
    padding-inline-start: 18px;
    padding-inline-end: 30px;
    background-color: inherit;
}

.nice-select:after {
    right: 0;
    left: 0;
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.nice-select.form-control:after {
    margin-inline-end: 12px;
}

.nice-select .list {
    z-index: 777;
    width: 100%;
    min-width: 100px;
    font-size: var(--font-sm);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.nice-select .list li {
    min-height: 30px;
    line-height: 30px;
}

.nice-select .option {
    display: block;
    font-weight: 500;
    border-inline-start: 2px solid transparent;
}

.nice-select .option:is(:hover, .focus, .selected.focus) {
    background-color: var(--bg-2);
}

.nice-select .option.selected {
    font-weight: 500;
    color: #FAF9F6 !important;
    border-color: #FAF9F6;
}


/* -----------------------------------------
    Go top CSS
----------------------------------------- */

.go-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: 0;
    left: 0;
    margin-inline-end: 1%;
    margin-inline-start: auto;
    width: 40px;
    height: 40px;
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-white);
    font-size: 28px;
    border-start-end-radius: var(--radius-sm);
    border-start-start-radius: var(--radius-sm);
    background-color: #FAF9F6;
    transition: 0.4s;
    transform: translateY(15%);
    z-index: 100;
}

.go-top.active {
    opacity: 1;
    transform: none;
}

.go-top:hover {
    transform: translateY(-3px);
}


/* -----------------------------------------
    Title CSS
----------------------------------------- */

.section-title .title {
    margin-bottom: 0;
    margin-top: -8px;
}

.section-title .title span {
    color: #FAF9F6;
}

.section-title .subtitle {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    display: inline-block;
    margin-bottom: 5px;
}

.section-title.title-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title.title-inline .title {
    margin-top: 0;
}

.section-title.title-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section-title.title-center .subtitle {
    padding-inline-start: 0;
}

.section-title.title-center .subtitle::before {
    content: none;
}

.section-title.title-center .title {
    max-width: 640px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title.title-center p {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 0;
}

.content-title .title {
    margin-bottom: 10px;
    margin-top: -8px;
}

.content-title .title span {
    color: #FAF9F6;
}

.content-title .subtitle {
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    display: inline-block;
    margin-bottom: 5px;
    margin-top: -3px;
}

.content-title p:last-child {
    margin-bottom: 0;
}

.title-md {
    font-size: 32px;
}


/* -----------------------------------------
    Social Link CSS
----------------------------------------- */

.social-link {
    --size: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-link a {
    text-align: center;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    background-color: #FAF9F6;
    color: var(--text-white);
    font-size: var(--font-base);
}

.social-link a:last-child {
    margin: 0;
}

.social-link a:hover {
    color: var(--text-white);
    background-color: #FAF9F6;
}

.social-link.style-2 a {
    border-radius: 50%;
    background-color: rgba(var(--color-primary-rgb), 0.1);
    color: #111111;
}

.social-link.icon-only {
    gap: 15px;
}

.social-link.icon-only a {
    --size: auto;
    border-radius: 0;
    background-color: transparent;
    color: var(--text-dark);
}

.social-link.size-md {
    --size: 30px;
    --font-base: 14px;
}

.social-link.size-lg {
    --size: 50px;
}


/* -----------------------------------------
    Ratings CSS
----------------------------------------- */

.ratings {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.ratings .rate {
    background-image: url(../images/rate-star.png);
    background-position: 0 -13.5px;
    background-repeat: repeat-x;
    height: 13.5px;
    transition: all 0.5s ease-out 0s;
    width: 95px;
    margin-inline-start: -3px;
}

.ratings .rating-icon {
    background-image: url(../images/rate-star.png);
    background-position: 0 0;
    background-repeat: repeat-x;
    height: 13.5px;
    width: 90%;
}

.ratings .ratings-total {
    font-size: 12px;
    line-height: normal;
}

.ratings.size-md .rate {
    background-image: url(../images/rate-star-md.png);
    background-position: 0 -15.5px;
    height: 15.5px;
    width: 115px;
}

.ratings.size-md .rating-icon {
    background-image: url(../images/rate-star-md.png);
    height: 15.5px;
}

.ratings.size-md .ratings-total {
    font-size: 14px;
}

.ratings.size-lg .rate {
    background-image: url(../images/rate-star-lg.png);
    background-position: 0 -20.5px;
    height: 20.5px;
    width: 145px;
}

.ratings.size-lg .rating-icon {
    background-image: url(../images/rate-star-lg.png);
    height: 20.5px;
}

.ratings.size-lg .ratings-total {
    font-size: 16px;
}


/* -----------------------------------------
    Animation CSS
----------------------------------------- */

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.2, 1.2, 1.2);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveAround {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes ripple {
    0% {
        opacity: 0.45;
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes ripple2 {
    0% {
        opacity: 0.45;
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes run {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}


/*

====== Zoom effect ======

*/

.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}


/*

  ====== Newspaper effect ======

  */

.mfp-newspaper {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    transition: all 0.5s;
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}


/*

  ====== Move-horizontal effect ======

  */

.mfp-move-horizontal {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}


/*

  ====== Move-from-top effect ======

  */

.mfp-move-from-top {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-from-top .mfp-content {
    vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
    opacity: 0;
}


/*

  ====== 3d unfold ======

  */

.mfp-3d-unfold {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-3d-unfold .mfp-content {
    perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
    opacity: 0;
}


/*

  ====== Zoom-out effect ======

  */

.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}


/* -----------------------------------------
    Header CSS
----------------------------------------- */

.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-area.header-static {
    position: relative;
}

.header-area.is-sticky {
    position: fixed;
    background: rgba(var(--color-white-rgb), 0.9);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
    animation: slideDown 0.5s;
    padding-top: 0;
}

.header-area.is-sticky .header-top {
    display: none;
}

.header-area .more-option {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-area .more-option .more-option-toggle {
    z-index: 11;
    font-size: 25px;
    padding: 10px;
}

.header-area .more-option .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-area .more-option .badge {
    position: absolute;
    top: -1px;
    right: -25px;
    line-height: 1;
}

.header-area .navbar-nav {
    margin-inline-start: auto;
    margin-inline-end: 60px;
}

.header-area .nav-link {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #111111;
    font-weight: var(--font-medium);
}

.header-area .nav-link.toggle i {
    font-size: 12px;
    margin-inline-start: 2px;
    margin-top: 3px;
    transition: transform 0.4s ease-out;
}

.header-area .nav-link.toggle:hover i {
    transform: rotate(-90deg);
}

.header-area .nav-link:hover .menu-dropdown {
    transform: none;
}

.header-area .nav-link:hover,
.header-area .nav-link.active,
.header-area .nav-link:focus {
    color: #000;
}

.header-area .main-navbar .navbar {
    position: inherit;
    padding: 0;
}

.header-area .main-navbar .navbar .navbar-brand {
    padding: 0;
    margin: 3px;
}

.header-area .main-navbar .nav-item {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

.header-area .main-navbar .menu-dropdown {
    position: absolute;
    top: auto;
    left: 0;
    z-index: 99;
    opacity: 0;
    width: 900px !important;
    display: block;
    visibility: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 15px 0px;
    background-color: #fdf5db;
    box-shadow: 0px 0px 30px 0px rgba(var(--color-dark-rgb), 0.15);
    transform: translateY(10%);
    transition: transform 0.3s ease-out;
}

.header-area .main-navbar .menu-dropdown .nav-item {
    margin: 0;
    border-bottom: 1px solid #e7ded2;
}

.header-area .main-navbar .menu-dropdown .nav-link {
    color: #111111;
    background-color: #FAF9F6;
    display: block;
    padding: 2px 2px;
    font-size: var(--font-sm);
    border-inline-start: 2px solid transparent;
}

.header-area .main-navbar .menu-dropdown .nav-link:hover {
    color: #111111;
    background-color: #FAF9F6;
}

.header-area .main-navbar .menu-dropdown .nav-link:hover.toggle i {
    transform: translateY(-50%) rotate(-90deg);
}

.header-area .main-navbar .menu-dropdown .nav-link.toggle i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.header-area .main-navbar .menu-dropdown .nav-link.active {
    border-inline-start-color: #FAF9F6;
}

.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item {
    margin: 0;
}

.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item a:hover::before {
    transform: scaleY(0);
}

.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item a.active::before {
    transform: scaleY(0);
}

.header-area .menu-toggler {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: #FAF9F6;
    z-index: 1000;
}

.header-area .menu-toggler:focus {
    box-shadow: none !important;
}

.header-area .menu-toggler span {
    position: relative;
    display: block;
    width: 22px;
    margin-inline: auto;
    height: 2px;
    background: #111111;
    border-radius: 10px;
    transition: transform 200ms 0ms, top 200ms 160ms;
}

.header-area .menu-toggler span:nth-child(1) {
    top: -4px;
}

.header-area .menu-toggler span:nth-child(3) {
    top: 4px;
}

.header-area .menu-toggler.active span:nth-child(1) {
    top: 0;
    transform: rotateZ(45deg);
    transition: top 200ms 0ms, transform 200ms 160ms;
}

.header-area .menu-toggler.active span:nth-child(2) {
    transform: scale(0);
}

.header-area .menu-toggler.active span:nth-child(3) {
    top: -4px;
    transform: rotateZ(-45deg);
    transition: top 200ms 0ms, transform 200ms 160ms;
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li.active a {
    color: #FAF9F6;
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-area .nice-select {
    border: none;
    padding-inline-end: 0;
    padding-inline-start: 25px;
    background: transparent;
    color: var(--text-dark);
}

.header-area .nice-select:not(.list) {
    font-size: var(--font-base);
}

.header-area .nice-select::after {
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    content: "\f0ac";
    font-family: var(--font-icon);
    font-size: 20px;
    top: 50%;
    left: 0;
    font-weight: 300;
    margin: 0;
    transform: translateY(-50%);
    transition: none;
}

.header-area .btn-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dark);
    width: auto;
    height: auto;
}

.header-area .btn-icon:hover {
    color: #FAF9F6;
    background: transparent;
}

.header-area .main-responsive-nav {
    display: none;
}

.header-area .mobile-menu {
    visibility: hidden;
}


/* -----------------------------------------
    Header 1 CSS
----------------------------------------- */

.header-area.header-1 .header-top {
    background-color: #fdf5db;
    border-bottom: 1px solid #000;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.header-area.header-1 .header-top span {
    color: var(--text-white);
}

.header-area.header-1 .header-top a {
    color: #111111;
}

.header-area.header-1 .header-top a:hover {
    color: #d77935;
}

.header-area.header-1.is-sticky {
    background: rgba(var(--color-dark-rgb), 0.9);
}

@media (min-width: 1200px) {
    .header-area.header-1 :is(.nav-link: not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select: : after) {
        color: var(--text-white);
    }

    .header-area.header-1 .nice-select::after {
        color: var(--text-white);
    }

    .header-area.header-1 .nice-select .list {
        color: var(--text-dark);
    }
}

@media (max-width: 1199px) {
    .header-area.header-1:not(.is-sticky) {
        background-color: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(var(--color-white-rgb), 0.2);
    }
}


/* -----------------------------------------
    Header 2 CSS
----------------------------------------- */

.header-area.header-2 .header-top {
    --border-color: rgba(var(--color-white-rgb), .3);
}

.header-area.header-2 .header-top span {
    color: var(--text-white);
}

.header-area.header-2 .header-top a {
    color: var(--text-white);
}

.header-area.header-2 .header-top a:hover {
    color: #FAF9F6;
}

.header-area.header-2 .nice-select li {
    color: var(--text-dark);
}

.header-area.header-2.is-sticky {
    background: #FAF9F6;
}

@media (min-width: 1200px) {

    .header-area.header-2.is-sticky .badge,
    .header-area.header-2.is-sticky .btn-primary {
        background: var(--bg-white) !important;
        border-color: var(--color-white);
    }

    .header-area.header-2.is-sticky .badge {
        color: var(--text-dark);
    }

    .header-area.header-2.is-sticky .cart:hover,
    .header-area.header-2.is-sticky .btn-icon:hover {
        color: var(--btn-color);
    }

    .header-area.header-2:not(.is-sticky) :is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
        color: var(--text-white);
    }

    .header-area.header-2:not(.is-sticky) .nice-select::after {
        color: var(--text-white);
    }
}

.header-area.header-2 .menu-toggler {
    background-color: var(--bg-white);
}

.header-area.header-2 .menu-toggler span {
    background-color: #FAF9F6;
}


/* -----------------------------------------
    Header 3 CSS
----------------------------------------- */

.header-area.header-3 .nice-select li {
    color: var(--text-dark);
}

.header-area.header-3.is-sticky {
    background: #FAF9F6;
}

@media (min-width: 1200px) {
    .header-area.header-3 .header-top {
        background: rgba(var(--color-primary-rgb), 0.8);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
    }

    .header-area.header-3 .header-top a,
    .header-area.header-3 .header-top span {
        color: var(--text-white);
    }

    .header-area.header-3.is-sticky .btn-primary {
        background: transparent !important;
        border-color: var(--color-white);
    }

    .header-area.header-3.is-sticky .badge {
        color: var(--text-dark);
        background: var(--bg-white) !important;
    }

    .header-area.header-3 .cart:hover,
    .header-area.header-3 .btn-icon:hover {
        color: var(--btn-color);
    }

    .header-area.header-3 :is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
        color: var(--text-white);
    }

    .header-area.header-3 .nice-select::after {
        color: var(--text-white);
    }
}

@media (max-width: 1199px) {
    .header-area {
        height: 60px;
        border-bottom: 1px solid rgba(var(--color-dark-rgb), 0.1);
    }

    .header-area.is-sticky {
        background: #FAF9F6;
        position: fixed;
        top: 0;
        width: 100%;
        border-color: transparent;
    }

    .header-area .main-responsive-nav {
        display: block;
        height: 90px;
        line-height: 60px;
    }

    .header-area .main-responsive-nav>div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        background: #FAF9F6;
    }

    .header-area .main-responsive-nav .logo {
        flex: 0 0 100px;
    }

    .header-area .main-responsive-nav .logo a {
        display: flex;
        height: 100%;
    }

    .header-area .main-navbar {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        overflow: hidden;
        overflow-y: scroll;
        transition: all 0.8s ease;
        z-index: 999;
        background: #FAF9F6;
    }

    .mobile-menu::-webkit-scrollbar {
        width: 1px;
    }

    .mobile-menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-menu::-webkit-scrollbar-thumb {
        background: transparent;
    }

    .mobile-menu .mobile-menu-wrapper {
        margin-top: 60px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .mobile-menu .navbar-nav {
        width: 100%;
        margin-inline-start: 0;
    }

    .mobile-menu .navbar-nav li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        transition: all 700ms ease;
    }

    .mobile-menu .navbar-nav li ul {
        padding-inline-start: 12px;
        list-style-type: none;
    }

    .mobile-menu .navbar-nav li li a {
        font-size: 14px;
    }

    .mobile-menu .more-option {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-menu li.nav-item:not(.show) ul {
        display: none;
    }

    .mobile-menu li.nav-item.show>.toggle {
        position: relative;
    }

    .mobile-menu li.nav-item.show>.toggle i::before {
        content: "\f068";
    }

    .mobile-menu .nav-link.toggle {
        position: relative;
    }

    .mobile-menu .nav-link.toggle i {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .mobile-menu .nav-link.toggle:hover i {
        transform: translateY(-50%);
    }

    .mobile-menu-active .mobile-menu {
        visibility: visible;
        left: 0;
    }

    .header-top-items {
        text-align: center;
        justify-content: center !important;
        flex-direction: column;
        padding-bottom: 20px;
        margin-bottom: 20px;
        /* border-bottom: 1px solid var(--border-color); */
    }

    .header-area.header-2:is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
        color: var(--text-dark);
    }
}

body.mobile-menu-active {
    overflow: hidden;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--color-dark-rgb), 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 1;
    transition: all 0.3s;
}


/* -----------------------------------------
    Hero Banner CSS
----------------------------------------- */

.hero-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-banner .banner-content {
    max-width: 640px;
}

.hero-banner .banner-content p {
    font-size: var(--font-lg);
    max-width: 540px;
    margin-bottom: 0;
}

.hero-banner .banner-content .subtitle {
    display: block;
}

.hero-banner .banner-content .title {
    margin-top: -5px;
}

.hero-banner .banner-content .title span {
    color: #FAF9F6;
}

.hero-banner .banner-image {
    position: relative;
    margin-inline-start: auto;
    z-index: 1;
}

.hero-banner .banner-image img {
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.hero-banner .author-img {
    flex: 0 0 auto;
    width: 50px;
}

.hero-banner .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -2;
}

.hero-banner-1 {
    padding-top: 250px;
    padding-bottom: 100px;
}

.hero-banner-1 .bg-img {
    background-position: center center;
}

.hero-banner-2 {
    padding-top: 250px;
    padding-bottom: 200px;
}

.hero-banner-2 .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-banner-2 .product-price h6 {
    width: 100%;
}

.hero-banner-2 .product-price * {
    margin: 0;
}

.hero-banner-2 .product-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
}

.hero-banner-2 .bg-img {
    background-position: center bottom;
}

.hero-banner-3 {
    padding-top: 210px;
    padding-bottom: 80px;
}

.hero-banner-3 .bg-img {
    background-position: center bottom;
}

.hero-banner-3 .overlay {
    opacity: 1;
    background: linear-gradient(90.28deg, #000000 -0.8%, rgba(0, 0, 0, 0.63) 36.56%, rgba(0, 0, 0, 0.81) 57.43%, rgba(0, 0, 0, 0) 99.77%);
}

.hero-banner-3 .bg-shape {
    bottom: -1px;
}

.hero-banner-3 .btn-outline {
    background-color: var(--bg-white);
}

.hero-banner-4 .banner-content {
    padding-top: 245px;
    padding-bottom: 200px;
}

.hero-banner-4 .bg-img {
    background-size: cover;
    background-position: right bottom;
}

.hero-banner-5 {
    padding-top: 160px;
}

.hero-banner-5 .bg-img {
    background-position: center bottom;
}

.hero-banner-5 .bg-shape {
    bottom: -1px;
}

.hero-banner-5 .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-banner-5 .product-price h6 {
    width: 100%;
}

.hero-banner-5 .product-price * {
    margin: 0;
}

.hero-banner-5 .product-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
}

.hero-banner-5 .big-text {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    font-weight: 800;
    font-size: 110px;
    text-align: center;
    line-height: 110px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #363636;
    -webkit-text-stroke-width: 1px;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}


/* -----------------------------------------
    About CSS
----------------------------------------- */

.about-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-position: center top;
}

.about-area .card {
    background-color: transparent;
}

.about-area .card .card-text {
    flex: auto;
}

.about-area .card-icon {
    --size: 60px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    font-size: 32px;
    color: var(--text-white);
    background-color: #FAF9F6;
}

.about-area .image {
    position: relative;
}

.about-area .image .absolute-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: 6.25%;
    width: 180px;
    height: 240px;
    padding: 15px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    outline: 2px dashed var(--color-white);
    outline-offset: -12px;
}

.about-area .info-list .card {
    max-width: 400px;
    overflow: hidden;
    z-index: 1;
    flex-direction: row;
    gap: 16px;
}

.about-area.about-1 .info-list .card-icon i {
    color: var(--color-black);
}

.about-area.about-1 .info-list .item:nth-child(odd) {
    border-inline-end: 3px solid var(--border-color);
}

@media (max-width: 767.98px) {
    .about-area.about-1 .info-list .item:nth-child(odd) {
        border: 0;
    }
}

.about-area.about-2 .blockquote {
    font-size: inherit;
    padding: 20px;
    border-radius: 0 100px 100px 0;
    color: var(--text-light);
    font-style: italic;
}

.about-area.about-2 p,
.about-area.about-2 .video-btn-text span {
    color: var(--text-light);
}

.about-area.about-2 .info-list .item:nth-child(1) .card-icon {
    background-color: rgba(107, 118, 255, 0.08);
    color: #6B76FF;
}

.about-area.about-2 .info-list .item:nth-child(2) .card-icon {
    background-color: rgba(250, 185, 64, 0.08);
    color: #FAB940;
}

.about-area.about-2 .info-list .item:nth-child(3) .card-icon {
    background-color: rgba(255, 124, 65, 0.08);
    color: #FF7C41;
}

.about-area.about-2 .info-list .item:nth-child(4) .card-icon {
    background-color: rgba(0, 221, 193, 0.08);
    color: #00DDC1;
}

.about-area.about-2 .info-list .item:nth-child(5) .card-icon {
    background-color: rgba(73, 156, 33, 0.08);
    color: #499C21;
}

.about-area.about-2 .info-list .item:nth-child(6) .card-icon {
    background-color: rgba(241, 196, 15, 0.08);
    color: #F1C40F;
}

.about-area.about-2 .info-list .item:nth-child(7) .card-icon {
    background-color: rgba(230, 126, 34, 0.08);
    color: #E67E22;
}

.about-area.about-2 .info-list .item:nth-child(8) .card-icon {
    background-color: rgba(231, 76, 60, 0.08);
    color: #E74C3C;
}

.about-area.about-2 .info-list .item:nth-child(9) .card-icon {
    background-color: rgba(255, 170, 133, 0.08);
    color: #FFAA85;
}

.about-area.about-2 .info-list .item:nth-child(10) .card-icon {
    background-color: rgba(60, 140, 231, 0.08);
    color: #3C8CE7;
}

.about-area.about-4 .info-list .card {
    align-items: start;
    max-width: 100%;
}

.about-area.about-4 .info-list .card .card-icon {
    --size: 70px;
    position: relative;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 32px;
}

.about-area.about-4 .info-list .card .card-icon::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/circle-shape-2.svg) no-repeat center/contain;
    -webkit-mask: url(../images/circle-shape-2.svg) no-repeat center/contain;
    background-color: rgba(var(--color-primary-rgb), 0.2);
}

.about-area.about-4 .info-list .item:nth-child(1) .card-icon::after {
    background-color: rgba(33, 196, 223, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(2) .card-icon::after {
    background-color: rgba(255, 81, 149, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(3) .card-icon::after {
    background-color: rgba(255, 178, 40, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(4) .card-icon::after {
    background-color: rgba(14, 226, 84, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(5) .card-icon::after {
    background-color: rgba(107, 118, 255, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(6) .card-icon::after {
    background-color: rgba(245, 152, 114, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(7) .card-icon::after {
    background-color: rgba(231, 76, 60, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(8) .card-icon::after {
    background-color: rgba(60, 140, 231, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(9) .card-icon::after {
    background-color: rgba(255, 170, 133, 0.2);
}

.about-area.about-4 .info-list .item:nth-child(10) .card-icon::after {
    background-color: rgba(60, 140, 231, 0.2);
}


/* -----------------------------------------
    Category CSS
----------------------------------------- */

.category-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-area .card {
    /* z-index: 1; */
    transition: all 0.4s ease-out;
}

.category-area .card-image {
    position: relative;
}

.category-area .card-icon i {
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition-duration: 0.5s;
}

.category-area .card:hover-icon i {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.category-area .card:hover-title {
    color: #FAF9F6;
}

.category-area.category-1 {
    background-size: cover;
    background-position: center top;
}

.category-area.category-1 .card {
    width: 286px;
    height: 286px;
    margin-inline: auto;
}

@media (max-width: 767.98px) {
    .category-area.category-1 .card {
        width: 216px;
        height: 216px;
    }
}

.category-area.category-1 .card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    outline: 2px dashed #FAF9F6;
    outline-offset: -2px;
    transition: all 0.3s;
    animation: rotate 40s infinite linear;
    opacity: 0;
    z-index: -1;
}

.category-area.category-1 .card-image {
    max-width: 80%;
}

.category-area.category-1 .card:hover {
    transform: none;
}

.category-area.category-1 .card:hover::before {
    opacity: 1;
}

.category-area.category-2 .card-image {
    padding: 20px;
}

.category-area.category-2 .card-image img {
    transition: transform 0.3s;
}

.category-area.category-2 .card-image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/circle-shape.svg) no-repeat center/contain;
    -webkit-mask: url(../images/circle-shape.svg) no-repeat center/contain;
    background-color: #FAF9F6;
    transition: transform 0.4s;
}

.category-area.category-2 .card:hover .card-image img {
    transform: scale3d(1.1, 1.1, 1.1);
}

.category-area.category-2 .card:hover .card-image::after {
    transform: rotateZ(40deg);
}

.category-area.category-2 .swiper-slide:nth-child(1) .card-image::after {
    background-color: #21C4DF;
}

.category-area.category-2 .swiper-slide:nth-child(2) .card-image::after {
    background-color: #FFB228;
}

.category-area.category-2 .swiper-slide:nth-child(3) .card-image::after {
    background-color: #00D5AE;
}

.category-area.category-2 .swiper-slide:nth-child(4) .card-image::after {
    background-color: #FF5195;
}

.category-area.category-2 .swiper-slide:nth-child(5) .card-image::after {
    background-color: #6B76FF;
}

.category-area.category-2 .swiper-slide:nth-child(6) .card-image::after {
    background-color: #F59872;
}

.category-area.category-2 .swiper-slide:nth-child(7) .card-image::after {
    background-color: #E74C3C;
}

.category-area.category-2 .swiper-slide:nth-child(8) .card-image::after {
    background-color: #3C8CE7;
}

.category-area.category-2 .swiper-slide:nth-child(9) .card-image::after {
    background-color: #FFAA85;
}

.category-area.category-2 .swiper-slide:nth-child(10) .card-image::after {
    background-color: #3C8CE7;
}

.category-area.category-3 .card {
    border: 1px solid transparent;
}

.category-area.category-3 .card-icon {
    font-size: 72px;
}

.category-area.category-3 .card-icon i {
    color: var(--text-white);
}

.category-area.category-3 .card:hover {
    border-color: var(--color-white);
}

.category-area.category-4 .card-image {
    padding: 20px;
}

.category-area.category-4 .card-image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/rectangle-shape.svg) no-repeat center/contain;
    -webkit-mask: url(../images/rectangle-shape.svg) no-repeat center/contain;
    background-color: rgba(var(--color-primary-rgb), 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(1) .card-image::after {
    background-color: rgba(33, 196, 223, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(2) .card-image::after {
    background-color: rgba(255, 178, 40, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(3) .card-image::after {
    background-color: rgba(0, 213, 174, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(4) .card-image::after {
    background-color: rgba(255, 81, 149, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(5) .card-image::after {
    background-color: rgba(107, 118, 255, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(6) .card-image::after {
    background-color: rgba(245, 152, 114, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(7) .card-image::after {
    background-color: rgba(231, 76, 60, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(8) .card-image::after {
    background-color: rgba(60, 140, 231, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(9) .card-image::after {
    background-color: rgba(255, 170, 133, 0.2);
}

.category-area.category-4 .swiper-slide:nth-child(10) .card-image::after {
    background-color: rgba(60, 140, 231, 0.2);
}


/* -----------------------------------------
    Product CSS
----------------------------------------- */

.product-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-area .product {
    position: relative;
    overflow: hidden;
    height: 380px;
    border: 1px solid;
    background: #FAF9F6;
    transition: all 0.3s;
    /* z-index: 1; */
}

@media (max-width: 768px) {
.product-area .product {
    position: relative;
    overflow: hidden;
    height: 455px;
    border: 1px solid;
    background: #FAF9F6;
    transition: all 0.3s;
}
}

.product-area .product-img {
    position: relative;
    overflow: hidden;
}

.product-area .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-area .product-price * {
    margin: 0;
}

.product-area .product-price .new-price {
    margin-bottom: 0;
    color: #FAF9F6;
}

.product-area .product-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
    font-family: var(--font-heading);
}

.product-area .product .btn-outline {
    background-color: var(--bg-white);
}

.product-area .product .hover-show {
    position: absolute;
    display: table;
    margin-inline: auto;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 4;
}

.product-area .product .hover-show .btn-icon {
    color: var(--btn-color);
    background-color: #FAF9F6;
    border: 1px solid transparent;
}

.product-area .product .hover-show .btn-icon:hover {
    border-color: #FAF9F6;
    color: #FAF9F6;
    background-color: transparent;
}

.product-area .product:hover .hover-show {
    opacity: 1;
    transform: none;
}

.product-area.product-1 {
    background-size: cover;
    background-position: center top;
}

.product-area.product-1 .product {
    align-items: center;
    justify-content: center;
    /* -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%); */
    margin-inline: auto;
}

.product-area.product-1 .product::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    /* outline: 2px dashed #FAF9F6;
    outline-offset: -10px;
    transition: all 0.3s;
    animation: rotate 40s infinite linear;
    opacity: 0;
    z-index: -1; */
}

.product-area.product-1 .product-img {
    /* max-width: 74.0740740741%; */
}

.product-area.product-1 .product:hover {
    transform: none;
}

.product-area.product-1 .product:hover::before {
    opacity: 1;
}

.product-area.product-2 {
    background-size: cover;
    background-position: center top;
}

.product-area.product-2 .product {
    border: 1px solid var(--border-color);
}

.product-area.product-2 .product-img {
    max-width: 86.9565217391%;
}

.product-area.product-2 .product::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    height: 40%;
    background-color: rgba(var(--color-primary-rgb), 0.2);
}

.product-area.product-2 .product .hover-show {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.4s;
    z-index: 5;
}

.product-area.product-2 .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.product-area.product-2 .product:hover .hover-show {
    opacity: 1;
    transform: none;
}

.product-area.product-2 .item:nth-child(1) .product::before {
    background-color: rgba(118, 129, 248, 0.1);
}

.product-area.product-2 .item:nth-child(2) .product::before {
    background-color: rgba(255, 97, 199, 0.1);
}

.product-area.product-2 .item:nth-child(3) .product::before {
    background-color: rgba(255, 124, 65, 0.1);
}

.product-area.product-2 .item:nth-child(4) .product::before {
    background-color: rgba(0, 221, 193, 0.1);
}

.product-area.product-2 .item:nth-child(5) .product::before {
    background-color: rgba(73, 156, 33, 0.1);
}

.product-area.product-2 .item:nth-child(6) .product::before {
    background-color: rgba(241, 196, 15, 0.1);
}

.product-area.product-2 .item:nth-child(7) .product::before {
    background-color: rgba(230, 126, 34, 0.1);
}

.product-area.product-2 .item:nth-child(8) .product::before {
    background-color: rgba(231, 76, 60, 0.1);
}

.product-area.product-2 .item:nth-child(9) .product::before {
    background-color: rgba(255, 170, 133, 0.1);
}

.product-area.product-2 .item:nth-child(10) .product::before {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-4 .product-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/circle-shape-2.svg) no-repeat center/contain;
    -webkit-mask: url(../images/circle-shape-2.svg) no-repeat center/contain;
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.product-area.product-4 .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.product-area.product-4 .item:nth-child(1) .product-img::after {
    background-color: rgba(33, 196, 223, 0.1);
}

.product-area.product-4 .item:nth-child(2) .product-img::after {
    background-color: rgba(255, 178, 40, 0.1);
}

.product-area.product-4 .item:nth-child(3) .product-img::after {
    background-color: rgba(0, 213, 174, 0.1);
}

.product-area.product-4 .item:nth-child(4) .product-img::after {
    background-color: rgba(255, 81, 149, 0.1);
}

.product-area.product-4 .item:nth-child(5) .product-img::after {
    background-color: rgba(107, 118, 255, 0.1);
}

.product-area.product-4 .item:nth-child(6) .product-img::after {
    background-color: rgba(245, 152, 114, 0.1);
}

.product-area.product-4 .item:nth-child(7) .product-img::after {
    background-color: rgba(231, 76, 60, 0.1);
}

.product-area.product-4 .item:nth-child(8) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-4 .item:nth-child(9) .product-img::after {
    background-color: rgba(255, 170, 133, 0.1);
}

.product-area.product-4 .item:nth-child(10) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-5 .product {
    border: 1px solid var(--border-color);
}

.product-area.product-5 .product-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/brush.svg) no-repeat center/contain;
    -webkit-mask: url(../images/brush.svg) no-repeat center/contain;
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.product-area.product-5 .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.product-area.product-5 .item:nth-child(1) .product-img::after {
    background-color: rgba(33, 196, 223, 0.1);
}

.product-area.product-5 .item:nth-child(2) .product-img::after {
    background-color: rgba(255, 178, 40, 0.1);
}

.product-area.product-5 .item:nth-child(3) .product-img::after {
    background-color: rgba(0, 213, 174, 0.1);
}

.product-area.product-5 .item:nth-child(4) .product-img::after {
    background-color: rgba(255, 81, 149, 0.1);
}

.product-area.product-5 .item:nth-child(5) .product-img::after {
    background-color: rgba(107, 118, 255, 0.1);
}

.product-area.product-5 .item:nth-child(6) .product-img::after {
    background-color: rgba(245, 152, 114, 0.1);
}

.product-area.product-5 .item:nth-child(7) .product-img::after {
    background-color: rgba(231, 76, 60, 0.1);
}

.product-area.product-5 .item:nth-child(8) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-5 .item:nth-child(9) .product-img::after {
    background-color: rgba(255, 170, 133, 0.1);
}

.product-area.product-5 .item:nth-child(10) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-lg-1 {
    background-size: cover;
    background-position: center top;
}

.product-area.product-lg-1 .product {
    border: 2px dashed transparent;
}

.product-area.product-lg-1 .product-img {
    max-width: 74.0740740741%;
}

.product-area.product-lg-1 .product:hover {
    border-color: #FAF9F6;
}

.product-area.product-lg-1 .product:hover .btn-outline {
    background-color: #FAF9F6;
    color: var(--btn-color);
}

.product-area.product-lg-2 .overlay {
    height: 40%;
}

.product-area.product-lg-2 .product {
    border: 1px solid var(--border-color);
}

.product-area.product-lg-2 .product-img {
    max-width: 74.0740740741%;
}

.product-area.product-lg-2 .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.product-area.product-lg-3 .product {
    overflow: visible;
    border: 1px solid #FAF9F6;
}

.product-area.product-lg-3 .product .btn {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin-inline: auto;
    display: inline-table;
}

.product-area.product-lg-3 .product:hover {
    background-color: #FAF9F6;
}

.product-area.product-lg-3 .product:hover * {
    color: var(--text-white) !important;
}

.product-area.product-lg-3 .product:hover .btn {
    background-color: var(--bg-dark);
}

.product-area.product-lg-4 .product {
    border: 1px solid var(--border-color);
}

.product-area.product-lg-4 .product-img {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    padding-inline: 30px;
}

.product-area.product-lg-4 .product-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 74.0740740741%;
    background-color: rgba(var(--color-primary-rgb), 0.2);
}

.product-area.product-lg-4 .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.product-area.product-lg-4 .item:nth-child(1) .product-img::before {
    background-color: rgba(63, 197, 255, 0.1);
}

.product-area.product-lg-4 .item:nth-child(2) .product-img::before {
    background-color: rgba(255, 74, 68, 0.1);
}

.product-area.product-lg-4 .item:nth-child(3) .product-img::before {
    background-color: rgba(255, 174, 68, 0.1);
}

.product-area.product-lg-4 .item:nth-child(4) .product-img::before {
    background-color: rgba(255, 81, 149, 0.1);
}

.product-area.product-lg-4 .item:nth-child(5) .product-img::before {
    background-color: rgba(107, 118, 255, 0.1);
}

.product-area.product-lg-4 .item:nth-child(6) .product-img::before {
    background-color: rgba(245, 152, 114, 0.1);
}

.product-area.product-lg-4 .item:nth-child(7) .product-img::before {
    background-color: rgba(231, 76, 60, 0.1);
}

.product-area.product-lg-4 .item:nth-child(8) .product-img::before {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-lg-4 .item:nth-child(9) .product-img::before {
    background-color: rgba(255, 170, 133, 0.1);
}

.product-area.product-lg-4 .item:nth-child(10) .product-img::before {
    background-color: rgba(60, 140, 231, 0.1);
}

.product-area.product-lg-5 .product {
    overflow: visible;
    border: 1px solid var(--border-color);
}

.product-area.product-lg-5 .product .btn {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin-inline: auto;
    display: inline-table;
}

.product-area.product-lg-5 .product:hover {
    background-color: #FAF9F6;
}

.product-area.product-lg-5 .product:hover * {
    color: var(--text-white) !important;
}

.product-area.product-lg-5 .product:hover .btn {
    background-color: var(--bg-dark);
}

.product-sort-area .sort-item {
    display: flex;
    align-items: center;
}

.product-sort-area .nice-select {
    border: 0;
    padding: 0;
    line-height: 1;
    height: auto;
    padding-inline-end: 10px;
}

.product-sort-area .nice-select::after {
    right: 0;
}

.product-sort-area .nice-select .list {
    min-width: 150px;
}

.shop-area .product {
    position: relative;
    overflow: hidden;
    height: 375px;
    background: #faf9f6;
    transition: all 0.3s;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.shop-area .product-img {
    position: relative;
    overflow: hidden;
}

.shop-area .product-img::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask: url(../images/brush.svg) no-repeat center/contain;
    -webkit-mask: url(../images/brush.svg) no-repeat center/contain;
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.shop-area .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shop-area .product-price * {
    margin: 0;
}

.shop-area .product-price .new-price {
    margin-bottom: 0;
    color: #FAF9F6;
}

.shop-area .product-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
    font-family: var(--font-heading);
}

.shop-area .product .hover-show {
    position: absolute;
    display: table;
    margin-inline: auto;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 4;
}

.shop-area .product .hover-show .btn-icon {
    color: var(--btn-color);
    background-color: #FAF9F6;
    border: 1px solid transparent;
}

.shop-area .product .hover-show .btn-icon:hover {
    border-color: #FAF9F6;
    color: #FAF9F6;
    background-color: transparent;
}

.shop-area .product:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.shop-area .product:hover .hover-show {
    opacity: 1;
    transform: none;
}

.shop-area .item:nth-child(1) .product-img::after {
    background-color: rgba(33, 196, 223, 0.1);
}

.shop-area .item:nth-child(2) .product-img::after {
    background-color: rgba(255, 178, 40, 0.1);
}

.shop-area .item:nth-child(3) .product-img::after {
    background-color: rgba(0, 213, 174, 0.1);
}

.shop-area .item:nth-child(4) .product-img::after {
    background-color: rgba(255, 81, 149, 0.1);
}

.shop-area .item:nth-child(5) .product-img::after {
    background-color: rgba(107, 118, 255, 0.1);
}

.shop-area .item:nth-child(6) .product-img::after {
    background-color: rgba(245, 152, 114, 0.1);
}

.shop-area .item:nth-child(7) .product-img::after {
    background-color: rgba(231, 76, 60, 0.1);
}

.shop-area .item:nth-child(8) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}

.shop-area .item:nth-child(9) .product-img::after {
    background-color: rgba(255, 170, 133, 0.1);
}

.shop-area .item:nth-child(10) .product-img::after {
    background-color: rgba(60, 140, 231, 0.1);
}


/* -----------------------------------------
    Menu CSS
----------------------------------------- */

.menu-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-area .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px dashed var(--border-color);
    transition: all 0.3s;
    z-index: 1;
}

.menu-area .menu-img {
    flex: 0 0 auto;
    width: 140px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-1);
}

.menu-area .menu .menu-title-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.menu-area .menu .menu-title-price * {
    flex: 0 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
}

.menu-area .menu .menu-title-price .hr {
    width: 100px;
    border-bottom: 2px dashed #FAF9F6;
}

.menu-area .menu .menu-title-price .menu-price {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-inline-start: 110px;
}

.menu-area .menu .menu-title-price .menu-price::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    margin-inline-start: 0;
    margin-inline-end: auto;
    width: 90px;
    height: 2px;
    border-top: 2px dashed #FAF9F6;
}

.menu-area .menu .menu-title-price .menu-price * {
    margin-bottom: 0;
}

.menu-area .menu .menu-title-price .menu-price .new-price {
    margin-bottom: 0;
    color: #FAF9F6;
}

.menu-area .menu .menu-title-price .menu-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
    font-family: var(--font-heading);
}

.menu-area .menu .btn-icon {
    background-color: #FAF9F6;
    color: var(--text-white);
}

.menu-area .menu .hover-show {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s;
    z-index: 4;
}

.menu-area .menu:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.menu-area .menu:hover .hover-show {
    opacity: 1;
    transform: none;
}


/* -----------------------------------------
    Testimonial CSS
----------------------------------------- */

.testimonial-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-area .slider-item {
    background: var(--bg-white);
}

.testimonial-area .slider-item p {
    margin-bottom: 0;
}

.testimonial-area .slider-item .client-info h6 {
    margin-bottom: 2px;
}

.testimonial-area .quote-icon {
    font-size: 16px;
    color: #FAF9F6;
}

.testimonial-area.testimonial-1 .swiper {
    overflow: unset;
}

@media (max-width: 991.98px) {
    .testimonial-area.testimonial-1 .swiper {
        overflow: hidden;
    }

    .testimonial-area.testimonial-1 .swiper .swiper-slide {
        padding-inline: 0;
    }
}

.testimonial-area.testimonial-1 .swiper-slide {
    padding-inline: 12px;
}

.testimonial-area.testimonial-1 .slider-item .client {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px dashed rgba(var(--color-white-rgb), 0.2);
}

.testimonial-area.testimonial-1 .slider-item .quote {
    position: relative;
    padding: 25px 30px;
}

.testimonial-area.testimonial-1 .slider-item .text {
    padding: 20px 0 20px;
    padding-inline-start: 30px;
    border-inline-start: 5px solid #FAF9F6;
}

@media (max-width: 767.98px) {
    .testimonial-area.testimonial-1 .slider-item .text {
        padding-inline-start: 15px;
    }
}

.testimonial-area.testimonial-1 .slider-item .icon {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin-inline-start: 60px;
    font-size: 62px;
    line-height: 1;
    color: rgba(var(--color-primary-rgb), 0.1);
}

.testimonial-area.testimonial-1 .slider-item p {
    margin-bottom: 0;
}

.testimonial-area.testimonial-1 .slider-item .client-img {
    flex: 0 0 auto;
    width: 60px;
    margin-inline-end: 16px;
}

.testimonial-area.testimonial-1 .swiper-slide:hover .slider-item,
.testimonial-area.testimonial-1 .swiper-slide-active .slider-item {
    border-color: rgba(76, 87, 125, 0.05);
}

.testimonial-area.testimonial-2 .slider-item {
    background-color: transparent;
}

.testimonial-area.testimonial-2 .testimonial-thumb {
    overflow: visible;
    padding-inline: 60px;
}

.testimonial-area.testimonial-2 .testimonial-thumb .slider-item {
    width: 100px;
    margin-inline: auto;
}

@media (max-width: 1199.98px) {
    .testimonial-area.testimonial-2 .testimonial-thumb {
        overflow: hidden;
    }

    .testimonial-area.testimonial-2 .testimonial-thumb .slider-item {
        width: auto;
    }
}

.testimonial-blog-area {
    background-size: auto;
    background-position: left -50%;
}

@media (max-width: 1199.98px) {
    .testimonial-blog-area {
        background-position: left -20%;
    }
}

@media (max-width: 767.98px) {
    .testimonial-blog-area {
        background-size: cover;
        background-position: left -200px;
    }
}


/* -----------------------------------------
    Blog CSS
----------------------------------------- */

.blog-area {
    position: relative;
    overflow: hidden;
}

.blog-area .card {
    overflow: hidden;
    transition: all 0.3s;
}

.blog-area .card .card-img {
    overflow: hidden;
}

.blog-area .card img {
    transition: transform 0.3s ease-out;
}

.blog-area .card p {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-area .card .card-btn {
    line-height: 1;
    font-weight: var(--font-bold);
    text-decoration: underline;
    color: #FAF9F6;
}

.blog-area .card .card-list {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.blog-area .card .card-list a {
    color: var(--text-medium);
}

.blog-area .card .card-list i {
    margin-inline-end: 7px;
    color: #FAF9F6;
}

.blog-area .card:hover img {
    transform: scale3d(1.05, 1.05, 1.05);
}

.blog-area .card:hover .btn-text {
    letter-spacing: 0.1em;
}

.blog-area.blog-1 .card-content {
    position: relative;
    z-index: 2;
    margin-top: -20px;
    margin-inline: auto;
    width: calc(100% - 20px);
    background-color: var(--bg-white);
}

.blog-area.blog-2 .card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.blog-area.blog-2 .card .card-content * {
    backface-visibility: hidden;
}

.blog-area.blog-2 .card .card-content .card-list {
    background-color: var(--bg-dark);
}

@media (max-width: 1199.98px) {
    .blog-area.blog-2 .card .card-content .card-list {
        gap: 15px;
    }
}

.blog-area.blog-2 .card .card-content .card-list li a:not(i) {
    color: var(--text-light);
    font-size: var(--font-sm);
}

@media (max-width: 575.98px) {
    .blog-area.blog-2 .card .card-content .card-list li a:not(i) {
        font-size: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .blog-area.blog-2 .card .card-content .card-list li a:not(i) {
        font-size: 10px;
    }
}

.blog-area.blog-2 .card .card-content .hover-show {
    height: 0;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s;
}

.blog-area.blog-2 .card:hover .hover-show {
    height: auto;
    opacity: 1;
    transform: scaleY(1);
    margin-bottom: 20px;
}

.blog-area.blog-3 .card {
    border: 1px solid var(--border-color);
}

.blog-area.blog-3 .card .card-content {
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.blog-area.blog-3 .card .card-content .card-list {
    width: 100%;
    background-color: var(--bg-white);
}

@media (max-width: 1199.98px) {
    .blog-area.blog-3 .card .card-content .card-list {
        gap: 15px;
    }
}

@media (max-width: 575.98px) {
    .blog-area.blog-3 .card .card-content .card-list li a:not(i) {
        font-size: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .blog-area.blog-3 .card .card-content .card-list li a:not(i) {
        font-size: 10px;
    }
}

.blog-area.blog-3 .card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.blog-area.blog-3 .overlay {
    height: 40%;
    background-size: cover;
}


/* -----------------------------------------
    Gallery CSS
----------------------------------------- */

.gallery-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-area .swiper {
    overflow: visible;
}

.gallery-area .slider-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-area .slider-item .icon {
    --size: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s;
    transform: scale3d(0.8, 0.8, 0.8);
}

.gallery-area .slider-item .icon img {
    max-width: 26px;
}

.gallery-area .slider-item::before,
.gallery-area .slider-item:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    background-color: #FAF9F6;
    opacity: 0.5;
    z-index: 2;
    transition: all 0.3s;
}

.gallery-area .slider-item::before {
    top: 0;
    height: 50%;
    transform: translateY(-100%);
}

.gallery-area .slider-item::after {
    bottom: 0;
    height: 50%;
    transform: translateY(100%);
}

.gallery-area .slider-item:hover .icon {
    opacity: 1;
    transform: none;
}

.gallery-area .slider-item:hover::before,
.gallery-area .slider-item:hover:after {
    transform: none;
}


/* -----------------------------------------
    Footer CSS
----------------------------------------- */

.footer-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-area :is(p, a) {
    color: #111111;
}

.footer-area :is(h4) {
    color: #111111;
}

.footer-area .footer-widget {
    margin-bottom: 30px;
}

.footer-area .footer-widget span {
    color: var(--text-light);
}

.footer-area .footer-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-area .footer-widget .navbar-brand {
    margin: 0;
    margin-bottom: 28px;
    padding: 0;
}

.footer-area .footer-widget h4 {
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-area .footer-widget p {
    margin-bottom: 20px;
}

.footer-area .info-list li {
    display: flex;
    gap: 14px;
}

.footer-area .info-list li:not(:last-child) {
    margin-bottom: 18px;
}

.footer-area .info-list i {
    flex: 0 0 auto;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 5px;
    background-color: #FAF9F6;
    color: var(--btn-color);
    font-size: 20px;
}

.footer-area .info-list a {
    display: block;
}

.footer-area .info-list li,
.footer-area .footer-links li {
    position: relative;
    overflow: hidden;
}

.footer-area .info-list li:not(:last-child),
.footer-area .footer-links li:not(:last-child) {
    margin-bottom: 14px;
}

.footer-area .info-list li span,
.footer-area .footer-links li span {
    color: #111111;
}

.footer-area .info-list li a,
.footer-area .footer-links li a {
    color: #111111;
    display: block;
}

.footer-area .info-list li a:hover,
.footer-area .footer-links li a:hover {
    color: #FAF9F6;
}

.footer-area .footer-links a {
    position: relative;
    overflow: hidden;
    display: block;
    padding-inline-start: 14px;
    transition: all 0.3s linear;
}

.footer-area .footer-links a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    right: 0;
    margin-inline-start: 0;
    margin-inline-end: auto;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    background-color: #FAF9F6;
}

.footer-area .copy-right-area {
    text-align: center;
}

.footer-area .copy-right-area span {
    color: var(--text-light);
}

.footer-area .border-top {
    --border-color: rgba($color: var(--color-white-rgb), $alpha: .2);
    border-top-style: dashed !important;
}

.footer-area .social-link {
    --size: 35px;
    gap: 15px;
}

.footer-area .social-link a {
    color: #111111;
    background-color: #FAF9F6;
    border-radius: 50%;
}

.footer-area .social-link a:hover {
    background-color: #111111;
    color: var(--text-white);
}

.footer-area .newsletter {
    padding: 20px 20px 5px;
    background-color: var(--bg-3);
}

.footer-area .newsletter-form input {
    background: transparent;
    height: 55px;
    color: var(--text-light);
    border-color: rgba(var(--color-white-rgb), 0.2);
}

.footer-area .newsletter-form .btn {
    top: 5px;
    right: 0;
    left: 0;
    margin-inline-start: auto;
    margin-inline-end: 5px;
    width: -moz-fit-content;
    width: fit-content;
    height: calc(100% - 10px);
    line-height: calc(100% - 10px);
    position: absolute;
}

.footer-area .article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-area .article-item:not(:last-child) {
    margin-bottom: 15px;
}

.footer-area .article-item .image {
    flex: 0 0 auto;
    max-width: 80px;
}

.footer-area .article-item h6 {
    font-size: 16px;
}

.footer-area .article-item .blog-list {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.footer-area .article-item .blog-list i {
    font-size: 13px;
    color: #FAF9F6;
}

.footer-2 :is(p, a, span) {
    color: var(--text-medium);
}

.footer-2 :is(h5) {
    color: var(--text-dark);
}

.footer-2 .newsletter-form input {
    color: var(--text-dark);
}


/* -----------------------------------------
    Sidebar Widget CSS
----------------------------------------- */

.widget-area {
    width: 100%;
}

.widget-area ::-webkit-scrollbar {
    width: 5px;
}

.widget-area .accordion-button {
    font: inherit !important;
    color: var(--text-dark);
    padding: 0;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.widget-area .accordion-button::after {
    color: var(--text-dark);
    background: none;
    font-size: var(--font-sm);
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f107";
    transform: none;
    text-align: right;
}

.widget-area .accordion-button:not(.collapsed) {
    color: var(--text-dark);
}

.widget-area .accordion-button:not(.collapsed)::after {
    color: var(--text-dark);
    content: "\f106";
}

.widget-area .accordion-body.scroll-y {
    max-height: 360px;
    overflow-x: hidden;
    overflow-y: auto;
}

.widget-area .nice-select::after {
    border-color: #FAF9F6;
}

.widget-area .widget .title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: -2px;
}

.widget-area .widget label {
    display: block;
    font-size: var(--font-sm);
    color: var(--text-medium);
}

.widget-area .widget-newsletter .input-inline,
.widget-area .widget-search .input-inline {
    align-items: center;
    padding: 5px;
}

.widget-area .widget-newsletter .btn-icon,
.widget-area .widget-search .btn-icon {
    flex: 0 0 auto;
    background-color: #FAF9F6;
    color: var(--btn-color);
    width: 50px;
    height: 50px;
}

.widget-area .widget-categories ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.widget-area .widget-categories ul li a:hover {
    --border-color: #FAF9F6 color: #FAF9F6;
}

.widget-area .widget-categories ul li:not(:last-child) {
    margin-bottom: 15px;
}

.widget-area .widget-posts .blog-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.widget-area .widget-posts .blog-inline:not(:last-child) {
    margin-bottom: 20px;
}

.widget-area .widget-posts .blog-inline .blog-tag {
    padding: 0;
    background-color: transparent;
}

.widget-area .widget-posts .blog-inline .blog-img {
    flex: 0 0 auto;
    width: 100px;
}

.widget-area .widget-posts .blog-inline .blog-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.widget-area .widget-posts .blog-inline .blog-list i {
    color: #FAF9F6;
}

.widget-area .widget-newsletter p,
.widget-area .widget-newsletter .text {
    margin-bottom: 0;
}

.widget-area .widget-tags .tags-group a:hover {
    background-color: #FAF9F6;
    color: var(--text-white);
}


/* -----------------------------------------
    Breadcrumb CSS
----------------------------------------- */

.breadcrumb-area {
    border-bottom: 1px solid #111111;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 100px;
    z-index: 1;
}

.breadcrumb-area .active {
    color: #111111;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-medium);
}

.breadcrumb {
    margin-bottom: 0;
    justify-content: center;
    --bs-breadcrumb-item-active-color: #FAF9F6;
}

.breadcrumb a {
    color: #111111;
}

.breadcrumb a:hover {
    color: #FAF9F6;
}


/* -----------------------------------------
    Pagination CSS
----------------------------------------- */

.pagination-nav .pagination {
    --bs-pagination-border-radius: 0;
}

.pagination-nav .page-link {
    color: #111111;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    padding: 0;
    font-size: var(--font-base);
    border: none;
    background-color: transparent;
}

.pagination-nav .page-item.active .page-link,
.pagination-nav .page-item:hover .page-link {
    color: var(--btn-color);
    background-color: #FAF9F6;
    border-color: var(--border-color);
}

.pagination-nav .page-item.next,
.pagination-nav .page-item.prev {
    border: none;
}

.pagination-nav .page-item.next:hover,
.pagination-nav .page-item.prev:hover {
    color: #FAF9F6;
    background: transparent;
}


/* -----------------------------------------
    Shop Single CSS
----------------------------------------- */

.shop-details-area .btn-groups {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.shop-details-area .shop-details-gallery {
    position: relative;
}

.shop-details-area .shop-details-gallery .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #FAF9F6;
    background: var(--color-white);
}

.shop-details-area .shop-details-gallery .slider-btn.slider-btn-prev {
    left: 0;
}

.shop-details-area .shop-details-gallery .slider-btn.slider-btn-next {
    right: 0;
}

.shop-details-area .shop-thumb {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    z-index: 5;
}

.shop-details-area .shop-thumbnails .thumbnail-img {
    cursor: pointer;
    border: 1px solid #FAF9F6;
}

.shop-details-area .shop-thumbnails .thumbnail-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.shop-details-area .product-single-details .product-desc p:last-child {
    margin-bottom: 0;
}

.shop-details-area .product-single-details .info-list li:not(:last-child) {
    margin-bottom: 5px;
}

.shop-details-area .product-single-details .info-list a {
    font-size: var(--font-sm);
    color: var(--text-medium);
}

.shop-details-area .product-single-details .info-list a:hover {
    color: #FAF9F6;
}

.shop-details-area .product-price {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.shop-details-area .product-price * {
    margin-bottom: 0;
}

.shop-details-area .product-price .new-price {
    color: #FAF9F6;
}

.shop-details-area .product-price .prev-price {
    text-decoration: line-through;
    font-weight: var(--font-semi-bold);
    font-family: var(--font-heading);
}

.shop-details-area .author {
    display: flex;
    align-items: self-start;
}

.shop-details-area .author .image {
    flex: 0 0 auto;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-end: 15px;
}

.shop-details-area .shop-review-form .form-group ul.rating li {
    margin-bottom: 10px;
    display: inline-block;
}

.shop-details-area .shop-review-form .form-group ul.rating li:after {
    display: inline-block;
    content: "|";
    margin-left: 10px;
    margin-right: 7px;
}

.shop-details-area .shop-review-form .form-group ul.rating li:last-child:after {
    display: none;
}

.shop-details-area .shop-review-form .form-group ul.rating li:hover span {
    color: #FAF9F6;
}

.shop-details-area .quantity-input input {
    width: 40px;
    height: 44px;
}

.shop-details-area .quantity-input .qty-btn {
    width: 40px;
    height: 44px;
    padding: 0 10px;
}


/* -----------------------------------------
    Shopping CSS
----------------------------------------- */

.shopping-area .shopping-table {
    width: 100%;
    border-collapse: collapse;
    vertical-align: middle;
}

.shopping-area .item-list {
    box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.1);
}

.shopping-area .table-heading {
    background-color: var(--bg-1);
}

.shopping-area .table-heading th {
    color: var(--text-dark);
    padding: 20px;
}

.shopping-area .table-heading .first {
    border-radius: 10px 0 0 10px;
}

.shopping-area .table-heading .last {
    border-radius: 0 10px 10px 0;
    text-align: end;
}

.shopping-area tbody {
    border: none !important;
}

.shopping-area tbody tr:not(:first-child) {
    border-top: 1px solid var(--border-color) !important;
}

.shopping-area tbody td {
    padding: 20px;
}

.shopping-area tbody .cart-item {
    box-shadow: 0px 15px 120px rgba(49, 49, 49, 0.1);
}

.shopping-area tbody .product-img {
    padding-inline-start: 20px;
}

.shopping-area .btn-groups {
    width: 100%;
    justify-content: end;
}

.shopping-area label {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.shopping-area .image {
    max-width: 100px;
}

.shopping-area .product-price {
    display: table-cell;
}

.shopping-area .form-block {
    padding: 20px;
}

.shopping-area .order-summery .item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shopping-area .order-summery .item:not(:last-child) {
    margin-bottom: 15px;
}

.shopping-area .order-summery .product-img {
    flex: 0 0 auto;
    max-width: 80px;
}

.shopping-area .order-summery .product-desc {
    left: 0;
}

.shopping-area .nice-select {
    width: 100%;
    border-color: var(--border-color);
}

.shopping-area .nice-select .list {
    width: 100%;
    height: 400px;
    overflow-y: scroll;
}

.shopping-area .product-desc {
    position: relative;
    left: -16px;
}

.shopping-area .product-desc h6 {
    font-weight: var(--font-semi-bold);
    margin-inline-start: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* -----------------------------------------
    Authentication CSS
----------------------------------------- */

.authentication-area .main-form {
    max-width: 600px;
    margin-inline: auto;
}

.authentication-area .link a {
    display: inline-block;
    color: #111111;
}

.authentication-area .link a:hover {
    color: #454440;
}


/* -----------------------------------------
    Blog Single CSS
----------------------------------------- */

.blog-details-area .blog .blog-list {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.blog-details-area .blog .blog-list i {
    color: #FAF9F6;
}

.blog-details-area .blog-description .content .title {
    margin-bottom: 15px;
}

.blog-details-area .blog-description .content .title a:hover {
    color: #FAF9F6;
}

.blog-details-area .blog-description .content p {
    margin-bottom: 30px;
}

.blog-details-area .blog-description .content .blockquote i {
    color: #FAF9F6;
    font-size: 24px;
}

.blog-details-area .blog-description .content .blockquote p {
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 0;
    font-style: italic;
}

.blog-details-area .info-list {
    padding: 0;
    margin: 0;
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 1;
}

.blog-details-area .info-list li {
    display: inline-block;
    margin-inline-end: 14px;
    padding-inline-end: 14px;
    color: var(--text-medium);
    border-inline-end: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.blog-details-area .info-list li:last-child {
    margin-inline-end: 0;
    border: 0;
}

.blog-details-area .info-list li i {
    font-size: 16px;
    margin-inline-end: 8px;
    color: #FAF9F6;
}

.blog-details-area .comments .comment-box {
    overflow: hidden;
    padding: 30px 30px 0;
    border: 1px solid var(--border-color) !important;
}

.blog-details-area .comments .name {
    margin-top: -3px;
    margin-bottom: 2px;
}

.blog-details-area .comments p {
    margin-bottom: 0;
}

.blog-details-area .comments .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-area .comments .comment-list .comment .comment-body {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 575.98px) {
    .blog-details-area .comments .comment-list .comment .comment-body {
        flex-wrap: wrap;
    }
}

.blog-details-area .comments .comment-list .comment .comment-body .comment-author {
    max-width: 80px;
}

.blog-details-area .comments .comment-list .comment .comment-body .comment-author .lazy-container {
    height: auto;
}

.blog-details-area .comments .comment-list .comment .comment-body .comment-content p {
    margin-bottom: 10px;
}

.blog-details-area .comments .comment-list .comment .comment-body .comment-content .btn-reply {
    color: #FAF9F6;
    display: inline-block;
}

.blog-details-area .comments .comment-list .comment .comment-body .comment-content .btn-reply i {
    margin-inline-end: 5px;
}

.blog-details-area .comments .comment-list .comment .children {
    list-style-type: none;
    padding: 0;
    padding-inline-start: 30px;
}

.blog-details-area .comments .comment-list .comment .children .comment-body {
    padding-inline-start: 35px;
    margin-bottom: 25px;
}

.blog-details-area .comments .comment-reply .comment-notes {
    margin-bottom: 25px;
}


/* -----------------------------------------
    Reservation CSS
----------------------------------------- */

.reservation-area .wrapper {
    padding: 30px;
}

@media (min-width: 992px) {
    .reservation-area .wrapper {
        padding: 50px;
    }
}

@media (max-width: 575.98px) {
    .reservation-area .wrapper {
        padding: 20px;
    }
}

.reservation-area label {
    margin-bottom: 5px;
}


/* -----------------------------------------
    Faq CSS
----------------------------------------- */

.faq-area {
    position: relative;
}

.accordion-item {
    border: none;
    padding: 20px 25px;
}

.accordion-item .accordion-header .accordion-button {
    color: var(--text-dark);
    font-weight: inherit;
    padding: 0;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.accordion-item .accordion-header .accordion-button::after {
    background: none;
    font-size: 14px;
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f067";
    transform: none;
    text-align: right;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: #FAF9F6;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    color: #FAF9F6;
    content: "\f068";
}

.accordion-item .accordion-body {
    position: relative;
    padding: 16px 0 0 0;
}

.accordion-item .accordion-body p {
    margin: 0;
}


/* -----------------------------------------
    Contact CSS
----------------------------------------- */

.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px 30px;
    background-color: #FAF9F6;
}

.contact-area .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    font-size: 28px;
    color: #111111;
}

.contact-area .card .card-text {
    padding-inline-start: 22px;
    margin-bottom: 0;
}

.contact-area .card .card-text P {
    color: #111111;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-area .card .card-text P a {
    color: #111111;
    margin-bottom: 5px;
}

.contact-area .card .card-text P:last-child {
    margin-bottom: 0;
}

.contact-area iframe {
    width: 100%;
}

.contact-area .checkbox label {
    position: relative;
    cursor: pointer;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 0;
    color: var(--text-medium);
}

.contact-area .checkbox label a {
    color: #FAF9F6;
}


/* -----------------------------------------
    Terms & Conditions CSS
----------------------------------------- */

.terms-condition-area .item-single {
    padding: 30px;
}

.terms-condition-area .item-single h3 {
    margin-bottom: 20px;
}

.terms-condition-area .item-single p:last-child {
    margin-bottom: 0;
}

.terms-condition-area ul {
    padding-inline-start: 20px;
}


/* -----------------------------------------
    Coming Soon CSS
----------------------------------------- */

.coming-soon-area .wrapper {
    position: relative;
    overflow: hidden;
}

.coming-soon-area .svg-image {
    padding: 50px;
    max-width: 540px;
}

.coming-soon-area .logo {
    padding-block-start: 30px;
    padding-inline-start: 30px;
}

@media (max-width: 767.98px) {
    .coming-soon-area .logo {
        padding-block-start: 20px;
        padding-inline-start: 20px;
    }
}

.coming-soon-area .main-form {
    padding: 30px;
}

@media (min-width: 992px) {
    .coming-soon-area .main-form {
        max-width: 540px;
        padding-block: 20px;
        padding-inline-start: 20px;
        padding-inline-end: 40px;
    }
}

.coming-soon-area .main-form .icon-link {
    position: absolute;
    top: 30px;
    right: 0;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FAF9F6;
    color: var(--btn-color);
    border-start-start-radius: var(--radius-pill);
    border-end-start-radius: var(--radius-pill);
}

.coming-soon-area .main-form .icon-link i {
    margin-inline-start: 5px;
}

.coming-soon-area .timer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.coming-soon-area .timer .count {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .coming-soon-area .timer .count {
        width: calc(50% - 10px);
    }
}

.coming-soon-area .newsletter-form input {
    background: transparent;
    height: 55px;
}

.coming-soon-area .newsletter-form .btn {
    top: 5px;
    right: 0;
    left: 0;
    margin-inline-start: auto;
    margin-inline-end: 5px;
    width: -moz-fit-content;
    width: fit-content;
    height: calc(100% - 10px);
    line-height: calc(100% - 10px);
    position: absolute;
}

@media (max-width: 991.98px) {
    .coming-soon-area .wrapper {
        margin: 30px 0;
    }

    .coming-soon-area .logo {
        max-width: 150px;
    }
}


/* -----------------------------------------
    Error CSS
----------------------------------------- */

.error-area {
    display: flex;
    align-items: center;
    height: 100vh;
}

.error-area .error-content {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.error-area .error-content h3 {
    margin-bottom: 20px;
}

.error-area .error-content p {
    max-width: 550px;
    margin: auto;
    margin-bottom: 20px;
}

.theme-dark {
    --color-dark: #020101;
    --color-dark-rgb: 17, 17, 17;
    --color-medium: #3d3d3d;
    --text-dark: #f2f2f2;
    --text-medium: #ACACAC;
    --text-white: var(--color-white);
    --text-light: var(--color-light);
    --border-color: #222222;
    --border-color-2: #3d3d3d;
    --bg-1: #1f1f1f;
    --bg-2: #0f101d;
    --bg-white: #111111;
}

.theme-dark * {
    box-shadow: none;
}

.theme-dark .bg-white {
    background-color: #fef5dd !important;
}

.theme-dark .header-area.is-sticky {
    background: rgba(var(--color-dark-rgb), 0.9);
    border-bottom: 1px solid var(--border-color);
}

.theme-dark .header-area .main-navbar .menu-dropdown {
    border: 1px solid var(--border-color);
}

@media (max-width: 1199px) {
    .theme-dark .header-area {
        background: rgba(var(--color-dark-rgb), 0.9);
        border-bottom: 1px solid var(--border-color);
    }
}

.theme-dark .blog-area .card-content {
    background-color: var(--bg-1);
}

.theme-dark .scroll-btn {
    background-color: var(--bg-dark);
}

.theme-dark .scroll-btn.left::after {
    background: linear-gradient(to right, var(--bg-dark) 20%, rgba(33, 33, 33, 0) 80%);
}

.theme-dark .scroll-btn.right::after {
    background: linear-gradient(to left, var(--bg-dark) 20%, rgba(33, 33, 33, 0) 80%);
}

.theme-dark #preLoader {
    background-color: var(--bg-1);
}

.brand-img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-container {
    padding: 20px;
    text-align: center;
}

.bg-vanila {
    background-color: #FAF9F6;
}

.slide-desktop {
    margin-top: 120px;
}

.submenu-dropdown {
    max-height: 400px;
    overflow-y: auto;
}

.menu-dropdown,
.submenu-dropdown {
    display: none;
    list-style-type: none;
    padding-left: 20px;
}

.nav-item:hover>.menu-dropdown,
.nav-item:hover>.submenu-dropdown {
    display: block;
}

.nav-link.toggle {
    cursor: pointer;
}

.nav-item {
    position: relative;
}

.submenu-dropdown {
    background: #faeecd;
    width: max-content;
    position: absolute;
    left: 100%;
    top: 0;
}

.header-area .main-navbar .menu-dropdown .submenu-dropdown .nav-link {
    color: #111111;
    background: #FAF9F6;
    display: block;
    padding: 5px 25px;
    font-size: var(--font-sm);
    border-inline-start: 2px solid transparent;
}

.footer-area .info-list li a,
.footer-area .footer-links li a:hover {
    color: #111111;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a:hover {
    color: #111111;
}

.link a:hover {
    color: #111111;
}

@media (max-width: 768px) {
    .submenu-dropdown {
        position: relative;
        left: 0;
    }
}

@media (max-width: 1024px) {
    .slide-desktop {
        margin-top: 90px;
    }
}

.green {
    background-color: green;
}





 /* CSS for Smooth Scrolling  */
.piess-tabs-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;           /* Ensure it takes full width */
    margin: 0;             /* Remove auto margin */
    padding: 0;            /* Optional: remove padding */
    box-sizing: border-box;
}

.piess-tabs-wrapper {
    overflow: hidden;
    width: 100%;           /* Ensure it takes full width */
    position: relative;
    box-sizing: border-box;
}


.piess-tabs-navigation {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease-in-out;
}

.piess-tabs-navigation .nav-item {
    flex: 0 0 auto;
    /* Prevent shrinking */
    color: #000;
    width: calc(100% / 6 - 10px);
    /* Ensure 6 items fit */
    text-align: center;
}

@media (max-width: 768px) {
   .piess-tabs-navigation .nav-item {
    flex: 0 0 auto;
    /* Prevent shrinking */
    color: #000;
    width: calc(300% / 6 - 10px);
    /* Ensure 6 items fit */
    text-align: center;
} 
}

.piess-scroll-btn {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.piess-prev-btn {
    margin-right: 10px;
}

.piess-next-btn {
    margin-left: 10px;
}

.footer-widget .link a {
    color: #111111;
}

.footer-widget .link a:hover {
    color: #111111 !important;
}