@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* content 1328 */
.content-wrapper {
    max-width: 1376px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

body.menu-active {
    overflow: hidden;
}

nav {
    background-color: #E8E4DD;
    height: 100px;
}

nav .nav-logo {
    z-index: 2;
}

nav .menu-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav .menu-links ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav .menu-links ul li a {
    text-decoration: none;
    color: #3C6C3B;
    font-weight: 600;
    font-size: 20px;
    line-height: 70px;
}

nav .menu-links ul li a:hover {
    text-decoration: underline;
}

nav .menu-links ul .menu-links-separator {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 70px;
    color: #3C6C3B;
}

.why-worth header {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%);
    padding-top: 71px;
    padding-bottom: 41px;
}

.why-worth header h1 {
    color: #94D291;
    font-size: 57px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 83px;
}

.why-worth .main-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.why-worth .main-box-text {
    width: 100%;
    margin-right: 25px;
}

.why-worth .main-box-text p {
    text-align: center;
    font-size: 24px;
    color: #DDFBD9;
    font-weight: 400;
    line-height: 35px;
}

.why-worth .main-box-image {
    max-width: 650px;
    width: 100%;
    margin-left: 25px;
}

.why-worth .main-box-image img {
    width: 100%;
    height: auto;
}

#secondary-box-section {
    background-color: #E8E4DD;
    padding-top: 90px;
    padding-bottom: 90px;
}

#secondary-box-section .secondary-box {
    display: flex;
    justify-content: space-between;
}

#secondary-box-section .secondary-box .secondary-box-image {
    margin-right: 25px;
}

#secondary-box-section .secondary-box .secondary-box-text {
    margin-left: 25px;
    position: relative;
}

#secondary-box-section .secondary-box .secondary-box-text h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    color: #3B6B3A;
    margin-bottom: 48px;
}

#secondary-box-section .secondary-box .secondary-box-text p {
    color: #578D56;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 51px;
}

#secondary-box-section .secondary-box .secondary-box-text a {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDFBD9;
    font-size: 27px;
    font-weight: 700;
    line-height: 50px;
    text-decoration: none;
    background-color: #3B6B3A;
    width: 208px;
    border-radius: 26px;
    margin-left: auto;
    margin-right: auto;
    transition: .7s;
}

#secondary-box-section .secondary-box .secondary-box-text a:hover {
    transform: scale(1.1);
}

#secondary-box-section .sbt-background {
    position: absolute;
    left: 100px;
    top: 30px;
   
}

footer {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%);
    height: 218px;
}

footer .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

footer p {
    color: #DDFBD9;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-top: 13px;
}

.burger {
    display: none;
    z-index: 2;
}

@media(max-width: 960px) {

    nav {
        position: relative;
        z-index: 1000;
    }
    .menu-links {
        /* display: flex; */
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100vh;
        background-color:#E8E4DD;
        margin-left: -20px;
        top: 0;
        justify-content: center;
        z-index: 0;
        display: none;
        align-items: center;
    }

    .menu-links ul {
        flex-direction: column;
    }

    .menu-links .menu-links-separator {
        display: none;
    }

    .burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 25px;
        cursor: pointer;
    }

    .burger>div {
        width: 40px;
        height: 4px;
        background-color: #3C6C3B;
        transition: .4s;
    }

    .burger.active > div:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 5px);
    }
    
    .burger.active > div:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active > div:nth-child(3) {
        transform: rotate(45deg) translate(-9px, -8px);
    }
}

@media(max-width: 1000px) {
    .why-worth .main-box {
        flex-direction: column;
    }

    .why-worth .main-box-image {
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }

    .why-worth header h1 {
        font-size: 26px;
        margin-bottom: 40px;
        line-height: 28px;
    }

    .why-worth .main-box-text {
        line-height: 16px;
    }

    .why-worth .main-box-text p {
        font-size: 13px;
        line-height: 16px;
    }

    .why-worth header {
        padding-top: 41px;
        padding-bottom: 31px;
    }

    #secondary-box-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    #secondary-box-section .secondary-box {
        flex-direction: column-reverse;
    }

    #secondary-box-section .secondary-box .secondary-box-text {
        margin-left: 0;
        margin-bottom: 20px;
    }

    #secondary-box-section .secondary-box .secondary-box-text .sbt-background {
        left: 0;
        right: 0;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        top: 0;
        max-width: 230px;
    }

    #secondary-box-section .secondary-box .secondary-box-text h2 {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    #secondary-box-section .secondary-box .secondary-box-text p {
        font-size: 13px;
        line-height: 16px;
        text-align: center;
    }

    #secondary-box-section .secondary-box .secondary-box-text a {
        font-size: 16px;
        height: 35px;
        width: 160px;
    }

    #secondary-box-section .secondary-box .secondary-box-image {
        width: 100%;
        max-width: 650px;
        text-align: center;
        margin-left: 40px;
        margin-right: auto;
    }

    #secondary-box-section .secondary-box .secondary-box-image img {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    #secondary-box-section .secondary-box .secondary-box-text p {
        margin-bottom: 20px;
    }
}

/* recipe page */

main.recipe {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%); 
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 0;
}

main.recipe .content-wrapper {
    max-width: 1011px;
    background-color: #E7E3DC;
    padding-top: 72px;
    padding-left: 52px;
    padding-right: 52px;
    padding-bottom: 40px;
    margin-top: -7px;
}

main.recipe h1 {
    font-size: 57px;
    font-weight: 700;
    color: #3B6B3A;
    text-align: center;
    margin-bottom: 48px;
}

.recipe-wrapper {
    max-width: 811px;
    margin-left: auto;
    margin-right: auto; 
    position: relative;
    z-index: 1;
}

.recipe-wrapper h2 {
    font-size: 33px;
    font-weight: 700;
    color: #3B6B3A;
    margin-bottom: 10px;
}

.recipe-wrapper p {
    font-size: 26px;
    font-weight: 300;
    line-height: 44px;
    color: #578D56;
}

.recipe-main-image {
    max-width: 1011px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.recipe-main-image img {
    width: 100%;
}

.recipe-wrapper p.method-p {
    line-height: 34px;
}

.eym-h2 {
    margin-top: 48px;
}

.duck-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.duck-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

@media(max-width: 1000px) {
    main.recipe  {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(max-width: 700px) {
    main.recipe h1 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    main.recipe .content-wrapper {
        padding-top: 24px;
        padding-bottom: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .recipe-wrapper h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .recipe-wrapper p {
        font-size: 13px;
        line-height: 22px;
    }

    .recipe-wrapper p.method-p {
        line-height: 16px;
    }

    .eym-h2 {
        margin-top: 24px;
    }
}

.duck-header {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%); 
    padding-top: 30px;
    padding-bottom: 30px;
}

.duck-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #94D291;
    text-align: center;
    margin-bottom: 20px;
}

.duck-header .duck-img {
    width: 273px;
    height: 273px;
    border-radius: 100%;
    background-color: #DDFBD9;
    margin-left: auto;
    margin-right: auto;
}

.section-white {
    background-color: #E8E4DD;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-white h3 {
    font-size: 45px;
    font-weight: 700;
    color: #3C6C3B;
    text-align: center;
    margin-bottom: 28px;
}

.section-white p {
    color: #578D56;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
}

.section-image {
    margin-top: 34px;
    text-align: center;
}

.section-dark {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%);
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-dark h3 {
    font-size: 45px;
    font-weight: 700;
    color: #9ADAA3;
    text-align: center;
    margin-bottom: 28px;
}

.section-dark p {
    color: #DDFBD9;
    font-size: 26px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
}

@media(max-width: 1000px) {
    .duck-header h1 {
        font-size: 36px;
    }

    .duck-body section h3 {
        font-size: 26px;
        line-height: 30px;
    }

    .duck-body section p {
        font-size: 13px;
        line-height: 16px;
    }

    .duck-body section {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .duck-body .section-image {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .duck-body .section-image img {
        width: 100%;
    }

    footer p {
        font-size: 9px;
    }
}

section#about {
    background-color: #E8E4DD;
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}

section#about h3 {
    color: #3B6B3A;
    font-size: 57px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

section#about p {
    color: #578D56;
    font-size: 27px;
    line-height: 35px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

section#about h3.secondary {
    margin-top: 70px;
}

section#about .campaign-spot {
    max-width: 852px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

section#about .campaign-spot video {
    width: 100%;
}

section#about .about-content-logo {
    margin-left: auto;
    margin-right: auto;
    width: 168px;
}

section#why-worth {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%);
    padding-top: 70px;
    padding-bottom: 60px;
}

.why-worth-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.why-worth-box:nth-child(1) {
    margin-bottom: 100px;
}

.why-worth-box .wwbox-left h4 {
    font-size: 44px;
    line-height: 50px;
    color: #94D291;
    text-align: center;
    margin-bottom: 20px;
}

.why-worth-box .wwbox-left p {
    color: #DDFBD9;
    font-size: 27px;
    line-height: 36px;
    max-width: 621px;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.why-worth-box .wwbox-left a {
    font-size: 27px;
    color: #3B6B3A;
    font-weight: 700;
    height: 52px;
    background-color: #DDFBD9;
    border-radius: 50px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    transition: .7s;
}

.why-worth-box .wwbox-left a:hover {
    transform: scale(1.1);
}

#experts {
    padding-top: 100px;
    padding-bottom: 70px;
    text-align: center;
}

#experts h3 {
    font-size: 57px;
    color: #3B6B3A;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

#experts p {
    font-size: 27px;
    font-weight: 400;
    line-height: 35px;
    color: #578D56;
    max-width: 1170px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

#experts .experts-img {
    margin-bottom: 30px;
}

#experts p.secondary {
    font-size: 27px;
    font-weight: 400;
    color: #3B6B3A;
    line-height: 35px;
    max-width:  677px;
    margin-bottom: 70px;
}

#experts .choice-boxes {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.choice-boxes .choice {
    max-width: 234px;
    text-align: center; 
}

.choice-boxes .choice img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.abutton {
    width: 234px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDFBD9;
    border-radius: 52px;
    background-color: #3B6B3B;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    transition: .7s;
    
    
}

.abutton:hover {
    transform: scale(1.1);
}

#inspirations {
    background: linear-gradient(216deg, #578E57 8.91%, #3E6E3C 64.35%, #3B6B3B 87.62%);
    padding-top: 70px;
    padding-bottom: 60px;
}

#inspirations h3 {
    font-size: 57px;
    font-weight: 700;
    color: #94D291;
    text-align: center;
    margin-bottom: 20px;
}

#inspirations p {
    font-size: 25px;
    color: #DDFBD9;
    line-height: 36px;
    max-width: 1129px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
}

#inspirations .duck-img {
    width: 273px;
    height: 273px;
    border-radius: 100%;
    background-color: #DDFBD9;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* #inspirations .duck-img img {
    width: 100%;
    height: 100%;
} */

.recipes-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    width: 100%;
    margin-top: 100px;
}

.recipe-thumbnail {
    position: relative;
    max-width: 428px;
    width: 100%;
    margin-bottom: 60px;
}

.recipe-thumbnail img {
    max-width: 428px;
    width: 100%;
    border-top-left-radius: 40px;
}

.recipe-thumbnail div {
    position: absolute;
    bottom: 0;
    height: 93px;
    width: 100%;
    border-top-left-radius: 40px;
    background-color: #6A9969;
    padding: 20px;
    text-align: right;
    font-size: 22px;
    font-weight: 600;
    line-height: 25px;
    color: #DDFBD9;
}

section#faq {
    background-color: #E8E4DD;
    padding-top: 70px;
    padding-bottom: 60px;
    text-align: center;
}

#faq h3 {
    font-size: 57px;
    font-weight: 700;
    color: #3B6B3A;
    text-align: center;
    margin-bottom: 30px;
}

#faq .qna {
    margin-bottom: 20px;
}

#faq .q {
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
    color: #578D56;
}

#faq .a {
    color: #3B6B3A;
    font-size: 25px;
    line-height: 35px;
}

#faq .a .readMore {
    cursor: pointer;
}

#faq .a .readMore:hover {
    font-weight: bold;
}

#faq .a .moreText {
    display: none;
}

@media(max-width: 1000px) {
    .hp h3 {
        font-size: 25px!important;
    }

    section {
        padding-top: 20px!important;
    }

    section#about h3 {
        margin-bottom: 20px;
    } 

    section#about p {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 6px;
    }

    section#about br {
        display: none;
    }
    
    section#about h3.secondary {
        display: none;
    }

    section#about .campaign-spot {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    section#about .about-content-logo {
        width: 75px!important;
    }
}

@media(max-width: 1300px) {
    .wwbox-img {
        max-width: 50%;
        width: 100%;
        margin-left: 20px;
    }

    .wwbox-img-secondary {
        margin-left: 0;
        margin-right: 20px;
    }

    .wwbox-img img {
        width: 100%;
    }
}

@media(max-width: 1000px) {
    #why-worth {
        padding-top: 50px!important;
    }

    .why-worth-box {
        flex-direction: column;
    }

    .why-worth-box:nth-child(1) {
        margin-bottom: 35px;
    }

    .why-worth-box:nth-child(2) {
        flex-direction: column-reverse
    }

    .wwbox-img {
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .wwbox-left {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 600px) {
    .why-worth-box .wwbox-left h4 {
        font-size: 22px;
        line-height: 24px;
    }

    .why-worth-box .wwbox-left p {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 20px;
    }

    .why-worth-box .wwbox-left a {
        font-size: 16px;
        width: 125px;
        height: 34px;
    }

    .wwbox-img {
        max-width: 100%;
    }
}

@media(max-width: 750px) {
    #experts h3 {
        margin-bottom: 20px;
    }

    #experts p {
        font-size: 13px;
        line-height: 16px;
        max-width: 70%;
    }

    #experts .experts-img {
        max-width: 150px;
    }

    #experts p.secondary {
        font-size: 13px;
        line-height: 16px;
        max-width: 70%;
    }

    #experts .choice-boxes {
        flex-direction: column;
        align-items: center;
    }

    #experts .choice-boxes .choice {
        max-width: 110px;
    }

    #experts .choice-boxes .choice:nth-child(1) {
        margin-bottom: 30px;
    }

    #experts .choice-boxes .img {
        width: 100%;
    }

    .abutton {
        width: 100%;
        font-size: 16px;
        height: 34px;
    }
}

@media(max-width: 1300px) {
    .recipes-thumbnails {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 1000px) {
    .recipes-thumbnails {
        grid-template-columns: 1fr;
    }
}

@Media(max-width: 700px) {
    #inspirations p {
        font-size: 13px;
        line-height: 16px;
        max-width: 70%;
    }

    #inspirations .duck-img {
        width: 100px;
        height: 100px;
    }

    #inspirations .duck-img img {
        width: 100%;
    }

    .recipes-thumbnails {
        width: 80%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .recipe-thumbnail {
        margin-bottom: 15px;
    }

    .recipe-thumbnail div {
        font-size: 13px;
        line-height: 16px;
        height: 63px;
        padding-left: 20%;
    }
}

@media(max-width: 700px) {
    #faq .q {
        font-size: 13px;
        line-height: 16px;
    }

    #faq .a {
        font-size: 13px;
        line-height: 16px;
    }

    #faq .qna {
        margin-bottom: 13px;
    }

    section#faq {
        padding-bottom: 30px;
    }
}

.slider {
    margin-bottom: -10px;
}

.swiper {
    width: 100%;
    height: fit-content;
}

.swiper img {
    width: 100%;
}

.m {
    display: none;
}

.swiper-pagination {
    margin-bottom: 50px;
}

.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background-color: white;
    border: 2px solid white;
    opacity: 1!important;
}

.swiper-pagination-bullet-active {
    background-color: #3B6B3A;
}

@media(max-width: 650px) {
    .d {
        display: none;
    }

    .m {
        display: block;
    }

    .swiper-pagination {
        margin-bottom: 20px;
    }
}

#CybotCookiebotDialog {
    transform: translate(-50%, -50%) scale(0.9) !important;
  }
  
  #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
  #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
  #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    background-color: #558B54 !important;
    border-color: #558B54 !important;
    color: #ffffff;
  }
  
  #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    background-color: transparent;
    border: 2px solid #558B54 !important;
  }
  
  #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
    border-bottom: 1px solid #558B54 !important;
    color: #558B54 !important;
  }
  
  #CybotCookiebotDialog input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
    background-color: #558B54 !important;
  }
  
  #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
    color: #558B54 !important;
  }
  
  /* #CybotCookiebotDialogPoweredbyImage {
    filter: brightness(0000000000);
  } */
  
  #CookiebotWidget {
    display: none !important;
  }

.swiper-slide {
    height: auto;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
}