.image--grid {
    --gap: 1rem;
    --nb-cols: 1;
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(var(--nb-cols), 1fr);
}

@media screen and (min-width: 46rem) {

    .image--grid {
        --nb-cols: 2;
    }

}

@media screen and (min-width: 64rem) {

    .image--grid {
        --nb-cols: 4;
    }

}

/* TAGS */

:root {
    /* COLORS */
    --darkblue: #005587;
    --lightblue: #90C0DE;
    --paleblue: #0055871A;
    --stone: #F7F5F0;
    --lightgrey: rgba(0, 85, 135, 0.10);
    --white: #FFFFFF;

    /* DIMENSIONS */
    --container-width-percentage: 87.8%;
    --container-max-width: 1307px;
}

* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

html {
    box-sizing: border-box;
    display: block;
    -webkit-text-size-adjust: 100%; /* Safari/Chrome, other WebKit */
    -moz-text-size-adjust: 100%; /* Firefox, other Gecko */
    text-size-adjust: 100%; /* Opera/IE 8+ */
    text-rendering: optimizelegibility;
}

body {
    margin: 0 auto;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 400;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    margin-top: 17vw;
}

h6 {
    margin: unset;
    color: #005587;
    font-size: 1rem;
    text-decoration: unset;
    font-weight: 400;
    /*text-indent: 25px;*/
    padding-left: 25px;
}

button {
    color: inherit;
    border: none;
    padding: 0.5%;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    text-decoration: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100vw;
}

/* COMPONENTS */

.cta {
    display: block;
    text-align: center;
    font-size: 4.5vw;
    font-weight: 700;
}

.cta:hover {
    opacity: 80%;
}

.cta.squared {
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.cta.rounded {
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
}

.slick-previous,
.slick-next {
    all: unset;
    cursor: pointer;
}

/* CUSTOM CLASSES */

.mobile-only {
    display: block;
}

.mobile-tablet-only {
    display: block;
}

.tablet-only {
    display: none;
}

.tablet-desktop-only {
    display: none;
}

.desktop-only {
    display: none;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.rotate-180 {
    transform: rotateX(180deg);
}

/* HEADER */

.header {
    position: fixed;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
}

.header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5.85vw;
    background-color: var(--white);
    overflow: hidden;
}

.header .logo {
    display: block;
    width: 23.4vw;
    max-width: 92px;
}

.header .nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: -webkit-fill-available;
    background-color: var(--darkblue);
    flex-direction: column;
    padding: 4.07vw 5.85vw;
    transition: 0.2s ease-in-out;
    overflow-y: scroll;
}

.header .nav.hidden {
    left: 100vw;
}

.header .nav-line {
    list-style: none;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    margin: 0;
}

.header .nav-line.pictos {
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.header .nav-line.first {
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header .nav-line a,
.header .nav-line .menu-name {
    text-decoration: none;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.44px;
    cursor: pointer;
}

.header .nav-line.pictos img {
    margin-left: 18px;
}

.header .nav-line.first span,
.header .nav-line.first img {
    cursor: pointer;
    color: var(--white);
}

.header .nav-line.nav-line-cta a {
    border-radius: 12px;
    background-color: var(--white);
    color: var(--darkblue);
    padding: 10px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    /*font-size: 15px;*/
    font-size: 3.82vw;
    /*line-height: 25px;*/
    line-height: 6.36vw;
}

.header .nav-line.nav-line-cta .facebook-icon {
    background-color: unset;
}

.header .nav-line.nav-line-cta.mobile-tablet-only .facebook-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 30px;
}

.header .nav-line-item {
    width: 100%;
    border-bottom: 1px solid var(--white);
    background-image: url("img/white_right_arrow-6012ecf85eb4a3d9817b01c8ea1e869a.webp");
    background-repeat: no-repeat;
    background-position: right 16px;
    background-size: auto 16px;
}

.header .nav-line-item:last-of-type {
    border-bottom: none;
}
.header .nav-line-item:has(.submenu.active) {
    background-image: url("img/white_down_arrow-e774d81d5a6c14b4469785ee48624e8e.webp");
    background-size: 16px auto;
}

.header .picto-search {
    width: 6.36vw;
}

#form-search input,
#form-search-mobile input {
    border: 2px solid var(--lightgrey);
    padding: 4px;
    border-radius: 5px;
    vertical-align: middle;
}

#form-search-mobile input {
    width: 100%;
    margin-left: 10%;
}

#form-search, #form-search-mobile {
    display: none;
}

.header .menu-burger,
.header .close-menu {
    display: block;
    cursor: pointer;
}

.header .cta-back {
    visibility: visible;
}

.header .cta-back.hidden {
    visibility: hidden;
}

.header .submenu-description {
    display: none;
}

.header .submenu {
    display: none;
    position: static;
    box-shadow: none;
    margin-top: 0;
    padding-left: 0;
    list-style: none;
    padding: 20px 0;
    border-top: 1px solid var(--white);
}

.header .submenu.active {
    display: block;
}

.header .submenu a {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.header .submenu-items {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.header .submenu .submenu-items:first-of-type {
    margin-top: 0;
}

.header .submenu-item {
    color: var(--white);
}

.header .submenu-back {
    display: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.header .submenu.active .submenu-back {
    display: block;
}

.header .submenu .submenu-items:has(.submenu-item strong br),
.header .submenu .submenu-items:not(:has(.submenu-item strong)) {
    margin-top: 0;
}

.header .submenu .submenu-item:has(strong br) {
    height: 0;
}

/* FOOTER */

.footer-section-newsletter {
    background-color: var(--stone);
    /*background-image: url("img/VECTOR-newsletter-5bd1b0f28531258bccd255957da97c9a.webp");*/
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0 0 3.82vw;
}

.newsletter-catchphrase {
    color: var(--darkblue);
    /*font-size: 19px;*/
    font-size: 4.84vw;
    font-weight: 600;
    /*line-height: 26px;*/
    line-height: 6.62vw;
    text-align: center;
}

.footer-section-newsletter .cta-rounded {
    display: block;
    border-radius: 12px;
    background-color: var(--darkblue);
    color: var(--white);
    width: 87.8%;
    margin: 3.82vw auto;
    /*padding: 15px 0;*/
    padding: 3.82vw 0;
    /*font-size: 14px;*/
    font-size: 3.56vw;
    letter-spacing: 0.02em;
    font-weight: 700;
    /*line-height: 21px;*/
    line-height: 5.34vw;
    text-align: center;
}

.footer-section-newsletter .cta-rounded:hover {
    opacity: 80%;
}

.footer-section-main-nav {
    background-color: var(--white);
    color: var(--darkblue);
    text-align: center;
    /*padding: 23px 0;*/
    padding: 5.85vw 0;
}

.footer-section-main-nav .footer-logo {
    max-width: 33.33%;
}

.footer-section-main-nav .cta-rounded {
    display: block;
    border-radius: 12px;
    border: 2px solid var(--paleblue);
    color: var(--darkblue);
    width: 87.8%;
    margin: 3.82vw auto;
    /*padding: 15px 0;*/
    padding: 3.82vw 0;
    font-family: "Lato";
    /*font-size: 15px;*/
    font-size: 3.82vw;
    letter-spacing: 0.05em;
    font-weight: 900;
    /*line-height: 18px;*/
    line-height: 4.58vw;
    text-align: center;
}

.footer-section-main-nav .cta-rounded:hover {
    opacity: 80%;
}

.footer-section-main-nav-body .navigation-items {
    list-style: none;
    padding-left: 0;
    margin: unset;
    /*margin: 23px 0;*/
    margin: 13.5vw 0 5.85vw;
}

.footer-section-main-nav-body .navigation-item {
    /*font-size: 15px;*/
    font-size: 3.82vw;
    font-weight: 700;
    /*line-height: 30px;*/
    line-height: 7.64vw;
    letter-spacing: 0.05em;
}

.footer-section-main-nav-body .navigation-item > p {
    margin-block-start: 0.25em;
    margin-block-end: 0.25em;
}

.footer-section-main-nav-body .dropdown-icon {
    display: inline-block;
}

/*.header .nav-line a:hover + .submenu*/
.footer-section-main-nav-body .navigation-item-submenu.hidden + .footer-section-main-nav-body .dropdown-icon {
    transform: rotate(180deg);
}

.footer-section-main-nav-body .navigation-item-submenu {
    list-style: none;
    padding-left: 0;
}

.footer-section-main-nav-body .navigation-item-submenu.hidden {
    display: none;
}

.footer-section-main-nav-body .navigation-item-submenu-item {
    font-weight: 400;
}

.footer-section-main-nav-body .navigation-item-submenu-item a {
    color: var(--darkblue);
}

.footer-section-main-nav-body .navigation-item-submenu-item a:hover{
    /* text-shadow: 0 0 .9px var(--darkblue), 0 0 .9px var(--darkblue); */
}

.footer-section-main-nav .socials-items {
    list-style: none;
    padding-left: 0;
    margin: unset;
}

.footer-section-main-nav .socials-item {
    display: inline-block;
}

.footer-section-main-nav .img-social {
    /*max-height: 21px;*/
    max-height: 5.34vw;
    /*max-width: 11px;*/
    max-width: 2.8vw;
}

.footer-section-secondary-nav {
    background-color: var(--darkblue);
    /*padding: 23px 0;*/
    padding: 5.85vw 0;
}

.footer-section-secondary-nav-container {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    text-align: center;
    color: var(--white);
    /*font-size: 14px;*/
    font-size: 3.56vw;
    /*line-height: 26px;*/
    line-height: 6.62vw;
    font-weight: 500;
}

.footer-section-secondary-nav .navigation-items {
    list-style: none;
    padding-left: 0;
    margin: unset;
    /*margin-bottom: 15px;*/
    margin-bottom: 3.82vw;
}

.footer-section-secondary-nav .navigation-item {
    /*line-height: 26px;*/
    line-height: 6.62vw;
}

.footer-section-secondary-nav .navigation-item a {
    color: var(--white);
}

.footer-section-secondary-nav .copyrights-items {
    list-style: none;
    padding-left: 0;
    margin: unset;
}

.footer-section-secondary-nav .copyrights-items img{
    width: 21px;
}

.footer-section-secondary-nav .copyrights-item {
    /*line-height: 21px;*/
    line-height: 5.34vw;
    /*margin-bottom: 15px;*/
    margin-bottom: 3.82vw;
}

.footer-section-secondary-nav .copyrights-item:last-child {
    margin-bottom: 0;
}


/* BANNER */

.componentHero {
    position: relative;
}

.banner-cta {
    position: absolute;
    z-index: 3;
    left: 10%;
    top: 25%;
    max-width: 50%;
}

.banner-cta .banner-cta-title {
    color: var(--white);
    font-weight: 700;
    line-height: 7.63vw;
    font-size: 7.12vw;
}

.block-banner .blur {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(-90deg, rgba(0, 21, 33, 0) 33.72%, rgba(0, 85, 135, 0.75) 88.86%);
    background: linear-gradient(90deg, #82a6bc 20%, rgba(255, 255, 255, 0) 80%);
    border-radius: 15px;
}

@media screen and (min-width: 500px) and (max-width: 768px) {
    .banner-cta .banner-cta-title {
        font-size: 2rem;
    }

    .banner-cta {
        max-width: 35%;
    }
}

.banner-cta a {
    background: var(--darkblue);
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.75px;
    width: fit-content;
    margin-top: 5%;
}

.block-banner .slick-slide img {
    display: block;
    /*width: 100%;
    max-height: 834px;
    height: 835px;*/
}

.block-banner .slick-slide img,
.block-banner .slick-slide video,
.block-banner video,
.block-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.componentHero .slick-arrow-container {
    display: none;
}

.products-list-header .blur,
.brand-container-image .blur {
    background: linear-gradient(90deg, #82a6bc 20%, rgba(255, 255, 255, 0) 80%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* BLOCK - PRODUCTS LIST */

.pageProductsList .product-description {
    color: var(--darkblue);
    font-size: 1rem;
}

.products-list-header-image {
    position: relative;
    overflow: hidden;
}

.products-list-header-image img {
    display: block;
}

.products-list-header .products-list-subtitle {
    position: absolute;
    width: 48%;
    top: 50%;
    left: 4.82%;
    transform: translateY(-50%);
    margin: 0;
    color: var(--white);
    font-size: 7.12vw;
    font-weight: 700;
    line-height: 7.63vw;
}

.product-description {
    text-align: center;
    margin-bottom: 3%;
}

.product-slide {
    width: 100%;
    padding: 37px;
    display: block;
    position: relative;
    text-align: center;
    color: var(--darkblue);
}

.product-slide a{
    text-decoration: none;
    color: var(--darkblue);
}

.product-slide .product-new {
    position: absolute;
    left: 5px;
    width: 18%;
}

.product-slide .product-image {
    height: unset;
}

.product-slide .product-footer {
    height: 150px;
    display: flex;
    flex-direction: column;
}

.product-slide span {
    display: flex;
    height: 90px;
    text-align: center;
    justify-content: center;
    align-items: end;
    margin: 0 auto;
    font-weight: 700;
}

.products-list h2 {
    text-align: center;
    color: var(--darkblue);
    /*font-size: 32px;*/
    font-size: 8.14vw;
    font-weight: 700;
    line-height: normal;
    margin: unset;
}

.product-slide .cta {
    border: 2px solid var(--lightgrey);
    border-radius: 10px;
    padding: 3% 10.5%;
    display: block;
    width: 163px;
    margin: 0 auto;
    font-weight: 700;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 14px;
    margin-top: 3%;
}

.product-slide .cta:hover {
    opacity: 80%;
}

.product-slide img {
    margin: 0 auto;
    display: block;
}

.products-list.list .product-slide {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 36px 0;
    text-align: left;

    background-image: url("img/right-arrow-32fd4bb9fa9aec76e92b375d5a429db1.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
}

.products-list.list .product-slide .product-image {
    width: 32.82vw;
}

.products-list.list .product-slide .product-footer {
    justify-content: center;
    width: 43.51vw;
}

.products-list.list .product-slide span {
    text-align: left;
    height: auto;
}

.products-list.list .product-slide .cta {
    display: none;
}

.product-wrapper {
    width: 87.8%;
    max-width: 1307px;
    margin: 0 auto 90px;
}

.product-wrapper .dots-bar {
    display: block;
    width: 87.8%;
    height: 7px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #f5f5f5;
    background-image: linear-gradient(to right, var(--darkblue), var(--darkblue));
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
    margin-top: 3%;
}

.product-wrapper .progress-bar {
    position: relative;
    width: 87.8%;
    height: 7px;
    background-color: #f5f5f5;
    margin: 0 auto;
    margin-top: 3%;
    user-select: none; /* Désactive la sélection de texte */
    -webkit-user-select: none; /* Pour les navigateurs WebKit */
    -moz-user-select: none; /* Pour Firefox */
    -ms-user-select: none; /* Pour Internet Explorer/Edge */
}

.product-wrapper .progress-bar .progress-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16.66%;
    height: 14px;
    background: var(--darkblue);
    border-radius: 1000px;
    cursor: pointer;
    user-select: none; /* Désactive la sélection de texte */
    -webkit-user-select: none; /* Pour les navigateurs WebKit */
    -moz-user-select: none; /* Pour Firefox */
    -ms-user-select: none; /* Pour Internet Explorer/Edge */
}

.product-wrapper .dots-bar ul {
    margin: unset;
    padding: unset;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
}

.product-wrapper .dots-bar li {
    /*width: 16.66%;*/
    flex: 1;
    display: inline-block;
    cursor: pointer;
    border-radius: 1000px;
    height: 7px;
}

.product-wrapper .dots-bar .slick-active,
.product-wrapper .dots-bar .slick-active button {
    background: var(--darkblue);
}

.product-wrapper .dots-bar button {
    padding: unset;
    width: 100%;
    display: block;
    visibility: hidden;
}


/* SEARCH PRODUCTS */

.componentSearchProducts {
    display: block;
    background: #DCE5EA;
    /*background: #c8dae6;*/
    text-align: center;
    position: relative;
}

.componentSearchProducts h2 {
    color: var(--darkblue);
    font-size: 5.85vw;
    line-height: 0;
    margin: unset;
    padding-top: 8%;
    padding-bottom: 1%;
    width: 100%;
    text-align: center;
}

.componentSearchProducts .wave {
    margin-top: -9%;
}

.wave-block{
    background: var(--paleblue);
    border-radius: 25px;
}

.componentSearchProducts img {
    width: 100%;
    vertical-align: bottom;
}

.componentSearchProducts form {
    padding-top: 2%;
    padding-bottom: 8%;
    position: relative;
    z-index: 1;
    width: 100%;
}

.componentSearchProducts .cta {
    display: inline-block;
    background: var(--darkblue);
    color: white;
    font-family: "Poppins";
    font-size: 3.82vw;
    font-weight: 700;
    border: unset;
    border-radius: 10px;
    padding: 13px 20px;
    cursor: pointer;
    margin-top: 6%;
    width: 95%;
    max-width: 350px;
}

.componentSearchProducts select {
    display: block;
    background-color: #fff;
    border: none;
    color: var(--darkblue);
    padding: 13px 20px;
    width: 95%;
    border-radius: 10px;
    font-family: "Poppins";
    font-size: 3.82vw;
    font-weight: 500;
    max-width: 350px;
    margin: 0 auto;
    margin-top: 6%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("img/select-arrow-126c58475302ddb7032b7082a489806a.webp");
    background-repeat: no-repeat;
    background-position: 95% 60%;
    background-size: 5%;
}

.componentSearchProducts select[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.componentSearchProducts .loader-background {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF85;
}

.componentSearchProducts .loader-background.hidden {
    display: none;
}

.componentSearchProducts img.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: auto;
}

/* BLOCK - OUR RANGE */

.our-range {
    margin-bottom: 90px;
}

.our-range h2 {
    text-align: center;
    color: var(--darkblue);
    /*font-size: 32px;*/
    font-size: 8.14vw;
    margin: 0;
}

.our-range .ranges-description {
    text-align: center;
    margin: 2% auto 4%;
    width: 75%;
    color: var(--darkblue);
    font-size: 0.8em;
}

.our-range .ranges {
    text-align: center;
    margin: 0 auto;
}

.our-range .ranges a {
    display: inline-block;
    width: 87.25%;
}

.our-range .range-card {
    display: block;
    margin: 0 auto;
    margin-bottom: 13px;
    border: 2px solid var(--lightgrey);
    border-radius: 10px;
    padding: 12.5px 25px;
    text-align: left;
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
}

.our-range .range-card span {
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
    color: var(--darkblue);
    width: 66%;
}

.our-range .range-card .range-picto {
    width: 21.1%;
    display: inline-block;
    vertical-align: middle;
    text-align: -webkit-center;
}

.our-range .range-card .range-picto img {
    width: auto;
    max-width: 59px;
    display: block;
    height: 59px;
}

.our-range .range-card .range-arrow {
    display: inline-block;
    vertical-align: middle;
}

.our-range .range-card .range-arrow img {
    width: 22px;
}

/* BLOCK - RECIPES LIST */

.section-recipes-list {
    width: 87.8%;
    margin: 0 auto;
    margin-top: 76px;
    padding-bottom: 2%;
}

.section-recipes-list h2 {
    color: var(--darkblue);
    /*font-size: 32px;*/
    font-size: 8.14vw;
    margin: unset;
    line-height: 8.4vw;
    text-align: center;
}

.section-recipes-list .recipes-link-mobile {
    margin: 0 auto;
    margin-top: 12%;
}

.section-recipes-list .recipes-link-mobile .cta {
    border: 2px solid var(--lightgrey);
    border-radius: 10px;
    padding: 3.82% 9.5%;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: 700;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 1rem;
}

.recipes {
    position: relative;
    z-index: 10;
}

.recipes .blur {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 21, 33, 0) 30.39%, rgba(0, 85, 135, 0.8) 113.79%);
    border-radius: 10px;
    opacity: 0.7;
}

.section-recipes-list .recipes {
    padding-top: 8%;
    text-align: center;
    margin: 0 auto;
}

.recipes .recipe {
    /* display: flex;
     width: 80%;
     flex-direction: row;*/
    position: relative;
    margin: 0 auto;
    margin-top: 10%;
    width: 80.9%;
}

.recipes .recipe:first-child {
    margin-top: 0;
}

.recipes .recipe:hover{
    opacity: 0.8;
}

.recipes .recipe img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.recipes .recipe .recipe-subtitle {
    display: block;
    color: var(--white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.09em;
}

.recipes .recipe .recipe-moment {
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}

.recipes .recipe .recipe-footer {
    display: flex;
    width: 80%;
    padding-left: 4%;
    flex-direction: column;
    position: absolute;
    bottom: 5%;
    left: 2%;
    text-align: left;
}

.section-recipes-list .recipes-link-desktop {
    display: none;
}

.recipes .recipe-content {
    position: relative;
    display: flex;
}


/* BLOCK - ARTICLES LIST */

.section-articles-list {
    width: 87.8%;
    margin: 8% auto 90px;
}

.section-articles-list h2 {
    color: var(--darkblue);
    /*font-size: 32px;*/
    font-size: 8.14vw;
    margin: unset;
    line-height: 8.4vw;
    text-align: center;
}

.section-articles-list .articles-link-mobile {
    margin: 0 auto;
}

.section-articles-list .articles-link-mobile .cta {
    border: 2px solid var(--lightgrey);
    border-radius: 10px;
    padding: 3% 9.5%;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: 700;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 1rem;
}

.section-articles-list .articles {
    padding-top: 8%;
}

.articles .article {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 6%;
    align-items: center;
}

.articles .article .arrow {
    /*margin-top: 50%;*/
    margin-left: 15%;
    display: block;
    cursor: pointer;
}

.articles .article .article-image-link {
    display: flex;
    width: 40%;
}

.articles .article .article-image-link img {
    border-radius: 12px;
}

.articles-algolia-content .articles .article img{
    width: 40%;
    border-radius: 12px;
}

.articles-algolia-content .articles .article picture {
    display: flex;
}

.articles-algolia-content .articles .article picture img {
    width: 100%;
}

.articles .article .arrow img{
    width: 17px;
    height: 17px;
}

.articles .article .article-subtitle {
    display: block;
    color: var(--darkblue);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    margin-left: 3%;
    margin-bottom: 6px;
    text-transform: uppercase;

}

.articles .article .cta {
    /*font-size: 17px;*/
    font-size: 4.33vw;
    /*line-height: 18px;*/
    line-height: 1.05em;
    /*letter-spacing: 0.85px;*/
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: left;
    border: unset;
    width: 100%;
    display: block;
    margin-left: 3%;
    
}

.articles .article .article-footer {
    display: flex;
    width: 43.5%;
    flex-direction: column;
}

.articles .article-arrow {
    /*flex: 1;*/
    width: 8%;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
}

.articles .article-arrow img {
    width: 100%;
    height: auto;
    min-width: 10px;
    min-height: 18px;
}

.articles .article .article-footer a {
    color: var(--darkblue);
}

.section-articles-list .articles-link-desktop {
    display: none;
}

/* BLOCK - OUR STORY */

.our-story .story-left img {
    width: 123px;
}

.our-story .story-left h2 {
    color: var(--darkblue);
    font-size: 1.8em;
    margin: unset;
    margin-top: 5%;
}

.our-story {
    margin-top: 5%;
    background-color: var(--stone);
    padding: 3%;
    padding-left: clamp(24px, 3%, 3%);
    padding-right: clamp(24px, 3%, 3%);
    display: flex;
    flex-direction: row;
    padding-bottom: 15%;
    padding-top: 21%;
}

.our-story .our-story-description {
    color: var(--darkblue);
    font-size: 0.7em;
}

.our-story .story-left {
    width: 100%;
}

.our-story .story-right {
    display: none;
}

.our-story .story-right img {
    width: 100%;
}

.our-story .story-left .cta {
    font-size: 15px;
    font-weight: 700;
    line-height: 22.5px;
    letter-spacing: 0.05em;
    width: 100%;
    padding: 0.5rem 0rem;
    border-radius: 12px;
}

/* BLOCK - OUR IMPACT */

.our-impact {
    width: 85%;
    margin: 0 auto;
    position: relative;
    margin-top: 5%;
}

.our-impact-card {
    display: flex;
    position: relative;
    border-radius: 10px;
}

.impact-text a{
    text-decoration: none;
    color: var(--white);
}

.our-impact-card .our-impact-image-link{
    height: 100%;
    display: block;
    margin-bottom: -2%;
}

.our-impact .content {
    position: absolute;
    bottom: 0;
    color: var(--white);
    left: 0;
    padding-left: clamp(35px, 5%, 5%);
    padding-bottom: 7%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    width: 96%;
    justify-content: space-between;
}

.our-impact .blur {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 21, 33, 0) 33.72%, rgba(0, 85, 135, 0.75) 88.86%);
    border-radius: 10px;
}

.our-impact .content h2 {
    margin: unset;
    font-size: 1.2em;
    font-weight: 600;
}

.our-impact .content span a {
    width: fit-content;
    padding: unset;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: absolute !important;
    bottom: 40px;
}

.our-impact .content .impact-text, .our-impact .content .cta {
    position: relative;
}

.our-impact .content img {
    width: 11px;
    margin-bottom: 25%;
    margin-right: 20px;
}

.our-impact .content .arrow {
    display: flex;
    flex-direction: column-reverse;
}


/* PAGE - GENERIC */

.pageGeneric {
    color: var(--darkblue);
}

.pageGeneric > .container-width {
    margin: 0 auto;
}

.pageGeneric > .container-width:has(.page404) {
    width: 90%;
    max-width: 1307px;
    margin: 0 auto;
}

.page-cms{
    /*padding: 0% 2%;*/
}

/* PAGE - BRAND */

.pagebrand_wrapper {
    background: #FFF7D0;
}

.pagebrand_item {
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 25px;
}

.pagebrand_item_nav {
    padding-left: 4.5vw;
    max-width: 1414px;
}

.pagebrand_item_1 {
    background: #FFF7D0;
}

.pagebrand_item_title_1 {
    color: #FCCF00;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
    padding-right: 10px;
    padding-left: 10px;
}

.pagebrand_item_2 {
    background: #FEC500;
}

.pagebrand_item_title_2 {
    color: #FFF7D0;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
    padding-right: 10px;
    padding-left: 10px;
}

.pagebrand_item_block_subtitle_1 {
    color: #89BD3D;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_block_text_1 {
    color: #89BD3D;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 400;
    word-wrap: break-word;
}

.pagebrand_item_block_text_1 sub {
    /*font-size: 17px;*/
    font-size: 5.15vw;
}

.pagebrand_item_block_subtitle_2 {
    color: #006837;
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_block_text_2 {
    color: #006837;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 400;
    word-wrap: break-word;
}

.pagebrand_item_block_text_2 sub {
    /*font-size: 17px;*/
    font-size: 5.15vw;
}

.pagebrandBlockUnique {
    background-color: #359546;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 25px;
}

.pagebrandBlockUnique > .container-width {
    max-width: 1307px;
    margin: 0 auto;
    padding: 0;
}

.pagebrand_item_block {
    padding-bottom: 70px;
    margin: auto;
    max-width: 1414px;
    width: 100%;
}

.slider-history-wrapper {
    position: relative;
}

.slick-history-previous {
    background-color: transparent;
}

.slick-history-next {
    background-color: transparent;
}

.slick-pagebrand-previous {
    background-color: transparent;
}

.slick-pagebrand-next {
    background-color: transparent;
}

.pagebrand_item_anchor {
    padding-top: 25px;
    padding-bottom: 70px;
    max-width: 1414px;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.pagebrand_nav_text {
    padding: 10px;
    color: #89BD3D;
    font-size: 20px;
    font-weight: 500;
    word-wrap: break-word;
}

.pagebrand_anchor_text {
    width: 265px;
    height: 70px;
    text-align: center;
    color: #89BD3D;
    font-size: 30px;
    font-weight: 900;
    text-decoration: underline;
    text-transform: uppercase;
    word-wrap: break-word;
    cursor: pointer;
}

.pagebrand_item_history_title_text {
    padding-top: 40px;
    padding-left: 0;
    text-align: right;
    color: #FFF7D0;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    word-wrap: break-word;
}

.pagebrand_item_history_text {
    padding-top: 46px;
    padding-left: 11%;
    text-align: right;
    color: #FFF7D0;
    /*font-size: 17px;*/
    font-size: 5.15vw;
    font-weight: 500;
    word-wrap: break-word;
}

.pagebrand_item_block-slider {
    display: inline-block;
    width: 80%;
    margin-left: 10%;
}

.pagebrand_item_block-slider-content {
    display: block;
}

.pagebrand_item_block-slider-content-wrapper {
    display: flex;
    flex-direction: column;
}

.slide {
    position: relative;
}

.dots {
    position: absolute;
    z-index: 3;
    bottom: 2%;
    left: 7%;
}


.dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.dots {
    text-align: center;
    padding-left: 0;
}

.dots li {
    border-radius: 9999px;
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #FFFFFF85;
}

.dots li button:before {
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 13px;
    height: 13px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
}

.dots li.slick-active {
    background: #FFFFFF;
}

.pagebrand-unique-image {
    width: 100%;
    overflow: hidden;
}

.pagebrand_item > .container-width {
    max-width: 1307px;
    margin: 0 auto;
    padding: 0;
}

.pagebrand_item_block_slider-wrapper {
    position: relative;
}

.pagebrandBlockUnique .slick-arrow-container {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

.pagebrand_item .slick-arrow-container {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

/* Swiper Slider */

swiper-container {
    --swiper-scrollbar-size: 7px;
    --swiper-scrollbar-sides-offset: 0%;
    --wrapper-bottom-margin: 35px;
}

.swiper-scrollbar-drag {
    background: var(--darkblue);
    height: 200%;
    margin-top: calc(var(--swiper-scrollbar-size) * -1/2);
}

/* PAGE - SINGLE RECIPE */

.pageRecipe {
    background-color: var(--white);
}

.pageRecipe > .container-width {
    border-top: 4px solid var(--paleblue);
    padding-top: 35px;
}

.pageRecipe-description-left {
    width: 88.5%;
    margin: 0 auto;
}

.pageRecipe-description-left img {
    border-radius: 15px;
}

.pageRecipe-description-right,
.pageRecipe-details {
    width: 88.5%;
    margin: 0 auto;
}

.pageRecipe-detail {
    padding: 13px 0;
    border-top: 2px solid var(--lightgrey);
}

.pageRecipe-detail:last-of-type {
    border-bottom: 2px solid var(--lightgrey);
}

.pageRecipe-title {
    font-size: 8.14vw; /* 32px */
    font-weight: 700;
    line-height: 9.16vw; /* 36px */
    text-align: center;
    color: var(--darkblue);
}

.pageRecipe-pictos {
    width: 88.5%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 20px;
}

.pageRecipe-picto-column {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    /*justify-content: end;*/ /*flex-start;*/
    justify-content: space-between;
    max-width: 50%;
    width: 50%;
}

.pageRecipe-picto-column.pageRecipe-picto-column-difficulty {
    width: 45%;
}

.pageRecipe-picto-column.pageRecipe-picto-column-people {
    width: 80%;
}

.pageRecipe-picto-column-people .pageRecipe-people_counter {
    /*height: 38px;*/
    height: 9.67vw;
}

.pageRecipe-people-remove, .pageRecipe-people-add {
    height: 100%;
}

.pageRecipe-picto-column-duration .recipe-time-value {
    font-size: 3.07vw;
    line-height: 4.07vw;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;

}

.pageRecipe-picto-column-duration img {
    width: 27px;
    margin-right: 10px;
}

.pageRecipe-picto-column.pageRecipe-picto-column-duration {
    position: relative;
    max-width: 38%;
    width: fit-content;
}

.pageRecipe-picto-column.pageRecipe-picto-column-print {
    width: 20%;
    max-width: 20%;
    justify-content: flex-end;
    align-items: flex-end;
}

.pageRecipe-picto-text {
    font-size: 4.07vw; /* 16px */
    font-weight: 500;
    color: var(--darkblue);
    margin-bottom: 0;
}

.pageRecipe-product-introduction {
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
}

.pageRecipe-subtitle {
    /*font-size: 23px;*/
    font-size: 7vw;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #89BD3D;
}

.pageRecipe-people-catchphrase {
    text-align: center;
    color: #006837;
    font-size: 4.5vw;
    font-weight: 500;
}

.pageRecipe-people {
    color: var(--darkblue);
    font-size: 4.5vw;
    font-weight: 500;
}

.pageRecipe-print-cta {
    cursor: pointer;
}

.pageRecipe-print-cta img {
    width: 40px;
}

.pageRecipe .topic-text-title {
    color: var(--darkblue);
    /*font-size: 18px;*/
    font-size: 4.58vw;
    font-weight: 700;
    /*letter-spacing: 0.90px;*/
    letter-spacing: 0.23vw;
    padding: 13px 0;
    cursor: pointer;
}

.pageRecipe-detail .dropdown-icon {
    margin-left: 1vw;
}

.pageRecipe #recipeProduct-text {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.pageRecipe #recipeProduct-text a {
    display: block;
    width: fit-content;
    font-weight: 700;
    color: rgb(32, 106, 149);
    font-size: 1rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(230, 238, 243);
    border-image: initial;
    border-radius: 10px;
    padding: 1% 10.5%;
    margin: 3% auto 0px;
    text-decoration: none;
    text-align: center;
}

.pageRecipe #recipeProduct-text .pageRecipe-product-name {
    color: var(--darkblue);
    text-align: center;
}

.pageRecipe .topic-text-text {
    color: var(--darkblue);
    /*font-size: 15px;*/
    font-size: 3.82vw;
    font-weight: 400;
    /*line-height: 23px;*/
    line-height: 5.85vw;
}

.pageRecipe .topic-text-text.hidden {
    display: none;
}

.pageRecipe-product-name {
    color: var(--darkblue);
    /*font-size: 18px;*/
    font-size: 4.58vw;
    font-weight: 700;
    /*letter-spacing: 0.90px;*/
    letter-spacing: 0.23vw;
}

.pageRecipe-ingredients {
    /*padding-left: 20px;*/
    padding-left: 5.09vw;
}

.pageRecipe-ingredient {
    color: var(--darkblue);
    font-size: 4.5vw;
    font-weight: 400;
    /*line-height: 27px;*/
    line-height: 8.15vw;
}

.pageRecipe-ingredient::marker {
    color: var(--lightblue);
}

.pageRecipe-steps {
    list-style: none;
    padding-left: 1.25vw;
}

.pageRecipe-step {
    color: var(--darkblue);
    font-size: 4.5vw;
    font-weight: 400;
    /*line-height: 27px;*/
    line-height: 8.15vw;
}

.pageRecipe-print-cta.loading .print-icon {
    display: none;
}

.pageRecipe-print-cta.loading .loading-icon {
    display: block;
}

.pageRecipe-print-error-msg {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    margin-bottom: 12px;

    background-color: #CE0030;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;

    opacity: 0;
    visibility: hidden;
    transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s;
}

.pageRecipe-print-error-msg.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pageRecipe-print-error-msg::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #CE0030 transparent transparent transparent;
}


/* PAGE - PRODUCTS LIST */

.pageProductsList > .container-width {
    width: 88.5%;
    margin: 0 auto;
}

.filters-header {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.products-display-option {
    display: inline-block;
    opacity: 10%;
    margin-left: 10px;
}

.products-display-option.active {
    opacity: 100%;
}

.products-display-option img {
    display: block;
    width: 7.63vw;
    height: auto;
}

/* PAGE - SINGLE PRODUCT */

.pageProduct {
    border-top: 4px solid var(--paleblue);
}

.pageProduct > .container-width {
    width: 85%;
    margin: 0 auto 10vw;
    padding-top: 35px;
}

.pageProduct .componentCms h2 {
    color: var(--darkblue);
    font-size: 1.5rem;
    text-align: center;
}

.pageProduct .dropdown-icon{
    width: 14px;
    margin-left: 1vw;
}

.pageProduct-image .topic-cta {
    display: none;
}

.pageProduct-thumbnails {
    text-align: center;
}

.pageProduct-thumbnail {
    border-radius: 12px;
    border: 2px solid var(--lightgrey);
    /*padding: 14px;*/
    padding: 3.56vw;
    /*width: 78px;*/
    width: 19.85vw;
    height: 19.85vw;
    display: inline-block;
    cursor: pointer;
    margin: 0 8px;
}

.pageProduct-title {
    color: var(--darkblue);
    /*font-size: 32px;*/
    font-size: 8.14vw;
    font-weight: 700;
    /*line-height: 36px;*/
    line-height: 9.16vw;
    text-align: center;
}

.pageProduct-detail {
    padding: 13px 0;
    border-top: 2px solid var(--lightgrey);
}

.pageProduct-detail:last-of-type {
    border-bottom: 2px solid var(--lightgrey);
}

.pageProduct .topic-text-title {
    color: var(--darkblue);
    /*font-size: 18px;*/
    font-size: 4.58vw;
    font-weight: 700;
    /*letter-spacing: 0.90px;*/
    letter-spacing: 0.23vw;
    padding: 13px 0;
    cursor: pointer;
}

.pageProduct .topic-text-text {
    color: var(--darkblue);
    /*font-size: 15px;*/
    font-size: 3.82vw;
    font-weight: 400;
    /*line-height: 23px;*/
    line-height: 5.85vw;
}

.pageProduct .topic-text-text.hidden {
    display: none;
}

.pageProduct-table {
    color: var(--darkblue);
    font-weight: 400;
    /*font-size: 15px;*/
    font-size: 3.82vw;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 15px;
    width: 100%;
}

.pageProduct-table,
.pageProduct-table th,
.pageProduct-table td {
    border-collapse: collapse;
}

.pageProduct-table thead {
    background-color: var(--stone);
    font-weight: 600;
}

.pageProduct-table tr:nth-of-type(even) {
    background-color: var(--paleblue);
}

.pageProduct-table thead td:first-of-type {
    text-align: left;
}

.pageProduct-table thead td {
    text-align: center;
}

.pageProduct-table td {
    padding: 11px 0;
}

.pageProduct-table td:nth-child(1) {
    padding-left: 8px;
    width: 44%;
}

.pageProduct-table tbody td:not(:first-child) {
    width: 28%;
    text-align: right;
}

.pageProduct-table td:last-child {
    padding-right: 8px;
}

.pageProduct .productWhereToBuy-items {
    padding-left: 0;
    list-style: none;
}

.pageProduct .productWhereToBuy-item {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid var(--lightgrey);
}

.pageProduct .productWhereToBuy-item:last-of-type {
    border-bottom: none;
}

.pageProduct .productWhereToBuy-item img {
    max-width: 196px;
}

.pageProduct .productWhereToBuy-item .cta-rounded {
    padding: 14px 28px;
    border-radius: 12px;
    background-color: var(--darkblue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
}

.pageProduct .productWhereToBuy-item .cta-rounded:hover {
    opacity: 80%;
}

.pageProduct-tips {
    background-color: var(--paleblue);
    padding: 20px;
    border-radius: 10px;
}

.pageProduct-tip::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    /*width: 15px;*/
    width: 3.82vw;
    /*height: 22.7px;*/
    height: 5.78vw;
    background-image: url("img/ICON-drop-4ee5d9395e49844b26f0c3557202b408.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.pageProduct-tip {
    list-style: none;
    /*list-style-image: url("img/ICON-drop-4ee5d9395e49844b26f0c3557202b408.svg");*/
    color: var(--darkblue);
    font-weight: 600;
    /*font-size: 15px;*/
    font-size: 3.82vw;
    /*line-height: 26px;*/
    line-height: 6.62vw;
    margin: 7.3px 0;
}

.pageProduct-tip p {
    display: inline-block;
    margin: 0;
    width: 90%;
    vertical-align: top;
}

.pageProduct-details .packaging {
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}

.pageProduct-details .packaging img {
    width: 24px;
    height: 64px;
}

.pageProduct-details .packaging span {
    font-weight: 600;
    font-size: 0.7rem;
    display: block;
    color: #005587;
    width: 50px;
    line-height: 13px;
}

/* PAGE - Recipe list */

.pageRecipesList {
    border-top: 4px solid var(--paleblue);
    padding-top: 0px;
}

.pageRecipesList .recipes .recipe {
    padding: 1%;
    margin-top: unset;
    margin-bottom: 4%;
    width: 90%;
}

.pageRecipesList .list-featured-recipes .recipes .recipe {
    margin: 0 auto;
    margin-bottom: 4%;
}

.pageRecipesList .list-featured-recipes .recipes a{
    /*position: relative;*/
    z-index: 1;
}

.pageRecipesList .recipes-list-header h1 {
    color: #005587;
    text-align: center;
}

.recipes .recipe .missing-image {
    width: 558px;
    height: 460px;
}

.pageRecipesList .recipes-list-header .list-featured-recipes {
    /*background: rgb(230, 237, 243);*/
    background: #e6edf3;
}

.pageRecipesList .list-featured-recipes h2 {
    color: #005587;
    text-align: center;
}

.pageRecipesList .list-featured-recipes .wave {
    margin-top: -9%;
    margin-bottom: -2%;
    width: 100%;
}

.pageRecipesList .algolia-content-right {
    border: unset;
}

.pageRecipesList .recipes {
    width: 90%;
    margin: 0 auto;
    border-top: 2px solid #0055871A;
    padding-top: 3%;
}

/* Algolia FILTERS */

.filters-content {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-left: 5%;
    padding-right: 5%;
}

.filters-content > * {
    margin-right: 0;
}

.filters-content .close-section {
    width: 95%;
    text-align: right;
    margin-top: 4%;
}

.algolia-filters-left .facet label {
    color: var(--darkblue);
    font-size: 16px;
    font-weight: 500;
    
}

.algolia-filters-left .facet .filter-title {
    display: flex;
    align-items: center;
    color: var(--darkblue);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.algolia-filters-left {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 3%;
}

.algolia-filters-left .clear-filters {
    border: 1px solid var(--lightgrey);
    border-radius: 10px;
    padding: 2% 6.5%;
    display: block;
    width: 82%;
    font-weight: 600;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 1rem;
    margin-top: 3%;
    text-align: center;
}

.algolia-filters-left .filter-arrow-display {
    display: none;
}

.algolia-filters-left .all-filters {
    border: 1px solid var(--lightgrey);
    border-radius: 10px;
    padding: 2% 6.5%;
    display: block;
    width: fit-content;
    font-weight: 700;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 1rem;
    margin-top: 3%;
}

.pageRecipesList .algolia-filters-left .all-filters {
    margin-left: 10%;
}

.algolia-filters-left .all-filters img {
    width: 24px;
    display: inline-block;
}

.algolia-filters-left .all-filters span {
    display: inline-block;
    vertical-align: text-bottom;
    margin-left: 5px;
}

.algolia-filters-left .facet {
    margin-top: 27px;
    border-bottom: 2px solid #0055871A;
    padding-bottom: 30px;
    width: 95%;
}

:nth-last-child(1 of .algolia-filters-left .facet) {
    border: unset;
}

.algolia-filters-left .facet .filter-arrow {
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 11px;
}

.algolia-filters-left .filter-content {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 20px;
}

.algolia-filters-left .facet .container-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 44px;
    cursor: pointer;
    line-height: 36px;
}

.algolia-filters-left .facet .container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.algolia-filters-left .facet .checkmark {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border: 2px solid #0055871A;
    border-radius: 3px;
}

.algolia-filters-left .facet .container-checkbox:hover input ~ .checkmark {
    background-color: white;
}

.algolia-filters-left .facet .container-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

.algolia-filters-left .facet .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.algolia-filters-left .facet .container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.algolia-filters-left .facet .container-checkbox .checkmark:after {
    left: 4px;
    top: 2px;
    width: 10px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.algolia-content-right {
    border-top: 3px solid #0055871A;
    padding-top: 5%;
}

.algolia-content-right .pagination {
    border-top: 3px solid #0055871A;
    color: var(--darkblue);
    font-size: 1rem;
    text-align: center;
    padding-top: 3%;
    width: 100%;
    margin: 0 auto;
}

.algolia-content-right .pagination .current-page {
    font-weight: bold;
}

.algolia-content-right .pagination .algolia-page {
    cursor: pointer;
    padding-left: 1%;
}

.algolia-content-right .pagination .algolia-page input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.algolia-content-right .pagination label {
    cursor: pointer;
}

/* PAGE ARTICLES */

.pageArticlesList {
    border-top: 4px solid var(--paleblue);
    padding-top: 0px;
}

.pageArticlesList .articles--description{
    color: var(--darkblue);
    font-weight: 500;
    padding: 0 1rem 1rem 1rem;
}


.pageArticlesList .articles-list-header h1 {
    color: var(--darkblue);
    text-align: center;
    /*font-size: 32px;*/
    font-size: 8.14vw;
    font-weight: 700;
    line-height: 1.125em;
}

.pageArticlesList .articles-list-header .list-featured-article {
    background: var(--paleblue);
}

.pageArticlesList .list-featured-article .wave {
    margin-top: -9%;
    width: 100%;
}

.article-cta {
    color: var(--darkblue);
    background-color: var(--white);
    border: 1px solid var(--white);
}

.article-cta:hover {
    border: 1px solid var(--white);
    color: var(--darkblue);
    background-color: var(--white);
}

.pageArticlesList .articles-algolia-filters,
.pageArticlesList .articles-algolia-content {
    width: 90%;
    margin: 0 auto;
}

.pageArticlesList .list-featured-article .article-left img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.pageArticlesList .list-featured-article .article {
    padding: 27px 25px 0;
}

.pageArticlesList .list-featured-article .article-category,
.pageArticlesList .list-featured-article .article-title,
.pageArticlesList .list-featured-article .article-summary {
    display: block;
    text-align: center;
    color: #005587;
    margin: 1.5%;
}

.pageArticlesList .list-featured-article .article-category {
    text-transform: uppercase;
    line-height: 1.05;
    margin-top: 29px;
    font-size: 14px;
}

.pageArticlesList .list-featured-article .article-title {
    font-size: 23px;
    font-weight: 700;
}

.article-category a{
    text-transform: uppercase;
}

.pageArticlesList .list-featured-article .article-title {
    font-weight: bold;
}

.pageArticlesList .list-featured-article .article-summary {
    font-size: 1rem;
    width: 90%;
    margin: 0 auto;
}

/* STORES LIST PAGE */

.pageStoresList > .container-width {
    max-width: 1307px;
    width: 90%;
    margin: 0 auto;
}

.pageStoresList .stores-algolia-filters{
    display: none;
}

.pageStoresList .stores-algolia-content{
    width: 100%;
    padding-top: 0;
}

.pageStoresList .algolia-content-right {
    border: unset;
}

.pageStoresList #algolia-form {
    position: relative;
}

.pageStoresList .algolia-filters-left .facet .checkmark {
    display: none;
}

.pageStoresList .algolia-filters-left .facet .container-checkbox {
    padding-left: unset;
}

.pageStoresList .selected-filter {
    font-weight: 600;
    text-decoration: underline;
}

.pageStoresList h1 {
    font-size: 1.8rem;
    color: var(--darkblue);
    padding-left: 2%;
    font-weight: 700;
}

.pageStoresList .mobile-filters {
    position: absolute;
    top: 0;
    width: 100%;
    left: 2%;
}

.pageStoresList .mobile-filters select {
    width: 100%;
    min-height: 48px;
    height: 48px;
    padding: 3%;
    border: 2px solid var(--lightgrey);
    border-radius: 3px;
    background-color: var(--white);
    /*-webkit-appearance: menulist-button;*/ /* Désactive les styles par défaut de WebKit */
    -webkit-appearance: none;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
}

.pageStoresList .stores-list {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mobile-clear-filters {
    border: 1px solid var(--lightgrey);
    border-radius: 10px;
    display: block;
    padding: 2% 6.5%;
    margin: 0 auto;
    width: 96%;
    font-weight: 600;
    text-decoration: none;
    color: var(--darkblue);
    font-size: 1rem;
    margin-top: 3%;
    text-align: center;
    margin-bottom: 4%;
}

.stores .store {
    display: inline-block;
    width: 47%;
    margin-bottom: 6%;
    padding: 5%;
    border: 2px solid var(--paleblue);
    border-radius: 12px;
    vertical-align: middle;
    height: 140px;
}

.stores .store a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.stores .store img {
    width: 100%;
    max-height: 85%;
}

/* PAGE SEARCH */

.pageSearch > .container-width {
    padding: 0;
    width: 90%;
    max-width: 1307px;
    margin: 0 auto;
    border-top: 4px solid var(--paleblue);
    padding-top: 35px;
}

.pageSearch .search-header label,
.pageSearch .search-header .clear-filters{
    display: inline-block;
    color: var(--darkblue);
    font-size: 1rem;
    vertical-align: super;
    cursor: pointer;
}

.pageSearch .search-header input {
    visibility: hidden;
}

.pageSearch .algolia-content-right {
    width: 100%;
    border: unset;
    padding-top: 0;
    padding-left: 0px !important;
}

.pageSearch .algolia-content-right .pagination {
    width: 100%;
}

.pageSearch h1 {
    font-size: 1.8rem;
    color: var(--darkblue);
    font-weight: 700;
}

.pageSearch .search-header span {
    display: inline-block;
    color: var(--darkblue);
    font-size: 1rem;
    vertical-align: super;
}

.pageSearch .search-header .search-header-right span {
    padding-right: 2%;
}

.pageSearch .search-header {
    display: block;
    padding-bottom: 10px;
}

.pageSearch .search-hit h2 {
    font-size: 1.4rem;
    color: #005587;
    font-weight: 700;
}

.pageSearch .search-hit-description {
    color: #005587;
    font-size: 1rem;
    width: 80%;
    display: block;
}

.pageSearch .search-hit {
    border-top: 2px solid #0055871A;
    position: relative;
    padding-bottom: 15px;
}

.pageSearch .search-hit .search-hit-type {
    color: #005587;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 2%;
    display: block;
}

.pageSearch .search-hit .cta {
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    line-height: normal;
    padding: 8px 38px;
    margin: 0;
    width: 100%;
    text-decoration: none;
    border: 2px solid var(--paleblue);
    border-radius: 10px;
    color: #005587;
}

/* PAGE BRAND */

.pageBrand .brand-container-title,
.pageBrand .brand-container-description,
.pageBrand .brand-container-features {
    display: block;
    margin: 0 auto;
}

.pageBrand .brand-text-title, .brand-text-title {
    text-align: center;
    color: #005587;
    font-size: 1.4rem;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
}

.pageBrand .brand-container-description p {
    text-align: center;
    color: #005587;
    font-size: 1rem;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
}

.pageBrand .brand-container-features {
    padding-top: 0;
    margin: 0 auto;
    width: var(--container-width-percentage);
    max-width: var(--container-max-width);
    text-align: center;
}

.pageBrand .brand-container-features ul {
    display: block;
    justify-content: center;
    align-self: center;
    margin: 0;
    padding-left: 0;
}

.pageBrand .brand-container-features li {
    position: relative;
    align-items: center;
    text-align: center;
    justify-content: center;
    justify-items: center;
    width: 48%;
    list-style: none;
    padding: 2%;
    display: inline-block;
}

.pageBrand .brand-container-image {
    position: relative;
    overflow: hidden;
}

.pageBrand .brand-container-image img {
    display: block;
    width: 100%;
}

.pageBrand .brand-container-caption {
    position: absolute;
    width: 40%;
    top: 50%;
    left: 8.75%;
    transform: translateY(-50%);
    margin: 0;
    color: var(--white);
    font-size: 7.12vw;
    font-weight: 700;
    line-height: 7.63vw;
}

.pageBrand .brand-container-caption-secondary {
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    margin: 0;
    color: var(--white);
    font-size: 0.4rem;
    width: 100%;
    max-width: 66%;
}

.pageBrand .brand-container-features li .feature-image img {
    width: 80px;
}

.pageBrand .brand-container-features span {
    text-align: center;
    color: var(--darkblue);
    font-size: 19px;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
    font-weight: 700;
}

.pageBrand .brand-container-features span p {
    color: var(--darkblue);
    font-size: 19px;
    font-weight: 700;
}

.pageBrand .products-list:last-of-type .product-wrapper {
    margin-bottom: 0;
}

/* PAGE ARTICLE */

.generic_template .container-image img,
.pageArticle .article-container-image img {
    border-radius: 10px;
    margin-top: 3px;
}

.generic_template,
.pageArticle {
    color: var(--darkblue);
    font-size: 1rem;
}

.generic_template h2,
.pageArticle h2 {
    font-size: 2rem;
}

.generic_template h3,
.pageArticle h3 {
    font-size: 1.5rem;
}

.generic_template h4,
.pageArticle h4 {
    font-size: 1.2rem;
}

.generic_template .componentCms,
.pageArticle .article-componentCms {
    padding: 0 1%;
}

.pageArticle .article-componentCta {
    margin: 19px 0;
}

.article-componentHtml iframe {
    max-width: 100%;
}

.componentHighlightTexts {
    /*margin: 50px auto;*/
    margin: 12.72vw auto;
}

.componentHighlightTexts .highlights {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.componentHighlightTexts .highlight {
    width: 43.5%;
    text-align: center;
    color: var(--darkblue);
    /*font-size: 19px;*/
    font-size: 4.83vw;
    font-weight: 700;
    line-height: normal;
}

.componentHighlightTexts .highlight .feature-image {
    width: 50%;
    margin: 0 auto;
}

.componentHighlightTexts .highlight p {
    margin-block-start: 0;
}

.componentAccordion {
    height: max-content;
    --max-h: 1000;
    --transition-time: .25s;
    --contentTopPadding: 22;
    --contentBottomPadding: 17;
    margin-bottom: 19px;
    width: 100%;
    margin: 17px 0;
    padding: 26px 21px;
    background-color: var(--stone);
    border-radius: 10px;
}

.componentAccordion.facet {
    background: none;
    padding: 0 0 30px;
    border-radius: 0;
    margin: 20px 0 0;
    min-width: 95%;
}

.componentAccordion:has(.accordion-content.hidden) {
    --max-h: 0 !important;
    /* --contentTopPadding: 22; */
    /* --contentBottomPadding: 0 !important; */
}

.accordion-content {
    font-size: 5vw;
    max-height: calc(var(--max-h) * 1px);
    overflow: hidden;
    overflow: clip;
    padding-top: calc(var(--contentTopPadding) * 1px);
    padding-bottom: calc(var(--contentBottomPadding) * 1px);
    transition: max-height var(--transition-time), padding-top var(--transition-time), padding-bottom var(--transition-time);
    margin-top: -22px;
    color: var(--darkblue);
    /*font-size: 15px;*/
    font-size: 3.82vw;
    font-weight: 400;
}

.accordion-content .topicText:first-child p {
    margin-top: 0;
}

.accordion-title img {
    transition: transform, var(--transition-time);
}
    
.accordion-title {
    cursor: pointer;
    color: var(--darkblue);
    /*font-size: 17px;*/
    font-size: 4.33vw;
    font-weight: 700;
    /*letter-spacing: 0.58px;*/
    letter-spacing: 0.15vw;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.article_title_cta_image_caption {
    display: flex;
    flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    background-color: #DDE5EA;
    padding: 26px;
}

.article_title_cta_image_caption img {
    border-radius: 12px;
}

/* Accordion filters */

.componentAccordion.facet .accordion-title img {
    width: 15px;
    margin-left: 15px;
}

.componentAccordion.facet .accordion-content {
    padding: 0;
    margin: 0;
    gap: 0;
}

.componentAccordion.facet .accordion-content > div:first-child {
    margin-top: 20px;
}

/* Testimonial */

.testimonial {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    margin: 35px 0;
}

.testimonial-content-wrapper {
    position: relative;
    width: 88%;
    margin: 0 auto;
}

.testimonial-content {
    width: 72%;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--darkblue);
    /*font-size: 19px;*/
    font-size: 4.83vw;
    font-weight: 500;
    /*line-height: 32px;*/
    line-height: 8.14vw;
}

.testimonial-content p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: center;
    justify-content: center;
}

.testimonial-author-detail {
    /*margin-left: 19px;*/
    margin-left: 4.83vw;
}

.testimonial-author-identity {
    color: var(--darkblue);
    /*font-size: 17px;*/
    font-size: 4.33vw;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-author-job {
    color: var(--darkblue);
    /*font-size: 15px;*/
    font-size: 3.82vw;
    font-weight: 400;
    margin-top: 0;
}


/* TEST template */

.generic_template > .container-width > .cta,
.pageArticle .article-componentCta {
    display: inline-block;
    margin-bottom: 58px;
    margin-right: 19px;
}

.generic_template > .container-width > .cta:has( + style + .cta),
.pageArticle .article-componentCta:has( + .article-componentCta) {
    margin-bottom: 20px;
    margin-left: 0;
}

.generic_template > .container-width {
    width: 85%;
    margin: 0 auto;
}

.pageArticle > .container-width {
    --sidePadding: clamp(3%, 15px, 15px);
    padding: 0 var(--sidePadding);
}

.generic_template .breadcrumbs_items,
.pageArticle .breadcrumbs_items {
    margin-top: 43px;
    margin-bottom: 65px;
}

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

.generic_template_hero h1,
.pageArticle h1 {
    font-size: 44px;
    line-height: 60px;
}

.generic_template_hero .mobile-only,
.pageArticle .article-container-image.mobile-only {
    margin-left: calc(var(--sidePadding) * -1);
    margin-right: calc(var(--sidePadding) * -1);
}

.pageArticle .article-container-image.mobile-only img {
    border-radius: 0;
}

.generic_template > .container-width > img {
    margin-left: auto;
    margin-right: auto;
}

.generic_template > .container-width > img,
.pageArticle .article-wrapperAsset {
    width: auto;
    display: flex;
    justify-content: center;
}

.generic_template > .container-width > img,
.generic_template iframe,
.pageArticle .article-wrapperAsset img,
.pageArticle .article-componentHtml iframe {
    width: clamp(calc(100vw - var(--sidePadding) * 2), calc(100vw - var(--sidePadding) * 2), 878px);
    border-radius: 12px;
}

.generic_template iframe,
.pageArticle .article-componentHtml {
    margin-top: 47px;
}

.generic_template iframe,
.pageArticle .article-componentHtml iframe {
    min-height: 491px;
}

.generic_template .componentAccordion,
.pageArticle .componentAccordion {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.generic_template .componentAccordion,
.pageArticle .article-componentAccordion {
    margin-bottom: 71px;
}

.generic_template .componentAccordion:has( + .componentAccordion),
.pageArticle .article-componentAccordion:has( + .article-componentAccordion) {
    margin-bottom: 17px;
}

.generic_template .componentCms,
.pageArticle .article-componentCms {
    margin-bottom: 44px;
}

.generic_template .article_title_cta_image_caption,
.pageArticle .article_title_cta_image_caption {
    border-radius: 10px;
    margin-bottom: 66px;
}

.generic_template .testimonial,
.pageArticle .testimonial {
    margin-bottom: 47px;
}