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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.container {
    padding: 0 30px;
    max-width: 1140px;
    margin: auto;
}

img {
    max-width: 100%;
}

h1 {
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h3 {
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    opacity: .8;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
}

p:last-child {
    margin-bottom: 0;
}

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

.line {
    height: 1px;
    width: 100%;
    background-color: #D1D3DC;
}

.btn {
    border: none;
    background-color: #23CD42;
    padding: 15px 30px;
    line-height: 1;
    color: white;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
}
.slick-prev:before, .slick-next:before {
    color: black;
}

.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    p {
        font-size: 18px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 28px;
    }

    .btn {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 62px;
    }
}
@media (min-width: 992px) {
    .container {
        padding: 0;
    }
}



/* LANG SELECTOR SECTION */
header {
    margin: auto;
    display: grid;
    /* display: flex; */
}

.lang-menu {
    width: 145px;
    text-align: right;
    font-weight: bold;
    margin-top: 15px;
    grid-column-start: 6;
    position: relative;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-around;
    padding: 8px;
    cursor: pointer;
    background: white;
    border-radius: 40px;
    align-items: center;
}
.lang-menu .selected-lang:before {
    content: '';
    margin: 0 0px;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(./img/flag-usa.png);
    border-radius: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #fff;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 45px;
    width: 150px;
    border-radius: 10px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}
.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    text-decoration: none;
    font-size: 15px;
    width: 125px;
    margin: auto;
    padding: 5px 0;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #f2f2f2;
    border-radius: 10px;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: ;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.en:before {
    background-image: url(./img/flag-usa.png);
}
.nl:before {
    background-image: url(./img/flag-nl.png);
}

.lang-menu:hover ul {
    display: block;
}

.lang-menu ul li a span{
    text-decoration: none;
    color: #000;
    margin-top: auto;
}
.lang-menu ul li a span .select {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .lang-menu {
        max-width: 50px;
        margin-top: 10px;
    }
    .lang-menu ul {
        width: 50px;
    }
    .lang-menu ul li a {
        width: 25px;
        padding: 10px 0;
    }
    .lang-menu ul li a span{
        display: none;
    }
    .lang-menu .selected-lang span{
        display: none;
    }
    .lang-menu .selected-lang {
        background: rgb(247, 247, 247);
    }
}




/* HERO SECTION */
.hero {
    padding: 10px 0 50px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 00, 0.4)), url('./img/hero-bg.jpg');
    background-size: cover;
    background-position: 70%;
}

.hero .logo {
    max-width: 80px;
    grid-column-start: 4;
    margin: 0 auto 50px;
}

.hero p {
    color: white;
}

@media (min-width: 768px) {
    .hero {
        background: url('./img/hero-bg.jpg');
        padding-top: 20px;
        background-size: cover;
        background-position: 70%;
    }

    .hero p {
        padding: 0 0 20px;
    }
    .hero .logo {
        max-width: 100px;
    }

    .hero-text {
        width: 340px;
        padding: 30px;
        background: rgba(0, 0, 0, 0.75);
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 30px 0 80px;
    }

    .hero .logo {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {

    .hero p {
        /* padding: 20px; */
        /* background: rgba(0, 0, 0, 0.75); */
    }
    h1 {
        font-size: 25px;
    }
    .header-mobile {
        padding: 20px;
        margin: 0 0 5%;
        background: rgba(0, 0, 0, 0.75);
    }
}


/* USPS SECTION */
.usps {
    padding: 20px 0;
    background-color: black;
}

.usps img {
    width: 20px;
}

.usps .usp {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.usps .usp:last-child {
    margin-bottom: 0;
}

.usps span {
    display: block;
    color: white;
    font-weight: 700;
}

@media (min-width: 768px) {
    .usps {
        padding: 30px 0;
    }

    .usp-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .usp-wrapper .usp {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .usps img {
        width: 30px;
    }

    .usps span {
        font-size: 22px;
    }

    .usps .usp {
        grid-template-columns: 30px 1fr;
        gap: 10px;
        justify-self: center;
    }
}


/* ABOUT SECTION */
.about {
    padding: 50px 0;
}

.about .info-block {
    background-color: #6091B5;
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 30px;
}

.about .info-block h3, .about .info-block p {
    color: white;
}

@media (min-width: 768px) {
    .about-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: flex-start;
    }

    .info-block {
        border-radius: 5px;
    }
}

@media (min-width: 992px) {
    .about {
        padding: 80px 0;
    }

    .about .info-block {
        padding: 40px;
    }
}

@media (min-width: 1200px) {
    .about-wrapper {
        gap: 100px;
    }
}


/* SOCIAL PROOF SECTION */
.social-proof {
    padding: 50px 0;
}

.social-proof .collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
}

.social-proof .collage img {
    height: 160px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .social-proof h2 {
        text-align: center;
        max-width: 540px;
        margin: 0 auto 20px;
    }

    .social-proof-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
        gap: 30px;
    }

    .social-proof .collage {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .social-proof h2 {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .social-proof {
        padding: 80px 0;
    }

    .social-proof-wrapper {
        gap: 100px;
    }

    .social-proof .collage img {
        height: 180px;
    }
}


/* SCIENCE BASED SECTION */
.science-based {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .science-based-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .science-based {
        padding: 80px 0;
    }

    .science-based img {
        max-width: 515px;
        float: right;
    }
}

@media (max-width: 500px) {
    .illustration {
        padding-top: 20px;
    }
}

/* HOW TO USE SECTION */
.how-to-use {
    padding: 50px 0;
    text-align: center;
}

.how-to-use span {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

.how-to-use p {
    max-width: 200px;
    display: block;
    margin: 10px auto 0;
}

.how-to-use .step {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .how-to-use-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .how-to-use p {
        max-width: 220px;
    }
}

@media (min-width: 992px) {
    .how-to-use span {
        font-size: 24px;
        margin: 10px 0;
    }
}

@media (min-width: 1200px) {
    .how-to-use {
        padding: 80px 0;
    }
}

/* QUOTE SECTION */
.quote {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 00, 0.8)), url('./img/party-people.jpg') no-repeat;
    padding: 30px 20px;
    background-size: cover;
}

.quote span {
    display: block;
    color: white;
    font-size: 24px;
    max-width: 320px;
    margin: auto;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .quote {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        background: none;
        overflow: hidden;
    }

    .quote > div:first-child {
        background-color: black;
        padding: 50px 0 50px 50px;
        position: relative;
    }

    .quote > div:first-child::after {
        width: initial;
        height: 100%;
        border-left: 0px solid transparent;
        border-right: 110px solid transparent;
        border-top: 500px solid black;
        position: absolute;
        content: "";
        right: -103px;
        top: 0;
        bottom: 0;
    }

    .quote > div:nth-child(2) {
        background: url('./img/party-people.jpg') no-repeat;
        background-size: cover;
    }
}

@media (min-width: 992px) {
    .quote span {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .quote span {
        max-width: 500px;
        font-size: 42px;
    }

    .quote > div:first-child {
        padding: 120px 0 120px 50px
    }
}


/* INGREDIENTS SECTION */
.ingredients {
    padding: 50px 0 30px;
}

.ingredients img {
    max-width: 240px;
    margin: auto;
}

.ingredients .text {
    margin-bottom: 30px;
}

.ingredient-block {
    background-color: #6091B5;
    padding: 30px 20px;
    border-radius: 3px;
}

.ingredient-block span {
    display: block;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ingredient-block ul {
    list-style-type: none;
}

.ingredient-block li {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    background: url(./img/done.svg) no-repeat;
    background-size: 16px;
    padding-left: 30px;
}

.ingredient-block > .ingredient-logo {
    max-width: 100px;
    display: block;
    margin: 0 auto 20px;
}

.ingredient-accordion {
    padding: 0 0 50px;
}

.ingredient-accordion span {
    display: block;
    margin-bottom: 15px;
    background: url('./img/down-arrow.svg') no-repeat;
    background-position: 100%;
}

.ingredient-accordion .accordion {
    border: 1px solid #F2F2F2;
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    padding: 10px 20px;
    overflow: hidden;
    max-height: 40px;
    transition: max-height .3s cubic-bezier(0.23, 1, 0.320, 1)
}

.ingredient-accordion .accordion.open {
    max-height: 200px;
}

.accordions .accordion p {
    margin: 0;
}

@media (min-width: 768px) {
    .ingredients-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: flex-start;
    }

    .ingredient-block {
        border-radius: 5px;
    }

    .ingredient-block > .ingredient-logo {
        max-width: 140px;
        margin: 0 auto 30px;
    }

    .ingredient-accordion h2 {
        text-align: center;
        max-width: 520px;
        margin: 0 auto 20px;
    }

    .ingredient-accordion p {
        text-align: center;
        max-width: 520px;
        margin: 0 auto 30px;
    }

    .accordions {
        max-width: 520px;
        margin: 0 auto;
    }

    .ingredient-accordion .accordion p {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .ingredients img {
        max-width: 360px;
    }

    .ingredient-block-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .ingredient-block {
        padding: 50px 30px;
    }
}

@media (min-width: 1200px) {
    .ingredients {
        padding: 80px 0 50px;
    }

    .ingredients-wrapper {
        gap: 100px;
        grid-template-columns: 40% 1fr;
    }

    .accordions {
        max-width: 600px;
    }

    .ingredient-accordion .accordion {
        padding: 15px 20px;
        max-height: 55px;
    }

    .ingredient-accordion span {
        font-size: 18px;
    }

    .ingredient-block {
        padding: 30px 50px;
    }

    .ingredient-block li {
        background-size: 20px;
        margin-bottom: 15px;
        font-size: 18px;
        padding-left: 35px;
    }
}

/* BUNDLE SECTION */
.product-bundles {
    padding: 50px 0;
}

.doses {
    color: rgb(0, 0, 0);
    font-size: 14px;
    padding: 15px 0;
    text-align: left;
    display: table;
    margin: auto;
}

.product-bundles h2 {
    text-align: center;
}

.bundle {
    max-width: 320px;
    height: 100%;
    margin: 0 auto 20px;
    background-color: #E7EFF4;
    border-radius: 3px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.bundle img {
    max-height: 220px;
}

.popular-bundle {
    box-shadow: 0px 0px 0px 10px #6091b5;
}

.bundle:last-child {
    margin-bottom: 0;
}

.popular {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #FFB960;
    padding: 5px 15px;
    line-height: 1;
    border-radius: 20px;
    margin-bottom: 10px;
    align-self: baseline;
}

.bundle:first-child .popular, .bundle:nth-child(3) .popular {
    visibility: hidden;
}

.bundle-title {
    display: block;
    font-weight: 700;
    font-size: 22px;
    /* margin-bottom: 20px; */
}
.bundle-list {
    padding: 20px 0;
    text-align: left;
    margin: auto;
    display: table;
    border-top: 1px solid #8f8f8f;
}

.price {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.new-price {
    display: block;
    font-weight: 700;
    padding-top: 5px;
    font-size: 20px;
}

.shipping {
    display: block;
    font-weight: 700;
    padding-top: 5px;
    font-size: 18px;
}

.popular-bundle .new-price {
    /* color: white; */
}

.popular-bundle .shipping {
    /* color: white; */
}

.old-price {
    display: block;
    font-size: 18px;
    color: #a1a1a1;
    position: relative;
}

.popular-bundle .old-price {
    /* color: #A0BDD3; */
}

/* .old-price::after {
    height: 1px;
    width: 80px;
    position: absolute;
    content: "";
    background-color: #8B8F92;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
} */

.popular-bundle .old-price:after {
    background-color: #A0BDD3;
}

.order-btn {
    width: 100%;
    background-color: #23CD42;
    border-radius: 3px;
    padding: 14px 0;
    color: white;
    font-weight: 700;
    display: block;
    font-size: 22px;
    text-decoration: none;
    position: sticky;
    text-transform: uppercase;
    align-self: end;
}

.prices {
    position: sticky;
    /* top: calc( 70vh - 100px ); */
    /* padding: 10px 0; */
}

@media (min-width: 768px) {
    .bundle {
        max-width: none;
        width: 100%;
        display: grid;
    }

    .bundle img {
        max-height: 160px;
        margin: auto;
    }

    .product-bundles h2 {
        text-align: center;
    }

    .bundle-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .bundle-wrapper .bundle {
        margin-bottom: 0;
    }

    .bundle-list li {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (min-width: 1200px) {
    .product-bundles {
        padding: 80px 0;
    }

    .bundle-wrapper {
        gap: 50px;
    }

    .popular {
        margin-bottom: 10px;
    }

    .bundle-title {
        /* margin-bottom: 30px; */
        font-size: 22px;
    }

    .bundle img {
        max-height: 220px;
        margin-bottom: 20px;
    }

    .price {
        width: 180px;
        margin: 30px auto;
    }
}




/* SECTION MONEY BACK */
.money-back {
    padding: 50px 0;
}

@media (min-width: 768px) {
    .money-back-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .money-back-wrapper h2 {
        text-align: right;
        padding-right: 50px;
    }
}

@media (min-width: 1200px) {
    .money-back {
        padding: 50px 0;
    }
}

/* SECTION PHOTO COLLAGE */
.photo-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.photo-collage img {
    height: 240px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .photo-collage {
        grid-template-columns: repeat(4, 1fr);
    }

    .photo-collage img {
        height: 180px;
    }
}

@media (min-width: 992px) {
    .photo-collage img {
        height: 210px;
    }
}

@media (min-width: 1200px) {
    .photo-collage img {
        height: 320px;
    }
}


/* SECTION TESTIMONIALS */
.testimonials {
    padding: 50px 0;
}

.testimonials .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial {
    border: 1px solid #D9E0E5;
    border-radius: 3px;
    padding: 30px 20px;
    text-align: center;
    margin: 0 auto 20px;
}

/* .testimonial span {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
} */
.testimonial .naming {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}
.testimonial > div {
    width: 80px;
    height: 80px;
    background-color: #8B8F92;
    border-radius: 40px;
    margin: 0 auto 20px;
}
.testimonial img {
    border-radius: 50%; 
    padding: 5px 0;
    display: block;
    margin: auto;
}
@media (min-width: 300px) {

    .testimonial-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        }
}
@media (min-width: 768px) {
    .bundle img {
        max-height: 220px;
        margin-bottom: 20px;
    }
    
    .testimonial {
        margin: 0;
    }
    .testimonials h2, .testimonials p {
        max-width: 520px;
        margin: 0 auto 20px;
        text-align: center;
    }

    .testimonials a {
        left: 50%;
        transform: translateX(-50%);
        position: relative;
    }

    
    .testimonial-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .testimonial-wrapper p {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .testimonial-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .testimonial {
        margin-bottom: 0;
    }

    .testimonials .btn {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial {
        padding: 30px;
    }
}


/* FOOTER SECTION */
footer {
    padding: 30px 0;
}

.copy {
    padding: 20px 0 0;
}

footer a {
    color: black;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

footer a:last-child {
    margin-bottom: 0;
}

.footer-logo {
    max-width: 80px;
    margin-bottom: 20px;
}
.footer-links {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-end: 1;
}
.social-links {
    margin: 10px 0;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
}

.fa {
    padding:10px;
    font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50px;
  }

  .fa-facebook {
    background: #000000;
    color: white;
  }
  
  /* Twitter */
  .fa-instagram {
    background: #000000;
    color: white;
  }

.payment-icons {
    margin-top: 30px;
    align-self: end;
    margin-bottom: 20px;
}


.payment-icons span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-icons-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.payment-icons-wrapper > div {
    border: 1px solid #D1D3DC;
    border-radius: 3px;
    padding: 5px 15px 3px;
}

@media (min-width: 768px) {
    .footer-wrapper {
        display: grid;
        grid-template-columns: 240px 1fr;
    }

    .payment-icons {
        margin-top: 0;
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .payment-icons-wrapper > div {
        padding: 5px 5px 3px;
    }

    .payment-icons-wrapper {
        grid-template-columns: repeat(10, 1fr);
    }
}

@media (min-width: 992px) {
    footer {
        padding: 50px 0;
    }

    footer a {
        font-size: 18px;
    }

    .footer-wrapper {
        gap: 200px;
    }

    .footer-logo {
        max-width: 100px;
    }

    .payment-icons-wrapper > div {
        padding: 5px 10px 5px;
    }

    .payment-icons {
        grid-row-end: 2;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media (min-width: 1200px) {
    .footer-wrapper {
        gap: 315px;
    }
}


/* COOKIE SECTION */
.cookie {
    position: fixed;
    display: block;
    width: 100%;
    background-color: rgba(0,0,0,.8);
    padding: 20px 0;
    bottom: 0;
}

.cookie.accepted {
    display: none;
}

.cookie button {
    border: none;
    background-color: #fff;
    font-weight: 500;
    color: #000;
    padding: 6px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-barr {
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.cookie p {
    margin-bottom: 0;
    width: -webkit-calc(60% - 10px);
    width: calc(60% - 10px);
    color: #fff;
}

.cookie a {
    color: white;
}