/*@font-face {
    font-family: 'montserra';
    src: url(../fonts/Montserrat-Regular.ttf);
}*/

@font-face {
    font-family: 'gotham';
    src: url(../fonts/Gotham-Bold.ttf);
}

@font-face {
    font-family: 'latobold';
    src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
    font-family: 'latohair';
    src: url(../fonts/Lato-HairlineItalic.ttf);
}

* {
    box-sizing: border-box;
}

html, body {
   padding: 0;
   margin: 0;
   font-family: 'montserrat'; 
   scroll-behavior: smooth;
   overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, a, ul, li {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    position: relative;
}

main {
    background-color: #FFFFFF;
}

button, input, textarea {
    border: none;
}

select {
    border: none;
    -moz-appearance:none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

h1 {
    justify-content: center;
    margin: auto;
    color: #155144;
    font-size: 50px;
    font-family: 'gotham';
    line-height: 50px;
    margin-top: 50px;
}

h1.cat_title {
    display: none;
}

#carte {
    width: 500px;
    height: 500px;
    margin: auto;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

#carte .carte_content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
}

#carte .carte_content p {
    margin: 0;
}

#carte .carte_content p:first-of-type {
    margin-top: 10px;
    font-weight: 600;
}

.footer_map #carte {
    width: 100%;
    height: 100%;
}

.btns {
    display: flex;
    white-space: nowrap;
    justify-content: center;
    margin: auto;
}

.btns .btn + .btn {
    margin-left: 10px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px 30px;
    background-color: #D86018;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 6px;
}

.btn:hover {
    background-color: #8d3f0f;
}

.title_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.diapo_container {
    display: flex;
    padding-top: 35px;
}

.diapo_container div {
    width: 100%;
}

.diapo_tabs {
    width: 350px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

.diapo_tab {
    border: 2px solid #155144;
    border-left-width: 15px;
    border-top-right-radius: 10px;
    margin-right: 35px;
    transition: all 0.2s ease-in-out;
}

.diapo_tab:hover {
    cursor: pointer;
    border-color: #D86018;
    border-left-width: 25px;
    margin-right: 25px;
}

.diapo_tab + .diapo_tab {
    margin-top: 15px;
}

.diapo_tab a, .diapo_tab a:visited {
    display: block;
    padding: 20px;
    color: #155144;
}

.diapo_tab a:visited {
    color: #155144;
}

.diapo_tab:hover a {
    color: #D86018;
}

.diapo_text {
    width: 100%;
    max-width: 95%;
    text-align: center;
    font-size: 90px;
    font-family: 'latobold';
    font-style: italic;
    color: #9e8a89;
    line-height: 100px;
    margin-top: 10%;
}

.diapo_text--alt {
    font-size: 40px;
    font-family: 'latohair';
    font-weight: 600;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 10%;
}

.diapo_link {
    display: block;
}

.diapo_link:not([href=""]) {
    position: relative;
    z-index: 999;
}

.info_wip {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px;
}

.info_wip p {
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    color: #155144;
    margin-bottom: 30px;
}

#div_comments .bx-viewport {
    height: 460px !important;
}

.twins {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twin {
    width: 50%;
    max-width: 50%;
}

.msg_formulairecontact_erreur p {
    width: 100%;
    background-color: #ff9a9a;
    color: #8d3030;
    padding: 10px;
    text-align: center;
}
.msg_formulairecontact_confirmation p{
    width: 100%;
    background-color: #CCFFCC;
    color: #006600;
    padding: 10px;
    text-align: center;
}


.article {
    display: flex;
    width: 100%;
    color: black;
    background-color: transparent;
    line-height: 30px;
}

.article:first-of-type {
    margin-top: 50px;
}

.produitALaUne + .article:first-of-type {
    margin-top: 0;
}

.boutique_page .article {
    margin-top: 0;
    
}

.article:nth-of-type(even) {
    flex-direction: row-reverse;
}

.article_type2:nth-of-type(even) + .article_type4, .article_type5, .article_type6 .article_type7 {
    flex-direction: row-reverse;
}

.article:nth-of-type(even) [data-aos="fade-left"] {
    transform: translate3d(-100px,0,0);
}

.article:nth-of-type(even) [data-aos="fade-right"] {
    transform: translate3d(100px,0,0);
}

.article:nth-of-type(even)[data-aos="fade-left"] {
    transform: translate3d(-100px,0,0);
}

.article:nth-of-type(even)[data-aos="fade-right"] {
    transform: translate3d(100px,0,0);
}

.article:last-of-type {
    position: relative;
}

.article:last-of-type div {
    z-index: 1;
}

.article:last-of-type::before {
    content: url(/img/deco-fond-2.png);
    position: absolute;
    top: -20px;
    left: 30px;
    z-index: 0;
}

.c-335 .article:last-of-type::before {
    display: none;
}

.article_title {
    font-family: 'gotham';
    font-size: 45px;
    color: #155144;
    line-height: 50px;
}

.produits_title {
    font-family: 'gotham';
    font-size: 55px;
    line-height: 60px;
    margin: 80px 40px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
    color: #D86018;
}

.produits_title::after {
    content: '';
    background-color: #FBEEE6;
    width: 50%;
    height: 35px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: -1;
}

.produits_title::before {
    content: url(/img/deco-titre-2.png);
    position: absolute;
    top: -35px;
    left: -15px;
}

.produits_title--alt {
    color: #155144;
}

.produits_title--alt::before {
    content: url(/img/deco-titre-1.png);
}

.bx-wrapper {
    box-shadow: none !important;
    border: none !important;
    background: none !important;
}

.bx-wrapper .bx-controls-direction a {
    width: 45px !important;
}

.bx-wrapper .bx-prev {
    left: -52px !important;
    background: url(/img/flechegauche.png) no-repeat !important;
    background-position: top right !important;
}

.bx-wrapper .bx-next {
    right: -52px !important;
    background: url(/img/flechedroite.png) no-repeat !important;
}

.bx-wrapper .bx-prev, .bx-wrapper .bx-next {
    opacity: 0.7;
}

.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-next:hover {
    opacity: 1;
}

.bloc_actualite .bx-wrapper, .c-57 .bx-wrapper {
    margin-bottom: 0 !important;
    padding: 0 65px !important;
}

.bloc_actualite .bx-wrapper .bx-prev, .c-57 .bx-wrapper .bx-prev {
    left: 7px !important;
}

.bloc_actualite .bx-wrapper .bx-next, .c-57 .bx-wrapper .bx-next {
    right: 7px !important;
}

.bloc_actualite .bx-wrapper .bx-loading {
    display: none;
}

.reassurances {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px;
    color: #155144;
    position: relative;
    text-align: center;
}

.reassurances::before {
    content: url(/img/deco-fond-1.png);
    position: absolute;
    right: 50px;
    top: 0;
}

.reassurances_items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.reassurances_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin: 0 25px;
}

.reassurances_item img {
    max-height: 80px;
    margin-bottom: 20px;
}

.reassurances_links {
    display: flex;
    text-transform: uppercase;
    font-size: 40px;
    margin-top: 40px;
    color: #FFFFFF;
}

.reassurances_links a, .reassurances_links a:visited {
    color: #FFFFFF !important;
}

.reassurances_link {
    width: 50%;
    height: 250px;
    overflow: hidden;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reassurances_link img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.reassurances_link p {
    position: absolute;
    z-index: 1;
}

.reassurances_link--alt {
    margin-left: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.superarticle_items {
    /*display: flex;
    justify-content: space-around;
    align-items: flex-end;
    flex-wrap: wrap;*/
}

.superarticle_item {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.superarticle_item_title {
    color: #155144;
    font-family: 'gotham';
    font-size: 20px;
    margin-bottom: 5px;
    text-align: start !important;
}

.superarticle_item_photo {
    max-height: 200px;
    overflow: hidden;
    margin-right: 35px;
    border-top-left-radius: 20px;
    margin-bottom: -40px;
    z-index: 2;
}

.superarticle_item_photo img {
    width: 100%;
    object-fit: contain;
}

.superarticle_item_text {
    background-color: #155144;
    color: #FFFFFF;
    padding: 50px 25px 35px 25px;
    margin-left: 35px;
    border-bottom-right-radius: 20px;
    font-size: 14px;
    line-height: 19px;
}

.superarticle_btn {
    display: block;
    color: #FFFFFF !important;
    margin: 30px auto;
    width: fit-content;
}

@media all and (max-width: 1700px) {
    .diapo_text--alt {
        margin-top: 0;
        margin-bottom: 15%;
    }
}

@media all and (max-width: 991px) {
    main {
        background: url(/img/fond_hexagone.png) center no-repeat;
        background-size: 1000px;
        background-position-x: -200px;
    }

    .reassurances::before {
        right: -135px;
    }

    .reassurances_links {
        flex-wrap: wrap;
        font-size: 30px;
    }

    .reassurances_link {
        width: 100%;
    }

    .reassurances_link--alt {
        margin-top: 40px;
        margin-left: 0;
    }
}

@media all and (max-width: 900px) {
    .diapo_tabs {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10010;
        justify-content: flex-start;
        text-align: start;
        text-transform: capitalize;
        max-width: 0;
        height: 250px;
        font-size: 15px;
        transition: max-width 0.7s ease-in-out;
        background-color: #FFFFFF;
        overflow: hidden;
        padding-top: 15px;
        white-space: nowrap;
    }

    .diapo_tabs.active {
        max-width: 90vw;
    }

    .diapo_tab {
        border: none;
        margin-left: 40px;
        position: relative;
    }

    .diapo_tab + .diapo_tab {
        margin-top: 0;
    }

    .diapo_tab a {
        padding: 10px 15px;
    }

    .diapo_tab::before {
        content: '';
        height: 25px;
        width: 25px;
        position: absolute;
        left: -22px;
        top: 10px;
        border-radius: 50%;
        background-color: #A4C537;
    }
}

@media all and (max-width: 797px) {
    .diapo_container {
        padding: 0;
    }

    .produits_title {
        font-size: 40px;
    }

    .produits_title::after {
        width: 80%;
        height: 30px;
        bottom: -15px;
    }

    .diapo_text {
        font-size: 40px;
        line-height: 60px;
        margin-top: 15%;
    }

    .diapo_text--alt {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20%;
        margin-top: 0;
    }

    .info_wip p {
        font-size: 30px;
    }
}

@media all and (max-width: 500px) {
    .article_title {
        font-size: 35px;
    }

    .diapo_container {
        display: none;
    }

    .reassurances {
        padding-top: 0;
    }

    .reassurances_link img {
        width: auto;
        height: 100%;
    }

    .superarticle_item {
        width: 250px;
    }

    .diapo_text {
        font-size: 15px;
        line-height: 20px;
        margin-top: 20px;
    }

    .diapo_text--alt {
        margin-bottom: 15px;
        margin-top: 0;
    }

    .bx-wrapper {
        margin-bottom: 0 !important;
    }
}

/* COOKIES */
#bdn_cookies{color:#50211b;text-align:center;font-size:11px;padding:2px 0px;right:0px;z-index:1001;position:fixed;    bottom: 20px;}
#bdn_cookies #bulle_cookies{background:url(/www/img/fond_cookies.png);background-size: contain;background-repeat:no-repeat;width: 330px;height: 285px;padding: 1px;}
#bdn_cookies #head_bulle_cookie{    margin: 30px 0 15px 0;font-size: 15px;line-height: 18px;}
#bdn_cookies #body_bulle_cookie{display: flex;    padding: 0 5px 0 20px;flex-direction: row-reverse;}
#bdn_cookies #body_bulle_cookie .left_bulle img{    width: 130px;}
#bdn_cookies #body_bulle_cookie .right_bulle{font-size: 14px;padding: 0px 9px;line-height: 18px;}
#bdn_cookies #footer_bulle_cookie{ text-align: left;padding: 0 35px;margin-top: 5px;}
#bdn_cookies #footer_bulle_cookie button:first-child{background:#50211b;border:none;border-radius:10px 0 0 0;color:#fff;    font-size: 13px;padding: 5px 20px;text-transform: uppercase;vertical-align: middle;}
#bdn_cookies #footer_bulle_cookie button:first-child:hover{background:#9e8a89;}
#bdn_cookies #footer_bulle_cookie button:last-child{background:#9e8a89;border:none;border-radius:0 0 10px 0;color:#fff;    font-size: 13px;padding: 5px 20px;text-transform: uppercase;vertical-align: middle;}
#bdn_cookies #footer_bulle_cookie button:last-child:hover{background:#50211b;}
#carte {height: 50vh}