 /* FONTS */
 @import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Balerno-Regular:wght@200;300;400;500;600;700&display=swap');

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Poppins:wght@200;300;400;500;600;700&display=swap');


 /* FONTS FAMILY
@font-family: 'Antic Didone', serif;
@font-family: 'Balerno-Regular', sans-serif;
@font-family: 'Gambetta', serif;
*/

 @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
 @import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

 @font-face{
    font-family: Balerno-Regular;
    src: url(../Fonts/Balerno-Serif-Family/Balerno-Rg.otf);
 }


 * {
     box-sizing: border-box;
 }

/* ::-webkit-scrollbar {
     display: none;
 }*/

 a {
     text-decoration: none !important;
 }


 html,
 body {
     width: 100%;
     height: 100%;
     margin: 0px;
     padding: 0px;
     /* overflow-x: hidden; */
     scroll-behavior: smooth;
     margin: 0;
 }


.desktophide {
    display: none;
}

@media only screen and (max-width: 600px) {
    .new {
        display: flex;
        flex-flow: column-reverse;
    }

    .mobilehide {
        display: none;
    }

    .mobileshow {
        display: block;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

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




/*-------------------------------------------------------- NAVBAR ----------------------------------------------*/
.first-order1 {
    font-family: 'Gambetta';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
}


.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

.nav-hover .first-order:hover {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
    text-decoration: underline !important;
    transition: 0.2s ease-out;
}


/* .nav-hover:hover{
    text-decoration: underline;
    text-decoration-color: red !important;
} */


.navbar-bg {
    background: #FFFFFF;
    opacity: 0.95;
}

@media screen and (min-width:768px) {
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        display: block;
        width: 160px;
        text-align: center;
    }

    .navbar > .container .navbar-brand-centered,
    .navbar > .container-fluid .navbar-brand-centered {
        margin-left: -80px;
    }
}


/* CORE STYLES */
:root {
    /* --primary-color: rgba(13, 110, 139, 0.75); */
    --overlay-color: rgba(24, 39, 51, 0.85);
    --menu-speed: 0.75s;
}


.showcase {
    color: #fff;
    height: 100vh;
}

    .showcase:before {
        content: '';
        background: url(../img/istockphoto-508019156-640_adpp_is\ 1.png) no-repeat center center/cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .showcase .showcase-inner {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        text-align: center;
        height: 100%;
    }

/* .showcase h1 {
     font-size: 4rem;
 } */

/* .showcase p {
    font-size: 1.3rem;
  } */

.btn {
    display: inline-block;
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.3rem;
    margin-top: 1rem;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
}

    .btn:hover {
        opacity: 0.7;
    }


 /* MENU STYLES */
 .menu-wrap {

     top: 0;
     left: 0;
     z-index: 1;
 }

 .menu-wrap .toggler {
     position: absolute;
     top: 0;
     left: 0;
     z-index: 2;
     cursor: pointer;
     width: 50px;
     height: 50px;
     opacity: 0;
 }

 .menu-wrap .hamburger {
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
     width: 60px;
     height: 70px;
     padding: 1rem;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Hamburger Line */
 .menu-wrap .hamburger>div {
     position: relative;
     flex: none;
     width: 100%;
     height: 2px;
     background: #323232;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
 }

 /* Hamburger Lines - Top & Bottom */
 .menu-wrap .hamburger>div::before,
 .menu-wrap .hamburger>div::after {
     content: '';
     position: absolute;
     z-index: 1;
     top: -10px;
     width: 100%;
     height: 2px;
     background: inherit;
 }

 /* Moves Line Down */
 .menu-wrap .hamburger>div::after {
     top: 10px;
 }

 /* Toggler Animation */
 .menu-wrap .toggler:checked+.hamburger>div {
     transform: rotate(135deg);
 }

 /* Turns Lines Into X */
 .menu-wrap .toggler:checked+.hamburger>div:before,
 .menu-wrap .toggler:checked+.hamburger>div:after {
     top: 0;
     transform: rotate(90deg);
 }

 /* Rotate On Hover When Checked */
 .menu-wrap .toggler:checked:hover+.hamburger>div {
     transform: rotate(225deg);
 }

 /* Show Menu */
 .menu-wrap .toggler:checked~.menu {
     visibility: visible;
 }

 .menu-wrap .toggler:checked~.menu>div {
     transform: scale(1);
     transition-duration: var(--menu-speed);
 }

 .menu-wrap .toggler:checked~.menu>div>div {
     opacity: 1;
     transition: opacity 0.4s ease 0.4s;
 }

 .nav-menu-bg-1 {
     content: url(../img/nav-menu-bg.png);
     object-fit: contain;
     background-repeat: no-repeat;
 }

 .nav-menu-text {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 32px;
     line-height: 38px;
     color: #FFFFFF;
 }


 .nav-menu-text:hover {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 33px;
     line-height: 38px;
     color: #FFFFFF;
     text-decoration: underline !important;
     transition: 0.2s ease-out;

 }

 .menu-wrap .menu {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     visibility: hidden;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .menu-wrap .menu>div {
     background: #986C50;
     height: 100vw;
     display: flex;
     flex: none;
     align-items: center;
     justify-content: center;
     transform: scale(0);
     transition: all 0.4s ease;
 }

 .menu-wrap .menu>div>div {
     text-align: center;
     max-width: 90vw;
     max-height: 100vh;
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .menu-wrap .menu>div>div>ul>li {
     list-style: none;
     color: #fff;
     font-size: 1.5rem;
     padding: 1rem;
 }

 .menu-wrap .menu>div>div>ul>li>a {
     color: inherit;
     text-decoration: none;
     transition: color 0.4s ease;
 }



 .pasta-text1 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 500;
     font-size: 18px;
     line-height: 24px;
     text-align: center;
     text-decoration-line: underline;
     color: #0F0F33;
 }


 .pasta-text2 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 48px;
     line-height: 56px;
     color: #07060C;
 }


 .pasta-text3 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 18px;
     line-height: 24px;
     text-align: center;
     color: #343230;
 }



.pasta-text4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #343230;
}

 .dish-text {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 32px;
     line-height: 38px;
     text-align: center;
     color:  #07060C;
 }


 .indi-text1 {
     font-family: 'Gambetta';
     font-style: italic;
     font-weight: 400;
     font-size: 24px;
     color: #07060C;
     opacity: 0.4;
 }

 .indi-text2 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 48px;
     color: #07060C;
 }

 .indi-text3 li {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 20px;
     line-height: 40px;
     color: #343230;
 }

 .indi-text4 li {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 20px;
     line-height: 40px;
     color: #343230;
 }

 .indi-range1 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 48px;
     line-height: 56px;
     color: #2D2B29;
 }

.indi-range2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #343230;
}


 .more-recipes1 {
     font-family: 'Gambetta';
     font-style: italic;
     font-weight: 400;
     font-size: 24px;
     line-height: 32px;
     text-align: center;
     opacity: 0.4;
 }


 .more-recipes2 {
     font-family: 'Balerno-Regular';
     font-style: normal;
     font-weight: 400;
     font-size: 48px;
     line-height: 56px;
     text-align: center;
 }

.more-recipes3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #343230;
}

.recipes-text4-indi {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-decoration-line: underline !important;
    color: #0F0F33 !important;
}

.category-animate-text-indie {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    color: #343230;
}


.category-animate-text1-indie1 {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #0F0F33;
}

.quick-btn {
    background: #F6BB3A;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    color: #07060C;
}

.recipe-btn {
    background: #07060C;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    color: #ffffff;
}

.quick-btn:hover {
    background: #F6BB3A;;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    color: #07060C;
}

.recipe-btn:hover {
    background: #07060C;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    color: #ffffff;
}


.card-indie {
    width: 100%;
    border: none;
     height: 350px;
  max-width: 380px;
    overflow: hidden;
    position: relative;
    display: flex;
    cursor: pointer;
    justify-content: center;
    transition: all ease 0.4s
}

.card-indie:hover {
    filter: drop-shadow(0px 4px 18px rgba(177, 177, 177, 0.24));
}

.card-indie img {
    transition: all ease 0.4s
}

.card-indie:hover img {
    margin-top: -70px
}

.card .content {
    width: 100%;
    background: transparent;
    position: absolute;
    bottom: -60%;
    margin-left: -8px;
    transition: all ease 0.5s;
  /*  box-shadow: 0px -3px 4px rgba(149, 149, 149, 0.09);*/
}

.card-indie .content .category {
    font-size: 17px;
    font-weight: 600
}

.card-indie .content .price {
    font-size: 17px;
    font-weight: 500;
    color: #0d6efd
}

.card-indie .content p {
    font-weight: 500;
    font-size: 12px
}

.card-indie:hover .content {
    bottom: 0%
}

.buttons button {
    border-radius: 1px;
    margin-bottom: 10px;
    transition: all ease 0.3s
}





.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: opacity .6s ease;
    border-radius: 100%;
}

.carousel-indicators {
    margin-bottom: -20px;
}


.marq-text h1{
    font-family: 'Balerno-Regular';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 30px;
color: #343230;
}

.marq-text1{
    background: #EBEBEB;
}

.recipes-text3{
    font-family: 'Gambetta';
font-style: normal;
font-weight: 600;
font-size: 23px;
line-height: 32px;
text-align: center;
color: #07060C;
}





 /* MOBILE SCREEN */
 @media only screen and (max-width: 600px) {
    .btn-primary1 {
        background: #986C50;
        border-radius: 104px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 21px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #FFFFFF;
        margin-top: 20px;
    }

    .pasta-text1 {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        text-decoration-line: underline;
        color: #0F0F33;
    }

    .pasta-text2 {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        /* line-height: 56px; */
        color: #07060C;
    }

    .dish-text {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #07060C;
        margin-top: 2rem;
    }

    .indi-text1 {
        font-family: 'Gambetta';
        font-style: italic;
        font-weight: 400;
        font-size: 20px;
        color: #07060C;
        opacity: 0.4;
    }

    .indi-text2 {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        color: #07060C;
    }

    .indi-text3 li {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 30px;
        color: #343230;
    }

    .indi-range1 {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 40px;
        color: #0F0F33;
    }


    .more-recipes1 {
        font-family: 'Gambetta';
        font-style: italic;
        font-weight: 400;
        font-size: 18px;
        line-height: 20px;
        color: #0F0F33;
        text-align: center;
        opacity: 0.4;
    }


    .more-recipes2 {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 26px;
        line-height: 30px;
        text-align: center;
        color: #0F0F33;
    }

    .recipes-text3{
        font-family: 'Gambetta';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #07060C;
    }

    .carousel-indicators {
        margin-bottom: -50px;
    }



}


.breadcrumb a {
    color: #8C8C8C;
}


    .breadcrumb a:hover {
        color: #343230;
    }


.nav-menu-text {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #07060C;
}


    .nav-menu-text:hover {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 38px;
        color: #07060C;
        text-decoration: underline !important;
        transition: 0.2s ease-out;
    }

.menu-wrap .menu > div {
    background: #EBEBEB;
    height: 100vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}


.btn-primary1 {
    background: #F6BB3A;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #07060C;
    margin-top: -1px;
}

    .btn-primary1:hover {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: -1px;
    }





/*------------------------------------------------------- NAV & HEADER -------------------------------------------------------*/
.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

    .first-order:hover {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
        text-decoration: none;
        color: #07060C;
    }


.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #07060C;
}

    .hover-underline-animation:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #07060C;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }




.callout {
    position: relative;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}


.nav-menu-bg-1 {
    content: url(../img/nav-menu-bg.png);
    object-fit: contain;
    background-repeat: round;
    height: 100vh;
    width: fit-content;
}



.nav-menu-text {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #07060C;
}


    .nav-menu-text:hover {
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 38px;
        color: #07060C;
        text-decoration: none !important;
    }

.first-order {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
}

.nav-hover .first-order:hover {
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #07060C;
    text-decoration: none !important;
}

/*------------------------------------------------------- NAV & HEADER -------------------------------------------------------*/




.newletter1 {
    border: 1px solid #ffffff;
    border-radius: 0px;
    font-family: 'Balerno-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.cta-btn3 {
    cursor: pointer;
    clear: both;
    padding: 12px 78px;
    display: inline-block;
    transition: all 0.8s, color 0.3s 0.3s;
    cursor: pointer;
    border: 1.5px solid #07060C;
    background: bottom;
}

    .cta-btn3:hover {
        cursor: pointer;
        clear: both;
        padding: 12px 78px;
        display: inline-block;
        transition: all 0.8s, color 0.3s 0.3s;
        cursor: pointer;
        border: 1.5px solid #F6BB3A;
    }

    a:hover,
    .cta-btn3:hover {
        color: #07060C;
    }

.cta-btn4:hover {
    box-shadow: 0 150px 0 0 rgba(246, 187, 58, 1)inset;
}

.cta-btn3-text {
    font-family: 'Balerno-Regular', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-decoration-line: underline;
    color: #07060C;
}

@media only screen and (max-width: 600px) {
    .btn-primary1 {
        background: #F6BB3A;
        border-radius: 0px;
        font-family: 'Balerno-Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 21px;
        text-align: center;
        letter-spacing: 0.02em;
        color: #07060C;
        margin-top: 20px;
    }
}

.form-control-footer {
    background: #0F0F33;
}

.nav-menu-bg-1 {
    content: url(../New-IMG/New-homepgae/new-menu.webp);
    object-fit: contain;
    background-repeat: round;
    height: 100vh;
    width: fit-content;
}