:root {
    font-size: 62.5%;
}

html {
    scroll-behavior: smooth;
    transition: all .5s ease;
    width: 100%;
    /* height: 100%; */
}

body {
    width: 100%;
    /* height: 100%; */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #000;
    overflow-x: hidden;
    margin-top: 117px;
}

a {
    color: #d1b02b;
}

a:active, a:visited, a:hover {
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text-bleu {
    color: #335f64;
}

.text-marron {
    color: #9a4311;
}

.text-red {
    color: #e2001a;
}

.font-weight-medium {
    font-weight: 500;
}

.font-weight-regular {
    font-weight: 400;
}

.titre-1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
}

.titre-2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.titre-2 span {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
}

.titre-3 {
    font-size: 3rem;
    color: #fff;
    display: inline-block;
    padding: 20px 15px;
    font-family: 'Libre Baskerville', serif;
    margin: 0;
    position: relative;
    width: 100%;
    max-width: 40%;
}

.titre-3::before {
    content: '';
    background-color: #335f64;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    height: 180%;
}

.mb-5p {
    margin-bottom: 5%;
}

.pt-5p {
    padding-top: 5%;
}

.py-5p {
    padding-top: 5%;
    padding-bottom: 5%;
}

.mw-80p {
    max-width: 80%;
}

.ml-a {
    margin-left: auto;
}

.cont-nested {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    overflow-y: auto;
}

.cta {
    display: inline-block;
    background-color: #d1b02b;
    color: #1d1d1b;
    font-size: 1.3rem;
    font-weight: 700;
    transition: .5s all ease-out;
    padding: 8px 20px;
    border-radius: 7px;
    border: 0;
}

.cta.bleu {
    background-color: #335f64;
    color: #fff;
}

.cta:hover {
    background-color: #1d1d1b;
    color: #d1b02b;
    text-decoration: none;
}

.cta.bleu:hover {
    background-color: #9a4311;
    color: #fff;
}

.cta-grey {
    color: #000;
}

.cta-grey::before {
    content: '\f178';
    font-family: fontAwesome;
    color: #335f64;
    border-radius: 50%;
    background-color: #d2d7d9;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
    display: inline-block;
    margin-right: 20px;
    transition: all .3s ease-out;
}

.cta-grey:hover::before {
    margin-left: 10px;
    margin-right: 10px;
}

.cta-arrow {
    font-size: 1.3rem;
}

.cta-arrow.bleu {
    color: #275f64;
}

.cta-arrow::before {
    content: '\f178';
    font-family: fontAwesome;
    display: inline-block;
    margin-right: 15px;
    transition: all .3s ease-out;
}

.cta-arrow:hover::before {
    margin-right: 10px;
    margin-left: 5px;
}

.picto-toque {
    display: flex;
    align-items: center;
}

.picto-toque::before {
    content: '';
    background: url('/media/img/picto-toque.png') no-repeat;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 13px;
}

#scrollTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 30px;
    padding: 6px 12px;
    line-height: 30px;
    z-index: 999;
}

#scrollTop:hover {
    color: #d1b02b;
}

/* NAV */

nav {
    position: fixed;
    top: 0;
    z-index: 1000;
    left: 0;
    background-color: #fff;
    right: 0;
    box-shadow: 0 0 5px #adaeb1;
    height: 117px;
}

nav #menu-btn {
    display: none;
    color: #2a2d2e;
    font-weight: 300;
    text-transform: uppercase;
    border: 0;
    font-size: 1.8rem;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(42, 45, 46, 1)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") no-repeat top right;
    padding: 0;
    outline: none;
    width: 40px;
    height: 30px;
    overflow: hidden;
}

#pre-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pre-nav>div {
    display: flex;
    align-items: center;
    margin: 0 -10px;
}

#pre-nav>div>a {
    margin: 0 10px;
}

#pre-nav .picto-tel {
    color: #1d1d1b;
    font-family: 'Libre Baskerville', serif;
    font-weight: normal;
    font-size: 2.2rem;
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
}

#pre-nav .picto-tel::before {
    content: '\f095';
    font-family: fontAwesome;
    margin-right: 10px;
    display: inline-block;
    color: #fff;
    background-color: #d1b02b;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    text-align: center;
    line-height: 30px;
    font-size: 1.5rem;
}

#pre-nav .picto-tel:hover {
    text-decoration: none;
    color: #d1b02b;
}

#nav {
    display: flex;
    justify-content: space-between;
}

#nav>li {
    padding: 10px 0;
    position: relative;
}

#nav>li:hover {
    cursor: pointer;
}

#nav>li>span, #nav>li>a {
    color: #1d1d1b;
    font-weight: 600;
}

#nav>li:hover>span, #nav>li:hover>a {
    color: #335f64;
    text-decoration: none;
}

#nav .sub-menu {
    display: none;
    background-color: #335f64;
    padding: 20px;
    white-space: nowrap;
    border-radius: 1px;
    min-width: 300px;
}

#nav>li:hover>.sub-menu {
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 0;
}

#nav .sub-menu>li {
    margin: 5px 0;
    white-space: normal;
}

#nav .sub-menu>li>a {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all .3s ease-out;
}

#nav .sub-menu>li>a::before {
    content: '\f178';
    font-family: fontAwesome;
    margin-right: 10px;
    display: inline-block;
    transition: all .3s ease-out;
}

#nav .sub-menu>li>a:hover {
    color: #d1b02b;
    text-decoration: none;
}

#nav .sub-menu>li>a:hover::before {
    margin-left: 5px;
    margin-right: 5px;
}

#bloc-reseau {
    position: fixed;
    left: 0;
    top: 30px;
    height: 100vh;
    border-right: 1px solid #87a1a4;
    min-width: 40px;
    padding: 60px 0;
    z-index: 1001;
    background-color: #fff;
    /* width: calc((100% - 1280px) / 2); */
    box-shadow: 1px 0 0 #cfd9db;
}

#bloc-reseau>div {
    text-align: center;
    width: 40px;
    margin-left: auto;
    padding: 0 10px;
}

#bloc-reseau a {
    margin: 8px 0;
    display: inline-block;
    color: #335f64;
}

/* FIN NAV */

/* FOOTER */

footer {
    background-color: #d1b02b;
    padding: 30px 0 15px;
}

footer, footer a {
    color: #343131;
    font-size: 1.3rem;
    font-weight: 500;
}

footer p {
    margin: 0;
}

footer p+p {
    margin-top: 5px;
}

footer .sep {
    margin: 0 10px;
}

#footer__sn i {
    font-size: 2rem;
    margin: 0 1rem;
}

/* FIN FOOTER */

/* SLIDER */

#slider .titre-slide {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 3.5rem;
}

#slider .titre-slide span {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2rem
}

#slider p {
    color: #000;
    font-size: 1.4rem;
    font-weight: 500;
}

.swiper-pagination-bullet {
    background: #222 !important;
    opacity: 1 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #000 !important;
}

.swiper-pagination-bullet-active {
    background-color: #d1b02b !important;
}

.swiper-pagination {
    position: relative;
    text-align: left;
    top: -50px;
    height: 0;
}

.swiper-button-next, .swiper-button-prev {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 1rem;
    margin: 0;
}

.swiper-nav-container {
    position: relative;
    top: -3rem;
    text-align: right;
    max-height: 0;
}

.swiper-nav {
    display: inline-flex;
    justify-content: space-around;
    margin-left: auto;
    right: 0;
    bottom: -30px;
    height: 45px;
    position: absolute;
    width: 100px;
    background-color: #ffffff;
    z-index: 500;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 3rem;
    font-weight: 600;
    font-family: monospace;
}

.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
    color: #d1b02b;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'â†';
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'â†’';
}

/* FIN SLIDER */

/* HOME */

#bloc-home-2 {
    position: relative;
}

#bloc-home-2 .titre-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 0 0 10px #000;
    width: 100%;
    padding: 0 15px;
    margin: 0;
}

.bloc-ombre-bleu, .bloc-ombre-jaune {
    width: 65%;
    height: 90%;
    position: absolute;
    z-index: -1;
    top: 10%;
}

.bloc-ombre-bleu, #bloc-legume-ombre.bloc-bleu {
    background-color: #335f64;
}

.bloc-ombre-jaune {
    background-color: #d1b02b;
}

.bloc-ombre-bleu+img {
    max-width: 80%;
    margin: 0 15px 30px 0;
}

#bloc-legume {
    padding-bottom: 45px;
}

#bloc-legume-1 {
    margin-top: 103px;
}

#bloc-legume-ombre {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 67%;
    height: 50%;
    background-color: #d1b02b;
    z-index: -1;
}

#bloc-legume-ombre.bg-black {
    background-color: #1d1d1b;
}

#bloc-home-3-carre .bloc-carre-type1 {
    width: 38.67%;
}

#bloc-home-3-carre .bloc-carre-type2 {
    width: 22.66%;
    margin-top: 8%;
}

#bloc-home-3-carre .carre {
    width: 58.59%;
    position: relative;
    padding-top: 58.59%;
}

#bloc-home-3-carre .bloc-carre-type2 .carre {
    width: 100%;
    padding-top: 100%;
}

#bloc-home-3-carre .carre .text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 15px;
}

#bloc-home-3-carre .carre.jaune .text {
    color: #000;
}

#bloc-home-3-carre .carre .text span {
    font-weight: 600;
}

#bloc-home-3-carre .carre.marron {
    background-color: #9a4311;
}

#bloc-home-3-carre .carre.bleu {
    background-color: #335f64;
}

#bloc-home-3-carre .carre.jaune {
    background-color: #d1b02b;
}

#bloc-home-3-carre .carre.vert {
    background-color: #386403;
}

#bloc-home-3-carre .sprite {
    background-image: url('/media/img/picto.png');
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto 15px auto;
}

#bloc-home-3-carre .sprite-picto-home-1 {
    width: 44px;
    height: 44px;
    background-position: -5px -5px;
}

#bloc-home-3-carre .sprite-picto-home-2 {
    width: 40px;
    height: 41px;
    background-position: -59px -5px;
}

#bloc-home-3-carre .sprite-picto-home-3 {
    width: 39px;
    height: 39px;
    background-position: -109px -5px;
}

#bloc-home-3-carre .sprite-picto-home-4 {
    width: 48px;
    height: 40px;
    background-position: -158px -5px;
}

#bloc-home-3-carre .sprite-picto-home-5 {
    width: 41px;
    height: 40px;
    background-position: -216px -5px;
}

#bloc-home-3-carre .sprite-picto-home-6 {
    width: 36px;
    height: 45px;
    background-position: -267px -5px;
}

#bloc-home-3-carre .sprite {
    background-image: url('/media/img/sprite.png');
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto 15px auto;
    width: 78px;
    height: 78px;
}

.sprite-ecology {
    background-position: -5px -5px;
}

.sprite-idea {
    background-position: -93px -5px;
}

.sprite-hat {
    background-position: -181px -5px;
}

.sprite-apple {
    background-position: -357px -5px;
}

.sprite-certification {
    background-position: -445px -5px;
}

.sprite-cutlery {
    background-position: -533px -5px;
}

.sprite-plate {
    background-position: -269px -5px;
}

.carre.jaune .sprite {
    filter: invert(1);
}

#bloc-home-3-carre #bg-deco-biscuit {
    background: url('/media/img/deco-biscuit.png') no-repeat left bottom;
}

#bloc-home-3-carre #bg-deco-bol {
    background: url('/media/img/deco-bol.png') no-repeat 30px bottom;
    margin-top: 3%;
}

#bg-deco-soupe {
    background: url('/media/img/deco-soupe.png') no-repeat right top;
}

#actualite {
    margin-bottom: 3%;
}

#list-actualite {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#list-actualite>li {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: calc(33% - 25px);
    margin: 0 12.5px 25px;
    background-color: #f4f2f0;
    transition: all .3s ease-out;
    min-width: 300px;
}

#list-actualite>li:hover {
    transform: scale(1.05);
}

#list-actualite>li>figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 250px;
}

#list-actualite>li>figure>img {
    min-height: 100%;
    min-width: 100%;
    max-width: none;
}

#list-actualite>li>figure>figcaption {
    position: absolute;
    left: 15px;
    bottom: 10px;
    font-weight: 600;
    color: #fff;
    /* width: 60%; */
    text-shadow: 0 0 10px #000;
    line-height: 1.2;
    word-break: break-word;
}

#list-actualite>li>div {
    padding: 15px 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px #aeaeae;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    flex-grow: 1;
}

#list-actualite>li>div>p {
    color: #343131;
    font-size: 1.3rem;
}

#list-actualite>li>div>p.date-actualite {
    color: #335f64;
    font-weight: 700;
}

#list-actualite>li>div>.cta-arrow {
    margin-top: 10px;
}

/* FIN HOME */

/* DÃ‰BUT FORMULAIRES (CONTACT) */

.input-container {
    position: relative;
    padding: .75rem 1rem;
    border: solid 1px #d1b02b;
    margin-bottom: 2.5rem;
}

.input-container label {
    position: absolute;
    background: #ffffff;
    color: #335f64;
    font-weight: 600;
    padding: 0 1rem;
    left: 1rem;
    top: -1.5rem;
}

.custom-input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
}

input {
    outline: 0;
}

iframe.map {
    width: 100%;
    border: 0;
}

/* FIN FORMULAIRES (CONTACT) */

/* PAGINATION */

.pagination-container {
    text-align: center;
    margin: 3rem 0;
}

.pagination {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 0;
    box-shadow: 0 5px 15px #aeaeae;
}

.pagination div {
    display: inline-flex;
    overflow-x: auto;
}

.page-link {
    padding: 1.25rem 1.75rem;
    font-weight: 600;
    border: 0;
    background: #f4f2f0;
    color: #335f64;
}

.page-item.active .page-link {
    background: #335f64;
    color: #d1b02b;
}

.page-link:hover {
    color: #335f64;
    background: #eae9e9;
    filter: none;
}

.page-link:focus {
    outline: 0;
    box-shadow: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 0;
}

/* FIN PAGINATION */

@media screen and (max-width: 1309px) {
    #bloc-legume-ombre {
        width: 63%;
    }
}

@media screen and (max-width: 1199px) {
    #bloc-legume-ombre {
        width: 56%;
    }
    #bloc-home-3-carre .bloc-carre-type1, #bloc-home-3-carre .bloc-carre-type2 {
        width: 100%;
    }
    #bloc-home-3-carre #bg-deco-bol, #bloc-home-3-carre .bloc-carre-type2 {
        margin-top: 0;
    }
    #bloc-home-3-carre .carre, #bloc-home-3-carre .bloc-carre-type2 .carre {
        width: 66%;
        padding-top: 66%;
    }
    #bg-deco-bol {
        display: flex;
        flex-direction: column-reverse;
    }
    #bg-deco-bol>div.ml-a {
        margin-left: 0;
    }
    #bg-deco-bol>div:not(.ml-a) {
        margin-left: auto;
    }
    .cont-nested {
        position: absolute;
        transform: none;
        display: block;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
        background-color: rgb(255 255 255 / 50%);
        /* line-height: normal; */
        overflow-y: scroll;
        max-width: none;
        padding: 30px 30px 60px 30px;
    }
}

@media screen and (max-width: 991px) {
    body {
        margin-top: 55px;
    }
    nav {
        height: 55px;
    }
    nav #menu-btn {
        display: block;
    }
    #nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        background-color: #fff;
        text-align: center;
        border-top: 1px solid #adaeb1;
        padding: 15px;
    }
    #nav>li:hover>.sub-menu {
        display: none;
    }
    #nav>li:hover>.sub-menu, #nav>li>.sub-menu.open {
        position: relative;
        width: 100%;
        text-align: left;
    }
    #pre-nav img {
        max-height: 50px;
    }
    #pre-nav {
        flex-wrap: wrap;
    }
    #pre-nav>div {
        width: 100%;
    }
    #pre-nav>div, #nav {
        display: none;
    }
    #bloc-reseau {
        display: none;
    }
    #slider .titre-slide {
        font-size: 2rem;
    }
    #slider .titre-slide span {
        font-size: 3rem;
    }
    .titre-3 {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    footer .sep {
        display: block;
    }
}

@media screen and (max-width: 575px) {
    #nav .sub-menu {
        min-width: auto;
    }
    #bloc-home-3-carre .carre, #bloc-home-3-carre .bloc-carre-type2 .carre {
        width: 100%;
        padding-top: 100%;
    }
    #slider .titre-slide {
        line-height: normal;
        margin-bottom: 1rem;
    }
    #slider .titre-slide span {
        display: block;
        font-size: 1.6rem;
        margin: 1rem 0 !important;
    }
    #slider .cont-nested {
        font-size: 1.4rem;
        padding: 15px 0 60px 0;
    }
    #slider .row {
        margin: 0;
    }
    .titre-1 {
        font-size: 2rem;
    }
    #list-actualite>li>div>p, #bloc-home-3-carre .carre .text, footer, footer a, .cta {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 565px) {
    #bloc-home-3 {
        padding-bottom: 0;
    }
}

@media screen and (min-width: 1310px) {
    .container {
        max-width: 1280px;
    }
}

@media screen and (min-width: 1470px) {
    #slider .col-xl-6 {
        flex: 0 0 41.666667% !important;
        max-width: 41.666667% !important;
        margin-left: 58.333333% !important;
    }
}

@media screen and (min-width: 792px) and (max-width: 1999px) {
    nav, header, main, footer, .container.px-0 {
        padding-left: 4rem !important;
    }
}