@font-face {
    font-family: chewy;
    src: url(../Fonts/Chewy-Regular.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFDEE;
}


/* nav bar stuff */
a {
    text-decoration: none;
    color: #FFFDEE;
}

.nav-bar {
    background-color: #471F0E;
    height: 100px;
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
}

.logo-nav {
    width: 25%;
    padding-left: 40px;
}

.logo-nav img {
    height: 100px;
}

.pills-list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.pill {
    list-style: none;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
}

.nav-pills {
    width: 50%;
}

.cta-button {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
}

.cta-button a {
    background-color: #86CAB2;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 50px;
    color: black;
}



/* footer stuff */
footer {
    height: 400px;
    background-color: #471F0E;
    
}

.guarantees {
    display: flex;
    height: 100px;
    background-color: #ce8137;
    
}

.guarantee {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: chewy, sans-serif;
    font-size: 30px;
    color: #FFFDEE;
}

.guarantee i {
    padding-right: 10px;
}

.actual-footer {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
}

.actual-footer div {
    width: 25%;
}

.logo-footer img {
    width: 75%;
}

.logo-footer div {
    width: 100%;
    padding-left: 20px;
}

.email {
    display: flex;
}

#email {
    padding: 10px;
    width: 275px;
}

#subscribe {
    padding: 10px;
    width: 150px;
    background-color: #86CAB2;
}

h6 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #FFFDEE;
    font-size: 20px;
    padding-top: 25px;
    padding-bottom: 5px;
}

.footer-links, .contact-info {
    list-style: none;
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #FFFDEE;
}

.footer-link {
    padding-bottom: 5px;
}

.contact i {
    padding-right: 5px;
}

.contact {
    padding-bottom: 10px;
}

.open-hours {
    padding-bottom: 5px;
}

.location p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #FFFDEE;
}


/* this is all the product card stuff */

.quantity {
    display: flex;
    border: 2px solid #86CAB2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100px;
    height: 35px;
}

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

.quantity button:hover {
    background-color: #55B493;
}

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


.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}



.pcard-parent {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 52;

        background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.pcard {
    display: flex;
    justify-content: center;
}

.procard {
    height: 550px;
    width: 325px;
    margin: 20px;
    border-radius: 20px;
    background: rgba(235, 208, 182, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(235, 208, 182, 0.51);
    }

.pimg {
    width: 100%;
    height: 60%;
    position: relative;
}

.pimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pname h2 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 42px;
    margin-left: 15px;
    color: #471F0E;
}

.pinfo {
    display: flex;
}

.pinfo p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin-left: 15px;
    font-size: 16px;
    width: 80%;
    margin-bottom: 5px;
}


.addtc {
    background-color: #86CAB2;
    width: 190px;
    height: 35px;
    border-radius: 4px;
    border: none;
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.add {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.pprice p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 25px;
    margin-left: 15px;
    margin-bottom: 10px;
}

.each {
    color: black;
    font-size: 19px;
}

.aub-parent {
    position: sticky;
    width: 100%;
    /* height: 762px; */
    /* margin-bottom: 762px; */
    z-index: 50;
    top: 100px;
}

.aub {
    margin-top: 100px;
    position: relative;
}

.au-heading {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 230px;
    left: 375px;
    line-height: 1;
}

.title-step {
    font-family: chewy, sans-serif;
    font-size: 70px;
    color: #471F0E;
    /* color: #ce8137; */
    display: flex;
    justify-content: center;
}

.title-kitchen {
    font-family: chewy, sans-serif;
    font-size: 160px;
    color: #471F0E;
    /* color: #ce8137; */
    display: flex;
    justify-content: center;
}

.aub img {
    width: 100%;
    height: 762px;
}







/* this is all on the test page */

.story {
    display: flex;
    z-index: 52;
    /* background-color: #FFFDEE; */
    position: sticky;
    top: 100px;
    height: 762px;

    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
    }

.story div {
    margin-top: 10px;
    margin-bottom: 20px;
}

.story-heading {
    width: 50%;
    margin-left: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-left: 25px;
    margin-top: 15px;
    text-align: center;
}

.story-heading h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
}

.story-p p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    margin-right: 90px;
    margin-left: 90px;
    text-align: center;
}

.story-quote p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    margin-left: 70px;
    margin-right: 90px;
}

.promise-parent {
    display: flex;
    z-index: 52;
    position: sticky;
    top: 160px;
    /* background-color: #ffe8d1; */
    height: 702px;
    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.promise-parent h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-left: 25px;
    margin-top: 15px;
}

.promise-text h5 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    margin-bottom: 5px;
    text-align: center;
    /* margin-right: 200px; */

}

.promise-text {
    /* margin-left: 25px; */
    width: 50%;
    width: 50%;
    margin-left: 275px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin-top: 70px;
}

.promise-text p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;

    margin-left: 90px;
    margin-right: 90px;
    text-align: center;
}

.promise-text span {
    color: black;
    font-weight: 600;
    font-size: 20px;
}

.our-team {
    z-index: 52;
    position: sticky;
    top: 220px;
    height: 642px;
    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.our-team h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-left: 25px;
    margin-top: 15px;
}

.our-team h5 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    margin-bottom: 5px;
    text-align: center;
}

.team {
    display: flex;
    justify-content: center;
    
}

.team-img {
    height: 250px;
    width: 250px;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1000px;
}

.team h6 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    color: black;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center; 
}

.team p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    color: black;
    text-align: center;
}

.team-padding {
    padding: 20px;
}


.about-footer {
    position: relative;
    z-index: 53;
}



/* this is the new home page */

.title-welcome {
    font-family: chewy, sans-serif;
    font-size: 70px;
    /* color: #471F0E; */
    color: #ce8137;
    display: flex;
    justify-content: center;
}

.title-unfloured {
    font-family: chewy, sans-serif;
    font-size: 160px;
    /* color: #471F0E; */
    color: #ce8137;
    display: flex;
    justify-content: center;
}

.home-heading {
    background: rgba(71, 31, 14, 0.47);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(1.8px);
-webkit-backdrop-filter: blur(1.8px);
padding: 10px;
}





.welcome-wrapper {
    display: flex;
    z-index: 52;
    /* background-color: #FFFDEE; */
    position: sticky;
    top: 100px;
    height: 762px;
    background: rgba(255, 253, 238, 0.32);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.welcome-heading {
    width: 50%;
    margin-left: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.welcome-heading h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    text-align: center;
}

.welcome-p p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    margin-right: 90px;
    margin-left: 90px;
    text-align: center;
}

.story-quote p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    margin-left: 70px;
    margin-right: 90px;
}



.shop-now {
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-now p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: black;
    font-size: 23px;
    background-color: #86CAB2;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
}






/* this is text */


.sweet-heading {
    position: absolute;
    top: 230px;
    left: 150px;
}

.sweet-parent {
    position: sticky;
    width: 100%;
    /* height: 762px; */
    /* margin-bottom: 762px; */
    z-index: 50;
    top: 100px;
}





/* this is the banner */


    .swb {
    margin-top: 100px;
    position: relative;
    height: 500px;
    width: 100%;
}

.swb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.title-sweets {
    font-family: chewy, sans-serif;
    font-size: 100px;
    color: #471F0E;
    margin-top: 50px;
    margin-left: 0;
    padding-left: 0;
}

.sweet-footer {
    z-index: 70;
    position: relative;
}



/* this is the responsiveness stuff */

@media only screen and (max-width: 600px) {
    .nav-bar {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        position: relative;
    }

    .logo-nav {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 0;
    }

    .logo-nav img {
        height: 70px;
    }

    /* Hamburger icon top-right */
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 35px;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 200;
    }

    .hamburger span {
        background: #FFFDEE;
        position: absolute;
        height: 3px;
        width: 100%;
        left: 0;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { top: 18px; }

    /* Animate to “X” when menu open */
    .nav-bar.open .hamburger span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .nav-bar.open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-bar.open .hamburger span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    /* Hide menu initially */
    .nav-pills,
    .cta-button {
        display: none;
        width: 100%;
    }

    /* Show when menu open */
    .nav-bar.open .nav-pills,
    .nav-bar.open .cta-button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #471F0E;
        padding: 5px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        -ms-overflow-style: none;  /* hides scrollbar for IE/Edge */
        scrollbar-width: none;     /* hides scrollbar for Firefox */
    }

    /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
    .nav-bar.open .nav-pills::-webkit-scrollbar,
    .nav-bar.open .cta-button::-webkit-scrollbar {
        display: none;
    }

    .pills-list {
        flex-direction: column;
        width: 100%;
    }

    .pill {
        padding: 8px 20px;
        width: 100%;
    }

    .pill a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    /* CTA inside dropdown */
    .cta-button {
        justify-content: flex-start;
        padding: 8px 20px 20px 20px;
    }

    .cta-button a {
        background-color: #86CAB2;
        color: black;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 18px;
    }



    footer {
        height: auto;
        padding-bottom: 20px;
    }

    /* Guarantees row with icons on top */
    .guarantees {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        height: auto;
        padding: 10px 0;
        background-color: #ce8137;
    }

    .guarantee {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        padding: 5px;
        width: auto;
        border: none;
    }

    .guarantee i {
        font-size: 24px;
        padding-bottom: 5px;
    }

    /* Hide logo on mobile */
    .logo-footer {
        display: none;
    }

    /* Stack the rest of the footer */
    .actual-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px 0;
        gap: 10px;
    }

    .actual-footer div {
        width: 100%;
        padding: 5px 0;
    }

    /* Mailing list form */
    .form h6 {
        margin-bottom: 8px;
    }

    .email {
        flex-direction: column;
        align-items: center;
    }

    #email {
        width: 90%;
        max-width: 300px;
        margin-bottom: 10px;
        border: none;
        border-radius: 4px;
        padding: 10px;
    }

    #subscribe {
        width: 60%;
        max-width: 200px;
        border: none;
        border-radius: 4px;
        background-color: #86CAB2;
        color: #471F0E;
        font-weight: 600;
        cursor: pointer;
        padding: 10px;
    }

    /* Quick Links & Contact info */
    .quick-links, .location {
        margin-top: 10px;
    }

    .footer-links, .contact-info {
        padding: 0;
        margin: 0;
    }

    .footer-link a {
        color: #FFFDEE;
        text-decoration: none;
    }

    .footer-link, .contact {
        padding-bottom: 8px;
    }

    .location p {
        font-size: 14px;
        margin-top: 5px;
    }

    h6 {
        font-size: 18px;
        padding: 10px 0 5px;
    }




    /* index */


.aub-parent {
    position: sticky;
    width: 100%;
    height: 500px;
    z-index: 50;
    top: 0;
}

.aub {
    margin-top: 0;
    position: relative;
}

.aub img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.au-heading {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 175px;
    left: 60px;
    line-height: 1;
}

.home-heading {
    background: rgba(71, 31, 14, 0.47);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1.8px);
    -webkit-backdrop-filter: blur(1.8px);
    padding: 10px;
}

.title-welcome {
    font-family: chewy, sans-serif;
    font-size: 30px;
    /* color: #471F0E; */
    color: #ce8137;
    display: flex;
    justify-content: center;
}

.title-unfloured {
    font-family: chewy, sans-serif;
    font-size: 90px;
    /* color: #471F0E; */
    color: #ce8137;
    display: flex;
    justify-content: center;
}




.welcome-wrapper {
    display: flex;
    z-index: 52;
    /* background-color: #FFFDEE; */
    position: sticky;
    top: 0;
    height: 500px;
    background: rgba(255, 253, 238, 0.32);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.welcome-heading {
    /* width: 50%; */
    /* margin-left: 350px; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    margin-left: 0;
    margin-right: 0;

}



.welcome-heading h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 45px;
    text-align: center;
    /* margin-top: 120px; */
    
}

.welcome-p p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
}

.index-quote p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    text-align: center;
    /* margin-left: 70px; */
    /* margin-right: 90px; */
}

.home div {
    width: 100%;
}



/* about us */

.title-step {
    font-family: chewy, sans-serif;
    font-size: 40px;
    color: #471F0E;
    /* color: #ce8137; */
    display: flex;
    justify-content: center;
}

.title-kitchen {
    font-family: chewy, sans-serif;
    font-size: 90px;
    color: #471F0E;
    /* color: #ce8137; */
    display: flex;
    justify-content: center;
}

.about-heading {
    left: 35px;
}



.story {
    display: flex;
    position: sticky;
    top: 0;
    height: 762px;

    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);

    margin-left: 0;
    margin-right: 0;
    }

.story div {
    margin-top: 10px;
    margin-bottom: 20px;
}

.story-heading {
    width: 70%;
    /* margin-left: 275px; */
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.story h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    text-align: center;
}

.story-heading h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 45px;
    margin-top: 35px;
}

.story-p p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    margin-right: 0px;
    margin-left: 0px;

}

.story-quote p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    margin-left: 0px;
    margin-right: 0px;
}



.promise-parent {
    display: flex;
    z-index: 52;
    position: sticky;
    top: 50px;
    /* background-color: #ffe8d1; */
    height: 775px;
    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
    margin-left: 0;
    margin-right: 0;
}

/* dont change */
.promise-parent h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-left: 25px;
    margin-top: 15px;
    width: 100%;
}

.promise-text h5 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 5px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

.promise-text {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 70px; */
    margin-left: 0;
    margin-right: 0;
}

.promise-text p {
    font-family: "omnes-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;

    margin-left: 0px;
    margin-right: 30px;
    text-align: center;
}

.promise-text span {
    color: black;
    font-weight: 600;
    font-size: 20px;
}



.our-team {
    z-index: 52;
    position: sticky;
    top: 100px;
    height: 575px;
    background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.our-team h4 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-left: 25px;
    margin-top: 15px;
}

.our-team h5 {
    font-family: "omnes-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 5px;
    text-align: center;
}

.team {
    display: flex;
    overflow: auto;
    justify-content: flex-start;
}

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



/* sweets */

.aub-parent {
    position: sticky;
    width: 100%;
    height: 500px;
    z-index: 50;
    top: 0;
}

.aub {
    margin-top: 0;
    position: relative;
}

.aub img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.au-heading {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 175px;
    left: 60px;
    line-height: 1;
}



.sweet-heading {
    position: absolute;
    top: 190px;
    left: 135px;
}

.sweet-parent {
    position: sticky;
    width: 100%;
    /* height: 762px; */
    /* margin-bottom: 762px; */
    z-index: 50;
    top: 0;
}

    .swb {
    margin-top: 0px;
    position: relative;
    height: 500px;
    width: 100%;
}


.title-sweets {
    font-family: chewy, sans-serif;
    font-size: 90px;
    color: #471F0E;
    margin-top: 0px;
    margin-left: 0;
}


.pcard-parent {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 52;

        background: rgba(255, 253, 238, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16.7px);
    -webkit-backdrop-filter: blur(16.7px);
    border: 1px solid rgba(255, 253, 238, 0.26);
}

.pcard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.savoury-heading {
    position: absolute;
    top: 190px;
    left: 90px;
}
}