@import 'pagination.css';

@font-face {
    font-family: 'MarkPro';
    src: url('../fonts/MarkPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkMedium';
    src: url('../fonts/MarkPro-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkBold';
    src: url('../fonts/MarkPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'MarkLight';
    src: url('../fonts/MarkPro-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkThin';
    src: url('../fonts/MarkPro-Thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MarkHeavy';
    src: url('../fonts/MarkPro-Heavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BarlowBold';
    src: url('../fonts/Barlow-Bold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beauty';
    src: url('../fonts/Beauty.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Anton';
    src: url('../fonts/anton.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RemachineScript';
    src: url('../fonts/RemachineScriptPersonalUse.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/*html{
    scroll-behavior: initial !important;
}*/

body{
    color: #515151; 
    font-family: 'MarkPro';
    font-size: 16px;
}  
*{
    margin: 0px;
    padding: 0px;
}
p{ 
    font-family: 'MarkPro';
    font-size: 16px;
}
ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
a, a:focus, a:hover{
    text-decoration: none;
}

::-webkit-scrollbar-thumb {
    background: #888888;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #e5e5e5;
}

.content_pages{
    padding: 100px 0;
    position: relative;
}
@media (max-width: 575px){
    .content_pages{
        padding: 60px 0;
    }
}

/*  Header  */

.header{
    padding: 40px 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}
.header_inline{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.hamburger{
    position: relative;
    z-index: 1000;
}
.hamburger button{
    background: #c3d336;
    border: 0;
    border-radius: 50%;
    outline: none;
    width: 80px;
    height: 80px;
    position: relative;
}
.hamburger .hamburger_menu, .hamburger .hamburger_ferme{
    font-family: 'MarkBold';
    font-size: 11px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-top: 8px;
}
.hamburger .hamburger_ferme{
    display: none;
}
.hamburger.animate .hamburger_menu{
    display: none;
}
.hamburger.animate .hamburger_ferme{
    display: block;
}
.menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background: #f86c10;
    transition: .7s ease;
    -webkit-transition: .7s ease;
    -moz-transition: opacity .7s ease;
    padding-top: 130px;
    overflow-y: auto;
    text-align: unset;
}
.logo{
    padding-top: 0;
}
/*.hamburger.animate{
    position: fixed;
}*/
.bar,
.bar:after,
.bar:before {
    height: 4px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.bar {
    transform: translateY(25px);
    background: #fff;
    transition: all 0ms 300ms;
    position: absolute;
    top: 11px;
    width: 40px;
    right: 0;
    left: 0;
    margin: auto;
}
.bar.animate {
    background: rgba(255, 255, 255, 0);
}
.bar:before {
    content: "";
    position: absolute;
    right: 0;
    top: -13px;
    background: #fff;
    width: 30px;
    transition: bottom 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar:after {
    content: "";
    position: absolute;
    right: 0;
    top: 13px;
    width: 20px;
    background: #fff;
    transition: top 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.bar.animate:after {
    background: #fff;
    top: 2px;
    left: 2px;
    transform: rotate(45deg);
    transition: top 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 35px;
}
.bar.animate:before {
    background: #fff;
    top: 2px;
    right: 2px;
    transform: rotate(-45deg);
    transition: bottom 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 35px;
}
.show_menu {
    left: 0;
    opacity:1;
    z-index: 999;
}
.hide_menu {
    opacity:0;
    left: 100%;
}

.content_menu{
    text-align: center;
}
.content_menu ul{
    padding-bottom: 90px;
}
.content_menu ul li{
    margin-top: 30px;
    line-height: 1;
}
.content_menu ul li a{
    font-family: 'MarkBold';
    font-size: 70px;
    color: #fff;
    line-height: 1;
    display: inline-block;
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
/*.content_menu ul li a:after{
    content: '';
    position: absolute;
    left:50%;
    top:50%;
    width:0%; 
    height:10px;
    background-color:#fa9604;
    transform:translateX( -50% );
    -webkit-transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition:width .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.content_menu ul li a.hover_menu:hover{
    color: #fff;
}
.content_menu ul li a.hover_menu:after{
    width:100%;
}*/
.content_menu ul li a.hover_menu{
    opacity: 0.5;
}
.content_menu ul li a:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.content_menu .logo_footer label{
    color: #fff;
}
@media (max-width: 991px){
    .content_menu ul li a{
        font-size: 60px;
    }
}
@media (max-width: 767px){
    .content_menu ul li a{
        font-size: 50px;
    }
}
@media (max-height: 800px){
    .content_menu ul {
        padding-bottom: 60px;
    }
    .content_menu ul li a{
        font-size: 50px;
    }
    .content_menu .logo_footer label{
        font-size: 50px;
    }
}
@media (max-height: 650px){
    .content_menu ul {
        padding-bottom: 40px;
    }
    .content_menu ul li a{
        font-size: 40px;
    }
    .content_menu .logo_footer label{
        font-size: 40px;
    }
}
@media (max-width: 575px){
    .header {
        padding: 30px 0;
    }
    .logo img{
        max-width: 165px;
    }
    .hamburger button{
        width: 50px;
        height: 50px;
    }
    .bar {
        top: -1px;
        width: 35px;
    }
    .bar:before {
        top: -8px;
        width: 26px;
    }
    .bar:after {
        top: 8px;
        width: 18px;
    }
    .bar.animate:before {
        top: 0px;
        right: 3px;
        width: 30px;
    }
    .bar.animate:after {
        top: 1px;
        left: 2px;
        width: 30px;
    }
    .content_menu ul{
        padding-bottom: 50px;
    }
    .content_menu ul li a{
        font-size: 35px;
    }
}

/*  Switcher home  */

.switcher_home{
    position: relative;
    height: 970px;
    width: 100%;
    background: url('../img/switcher_home.jpg') no-repeat;
    background-size: cover;
    z-index: 1;
}
.switcher_home:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 50px solid #fff;
    border-left: 100vw solid #008d9a;
    display: none;
}
.switcher_home .container{
    height: 100%;
}
.titre_accueil{
    display: flex;
    align-items: end;
    height: 100%;
    position: relative;
    z-index: 3;
    padding-bottom: 130px;
}
/*.titre_accueil h1{
    font-family: 'MarkBold';
    font-size: 90px;
    color: #fff;
    line-height: 1;
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    margin: 0;
    opacity: 0;
}
.titre_accueil.titre_accueil_animation h1{
    opacity: 1;
}*/
@keyframes scale {
  100% {
    transform: scale(1);
  }
}
.titre_accueil h1 label{
    overflow: hidden;
    position: relative;
    line-height: 1.1;
    margin-top: -15px;
}
.titre_accueil h1 label span{
    display: block;
    line-height: 0.8;
}
.titre_accueil.titre_accueil_animation h1 label ,
.titre_accueil.titre_accueil_animation p, .titre_accueil .smile label,
.titre_accueil .smile img {
    display: block;
    opacity: 0;
    filter: blur(4px);
}
.titre_accueil p{
    font-family: 'MarkPro';
    font-size: 30px;
    color: #fff;
    margin: 60px 0 90px;
    max-width: 490px;
}
.titre_accueil .smile{
    position: relative;
    text-align: center;
}
.titre_accueil .smile label{
    font-family: 'RemachineScript';
    font-size: 140px;
    color: #fff;
    display: block;
    line-height: 1;
}
.titre_accueil .smile label strong{
    font-size: 135px;
    font-weight: 100;
    line-height: 0;
}
.titre_accueil .smile img{
    position: relative;
    margin-top: -20px;
}

.titre_accueil.titre_accueil_animation h1 label:nth-child(1) {
    animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.titre_accueil.titre_accueil_animation h1 label:nth-child(2) {
    animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.titre_accueil.titre_accueil_animation p {
    animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.titre_accueil .smile label:nth-child(1) {
    animation: fade-in 0.8s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.titre_accueil .smile label:nth-child(2) {
    animation: fade-in 0.8s 2.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
.titre_accueil .smile img {
    animation: fade-in 0.8s 3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.img_switcher_home{
    position: absolute;
    right: 0;
    bottom: 70px;
}
.img_switcher_02, .img_switcher_03, .img_switcher_04{
    position: absolute;
}
.img_switcher_02{
    right: 0;
    bottom: 60px;
}
.img_switcher_03{
    left: -90px;
    bottom: 60px;
}
.img_switcher_04{
    left: 0;
    top: 50px;
}
@media (max-width: 1399px){
    .img_switcher_home{
        max-width: 650px;
    }
}
@media (max-width: 1199px){
    .img_switcher_home{
        max-width: 500px;
    }
    .img_switcher_03 {
        max-width: 220px;
    }
    .img_switcher_04 {
        left: 28px;
        max-width: 200px;
    }
    .titre_accueil .smile img {
        margin-top: -15px;
        max-width: 430px;
    }
    .titre_accueil p {
        font-size: 24px;
        max-width: 450px;
    }
}
@media (max-width: 991px){
    .switcher_home{
        height: 100%;
    }
    .titre_accueil{
        padding-top: 200px;
        padding-bottom: 0;
        position: relative;
        top: 0;
    }
    .img_switcher_home{
        max-width: inherit;
        position: relative;
        text-align: right;
        bottom: 0;
    }
    .img_switcher_03 {
        left: 20px;
    }
    .img_switcher_04 {
        left: 50px;
    }
}
@media (max-width: 767px){
    .titre_accueil .smile {
        max-width: 400px;
    }
    .titre_accueil .smile img{
        max-width: 100%;
    }
    .titre_accueil .smile label {
        font-size: 90px;
    }
    .titre_accueil p {
        margin: 30px 0 60px;
    }
    .img_switcher_02 {
        max-width: 280px;
    }
}
@media (max-width: 575px){
    .hamburger .hamburger_menu, .hamburger .hamburger_ferme{
        font-size: 8px;
    }
    .switcher_home{
        height: 100%;
    }
    .titre_accueil{
        padding-top: 140px;
        text-align: -webkit-center;
        text-align: -moz-center;
        text-align: -o-center;
    }
    /*.titre_accueil h1{
        font-size: 50px;
    }*/
    .titre_accueil p {
        font-size: 20px;
        margin: 45px 0 50px;
    }
    .titre_accueil .smile label {
        font-size: 70px;
    }
    .titre_accueil h1 label span {
        line-height: 1;
    }
    .titre_accueil .smile label strong {
        font-size: 95px;
    }
    .img_switcher_02 {
        max-width: 170px;
        bottom: 30px;
    }
    .img_switcher_03 {
        left: 0;
        bottom: 30px;
        max-width: 110px;
    }
    .img_switcher_04 {
        left: 10px;
        max-width: 110px;
    }
}

/*  A propos home  */

.apropos_home{
    position: relative;
    margin-top: 140px;
}
.img_apropos_home{
    position: relative;
    display: inline-block;
}
.img_apropos_home video{
    width: 100%;
}
.img_apropos_home_abs{
    position: absolute;
    right: -40px;
    bottom: -120px;
}
.text_apropos_home{
    padding-left: 80px;
    padding-top: 60px;
}
.text_apropos_home h2{
    font-family: 'MarkBold';
    font-size: 45px;
    color: #54c5d0;
    margin: 0;
}
.text_apropos_home h2 b{
    color: #c3d336;
}
.text_apropos_home p{
    font-family: 'MarkPro';
    font-size: 16px;
    color: #666666;
    margin: 70px 0 90px;
    line-height: 40px;
}
.text_apropos_home a{
    font-family: 'MarkBold';
    font-size: 19px;
    color: #c3d336;
    padding: 28px 100px 28px 50px;
    position: relative;
    display: inline-block;
    border: 2px solid #c3d336;
    border-radius: 50px;
    line-height: 1;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}
.text_apropos_home a:after{
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    background: url('../img/right_arrow.png') no-repeat;
    width: 39px;
    height: 19px;
    pointer-events: none;
}
.text_apropos_home a:hover{
    color: #fff;
    background: #c3d336;
    padding: 28px 75px 28px 75px;
}
.text_apropos_home a:hover:after{
    display: none;
}
@media (max-width: 1399px){
    .text_apropos_home h2 {
        font-size: 40px;
    }
    .text_apropos_home p {
        margin: 45px 0 70px;
        line-height: 38px;
    }
}
@media (max-width: 1199px){
    .text_apropos_home{
        padding-top: 0;
    }
    .text_apropos_home h2 {
        font-size: 30px;
    }
}
@media (max-width: 991px){
    .apropos_home{
        margin-top: 100px;
    }
    .apropos_home .row{
        flex-direction: column-reverse;
    }
    .text_apropos_home{
        padding-left: 0;
        margin-bottom: 45px;
    }
    .text_apropos_home p {
        margin: 30px 0 40px;
        line-height: 35px;
    }
}
@media (max-width: 767px){
    .apropos_home{
        margin-top: 70px;
    }
    .img_apropos_home_abs{
        max-width: 300px;
        right: -18px;
        bottom: -95px;
    }
}
@media (max-width: 575px){
    .img_apropos_home_abs{
        max-width: 250px;
        right: 0;
        bottom: -95px;
    }
    .text_apropos_home h2 {
        font-size: 27px;
    }
    .text_apropos_home a{
        font-size: 17px;
    }
}

/*  Produits home  */

.produits_home{
    margin-top: 145px;
}
.produits_home h2{
    font-family: 'MarkThin';
    font-size: 140px;
    color: #54c5d0;
    margin-bottom: 50px;
    line-height: 1;
}
.item_produits_home{
    text-align: center;
}
.item_produits_home a{
    max-width: 320px;
    display: inline-block;
}
.item_produits_home h3{
    margin-top: 20px;
    margin-bottom: 0;
}
.item_produits_home h3 a{
    font-family: 'MarkBold';
    font-size: 19px;
    color: #3f3f3f;
    max-width: 250px;
}
.produits_home .owl-theme .owl-nav{
    margin-top: 0;
    position: absolute;
    top: -120px;
    right: 0;
    width: 180px;
}
.produits_home .owl-theme .owl-nav [class*='owl-']:hover{
    background: transparent;
}
.produits_home .owl-theme .owl-nav .disabled{
    opacity: 1;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.link_produits{
    text-align: center;
    margin-top: 80px;
}
.link_produits a{
    font-family: 'MarkBold';
    font-size: 19px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 30px 60px;
    background: #c3d336;
    border: 2px solid #c3d336;
    border-radius: 50px;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}
.link_produits a:hover{
    color: #c3d336;
    background: #fff;
}
@media (max-width: 1199px){
    .item_produits_home a{
        max-width: 300px;
    }
    .item_produits_home h3 a{
        max-width: 250px;
    }
}
@media (max-width: 991px){
    .produits_home h2{
        font-size: 100px;
    }
}
@media (max-width: 767px){
    .produits_home h2{
        font-size: 65px;
    }
    .produits_home .owl-theme .owl-nav {
        top: -95px;
        width: 135px;
    }
    .produits_home .owl-theme .owl-nav [class*='owl-'] img{
        width: 50px;
    }
}
@media (max-width: 575px){
    .produits_home h2{
        font-size: 45px;
    }
    .produits_home .owl-theme .owl-nav {
        top: -85px;
        width: 110px;
    }
    .produits_home .owl-theme .owl-nav [class*='owl-'] img{
        width: 40px;
    }
    .link_produits {
        margin-top: 60px;
    }
    .link_produits a {
        font-size: 16px;
        padding: 20px 40px;
    }
}

/*  With moony  */

.with_moony{
    position: relative;
    background: url('../img/bg_black_moony.png') no-repeat top;
    background-size: cover;
    margin-top: 70px;
    width: 100%;
    height: 930px;
}
.text_with_moony{
    max-width: 575px;
    padding-top: 100px;
}
.text_with_moony h3{
    font-family: 'BarlowBold';
    font-size: 75px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
}
.text_with_moony h3 span{
    display: block;
}
.text_with_moony h3 span img{
    position: relative;
    top: 15px;
    margin-left: 7px;
}
.text_with_moony label{
    font-family: 'Beauty';
    font-size: 85px;
    color: #aaaaaa;
    line-height: 1;
    text-align: center;
    padding-left: 40px;
    margin-top: -20px;
}
.text_with_moony p{
    font-family: 'MarkPro';
    font-size: 19px;
    color: #fff;
    margin: 0;
    margin-top: 25px;
}
@media (max-width: 767px){
    .text_with_moony h3{
        font-size: 50px;
    }
    .text_with_moony h3 span img{
        width: 85px;
    }
    .text_with_moony label{
        font-size: 60px;
        margin-top: -15px;
    }
    .text_with_moony p {
        text-align: center;
    }
}
@media (max-width: 575px){
    .with_moony{
        background: url('../img/bg_black_moony_mobile.png') no-repeat top;
        height: 770px;
    }
    .text_with_moony {
        max-width: 370px;
    }
    .text_with_moony h3{
        font-size: 35px;
    }
    .text_with_moony h3 span img {
        top: 10px;
        margin-left: 10px;
        width: 70px;
    }
    .text_with_moony label{
        font-size: 40px;
    }
    .text_with_moony p {
        font-size: 17px;
    }
}

/*  Nos recettes home  */

.nos_recettes_home{
    position: relative;
    margin-top: 60px;
}
.titre_nos_recettes_home{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}
.titre_nos_recettes_home h2{
    font-family: 'Beauty';
    font-size: 85px;
    color: #54c5d0;
    line-height: 1;
    margin: 0;
}
.titre_nos_recettes_home a{
    font-family: 'MarkBold';
    font-size: 17px;
    color: #c3d336;
    padding: 28px 100px 28px 50px;
    position: relative;
    display: inline-block;
    border: 2px solid #c3d336;
    border-radius: 50px;
    line-height: 1;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}
.titre_nos_recettes_home a:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    background: url(../img/right_arrow.png) no-repeat;
    width: 39px;
    height: 19px;
    pointer-events: none;
}
.titre_nos_recettes_home a:hover {
    color: #fff;
    background: #c3d336;
    padding: 28px 75px 28px 75px;
}
.titre_nos_recettes_home a:hover:after {
    display: none;
}
.item_nos_recettes{
    position: relative;
}
.img_item_nos_reccettes {
    overflow: hidden;
    position: relative;
    padding-bottom: 110%;
    display: block;
}
.img_item_nos_reccettes img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.item_nos_recettes:hover .img_item_nos_reccettes img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.text_item_nos_recettes{
    position: absolute;
    left: 40px;
    bottom: 40px;
    padding-right: 10px;
}
.text_item_nos_recettes label{
    font-family: 'MarkPro';
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.text_item_nos_recettes h3{
    margin: 0;
}
.text_item_nos_recettes h3 a{
    font-family: 'MarkBold';
    font-size: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
@media (max-width: 1199px){
    .text_item_nos_recettes{
        bottom: 30px;
        left: 30px;
    }
    .text_item_nos_recettes h3 a{
        font-size: 24px;
    }
    .text_item_nos_recettes label {
        font-size: 18px;
    }
}
@media (max-width: 991px){
    .nos_recettes_home .row{
        justify-content: center;
    }
    .item_nos_recettes{
        margin-top: 20px;
    }
}
@media (max-width: 767px){
    .titre_nos_recettes_home{
        display: block;
    }
    .text_item_nos_recettes h3 a{
        font-size: 21px;
    }
    .text_item_nos_recettes label {
        font-size: 17px;
    }
}
@media (max-width: 575px){
    .titre_nos_recettes_home{
        margin-bottom: 30px;
    }
    .titre_nos_recettes_home h2{
        font-size: 60px;
    }
    .titre_nos_recettes_home a {
        font-size: 15px;
        padding: 24px 75px 24px 40px;
    }
    .titre_nos_recettes_home a:after {
        margin-top: -8px;
        width: 30px;
        height: 15px;
        background-size: contain;
    }
    .titre_nos_recettes_home a:hover {
        padding: 24px 58px 24px 58px;
    }
}

/*  Un engagement Qualité  */

.pub_salma{
    position: relative;
    margin-top: 90px;
}
.pub_salma video {
    width: 100%;
    position: relative;
    z-index: 1;
}
.logo_smille{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.logo_smille img{
    max-width: 250px;
}
.engagement{
    position: relative;
    background: url('../img/bg_salma_rachid.jpg') no-repeat top left;
    background-size: cover;
    width: 100%;
    height: 630px;
    margin-top: 90px;
}
.img_engagement{
    display: none;
}
.text_engagement{
    text-align: right;
    text-align: -webkit-right;
    text-align: -moz-right;
    text-align: -o-right;
    padding-top: 30px;
}
.text_engagement h2{
    font-family: 'Anton';
    font-size: 70px;
    color: transparent;
    -webkit-text-stroke: 2px #5f3823;
    -moz-text-stroke: 2px #5f3823;
    -o-text-stroke: 2px #5f3823;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 3px;
}
.text_engagement p{
    font-family: 'MarkBold';
    font-size: 21px;
    color: #5f3823;
    margin: 60px 0 80px;
    max-width: 380px;
}
.text_engagement label{
    font-family: 'Beauty';
    font-size: 65px;
    color: #b87a59;
    line-height: 1;
}
@media (max-width: 1199px){
    .engagement{
        background: #e4d7d0;
        height: auto;
        padding-bottom: 50px;
    margin-top: 40px;
    }
    .img_engagement{
        display: block;
    }
    .text_engagement{
        margin-top: -30px;
        padding-top: 0;
    }
}
@media (max-width: 767px){
    .logo_smille img{
        max-width: 200px;
    }
}
@media (max-width: 575px){
    .pub_salma{
        margin-top: 60px;
    }
    .engagement{
        margin-top: 40px;
    }
    .text_engagement {
        margin-top: -15px;
    }
    .text_engagement h2{
        font-size: 35px;
    }
    .text_engagement p {
        font-size: 17px;
        margin: 35px 0 50px;
    }
    .text_engagement label {
        font-size: 45px;
    }
}


/*  Footer  */

.footer{
    position: relative;
    padding: 80px 0 120px;
    text-align: center;
}
.menu_footer{
    padding: 50px 0 70px;
}
.menu_footer ul li{
    display: inline-block;
    margin: 10px 40px;
}
.menu_footer ul li a{
    font-family: 'MarkBold';
    font-size: 21px;
    color: #2c2c2c;
}
.social_media a{
    margin: 0 15px;
}
@media (max-width: 575px){
    .logo_footer img{
        max-width: 200px;
    }
    .menu_footer ul li {
        display: block;
        margin: 20px 0;
    }
}

/*  Switcher pages  */

.switcher_pages{
    position: relative;
    background: #008d9a;
    width: 100%;
    height: 470px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.titre_switcher h1{
    font-family: 'MarkLight';
    font-size: 90px;
    color: #fff;
    margin: 0;
    line-height: 1;
}
@media (max-width: 991px){
    .titre_switcher h1 {
        font-size: 7vw;
    }
}
@media (max-width: 575px){
    .switcher_pages {
        height: 370px;
    }
}

/*  Grandes surfaces  */

.partenaires_home{
    position: relative;
    margin-top: 90px;
}
.partenaires_home .row{
    align-items: center;
}
.titre_partenaires_home h3{
    font-family: 'MarkMedium';
    font-size: 21px;
    color: #54c5d0;
    margin: 0;
}
.item_partenaires_home{
    padding: 0 15px;
}
/*.logos_grandes_surfaces{
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}*/
@media (max-width: 991px){
    .titre_partenaires_home h3{
        margin-bottom: 30px;
    }
}


/*  Menu pages  */

.menu_pages{
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    margin-bottom: 50px;
}
.menu_pages ul{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
}
.menu_pages ul li{
    margin: 0 45px;
    min-height: 74px;
    min-width: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_pages ul li a{
    position: relative;
    font-family: 'Barlow';
    font-size: 30px;
    color: #3d3d3d;
    line-height: 1;
}
.menu_pages ul li a:hover{
    color: #1b96a2;
}
.menu_pages ul li.active a{
    color: #1b96a2;
    pointer-events: none;
}
.menu_pages ul li.active:after{
    content: '';
    position: absolute;
    bottom: -31px;
    left: 0;
    right: 0;
    margin: auto;
    background: #c3d336;
    width: 90px;
    height: 8px;
}
.menu_produit.menu_pages ul li a{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.menu_produit.menu_pages ul li a:hover, .menu_produit.menu_pages ul li.active a{
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}
@media (max-width: 1199px){
    .menu_pages ul li a{
        font-size: 25px;
    }
}
@media (max-width: 991px){
    .menu_pages ul li{
        margin: 0 25px;
    }
}
@media (max-width: 767px){
    .menu_pages ul{
        display: block;
        border: 0;
        padding-bottom: 0;
    }
    .menu_pages ul li{
        margin: 0;
        padding: 15px 0;
        display: inline-block;
        width: 49%;
    }
    .menu_pages ul li a img{
        max-width: 130px;
    }
    .menu_pages ul li.active:after{
        display: none;
    }
}
@media (max-width: 767px){
    .menu_recette.menu_pages ul li{
        display: block;
        width: 100%;
    }
}

/*  List Produits  */

.content_produit .item_produits_home{
    margin-top: 60px;
}
.bg_produits{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding-top: 200px;
}
.bg_produits img{
    max-height: 100%;
}

/*  Produit selected  */

.content_produit_selected .row{
    margin-bottom: 100px;
}
.return_list{
    margin-bottom: 30px;
}
.return_list a, .text_produit_selected a{
    font-family: 'MarkHeavy';
    font-size: 21px;
    color: #c3d336;
    border: 2px solid #c3d336;
    border-radius: 40px;
    padding: 20px 50px 20px 30px;
    display: inline-block;
}
.return_list a img, .text_produit_selected a img{
    margin-right: 20px;
}
.text_produit_selected h2{
    font-family: 'MarkHeavy';
    font-size: 40px;
    color: #3f3f3f;
    margin: 0;
}
.desc_produit_selected{
    margin: 60px 0;
}
.desc_produit_selected p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #666666;
    margin: 0;
    line-height: 40px;
}
.text_produit_selected a{
    color: #fff;
    background: #c3d336;
}
.recettes_produit{
    padding: 50px 0;
    position: relative;
    background: #f6feff;
    margin-bottom: 100px;
}
.recettes_produit h2{
    text-align: right;
    font-family: 'Beauty';
    font-size: 100px;
    color: #54c5d0;
    line-height: 1;
    margin: 0;
    position: absolute;
    right: 120px;
}
.recettes_produit .owl-carousel{
    position: absolute;
    bottom: 100px;
    right: 0;
    max-width: 50%;
}
.recettes_produit .img_item_nos_reccettes {
    padding-bottom: 60%;
}
.recettes_produit .owl-theme .owl-nav{
    text-align: right;
    position: absolute;
    right: 0;
}
.recettes_produit .owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}
.recettes_produit .owl-theme .owl-nav .disabled{
    opacity: 1;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.recettes_produit .text_item_nos_recettes {
    padding-right: 100px;
}
.time_cooking{
    position: absolute;
    right: 20px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
}
.time_cooking label{
    font-family: 'MarkBold';
    font-size: 20px;
    color: #fff;
    line-height: 1;
    text-align: center;
}
.time_cooking label span{
    display: block;
    line-height: 1;
    font-size: 14px;
}
.time_cooking img{
    margin-right: 5px;
}
.produit_similaires.produits_home {
    margin-top: 0;
}
.produit_similaires.produits_home h2 {
    font-size: 80px;
    text-align: center;
}
.produit_similaires.produits_home .owl-theme .owl-nav{
    top: -50px;
}
@media (max-width: 991px){
    .recettes_produit h2{
        font-size: 50px;
    }
    .recettes_produit .text_item_nos_recettes h3 a {
        font-size: 21px;
    }
    .produit_similaires.produits_home h2 {
        font-size: 60px;
    }
}
@media (max-width: 767px){
    .text_produit_selected{
        padding-top: 30px;
    }
    .text_produit_selected h2{
        font-size: 30px;
    }
    .recettes_produit .owl-carousel {
        position: relative;
        bottom: unset;
        max-width: 100%;
        margin-top: -35px;
    }
    .produit_similaires.produits_home h2 {
        font-size: 45px;
    }
}
@media (max-width: 575px){
    .text_produit_selected h2{
        font-size: 25px;
    }
    .desc_produit_selected p{
        font-size: 19px;
    }
    .return_list a, .text_produit_selected a{
        font-size: 18px;
        padding: 15px 50px 15px 30px;
    }
    .return_list a img, .text_produit_selected a img {
        margin-right: 15px;
        max-width: 35px;
    }
    .recettes_produit h2 {
        font-size: 50px;
        right: 60px;
        top: -35px;
    }
    .recettes_produit .owl-theme .owl-nav [class*='owl-']{
        max-width: 50px;
    }
    .produit_similaires.produits_home h2 {
        font-size: 35px;
    }
}


/*  List recettes  */

.content_recette .item_nos_recettes{
    margin-top: 40px;
}

/*  Recette selected  */

.head_recette_selected{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}
.titre_recette_selected label{
    font-family: 'MarkPro';
    font-size: 20px;
    color: #3f3f3f;
}
.titre_recette_selected h2 {
    font-family: 'MarkHeavy';
    font-size: 30px;
    color: #3f3f3f;
    margin: 0;
}
.head_recette_selected .return_list {
    margin-bottom: 0;
}
.content_recette_selected .time_cooking{
    position: unset;
}
.content_recette_selected .time_cooking label {
    color: #3f3f3f;
}
.recette_video{
    overflow: hidden;
    position: relative;
    padding-bottom: 55%;
    display: block;
}
.recette_video iframe{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
.text_recette_selected h3{
    font-family: 'MarkBold';
    font-size: 21px;
    color: #008d9a;
}
.text_recette_selected ul{
    margin-bottom: 40px;
    padding-left: 20px;
}
.text_recette_selected ul li{
    font-family: 'MarkPro';
    font-size: 19px;
    color: #666666;
    padding-top: 15px;
    padding-left: 25px;
    position: relative;
}
.text_recette_selected ul li:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #24b9cb;
    width: 10px;
    height: 10px;
    display: block;
    transform: rotate(45deg);
}
@media (max-width: 991px){
    .head_recette_selected{
        display: inline-block;
    }
    .titre_recette_selected{
        margin-bottom: 20px;
    }
    .text_recette_selected{
        margin-top: 30px;
    }
}
@media (max-width: 575px){
    .titre_recette_selected h2 {
        font-size: 25px;
    }
    .text_recette_selected ul li{
        font-size: 18px;
    }
}

/*  Galerie  */

.galerie{
    margin-top: 30px;
    position: relative;
}
.img_galerie{
    overflow: hidden;
    position: relative;
    padding-bottom: 80%;
    display: block;
}
.img_galerie img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}
.galerie:hover .img_galerie img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.img_galerie.video_source:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../img/play.png) no-repeat;
    width: 100px;
    height: 100px;
    background-size: contain;
}
.titre_galerie{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    padding: 0 40px;
}
.titre_galerie a{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.titre_galerie a span{
    font-family: 'MarkBold';
    font-size: 30px;
    color: #fff;
}
.content_galerie_selected h2 {
    font-family: 'MarkHeavy';
    font-size: 30px;
    color: #3f3f3f;
    margin: 0;
    padding: 10px 0 10px 30px;
    position: relative;
}
.content_galerie_selected h2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #3f3f3f;
    width: 15px;
    height: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
@media (max-width: 1199px){
    .titre_galerie a span {
        font-size: 25px;
    }
    .titre_galerie a img {
        max-width: 40px;
    }
}
@media (max-width: 575px){
    .titre_galerie {
        padding: 0 25px;
    }
    .titre_galerie a span {
        font-size: 21px;
    }
    .titre_galerie a img {
        max-width: 35px;
    }
    .content_galerie_selected h2 {
        font-size: 25px;
    }
}

/*  Espace Media  */

.text_espace_media{
    max-width: 700px;
}
.text_espace_media h2{
    font-family: 'MarkBold';
    font-size: 35px;
    color: #666666;
    margin-bottom: 20px;
}
.text_espace_media h3{
    font-family: 'MarkBold';
    font-size: 38px;
    color: #54c5d0;
    margin-bottom: 30px;
}
.text_espace_media h3 b{
    color: #96c82b;
}
.text_espace_media p{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 40px;
}
.text_espace_media p strong{
    font-family: 'MarkBold';
}
.smille_media{
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
}
.smille_media label{
    font-family: 'MarkBold';
    font-size: 30px;
    color: #666666;
    margin-bottom: 0;
    margin-right: 15px;
}
.smille_media label span{
    display: block;
    line-height: 1;
}
.videos_espace_media{
    position: relative;
    background: #1b96a2;
    padding: 100px 0;
    margin-top: 200px;
}
.videos_espace_media h2{
    position: absolute;
    top: -190px;
    margin: 0;
    line-height: 1;
    font-family: 'MarkThin';
    font-size: 160px;
    color: #54c5d0;
}
.videos_espace_media .pagination li a{
    color: #fff;
}
.item__videos_espace_media{
    text-align: center;
}
.item__videos_espace_media h3{
    font-family: 'MarkPro';
    font-size: 21px;
    color: #fff;
    margin: 40px 0 15px;
}
.item__videos_espace_media h4{
    font-family: 'MarkMedium';
    font-size: 18px;
    color: #c3d336;
    margin: 0;
}
@media (max-width: 1399px){
    .text_espace_media h3{
        font-size: 35px;
    }
}
@media (max-width: 1199px){
    .item__videos_espace_media h3 {
        font-size: 17px;
        margin: 30px 0 15px;
    }
    .item__videos_espace_media h4 {
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .videos_espace_media {
        margin-top: 120px;
    }
    .videos_espace_media h2 {
        top: -160px;
        font-size: 100px;
    }
}
@media (max-width: 575px){
    .videos_espace_media {
        margin-top: 90px;
        padding: 70px 0;
    }
    .videos_espace_media h2 {
        top: -110px;
        font-size: 70px;
    }
    .text_espace_media h2 {
        font-size: 24px;
    }
    .text_espace_media h3 {
        font-size: 24px;
    }
    .text_espace_media p {
        font-size: 19px;
        margin-bottom: 25px;
        line-height: 35px;
    }
    .smille_media label {
        font-size: 21px;
        margin-right: 20px;
    }
    .smille_media img {
        max-width: 140px;
    }
}

/*  Contact  */

.text_input {
    margin-bottom: 70px;
}
.text_input input, .text_input select, .text_input textarea {
    width: 100%;
    height: 60px;
    font-family: 'MarkPro';
    font-size: 17px;
    color: #818181;
    outline: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #818181;
    padding-left: 30px;
}
.text_input textarea {
    width: 100%;
    height: 150px;
    resize: none;
}
.form_submit {
    font-family: 'MarkMedium';
    font-size: 18;
    color: #fff;
    background: #1b96a2;
    border-radius: 30px;
    border: 0;
    width: 250px;
    height: 60px;
    text-transform: uppercase;
}
.close_contact{
    position: absolute;
    top: 14px;
    right: 20px;
    background: transparent;
    border: 0;
}
.close_contact span{
    font-size: 30px;
    line-height: 1;
}
samp.error {
    font-family: 'MarkPro';
    font-size: 14px;
    color: #ed1c24;
    margin-top: 4px;
    display: block;
}

.footer_contact .container-full .row {
    margin-left: 0;
    margin-right: 0;
}
.footer_contact .container-full .row .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}
.info_contact {
    background: #1b96a2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px 0 70px;
}
.info_contact ul{
    max-width: 600px;
}
.info_contact ul li {
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}
.info_contact ul li:last-child{
    padding-bottom: 0;
}
.info_contact ul li label {
    width: 40px;
    margin-right: 20px;
}
.info_contact ul li a{
    font-family: 'MarkPro';
    font-size: 25px;
    color: #fff !important;
}
.info_contact ul li a b{
    font-family: 'MarkBold';
}
.info_contact ul li:last-child a b{
    display: block;
}

.map {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin-bottom: -70px;
}
.map iframe {
    height: 600px;
    width: 100%;
    position: relative;
    top: -60px;
    border: none;
}
.g-recaptcha{
    margin-bottom: 20px;
}
@media (max-width: 1399px){
    .info_contact ul li a {
        font-size: 25px;
    }
}
@media (max-width: 991px){
    .info_contact{
        padding: 0 30px;
    }
}
@media (max-width: 767px){
    .text_input {
        margin-bottom: 50px;
    }
    .info_contact{
        padding: 50px 30px;
    }
    .map iframe {
        height: 450px;
    }
}
@media (max-width: 575px){
    .text_input input, .text_input select, .text_input textarea{
        padding-left: 15px;
    }
    .info_contact ul li {
        padding-bottom: 40px;
    }
    .info_contact {
        padding: 50px 20px;
    }
    .info_contact ul li a {
        font-size: 20px;
    }
    .info_contact ul li label {
        width: 30px;
        margin-right: 15px;
    }
}

/*  A propos  */

/****  Block Head a-propos  ****/

.content_apropos p{
    font-family: 'MarkPro';
    font-size: 22px;
    color: #666666;
    line-height: 40px;
    margin-top: 35px;
    margin-bottom: 0;
}
.img_head_apropos{
    position: relative;
    text-align: center;
}
.img_head_apropos video{
    max-width: 100%;
}
.titre_head_apropos{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.titre_head_apropos h2{
    font-family: 'MarkBold';
    font-size: 70px;
    color: #fff;
    margin: 0;
    position: absolute;
}
.titre_head_apropos h2 span{
    display: block;
    line-height: 1;
}
.text_head_apropos{
    padding-top: 60px;
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: -ms-center;
    text-align: -o-center;
}
.text_head_apropos h3{
    font-family: 'MarkBold';
    font-size: 35px;
    color: #54c5d0;
    margin-bottom: 0;
    max-width: 80%;
}
@media (max-width: 1199px){
    .titre_head_apropos h2{
        font-size: 60px;
    }
    .text_head_apropos h3{
        font-size: 30px;
    }
}
@media (max-width: 991px){
    .titre_head_apropos h2{
        font-size: 6vw;
    }
    .text_head_apropos h3 {
        font-size: 27px;
        max-width: 100%;
    }
    .content_apropos p{
        font-size: 21px;
    }
}
@media (max-width: 575px){
    .text_head_apropos{
        padding-top: 30px;
    }
    .text_head_apropos h3 {
        font-size: 23px;
    }
    .content_apropos p{
        font-size: 18px;
        line-height: 32px;
        margin-top: 25px;
    }
}

/****  Block Nos Usines  ****/

.block_apropos{
    position: relative;
}
.nos_usines_apropos{
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0) 30%, rgba(245,245,245,1) 30%);
    margin-top: 300px;
    padding-bottom: 50px;
}
.nos_usines_apropos h2{
    font-family: 'MarkThin';
    font-size: 420px;
    color: #f9f4f4;
    margin: 0;
    line-height: 1;
    text-align: center;
    position: absolute;
    top: -250px;
    left: 0;
    right: 0;
    z-index: -1;
}
.img_nos_usines_apropos{
    position: relative;
    margin-top: -50px;
}
.text_block_apropos.text_nos_usines_apropos{
    padding-top: 80px;
    padding-left: 30px;
}
.text_block_apropos h3{
     font-family: 'MarkThin';
    font-size: 100px;
    color: #c3d336;
    margin-bottom: 80px;
    line-height: 1;
}
.text_block_apropos h3 span{
    display: block;
    line-height: 1;
}
.text_block_apropos strong{
     font-family: 'MarkBold';
    font-size: 30px;
    color: #666666;
    margin-bottom: 35px;
    line-height: 1;
    display: block;
}
.text_block_apropos h4{
     font-family: 'MarkBold';
    font-size: 35px;
    color: #008d9a;
    margin-bottom: 0;
}
.text_block_apropos p{
     font-family: 'MarkPro';
    font-size: 24px;
    color: #666666;
    margin-bottom: 0;
    margin-top: 30px;
    line-height: 40px;
    text-align: justify;
}
@media (max-width: 1399px){
    .nos_usines_apropos h2 {
        font-size: 365px;
        top: -215px;
    }
    .text_block_apropos.text_nos_usines_apropos {
        padding-top: 60px;
    }
    .text_block_apropos h3 {
        font-size: 80px;
        margin-bottom: 50px;
    }
    .text_block_apropos strong {
        font-size: 22px;
    }
    .text_block_apropos h4 {
        font-size: 25px;
    }
    .text_block_apropos p {
        font-size: 20px;
        margin-top: 30px;
    }
}
@media (max-width: 1199px){
    .nos_usines_apropos {
        margin-top: 230px;
    }
    .nos_usines_apropos h2 {
        font-size: 300px;
        top: -180px;
    }
}
@media (max-width: 991px){
    .nos_usines_apropos {
        background: linear-gradient(90deg, rgba(0,0,0,0) 6%, rgba(245,245,245,1) 6%);
    }
    .nos_usines_apropos h2 {
        font-size: 230px;
        top: -180px;
    }
}
@media (max-width: 767px){
    .nos_usines_apropos h2 {
        font-size: 180px;
        top: -140px;
    }
}
@media (max-width: 575px){
    .nos_usines_apropos {
        background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(245,245,245,1) 0%);
        margin-top: 60px;
    }
    .nos_usines_apropos h2 {
        font-size: 30vw;
        top: -10vh;
    }
    .img_nos_usines_apropos{
        margin-top: 0;
    }
    .text_block_apropos.text_nos_usines_apropos{
        padding-left: 0;
        padding-top: 40px;
    }
    .text_block_apropos h3 {
        font-size: 45px;
        margin-bottom: 40px;
    }
    .text_block_apropos strong {
        font-size: 21px;
    }
    .text_block_apropos h4 {
        font-size: 22px;
    }
    .text_block_apropos p {
        font-size: 18px;
        line-height: 35px;
    }
}

/****  Block Approvisionnement et stockage  ****/

.approvisionnement_apropos, .laboratoires_apropos{
    margin-top: 150px;
}
.bg_approvisionnement_apropos, .bg_laboratoires_apropos{
    max-width: 2000px;
    margin: auto;
    position: relative;
}
.img_approvisionnement_apropos{
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}
.text_approvisionnement_apropos{
    position: relative;
    z-index: 1;
}
.text_block_apropos.text_approvisionnement_apropos h4,
.text_block_apropos.text_laboratoires_apropos h4,
.text_block_apropos.text_distribution_apropos h4{
    color: #54c5d0;
}
@media (max-width: 991px){
    .approvisionnement_apropos, .laboratoires_apropos{
        margin-top: 100px;
    }
    .bg_approvisionnement_apropos .container, .bg_laboratoires_apropos .container{
        max-width: 100%;
    }
    .text_block_apropos.text_approvisionnement_apropos h3 {
        font-size: 60px;
    }
    .img_approvisionnement_apropos{
        position: relative;
    }
}
@media (max-width: 767px){
    .approvisionnement_apropos, .laboratoires_apropos{
        margin-top: 70px;
    }
    .text_block_apropos.text_approvisionnement_apropos h3 {
        font-size: 10vw;
    }
}

/****  Block Notre laboratoire  ****/

.text_laboratoires_apropos{
    position: relative;
    z-index: 1;
}
.img_laboratoires_apropos{
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
}
.text_block_apropos.text_laboratoires_apropos h3{
    margin-left: -120px;
    font-size: 80px;
}
.text_block_apropos.text_laboratoires_apropos h4 b,
.text_block_apropos.text_distribution_apropos h4 b{
    color: #c3d336;
}
@media (max-width: 1399px){
    .text_block_apropos.text_laboratoires_apropos h3 {
        margin-left: -60px;
        font-size: 70px;
    }
}
@media (max-width: 1199px){
    .text_block_apropos.text_laboratoires_apropos h3 {
        margin-left: 0;
        font-size: 55px;
    }
}
@media (max-width: 991px){
    .img_laboratoires_apropos{
        position: relative;
    }
}
@media (max-width: 767px){
    .text_block_apropos.text_laboratoires_apropos h3 {
        font-size: 10vw;
    }
}


/****  Block Conditionnement et distribution  ****/

.distribution_apropos{
    position: relative;
    margin-top: 150px;
    background: linear-gradient(90deg, rgba(0,0,0,0) 50%, rgba(245,245,245,1) 50%);
}
.distribution_apropos .container{
    background: linear-gradient(90deg, rgba(0,0,0,0) 16%, rgba(245,245,245,1) 16%);
}
.text_block_apropos.text_distribution_apropos h3{
    text-align: right;
    writing-mode: vertical-rl;
    margin-bottom: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.text_block_apropos.text_distribution_apropos h4{
    font-size: 50px;
}
.text_block_apropos.text_distribution_apropos strong{
    margin: 25px 0;
}
.text_block_apropos ul{
    margin-top: 30px;
    position: absolute;
}
.text_block_apropos ul li{
    margin-top: 40px;
    padding-left: 50px;
    font-family: 'MarkPro';
    font-size: 24px;
    color: #666666;
    position: relative;
}
.text_block_apropos ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/valide.png') no-repeat;
    width: 30px;
    height: 28px;
}
.img_distribution_apropos_right{
    position: relative;
    top: -60px;
}
.img_distribution_apropos_left{
    position: relative;
    bottom: -30px;
}
@media (max-width: 1399px){
    .text_block_apropos ul{
        margin-top: 0;
    }
    .text_block_apropos ul li {
        margin-top: 30px;
        font-size: 20px;
        line-height: 1;
    }
}
@media (max-width: 1199px){
    .text_block_apropos.text_distribution_apropos h4 {
        font-size: 35px;
    }
}
@media (max-width: 991px){
    .distribution_apropos{
        padding-bottom: 50px;
        padding-top: 30px;
        margin-top: 70px;
    }
    .distribution_apropos, .distribution_apropos .container {
        background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(245,245,245,1) 0%);
    }
    .text_block_apropos.text_distribution_apropos h3 {
        writing-mode: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
    }
    .img_distribution_apropos_right {
        top: 0;
        margin-top: 40px;
        text-align: right;
    }
    .text_block_apropos ul{
        position: relative;
    }
}
@media (max-width: 767px){
    .text_block_apropos.text_distribution_apropos h3 {
        font-size: 8vw;
    }
}
@media (max-width: 575px){
    .text_block_apropos.text_distribution_apropos h4 {
        font-size: 30px;
    }
    .text_block_apropos ul li {
        margin-top: 25px;
        font-size: 17px;
        line-height: 1.2;
    }
}

/* Rejoignez-nous */

@media (max-width: 991px){
    .content_apropos .text_rejoignez_nous p{
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 20px;
    }
}
@media (max-width: 575px){
    .menu_contact ul li{
        min-height: 0;
    }
    .menu_contact ul li a{
        font-size: 20px;
    }
}








