:root {
    --blue-color: #0092a4;
    --brown-color: #401300;
    --green-color: #71952d;
    --orange-color: #e18e31;
    --brown-brownie: #463931;
    --black-color: #000000;
    --white-color: #ffffff;
    --ff-redkits: "redkits", sans-serif;
    --ff-philosopher: "Philosopher", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
    --gray-color: #535353;
}
@font-face {
    font-family: "redkits";
    src: url("../fonts/redkits-webfont.woff") format("woff");
}
* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: var(--ff-poppins);
    font-style: normal;
    overflow: hidden;
}
html,
body {
    overflow-x: hidden !important;
}
img {
    max-width: 100%;
}
ul,
li {
    list-style-type: none;
}
a {
    text-decoration: none;
    color: var(--black-color);
}
.vh100 {
    height: 100vh;
}
.relative {
    position: relative;
}
.v-hidden {
    visibility: hidden;
}
.main {
    visibility: hidden;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.flex {
    display: flex;
}
.flex.justify-content-center {
    justify-content: center;
}
.flex.justify-content-spacebetween {
    justify-content: space-between;
}
.flex.align-items-center {
    align-items: center;
}
.main {
    visibility: hidden;
}
.intro {
    z-index: 22222222;
    visibility: hidden;
    background: url(../images/banner-wave-bg.svg) no-repeat center center;
    background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
}
.intro .intro-content {
    position: relative;
}
.intro .intro-content .intro-logo-front {
    visibility: hidden;
    position: absolute;
    z-index: 2;
}
.header-desktop {
    position: absolute;
    z-index: 22;
    left: 0;
    width: 100%;
    background: url(../images/header-wave.svg) repeat-x;
    background-position: 0 -20px;
}
.header-desktop .nav-wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.header-desktop .nav-wrapper .nav ul {
    display: flex;
    width: 100%;
    gap: 40px;
    padding: 20px 0 0 0;
}
.header-desktop .nav-wrapper .nav ul li {
    position: relative;
    padding-bottom: 20px;
}

.header-desktop .nav-wrapper .nav ul li.subitem::after {
    content: "";
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: -4px;
    position: relative;
    left: 4px;
}

.header-desktop .nav-wrapper .nav ul li a {
    text-transform: uppercase;
}
.header-desktop .nav-wrapper .nav ul li a:hover, .header-desktop .nav-wrapper .nav ul li a.active {
    background:none;
    color:var(--blue-color);
}
.header-desktop .nav-wrapper .nav ul li .submenu {
    display: none;
    padding: 20px;
    position: absolute;
    border-top: 3px solid var(--blue-color);
    left: 0%;
    top: 100%;
    background-color: var(--white-color);
    width: 200px;
}
.header-desktop .nav-wrapper .nav ul li .submenu li {
    padding: 0px;
    width: 100%;
    line-height: 22px;
}
.header-desktop .nav-wrapper .nav ul li .submenu li a{
    font-size:16px;
    line-height: 25px;
}
.header-desktop .nav-wrapper .nav ul li:hover .submenu {
    display: block;
}
.header-desktop .nav-wrapper .nav-button ul {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 20px 0 0 0;
}
.header-desktop .nav-wrapper .nav-button ul li a {
    text-transform: uppercase;
}
.header-desktop .nav-wrapper .nav-button ul li a.button {
    border-radius: 50px;
    background-color: var(--brown-color);
    color: var(--white-color);
    padding: 10px 20px;
}
.mobile-logo {
    z-index: 999;
    position: fixed;
    line-height: 0px;
    padding-left: 10px;
    left: 0;
    top: 20px;
}
.mobile-logo::after {
    content: "";
    position: absolute;
    width: 70%;
    height: calc(100% - 12px);
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    top: 6px;
    z-index: -1;
}
.mobile-logo img {
    width: 120px;
    line-height: 0;
}
.menu-button {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 50px;
    padding: 10px 10px 10px 50px;
    color: var(--white-color);
    cursor: pointer;
    border-radius: 50px 0 0 50px;
    background: url("../images/menu-icon.svg") no-repeat 10px center var(--brown-color);
    background-size: 30px;
}
.menu-button:hover {
    background-color: var(--blue-color);
}
.menu-overlay {
    z-index: 2;
    position: fixed;
    z-index: 9999;
    background-color: var(--blue-color);
    width: 50%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    clip-path: circle(0%);
    right: 0;
    top: 0;
}
.menu-overlay .nav-mobile {
    display: grid;
    place-content: center;
    height: 100%;
}
.menu-overlay .nav-mobile ul {
    list-style: none;
    padding-left: 0;
}
.menu-overlay .nav-mobile ul li {
    opacity: 0;
    margin-bottom: 20px;
}
.menu-overlay .nav-mobile ul li a {
    text-decoration: none;
    font-size: 36px;
    color: var(--white-color);
    font-family: var(--ff-redkits);
    transition: 0.5s;
}
.menu-overlay .nav-mobile ul li a:hover {
    margin-left: 30px;
}
.menu-overlay .menu-nav-close {
    position: absolute;
    right: 40px;
    top: 30px;
    height: 40px;
    width: 40px;
    background: url("../images/close-cross.svg") no-repeat;
    transition: 0.5s;
}
.menu-overlay .menu-nav-close:hover {
    transform: rotate(90deg);
}
.menu-overlay .menu-logo {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 70px;
}
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    border: 2px solid var(--blue-color);
    transition: transform 0.3s ease;
    transform-origin: center center;
    pointer-events: none;
    z-index: 1000;
}
.grow,
.grow-small {
    transform: scale(0.1);
    background: var(--white-color);
    mix-blend-mode: difference;
    border: none;
}
.grow-small {
    transform: scale(1);
}
.hero-cookie-rotate {
    width: 100%;
    display: block;
    text-align: center;
    position: fixed;
    transform: translateY(-30%);
}
.hero-cookie-rotate img {
    width: 60%;
}
.hero-section {
    background: url(../images/hero-banner-bg.jpg) no-repeat center center;
    background-size: cover;
}
.hero-section .choco-chips {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: url("../images/choco-chips-bg.png") no-repeat center center;
    background-size: contain;
}
.hero-section .hero-banner-images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    text-align: center;
}
.hero-section .hero-banner-images .hero-images-wrapper {
    transform: translateY(-80px);
}
.hero-section .hero-banner-images .hero-images-wrapper span {
    display: inline-block;
    position: relative;
}
.hero-section .hero-banner-images .hero-images-wrapper .hero-bread {
     width: clamp(20px, 22vw, 250px);
    transform: translateY(70%);
    right: -30px;
}
.hero-section .hero-banner-images .hero-images-wrapper .hero-cupcake {
    width: clamp(20px, 22vw, 350px);
    transform: translateY(-20px);
    transform: rotate(-22deg);
}
.hero-section .hero-banner-images .hero-images-wrapper .hero-brownie {
     width: clamp(20px, 22vw, 250px);
    transform: translateY(60%);
    right: 30px;
}
.hero-section .hero-banner-images .hero-images-wrapper .hero-cookie {
    width: 100%;
    display: block;
    text-align: center;
    position: absolute;
    transform: translateY(-30%);
}
.hero-section .hero-banner-images .hero-images-wrapper .hero-cookie img {
    width: 45%;
}
.hero-section .hero-banner-text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    text-align: center;
}
.hero-section .hero-banner-text .hero-text-wrapper .title {
    font-size: clamp(14px, 10vw, 250px);
    line-height: 90%;
    color: var(--white-color);
    font-family: var(--ff-philosopher);
    transform: translateX(var(--position-x));
}
.hero-section .hero-banner-text .hero-text-wrapper .sub-title {
    font-size: clamp(16px, 10vw, 100px);
    font-weight: normal;
    line-height: 90%;
    color: var(--brown-color);
    font-family: var(--ff-redkits);
}
.slider-container {
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.slider-container.cookies .choco-chunk {
    background-image: url("../images/products/cookies/choco-chunk.jpg");
}
.slider-container.cookies .double-choco {
    background-image: url("../images/products/cookies/double-choco.jpg");
}
.slider-container.cookies .cream-cheese {
    background-image: url("../images/products/cookies/cream-cheese.jpg");
}
.slider-container.cookies .nutella {
    background-image: url("../images/products/cookies/nutella.jpg");
}
.slider-container.cookies .oatmeal {
    background-image: url("../images/products/cookies/oatmeal.jpg");
}
.slider-container.brownies .belgian {
    background-image: url("../images/products/brownie/belgian-brownie.jpg");
}
.slider-container.brownies .walnut {
    background-image: url("../images/products/brownie/walnut-brownie.jpg");
}
.slider-container.brownies .cream-cheese {
    background-image: url("../images/products/brownie/cream-brownies.jpg");
}
.slider-container.brownies .nutella {
    background-image: url("../images/products/brownie/nutella-brownie.jpg");
}
.slider-container.breads .olive-potato {
    background-image: url("../images/products/breads/olive-potato.jpg");
}
.slider-container.breads .bread2 {
    background-image: url("../images/products/breads/2.jpg");
}
.slider-container.breads .bread3 {
    background-image: url("../images/products/breads/3.jpg");
}
.slider-container.breads .bread4 {
    background-image: url("../images/products/breads/4.jpg");
}
.slider-container.breads .chilly-tomato {
    background-image: url("../images/products/breads/chilly-tomato.jpg");
}
.slider-container.cupcakes .cupcake-almonds {
    background-image: url("../images/products/cup-cake/cupcake-almonds.jpg");
}
.slider-container .panel-container {
    display: flex;
    justify-content: end;
    align-items: end;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    
}
.slider-container .panel-container .panel-wrap {
    max-width: 480px;
}
.slider-container .panel-container .panel-wrap .panel-content {
    position: relative;
    z-index: 44444;
    padding: 20px;
    margin-right: 80px;
    margin-bottom: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
}
.slider-container .panel-container .panel-wrap .panel-content .panel-title {
    font-family: var(--ff-philosopher);
    color: var(--brown-color);
    font-size: clamp(20px, 2vw, 60px);
}
.slider-container .panel-container .panel-wrap .panel-content .panel-description {
    margin: 10px 0;
    font-size: 14px;
}
.slider-container .panel-container .panel-wrap .panel-content .panel-button {
    display: inline-block;
    margin-top: 10px;
    background: var(--brown-color);
    padding: 5px 10px;
    color: var(--white-color);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 12px;
}
.slider-container .panel-container .panel-wrap .panel-content .panel-button:hover {
    background: var(--blue-color);
}
.product-heading {
    position: relative;
    padding: 5% 0;
}
.move {
    position: absolute;
    bottom: 100%;
    z-index: 8;
    right: var(--right-pos);
    visibility: hidden;
}
.product-title {
    padding: 30px;
}
.product-title.center {
    text-align: center;
}
.product-title .title {
    font-size: clamp(16px, 20vw, 600px);
    font-weight: normal;
    color: var(--blue-color);
    font-family: var(--ff-philosopher);
    position: relative;
    z-index: var(--z-index);
}
.product-title .sub-title {
    font-size: clamp(16px, 12vw, 150px);
    font-weight: normal;
    line-height: 90%;
    color: var(--brown-color);
    font-family: var(--ff-redkits);
    position: relative;
    z-index: var(--z-index);
}
.about-info {
    background-color: var(--blue-color);
    padding: 50px 0;
    border-radius: 50px;
    position: relative;
    z-index: 33;
}
.about-info .sub-title {
    font-size: clamp(16px, 10vw, 120px);
    font-weight: normal;
    color: var(--brown-color);
    font-family: var(--ff-redkits);
}
.about-info .bio {
    display: flex;
    margin-top: 50px;
}
.about-info .bio li.pic {
    width: 50%;
    margin-right: 40px;
}
.about-info .bio li .title {
    font-size: clamp(16px, 12vw, 120px);
    line-height: 110px;
    font-family: var(--ff-philosopher);
    color: var(--white-color);
}
.about-info .intro-content {
    display: flex;
}
.about-info .intro-content li {
    width: 33%;
    padding: 30px;
    color: var(--white-color);
}
.about-info .intro-content li p {
    display: block;
    margin-bottom: 20px;
}
.about-info .intro-content li:last-child img {
    margin-top: -50%;
}
.social-section {
    background-color: var(--blue-color);
    padding: 50px 0;
    border-radius: 50px;
    position: relative;
    z-index: 33;
}
.social-section .title {
    font-size: clamp(16px, 7vw, 100px);
    font-weight: normal;
    color: var(--brown-color);
    font-family: var(--ff-redkits);
}
.social-section .insta-dummy {
    padding: 80px 0;
    display: flex;
    gap: 20px;
}
.testimonial-nav {
    display: flex;
    gap: 5px;
}
.testimonial-nav li {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s;
}
.testimonial-nav li:hover {
    opacity: 1;
}
.testimonial-slider {
    padding-top: 50px;
}
.testimonial-slider li.testimonial-item {
    position: relative;
    background: #fff;
    padding: 30px 80px 30px 30px;
    border-radius: 25px;
    margin: 0 20px;
    min-height: 180px;
}
.testimonial-slider li.testimonial-item::before {
    content: "";
    height: 55px;
    width: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
    background: url("../images/testmonial-quotes.svg") no-repeat center center;
    background-size: contain;
}
.testimonial-slider li.testimonial-item p {
    font-weight: normal;
    line-height: 24px;
    font-size: 14px;
    color: var(--gray-color);
}
.testimonial-slider li.testimonial-item abbr {
    display: block;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #d7d7d7;
}
.footer-section {
    width: 100%;
    position: relative;
    padding: 100px 0 0 0;
}
.footer-section .thank-you-section {
    text-align: center;
}
.footer-section .thank-you-section .title {
    font-size: clamp(16px, 10vw, 120px);
    font-weight: normal;
    color: var(--brown-color);
    font-family: var(--ff-philosopher);
}
.footer-section .thank-you-section .download-menu {
    display: inline-block;
    font-size: 40px;
    font-family: var(--ff-philosopher);
    padding: 20px 100px 20px 30px;
    background: url("../images/download-icon.png") no-repeat var(--blue-color);
    background-position: 95% center;
    background-size: 50px;
    color: var(--white-color);
    border-radius: 50px;
}
.footer-section .thank-you-section .download-menu:hover {
    background-color: var(--brown-color);
}
.footer-section .footer-products {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    position: relative;
}
.footer-section .footer-products::after {
    content: "";
    height: 50%;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url("../images/footer-base.png") repeat-x;
    background-position: center center;
}
.footer-section .footer-products img {
    width: 60%;
}
.footer-section .seo-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px;
}
.footer-section .seo-content .seo-title {
    font-family: var(--ff-philosopher);
    display: block;
    margin-bottom: 20px;
}
.footer-section .seo-content .seo-description {
    color: var(--gray-color);
}
.footer-section .footer {
    background-color: #efeded;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    bottom: 0;
    width: 100%;
}
.footer-section .footer ul {
    display: flex;
}
.footer-section .footer ul li {
    margin: 10px;
}
.whatsapp-icon {
    position: fixed;
    right: 0px;
    bottom: 80px;
    width: 70px;
    z-index: 222222;
    padding-right: 20px;
}
.whatsapp-icon a {
    display: block;
}
@media screen and (max-width: 1000px) {
    .hero-section .hero-banner-text .hero-text-wrapper .title {
        font-size: clamp(16px, 14vw, 300px);
        
    }
    .footer-section {
        margin-top: -180px;
    }
    
    .slider-container .panel-container .panel-wrap {
      max-width: inherit;
      width: 100%;
      margin: 0 20px;
      position:relative;
    }
    
    .slider-container .panel-container{
        background-size: contain;
        background-position: 0% 23%;
        justify-content: center;
        align-items: center;
     
    }
    
    .slider-container .panel-container .panel-wrap .panel-content {
        box-shadow: 1px 1px 20px #ccc;
        position:relative;
        margin:0;
    }
    .menu-button{
        top: 25px;
        padding: 3px 8px 3px 35px;
        background-size: 20px;
        font-size: 13px;
    }
    .mobile-logo{
        top: 5px;  
    }
    
    .mobile-logo img {
        width: 80px;
    }
    .hero-section .hero-banner-images {
        height: 50%;
        bottom:0;
    }
    
    
    .hero-banner-text {
        align-items: start !important;
        padding-top: 40%;
    }
    
    .header-desktop {
        display: none;
    }
    .menu-overlay {
        width: 100%;
    }
    
    .move {
        visibility:visible;
        width: 170px;
        top: -80%;
        margin-right: -90px;
        right: 50%;
    }
    
    .hero-section .hero-banner-images .hero-images-wrapper .hero-bread {
        width: clamp(20px, 30vw, 250px);
    }
    .hero-section .hero-banner-images .hero-images-wrapper .hero-cupcake {
        width: clamp(20px, 35vw, 350px);
    }   
    .hero-section .hero-banner-images .hero-images-wrapper .hero-brownie {
        width: clamp(20px, 30vw, 250px);
    }
    .instagram abbr {
        width: 40px;
    }
} /*# sourceMappingURL=home-page.css.map */