@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Questrial&display=swap");

:root {
    --sp-text: #5d6374;
    --sp-headtext: #191d28;
    /* --sp-red: #c00a27; */
    --sp-red: #ec092c;
    --sp-soft-red: #ffebee;
    --sp-yellow: #f4b618;
    --sp-soft-yellow: #fffde7;
    --sp-orange: #fd982c;
    --sp-soft-orange: #fff3e6;
    --sp-voilet: #b0bdff;
    --sp-soft-voilet: #f3f5ff;
    --sp-pink: #f6bcff;
    --sp-soft-pink: #fbeefd;
    --sp-skin: #fdf9f5;
    --sp-lightgray: #f4f6f8;
    --sp-cyan: #9ff3ff;
    --sp-soft-cyan: #effdff;
    --dir: -100%;
    --light-clr: 0 0% 100%;
    --dark-clr: 0 0% 0%;
    --fill-clr: hsl(var(--light-clr));
    --text-clr: hsl(var(--dark-clr));
    --font-scondary: "Fraunces", serif;
}

body {
    font-family: "Questrial", sans-serif;
    color: var(--sp-text);
}

section {
    padding: 120px 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--sp-headtext);
    font-weight: 700;
    font-family: var(--font-scondary);
}

.main-wrapper {
    overflow: hidden;
}

.shadow-1 {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.text-red {
    color: var(--sp-red) !important;
}

.text-yellow {
    color: var(--sp-yellow) !important;
}

.text-secondary {
    color: var(--sp-text) !important;
}

.text-black {
    color: var(--sp-headtext) !important;
}

.bg-lightgray {
    background: var(--sp-lightgray) !important;
}

.bg-skin {
    background: var(--sp-skin) !important;
}

.bg-black {
    background: var(--sp-headtext) !important;
}

.bg-red {
    background: var(--sp-red);
}

.divider-bottom-1:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-image: url("../../images/pattern/divider-1.png");
    background-repeat: repeat-x;
}

.divider-top-1:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background-image: url("../../images/pattern/divider-2.png");
    background-repeat: repeat-x;
    transform: rotate(180deg);
}

.svg-divider-t {
    overflow: hidden;
    width: 100%;
    line-height: 0;
    direction: ltr;
    margin-top: -50px;
}

.svg-divider-t.bot {
    transform: rotate(180deg);
}

.svg-divider-t svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.svg-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-160 {
    padding-top: 160px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.left-5 {
    left: 5%;
}

.left-10 {
    left: 10%;
}

.left-15 {
    left: 15%;
}

.left-20 {
    left: 20%;
}

.right-5 {
    right: 5%;
}

.right-10 {
    right: 10%;
}

.right-15 {
    right: 15%;
}
.right-20 {
    right: 20%;
}

.top-5 {
    top: 5%;
}

.top-10 {
    top: 10%;
}

.top-15 {
    top: 15%;
}
.top-20 {
    top: 20%;
}

.bottom-5 {
    bottom: 5%;
}

.bottom-10 {
    bottom: 10%;
}

.bottom-15 {
    bottom: 15%;
}
.bottom-20 {
    bottom: 20%;
}

@media (min-width: 768px) {
    .pb-md-120 {
        padding-bottom: 120px !important;
    }
}

.top-down {
    animation: moveTopDown 5s infinite linear;
}

@keyframes moveTopDown {
    0% {
        transform: translate(0px, 0px);
    }
    65% {
        transform: translate(0, 30px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.left-right {
    animation: moveLeftRight 5s infinite linear;
}

@keyframes moveLeftRight {
    0% {
        transform: translate(0px, 0px);
    }
    65% {
        transform: translate(30px, 0);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.fw-bolder {
    font-weight: 800 !important;
}

.max-width-medium {
    max-width: 400px;
}

.img-object img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.spice-substitle {
    background-image: radial-gradient(circle, rgba(236, 9, 44, 1) 54%, rgba(255, 255, 255, 1) 100%);
    color: #161616;
    padding: 3px 70px;
    display: inline-block;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 0.25rem;
}

.spice-substitle.left {
    background-image: linear-gradient(90deg, var(--sp-red) 0.08%, rgba(8, 88, 100, 0) 104.77%) !important;
    padding: 3px 40px 3px 10px;
}

.spice-substitle.right {
    background-image: linear-gradient(270deg, var(--sp-red) 0.08%, rgba(8, 88, 100, 0) 104.77%) !important;
    padding: 3px 10px 3px 40px;
}

/* navbar */
.spice-hero-subtitle {
    background-image: linear-gradient(269.84deg, var(--sp-red) 0.08%, rgba(8, 88, 100, 0) 104.77%);
    padding: 4px 10px 4px 40px;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 0.25rem;
}

.spice-header {
    /* float: left;
    position: absolute; */
    position: relative;
    z-index: 999;
    width: 100%;
}

.navbar {
    -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
}

.navbar-brand {
    padding: 15px 0px 15px 30px;
}

.spice-menu li a.nav-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--sp-text);
}

.spice-menu li a.nav-active {
    color: var(--sp-red);
}

.spice-menu li a.nav-link:hover,
.spice-menu li a.nav-link.active {
    color: var(--sp-red);
}

.spice-menu > li.has-submenu {
    position: relative;
}

.spice-menu > li.has-submenu > ul {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    background-color: #fff;
    min-width: 200px;
    -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style-type: none;
    padding: 0px;
}

.spice-menu > li.has-submenu > ul li {
    padding: 0px;
}

.spice-menu > li.has-submenu > ul li a.nav-link {
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.spice-menu > li.has-submenu:hover > ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.spice-menu > li.has-submenu > ul li + li a {
    border-top: 1px solid rgba(233, 233, 233, 0.3);
}

.spice-menu > li.has-submenu > ul li a:hover {
    padding-left: 20px;
}

.nav-contact {
    margin-left: 1rem;
    background: var(--sp-red);
    color: var(--bs-white);
    display: flex;
    padding: 20px;
    align-items: center;
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.spice-menu-sidebar {
    max-width: 300px;
    padding: 35px 30px;
    -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.spice-menu-sidebar .btn-close {
    background-image: none;
    padding: 0px;
    width: 28px;
    height: 28px;
    opacity: 1;
    color: var(--sp-red);
}

.spice-menu-sidebar .btn-close:focus {
    box-shadow: none;
}

/* offcanvas sidevar */

.spice-mobile-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 2rem;
}

.spice-mobile-menu li {
    padding: 0;
    margin: 0;
}

.spice-mobile-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--sp-text);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(233, 233, 233, 0.3);
    text-decoration: none;
}

.spice-mobile-menu li a.active,
.spice-mobile-menu li a:hover {
    color: var(--sp-red);
}

.social-contact {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-contact a {
    color: var(--sp-red);
    display: block;
    border: 1px solid #f4f4f4;
    background-color: rgba(25, 29, 40, 0.01);
    border-radius: 0.25rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-contact a:hover {
    -webkit-box-shadow: 0 2px 4px 0 rgba(25, 29, 40, 0.05);
    box-shadow: 0 2px 4px 0 rgba(25, 29, 40, 0.05);
    background-color: #fff;
}

.social-contact a i {
    font-size: 18px;
}

/* spice hero */

.spice-hero {
    /* background: #090c0f; */
    /* padding: 246px 0px 160px; */
}

.spice-hero-slider .spice-hero-title {
    font-size: clamp(2.5rem, 2.5vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
}

.spice-hero-slider .spice-hero-para {
    font-size: 18px;
}

.spice-hero .spice-hero-slider-pagination {
    left: auto;
    right: 40px;
    width: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.spice-hero-slider-pagination span {
    display: block !important;
}

.spice-hero-slider-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--sp-yellow);
}

.spice-hero-slider-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    background: var(--sp-yellow);
}

.spice-hero-slider-pagination span.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    position: relative;
    margin: 0 1px !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.spice-hero-slider-pagination span.swiper-pagination-bullet::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--sp-red);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* btn */
.btn {
    padding: 1rem 2rem;
    display: inline-flex;
    gap: 5px;
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--sp-red);
    --bs-btn-border-color: var(--sp-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--sp-red);
    --bs-btn-hover-border-color: var(--sp-red);
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--sp-red);
    --bs-btn-active-border-color: var(--sp-red);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--sp-red);
    --bs-btn-disabled-border-color: var(--sp-red);
}

.btn.button-effect:hover {
    border-color: var(--sp-yellow);
}

.btn.button-effect span.icon {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn.button-effect:hover span.icon {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.button-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, var(--dir));
    transform: translate(-50%, var(--dir));
    width: 150%;
    height: 200%;
    border-radius: 50%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    background-color: var(--sp-yellow);
    z-index: 1;
}

.button-effect:hover::after {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.button-effect span {
    z-index: 2;
}

/* category */

.cat-1 .card-category,
.cat-1 .cat-product:after {
    background: var(--sp-orange);
}

.cat-2 .card-category,
.cat-2 .cat-product:after {
    background: var(--sp-red);
}
.cat-3 .card-category,
.cat-3 .cat-product:after {
    background: var(--sp-yellow);
}

@media (min-width: 768px) {
    .cat-1 .card-category {
        margin-top: -70px;
    }
    .cat-3 .card-category {
        margin-top: -70px;
    }
}

.card-category {
    margin-bottom: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-category .card-body {
    padding: 40px 30px 30px;
    text-align: center;
    color: var(--bs-white);
}

.card-category .cat-subtitle {
    margin-bottom: 15px;
}

.card-category .cat-title {
    margin-bottom: 15px;
    font-family: var(--font-scondary);
}

.card-category .cat-btn {
    color: var(--sp-headtext);
    background-color: var(--bs-white);
    border-radius: 30px 30px 30px 30px;
    font-size: 16px;
    padding: 15px 20px;
    font-weight: 600;
    line-height: 1;
}

.card-category .cat-btn:hover {
    background-color: var(--sp-headtext);
    color: var(--bs-white);
}

.cat-product {
    position: relative;
    z-index: 1;
}

.cat-product:after {
    position: absolute;
    content: "";
    height: 140px;
    width: 100%;
    left: 0;
    top: -30px;
    z-index: -1;
    border-radius: 0px 0px 6px 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-img {
    padding-right: 4rem;
}

.exp-box {
    position: absolute;
    width: 200px;
    height: 200px;
    text-align: center;
    top: 30px;
    right: 0;
    border: 10px solid var(--bs-white);
    background: var(--sp-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.spice-promo {
    background-image: url(../../images/pattern/promo-1.png);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5rem;
    background-color: var(--sp-headtext);
    border-radius: 0.25rem;
}

.spice-icon-box {
    padding: 0 24px 24px;
    border-radius: 8px;
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 7px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 7px 20px;
    max-width: 350px;
    margin-bottom: 2rem;
}

.spice-icon-box .icon-wrapper {
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    box-shadow: 0px 14px 20px rgba(0, 4, 94, 0.04);
    margin-top: -30px;
    font-size: 2.5rem;
}

.spice-box-img {
    position: absolute;
    left: 50%;
    bottom: 50px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.spice-box-img img {
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.product-card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 7px 20px;
}

.product-card a {
    text-decoration: none;
    color: var(--sp-headtext);
}

.product-card:before,
.product-card:after {
    width: 0;
    content: "";
    height: 0;
    position: absolute;
    box-sizing: content-box;
    border: 2px solid transparent;
    transition: all 0.3s linear;
    border-radius: 0.25rem;
    cursor: pointer;
}

.product-card:before {
    top: 0;
    left: 0;
}

.product-card:after {
    bottom: 0;
    right: 0;
}

.product-card:hover:before,
.product-card:hover:after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}

.product-card:hover:before {
    border-top: 2px solid var(--sp-red);
    border-left: 2px solid var(--sp-red);
}

.product-card:hover:after {
    border-bottom: 2px solid var(--sp-red);
    border-right: 2px solid var(--sp-red);
}

.product-card .card-body {
    padding: 1rem 1.25rem 1.5rem;
}

.product-card .product-subtitle {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-red);
}

.product-card .product-title {
    margin-bottom: 8px;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-card p {
    font-size: 14px;
}

.swiper-brand {
    position: static;
    bottom: unset;
    left: unset;
    margin-top: 40px;
}

.swiper-brand .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 1rem;
    background-color: #ec092c;
}

.swiper-brand .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #000;
    opacity: 1;
}

.footer-curve {
    height: 120px;
}
.footer-curve span {
    background-image: url(../../images/pattern/divider-3.png);
    width: calc(100% + 800px);
    left: 0;
    background-repeat: repeat-x;
    -webkit-animation: 25s curve_wave infinite linear alternate;
    animation: 25s curve_wave infinite linear alternate;
}

.footer-logo a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: var(--bs-white);
}

footer {
    padding-bottom: 3rem;
    padding-top: 120px;
}

footer .nav-links li {
    display: inline-block;
}

footer .nav-links li a {
    padding: 10px;
    color: var(--bs-white);
    text-decoration: none;
}

footer .nav-links li a:hover {
    color: var(--sp-red);
}

.social li {
    display: inline-block;
}

.social li a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: var(--sp-red);
}

.social li a:hover {
    color: var(--sp-yellow);
}

.about-banner {
    height: 400px;
    background-image: url("../../images/banner/content.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.about-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
}

/* form inputs */

.form-group {
    position: relative;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: -12px;
    padding: 0 8px;
    background-color: var(--bs-white);
    font-weight: 600;
    font-size: 14px;
    color: var(--sp-text);
}

.form-control {
    width: 100%;
    padding: 16px 24px;
    border-radius: 4px;
    border: 1px solid #e4e4e4;
    border-bottom: 2px solid #e4e4e4;
    outline: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e4e4e4;
    border-bottom: 2px solid var(--sp-red);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.custom-control {
    display: flex;
    grid-gap: 10px;
    align-items: center;
}

.custom-control {
    margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.sticky-soft-red {
    background: var(--sp-soft-red);
    border-bottom: 4px solid var(--sp-red);
}
.sticky-soft-voilet {
    background: var(--sp-soft-voilet);
    border-bottom: 4px solid var(--sp-voilet);
}
.sticky-soft-yellow {
    background: var(--sp-soft-yellow);
    border-bottom: 4px solid var(--sp-yellow);
}
.sticky-soft-orange {
    background: var(--sp-soft-orange);
    border-bottom: 4px solid var(--sp-orange);
}
.sticky-soft-cyan {
    background: var(--sp-soft-cyan);
    border-bottom: 4px solid var(--sp-cyan);
}

.sticky-soft-pink {
    background: var(--sp-soft-pink);
    border-bottom: 4px solid var(--sp-pink);
}

.sticky-post {
    padding: 12px 16px;
    font-size: 15px;
}

@keyframes curve_wave {
    0% {
        left: 0;
    }
    100% {
        left: -750px;
    }
}

@media (min-width: 1400px) {
    .spice-box-img img {
        max-width: 500px;
        margin-bottom: 4rem;
    }
}

@media (max-width: 1199.98px) {
    .spice-icon-box {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 24px 15px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        margin-right: 30px;
        border-radius: 0.25rem;
        width: 50px;
        height: 45px;
        padding: 0;
        border-radius: 0;
        position: absolute;
        right: 0;
        cursor: pointer;
        z-index: 111;
        border: none;
    }

    .navbar-toggler:before,
    .navbar-toggler:after {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        display: block;
        content: "";
    }

    .navbar-toggler:before {
        top: 16px;
        right: 15px;
        height: 2px;
        width: 20px;
        background: var(--sp-headtext);
    }

    .navbar-toggler:after {
        border-top: 2px solid #282b2d;
        border-bottom: 2px solid #282b2d;
        position: absolute;
        top: 22px;
        right: 15px;
        height: 8px;
        width: 20px;
    }

    .navbar-toggler.menu-opened:before {
        top: 23px;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .navbar-toggler.menu-opened:after {
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        background: var(--sp-headtext);
    }
}
