/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: "CantataOne";
    src: url('../fonts/CantataOne-Regular.ttf');
}

html {
    font-size: .625em;
    /* fallback IE8+ */
    font-size: calc(1em * .625);
    /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
}

body {
    position: relative;
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #444444;
    padding-top: 7rem;
    font-size: 1.6rem;
    /* base font-size is equivalent "14px" */
}

a {
    color: #2C2C2C;
}

a:hover {
    color: #000;
    text-decoration: none;
}


/* Custom Font */
.font-cantata {
    font-family: "CantataOne";
}

.barlow-thin {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.barlow-extralight {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.barlow-light {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.barlow-medium {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.barlow-semibold {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.barlow-bold {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.barlow-extrabold {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.barlow-black {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.barlow-thin-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.barlow-extralight-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.barlow-light-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.barlow-regular-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.barlow-medium-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.barlow-semibold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.barlow-bold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.barlow-extrabold-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.barlow-black-italic {
    font-family: "Barlow", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* Color */
.text-green {
    color: #23613E !important;
}

.text-white {
    color: #FFF !important;
}

.text-red {
    color: #97242C !important;
}

.text-blue {
    color: #0A3B6E !important;
}

/* Svg */
.svg-green {
    filter: invert(28%) sepia(8%) saturate(4197%) hue-rotate(95deg) brightness(91%) contrast(76%);
}

.sticky {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    z-index: 1020;
}

/*.secondary-nav.sticky + #news-wrapper{
    margin-top: 16rem !important;
}

.secondary-nav.sticky + #produits-list{
    margin-top: 20rem !important;
}*/

/* Select Form */

/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #FFF;
    background-image: none;
}

/* Remove IE arrow */
select::-ms-expand {
    display: none;
}

/* Custom Select */
.select {
    position: relative;
    display: flex;
    background: #FFF;
    overflow: hidden;
    /*border-radius: .25em;*/
}

select {
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0;
    background: #FFF;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
    color: rgb(44, 44, 44, 0.2);
}

/* Transition */
.select:hover::after {
    color: #23613E;
}


.modal-content a {
    text-decoration: underline;
    color: #23613E;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-lg {
    padding: 1.2rem 2.5rem;
    border-radius: 4rem;
    font-size: 2rem;
}

.btn-smile {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-smile span {
    display: inline-block;
    transition: all .2s linear;
}

.btn-smile img,
.btn-smile svg {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
    opacity: 0;
    width: 6rem;
}

.btn-smile:hover img,
.btn-smile:hover svg {
    bottom: 1rem;
    opacity: 1;
}

/* White */
.btn-white,
.btn-white:focus,
.btn-white:active,
.btn-white:hover {
    background-color: #FFF;
    color: #23613E;
}

.btn-smile.btn-white:hover span {
    transform: translate(0, -0.6rem);
}

.btn-smile.btn-white img {
    filter: invert(28%) sepia(8%) saturate(4197%) hue-rotate(95deg) brightness(91%) contrast(76%);
}

/* Green */
.btn-green,
.btn-green:focus,
.btn-green:active,
.btn-green:hover {
    background-color: #23613E;
    color: #FFF !important;
}

.btn-smile.btn-green:hover span {
    transform: translate(0, -0.6rem);
}

.btn-smile.btn-green img {
    filter: invert(90%) sepia(4%) saturate(144%) hue-rotate(190deg) brightness(111%) contrast(101%);
}

/* Yellow */
.btn-yellow,
.btn-yellow:focus,
.btn-yellow:active,
.btn-yellow:hover {
    background-color: #ffed00;
    color: #659032;
    color: #23613E;
}

.btn-smile.btn-yellow:hover span {
    transform: translate(0, -0.6rem);
}

.btn-smile.btn-yellow img {
    filter: invert(28%) sepia(8%) saturate(4197%) hue-rotate(95deg) brightness(91%) contrast(76%);
}




.alert .btn {
    margin-top: 1rem;
}


/*--------------------------------------------------------------
# Rechercher
--------------------------------------------------------------*/
.search-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: linear-gradient(200deg, #27156E, #6A2A88, #9F4981);*/
    background-color: #23613E;
    opacity: 0;
    display: none;
    transition: all .5s ease;
    z-index: 20000;
}

/* Close */
.search-box .toggle-search {
    position: fixed;
    top: 1.5rem;
    right: 3rem;
    color: #FFF;
    cursor: pointer;
    opacity: 0;
    font-size: 4rem;
    transition: all 0.3s ease-in-out;
}

.search-box .toggle-search:hover {
    transform: rotate(0);
}

/* Search Input */
.search-input {
    height: 8rem;
    position: absolute;
    top: 50%;
    left: 50px;
    margin-top: -4rem;
    /*pointer-events: none;*/
    /*opacity: 0;*/
    transform: none;
    transition: all 0.3s ease-in-out;
}

.search-input input {
    color: #fff;
    font-size: 6rem;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: 0;
    font-weight: 200;
}

.search-input ::-webkit-input-placeholder {
    color: #EEE;
}

.search-input :-moz-placeholder {
    color: #EEE;
    opacity: 1;
}

.search-input ::-moz-placeholder {
    color: #EEE;
    opacity: 1;
}

.search-input :-ms-input-placeholder {
    color: #EEE;
}

/* Open Search Box */
.search-box.open {
    opacity: 1;
    display: block;
}

.search-box.open .toggle-search {
    opacity: 1;
    transform: rotate(-90deg);
}

.search-box.open .search-input {
    /*opacity: 1;*/
    transform: translate(5rem, 0);
    pointer-events: all;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navbar {
    padding: 0;
    background-color: #FFF !important;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
}

.navbar .logo {
    position: absolute;
    top: 0;
    left: 2rem;
    z-index: 1050;
}

.navbar .logo img {
    max-width: 20rem;
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2));
}

.navbar-nav {
    padding-left: 22rem;
    /* 2rem + 20rem (.navbar .logo + .navbar .logo img) */
    height: 7rem;
}

.navbar-right .navbar-nav {
    padding-left: 0;
}

.navbar-nav a.nav-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 1.8rem;
    color: #23613E;
    margin: 0 2rem;
    text-transform: uppercase;
}

.navbar-nav .main a.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1E5034;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
}

.navbar-nav .main a.nav-link:hover::before,
.navbar-nav .main.active a.nav-link::before {
    transform-origin: left;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
}

.navbar-nav .main a.nav-link [class*=" bi-"]::before,
.navbar-nav .select-lang a.nav-link [class*=" bi-"]::before {
    -webkit-text-stroke: 2px;
    font-size: 80%;
}


/*Burger*/
.navbar-nav .nav-burger {
    /*background-color: #1E5034;*/
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-nav .icon-burger {
    display: block;
    width: 3rem;
    height: 2rem;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navbar-nav .icon-burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #1E5034;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navbar-nav .icon-burger span:nth-child(1) {
    top: 0px;
}

.navbar-nav .icon-burger span:nth-child(2) {
    top: 0.9rem;
}

.navbar-nav .icon-burger span:nth-child(3) {
    top: 1.8rem;
}

.navbar-nav .icon-burger.open span:nth-child(1) {
    top: 0.9rem;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navbar-nav .icon-burger.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

.navbar-nav .icon-burger.open span:nth-child(3) {
    top: 0.9rem;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* Select Lang */
.dropdown-toggle::after {
    display: none;
}

.navbar-nav .select-lang-wrapper {
    height: 100%;
}

.navbar-nav .select-lang a.nav-link {
    font-size: 1rem;
    margin: 0;
    padding: 0 2rem;
}

.navbar-nav .select-lang .nav-link i {
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.navbar-nav .select-lang.show a.nav-link i {
    margin-bottom: -.5rem !important;
    transform: rotateZ(-180deg);
}

.navbar-nav .select-lang.show .dropdown-menu {
    display: flex !important;
    left: -60%;
    width: auto;
}

.navbar-nav .select-lang .dropdown-item {
    color: #1E5034;
    padding: 1rem 1.5rem;
}

.navbar-nav .select-lang .dropdown-item:hover {
    color: #707070;
    background: transparent;
}

/* Search */
.navbar-nav .search {
    /*border-left: 0.1rem solid #9E9E9E;*/
}

.navbar-nav .search a.nav-link {
    font-size: 3.5rem;
    color: #1E5034;
    /*padding: 0 1.5rem;*/
}


/* Sous-menu */
.navbar-nav .dropdown.sub-menu {
    position: initial;
    border: 0;
}

.navbar-nav .dropdown-menu {
    background-color: #FFF;
    background-color: rgba(255, 255, 255, 0.95);
    color: #23613E;
    border-radius: 0;
    border: none;
    border-top: 1px solid #1E5034;
}

.sub-menu-nav,
.sub-menu-nav a {
    color: #23613E;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.sub-menu-nav.contact{
    margin-left: 5rem;
}

.sub-menu-nav li {
    margin: 2rem 0;
    position: relative;
}

.sub-menu-nav.salades li {
    margin: 0.5rem 0;
}

.sub-menu-nav img {
    vertical-align: bottom;
    position: relative;
    display: inline-block;
}

.sub-menu-nav.salades a:hover img {
    filter: drop-shadow(0 0 4px #99cead);
    filter:
        drop-shadow(3px 0 0 #99cead) drop-shadow(-3px 0 0 #99cead) drop-shadow(0 3px 0 #99cead) drop-shadow(0 -3px 0 #99cead);
}

.sub-menu-nav.salades .title {
    font-size: 1.3rem;
}

.sub-menu-nav.salades a:hover .title {
    background-color: #b4dec3;
    border-radius: 0.5rem;
}

.sub-menu-nav li.circle::before {
    content: "";
    position: absolute;
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-color: rgba(35, 97, 62, 0.16);
    top: 0.5rem;
    left: -1.2rem;
}

/* Flags */
.flag {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
}

.navbar-nav .select-lang .dropdown-menu a:hover .flag {
    outline: 3px solid #99cead;
}

.flag--france {
    --blue: #0050a4;
    --red: #ef4135;
    background-image: linear-gradient(to right, var(--blue) calc(100% / 3 * (1 - 1)), var(--blue) calc(100% / 3 * 1), var(--white) calc(100% / 3 * (2 - 1)), var(--white) calc(100% / 3 * 2), var(--red) calc(100% / 3 * (3 - 1)), var(--red) calc(100% / 3 * 3));
}

.flag--united-kingdom {
    --red: #c60c30;
    --blue: #002776;
    /*height: calc(25vw / 2);*/
    background-color: var(--blue);
    background-image: linear-gradient(to right, transparent 0%, transparent 45%, var(--red) 45%, var(--red) 55%, transparent 55%, transparent 100%), linear-gradient(to bottom, transparent 0%, transparent calc((100% - (100% / 6)) / 2), var(--red) calc((100% - (100% / 6)) / 2), var(--red) calc((100% - (100% / 6)) / 2 + (100% / 6)), transparent calc((100% - (100% / 6)) / 2 + (100% / 6)), transparent 100%), linear-gradient(to right, transparent 0%, transparent 41.66%, #fff 41.66%, #fff 58.33%, transparent 58.33%, transparent 100%), linear-gradient(to bottom, transparent 0%, transparent calc(100 / 3 * 1%), #fff calc(100 / 3 * 1%), #fff calc(100 / 3 * 2 * 1%), transparent calc(100 / 3 * 2 * 1%), transparent 100%), linear-gradient(to top right, transparent 0%, transparent calc(100% / 26 * 12.25), var(--red) calc(100% / 26 * 12.25), var(--red) calc(100% / 26 * 13), transparent calc(100%/ 26 * 13), transparent 100%), linear-gradient(to bottom right, transparent 0%, transparent calc(100% / 26 * 12.25), var(--red) calc(100% / 26 * 12.25), var(--red) calc(100% / 26 * 13), transparent calc(100%/ 26 * 13), transparent 100%), linear-gradient(to top right, transparent 0%, transparent calc(100% / 26 * 11.5), #fff calc(100% / 26 * 11.5), #fff calc(100% / 26 * 14.5), transparent calc(100%/ 26 * 14.5), transparent 100%), linear-gradient(to bottom right, transparent 0%, transparent calc(100% / 26 * 11.5), #fff calc(100% / 26 * 11.5), #fff calc(100% / 26 * 14.5), transparent calc(100%/ 26 * 14.5), transparent 100%);
}

.flag--spain {
    --red: #aa151b;
    --yellow: #f1bf00;
    position: relative;
    background-image: linear-gradient(to bottom, var(--red) 0%, var(--red) 25%, var(--yellow) 25%, var(--yellow) 75%, var(--red) 75%, var(--red) 100%);
}

.flag--spain #spain_coat {
    position: absolute;
    left: calc(100% / 3);
    top: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% / 5 * 2);
}


/* Social */
.social a {
    display: inline-block;
    background-color: #1E5034;
    width: 4.2rem;
    height: 4.2rem;
    text-align: center;
    line-height: 4.2rem;
    color: #FFF;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-left: 0.6rem;
}

.social a:hover {
    background-color: #f9eb50;
    color: #1E5034;
}

.social a:first-child {
    margin-left: 0;
}


/*--------------------------------------------------------------
# Home Slider
--------------------------------------------------------------*/
.carousel {
    background: #000;
}

.carousel-item .img-fluid {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.carousel-item.no-opacity .img-fluid {
    opacity: 1;
}

.carousel-caption {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    margin: 0;
    padding: 0;
    right: initial;
    bottom: initial;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-size: 6rem;
    line-height: 1.3;
    margin-bottom: 4rem;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 50%);
}

.carousel-caption .btn-white {
    box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.2);
}


.carousel .carousel-indicators li {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #FFF;
    opacity: 1;
    margin: 0 0.6rem;
}

.carousel .carousel-indicators li.active {
    width: 1.8rem;
    height: 1.8rem;
    background-color: #23613E;
}


/* Button : Bons plans */
.bons-plans {
    margin-top: -20rem;
    margin-bottom: 3rem;
}

.btn-bons-plans {
    width: 20rem;
    height: 20rem;
    background: rgb(255, 251, 121);
    background: linear-gradient(90deg, rgba(255, 251, 121, 1) 0%, rgba(247, 223, 67, 1) 100%);
    color: #1E5034;
    font-size: 2.8rem;
    border-radius: 50%;
    z-index: 5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    line-height: normal;
    flex-direction: column;
    box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.2);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.btn-bons-plans:hover {
    background: linear-gradient(90deg, rgba(255, 251, 121, 1) 0%, rgba(255, 251, 121, 1) 100%);
    color: #1E5034;
    transform: rotate(-15deg);
}


/*--------------------------------------------------------------
# Home Products
--------------------------------------------------------------*/
#home-products,
#home-recettes {
    position: relative;
    background-color: #F7F7F7;
    padding-top: 6rem;
    padding-bottom: 0;
}

#home-products::before,
#home-recettes::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/bkg-paper.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.2;
}

/*.home-heading span {
    color: #2C2C2C;
}*/

.home-heading h2 {
    font-size: 4.4rem;
}

.home-heading p {
    font-size: 1.9rem;
    margin-top: 2.5rem;
}

/*Scroll Indication */
.scroll-indication {
    width: 6.6rem;
    height: 6.6rem;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0px 01px 20px -10px rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: 0px 01px 20px -10px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0px 01px 20px -10px rgba(0, 0, 0, 0.45);
    margin: 5rem auto;
    position: relative;
}

.scroll-indication:before,
.scroll-indication:after {
    content: '';
    width: 5rem;
    height: 0.1rem;
    background: rgba(44, 44, 44, 0.1);
    position: absolute;

}

.scroll-indication:before {
    right: 130%;
}

.scroll-indication:after {
    left: 130%;
}

/* Products Categories */
.product-categories {
    position: relative;
    margin-bottom: 6rem;
}

.product-categories .element-persil {
    position: absolute;
    left: -16rem;
    top: -18rem;
    mix-blend-mode: multiply;
}

.product-categories .element-citron {
    position: absolute;
    right: -16rem;
    top: -18rem;
    mix-blend-mode: multiply;
}


.product-category {
    position: relative;
    /*width: 30rem;
    max-width: 30rem !important;*/
    /*background-color: #FFF;*/

    /*height: 37rem;*/
    /*height: auto;*/
    margin: 0 2rem;
}

.product-category .picture{
    position: relative;
}

.product-category .overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.product-category .overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: #23613E;
    color: #FFF;
    font-size: 1.4rem;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.35s ease-out;
}

.product-category .picture:hover .overlay {
    background: rgba(255, 255, 255, 0.4);
}

.product-category .picture:hover .overlay a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.product-category h3 {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.product-category p a{
    color: #23613E;
    font-size: 1.6rem;
}

.product-category p a:hover{
   text-decoration: underline;
}

/* Dots slider */
.product-categories .slick-dots {
    position: relative;
    bottom: initial;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    padding: 0;
}

.slick-dots li button:before {
    position: relative;
    display: block;
    background-color: #b4dec3;
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
    opacity: 1;
    content: '';
    top: initial;
    left: initial;
    margin: auto;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #23613E;
    width: 1.8rem;
    height: 1.8rem;
}

.custom-slick-prev,
.custom-slick-next {
    position: absolute;
    top: 40%;
    transform: translate(0, -150%);
    color: #23613E;
    font-size: 1.8rem;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.custom-slick-prev:focus,
.custom-slick-next:focus,
.custom-slick-prev:visited,
.custom-slick-next:visited,
.custom-slick-prev:active,
.custom-slick-next:active {
    outline: none;
    background: transparent;
    color: #23613E;
    border: none;
}

.custom-slick-prev [class*=" bi-"]::before,
.custom-slick-next [class*=" bi-"]::before{
    font-size: 2.5rem;
    -webkit-text-stroke: 2px;
}

.custom-slick-prev {
    left: -1.5rem;
}

.custom-slick-prev:hover,
.custom-slick-next:hover {
    color: #333;
}

.custom-slick-next {
    right: -1.5rem;
}


/*--------------------------------------------------------------
# Home History
--------------------------------------------------------------*/
#home-history {
    background-color: #FFF;
    padding: 10rem 0;
    position: relative;
}

#home-history .tomate-basilic {
    position: absolute;
    left: -9rem;
    top: 5rem;
    mix-blend-mode: multiply;
}

#home-history .btn-wrapper {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

#home-history .picture img {
    mix-blend-mode: multiply;
}

#home-history .picture {
    margin-right: -12rem;
}

/*--------------------------------------------------------------
# Home Recipes
--------------------------------------------------------------*/
#home-recipes {
    background-color: #F7F7F7;
    padding: 12rem 0;
    overflow: hidden;
}

#home-recipes .row {
    position: relative;
}

#home-recipes .semoule {
    position: absolute;
    left: -13rem;
    bottom: -13rem;
    mix-blend-mode: multiply;
}

#home-recipes .menthe {
    position: absolute;
    right: -15rem;
    top: -15rem;
    mix-blend-mode: multiply;
}

#home-recipes .huile {
    position: absolute;
    right: -25rem;
    bottom: -4rem;
    mix-blend-mode: multiply;
}

#home-recipes .home-heading {
    margin-top: 10rem;
}

#home-recipes h2 {
    letter-spacing: -0.1rem;
}

#home-recipes .btn-wrapper {
    position: relative;
    margin: 5rem 0;
}

#home-recipes .raisins {
    position: absolute;
    left: 3rem;
    top: -4.5rem;
    mix-blend-mode: multiply;
}

/*--------------------------------------------------------------
# Home Contact
--------------------------------------------------------------*/
#home-contact {
    background-color: #FFF;
    padding: 10rem 0;
    position: relative;
}

#home-contact .instagram-feed {
    margin: 5rem 0;
}

#home-contact .instagram-post {
    position: relative;
}

#home-contact .instagram-post::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#home-contact .instagram-post img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-contact .social .list-inline-item {
    margin: 0 1rem;
}

#home-contact .social .list-inline-item a {
    margin: 0;
}

/*--------------------------------------------------------------
# Home Links
--------------------------------------------------------------*/
#home-links {
    padding: 6rem 0;
    background: #FFF url('../img/home/contact-bkg.jpg') repeat;
}

#home-links a {
    color: #2C2C2C;
    font-size: 2.2rem;
    letter-spacing: -0.1rem;
    display: block;
}

#home-links .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: rgba(35, 97, 62, 0.16);
    margin: 0 auto;
    margin-bottom: 2rem;
}

#home-links .icon-circle img {
    position: absolute;
}

#home-links .icon-circle.travaille img {
    left: 40%;
    top: -20%;
}

#home-links .icon-circle.food-service img,
#home-links .icon-circle.international img {
    right: 40%;
    top: -15%;
}

#home-links .icon-circle.bons-plans img {
    left: 45%;
    top: -12%;
}


/*--------------------------------------------------------------
# Page General
--------------------------------------------------------------*/
.headband {
    width: 100%;
    height: calc(100vw * 0.23);
    padding: 0;
    background: #2C2C2C;
    position: relative;
}

.headband.page-produits.nouveautes,
.headband.page-produits.salades,
.headband.page-produits.taboules,
.headband.page-produits.vegetal {
    height: calc(100vw * 0.238);
}

.headband.page-produits.salades{
    height: calc(100vw * 0.28);
}

.headband:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    background-size: cover;
}

.headband.page-entreprise:before {
    background: url(../img/headband/notre-entreprise.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;

}

.headband.page-histoire:before {
    background: url(../img/headband/notre-histoire.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-saga:before {
    background: url(../img/headband/notre-saga-publicitaire.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-engagements:before {
    background: url(../img/headband/nos-engagements.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-ensemble:before {
    background: url(../img/headband/travaillons-ensemble.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-actualites:before {
    background: url(../img/headband/actualites.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-recettes:before {
    background: url(../img/headband/recettes.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-produits:before {
    background: url(../img/headband/produits-v2.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-produits.nouveautes:before {
    background: url(../img/headband/produits-nouveautes.jpg) center center;
}

.headband.page-produits.salades:before {
    /*background: url(../img/headband/produits-salades.jpg) center center;*/
    background: url(../img/headband/produits-salades-v2.jpg) center center;
    opacity: 0.9;
}

.headband.page-produits.taboules:before {
    background: url(../img/headband/produits-taboules.jpg) center center;
}

.headband.page-produits.vegetal:before {
    background: url(../img/headband/produits-vegetal.jpg) center center;
}

.headband.page-sponsoring:before {
    background: url(../img/headband/nos-sponsoring-partenariats.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-carottes:before {
    background: url(../img/headband/carottes.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-echangeons:before {
    background: url(../img/headband/echangeons.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-presse:before {
    background: url(../img/headband/presse.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headband.page-loisirs {
    height: calc(100vw * 0.414285);
    background: transparent;
}

.headband.page-loisirs:before {
    background: url(../img/headband/op-loisirs.jpg?20230224) center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}

.headband.page-jeupromo {
    height: calc(100vw * 0.46);
    background: transparent;
}

.headband.page-jeupromo:before {
    background: url(../img/headband/op-jeupromo.jpg?20230224) center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}

.headband.page-paniers {
    height: calc(100vw * 0.414285);
    background: transparent;
}

.headband.page-paniers:before {
    background: url(../img/headband/op-paniers.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
}

.headband h1 {
    font-size: 6rem;
}

.headband.page-produits h1,
.headband.page-actualites h1
 {
    font-size: 10rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
}


.headband .container {
    position: relative;
}

.headband .breadcrumb {
    position: absolute;
}

.breadcrumb {
    padding: .75rem 1rem;
    margin-bottom: 0;
    margin-top: 1rem;
    background: transparent;
}

.breadcrumb,
.breadcrumb a {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item {
    margin-left: 0.8rem;
    list-style-type: circle;
    list-style-position: inside;
}

.breadcrumb-item+.breadcrumb-item:before {
    display: none;
}


.page-wrapper h2 {
    font-size: 3.8rem;
}

.page-wrapper h2.small {
    font-size: 3rem;
}

.page-wrapper .intro {
    font-size: 2rem;
    color: #2C2C2C;
    margin: 5rem 0;
}

.page-wrapper.produits .intro,
.page-wrapper.actualites .intro
 {
    margin: 0;
    line-height: normal;
    opacity: 1;
    transition: all 0.4s ease;
}

.page-wrapper .intro.big {
    font-size: 3rem;
}

.page-wrapper .content {
    font-size: 1.6rem;
    color: #2C2C2C;
    letter-spacing: -0.01rem;
}


/*--------------------------------------------------------------
# Page : Intraitable > Notre Entreprise 
--------------------------------------------------------------*/
#company-values {
    background-color: #F7F7F7;
    padding: 10rem 0;
}

#company-values .passion {
    margin-top: 8rem;
}

/* Services */
.services {
    margin-top: 10rem;
}

.services .row:not(:last-child) {
    margin-bottom: 8rem;
}

.services .icon-circle {
    display: block;
    position: relative;
    width: 8.2rem;
    height: 8.2rem;
    border-radius: 50%;
    background-color: rgba(35, 97, 62, 0.16);
}

.services .icon-circle img {
    position: absolute;
}

.services p {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 600;
    color: #585F5B;
    margin-left: 3rem;
}

.services .icon-circle.rse img,
.services .icon-circle.ingredients img,
.services .icon-circle.qualite img {
    right: 50%;
    top: 15%;
}

.services .icon-circle.rh img {
    right: 20%;
    top: 30%;
}

/* Engagements */
#company-engagements {
    padding-top: 10rem;
    padding-bottom: 55rem;
    background: #FFF url('../img/home/contact-bkg.jpg') repeat;
    overflow: hidden;
}

#company-engagements .row {
    position: relative;
}

#company-engagements .element-tomates {
    position: absolute;
    right: -7rem;
    bottom: -12rem;
    mix-blend-mode: multiply;
}

/* Interview */
#company-interview {
    background: #F7F7F7;
    padding-bottom: 45rem;
}

#company-interview .container {
    position: relative;
}

#company-interview .bloc-interview {
    position: absolute;
    top: -40rem;
}

#company-interview .video {
    position: relative;
}

#company-interview .video .play {
    position: absolute;
    width: 12rem;
    height: 12rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    background-color: rgba(30, 80, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 4rem;
    transition: all 0.2s ease;
}

#company-interview .video .play i {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

#company-interview .video .play i::before {
    line-height: 1.5;
}

#company-interview .video .play:hover {
    background-color: rgba(30, 80, 52, 1);
}



/* Découvrez également */
#company-discover {
    background: #F7F7F7;
    padding-bottom: 10rem;
}

#company-discover .row {
    position: relative;
}

#company-discover h2 {
    margin-bottom: 8rem;
}

#company-discover .saga {
    margin-top: 9rem;
}

#company-discover .picture {
    position: relative;
    background-color: #2C2C2C;
    overflow: hidden;
    color: #FFF;
}

#company-discover .picture img {
    opacity: 0.5;
    transition: all 0.8s ease 0s;
}

#company-discover .picture .overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#company-discover .picture .overlay h3 {
    color: #FFF;
    font-size: 4.4rem;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
    margin-bottom: 0.5rem;
}

#company-discover .picture .overlay svg {
    opacity: 0;
    transform: translateY(8rem);
    transition: all 0.2s cubic-bezier(0.13, 0.62, 0.81, 0.91) 0s;
}

#company-discover .picture:hover {
    text-decoration: none;
}

#company-discover .picture:hover img {
    transform: scale(1.2);
}

#company-discover .picture:hover h3 {
    transform: translateY(-3rem);
}


#company-discover .picture:hover .overlay svg {
    opacity: 1;
    transform: translateY(0rem);
}

#company-discover .element-fueilles-olivier {
    position: absolute;
    left: -15rem;
    top: 5rem;
    mix-blend-mode: multiply;
}

#company-discover .element-menthe {
    position: absolute;
    right: -10rem;
    bottom: -15rem;
    transform: scaleX(-1);
    mix-blend-mode: multiply;
}


/*--------------------------------------------------------------
# Page : Intraitable > Notre Histoire
--------------------------------------------------------------*/
#history-intro {
    background-color: #F7F7F7;
    padding: 10rem 0;
    padding-bottom: 0;
}

#history-intro h2 {
    font-size: 3rem;
    margin: 0;
}

#history-intro p {
    font-size: 2rem;
    color: #2C2C2C;
}

/* Timeline */
#history-timeline {
    background-color: #F7F7F7;
    padding-top: 4rem;
    padding-bottom: 10rem;
}

.timeline {
    position: relative;
    overflow: hidden;
}


.timeline .row:not(:first-child) {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

/*.timeline [class^='col-']{
    min-height: 20rem;
}*/

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            rgba(44, 44, 44, 0.3),
            rgba(44, 44, 44, 0.3) 20%,
            transparent 20%,
            transparent);
    background-size: 100% 1rem;
}

.timeline .progress-bar {
    content: '';
    position: absolute;
    top: 0;
    height: 0;
    width: 0.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #23613E;
    transition: all 0.2s;
}

.timeline [class^='col-']>img {
    mix-blend-mode: multiply;
}

.timeline h2 {
    font-size: 7rem;
    margin: 0;
}

.timeline h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin: 0;
    margin-top: 4rem;
    margin-left: 4rem;
    width: 65%;
}

.timeline p {
    position: relative;
    font-size: 1.6rem;
    margin: 0;
    margin-top: 2rem;
    margin-left: 4rem;
    font-family: "Open Sans", sans-serif;
    color: #2C2C2C;
    width: 65%;
}

.timeline p img {
    position: absolute;
    top: -3.5rem;
    left: -5rem;
}

.timeline .no-picture {
    width: 36rem;
    height: 36rem;
    background-color: #ECECEC;
}

.timeline .bullet {
    z-index: 5;
    width: 3.6rem;
    height: 3.6rem;
    background-color: #EDF0EE;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
}

.timeline .bullet::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 39%;
    /* (8*100)/36 */
    left: 39%;
    width: 0.8rem;
    height: 0.8rem;
    background: #23613E;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline .bullet.active {
    background-color: #23613E;
}

.timeline .bullet.active::after {
    background: #EDF0EE;
}



/*--------------------------------------------------------------
# Page : Intraitable > Notre Saga Publicitaire
--------------------------------------------------------------*/
#saga-intro {
    background-color: #F7F7F7;
    padding: 10rem 0;
    padding-bottom: 37rem;
    /* (10+27) */
}

#saga-intro h2 {
    font-size: 3rem;
    margin: 0;
}

#saga-intro p {
    font-size: 1.6rem;
    color: #2C2C2C;
}

/* Timeline */
#saga-timeline {
    background-color: #FFF;
    padding-bottom: 10rem;
}

#saga-timeline .last .video {
    position: relative;
    margin-top: -27rem;
}

#saga-timeline .last .video h2 {
    position: absolute;
    font-size: 7rem;
    top: 5rem;
    left: 8rem;
    color: #FFF;
}

#saga-timeline .last .video .play {
    position: absolute;
    width: 12rem;
    height: 12rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    background-color: rgba(30, 80, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 4rem;
    transition: all 0.2s ease;
}

#saga-timeline .last .video .play i {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

#saga-timeline .last .video .play i::before {
    line-height: 1.5;
}

#saga-timeline .last .video .play:hover {
    background-color: rgba(30, 80, 52, 1);
}

#saga-timeline .timeline h3 {
    width: 85%;
}

#saga-timeline .picture,
#saga-timeline .picture .img-fluid {
    position: relative;
}

#saga-timeline .element-poivrons {
    position: absolute;
    left: -7rem;
    bottom: -10rem;
    mix-blend-mode: multiply;
}

#saga-timeline .element-basilic {
    position: absolute;
    right: -11rem;
    top: -10rem;
    mix-blend-mode: multiply;
}

#saga-timeline .element-olive {
    position: absolute;
    left: -4rem;
    bottom: -3rem;
    mix-blend-mode: multiply;
}

#saga-timeline .element-raisins {
    position: absolute;
    right: -13rem;
    bottom: -7rem;
    mix-blend-mode: multiply;
}



/*--------------------------------------------------------------
# Page : Nos Engagements
--------------------------------------------------------------*/
.page-wrapper.engagements {
    background: #F7F7F7;
}

.secondary-nav {
    border-bottom: 0.1rem solid rgba(44, 44, 44, 0.1);
    padding: 3rem 0;
    font-size: 1.5rem;
    background: #F7F7F7;
}

.secondary-nav ul {
    display: flex;
    justify-content: space-around;
    margin: 0;

}

.secondary-nav ul li {
    text-align: center;
    margin: 0;
}

.secondary-nav ul a {
    position: relative;
    color: rgba(81, 81, 81, 0.6);
    background: transparent;
    border: 0;
}

.secondary-nav ul a svg:not(.picto) {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
    opacity: 0;
    width: 6rem;
}

.secondary-nav ul a:hover,
.secondary-nav ul a.active {
    color: #23613E;
    background: transparent;
    border: 0;
}

.secondary-nav ul a:hover svg:not(.picto),
.secondary-nav ul a.active svg:not(.picto) {
    opacity: 1;
    bottom: -1.5rem;
}

.page-wrapper.engagements .secondary-nav {
    padding: 0.5rem 0;
}

.page-wrapper.engagements .secondary-nav ul a .picto {
    height: 12rem;
    transition: all 0.2s ease;
}

.page-wrapper.engagements .secondary-nav ul a:hover .picto,
.page-wrapper.engagements .secondary-nav ul a.active .picto {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

#intro-engagements {
    padding-bottom: 10rem;
}

#intro-engagements h2 {
    margin: 8rem 0;
}

#intro-engagements h3 {
    font-size: 3rem;
    color: #2C2C2C;
}

#intro-engagements .irreprochables {
    margin-bottom: 10rem;
}

#intro-engagements .irreprochables h3 {
    margin: 11rem 6rem;
    margin-right: 0;
}


#intro-engagements .points {
    position: relative;
    background-color: #FFF;
    padding: 4rem;
    color: #585F5B;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 2rem rgb(0 0 0 / 5%);
    font-size: 1.6rem;
    font-weight: 600;
    margin-left: -17%;
}


#intro-engagements .points .element-traits {
    position: absolute;
    right: -3rem;
    top: -3rem;
}

#intro-engagements .points li {
    display: flex;
    align-items: center;
}

#intro-engagements .points li:not(:last-child) {
    margin-bottom: 4rem;
}


#intro-engagements .points .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    background-color: #EDF0EE;
    vertical-align: middle;
    margin-right: 3rem;
    flex-shrink: 0;
}

#intro-engagements .points .icon-circle i:before {
    line-height: 1.5;
    font-size: 2.5rem;
}

#intro-engagements .picture,
#intro-engagements .picture .img-fluid {
    position: relative;
}

#intro-engagements .picture .element-basilic {
    position: absolute;
    right: -9rem;
    bottom: -7rem;
    mix-blend-mode: multiply;
}

#intro-engagements .directrice-rse img {
    border-radius: 50%;
    border: 5px solid #FFF;
    width: 16rem;
    height: 16rem;
}

#intro-engagements .directrice-rse h3 {
    font-size: 2.5rem;
}

/* List engagements */
.engagements-list {
    padding-bottom: 10rem;
}

.engagements-list [class^='col-'] {
    margin-top: 5rem;
}

.engagements-list h3 {
    font-size: 2.6rem;
    margin: 2rem 0;
    /*letter-spacing: -0.13rem;*/
}

.engagements-list p {
    font-size: 1.6rem;
    margin: 2rem 0;
    color: #2C2C2C;
}

.engagements-list a {
    display: inline-block;
}

.engagements-list .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
}

.engagements-list .icon-circle i:before {
    line-height: 1.3;
    font-size: 1rem;
}

.engagements-list .more {
    position: relative;
    max-height: 90rem;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.engagements-list .more-link {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    z-index: 5;
    margin: 0;
    background-image: linear-gradient(to bottom, transparent, #F7F7F7);
    padding-top: 20rem;
}

.engagements-list .more.expand {
    max-height: 500rem !important;
    transition: max-height 0.35s ease-in-out;
}

.engagements-list .more-link.expand {
    display: none;
    position: relative;
    background-image: none;
    margin-top: 5rem;
    padding-top: 0;
}


/* List Packaging */
.packaging-list {
    padding-bottom: 10rem;
}

.packaging-list .table td,
.packaging-list .table th {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

.packaging-list .table tbody th {
    vertical-align: middle;
    border-right: 1px solid #dee2e6;
}

.packaging-list .table .odd {
    background-color: rgba(0, 0, 0, .05);
}

.packaging-list .table .even {
    background-color: #f9f9f9;
}

.packaging-list .table .last {
    border-bottom: 1px #000 double;
}

/*--------------------------------------------------------------
# Page : Details Engagement
--------------------------------------------------------------*/
#engagement-infos {
    background-color: #FFF;
    padding: 10rem 0;
}

#engagement-infos .content {
    margin-top: 2.5rem;
}

#engagement-infos .content p {
    margin: 1.5rem 0;
}

/*--------------------------------------------------------------
# Page : Travaillons ensemble
--------------------------------------------------------------*/
.page-wrapper.ensemble {
    background: #F7F7F7;
}

#culture {
    background-color: #F7F7F7;
    padding: 8rem 0;
    padding-bottom: 12rem;
}

#culture .collaborateurs {
    position: relative;
    margin: 8rem 0;
}

#culture .collaborateurs h2 {
    position: relative;
    color: #2C2C2C;
    font-size: 4rem;
}

#culture .collaborateurs .big {
    font-size: 200%;
}

#culture .element-coriandre {
    position: absolute;
    left: -8rem;
    top: -8rem;
    mix-blend-mode: multiply;
}

#culture .element-traits {
    position: absolute;
    left: -3rem;
    bottom: -2rem;
    mix-blend-mode: multiply;
}

#culture .element-olives {
    position: absolute;
    right: -4rem;
    top: -4rem;
    mix-blend-mode: multiply;
}

/* Valeurs RH */
#culture .valeurs {
    position: relative;
}

#culture .valeurs .element-citron {
    position: absolute;
    transform: rotate(-120deg);
    left: -20rem;
    top: -2rem;
    mix-blend-mode: multiply;
}

#culture .valeurs .element-poivrons {
    position: absolute;
    right: -9rem;
    bottom: -10rem;
    mix-blend-mode: multiply;
}

#culture .valeur-rh {
    background-color: #FFF;
    padding: 3rem;
    color: #2C2C2C;
    border-radius: 0.8rem;
}

#culture .valeur-rh .number {
    font-size: 3rem;
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid rgba(44, 44, 44, 0.1);
}

#culture .valeur-rh h3 {
    font-size: 2rem;
    margin: 2rem 0;
}

#culture .valeur-rh p {
    font-size: 1.6rem;
    margin: 2rem 0;
}

#culture .valeur-rh a {
    display: inline-block;
}

#culture .valeur-rh .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
}

#culture .valeur-rh .icon-circle i:before {
    line-height: 1.3;
    font-size: 1rem;
}


/* Métiers */
#metiers {
    background: #FFF url('../img/home/contact-bkg.jpg') repeat;
    padding: 10rem 0;
}

#metiers .schema {
    position: relative;
}

#metiers .schema .point {
    position: absolute;
    border-radius: 50%;
}

#metiers .schema .point::after {
    /* this is used to create the pulse animation */
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    background-color: transparent;
    -webkit-animation: cd-pulse 2s infinite;
    -moz-animation: cd-pulse 2s infinite;
    animation: cd-pulse 2s infinite;
}

#metiers .schema .point>a {
    position: relative;
    z-index: 2;
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: inherit;
    background: #FFFA70;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3), inset 0 0.1rem 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

#metiers .schema .point>a::after,
#metiers .schema .point>a::before {
    /* rotating plus icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #1E5034;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

#metiers .schema .point>a::after {
    height: 0.2rem;
    width: 1.2rem;
}

#metiers .schema .point>a::before {
    height: 1.2rem;
    width: 0.2rem;
}

#metiers .schema .point:hover>a::after,
#metiers .schema .point:hover>a::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(180deg);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

#metiers .schema .point:hover::after {
    /* remove pulse effect */
    display: none;
}


#metiers .schema>.point.achats {
    /*left: calc(12.5rem - 1.8rem);
  top: calc(5rem - 1.8rem);*/
    left: calc(11.3% - 1.8rem);
    top: calc(4.8% - 1.8rem);
}

#metiers .schema>.point.approvisionnement {
    /*left: calc(59.5rem - 1.8rem);
  top: calc(5rem - 1.8rem);*/
    left: calc(54% - 1.8rem);
    top: calc(4.8% - 1.8rem);
}

#metiers .schema>.point.informatique {
    left: calc(20.8rem - 1.8rem);
    top: calc(21.1rem - 1.8rem);
}

#metiers .schema .point.qualite {
    left: calc(85.5rem - 1.8rem);
    top: calc(21rem - 1.8rem);
}

#metiers .schema .point.laboratoire {
    /*left: calc(82.7rem - 1.8rem);
  top: calc(36.9rem - 1.8rem);*/
    left: calc(74.8% - 1.8rem);
    top: calc(26% - 1.8rem);
}

#metiers .schema .point.service-reglementation {
    /*left: calc(12.5rem - 1.8rem);
  top: calc(50.6rem - 1.8rem);*/
    left: calc(10.18% - 1.8rem);
    top: calc(33.93% - 1.8rem);
}

#metiers .schema .point.infirmiere) {
    left: calc(50.7rem - 1.8rem);
    top: calc(54.7rem - 1.8rem);
}

#metiers .schema .point.maintenance {
    /*left: calc(102.8rem - 1.8rem);
  top: calc(54.7rem - 1.8rem);*/
    left: calc(93% - 1.8rem);
    top: calc(37.78% - 1.8rem);
}

#metiers .schema .point.comptabilite {
    /*left: calc(36.6rem - 1.8rem);
  top: calc(86.2rem - 1.8rem);*/
    left: calc(31.5% - 1.8rem);
    top: calc(58.5% - 1.8rem);
}

#metiers .schema .point.rh {
    /*left: calc(28.5rem - 1.8rem);
  top: calc(119.5rem - 1.8rem);*/
    left: calc(25.5% - 1.8rem);
    top: calc(81% - 1.8rem);
}

#metiers .schema .point.marketing {
    /*left: calc(80.5rem - 1.8rem);
  top: calc(119.5rem - 1.8rem);*/
    left: calc(72.5% - 1.8rem);
    top: calc(81% - 1.8rem);
}

#metiers .schema .point.force-vente {
    /*left: calc(59rem - 1.8rem);
  top: calc(135.1rem - 1.8rem);*/
    left: calc(53.5% - 1.8rem);
    top: calc(90.5% - 1.8rem);
}

#metiers .schema .point.export {
    /*left: calc(106rem - 1.8rem);
  top: calc(135.1rem - 1.8rem);*/
    left: calc(95.5% - 1.8rem);
    top: calc(90.5% - 1.8rem);
}

/* Offres emplois */
#offres {
    background: #F7F7F7;
    padding: 10rem 0;
}

#offres .item {
    padding: 3rem;
    border-bottom: 0.1rem solid #EDF0EE;
}

#offres .list .item:last-child {
    border-bottom: 0;
}

#offres .item:hover {
    background-color: #EDF0EE;
}

#offres .name {
    font-size: 1.6rem;
}

#offres .contract {
    font-size: 1.4rem;
    color: #2C2C2C;
}

#offres .published-on {
    font-size: 1.4rem;
    color: #B1B1B1;
}

#offres .list a {
    display: inline-block;
    color: #23613E;
}

#offres .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
}

#offres .icon-circle i:before {
    line-height: 1.3;
    font-size: 1rem;
}

#offres .candidature {
    display: block;
    padding: 3rem;
    font-size: 3rem;
    color: #2C2C2C;
    background-color: #FFF;
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
}

#offres .candidature .icon-circle {
    width: 7rem;
    height: 7rem;
    margin-right: 5rem;
    transition: all 0.2s ease;
}

#offres .candidature .icon-circle i:before {
    font-size: 1.2rem;
    line-height: 1
}

#offres .candidature:hover {
    /*background-color: rgba(35, 97, 62, 0.02);*/
    /*background-color: rgba(51, 51, 51, 0.02);*/

    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
}

#offres .candidature:hover .icon-circle {
    width: 8rem;
    height: 8rem;
}

/*--------------------------------------------------------------
# Page : Details Métier
--------------------------------------------------------------*/
#metier-infos {
    background-color: #FFF;
    padding: 10rem 0;
}

#metier-infos p.content {
    margin-top: 2.5rem;
}

#metier-infos blockquote {
    background-color: #23613E;
    color: #FFF;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
}


/*--------------------------------------------------------------
# Page : Actualites 
--------------------------------------------------------------*/
#last-news {
    background-color: #F7F7F7;
    padding: 8rem 0;
}

#last-news .item {
    background-color: #FFF;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
}

#last-news .published-on {
    font-size: 2rem;
    margin: 0;
}

#last-news h2 {
    margin: 2rem 0;
    margin-top: 1rem;
    font-size: 2.8rem;
    line-height: normal;
}

.page-wrapper #last-news .content {
    font-size: 2rem;
    letter-spacing: normal;
}

#last-news .btn-lg {
    padding: 0.8rem 1.8rem;
    border-radius: 4rem;
    font-size: 2rem;
    margin-bottom: -3rem;
    letter-spacing: 0.1rem;
    transform: translateY(50%);
    box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 6px 6px 8px -6px rgba(0, 0, 0, 0.5);
}

#last-news .btn-lg:hover {
    background-color: #b4dec3 !important;
    color: #23613E !important;
}


/* List news */
.news-list {
    padding: 6rem 0;
    padding-top: 2rem;
}

.news-list .item {
    background-color: #FFF;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
}

.news-list h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.news-list [class^='col-'] {
    margin-bottom: 6rem;
}

.news-list h3 {
    font-size: 2rem;
    margin: 2rem 0;
    margin-top: 1rem
}

.news-list .published-on {
    font-size: 1.6rem;
    margin-top: 2rem;
}

.page-wrapper .news-list .intro {
    font-size: 1.8rem !important;
    color: #23613E !important;
}

.news-list a {
    display: inline-block;
}

.news-list .btn {
    padding: 0.6rem 1.4rem;
    border-radius: 4rem;
    font-size: 1.8rem;
    margin-bottom: -1.5rem;
    letter-spacing: 0.1rem;
    transform: translateY(50%);
    box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 6px 6px 8px -6px rgba(0, 0, 0, 0.5);
}

.news-list .btn:hover {
    background-color: #b4dec3 !important;
    color: #23613E !important;
}

.news-list .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
}

.news-list .icon-circle i:before {
    line-height: 1.3;
    font-size: 1rem;
}

.news-list .picture {
    display: block;
    overflow: hidden;
}

.news-list .picture img {
    transition: all 0.5s ease 0s;
}

.news-list .picture:hover img {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Page : Actualites > Détails
--------------------------------------------------------------*/
#only-breadcrumb {
    background-color: #F7F7F7;
    padding-top: 1rem;
}

#only-breadcrumb .breadcrumb {
    margin: 0;
    color: #2C2C2C;
}

#only-breadcrumb .breadcrumb a {
    color: #2C2C2C;
}

#current-news {
    background-color: #F7F7F7;
    background-color: #FFF;
    padding-top: 0rem;
    padding-bottom: 6rem;
}

#current-news .header{
    background-color: #FFF;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
    /*-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);*/
    margin-top: -10rem;
}


#current-news .published-on {
    font-size: 1.8rem;
    margin: 0;
    color: #99b4a3
}

#current-news h1 {
    font-size: 4rem;
    padding: 0;
    margin: 0;
}

#current-news .breadcrumb,
#current-news .breadcrumb a {
    font-size: 1.8rem;
    color: #23613E;
}

#current-news .intro {
    font-size: 2rem;
}

#current-news .content {
    font-size: 1.8rem;
}

#current-news .content p {
    margin: 2rem 0;
}

#current-news .last-news{
    background-color: #F7F7F7;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.1));
}

.page-wrapper #current-news .last-news h2{
    font-size: 2.6rem !important;
}

#current-news .published-on {
    font-size: 1.6rem;
    color: #23613E;
}

#current-news .last-news .thumb,
#current-news .last-news .thumb a{
    width: 10rem;
    display: block;
    overflow: hidden;
}

#current-news .last-news img {
    transition: all 0.5s ease 0s;
}

#current-news .last-news .thumb a:hover img {
    transform: scale(1.2);
}



/*--------------------------------------------------------------
# Page : Recetes
--------------------------------------------------------------*/
.recettes-list {
    background-color: #F7F7F7;
    padding: 8rem 0;
    padding-bottom: 2rem;
}

.recettes-list.bg-white {
    background-color: #FFF;
}

.recettes-list .intro {
    font-size: 1.6rem;
    color: #2c2c2c;
    margin: 0;
    margin-bottom: 4rem;
}

.recettes-list h2 {
    margin-bottom: 4rem;
}

.recettes-list [class^='col-'] {
    margin-bottom: 6rem;
}

.recettes-list h3 {
    font-size: 1.8rem;
    margin: 2rem 0;
    text-align: center;
}

.recettes-list .picture {
    position: relative;
}

.recettes-list .picture .overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.recettes-list .picture .overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: #23613E;
    color: #FFF;
    font-size: 1.4rem;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.35s ease-out;
}

.recettes-list .picture:hover .overlay {
    background: rgba(255, 255, 255, 0.4);
}

.recettes-list .picture:hover .overlay a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.recettes-list .bottom {
    font-size: 2rem;
}


/*--------------------------------------------------------------
# Page : Recettes > Détails
--------------------------------------------------------------*/
#current-recette {
    background-color: #F7F7F7;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

#current-recette h1 {
    font-size: 6rem;
    margin-bottom: 5rem;
    margin-top: 2rem;
    padding: 0 4rem;
}

#current-recette .resume {
    display: block;
    padding: 3rem;
    font-size: 1.4rem;
    color: #515151;
    background-color: #FFF;
    border-radius: 0.4rem;
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    margin-top: -6rem;
}

#current-recette .resume ul,
#current-recette .resume li {
    margin: 0;
}

#current-recette li .icon-circle {
    position: relative;
    margin-right: 2rem;
}


#current-recette li .icon-circle::before {
    content: "";
    position: absolute;
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background-color: rgba(35, 97, 62, 0.16);
    top: 1rem;
    left: -1.3rem;
}

#current-recette .infos {
    font-weight: 700;
}

#current-recette .infos .light {
    font-weight: 400;
    color: #9E9E9E;
}

/* Ingrédients/Préparation */
.ingredients-preparation {
    margin-top: 6rem;
}

#current-recette .left {
    position: relative;
    margin-bottom: 5rem;
}

#current-recette .element-persil {
    position: absolute;
    left: -19rem;
    bottom: -21rem;
    mix-blend-mode: multiply;
    -webkit-transform: rotate(314deg);
    -moz-transform: rotate(314deg);
    -o-transform: rotate(314deg);
    transform: rotate(314deg);
}

#current-recette .ingredients {
    position: relative;
    z-index: 5;
    background-color: #23613E;
    border-radius: 0.4rem;
    padding: 4rem 3rem;
    color: #FFF;
}

#current-recette .ingredients .element-legumes {
    position: absolute;
    right: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: 0.2;
}

#current-recette .ingredients h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

#current-recette .ingredients ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style-type: circle;
    list-style-position: inside;
}


#current-recette .ingredients ul li {
    margin: 1rem 0;
    text-indent: -1.9rem;
    padding-left: 2rem;
}

#current-recette .ingredients a,
#current-recette .ingredients a:hover {
    color: #FFF;
    text-decoration: underline;
}

#current-recette .preparation {
    padding: 3.9rem 0;
    border-top: 0.1rem solid rgba(44, 44, 44, 0.1);
}

#current-recette .preparation h3 {
    font-size: 2rem;
    margin-bottom: 4rem;
}

#current-recette .preparation ul,
#current-recette .preparation li {
    margin: 0;
}

#current-recette .preparation ul li:not(:last-child) {
    margin-bottom: 3rem;
}

#current-recette .preparation h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 1rem;
}

#current-recette .preparation p {
    margin: 0;
}


/*--------------------------------------------------------------
# Page : Produits
--------------------------------------------------------------*/
.page-wrapper.produits,
.page-wrapper.actualites {
    background: #F7F7F7;
}

/* filters */
#btn-filters {
    position: fixed;
    left: 6rem;
    top: 41.5rem;
    z-index: 1060;
}

#btn-filters .icon-circle {
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    width: 8.2rem;
    height: 8.2rem;
    border-radius: 50%;
    background-color: #23613E;
    color: #FFF;
    font-size: 1.4rem;
    transition: all 300ms;
}

#btn-filters .icon-circle img {
    margin-left: 2.7rem;
}

#btn-filters .icon-circle span {
    transition: opacity 1000ms;
    opacity: 0;
    color: #FFF;
    white-space: nowrap;
    font-size: 0;
    margin: 0;
    width: 0;
}

#btn-filters .icon-circle:hover {
    width: 15rem;
    border-radius: 7rem;
    transition: all 400ms cubic-bezier(.62, .1, .5, 1);
}

#btn-filters .icon-circle:hover span {
    display: inline;
    transition: opacity 700ms, width 1ms linear 270ms, font-size 1ms linear 270ms;
    opacity: 1;
    width: auto;
    font-size: 1.6rem;
    margin-left: 1.5rem;
}


#side-menu {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2050;
    height: 100%;
    width: 50rem;
    padding: 3rem;
    background: #FFF;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -ms-transform: translateX(-50rem);
    -webkit-transform: translateX(-50rem);
    -o-transform: translateX(-50rem);
    transform: translateX(-50rem);
    box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 6px 6px 6px -6px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 6px 6px 8px -6px rgba(0, 0, 0, 0.7);
}

#side-menu h2 {
    font-size: 3.6rem;
}

#side-menu h2 .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #EDF0EE;
    vertical-align: middle;
    margin-left: 0.5rem;
    color: #2C2C2C;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

#side-menu .menu-close {
    float: right;
    margin: 0;
    margin-left: 2rem;
    margin-top: -2rem;
    font-size: 5rem;
    padding: 0;
}

#side-menu .menu-close:hover {
    color: #2C2C2C;
}

#side-menu h3 {
    font-size: 2rem;
    margin: 0;
    margin-top: 5rem;
}

/*Filtre Checkboxe*/
.filtre {
    margin: 2rem 0;
}

.filtre .checkbox-input {
    display: none;
}

.filtre .checkbox-label {
    transition: all 0.4s ease;
}

.filtre .checkbox-label {
    display: block;
    position: relative;
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-size: 1.6rem;
    border: 0.1rem solid #B1B1B1;
    border-radius: 2rem;
    color: #B1B1B1;
}


.filtre .checkbox-label:before {
    content: "\f5ee";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: absolute;
    top: 2rem;
    right: 50%;
    width: 3.3rem;
    height: 3.3rem;
    opacity: 0;
    background-color: #23613E;
    border-radius: 50%;
    transform: translate(0%, -50%);
    transition: all 0.4s ease;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;

}

.filtre .checkbox-input:checked+.checkbox-label {
    border-color: #EDF0EE;
    background-color: #EDF0EE;
    color: #23613E;
}

.filtre .checkbox-label:hover,
.filtre .checkbox-input:checked+.checkbox-label:hover {
    color: #23613E;
    border-color: #23613E;
    box-shadow: inset 0 0 0 0.1rem #23613E;
}

.filtre .checkbox-input:checked+.checkbox-label:before {
    right: 0.4rem;
    opacity: 1;
}


.menu-items {
    margin: 100px 0 100px;
    list-style: none;
}

.menu-item a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
}

#filters-overlay {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background-color: #000;
    opacity: 0;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    /*cursor: -webkit-zoom-out;*/
}


/*  CSS when menu is opened*/
body.opened {
    overflow: hidden;
}

#produits-list .produits.pushed {
    -ms-transform: translateX(30rem);
    -webkit-transform: translateX(30rem);
    -o-transform: translateX(30rem);
    transform: translateX(30rem);
}

#side-menu.pushed {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

#filters-overlay.active {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

/* Style navigation scrollbar */
nav#side-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    background-color: #F7F7F7;
    /*border-radius: 10px;*/
}

nav#side-menu::-webkit-scrollbar {
    width: 10px;
    background-color: #F7F7F7;
}

nav#side-menu::-webkit-scrollbar-thumb {
    /*border-radius: 10px;*/
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #23613E;
    /*background-image: -webkit-gradient(linear,
                                       left bottom,
                                       left top,
                                       color-stop(0.44, rgb(122,153,217)),
                                       color-stop(0.72, rgb(73,125,189)),
                                       color-stop(0.86, rgb(28,58,148)));*/
}

/*nav#side-menu::-webkit-scrollbar {
    width: 12px;
}

nav#side-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

nav#side-menu::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
*/






#produits-list {
    background-color: #F7F7F7;
    padding: 6rem 0;
}

/*#produits-list::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/bkg-paper.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.2;
}*/


#produits-list .intro {
    font-size: 1.6rem;
    color: #2c2c2c;
    margin: 0;
}

#produits-list h2 {
    font-size: 3.5rem;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    z-index: 5;
}

#produits-list .sort {
    z-index: 1;
}

#produits-list .sort span {
    color: #acacac;
}

#produits-list .sort select {
    margin: 0;
    font-size: 1.4rem;
    border: 0.1rem solid rgba(44, 44, 44, 0.1);
    display: block;
    border-radius: 0;
    padding: 1rem;
    height: auto;
    padding-right: 3rem;
}

#produits-list h2 a {
    color: #B1B1B1;
    font-size: 3.5rem;
}

#produits-list .produits {
    position: relative;
}

#produits-list .produits:before {
    content: '';
    display: block;
    width: 38.8rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: -17.5rem;
    background-repeat: repeat-y;
    background-color: #F7F7F7;
    background-image: url('../img/produits/bg-left.jpg');
    background-blend-mode: multiply;
    background-position-y: 41rem;
}

#produits-list .produits:after {
    content: '';
    display: block;
    width: 34.4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: -10rem;
    background-repeat: repeat-y;
    background-color: #F7F7F7;
    background-image: url('../img/produits/bg-right.jpg');
    background-blend-mode: multiply;
    background-position-y: -10rem;
}

/* Produit Item */
#produits-list [class^='col-'] {
    margin-bottom: 3rem;
}

.produit {
    position: relative;
    padding: 3rem;
    background-color: #FFF;
    border-radius: 0.6rem;
    height: 100%;
    z-index: 5;
}

.produit .new {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.produit h3 {
    font-size: 1.8rem;
    padding: 0 2rem;
    margin: 1rem 0;
    margin-top: 2rem;
}

.produit h3:after {
    content: '';
    display: flex;
    margin: 0 auto;
    height: 0.1rem;
    width: 10%;
    background-color: #EDF0EE;
    margin-top: 1rem;
}

.produit p {
    font-size: 1.2rem;
}

.produit .overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.produit .overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: #23613E;
    color: #FFF;
    font-size: 1.4rem;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.35s ease-out;
}

.produit:hover .overlay {
    background: rgba(255, 255, 255, 0.4);
}

.produit:hover .overlay a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

#produits-list .bottom {
    font-size: 2rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
    padding-top: 6rem;
    border-top: 0.1rem solid rgba(177, 177, 177, 0.3);
}


/*--------------------------------------------------------------
# Page : Produits > Détails
--------------------------------------------------------------*/
#current-produit {
    background-color: #F7F7F7;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

#current-produit h1 {
    font-size: 6rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

#current-produit h1 span {
    display: block;
    font-size: 3rem;
    line-height: 2.5;
}

#current-produit .picture {
    position: relative;
}

#current-produit .picture .element-traits {
    position: absolute;
    right: -6rem;
    bottom: 12rem;
}

#current-produit .picture .packaging {
    position: absolute;
    right: -2rem;
    bottom: -4rem;
    background-color: #FFF;
    border-radius: 0.6rem;
    padding: 2rem;
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
}

#current-produit .picture .packaging img {
    width: 20rem;
}


#current-produit .gamme {
    font-size: 1.4rem;
    margin: 0;
}

#current-produit .description {
    font-size: 2rem;
    margin: 0;
}

#current-produit .details {
    margin: 0;
    padding: 0;
    margin-top: 4rem;
    /*padding-right: 5rem;*/
    padding-top: 1rem;
    /*background-position: top;
    background-repeat: repeat-x;
    background-size: 2rem 0.2rem;
    background-image: linear-gradient(to right, rgba(177,177,177,0.5) 10%, rgba(255, 255, 255, 0) 0%);
    background-image: -webkit-linear-gradient(to right, rgba(177,177,177,0.5) 10%, rgba(255, 255, 255, 0) 0%);*/
}

#current-produit .details li {
    margin: 4rem 0;
    padding-left: 0.5rem;
}

#current-produit .details li .icon-circle {
    position: relative;
    margin-left: 2rem;
    margin-top: 1rem;
    flex-shrink: 0;
    width: 7rem;
}


#current-produit .details li .icon-circle::before {
    content: "";
    position: absolute;
    display: block;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: rgba(35, 97, 62, 0.16);
    top: -1rem;
    left: -2.5rem;
}

#current-produit .details .infos {
    font-weight: 700;
}

#current-produit .details .infos .light {
    font-weight: 400;
    color: #9E9E9E;
}

#current-produit .details .pictos img:not(:last-child) {
    margin-right: 4rem;
}

#current-produit .pictos-rangs {
    margin: 0;
    padding: 0;
    margin-top: 4rem;
    /*padding-right: 5rem;*/
    padding-top: 1rem;
    background-position: top;
    background-repeat: repeat-x;
    background-size: 2rem 0.2rem;
    background-image: linear-gradient(to right, rgba(177, 177, 177, 0.5) 10%, rgba(255, 255, 255, 0) 0%);
    background-image: -webkit-linear-gradient(to right, rgba(177, 177, 177, 0.5) 10%, rgba(255, 255, 255, 0) 0%);
}

#current-produit .pictos-rangs img:not(:last-child) {
    margin-right: 3.5rem;
}



/* Valeurs nutritionnelles */
#current-produit .vn-wrapper {
    position: relative;
    margin-top: 10rem;
    margin-bottom: 12rem;
}

#current-produit .element-poivrons {
    position: absolute;
    left: -7rem;
    top: -6rem;
    mix-blend-mode: multiply;
}

#current-produit .element-semoule {
    position: absolute;
    right: -10rem;
    bottom: -10rem;
    mix-blend-mode: multiply;
}

#current-produit .vn {
    position: relative;
    z-index: 5;
    display: block;
    padding: 4rem 0;
    font-size: 1.6rem;
    color: #FFF;
    background-color: #23613E;
    border-radius: 0.4rem;
}


#current-produit .vn .big-sourire {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

#current-produit .vn .poids {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
    font-weight: 700;
}

#current-produit .vn h2 {
    font-size: 4.4rem;
    color: #FFF;
    margin-bottom: 1rem;
}

#current-produit .vn ul {
    margin: 0;
    padding: 0;
}

#current-produit .vn li {
    margin: 0;
    padding: 2rem 0;
    font-weight: 700;
}

#current-produit .vn li:not(:last-child) {
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}

#current-produit .vn li .float-right {
    font-weight: 300;
}

#current-produit .vn .mentions {
    font-weight: 300;
    font-size: 1.4rem;
}


/* Découvrez recettes */
#current-produit .decouvrez {
    position: relative;
    display: block;
    padding: 3rem;
    font-size: 3rem;
    color: #2C2C2C;
    background-color: #FFF;
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
    overflow: hidden;
}

#current-produit .decouvrez .element-recettes {
    width: 34rem;
    position: absolute;
    top: 0;
    right: -8rem;
}

#current-produit .decouvrez .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 5rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

#current-produit .decouvrez .icon-circle i:before {
    font-size: 1.2rem;
    line-height: 1;
}

#current-produit .decouvrez:hover {
    /*background-color: rgba(35, 97, 62, 0.02);*/
    /*background-color: rgba(51, 51, 51, 0.02);*/
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.2);
}

#current-produit .decouvrez:hover .icon-circle {
    width: 8rem;
    height: 8rem;
}

.produits .recettes-list {
    padding-top: 5rem;
}


/*--------------------------------------------------------------
# Page : Nos Sponsoring & partenariats
--------------------------------------------------------------*/
.page-wrapper.sponsoring {
    background: #F7F7F7;
}

#team {
    background-color: #F7F7F7;
    padding: 8rem 0;
    padding-bottom: 12rem;
}

#team .citation {
    margin: 12rem 0;
}

#team .citation blockquote {
    font-size: 3rem;
    color: #2C2C2C;
}

#team .citation .picture {
    position: relative;
}

#team .citation .picture .element-traits {
    position: absolute;
    right: -3rem;
    top: -3rem;
}

/* Slider */
#team .slide {
    position: relative;
    background-color: transparent;
}

/*-- vertical bootstrap slider --*/
#team .carousel .carousel-item {
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}

#team .carousel .carousel-item-next.carousel-item-left,
#team .carousel .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#team .carousel .carousel-item-next,
#team .carousel .active.carousel-item-right {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100% 0);
}

#team .carousel .carousel-item-prev,
#team .carousel .active.carousel-item-left {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

#team .slide .controls {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#team .slide h2 {
    font-size: 11.4rem;
    margin: 0;
}

#team .captions .caption {
    float: left;
    width: 100%;
    margin-right: -100%;
    font-size: 1.6rem;
    transition: all 0.35s ease-out;
}

#team .captions .caption:not(:first-child) {
    display: none;
}


#team .slide .carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    background-color: rgba(35, 97, 62, 1);
    color: #FFF;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.35s ease-out;
    margin: 1rem 0;
    flex-shrink: 0;
}

#team .slide .carousel-control:not(.inactive):hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#team .slide .carousel-control i {
    line-height: 1;
}

#team .slide .carousel-control.inactive {
    pointer-events: none;
    cursor: default;
    background-color: rgba(35, 97, 62, 0.1);
}



#team .pilotes {
    position: relative;
    margin: 12rem 0;
    margin-bottom: 0;
}

/*#team .pilotes::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.1rem;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.1);
    top: 0;
    left: 63%;
}*/

#team .pilotes h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 4rem;
}

#team .pilotes h3.line {
    border-top: 0.1rem solid rgba(44, 44, 44, 0.1);
    padding-top: 4rem;
    margin-top: 4rem;
}

#team .pilotes img {
    border-radius: 50%;
    width: 12.5rem;
    height: 12.5rem;
    object-fit: cover;
    object-position: center;
    transition: all 0.2s ease;
}

#team .pilotes h4 {
    font-size: 1.7rem;
    margin-top: 2rem;
}

#team .ines {
    margin-top: 10rem;
}

#team .ines h3 {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 5rem;
}

/* Partenarias locaux */
#partenariats-locaux {
    padding: 8rem 0;
    background-color: #FFF;
}

#partenariats-locaux h3 {
    font-size: 3rem;
    color: #2C2C2C;
}

#partenariats-locaux .intro {
    margin: 5rem 0;
}

#partenariats-locaux p {
    font-size: 1.6rem;
    color: #2C2C2C;
}

#partenariats-locaux .clubs-sportifs {
    margin-top: 4rem;
    flex-wrap: wrap;
}

#partenariats-locaux .clubs-sportifs .club {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: #F7F7F7;
    flex-shrink: 0;
    margin: 2rem;
}

#partenariats-locaux .clubs-sportifs .club img {
    mix-blend-mode: multiply;
}

/* Partenarias solidaires */
#partenariats-solidaires {
    padding: 8rem 0;
    background-color: #F7F7F7;
}

#partenariats-solidaires h3 {
    font-size: 3rem;
    color: #2C2C2C;
}

#partenariats-solidaires .intro {
    margin: 5rem 0;
}

#partenariats-solidaires p {
    font-size: 1.6rem;
    color: #2C2C2C;
}



/*--------------------------------------------------------------
# Page : International
--------------------------------------------------------------*/
.page-wrapper.international {
    background: #F7F7F7;
}

.btn-contact {
    position: fixed;
    right: 2rem;
    top: 42.5rem;
    z-index: 1060;
    padding: 1.8rem 2.5rem;
}

#histoire {
    background-color: #F7F7F7;
    padding: 6rem 0;
}

#histoire .title {
    font-size: 7rem;
    color: rgb(44, 44, 44, 0.15);
    margin-bottom: 8rem;
}

#histoire h2 {
    margin-bottom: 3rem;
}

#histoire h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 4rem;
}

#histoire p {
    font-size: 1.6rem;
    color: #2C2C2C;
}


/* Slider */
#histoire .slide {
    position: relative;
}

#histoire .slide .element-fueilles-olivier {
    position: absolute;
    right: -18rem;
    top: 11rem;
    mix-blend-mode: multiply;
    -moz-transform: rotate(340deg) scale(-1, 1);
    -webkit-transform: rotate(340deg) scale(-1, 1);
    -o-transform: rotate(340deg) scale(-1, 1);
    -ms-transform: rotate(340deg) scale(-1, 1);
    transform: rotate(340deg) scale(-1, 1);
}

#histoire .slide .carousel-item .img-fluid {
    opacity: 1;
}

#histoire .slide h2 {
    margin-bottom: 1rem;
}

#histoire .captions {
    position: absolute;
    background-color: #FFF;
    bottom: -10rem;
    left: -4rem;
    width: 90%;
    padding: 2rem 4rem;
}

#histoire .captions .caption:not(:first-child) {
    display: none;
}


#histoire .slide .carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    background-color: rgba(35, 97, 62, 1);
    color: #FFF;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 2rem;
    transition: all 0.35s ease-out;
}

#histoire .slide .carousel-control:not(.inactive):hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#histoire .slide .carousel-control i {
    line-height: 1;
}

#histoire .slide .carousel-control.inactive {
    pointer-events: none;
    cursor: default;
    background-color: rgba(35, 97, 62, 0.1);
}


#histoire .legend {
    font-size: 1.4rem;
    margin-top: 2rem;
}

#histoire .produits {
    position: relative;
    margin: 20rem 0;
}

#histoire .produits::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.1rem;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.1);
    top: 0;
    left: 50%;
}

#histoire .produits .element-voiture {
    position: absolute;
    top: -19rem;
    right: -8rem;
}

/* Gammes */
.international .bg-ambiance {
    width: 100%;
    height: calc(100vw * 0.43);
    background: #2C2C2C;
    position: relative;
    background: url(../img/international/ambiance-produits.jpg) center center;
    background-size: cover;
    z-index: 5;
}

#gammes {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

#gammes .title {
    position: relative;
    font-size: 7rem;
    color: rgb(44, 44, 44, 0.15);
    margin-bottom: 8rem;
}

#gammes .title .element-tomate {
    position: absolute;
    top: -2rem;
    left: -10rem;
    mix-blend-mode: multiply;
}

#gammes .title .element-menthe {
    position: absolute;
    top: -4rem;
    right: -14rem;
    /*transform: scaleX(-1);*/
    mix-blend-mode: multiply;
    width: 25rem;
}

#gammes .intro {
    margin-top: 0;
    margin-bottom: 4rem;
}

#gammes h2 {
    margin-bottom: 3rem;
}

#gammes h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 4rem;
}

#gammes h4 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#gammes p {
    font-size: 1.8rem;
    color: #3d3d3d;
}

#gammes .item {
    margin: 8rem 0;
}

#gammes .patisseries-salees,
#gammes .patisseries-salees .img-fluid {
    position: relative;
}

#gammes .patisseries-salees .element-basilic {
    position: absolute;
    right: -5rem;
    top: -5rem;
    mix-blend-mode: multiply;
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
}


/* Offre complete */
#offre-complete {
    width: 100%;
    background: #2C2C2C;
    position: relative;
    background: url(../img/international/texture.jpg) center center;
    background-size: cover;
    padding: 10rem 0;
    color: #FFF;
    z-index: 5;
}

#offre-complete .icon-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background-color: #FFF;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

#offre-complete .icon-flag img {
    width: 4.2rem;
}

#offre-complete h2 {
    margin-bottom: 3rem;
}

#offre-complete h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 4rem;
}

#offre-complete p {
    font-size: 1.6rem;
    color: #FFFFFF;
}

/* Certifications */
#certifications {
    background-color: #FFF;
    padding: 10rem 0;
}

#certifications .title {
    position: relative;
    font-size: 7rem;
    color: rgb(44, 44, 44, 0.15);
    margin-bottom: 8rem;
}

#certifications .title .element-oignon {
    position: absolute;
    top: -20rem;
    right: -10rem;
    mix-blend-mode: multiply;
}

#certifications .title .element-raisins {
    position: absolute;
    top: 4rem;
    left: -15rem;
    mix-blend-mode: multiply;
}

#certifications .title .img-fluid {
    margin-bottom: 1rem;
}

#certifications h2 {
    margin-bottom: 3rem;
}

#certifications h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 4rem;
}

#certifications p {
    font-size: 1.6rem;
    color: #2C2C2C;
}


/* Logistique */
#logistique {
    background-color: #F7F7F7;
    padding: 6rem 0;
}

#logistique .title {
    position: relative;
    font-size: 7rem;
    color: rgb(44, 44, 44, 0.15);
    margin-bottom: 8rem;
}

#logistique .title .element-persil {
    position: absolute;
    width: 27rem;
    top: -20rem;
    right: -10rem;
    mix-blend-mode: multiply;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}

#logistique .picture {
    position: relative;
}

#logistique .picture .element-citron {
    position: absolute;
    top: -22rem;
    left: -20rem;
    mix-blend-mode: multiply;
    -webkit-transform: rotate(310deg);
    -moz-transform: rotate(310deg);
    -o-transform: rotate(310deg);
    transform: rotate(310deg);
}

#logistique .picture .img-fluid {
    position: relative;
}


#logistique h2 {
    margin-bottom: 3rem;
}

#logistique h3 {
    font-size: 2rem;
    color: #2C2C2C;
    margin-bottom: 4rem;
}

#logistique p {
    font-size: 1.6rem;
    color: #2C2C2C;
}

#logistique .socials {
    position: relative;
    display: block;
    padding: 5rem;
    font-size: 2rem;
    color: #2C2C2C;
    background-color: #FFF;
    box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 35px 10px -30px rgba(0, 0, 0, 0.1);
    margin-top: 14rem;
    margin-bottom: 5rem;
    line-height: 1.2;
}

#logistique .socials .ruban {
    position: absolute;
    display: inline-flex;
    top: 0;
    left: 0;
    width: 2.1rem;
    height: 100%;
    background-color: #FFF;
    border-left: 0.7rem #173272 solid;
    border-right: 0.7rem #E02828 solid;
}

/*#logistique .socials .ruban::before{
    display: inline-flex;
    content: '';
    width: 0.7rem;
    height: 100%;
    background: #173272;
}

#logistique .socials .ruban::after{
    display: inline-flex;
    content: '';
    width: 0.7rem;
    height: 100%;
    background: #E02828;
}*/


#logistique .socials .element-assiette {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

/* Scroll Top */
.scroll-top {
    font-size: 1.6rem;
    margin-top: 8rem;
}

.scroll-top a {
    color: #2C2C2C;
}

.scroll-top .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8.6rem;
    height: 8.6rem;
    font-size: 3rem;
    color: #FFF;
    border-radius: 50%;
    background-color: #23613E;
    line-height: 0;
    margin-bottom: 2rem;
    transition: all 0.35s ease-out;
}

.scroll-top a:hover .icon-circle {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}


/*--------------------------------------------------------------
# Page : Echangeons
--------------------------------------------------------------*/
.page-wrapper.echangeons {
    background: #F7F7F7;
}

#echangeons {
    background-color: #F7F7F7;
    padding: 8rem 0;
}

/* Form */
#echangeons form {
    margin-bottom: 10rem;
}

#echangeons .required-fields {
    margin-bottom: 3rem;
    color: rgba(35, 97, 62, 0.5);
}

#echangeons form label,
#echangeons .civility span {
    font-size: 1.6rem;
    color: #23613E;
}

#echangeons form label.error {
    font-size: 1.2rem;
    color: #CC0000;
}

#echangeons form .form-group {
    margin-bottom: 3rem;
}

#echangeons input,
#echangeons textarea,
#echangeons select {
    margin: 0;
    font-size: 1.4rem;
    border: 0.1rem solid rgba(44, 44, 44, 0.1);
    display: block;
    border-radius: 0;
    padding: 1rem;
    height: auto;
}


#echangeons input.radio {
    display: inline-block;
    background-color: #FFF;
    cursor: pointer;
}


#echangeons input[type=file] {
    position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
}

#echangeons label.file {
    text-align: center;
    left: 0;
    top: 0;
    background: transparent;
    color: #23613E;
    border: none;
    cursor: pointer;
    border: 0.1rem solid #23613E;
    border-radius: 2.5rem;
    text-align: left;
    height: auto;
    padding: 1.2rem 1.8rem;
    display: inline-block;
    margin: 0;
    left: 0;
    position: relative;
    font-size: 1.4rem;
}

#echangeons label.file .bi::before {
    line-height: 1.4;
}

#echangeons label.file:hover {
    background: #23613E;
    color: #FFFFFF;
}

#echangeons .msg {
    height: 12rem;
}

#echangeons .infos {
    margin: 0;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: rgba(44, 44, 44, 0.6);
    /*#C7C7C7*/
    /*font-style: italic;*/
}

#echangeons .alert .close {
    font-size: 3rem;
    padding: 0.3rem 1rem;
}



#echangeons .coords {
    border-left: 0.3rem solid #23613E;
    padding-left: 1.5rem;
}

#echangeons .legal {
    text-align: justify;
    line-height: normal;
    margin-top: 3rem;
}


/*--------------------------------------------------------------
# Food Service
--------------------------------------------------------------*/

/* Intro */
#intro {
    margin-bottom: 6rem;
}

#intro .picture {
    position: relative;
}

#intro .picture img {
    width: 100%;
}

#intro .overlay {
    position: absolute;
    width: 45%;
    top: 13rem;
    left: 4rem;
}

#intro .overlay h3 {
    font-size: 2.5rem;
    color: #FFF;
}

#nav-fs h3 {
    font-size: 2.5rem;
    color: #2C2C2C;
}

/* Certifications */
.food-service #gammes {
    position: relative;
    z-index: 10;
}

.food-service #certifications {
    background-color: #F7F7F7;
    padding: 10rem 0;
}

.food-service #egalim {
    padding: 6rem 0;
}

/* Idees Recettes + FS */
.food-service #idees-recettes,
.food-service #fs {
    background-color: #F7F7F7;
    padding: 6rem 0;
}


/*--------------------------------------------------------------
# Carottes 100% françaises
--------------------------------------------------------------*/
#carottes {
    background-color: #F7F7F7;
    padding: 8rem 0;
}

#carottes img.full-width {
    display: block;
}

#carottes .block {
    background-color: #FFF;
    padding: 2rem;
    display: flex;
    align-items: start;
    justify-content: center;
    height: 30.5rem;
    margin: 3rem 0;
    position: relative;
}

#carottes .block .line {
    display: block;
    content: "";
    background-color: #000;
    position: absolute;
}

#carottes .block .line-left {
    height: 0.1rem;
    width: 3rem;
    top: 50%;
    left: -3rem;
}

#carottes .block .line-right {
    height: 0.1rem;
    width: 3rem;
    top: 50%;
    right: -3rem;
}

#carottes .block .line-top {
    height: 3rem;
    width: 0.1rem;
    top: -3rem;
    left: 50%;
}

#carottes .block .line-bottom {
    height: 3rem;
    width: 0.1rem;
    bottom: -3rem;
    left: 50%;
}


#carottes .block.top {
    margin-top: 0;
}

#carottes .block .picto {
    height: 6rem;
}

#carottes .block h2 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

#carottes .pack {
    margin-top: 4rem;
}

#carottes .pack img {
    margin-bottom: 5rem;
}


/*--------------------------------------------------------------
# Page : Espace Presse
--------------------------------------------------------------*/
.page-wrapper.presse {
    background: #F7F7F7;
}

#presse {
    background-color: #F7F7F7;
    padding: 8rem 0;
}

#presse h2 {
    font-size: 3.8rem;
}

#presse .intro {
    margin-top: 2rem;
    margin-bottom: 6rem;
}

/* Form */
#presse .login {
    background-color: #FFF;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 2rem rgb(0 0 0 / 5%);
    margin-bottom: 8rem;
}

#presse form {
    margin: 0;
}

#presse .required-fields {
    margin-bottom: 3rem;
    color: rgba(35, 97, 62, 0.5);
}

#presse form label,
#presse .civility span {
    font-size: 1.6rem;
    color: #23613E;
}

#presse form label.error {
    font-size: 1.2rem;
    color: #CC0000;
}

#presse form .form-group {
    margin-bottom: 3rem;
}

#presse input,
#presse textarea,
#presse select {
    margin: 0;
    font-size: 1.4rem;
    border: 0.1rem solid rgba(44, 44, 44, 0.1);
    display: block;
    border-radius: 0;
    padding: 1rem;
    height: auto;
}


#presse .msg {
    height: 12rem;
}

#presse .alert .close {
    font-size: 3rem;
    padding: 0.3rem 1rem;
}

#presse .coords {
    border-left: 0.3rem solid #23613E;
    padding-left: 1.5rem;
}

#presse .legal {
    text-align: justify;
    line-height: normal;
    margin-top: 3rem;
}


/*--------------------------------------------------------------
# Page : Espace Presse > Supports + Communiqués (Utilisateur Connecté)
--------------------------------------------------------------*/
a.logout {
    font-size: 2.5rem;
    color: #2F2F2F;
    text-decoration: none;
}

a.logout:hover {
    color: #23613E;
    text-decoration: none;
}

.support-presse-list {
    background-color: #F7F7F7;
    padding: 0rem 0;
    padding-bottom: 2rem;
}

.support-presse-list h2 {
    margin-bottom: 4rem;
}

.support-presse-list [class^='col-'] {
    margin-bottom: 6rem;
}

.support-presse-list h3 {
    font-size: 2.4rem;
    margin: 2rem 0;
    text-align: center;
    color: rgba(44, 44, 44, 0.5);
}

.support-presse-list .picture {
    position: relative;
    height: 23rem;
    overflow: hidden;
}

.support-presse-list .picture .overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.support-presse-list .picture .overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: #23613E;
    color: #FFF;
    font-size: 3rem;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.35s ease-out;
}

.support-presse-list .picture:hover .overlay {
    background: rgba(255, 255, 255, 0.4);
}

.support-presse-list .picture:hover .overlay a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

/* Communiqués */
.communique-presse-list {
    padding: 4rem;
}

.communique-presse-list h2 {
    margin-bottom: 4rem;
}

.communique-presse-list [class^='col-'] {
    margin-bottom: 6rem;
}

.communique-presse-list .item {
    background: #FFF;
    padding: 2rem;
    border-radius: 0.4rem;
}

.communique-presse-list .item.gris {
    background: #F7F7F7;
}

.communique-presse-list h3 {
    font-size: 2rem;
    margin: 2rem 0;
}

.communique-presse-list .published-on {
    font-size: 1.4rem;
    color: #2C2C2C;
    margin: 0;
    margin-bottom: 0;
}

.communique-presse-list a {
    display: inline-block;
}

.communique-presse-list .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background-color: #23613E;
    vertical-align: middle;
    margin-right: 1.2rem;
    flex-shrink: 0;
    color: #FFF;
    font-size: 1.2rem;
}

.communique-presse-list .icon-circle i:before {
    line-height: 1.3;
    font-size: 1rem;
}

.communique-presse-list .picture {
    display: block;
    overflow: hidden;
}

.communique-presse-list .picture img {
    transition: all 0.5s ease 0s;
}

.communique-presse-list .picture:hover img {
    transform: scale(1.2);
}


/*--------------------------------------------------------------
# Page : Espace Presse > Détails
--------------------------------------------------------------*/
a.doc {
    background-color: #2F2F2F;
    color: #FFF;
    padding: 1rem;
    display: inline-block;
}

a.doc:hover {
    background-color: #23613E;
}


/*--------------------------------------------------------------
# Bons plans
--------------------------------------------------------------*/
#bons-plans {
    padding: 8rem 0;
}

/*--------------------------------------------------------------
# Plan du site
--------------------------------------------------------------*/
#sitemap {
    padding: 8rem 0;
}

#sitemap h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

#sitemap ul {
    font-size: 1.6rem;
    color: #2C2C2C;
}


/*--------------------------------------------------------------
# Mentions légales
--------------------------------------------------------------*/
.mentions-legales {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.mentions-legales h2 {
    font-size: 3.5rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

/*
.page-wrapper .intro{
   font-size: 2rem;
   color: #2C2C2C;
   margin: 5rem 0;
}

.page-wrapper .intro.big{
   font-size: 3rem;
}*/

.mentions-legales p {
    font-size: 1.6rem;
    color: #2C2C2C;
}

.mentions-legales a {
    text-decoration: underline;
}



/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #2C2C2C;
}

.pagination a,
.pagination .active {
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 0 0.5rem;
    transition: all 0.6s ease 0s;
}

.pagination a:hover,
.pagination .active {
    background-color: #EDF0EE;
}

.pagination a.prev,
.pagination a.next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #23613E;
    margin: 0 3rem;
    font-size: 1.4rem;
    color: #FFF;
}


/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.custom-modal .modal-content {
    border: 0;
    border-radius: 0;
}

.custom-modal h3 {
    font-size: 2.6rem;
    margin: 2rem 0;
    margin-top: 0;
}

.custom-modal p {
    font-size: 1.4rem;
    color: #2C2C2C;
    margin: 0;
}

.custom-modal .content {
    position: relative;
    margin: 1.5rem;
    padding: 2rem;
}

.custom-modal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    width: 5rem;
    height: 5rem;
    background-color: #23613E;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.custom-modal .btn-close:hover {
    background-color: #2C2C2C;
}

.custom-modal .btn-close .bi-x::before {
    line-height: 1.3;
}

/* Modal Metier */
.custom-modal .modal-metier .description {
    padding-bottom: 15rem;
}

.custom-modal .modal-metier h3 {
    font-size: 3.2rem;
    margin: 0;
}

.custom-modal .modal-metier h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.custom-modal .modal-metier .btn-close {
    position: relative;
    top: unset;
    left: unset;
}

.custom-modal .modal-metier img {
    opacity: 0.3;
}

.custom-modal .modal-metier .quote {
    position: relative;
}

.custom-modal .modal-metier blockquote {
    position: absolute;
    left: 2rem;
    top: 10rem;
    font-size: 2rem;
    width: 80%;
}


/* Modal Job */
.custom-modal .modal-job h3 {
    font-size: 3.2rem;
    margin: 0;
}

.custom-modal .modal-job h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.custom-modal .modal-job .published-on {
    font-size: 1.4rem;
    color: #B1B1B1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    padding-top: 4rem;
    background-color: #FFF;
    color: #23613E;
    font-size: 1.7rem;
}

footer .logo img {
    margin-top: -2rem;
}

footer ul {
    margin: 0;
}

footer a {
    color: #23613E;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #23613E;
    text-decoration: underline;
}

footer .list-unstyled li:not(:last-child) {
    margin-bottom: 0.8rem;
}

footer .legal {
    margin-top: 5rem;
    font-weight: 400;
    font-size: 1.4rem;
}

footer .legal,
footer .legal a {
    color: rgba(0, 0, 0, 0.9);
}

footer .legal a:not(:last-child) {
    margin-right: 3rem;
}

/* Footer Bottom : Manger/Bouger */
footer .footer-bottom {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #1E5034;
    color: #FFF;
}

footer .footer-bottom a {
    color: #f9eb50;
    text-decoration: underline;
}



/* Animations */
@-webkit-keyframes cd-pulse {
    0% {
        -webkit-transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    100% {
        -webkit-transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0);
    }
}

@-moz-keyframes cd-pulse {
    0% {
        -moz-transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    100% {
        -moz-transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0);
    }
}

@keyframes cd-pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0.8);
    }

    100% {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        -o-transform: scale(1.6);
        transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(255, 250, 112, 0);
    }
}


.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/*--------------------------------------------------------------
# Home Engagements
--------------------------------------------------------------*/
#home-engagements {
    background-color: #FFF;
    padding: 6rem 0;
    position: relative;
}

#home-engagements .bloc-engagements{
    padding: 5rem 4rem;
    position: relative;
    height: 50rem;
    display: grid;
    align-items: center;
}

#home-engagements .bloc-engagements::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/home/bkg-forme-1.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

#home-engagements .bloc-engagements.f2::before{
    background-image: url('../img/home/bkg-forme-2.svg');
}

#home-engagements .bloc-engagements .container{
    position: relative;
}

#home-engagements .bloc-engagements .element-menthe {
    position: absolute;
    left: -5rem;
    top: -17rem;
    transform: rotate(340deg);
    width: 25rem;
}

#home-engagements .bloc-engagements .element-badge {
    position: absolute;
    right: 2rem;
    bottom: -10rem;
    width: 20rem;
    z-index: 1;
}

#home-engagements .bloc-engagements .element-huile {
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 30rem;
    z-index: 1;
}

/*
#home-engagements .bloc-engagements .container::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('../img/home/bkg-forme-1.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 110%;
}*/

#home-engagements .bloc-engagements .home-heading{
    padding-left: 12rem;
}

#home-engagements .bloc-engagements.f2 .home-heading {
    padding-left: 0rem;
    padding-right: 10rem;
}


#home-engagements .masked {
  mask-image: url('../img/home/mask.svg');
  -webkit-mask-image: url('../img/home/mask.svg');
  /*mask-size: 90%;
  -webkit-mask-size: 90%;*/
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat:no-repeat;
  -webkit-mask-repeat:no-repeat;
}

#home-engagements .btn-wrapper {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

#home-engagements .picture {
    position: relative;
}

#home-engagements .bloc-engagements.f2 .picture{
    margin-right: 5rem;
}

#home-engagements .picto {
    position: absolute;
    width: 12rem;
    right: -4rem;
    bottom: -4rem;
    background-color: #FFF;
}


/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/
#cookie_directive_container {
    display: none;
}

#cookie_directive_container {
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    padding: 2rem 0;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 200;
    bottom: 0;
    position: fixed;
}

#cookie_directive_container ul {
    margin: 0;
    padding: 0;
}

#cookie_directive_container ul li {
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
}

#cookie_accept a {
    background-color: #23613E;
    color: #FFF;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 3px;
}

#cookies_used a {
    background-color: #666;
    color: #FFF;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 3px;
}


/*--------------------------------------------------------------
# Page : Engagements 2024
--------------------------------------------------------------*/



/* Progress Bar */
.progress-container {
    width: 25%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3vh;
}

#full-bar {
    position: relative;
    height: 2px;
    background-color: rgb(0, 0, 0, 0.2);
}

#bar-progress {
    position: absolute;
    top: -1px;
    width: 0%;
    height: 4px;
    background: #23613E;
    border-radius: 20px;
}

#percentage {
    opacity: 0.3;
}

/* Social Bar */
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #b4dec3;
    padding: 0.8rem;
    border-radius: 5rem;
    z-index: 20000;
    right: 0;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 2px 2px);
}

.icon-bar a {
    display: block;
    transition: all 0.3s ease;
    background-color: #1E5034;
    width: 4.2rem;
    height: 4.2rem;
    text-align: center;
    line-height: 4.2rem;
    color: #FFF;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0.8rem 0;
}

.icon-bar a:hover {
    background-color: #f9eb50;
    color: #1E5034;
}

/* Rayon traiteur */
#rayon-traiteur {
    padding: 4.5rem 0;
    background-color: #b4dec3;
    border-top: 1px solid #1E5034;
    border-bottom: 1px solid #1E5034;
}

#rayon-traiteur p {
    font-size: 4rem;
    line-height: 4.6rem;
    letter-spacing: 0.2rem;
    margin: 0;
}

.bg-yellow {
    /*background-color: #f9eb50;*/
    background-color: #b4dec3;
    padding: 0 0.4rem;
}

.bg-yellow.title {
    font-size: 2rem;
}


/* Home : Listes Recettes */
.recipes-list {
    position: relative;
    margin-bottom: 6rem;
}

.recipe-item {
    position: relative;
    /*width: 30rem;
    max-width: 30rem !important;*/
    background-color: #FFF;
    padding: 1rem;
    border-radius: 2rem;
    /*height: 37rem;*/
    /*height: auto;*/
    margin: 0 2rem;
}

.recipe-item .picture{
    position: relative;
}

.recipe-item .picture img{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.recipe-item .overlay {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background-color 500ms;
    transition: all .15s ease-in-out;
}

.recipe-item .overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background: #23613E;
    color: #FFF;
    font-size: 1.4rem;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.35s ease-out;
}

.recipe-item .picture:hover .overlay {
    background: rgba(255, 255, 255, 0.4);
}

.recipe-item .picture:hover .overlay a {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.recipe-item h3 {
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.recipe-item a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.recipe-item a span{
    transition: all .3s ease-in-out;
}
.recipe-item a span [class*=" bi-"]::before{
    -webkit-text-stroke: 2px;
    font-size: 50%;
    line-height: 1.8rem;
}

.recipe-item a:before{
    content: attr(data-hover);
    position: absolute;
    top: 30%; left: 0%;
    text-align: center;
    width: 100%;
    opacity: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.5rem;
    transform: translate(-100%,0);
    transition: all .3s ease-in-out;
}

.recipe-item a:hover:before{
    opacity: 1; 
    transform: translate(0,0);
}

.recipe-item a:hover span{
    opacity: 0; 
    transform: translate(100%,0)
}

.recipe-item a:hover:before{
    opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}


/* Dots slider */
.recipes-list .slick-dots {
    position: relative;
    bottom: initial;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.arrow{
    position: relative;
}

ul.arrow:hover .element-arrow,
ul.arrow:hover:before{
    opacity: 1;
    transform: translateY(2rem);
}

.element-arrow{
    position: absolute;
    top: -0.5rem;
    left: -3.5rem;
    opacity: 0;
    transition: all .4s;
}

ul.arrow:before{
    content: '';
    position: absolute;
    width: 26px;
    height: auto;
    aspect-ratio: 1 / 2;
    background-image: url('../img/fleche.png');
    background-size: contain; /* ou cover */
    background-repeat: no-repeat;
    top: -0.5rem;
    left: -3.5rem;
    opacity: 0;
    transition: all .4s;   
}


ul.two-column{
    margin-left: 10rem;
    list-style-type: disc;
}

ul.two-column li{
    width: 50%;
    margin: 0.5rem 0;
}

ul.two-column li a:hover{
    text-decoration: underline;
    color: #0f331f;
}

/* Produits / Actualités : Filtres */
.page-wrapper.produits .filters,
.page-wrapper.actualites .filters {
    font-size: 2.5rem;
    margin-top: 4rem;
    display: flex;

}

/*
.page-wrapper.produits .secondary-nav
.page-wrapper.actualites .secondary-nav {
    border-bottom: 1px solid #23613E;
}*/

.page-wrapper.produits .secondary-nav.sticky .intro,
.page-wrapper.actualites .secondary-nav.sticky .intro {
    opacity: 0;
    height: 0;
}

.page-wrapper.produits .secondary-nav.sticky .filters,
.page-wrapper.actualites .secondary-nav.sticky .filters {
    margin-top: 0rem;
}

.page-wrapper.produits .secondary-nav .list-group-item,
.page-wrapper.actualites .secondary-nav .list-group-item {
    padding: 0;
    margin: 0 0.6rem;
    background: transparent;
    border: 0;
    margin-bottom: 0.4rem;
}

.page-wrapper.produits .secondary-nav .list-group-item a,
.page-wrapper.actualites .secondary-nav .list-group-item a {
    border: 1px solid #23613E;
    color: #23613E;
    text-transform: uppercase;
    border-radius: 4rem;
    padding: 0.5rem 1.2rem;
    font-size: 1.8rem;
    background-color: #FFF;
}

.page-wrapper.produits .secondary-nav .list-group-item a:hover,
.page-wrapper.produits .secondary-nav .list-group-item a.active,
.page-wrapper.actualites .secondary-nav .list-group-item a:hover,
.page-wrapper.actualites .secondary-nav .list-group-item a.active {
    background-color: #23613E;
    color: #FFF;
}

.page-wrapper.produits .secondary-nav .list-group-item .checkbox-input,
.page-wrapper.actualites .secondary-nav .list-group-item .checkbox-input {
    display: none;
}

.page-wrapper.produits .secondary-nav .list-group-item .checkbox-label,
.page-wrapper.actualites .secondary-nav .list-group-item .checkbox-label {
    display: inline;
    border: 1px solid #23613E;
    color: #23613E;
    text-transform: uppercase;
    border-radius: 4rem;
    padding: 0.5rem 1.2rem;
    font-size: 1.8rem;
    background-color: #FFF;
    cursor: pointer;
}


/*.page-wrapper.produits .secondary-nav .list-group-item .checkbox-label.active,*/
.page-wrapper.produits .secondary-nav .list-group-item .checkbox-input:checked+.checkbox-label,
/*.page-wrapper.produits .secondary-nav .list-group-item .checkbox-label:hover,*/
/*.page-wrapper.actualites .secondary-nav .list-group-item .checkbox-label.active,*/
/*.page-wrapper.actualites .secondary-nav .list-group-item .checkbox-label:hover,*/
.page-wrapper.actualites .secondary-nav .list-group-item .checkbox-input:checked+.checkbox-label
 {
    background-color: #23613E;
    color: #FFF;
}


/*
.page-wrapper.produits .secondary-nav .list-group-item.new a{
    border: 1px solid #97242C;
    color: #97242C;
}

.page-wrapper.produits .secondary-nav .list-group-item.new a:hover,
.page-wrapper.produits .secondary-nav .list-group-item.new a.active{
    background-color: #97242C;
    color: #FFF;
}*/