@font-face {
    font-family: DK Canoodle;
    src: url(../fonts/DKCanoodle.otf);
}

@font-face {
    font-family: Renner__400_Book;
    src: url(../fonts/Renner__400_Book.ttf);
}

@font-face {
    font-family: CenturyGothic;
    src: url(../fonts/CenturyGothic.ttf);
}

:root {
    --primary-color: #9a3a2c;
    --secondary-color: #9bc246;
    --color-yellow: #f7b538;
    --color-orange: #ff4e34;
    --color-bg: #ffebd3;
    --heading: DK Canoodle;
    --sub-heading: Renner__400_Book;
    --paragraph: CenturyGothic;
}

.heading {
    font-family: var(--heading);
}

.sub-heading {
    font-family: var(--sub-heading);
}

.paragraph {
    font-family: var(--paragraph);
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}


img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.text-justify {
    text-align: justify;
}

/* Header section */
header {
    width: 100%;
    /* background: var(--primary-color); */
    background: white;
    /* transition: top 0.5s ease, background 0.5s ease; */
    /* transform: translateY(0px); */
}

/*.navbar {*/
/*    height: 13vh;*/
/*}*/

.fixed-top {
    top: -40px !important;
    transform: translateY(40px);
    transition: transform .3s;
    background: #fff;
    height: unset;
    box-shadow: 0px 5px 10px -5px;
    border-top: 2px solid var(--color-orange);
}

/* .fixed-top .logo {
    filter: brightness(0) invert(1);
} */

.fixed-top .offcanvas {
    height: 100vh;
}

header .nav-top .notification {
    background-color: #ffffff;
    color: #bd1f17;
    font-weight: bold;
}

.offcanvas-body .social{
margin-top: 30px;
}

.offcanvas-body .social img{
   width: 40px;
    }

/* header .nav-top .notification p {
    font-size: .8rem;
} */

.nav {
    /* box-shadow: 0px 10px 10px -15px; */
}

.navbar {
    /* background: rgb(0, 0, 0, .6); */
    /* box-shadow: 0px 10px 20px -10px; */
    /* height: 15vh; */
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    width: 120px;
}

.navbar .nav-item {
    padding: 0 20px;
}

.navbar .nav-item .nav-link {
    color: black;
    font-size: 1rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* .navbar .nav-item .nav-link:hover {
    color: black;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    transition: ease-in .5s;
} */

.navbar .nav-item .nav-link.active {
    color: var(--primary-color);
    /* font-size: .8rem; */
    text-decoration: none;
    font-weight: bold;
    /* border: 2px solid black; */
    /* background: #FFF; */
    border-radius: 3px 3px 0 0;
}

.navbar-toggler {
    border: none !important;
    border-radius: unset !important;
    box-shadow: unset !important;
}

@media (max-width: 991.98px) {
    /* .navbar {
        background: rgb(0, 0, 0, .6);
        box-shadow: 0px 10px 20px -10px;
        height: 15vh;
    } */

    /* .navbar .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    } */

    .navbar .collapse.navbar-collapse {
        position: relative;
    }

    /* .navbar .navbar-nav {
        margin-top: 30px;
    } */
}

/* Header section */

/*Reveal animation*/
/* .reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
} */

/*Reveal animation*/

/* banner */
.banner-section {
    /* background: var(--primary-color); */
    background: linear-gradient(180deg, var(--primary-color) 20%, transparent);
    position: relative;
    z-index: 1;
    /* height: 85vh; */
    /* border-top: 1px solid white; */
    /* margin-top: 5px; */
}

.banner-section .container-fluid .banner-img {
    width: 100vw;
}

.banner-section .banner-content-div {
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    left: 0;
    right: 0;
}

.banner-content {
    padding: 50px;
    color: #fff;
    /* text-align: center; */
}

.banner-content h1 {
    /* font-size: 30px; */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 2rem;
    /* text-align: center; */
    font-family: var(--heading);
    color: var(--secondary-color);
}

.banner-content h1 img {
    width: 40px;
}

.banner-content p {
    /* font-size: 30px; */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: .8rem;
    /* text-align: center; */
    font-family: var(--sub-heading);
    color: var(--secondary-color);
}

.banner-content a {
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
    /* border: 3px solid #2F1C10; */
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    background: var(--secondary-color);
    padding: 15px 20px;
}

.banner-content a:hover {
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
    padding: 15px 20px;
}

.banner-section-2 {
    /* background: var(--primary-color); */
    background: linear-gradient(180deg, var(--primary-color) 20%, transparent);
    position: relative;
    z-index: 1;
    /* height: 85vh; */
    /* border-top: 1px solid white; */
    /* margin-top: 5px; */
}

.banner-section-2 .container-fluid .banner-img {
    width: 100vw;
}

/* banner */

/* Custom styles for the "category" section */
.category-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.category-section a {
    text-decoration: none;
}

.category-pattern {
    position: absolute;
    width: 300px;
    left: -10%;
    top: -10%;
}

.category-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--heading);
}

.category-section p {
    font-size: 1rem;
    color: #777;
    font-family: var(--sub-heading);
}

.btn-category-button {
    color: #963a29;
    background-color: transparent;
    background-image: none;
    font-family: var(--paragraph);
    border-color: #963a29
}

.btn-category-button:hover {
    color: #fff;
    background-color: #963a29;
    border-color: #963a29
}

.btn-category-button.focus,
.btn-category-button:focus {
    box-shadow: 0 0 0 .2rem rgba(194, 114, 41, .5)
}

.btn-category-button.disabled,
.btn-category-button:disabled {
    color: #963a29;
    background-color: transparent
}

.btn-category-button:not(:disabled):not(.disabled).active,
.btn-category-button:not(:disabled):not(.disabled):active,
.show>.btn-category-button.dropdown-toggle {
    color: #fff;
    background-color: #963a29;
    border-color: #963a29
}

.btn-category-button:not(:disabled):not(.disabled).active:focus,
.btn-category-button:not(:disabled):not(.disabled):active:focus,
.show>.btn-category-button.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(194, 114, 41, .5)
}

.categories .sale-price {
    font-size: 20px;
    font-weight: 500;
    text-decoration: line-through;
    font-family: var(--heading);
    color: #4b525b;
}

.categories .offer-price {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading);
    color: #000000;
}

.category-box {
    position: relative;
    /* width: calc(100%/4); */
    /* height: 200px; */
    overflow: hidden;
    transition: .5s;
}

.category-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.category-box:hover img {
    transform: scale(1.1);
}

.category-box:hover {
    box-shadow: 0px 10px 30px -20px;
    transition: .5s;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    box-shadow: 0px 0px 15px -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-box:hover .category-overlay {
    opacity: 1;
}

.category-section .categories .col-md-3 h3 {
    color: black;
    font-size: 1.5rem;
    text-align: center;
    font-family: var(--heading);
}

/* Custom styles for the "category" section */

/* Custom styles for the "marquee" section */
.marquee-slider-section {
    padding: 40px 0;
    overflow: hidden;
    background: linear-gradient(0deg, #f3f3f3, #7fd2c0);
}

.marquee-slider-section .b-slider {
    overflow: hidden;
    min-width: 100%;
    outline: 0;
}

.marquee-slider-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--heading);
}

.marquee-slider-section p {
    font-size: 1.5rem;
    color: #777;
    font-family: var(--sub-heading);
}

.marquee-slider-section .b-slider:hover .b-slider__img {
    filter: grayscale(1) contrast(0) blur(1px);
}

.marquee-slider-section .b-slider__slide {
    text-align: center;
    width: 10%;
    height: 200px;
    margin-right: 50px;
    display: flex;
    align-items: center;
}


.marquee-slider-section .b-slider__slide:hover .b-slider__img {
    filter: unset;
}

@media screen and (max-width: 767px) {
    .marquee-slider-section .b-slider__slide {
        text-align: center;
        width: 16%;
        height: 100px;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 556px) {
    .marquee-slider-section .b-slider__slide {
        text-align: center;
        width: 20%;
        height: 120px;
        display: flex;
        align-items: center;
    }

    .marquee-slider-section .flickity-viewport{
        height: 120px !important;
    }

    .marquee-slider-section h2{
        font-size: 2rem;
    }
}

@media screen and (max-width: 991px){
    .marquee-slider-section .flickity-viewport{
        height: 150px !important;
    }

    .marquee-slider-section .b-slider__slide {
        height: 150px;
    }
}

/* Custom styles for the "marquee" section */

/* Custom styles for the "testimonials" section */

.testimonial-slider {
    overflow: hidden;
    background: linear-gradient(0deg, #f3f3f3, #beb0c6);
    padding: 2em 2em 3em;
}

.testimonial-slider .container-fluid {
    z-index: 1;
}

.testimonial-title {
    color: #000;
}

.testimonial-title h2 {
    padding-left: 0.2em;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--heading);
    text-align: center;
}

.testimonial-title p {
    font-size: 1.2rem;
    /*color: #777;*/
    color: #000;
    margin-bottom: 40px;
    font-family: var(--sub-heading);
}

.testimonial-title .testimonial-happy-face {
    text-align: center;
}

.testimonial-title .testimonial-happy-face img {
    width: 100px;
}

.card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    height: 100%;
}

.card .card-title {
    font-size: 1.2rem;
    /*color: #777;*/
    margin-bottom: 10px;
    font-family: var(--sub-heading);
}

.card .card-text {
    font-size: 1rem;
    /* margin-bottom: 40px; */
    font-family: var(--paragraph);
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #fff;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    top: 60%;
    transform: translateY(-50%);
    box-shadow: 0px 10px 20px -12px black;
}

.carousel-inner .carousel-item img{
    height: 300px;
}

@media (min-width: 576px) {
    .carousel-item {
        margin-right: 0;
        flex: 0 0 50%;
        display: block !important;
    }

    .carousel-inner {
        display: flex;
    }
}

@media (min-width: 992px) {
    .carousel-inner {
        padding: 1em;
    }

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 1;
        position: unset;
        left: 1em;
        top: 90%;
        transform: translateY(-50%);
        margin: 5px;
        box-shadow: 0px 10px 20px -12px black;
    }

    .carousel-control-prev span,
    .carousel-control-next span {
        width: 1rem;
        height: 1rem;
    }

    .carousel-control-next {
        left: 5em;
    }
}

/* Custom styles for the "testimonials" section */

/* Custom styles for the "counter" section */

.counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    padding: 40px 0;
}

.counter {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 20px;
}

.counter .icon {
    /*background-image: url(../img/dripping1.png);*/
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.counter .icon i {
    font-size: 3rem;
    /*color: white;*/
    padding-top: 1rem;
    padding-bottom: 1rem !important;
}

.counter .count {
    font-size: 36px;
    font-weight: bold;
    font-family: var(--sub-heading);
}

.counter p {
    font-family: var(--paragraph);
    /*margin-top: 10px;*/
}

/* Custom styles for the "counter" section */

/* Custom styles for the "recipe" section */
.recipe-section {
    background-color: #f3f3f3;
    padding: 0 0 40px 0;
}

.recipe-section .wave1 {
    background: #d9744c;
    position: absolute;
    /*top: -35%;*/
    left: 0;
    width: 100%;
    height: unset;
}

.recipe-section .curve {
    color: transparent;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0px;
    padding: 0px;
    background-color: white;
}

.recipe-pattern {
    position: absolute;
    width: 300px;
    left: -10%;
    top: -10%;
}

.recipe-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--heading);
}

.recipe-section p {
    font-size: 1.2rem;
    /*color: #777;*/
    color: #000;
    margin-bottom: 40px;
    font-family: var(--sub-heading);
}

.recipe-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -5%;
    position: relative;
    z-index: 1;
}

.recipe-type img {
    width: 60px;
}

.recipe-box {
    position: relative;
    /* width: calc(100%/4); */
    /* height: 200px; */
    overflow: hidden;
    transition: .5s;
    border: 3px solid black;
    padding: 7px;
    border-radius: 15px;
}

.recipe-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.recipe-box:hover img {
    transform: scale(1.1);
}

.recipe-box:hover {
    box-shadow: 0px 10px 30px -20px;
    transition: .5s;
}

.recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    box-shadow: 0px 0px 15px -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recipe-box:hover .recipe-overlay {
    opacity: 1;
}

.recipe-section .social{
    display: flex;
    justify-content: center;
}

.recipe-section .social a{
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
}

.recipe-section .recipes .recipe-type h3 {
    color: black;
    font-size: 1.2rem;
    text-align: center;
    font-family: var(--heading);
    /*background-color: #eaa06b;*/
    background-color: #f3f3f3;
    padding: 0 20px;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .recipe-type img {
        width: 170px;
    }

    .recipe-section .recipes .recipe-type h3 {
        color: black;
        font-size: 2.5rem;
        text-align: center;
        font-family: var(--heading);
        /*background-color: #eaa06b;*/
        background-color: #f3f3f3;
        padding: 0 20px;
        border-radius: 10px;
    }

    .recipe-box {
        position: relative;
        /* width: calc(100%/4); */
        /* height: 200px; */
        overflow: hidden;
        transition: .5s;
        border: 3px solid black;
        padding: 15px;
        border-radius: 15px;
    }
}

@media (max-width: 667px) {
    .recipe-section .recipes .recipe-type h3{
        font-size: 3rem;
    }
}

/* Custom styles for the "recipe" section */

/* Custom styles for the "products" section */
.products {
    background-color: #fbfbfb;
    padding: 40px 0;
}

.products .heading {
    margin-bottom: 40px;
}

.products p {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 40px;
    font-family: var(--sub-heading);
}

.products .heading img {
    height: 100px;
}

.products .heading h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--heading);
    color: var(--secondary-color);
}

/* Custom styles for the product cards */
.product-card {
    /* width: 190px; */
    /* height: 330px; */
    padding: 0.8em;
    background: #f5f5f5;
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.product-card-img img {
    /* background-color: #ffcaa6; */
    background-image: url(../img/product1.jpg);
    /* height: 50%; */
    height: 220px;
    width: 100%;
    border-radius: .5rem;
    transition: .3s ease;
}

.product-card-info {
    padding-top: 10%;
}

.product-card-info .text-title {
    font-family: var(--sub-heading);
    color: black;
    margin-bottom: 0;
}

.product-card-info .text-body {
    font-family: var(--paragraph);
    font-size: 1rem;
}

svg {
    width: 20px;
    height: 20px;
}

.product-card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/*Text*/
.text-title {
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1.5;
}

.text-body {
    font-size: .9em;
    padding-bottom: 10px;
}

/*Button*/
.product-card-button {
    /* border: 1px solid #252525; */
    display: flex;
    padding: .3em;
    cursor: pointer;
    /* border-radius: 50px; */
    transition: .3s ease-in-out;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
}

/*Hover*/
.product-card-img img:hover {
    transform: translateY(-25%);
    box-shadow: rgba(226, 196, 63, 0.25) 0px 13px 47px -5px,
        rgba(247, 181, 56, 0.3) 0px 8px 16px -8px;

}

/* .product-card-button:hover {
    border: 1px solid var(--primary-color);
    color: white;
    font-weight: bold;
} */

/* Custom styles for the footer */
.footer {
    padding: 40px 0;
    /* background: rgb(33, 37, 41, 1); */
    background-image: url(../img/footer.jpg);
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
}

.footer h5 {
    font-size: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 0;
}

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

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

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer .list-inline-item {
    margin-right: 10px;
}

.footer .list-inline-item:last-child {
    margin-right: 0;
}

.footer a {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
}

.footer a:hover {
    color: #bd1f17;
    text-decoration: none;
}

.footer a i {
    color: #bd1f17;
    margin-right: 10px;
}

.footer .button-01 {
    position: relative;
    font-size: 12px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear
}

.footer .button-01 i {
    margin-right: 10px;
    font-size: 16px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear
}

.footer .button-01:hover,
.footer .button-01:active,
.footer .button-01:focus {
    color: #bd1f17;
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px)
}

.footer .button-01:hover i,
.footer .button-01:active i,
.footer .button-01:focus i {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

.footer hr {
    border-color: #777;
    margin: 30px 0;
}

.footer .text-center {
    margin-top: 30px;
}

.footer .other-brand {
    color: #000000;
}

.footer .eathomemade{
    text-align: end;
 }

@media (max-width: 776px) {
    .footer {
        background: rgb(33, 37, 41, 1);
    }
    .footer .other-logo {
        background: #fff;
        padding: 10px;
        border-radius: 10px;
    }

    .footer .other-brand {
        color: #fff;
    }

    .footer .eathomemade{
       text-align: start;
    }
}

/* Media Query */

@media (min-width: 992px) {
    .banner-content h1 {
        /* font-size: 30px; */
        margin-bottom: 20px;
        text-transform: uppercase;
        font-size: 5rem;
        /* text-align: center; */
        font-family: var(--heading);
        color: var(--secondary-color);
    }

    .banner-content h1 img {
        width: 75px;
    }

    .banner-content p {
        /* font-size: 30px; */
        margin-bottom: 20px;
        text-transform: uppercase;
        font-size: 1.5rem;
        /* text-align: center; */
        font-family: var(--sub-heading);
        color: var(--secondary-color);
    }

    /* header .nav-top .notification p {
        font-size: 1rem;
    } */

    .nav-left .fa-search,
    .nav-left .fa-shopping-cart {
        visibility: hidden;
    }



    .category-section {
        padding: 80px 0;
    }

    .recipe-section {
        /*background-color: #d9744c;*/
        /*background-color: #eaa06b;*/
        background-color: #f3f3f3;
    }

    .counter-section {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #ffffff;
        padding: 80px 0 0 0;
    }

    .testimonial-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 80px 0;
    }

    .category-section p {
        font-size: 1.5rem;
    }

    .marination-section p {
        font-size: 1.5rem;
    }

    .recipe-section p {
        font-size: 1.5rem;
    }

    .features p {
        font-size: 1.5rem;
    }

    .testimonial-slider p {
        font-size: 1.5rem;
    }

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

    .btn-1 {
        background-color: var(--primary-color);
        color: #f5f5f5;
    }

    .btn-1:hover {
        background-color: var(--color-orange) !important;
        color: #f3f3f3 !important;
    }

    .product-info {
        font-size: 1rem !important;
    }
}


.about-home {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.about-home ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    line-height: 1.2;
}

.about-home ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: unset;
}

.about-home ul li:first-child:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: #ECBA23;
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px;
}


.about-home ul li:last-child {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.about-home h2 {
    font-family: var(--heading);
    color: #fff;
    font-size: 3.2rem;
    letter-spacing: 1px;
}

.category-background {
    background-image: linear-gradient(rgba(9, 5, 54, 0.2), rgba(5, 4, 46, 0.2)), url(../img/banner/product_banner.jpg);

}

.recipes-background {
    background-image: linear-gradient(rgba(9, 5, 54, 0.2), rgba(5, 4, 46, 0.2)), url(../img/banner/recipes_banner.jpg);

}

.gallery-background {
    background-image: linear-gradient(rgba(9, 5, 54, 0.1), rgba(5, 4, 46, 0.1)), url(../img/banner/gallery_banner.jpg);

}

.breadcrumbs-background {
    background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url(../img/banner/Banner4.jpg);

}

.contact {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.contact .getin h2 {
    font-family: var(--heading);
    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}

.contact .getin p {
    font-family: var(--paragraph);
    color: #686875;
    line-height: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e4ed;
}

.contact .getin h3 {
    font-family: var(--sub-heading);
    color: #2c234d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}

.contact .getin .getin-details div .get {
    font-size: 16px;
    line-height: 22px;
    color: #963a29;
    margin-right: 20px;
}

.contact .getin .getin-details a {
    text-decoration: none;
}

.contact .getin .getin-details div a p {
    font-family: var(--paragraph);
    font-size: 14px;
    border-bottom: none;
    line-height: 22px;
}

.contact .form {
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}

.contact .form h4 {
    font-family: var(--heading);
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
}

.contact .form p {
    font-family: var(--paragraph);
    color: #686875;
    line-height: 24px;
    padding-bottom: 25px;
}

@media (max-width: 576px) {
    .contact .form {
        margin-top: 30px;
        text-align: center;
        padding: 20px;
    }

    .about-home {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.form .form-col input,
.form .form-col select,
.form .form-col textarea {
    font-family: var(--paragraph);
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.form .form-col input:focus,
.form .form-col select:focus,
.form .form-col textarea:focus {
    box-shadow: 0 0 10px rgba(55, 125, 255, 0.1);
    border-color: #bd1f17;
}

.form .contact-button {
    font-family: var(--paragraph);
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(150 58 41);
    border-radius: 25px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}

.add-more {
    font-family: var(--paragraph);
    font-size: 13px;
    padding: 7px 9px;
    background: rgb(27 155 171);
    border-radius: 5px;
    border: none;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.remove {
    font-family: var(--paragraph);
    font-size: 13px;
    padding: 7px 9px;
    background: rgb(150 58 41);
    border-radius: 5px;
    border: none;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 70vh;
}


.about-us {
    padding: 80px 0;
}

.about-us img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 10px;
}

.home-about .small-title,
.about-us .small-title,
.history-section .small-title,
.faq-section .small-title,
.team-section .small-title {
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0;
    display: block;
    margin-bottom: 1rem;
    color: #963a29;
}

.home-about .small-title:before,
.about-us .small-title:before,
.history-section .small-title:before,
.faq-section .small-title:before,
.team-section .small-title:before {
    background-color: #963a29;
    height: 2px;
    width: 40px;
    margin-left: 15px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.about-us .list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

.about-us .list-style2 li:before {
    font-family: "FontAwesome";
    content: '\f00c';
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #bd1f17;
}

.about-us .text-uppercase,
.faq-section .text-uppercase,
.team-section .text-uppercase {
    text-transform: uppercase !important;
}

.team-section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.team-section .team-iteam {
    text-align: center;
    position: relative;
    padding-bottom: 40px;
}

.team-section .team-iteam .team-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}

.team-section .team-iteam .title-box {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    z-index: 2;
    background-color: #FAFAFA;
    padding: 25px 0;
    opacity: 1;
    visibility: visible;
    margin-bottom: 0;
    border-radius: 1px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.team-section .team-iteam .title-box,
.team-section .team-iteam .team-content,
.team-section .team-iteam .team-img:before {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.team-section .team-iteam .team-img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: #1b1b1b;
    opacity: 0.9;
    visibility: hidden;
}


.team-section img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.font-weight-400 {
    font-weight: 400;
}

.team-section .team-iteam:hover .team-img::before {
    height: 100%;
    visibility: visible;
}

.team-section .team-iteam:hover .team-content {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.team-section .team-iteam:hover .title-box {
    opacity: 0;
    visibility: hidden;
    margin-bottom: 80px;
}

.team-section .team-iteam .social a {
    font-size: 15px;
    color: #fff;
    margin: 0 5px;
}

.team-section .team-content .profession {
    color: #f7b538;
}

.team-section .team-content a {
    text-decoration: none;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(0deg, #f3f3f3, #efe8c8);
}

.faq-section .card-body {
    background-color: #ffffff;
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0;
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none;
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff;
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
}

.accordion-style .btn-link {
    color: #bd1f17;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff;
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 30px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #bd1f17;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
}

.recipes-section {
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.recipes-section img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.recipes-section .card-body h3 a {
    color: black;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
}

.recipes-section .card-details li a {
    color: #bd1f17;
    text-decoration: none;
}

.recipes-section .card-style02 .card-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #bd1f17;
    padding: 0px 14px;
    text-transform: uppercase;
}

.card-style02 .card-details ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #666;
    display: inline-flex;
    margin: 10px;
    margin-left: 0;
    transform: rotate(45deg);
}

.recipe-details {
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.recipe-details img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.recipe-details .card {
    box-shadow: none;
}

.recipe-details .card-style02 .card-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #bd1f17;
    padding: 0px 14px;
    text-transform: uppercase;
}

.recipe-details .card-style02 .recipe-title,
.recipe-details .card-style02 .ingredients,
.recipe-details .card-style02 .gallery-title,
.recipe-details .card-style02 .directions {
    color: #bd1f17;
}

.btn-style1 {
    font-family: var(--paragraph);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #bd1f17;
    padding: 12px 25px 14px 25px !important;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
}

.btn-style1.secondary:hover {
    background: #ECBA23;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    border: 10px solid #fff;
}

.gallery a {
    display: block;
    text-decoration: none;
    width: 25%;
    overflow: hidden;
    outline: none;
}

.gallery a img {
    height: 100%;
    transform: scale(1, 1);
    transition: all 300ms ease;
}

.gallery a img:hover {
    transform: scale(1.1, 1.1);
}

.gallery .bg {
    width: 100%;
    height: 350px;
    margin: 12px;
    background-size: cover;
    transform: scale(1, 1);
    transition: all 300ms ease;
}

.gallery .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    font-family: var(--paragraph);
}

.gallery .bg:hover {
    transform: scale(1.1, 1.1);
}

.youtube-video-section{
    padding: 30px 0;
}

.youtube-video{
    display: flex;
}

.youtube-video .video-container {
    position: relative;
    width: 50%;
    text-align: center;
    margin: 12px;
}

.youtube-video img {
    width: 100%;
    height: auto;
}

.youtube-video a {
    text-decoration: none;
}

.youtube-video .video-title {
    display: block;
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    font-family: var(--paragraph);
}

.youtube-video .play-icon {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:#bd1f17;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}


@media(max-width: 991px) {

    .gallery a {
        width: 50%;
    }
    .youtube-video .video-container {
        width: 100%;
    }

    .youtube-video{
        flex-wrap: wrap;
    }


}

@media(max-width: 767px) {

    .gallery a {
        width: 100%;
    }

    .bg {
        height: 300px;
    }

}

.home-about {
    padding: 40px 0;
    overflow: hidden;
    background: linear-gradient(0deg, #f3f3f3, #efe8c8);
}

.about-cover-background {
    background-image: url(img/bg/bg-01.png);
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.home-about img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 5px;
}

.home-about .sub-heading {
    color: #bd1f17;
    font-weight: 700;
    font-size: 1.75rem;
}

.home-about .section-title-01 .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 79px;
    text-align: center;
    justify-content: center;
    height: 2px;
    background: #bd1f17;
}

.blog-section {
    padding: 40px 0;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.blog-section .blog-sub-heading {
    color: #bd1f17;
    font-weight: 700;
    font-size: 1.75rem;
}

.blog-section .blog-title {
    color: #000000;
}

.blog-section .blog-title:hover {
    color: #bd1f17;
}

.blog-section .section-title-01 .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 79px;
    text-align: center;
    justify-content: center;
    height: 2px;
    background: #bd1f17;
}

.blog-section a {
    text-decoration: none;
}

.blog-section .blog-style-01 {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.blog-section .blog-style-01:hover .blog-img .image a:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear
}

.blog-section .blog-style-01:hover .blog-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.blog-section .blog-style-01:hover .content-box {
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1)
}

.blog-section .blog-style-01 .blog-img .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease
}

.blog-section .blog-style-01 .blog-img .image a:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear
}

.blog-section .blog-style-01 .content-box {
    position: relative;
    margin-top: -65px;
    margin-left: 30px;
    padding: 30px 40px 35px 40px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease
}

.blog-section .blog-style-01 .content-box span {
    color: #bd1f17;
}

.blog-section .blog-style-01 .blog-img .date {
    position: absolute;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    background-color: #bd1f17;
    font-size: 12px;
    color: #fff;
    padding: 5px 20px;
    font-weight: 700;
    top: 14px;
    left: 20px
}

.blog-section .blog-style-01 .content-box .text {
    margin-bottom: 15px
}

.blog-section .blog-style-01 .content-box .button-01 {
    position: relative;
    font-size: 12px;
    line-height: 25px;
    color: #0f0f0f;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear
}

.blog-section .blog-style-01 .content-box .button-01 i {
    margin-right: 10px;
    font-size: 16px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear
}

.blog-section .blog-style-01 .content-box .button-01:hover,
.blog-section .blog-style-01 .content-box .button-01:active,
.blog-section .blog-style-01 .content-box .button-01:focus {
    color: #bd1f17;
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px)
}

.blog-section .blog-style-01 .content-box .button-01:hover i,
.blog-section .blog-style-01 .content-box .button-01:active i,
.blog-section .blog-style-01 .content-box .button-01:focus i {
    opacity: 0;
    -webkit-transform: translateX(15px);
    transform: translateX(15px)
}

@media screen and (max-width: 991px) {
    .blog-section .blog-style-01 .content-box {
        padding: 20px 30px 25px 30px
    }
}

@media screen and (max-width: 575px) {
    .blog-section .blog-style-01 .content-box {
        margin-top: -45px
    }
}

.blog-details-section {
    padding: 60px 0;
}

.blog-details-section a {
    color: #000;
    text-decoration: none;
}

.blog-details-section a i {
    color: #bd1f17;
}

.blog-details-section .blog-tags a {
    background-color: #bd1f17;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #bd1f17;
}

.history-section {
    padding: 80px 0;
}

.timeline {
    width: 100%;
}


.timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
    margin-left: 0;
    padding-right: 44px;
    padding-left: 0;
    text-align: right;
}

.timeline.timeline-wrapper .timeline-item {
    position: relative;
    padding-bottom: 44px;
    padding-left: 44px;
    text-align: left;
}

.timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before {
    right: 0;
    left: auto;
    margin-right: -8px;
}

.timeline.timeline-wrapper .timeline-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 20px;
    z-index: 2;
    height: 20px;
    margin-left: -10px;
    border: 4px solid #bd1f17;
    background: #fafafa;
    box-shadow: 0 0 0 4px #fcfcfc;
    border-radius: 50%;
}

.timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
    right: 0;
    left: auto;
}

.timeline.timeline-wrapper .timeline-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 10px;
    height: 100%;
    width: 4px;
    margin-top: 9px;
    margin-left: -4px;
    background-color: #bd1f17;
}

.timeline-item .timeline-content {
    padding-right: 30px;
}

.cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

@media screen and (max-width: 767px) {
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
        padding-left: 25px;
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
        text-align: left;
        padding-left: 35px;
        padding-right: 0;
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1) {
        padding-right: 35px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .timeline.timeline-wrapper .timeline-item {
        padding-left: 25px;
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .timeline.timeline-wrapper .timeline-item {
        width: 100%;
        margin-left: 0;
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .timeline.timeline-wrapper .timeline-item {
        padding-left: 35px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before,
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
        right: auto;
        left: 0;
    }
}

@media screen and (max-width: 991px) {

    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before,
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
        right: auto;
        left: 0;
    }
}

@media screen and (max-width: 567px) {
    .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):before, .timeline.timeline-wrapper .timeline-item:nth-child(2n+1):after {
        left: 15px;
    }
    .timeline.timeline-wrapper .timeline-item:before,
    .timeline.timeline-wrapper .timeline-item:after{
        left: 15px;
    }
    .history-column-reverse{
        flex-direction: column-reverse;
    }
}

/** product **/

.product-details-section {
    padding: 60px 0;
}

.product-details-section .product-image .product-image-main {
    position: relative;
    display: block;
    height: 480px;
    background: var(--bg-grey);
    padding: 10px;
}

.product-details-section .product-image-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details-section .product-image-slider {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.product-details-section .product-image-slider img {
    width: 90px;
    height: 90px;
    background: var(--bg-grey);
    padding: 6px;
    cursor: pointer;
}

.product-details-section .product-title {
    margin-top: 20px;

}

/** product rating **/
.product-details-section .product-rating {
    display: flex;
    margin-top: 4px;
    margin-bottom: 10px;
    align-items: center;
}

.product-details-section .product-rating span:not(:last-child) {
    color: #ffc600;
}

.product-details-section .product-rating .review {
    color: var(--grey);
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
}

/** Product price **/
.product-details-section .product-price {
    display: flex;
    position: relative;
    margin: 5pxpx 0;
    align-items: center;
}

.product-details-section .product-price .offer-price {
    font-size: 40px;
    font-weight: 700;
    color: #bd1f17;
}

.product-details-section .product-price .sale-price {
    font-size: 20px;
    font-weight: 500;
    text-decoration: line-through;
    color: #000;
    margin-left: 12px;
}

.product-details-section .description {
    margin: 20px 0 30px;
}

.product-details-section .description span {
    color: #bd1f17;
}

.product-details-section .price-text {
    color: #000;
}

.product-details-section .divider {
    display: block;
    height: 1px;
    width: 100%;
    background: #48484830;
    margin: 10px 0;
}

.product-details-section .product-btn-group {
    display: flex;
    align-items: center;
}

@media screen and (max-width:520px) {
    .product-details-section.product-image .product-image-main {
        width: 100%;
        height: 280px;
    }

    .product-details-section .product-image-slider {
        gap: 5px;
    }

    .product-details-section .breadcrumb {
        display: none;
    }

    .product-details-section .product-btn-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.product-details-section .rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    height: 150px;
    position: relative;
}

.product-details-section .rating-0 {
    filter: grayscale(100%);
}

.product-details-section .rating>input {
    display: none;
}

.product-details-section .rating>label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: .3s;
}

.product-details-section .rating>input:checked~label,
.product-details-section .rating>input:checked~label~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}


.product-details-section .rating>input:not(:checked)~label:hover,
.product-details-section .rating>input:not(:checked)~label:hover~label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.product-details-section .emoji-wrapper {
    width: 100%;
    text-align: center;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.product-details-section .emoji-wrapper:before,
.product-details-section .emoji-wrapper:after {
    content: "";
    height: 15px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}

.product-details-section .emoji-wrapper:before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
}

.product-details-section .emoji-wrapper:after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
}

.product-details-section .emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s;
}

.product-details-section .emoji>svg {
    margin: 15px 0;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

#rating-1:checked~.emoji-wrapper>.emoji {
    transform: translateY(-100px);
}

#rating-2:checked~.emoji-wrapper>.emoji {
    transform: translateY(-200px);
}

#rating-3:checked~.emoji-wrapper>.emoji {
    transform: translateY(-300px);
}

#rating-4:checked~.emoji-wrapper>.emoji {
    transform: translateY(-400px);
}

#rating-5:checked~.emoji-wrapper>.emoji {
    transform: translateY(-500px);
}

.product-details-section .feedback {
    width: 100%;
    padding: 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.product-details-section .quantity {
    display: flex;
    border: 1px solid #bd1f17;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-details-section .quantity button {
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}

.product-details-section .input-box {
    width: 52px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
}

/* Hide the number input spin buttons */
.product-details-section .input-box::-webkit-inner-spin-button,
.product-details-section .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-details-section .nav {
    box-shadow: 0px 10px 10px -15px;
}

.product-details-section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #bd1f17;
    color: #fff;
}

.product-details-section .nav-pills .nav-link {
    color: #000;
    border-radius: unset;
}


header .notification img {
    width: 100px;
}

.video-section {
    padding: 60px 0 50vh;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.video-style02 {
    margin-top: -40vh;
}

.video-style02 .video_btn {
    width: 90px;
    height: 90px;
    line-height: 90px;
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #e74860;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}

#readMoreLink a,
#readLessLink a {
    text-decoration: none;
    color: #963a29;
    font-weight: 700;
}


.home-slider .item {
    height: 80vh;
    position: relative;
}

.home-slider .item img {
    width: 100%;
    height: 100%;
}

.home-slider .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.home-slider .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

.home-slider .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.home-slider .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

.home-slider .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fcc132;
}

.home-slider .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

.home-slider .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.home-slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.home-slider .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.home-slider .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.home-slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.home-slider .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.home-slider .owl-nav .owl-prev:focus {
    outline: 0;
}

.home-slider .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.home-slider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.home-slider .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.home-slider .owl-nav .owl-next:focus {
    outline: 0;
}

.home-slider .owl-nav .owl-next:hover {
    background: #000 !important;
}

.home-slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.home-slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

.bg-orange {
    background-color: #fd7e14;
}


.marination-section {
    background: linear-gradient(0deg, #f3f3f3, #facfd6);
    padding: 40px 0;
}

.marination-section p {
    color: #777;
}

.marination-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.marination-section .marination-details .nav-pills .nav-item button {
    position: relative;
    font-size: 16px;
    min-width: 130px;
    text-align: center;
    margin-right: 15px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
}

.marination-section .nav-pills .nav-item button {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 20px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    background: #fff;
    color: #bd1f17;
    text-align: left;
    border-radius: 0;
}

.marination-section .nav-pills .yellow .active {
    margin-bottom: -1px;
    background-color: #fcc132;
    color: #fff;
}

.marination-section .nav-pills .achari .active {
    margin-bottom: -1px;
    background-color: #ee8014;
    color: #fff;
}

.marination-section .nav-pills .red .active {
    margin-bottom: -1px;
    background-color: #bd1f17;
    color: #fff;
}

.marination-section .nav-pills .hariyali .active {
    margin-bottom: -1px;
    background-color: #99c02a;
    color: #fff;
}

@media (max-width: 576px) {
    .marination-section .nav-pills .red,
    .marination-section .nav-pills .hariyali{
        margin-top: 20px;
    }
}

.marination-section .nav-pills .yellow .active:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-width: 0 0 1px 1px;
    transform: translateX(-50%) rotate(-45deg);
    transition-delay: 0.07s;
    background: #fcc132;
}

.marination-section .nav-pills .achari .active:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-width: 0 0 1px 1px;
    transform: translateX(-50%) rotate(-45deg);
    transition-delay: 0.07s;
    background: #ee8014;
}

.marination-section .nav-pills .red .active:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-width: 0 0 1px 1px;
    transform: translateX(-50%) rotate(-45deg);
    transition-delay: 0.07s;
    background: #bd1f17;
}

.marination-section .nav-pills .hariyali .active:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 13px;
    height: 13px;
    border-width: 0 0 1px 1px;
    transform: translateX(-50%) rotate(-45deg);
    transition-delay: 0.07s;
    background: #99c02a;
}

.marination-section .tab-content ul {
    list-style: none;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
}

.marination-section .tab-content ul i {
    color: #bd1f17;
}

.marination-section .tab-content ul li {
    font-weight: 600;
    font-size: 18px;
    font-family: var(--paragraph);
}

.backToTopBtn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    z-index: 1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: #ffffff;
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
}

.backToTopBtn:not(:hover) {
    background: #bd1f17;
}

.backToTopBtn:hover {
    background: #bd1f17;
}

.backToTopBtn.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.backToTopBtn:not(.active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    z-index: 1;
    right: 20px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-play-state: paused;
}

.btn-call-pulse {
    background: #1b9bab;
    color: white;
    position: fixed;
    bottom: 90px;
    z-index: 1;
    right: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .owl-carousel .owl-item .banner-image {
        max-width: none;
        width: auto;
    }
}
