* {
    box-sizing: border-box;
}


:root {
    --noir : rgb(0,0,0);
    --noirmat: rgb(29,28,25);
    --vert: rgb(170,182,118);
    --vertfonce: rgb(103,110,69);
    --vertmoyen: rgb(124,130,98);
    --vertmed: rgb(113,129,54);
    --vertclair: rgb(202,215,144);
    --vertsombre: rgb(76,80,54);
    --gris: rgb(87,83,83);
    --grisclair: rgb(177,174,174);
    --grispale: rgb(238,239,235);
    --blanc-10: rgba(255,255,255,0.1);
    --blanc-20: rgba(255,255,255,0.2);
}

body {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    font-family: "Poppins";
}

h1, h2, h3, h4, h5 {
    font-family: "Quicksand";
    font-weight: 400;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong {
    font-weight: 700;
}

.social {
	position: relative;
	top: 0;
	z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 10px;
}
.social .ico {
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	opacity: 1;
    color: #FFF;
    /*
    width: 35px;
    height: 35px;
    */
    background-color:transparent;
    text-decoration: none;
}
.social .ico i {
    font-size: 20px;
}

.social .ico:hover {
	color: var(--vertsombre);
}

/* =============================================== STRIP MENU ================================= */

header {
	display: block;
	padding: 0;
	margin: 0;
	position: fixed;
	width: 100%;
	z-index: 100;
    top: 0;
    left: 0;
}

header .underlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 119px;
    background-color: rgba(170,182,118,0.9);
    
    
    z-index: 1;
    transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
    height: 0;
}
header .underlay.open {
    height: 100vh;
    transition: all 800ms cubic-bezier(0.65, 0, 0.35, 1);
}



header .wrapper-menu {
	
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    column-gap: 10px;
    padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
    position: relative;
    z-index: 3;
    background-color: #fff;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header.scroll .wrapper-menu {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}



header .wrapper-menu .logo {
    flex-grow: 0;
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    height: 0;
    overflow: visible;
}

header .wrapper-menu .logo a {
    display: block;
    height: auto;
    width: 150px;
    position: relative;
    z-index: 2;
    transform: translateY(-30px);
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-menu .logo a {
    
    width: 95px;
    height: auto;
}


header .wrapper-menu .logo .round {
    display: block;
    width: 280px;
    height: 200px;
    position: absolute;
    top: 0;
    border-radius: 100%;
    z-index: 1;
    transform: translateY(-100px);
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

header.scroll .wrapper-menu .logo .round {
    opacity: 0;
    transform: translateY(-200px);
}



header .wrapper-menu .logo a img {
    display: block;
    width: 100%;
    height: auto;
}


header .wrapper-menu .menu {
	position: relative;
	z-index: 1;
    display: none;
}
header .wrapper-menu .menu a {
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: center;
	cursor: pointer;
    column-gap: 15px;
}

header .wrapper-menu .menu a figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 40px;
    height: 40px;
    row-gap: 8px;
}

header .wrapper-menu .menu a .line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgb(0,0,0);
}

header .wrapper-menu .menu a .libelle {
	display: block;
	font-size: 12px;
	line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
    transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
    
}
header .wrapper-menu .menu a:hover .libelle {
    transform: translateX(5px);
}


header .wrapper-menu .topbar  {
    background-color: rgba(0,0,0,0.1);
}

header .wrapper-menu .topbar nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    flex-wrap:nowrap;
    list-style-type: none;
}

header .wrapper-menu .topbar nav ul li {
    display: block;
    padding: 0;
    margin: 0;
}

header .wrapper-menu .topbar nav ul li a {
    display: block;
}


header .wrapper-menu .mainbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

header .wrapper-menu .mainbar nav:nth-of-type(1) {
    padding-right: 150px;
}
header .wrapper-menu .mainbar nav:nth-of-type(2) {
    padding-left: 150px;
}


header .wrapper-menu .mainbar nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    flex-wrap:nowrap;
    list-style-type: none;
}

header .wrapper-menu .mainbar nav:nth-of-type(1) ul {
    justify-content: flex-start;
}
header .wrapper-menu .mainbar nav:nth-of-type(2) ul {
    justify-content: flex-end;
}


header .wrapper-menu .mainbar nav ul li {
    display: block;
    padding: 0;
    margin: 0;
}

header .wrapper-menu .mainbar nav ul li a {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    font-family: "Quicksand";
    color: var(--noirmat);
}

header .wrapper-menu .mainbar nav ul li a:hover,
header .wrapper-menu .mainbar nav ul li.up a {
    color: var(--vert);
}

header .wrapper-menu .social {
    display: none;
}



header .wrapper-nav {
	height:0;
	width:100%;
	overflow: hidden;
	position:fixed;
	top: 0;
	right:0;
    z-index: 2;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}

header .wrapper-nav .wrapper-boutons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
}
header .wrapper-nav .wrapper-boutons a {
    display: block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    transform: translateX(20px);
    opacity: 0;
    transition: all 450ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}
header.open .wrapper-nav .wrapper-boutons a {
    opacity: 1;
    transform: translateX(0px);
}

header.open .wrapper-nav .wrapper-boutons a.home {
    transition-delay: 600ms;
}
header.open .wrapper-nav .wrapper-boutons a.close {
    transition-delay: 700ms;
}

header .wrapper-nav .wrapper-boutons a figure {
    width: 30px;
    height: 30px; 
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center;
    border: solid 1px #FFF;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border-radius: 30px;
    transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

header .wrapper-nav .wrapper-boutons a span {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: normal;
    transform: translateY(0);
    opacity: 1;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
header .wrapper-nav .wrapper-boutons a:hover span {
    transform: translateY(10px);
    opacity: 0;
}

header .wrapper-nav .wrapper-boutons a.home figure {
    background-image: url('../media/img/ico-home.png');
}
header .wrapper-nav .wrapper-boutons a.home:hover figure {
    
}
header .wrapper-nav .wrapper-boutons a.close figure {
    background-image: url('../media/img/close-blanc.png');
}
header .wrapper-nav .wrapper-boutons a.close:hover figure {
    
}

header.open .wrapper-nav {
    height: 100vh;
}

header .wrapper-nav .overlay {
	position: absolute;
	width:100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	top: 0;
	left: 0;
    z-index: 1;
}

header .wrapper-nav nav {
	
}




header .wrapper-subnav {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: rgba(255,255,255,0.98);
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.10);
}



header .wrapper-subnav .close {
    position: absolute;
    right: 35px;
    top: 120px;
    width: 15px;
    height: 15px;
    text-decoration: none;
    display: block;
    z-index: 2;
    /*
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/img/close-blanc.png");
    */
    cursor: pointer;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    transition-delay: 0ms;
}


.wrapper-subnav.open .close {
    opacity: 1;
    transition-delay: 1500ms;
}


header .wrapper-subnav .close i {
    font-size: 20px;
}

.wrapper-subnav .submenu {
    display: block;
    /*height: auto;*/
    height: 0;
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 100ms;
    box-sizing: border-box;  
    position: relative;
    z-index: 2;
}

.wrapper-subnav .submenu.open {
    height: 900px;
    transition: all 600ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 200ms;
}

.wrapper-subnav #submenu-6.open {
    height: 600px;
}


.sommaire .wrapper-subnav .submenu.open {
    height: auto;
}


.wrapper-subnav .submenu nav {    
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 140px;
    padding-bottom: 0px;
}

.sommaire .wrapper-subnav .submenu nav {
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}


.wrapper-subnav .submenu nav .item {
    display: block;
    box-sizing: border-box;
    width: 25%;
    padding: 25px;
    transition: all 350ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
    transform: translateY(20px);
}

.wrapper-subnav .submenu.open nav .item {
    opacity: 1;
    transform: translateY(0);
}


.wrapper-subnav .submenu.open nav .item:nth-of-type(1) {
    transition-delay: 700ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(2) {
    transition-delay: 750ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(3) {
    transition-delay: 800ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(4) {
    transition-delay: 850ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(5) {
    transition-delay: 900ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(6) {
    transition-delay: 950ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(7) {
    transition-delay: 1000ms;
}
.wrapper-subnav .submenu.open nav .item:nth-of-type(8) {
    transition-delay: 1050ms;
}



.wrapper-subnav .submenu nav .item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    color: var(--noirmat);
    row-gap: 10px;
}


.wrapper-subnav .submenu nav .item a:hover {
    color: var(--vert);
}

.wrapper-subnav .submenu nav .item a .legende {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    column-gap: 15px;
    font-family: "Quicksand";
    height: 60px;
    width: 100%;
}

.wrapper-subnav .submenu nav .item a .legende p {
    margin: 0;
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    display: block;
    line-height: normal;
    width: 100%;
}


.wrapper-subnav .submenu nav .item a figure {
    display: block;
    width: 100%;
    height: 220px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;

}

.wrapper-subnav .submenu nav .item a figure .overlay {
    top: auto;
    bottom: 0;
    left: 0;
    height: 0;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(255,255,255,0.85);
}

.wrapper-subnav .submenu nav .item a:hover figure .overlay {
    height: 100%;
    opacity: 1;
}

.wrapper-subnav .submenu nav .item a .arrow {
    display: block;
    width: auto;
    height: 10px;
    position: relative;
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-subnav .submenu nav .item a:hover .arrow {
    transform: translateX(10px);
}

.wrapper-subnav .submenu nav .item a .arrow img {
    display: block;
    width: auto;
    height: 100%;
}




header nav ul li.disabled {
	opacity: 0.2;
	cursor: not-allowed;
}

header nav ul li a {
	display: block;
	font-size: 14px;
	line-height: normal;
	text-decoration: none;
	padding: 10px;
    margin:0;
}

header nav ul li:hover {
	cursor: pointer;
}


/* ====================================== footer =========================== */

footer {

}

footer p {
	display: block;
	padding: 0;
	margin: 0;
}

footer .credits {
    font-size: 10px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 400;
    letter-spacing: 1px;
}

footer .credits p {
	display: inline-block;
}

footer .credits a {
	text-decoration: none;
    color: #FFF;
}

footer .credits a:hover {
    text-decoration: underline;
}

footer .small {
	font-size: 12px;
}

footer .adresse a {
	text-decoration: none;
}

footer .adresse a:hover {

}

/* ========================================= FORM ====================================================== */

form input[type=text],
form input[type=password],
form textarea
 {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}
form select
 {
	display: inline-block;
	margin: 0px;
	padding: 5px;
	border: 1px solid rgba(0,0,0,0.2);
	
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}

form input[type=submit] {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 10px;
	border: none;
	cursor:pointer;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 14px;
}




hr {
	display:block;
	height:1px;
	border:none;
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;
}

.ariane {
    
    padding: 30px 0;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    flex-wrap: nowrap;
    font-size: 11px;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ariane a {
    display: block;
    text-decoration: none;
}
.ariane a:hover {
    text-decoration: underline;
}

.ariane .sep {
    display: block;
}

.ariane strong {
    color: rgba(27,27,29, 1);
    font-weight: 600;
}
.ariane .libelle {
    display: block;
}

/* ============================================ SLIDER =================================================== */


.slick-dotted.slick-slider {
	margin-bottom:0;
}
/*
.slick .slick-list,
.slick .slick-track {
	height:100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.slick .slide {
	display:block;
	position:relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}
.slick .slide .legende {
	position:absolute;
	right:0px;
	top:30%;
	width:50%;
}

.slick .slide img {
	display:block;
	width:100%;
	height:auto;
}

.slick .slick-arrow {
	width:40px;
	height:40px;
	background-size:contain;
	background-repeat: no-repeat;
	opacity:0.8;
	transition: all 0.2s ease-in-out;
}

.slick .slick-arrow:hover {
	opacity:1;
}

.slick .slick-arrow::before {
	display:none;
}

.slick .slick-next {
	right:20px;
	z-index:1000;
	background-image: url(../media/img/arrow_right.png);
	background-position:center center;
}
.slick .slick-next:hover {
	right:15px;
}

.slick .slick-prev {
	left: 20px;
	z-index: 1000;
	background-image: url(../media/img/arrow_left.png);
	background-position: center center;
}

.slick .slick-prev:hover {
	left: 15px;
}
*/

.slick .slick-dots {
	bottom:0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 35px;
}

.slick .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}
.slick .slick-dots li button {
	background-color: rgba(0,0, 0,0.1);
	border-radius: 12px;
	width: 12px;
	height: 12px;
	transition: all 0.2s ease-in-out;
    padding: 0;
}
.slick .slick-dots li.slick-active button,
.slick .slick-dots li button:hover{
	background-color: rgba(0, 0, 0, 0.3);
}

.slick .slick-dots li button::before {
	display: none;
}

/* =========================== PADDING / MARGIN ============================== */


/* ========================================= MAP ============================== */

.map {
	display: block;
	width: 100%;
	height: 600px;
}

/* ========================================= PARALLAX ============================== */

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax img {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ========================================= TOOLTIP  ========================== */

.tooltipster-sidetip.tooltipster-custom .tooltipster-box {
	background-color: transparent;
	border: none;
	border-radius: 0;
	/*box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);*/
}

.tooltipster-sidetip.tooltipster-custom .tooltipster-content {
	color: #FFF;
	font-size: 12px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 0;
	text-align: center;
}

/* ======================================= MASONRY ============================= */



.wrapper-item-sizer,
.wrapper-item {
	width: 33%;
}

.wrapper-item a {
	/*cursor: pointer;*/
	/*text-decoration: none;*/
	border-bottom: solid 1px rgba(255,255,255,0.1);
	padding-bottom: 30px;
	padding-top: 30px;
}
.wrapper-item a:hover {

}
.wrapper-item a figure {
	margin-bottom: 20px;
}
.wrapper-item a h2 {
	font-size: 30px;
	line-height: normal;
	margin-bottom: 20px;
	text-align: left;
}
.wrapper-item a p {
	font-size: 14px;
	line-height: normal;
	text-align: justify;
	line-height: 25px;
}
.wrapper-item a .link {
	margin-top: 15px;
	display: block;
	text-align: center;
}
.wrapper-item a .link:hover {

}
.wrapper-item a p.date {
	font-size: 13px;
}

/* ======================================= FANCYBOX ============================= */

.fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right : 0;
  height: 95px;
  padding: 10px 10px 5px 10px;
  
  background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}

/* =================================== SLIDER HOME =============================== */

.wrapper-slider{
    height: 70vh;
    margin: 0 25px;
}

#progress {
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 0;
	background-color: rgba(255,255,255,1);
    opacity: 0;
}

.arrow-down-loop {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 4;
    left: 0;
    display: flex;
    flex-direction: column;    
    align-items: center;
    justify-content: flex-end;
    height: 0;
    overflow: visible;
    opacity: 0;
}


.bandeau .arrow-down-loop,
.arrow-down-loop.active {
    opacity: 1;
}

.bandeau .arrow-down-loop {
    position: relative;
    height: auto;
}


.arrow-down-loop a {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 10px;
    text-decoration: none;
}

.arrow-down-loop a span {
    display: block;
    font-size: 10px;
    line-height: normal;
    font-weight: 500;
    letter-spacing: 1px;
}

.arrow-down-loop .arrow-down {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--vert);
    transform: translateY(32px);
    
}

.arrow-down-loop .arrow-down .bulle {
    display: block;
    position: relative;
    width: auto;
    width: 40px;
    height: 40px; 
    margin-left: auto;
    margin-right: auto;
    animation: loopBottom 1s infinite alternate;
    transform: translateY(0px);
    background-image: url('../media/img/arrow-down-blanc.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    z-index: 2;
}

.arrow-down-loop .arrow-down .vline {
    display: block;
    position: absolute;
    z-index: 1;
    width: 1px;
    height: 100%;
    background-color: #fff;
}


@keyframes loopBottom {
    from {
        transform: translateY(10px);
    }
} 





.preloader {
    display: none;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    top: 50%;
    position: relative;
}
.preloader.active {
    display: flex;
}

.preloader span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 100%;
    animation: bounce 1.5s 0.5s linear infinite;
}
.preloader span:nth-of-type(1) {
    animation-delay: 0.1s;
}
.preloader span:nth-of-type(2) {
    animation-delay: 0.2s;
}
.preloader span:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
	0%, 50%, 100% {
		transform: scale(1);
	}
	25% {
		transform: scale(0.6);
	}
	75% {
		transform: scale(1.4);
	}
}

.wrapper-produits .preloader {
    display: flex;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: all 250ms ease-in-out;
}
.wrapper-produits .preloader.active {
    z-index: 3;
    opacity: 1;
}

.wrapper-slider .vague {
    display: block;
    position: absolute;
    z-index: 3;
    bottom: 0;
    width: 100%;
    height: 0;
    overflow: visible;
}

.wrapper-slider .vague img {
    display: block;
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: auto;
}



#slider_homepage {
	width: 100%;    
}

#slider_homepage .owl-item {
	height: 70vh;
}
#slider_homepage .owl-item .slide {
	height: 100%;
	position: relative;
	width: 100%;
	
}
#slider_homepage .owl-item .slide .main {
    display: block;
    width: 100%;
    height: 100%;
}
#slider_homepage .owl-item .slide .overlay {
	width: 100%;
	height: 100%;
    opacity: 0;
    transition: opacity 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}


#slider_homepage .owl-item .slide.filter-noir-40 .overlay {
    background-color: rgba(116,116,116,0.4);
    mix-blend-mode: multiply;
}


#slider_homepage.owl-loaded .owl-item .slide.filter-noir-30 .overlay {
    background-color: rgba(0, 0, 0, 0.3);
}
#slider_homepage.owl-loaded .owl-item .slide.filter-noir-20 .overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

#slider_homepage.owl-loaded .owl-item.active .slide .overlay {
    opacity: 1;
}

#slider_homepage .owl-item .slide .legende {
	
	overflow: hidden;
    display: flex;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#slider_homepage .owl-item .slide .legende .content {
	position: relative;
	padding:0;
	display: block;
	width: auto;
}

#slider_homepage .owl-item .slide .legende .content p {
	display: block;
	margin:0;
}

/* anims slide texte */

#slider_homepage .owl-item .slide.texte .legende .content p {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    color: #FFF;
}
#slider_homepage .owl-item .slide .texte .legende .content p:nth-of-type(1) {

    transition-delay: 0ms;
    transform: translateY(-30px);
    margin-bottom: 50px;
}
#slider_homepage .owl-item.active .slide .texte .legende .content p:nth-of-type(1) {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1000ms;
}
#slider_homepage .owl-item .slide .texte .legende .content p:nth-of-type(2) {
    
    line-height: normal;
    color: #FFF;
    transition-delay: 0ms;
    transform: translateY(30px);
}
#slider_homepage .owl-item.active .slide .texte .legende .content p:nth-of-type(2) {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1200ms;
}
#slider_homepage .owl-item .slide .texte .legende  p.lien {
    opacity: 0;
    transition-delay: 0ms;
    transform: translateY(50px);
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage .owl-item.active .slide .texte .legende p.lien {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 1700ms;
}


/* anim slide logo */

#slider_homepage .owl-item .slide.logo .legende .content figure {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
    transform: translateY(-10%);
}
#slider_homepage .owl-item.active .slide.logo .legende .content figure {
    opacity: 1;
    transition-delay: 1500ms;
}
#slider_homepage .owl-item .slide.logo .legende .content figure img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* anim slide texte gauche */

#slider_homepage .owl-item .slide.txt-left .legende {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


#slider_homepage .owl-item .slide.txt-left .legende .content {
    
    width: 50%;
    text-align: center;
    background-image: url('../media/img/logo-signe-blanc-80.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(1) {
    font-size: 55px;
    font-family: "Chillax";
    font-weight: 300;
    line-height: 60px;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 10px;
    letter-spacing: 4px;
    color: rgb(223,156,139);
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#slider_homepage.owl-loaded .owl-item.active .slide.txt-left .legende .content p:nth-of-type(1) {
    opacity: 1;
    transition-delay: 1100ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(2) {
    font-size: 14px;
    font-family: "Chillax";
    font-weight: 400;
    line-height: normal;
    transition-delay: 0ms;
    transform: translateY(0px);
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: rgb(27,27,27);
    text-transform: uppercase;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(2) {
    opacity: 1;
    transition-delay: 1200ms;
}

#slider_homepage .owl-item .slide.txt-left .legende .content p:nth-of-type(3) {
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

#slider_homepage .owl-item.active .slide.txt-left .legende .content p:nth-of-type(3) {
    opacity: 1;
    transition-delay: 1400ms;
}

/* --------------- */

#slider_homepage .owl-nav {
	height: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 2;
	
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

#slider_homepage:hover .owl-nav {
	opacity: 1;
}
#slider_homepage .owl-nav button {
	font-size: 0;
	line-height: 0;
	width: 40px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	display: block;
	padding: 10px;
}
#slider_homepage .owl-nav .owl-prev {
	float: left;
	/*background-image: url(../media/img/arrow-left-blanc.png);*/
}
#slider_homepage .owl-nav .owl-next {
	float: right;
	/*background-image: url(../media/img/arrow-right-blanc.png);*/

}
#slider_dots {
	position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    column-gap: 15px;
	bottom: 80px;
	width: 100%;
	z-index: 4;
}
#slider_dots button {
	display: block;
	border: solid 1px #FFF;
	background-color: transparent;
	width: 12px;
	height: 12px;
    border-radius: 100%;
    cursor: pointer;
}
#slider_dots button.active {
	background-color: #FFF;
}


.promo {
	display: block;
}
.promo p {
	margin: 0;
    line-height: normal;
    display: block;
}
.promo .link {
    padding: 7px 10px;
    margin-left: 10px;
}



/* galeries isotope */

.filters a,
.filters .sep {
    display: inline-block;
    color: rgb(27,27,26);
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    padding: 5px 10px 5px 15px;
}

.filters a {
    cursor: pointer;
}
.filters a:hover {
    color: var(--vertmoyen);
}
.filters a.up {
    color: var(--vert);
}

.filters .sep {
    color: var(--vert);
}

.grid .item a
 {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.grid .item a figure {
    display: block;
    height: 400px;
    margin-bottom: 25px;
}

.grid .item a .overlay {
    background-color: rgba(255,255,255,0.9);
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
}

.grid .item a:hover .overlay {
    opacity: 1;    
}

.grid .item a .overlay span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.grid .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}

.grid .item a h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: normal;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.grid .item a p {
    font-size: 12px;
    letter-spacing: 4px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
}


.wrapper-masonry {
	
}

.masonry::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../media/img/loader.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;   
}
.masonry.complete::before {
    display: none;
}

.masonry .item {
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
}
.masonry.complete .item {
    opacity: 1;
}

.masonry .item a {
    display: block;
    width: 100%;
    height: auto;
}

.masonry .item a img {
    display: block;
    width: 100%;
    height: auto;
}

.masonry .item a figure {
    position: relative;
}

.masonry .item a figure .overlay {
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255,255,255,0.85);
    opacity: 0;
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry .item a:hover figure .overlay {
    opacity: 1;
}

.masonry .item a figure .overlay span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
.masonry .item a:hover figure .overlay span {
    transition-delay: 400ms;
    opacity: 1;
}





/* grid de 6 coionnes  */
.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 140px;
    gap: 30px;
}

.grid-container .item {
    position: relative;
    grid-column: auto / span 2;
    grid-row: auto;
    padding: 0;
    
}

.grid-container .item a {
    display: block;
    width: 100%;
    height: 100%;
    
    position: relative;
}

.grid-container .item a figure {
    display: block;
    width:100%;
    height: 100%;
    /*height: 400px;*/
    
}

.grid-container .item a .overlay {
    opacity: 0;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.grid-container .item a:hover .overlay {
    opacity: 1;
}

.grid-container .item a .overlay span {
    font-size: 11px;
    line-height: normal;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
    color:#FFF;
    background-color: var(--vert);
    border-radius: 30px;
    padding: 10px 30px;
}

.grid-container .item a:hover .overlay span {
    opacity: 1;
    transition-delay: 400ms;
}


.grid-container .item.w-1 {
    grid-column: auto / span 1;
}
.grid-container .item.w-2 {
    grid-column: auto / span 2;
}
.grid-container .item.w-3 {
    grid-column: auto / span 3;
}
.grid-container .item.w-4 {
    grid-column: auto / span 4;
}
.grid-container .item.w-5 {
    grid-column: auto / span 5;
}
.grid-container .item.w-6 {
    grid-column: auto / span 6;
}
.grid-container .item.w-7 {
    grid-column: auto / span 7;
}
.grid-container .item.w-8 {
    grid-column: auto / span 8;
}
.grid-container .item.w-9 {
    grid-column: auto / span 9;
}
.grid-container .item.w-10 {
    grid-column: auto / span 10;
}


.grid-container .item.h-1 {
    grid-row: auto / span 1;
}
.grid-container .item.h-2 {
    grid-row: auto / span 2;
}
.grid-container .item.h-3 {
    grid-row: auto / span 3;
}
.grid-container .item.h-4 {
    grid-row: auto / span 4;
}
.grid-container .item.h-5 {
    grid-row: auto / span 5;
}
.grid-container .item.h-6 {
    grid-row: auto / span 6;
}
.grid-container .item.h-7 {
    grid-row: auto / span 7;
}
.grid-container .item.h-8 {
    grid-row: auto / span 8;
}
.grid-container .item.h-9 {
    grid-row: auto / span 9;
}

figure.lazy {
    background-image: none !important;
}


figure > .placeholder {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(230,230,230);
    z-index: 0;
    transition: all 400ms ease-in-out;
    opacity: 0;
}

figure.lazy > .placeholder {
    opacity: 1;
    z-index: 2;
}


#presse article {
    padding: 50px;
    background-color: var(--grispale);
    border-bottom: solid 1px rgba(0,0,0,0.1);
}

#presse article:last-of-type {
    border-bottom: none;
}


#presse article .wrapper,
#blog article a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    column-gap: 50px;
    color: var(--gris);
}

#presse article .wrapper figure,
#blog article a figure {
    display: block;
    width: 200px;
    height: 200px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    flex-grow: 0;
    flex-shrink: 0;
    background-size: 80% auto;
    background-color: #fff;
    border-radius: 10px;
}

#presse article .wrapper .content h1 {
    font-size: 24px;
    font-weight: 700;
}


#presse article .wrapper .content .link i {
    margin-right: 7px;
}


#presse article .wrapper .content .link:hover {
    background-color: #fff;
    color: var(--vert);
}

#auth .wrapper {
	display:block;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

form p {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
    margin-top: 10px;
    column-gap: 10px;
}
form p.noflex {
    display: block;
}

form p span:first-of-type {
    width: 150px;
}

form p input[type=text],
form p input[type=date],
form p input[type=password],
form p select,
form p textarea
{
	display:block;
	padding:10px;
	border:solid 1px rgba(0, 0, 0, 0.1);
	width:100%;
	margin:0;
	 
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    flex: 1;
    
}

form p textarea {
    min-height: 100px;
}

form p input[type=submit]
{
	margin-bottom:0;
    border-radius: 30px;
    font-family: "Quicksand";
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

form h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.toggle-password {
    font-size: 16px;
    color: #1b1b1b;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: auto;
    cursor: pointer;
}

#auth h1 {
    margin-top: 25px;
    margin-bottom: 25px;
}

#scrollSentinelle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100px;
    visibility: hidden;
}

.policy h1 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 30px;    
    font-weight: normal;
}

.policy h2 {
    font-size: 20px;
    line-height: normal;
    margin-top: 50px;    
    font-weight: 700;
    color: var(--vert);
    text-transform: lowercase;
}

.wrapper-form .success {
    text-align: center;
    background-color: rgba(122, 207, 10, 0.3);
    padding: 50px;
}
.wrapper-form .success p {
    display: block;
    text-align: center;
}
.wrapper-form .success p:first-of-type {
    margin-top: 0;
}
.wrapper-form .success p:last-of-type {
    margin-bottom: 0;
}

#mentionslegales,
#rgpd {
    margin-top: 0;
}


.fancybox-slide--iframe .fancybox-content { 
    max-width: 900px !important;
}



.back {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50px;
    top: 50px;
    background-image: url('../media/img/ico-back.png');
    background-repeat: no-repeat;
    
    background-position: center;
    background-size: 50%;
    cursor: pointer;
    opacity: 0.4;
    z-index: 2;
    text-decoration: none;
    color: rgb(29,29,27);
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    border: solid 1px rgb(24,23,22);
    border-radius: 100%;
}

.back:hover {
    opacity: 1;
}

.back span {
    display: block;
    transform: translateX(70px);
    opacity: 0;
    position: relative;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: normal;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    top: 3px;
    white-space: nowrap;
}

.back:hover span {
    transform: translateX(50px);
    opacity: 1;
}


.bg-noir {
    background-color: var(--noir);
}
.bg-noirmat {
    background-color: var(--noirmat);
}
.bg-vert {
    background-color: var(--vert);
}
.bg-vertclair {
    background-color: var(--vertclair);
}
.bg-vertmoyen {
    background-color: var(--vertmoyen);
}
.bg-vertmed {
    background-color: var(--vertmed);
}
.bg-vertfonce {
    background-color: var(--vertfonce);
}
.bg-vertsombre {
    background-color: var(--vertsombre);
}
.bg-gris {
    background-color: var(--gris);
}
.bg-grisclair {
    background-color: var(--grisclair);
}
.bg-grispale {
    background-color: var(--grispale);
}
.bg-blanc-10 {
    background-color: var(--blanc-10);
}
.bg-blanc-20 {
    background-color: var(--blanc-20);
}

.b-noir {
    border-color: var(--noir);
}
.b-noirmat {
    border-color: var(--noirmat);
}
.b-vert {
    border-color: var(--vert);
}
.b-vertclair {
    border-color: var(--vertclair);
}
.b-vertmoyen {
    border-color: var(--vertmoyen);
}

.b-vertfonce {
    border-color: var(--vertfonce);
}
.b-vertsombre {
    border-color: var(--vertsombre);
}
.b-gris {
    border-color: var(--gris);
}
.b-grisclair {
    border-color: var(--grisclair);
}
.b-grispale {
    border-color: var(--grispale);
}


.f-noir {
    color: var(--noir);
}
.f-noirmat {
    color: var(--noirmat);
}
.f-vert {
    color: var(--vert);
}
.f-vertclair {
    color: var(--vertclair);
}
.f-vertmoyen {
    color: var(--vertmoyen);
}
.f-vertmed {
    color: var(--vertmed);
}
.f-vertfonce {
    color: var(--vertfonce);
}
.f-vertsombre {
    color: var(--vertsombre);
}
.f-gris {
    color: var(--gris);
}
.f-grisclair {
    color: var(--grisclair);
}
.f-grispale {
    color: var(--grispale);
}


.titre h2,
.titre h1 {
    font-size: 45px;
    line-height: 45px;
}

.titre.medium h2 {
    font-size: 36px;
    line-height: 40px;
}

.titre.small h2 {
    font-size: 32px;
    line-height: 35px;
}

.titre.extrasmall h2 {
    font-size: 28px;
    line-height: 35px;
}

.titre h3 {
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
}

.link {
    font-size: 15px;
    line-height: normal;
    font-weight: 400;
    font-family: "Quicksand";
}

#intro .titre h1 {
    font-size: 35px;
}

#intro .visuel .libellule {
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 80px;
    transform: rotate(40deg);
    height: auto;
    z-index: 3;
    offset-rotate: auto;
    offset-path: path("m 59.13 720.7 c 15.4994 -1.2038 85.3222 -8.1259 135.2815 -67.1141 c 51.6146 -60.7939 84.7202 -155.7468 -69.0703 -297.3485 c -91.9433 -84.7202 -82.6135 -130.6166 -77.3467 -150.179 c 18.9605 -72.6818 113.0105 -132.5729 163.7222 -156.4992");
    animation: move 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 1500ms;    
}

#intro .visuel .libellule img {
    display: block;
    position: relative;
}

#intro .visuel .bshape {
    
}

#intro .visuel .bshape .b {
    display: block;
    position: relative;
    z-index: 1;
}

#intro .visuel .bshape .line {
    display: block;
    position: absolute;
    z-index: 2;
    left: 30px;
    width: 216px;
    bottom: 0;
    overflow: hidden;
}

#intro .visuel .bshape .line img {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    width: 216px;
    height: auto;
}

.frise-herbe {
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
    background-image: url('../media/img/frise-herbe.png');
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: contain;
    image-rendering: optimizeQuality;
}

.frise-herbe.vert {
    background-image: url('../media/img/frise-herbe-vert.png');
}

.frise-herbe.blanc {
    background-image: url('../media/img/frise-herbe-blanc.png');
}
.frise-herbe.vertfonce {
    background-image: url('../media/img/frise-herbe-vertfonce.png');
}

.frise-herbe .lib-1 {
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 300px);
    width: 30px;
    height: 0;
    z-index: 1;
    transform: rotate(-0deg);
    offset-rotate: reverse;
    offset-rotate: 0deg;
    offset-rotate: auto;
    offset-path: path("M18.45,58.46s52.87-70.07,101.25-.75,101.75-6.23,101.75-6.23S246.38,5.59,165.33,9.08s-15,71.57-94.51,74.56S18.45,58.46,18.45,58.46Z");
    animation: move 6s linear infinite;
    animation-delay: 2000ms;


}
.frise-herbe .lib-2 {
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 80px);
    width: 30px;
    height: 0;
    z-index: 2;
    offset-rotate: reverse;
    offset-rotate: 0deg;
    offset-rotate: auto;
    offset-path: path("M18.45,58.46s52.87-70.07,101.25-.75,101.75-6.23,101.75-6.23S246.38,5.59,165.33,9.08s-15,71.57-94.51,74.56S18.45,58.46,18.45,58.46Z");
    animation: move 5s linear infinite;
    animation-delay: 1000ms;
}
.frise-herbe .lib-3 {
    display: block;
    position: absolute;
    top: -60px;
    left: calc(50% + 250px);
    width: 30px;
    height: 0;
    z-index: 3;
    transform: rotate(-10deg);

    offset-rotate: reverse;
    offset-rotate: 0deg;
    offset-rotate: auto;
    offset-path: path("M18.45,58.46s52.87-70.07,101.25-.75,101.75-6.23,101.75-6.23S246.38,5.59,165.33,9.08s-15,71.57-94.51,74.56S18.45,58.46,18.45,58.46Z");
    animation: move 5s linear infinite;
}

@keyframes move {
    to {
        offset-distance: 100%;
    }
}


.titre.has-ico {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 20px;
}

.titre.has-ico .ico {
    display: block;
    width: 60px;
    height: auto;
}

.titre .ico {
    width: 50px;
    offset-rotate: reverse;
    offset-rotate: 0deg;
    offset-rotate: auto;
    offset-path: path("m 188.9 -30 c 6.7 24.3 -62.1 77.7 -100 61.7 c -15.2 -6.4 -12.2 -18.4 -27.9 -28.3 c -42 -26.2 -106.6 31.8 -127.9 10.8 c -10.1 -10 -3.8 -31.3 0 -44.2 c 7.3 -24.7 27.4 -51 53.8 -57.3 c 23.5 -5.6 36.7 8.3 74 23.8 c 77.7 32.2 122.9 14.7 128 33.5 z");
    animation: move 6s linear infinite;
}

.titre .ico img {
    display: block;
    transform: rotate(30deg);
}


#typesdeclients .wrapper-items {
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    column-gap: 40px;
}

#typesdeclients .wrapper-items .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 25px;
    background-color: #FFF;
    padding: 50px 40px 60px 40px;
    border-radius: 100px;
    flex-grow: 0;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.10);
    flex-shrink: 1;
}

#typesdeclients .wrapper-items .item .ico {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background-size: auto 55%;
    background-position: center;
    background-repeat: no-repeat;
}

#typesdeclients .wrapper-items .item h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
    display: block;
    width: 100%;
    text-align: center;
}


#mesure .titre h2 {
    font-size: 40px;
}

#mesure .wrapper-content {
    align-items: center;
    justify-content: center;
}

#mesure .wrapper-content .appli {
    display: block;
    width: 33%;
    position: relative;
    z-index: 2;
}

#mesure .wrapper-content .dpe,
#mesure .wrapper-content .reporting {
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 300px;
    justify-content: center;
    position: relative;
    z-index: 1;
    /*transform: translateY(-40px);*/
}

#mesure .wrapper-content .dpe {

}

#mesure .wrapper-content .onglet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    text-decoration: none;
}

#mesure .wrapper-content .onglet .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 200;
    line-height: 0;
    background-color: #fff;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    color: var(--vertfonce);
    font-family: "Quicksand";
}

#mesure .wrapper-content .onglet .plus span {
    display: block;
    transform: rotate(0deg);
    transition: all 200ms cubic-bezier(0.65, 0, 0.35, 1);
}

#mesure .wrapper-content .onglet .plus:hover span {
    display: block;
    transform: rotate(180deg);
}


#mesure .wrapper-content .dpe .onglet {
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    padding-right: 50px;
    height: 100%;
    align-items: flex-end;
    position: relative;
    transform: translateX(25px);
    background-color: rgb(203,211,170);
}
#mesure .wrapper-content .reporting .onglet {
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    padding-left: 50px;
    height: 100%;
    align-items: flex-start;
    position: relative;
    transform: translateX(-25px);
    background-color: rgb(170,182,118);
}

#mesure .wrapper-content .dpe .onglet .lib {
    display: block;
    position: absolute;
    top: -120px;
    right: 250px;
    z-index: 2;
    width: 60px;
    height: auto;
    offset-rotate: reverse;
    offset-rotate: auto;
    offset-path: path("M18.45,58.46s52.87-70.07,101.25-.75,101.75-6.23,101.75-6.23S246.38,5.59,165.33,9.08s-15,71.57-94.51,74.56S18.45,58.46,18.45,58.46Z");
    animation: move 5s linear infinite;
    animation-delay: 1000ms;
}

#mesure .wrapper-content .dpe .onglet .lib img {
    display: block;
    transform: rotate(120deg);
}


#mesure .wrapper-content .reporting .onglet .lib {
    display: block;
    position: absolute;
    top: -30px;
    left: 60px;
    z-index: 2;
    width: 50px;
    height: auto;

    offset-rotate: reverse;
    offset-rotate: auto;
    offset-path: path("M18.45,58.46s52.87-70.07,101.25-.75,101.75-6.23,101.75-6.23S246.38,5.59,165.33,9.08s-15,71.57-94.51,74.56S18.45,58.46,18.45,58.46Z");
    animation: move 5s linear infinite;
}

#mesure .wrapper-content .reporting .onglet .lib img {
    display: block;
    transform: rotate(20deg);
}



#mesure .wrapper-content .onglet h3 {
    font-size: 28px;
    font-weight: 600;
}
#mesure .wrapper-content .onglet h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}


#carte .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#carte .wrapper-bandeau {
    
}

#carte .bandeau {
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    padding: 60px;
    padding-left: 110px;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    height: 250px;
}
#carte .wrapper-bandeau {
    display: block;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
}

#carte .bandeau .legende {
    position: absolute;
    z-index: 1;
}

#carte .bandeau .legende .titre h2 {
    font-size: 34px;
    line-height: normal;
    margin-bottom: 15px;
}

#carte .bandeau .legende .titre p {
    margin: 0;
}

#carte .france {
    display: block;
    position: absolute;
    z-index: 2;
    width: 500px;
    height: auto;
    transform: translateY(-20px);
    right: -80px;
}


.carousel.slick .slick-dots li button {
    background-color: var(--grispale);
}
.carousel.slick .slick-dots li.slick-active button {
    background-color: var(--grisclair);
}


.slick .slick-dots {
    margin-top: 50px;
    position: relative;
}

.carousel .slide {
    display: block;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


footer .wrapper-cols {
    justify-content: center;
    align-items: flex-end;
    border-bottom: solid 1px #FFF;
    width: auto;
}


footer .wrapper-cols .logo {
    display: block;
    width: 250px;
    height: auto;
}

footer .wrapper-cols .border-right {
    border-right: solid 1px #FFF;
}

footer .wrapper-cols .col ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: block;
}

footer .wrapper-cols .col ul li {
    display: block;
}

footer .wrapper-cols .col ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
}

footer .wrapper-cols .col ul li a:hover {
    text-decoration: underline;
}


footer .wrapper-cols .col h4 {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    text-align: right;
}

footer .wrapper-cols .col .social {
    justify-content: flex-end;
    column-gap: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

footer .wrapper-cols .col .social .ico i {

}


footer .wrapper-cols .col p {
    margin-top: 10px;
    margin-bottom: 10px;
}

footer .wrapper-cols .col .link.small {
    font-size: 13px;
    padding: 6px 12px;
    letter-spacing: 0;
}


footer .credits {
    
}

#realisations .slide {
    padding-left: 100px;
    padding-right: 100px;
}

#realisations .slide a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 40px;
    text-decoration: none;
    color: #FFF;
    opacity: 0.5;
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

#realisations .slick-active .slide a {
    opacity: 1;
}



#realisations .slide a .visuel {
    display: block;
    width: 500px;
    height: 500px;
    border: solid 1px transparent;
    padding: 20px;
    position: relative;
    border-radius: 100%;
}

#realisations .slick-active .slide a .visuel {
    border: solid 1px #FFF;
}


#realisations .slide a .visuel figure {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;   
    position: relative;
    overflow: hidden;
}

#realisations .slide a .visuel figure .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(153,153,147,0.5);
    mix-blend-mode: multiply;
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

#realisations .slide a:hover .visuel figure .overlay {
    opacity: 0;
}



#realisations .slide a .visuel figure .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    font-weight: 100;
    line-height: normal;
    text-align: center;
    color: #FFF;
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

#realisations .slick-active .slide a:hover .visuel figure .plus {
    opacity: 0;
}

#realisations .slick-active .slide a .visuel figure .plus {
    opacity: 1;
}



#realisations .slide a .caption {
    display: block;
    text-align: center;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(15px);
}
#realisations .slick-active .slide a .caption {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 800ms;
}



#realisations .slide a .caption h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}
#realisations .slide a .caption h4 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}

#realisations .wrapper-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;   
    z-index: 2;
    height: 0;
    overflow: visible;
    top: 250px;
}

#realisations .wrapper-arrows .arrow {
    display: block;
    width: auto;
    height: auto;
    position: relative;
    cursor: pointer;
    padding: 10px;
    
}

#realisations .wrapper-arrows .arrow-prev:hover img {
    transform: translateX(-10px);
}
#realisations .wrapper-arrows .arrow-next:hover img {
    transform: translateX(10px);
}


#realisations .wrapper-arrows .arrow img {
    display: block;
    height: 15px;
    width: auto;
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}


#realisations .carousel-real {
    z-index: 1;
}

section > .bandeau {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

section > .bandeau.large {
    height: 55vh;
}

.bandeau .titre {
    position: relative;
    z-index: 3;
}

.bandeau .titre h1 {
    font-size: 55px;
    line-height: normal;
}

.bandeau.large .titre {
    transform: translateY(-30px);
}

.bandeau.large .titre h1 {
    font-size: 50px;
}
.bandeau.large .titre h1 strong {
    font-size: 70px;
}

.bandeau.large .frise-herbe {
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.bandeau .underlay {
    display: block;
    position: absolute;
    z-index: 1;
    background-color: rgb(0,0,0,0.3);
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.rounded-right {
    overflow: hidden;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    height: 100%;
}
.rounded-left {
    overflow: hidden;
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    height: 100%;
}

.flex-stretch {
    align-items: stretch;
}

.chiffres {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.10);
    border-radius: 300px;
}

.chiffres.small {
    padding: 30px;
}

.chiffres.bg-vert {
    padding: 35px 70px;
    box-shadow: none;
}

.chiffres .chiffre {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    justify-content: center;
    border-right: solid 1px var(--grisclair);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.chiffres.small .chiffre {
    row-gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
}

.chiffres.bg-vert .chiffre {
    border-right: solid 1px #FFF;
}

.chiffres .chiffre:last-of-type {
    border-right: 0;
}

.chiffres .chiffre > span {
    display: block;
}

.chiffres .chiffre .large{
    font-size: 60px;
    font-family: "Quicksand";
    font-weight: 400;
}
.chiffres .chiffre .small{
    font-size: 22px;
    font-family: "Quicksand";
    font-weight: 600;
}


.chiffres.small .chiffre .large{
    font-size: 40px;
    font-family: "Quicksand";
    font-weight: 400;
}
.chiffres.small .chiffre .small{
    font-size: 16px;
    font-family: "Quicksand";
    font-weight: 600;
}




#eric .visuel .libellule {
    display: block;
    position: absolute;
    top: -115px;
    left: 155px;
    width: 100px;
    height: auto;
    z-index: 3;
}

#eric .visuel figure {
    position: relative;
    overflow: hidden;
}

#eric .visuel figure .main {
    display: block;
    position: relative;
    z-index: 1;
}

#eric .visuel figure .line {
    display: block;
    position: absolute;
    z-index: 2;
    left: 30px;
    width: 216px;
    bottom: 0;
}

#eric .visuel figure .line img {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    width: 216px;
    height: auto;
}

#eric .content ul {
    padding: 0;
    margin: 0;
}


#eric .content ul li {
    font-size: 18px;
    line-height: normal;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#eric .content ul li::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url('../media/img/libellule-blanc.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-grow: 0;
    flex-shrink: 0;
}

#dpe #chiffres {
    position: relative;
    z-index: 2;
}


#diags {
    position: relative;
    transform: translateY(-170px);
    margin-bottom: -170px;
    z-index: 1;
}

#diags .top,
#diags .bottom,
.trames {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    column-gap: 35px;
}
#diags .top {
    padding-bottom: 60px;
}
#diags .bottom {
    padding-top: 60px;
}

#diags hr {
    border-top: dotted;
    border-color: var(--grisclair);
    margin: 0 auto;
    width: 827px;
}



.pastille {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.10);
    background-color: #fff;
}

.pastille.main {
    display: flex;
    flex-direction: column;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 0px;
    width: 230px;
    height: 230px;
    position: relative;
}

.pastille.main h3 {
    font-size: 50px;
    line-height: normal;
    font-weight: 600;
    color: #4e566a;
}

.pastille.main p {
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    color: var(--noirmat);
    margin: 0;
}

.pastille.main::after {
    content: "";
    display: block;
    height: 60px;
    border: none;
    border-left: dotted;
    border-color: var(--grisclair);
    position: absolute;
    bottom: -60px;
}

#diags .pastille.diag::before {
    content: "";
    display: block;
    height: 60px;
    border: none;
    border-left: dotted;
    border-color: var(--grisclair);
    position: absolute;
    top: -60px;
}

.pastille.diag {
    padding: 30px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 100px;
    width: 170px;
    height: auto;
    min-height: 280px;
    position: relative;
}

.trames .pastille.diag {
    width: 190px;
    height: 320px;
    row-gap: 15px;
    padding: 20px;
    padding-top: 30px;
}

.pastille.diag .ico {
    display: block;
    width: 110px;
    height: 110px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 60px;
    border-radius: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.trames .pastille.diag .ico {
    width: 120px;
    height: 120px;
}


.pastille.diag h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
}

.trames .pastille.diag p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}


#projection figure {
    image-rendering: optimizeQuality;
}

body > section {
    margin-top: 100px;
}


.projets {
    flex-wrap: wrap;
}

.projets .item {
    padding: 30px;
}

.projet a {
    display: block;
    text-decoration: none;
    color: var(--noirmat);
}

.projet a .main {
    display: block;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.projet a .main .encart {
    background-color: #fff;
    width: 70%;
    height: 100px;
    border-top-right-radius: 70px;
    position: absolute;
    bottom: -50px;
    left: 0;
    display: block;
    z-index: 2;
}


.projet a .legende {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    transform: translateY(-15px);
    position: relative;
    z-index: 2;
    column-gap: 10px;
}

.projet a .legende .libellule {
    display: block;
    width: 36px;
    height: 36px;
    flex-grow: 0;
    flex-shrink: 0;
    background-image: url('../media/img/lib-vert.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.projet a .legende .arrow {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background-color: var(--vert);
    background-image: url('../media/img/arrow-right-blanc.png');
    background-repeat: no-repeat;
    background-size: 75% auto;
    background-position: left center;
    border-radius: 100%;
    transform: translate(-10px, 40px);
}

.projet a .legende .titre {
    display: block;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
}

.projet a .legende .titre h1 {
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.projet a .legende .titre h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

#projet .titre .logo {
    display: block;
    margin: 35px auto;
    width: 180px;
}

#projet .tools {
    justify-content: center;
    align-items: stretch;
}

#projet .tools .vline {
    height: auto;
    flex-grow: 0;
    flex-shrink: 0;
    width: 1px;
    background-color: var(--grisclair);
}

#projet .tools .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 15px;
    text-decoration: none;
    width: 200px;
    height: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

#projet .tools .item .ico {
    display: block;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#projet .tools .item .libelle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.bg-lib-trajectoire {
    background-image: url('../media/img/lib-trajectoire.png');
    background-repeat: no-repeat;
    background-position: calc(50% - 450px) bottom;
    background-size: auto 700px;
}
.bg-lib-trajectoire-alt {
    background-image: url('../media/img/lib-trajectoire-alt.png');
    background-repeat: no-repeat;
    background-position: 100% top;
    background-size: auto 100%;
}
.bg-lib-trajectoire-ter {
    background-image: url('../media/img/lib-trajectoire-ter.png');
    background-repeat: no-repeat;
    background-position: calc(50% + 450px) top;
    background-size: auto 100%;
    display: block;
    position: absolute;
    z-index: 2;
    top: -200px;
    right: 0;
    width: 100%;
    height: 600px;

}

#apropos .bg-lib-trajectoire {
    background-position: calc(50% - 350px) 50px;
    background-size: auto 650px;
}

#apropos #presentation {
    z-index: 3;
}
#apropos #eric .logos figure {
    padding: 10px;
    background-color: #fff;
}


header .wrapper-menu .mainbar.alt .logo {
    position: relative;
    width: 250px;
    z-index: 1;
}

header .wrapper-menu .mainbar.alt nav:nth-of-type(1) {
    padding-right: 0;
}

header .wrapper-menu .mainbar.alt nav {
    position: relative;
    z-index: 2;
}


.hiddenbloc {
    display: none;
}



#clients .presentation .titre h2 {
    font-size: 30px;
    line-height: normal;
}

.programmes hr,
.clients hr,
.presentation hr {
    background-color: var(--grispale);
    margin-top: 40px;
    margin-bottom: 40px;
}


#clients #client-centre.bg-lib-trajectoire {
    background-position: calc(50% - 250px) 40px;
}

#contact .adresse p .tel {
    font-size: 28px;
    line-height: normal;
}

#contact .adresse p strong {
    font-weight: 600;
    font-family: "Quicksand";
}

#contact .presentation .titre h2 {
    font-size: 20px;
    line-height: normal;
}

.content .video {
    display: block;
    width: 100%;
    height: auto;
}

#enjeux .titre.medium h2 {
    font-size: 30px;
}
#enjeux .titre.medium h2 strong {
    font-size: 36px;
}


.content p:first-child {
    margin-top: 0;
}
.content p:last-child {
    margin-bottom: 0;
}


.sommaire.bg-lib-trajectoire {
    background-position: calc(50% - 550px) 50px;
    background-size: auto 650px;
}

.sommaire .submenu .item.up {
    display: none;
}

.flex-end {
    align-items: flex-end;
}


#ecogestion .bg-lib-trajectoire {
    background-position: calc(50% - 100px) 50px;
    background-size: auto 650px;
}

.content p a:not(.link) {
    color: var(--vert);
}


.slick-slider .slide a figure.border {
    border-color: rgba(0, 0, 0, 0.1);
    background-color: #FFF;
}

.slick-slider .slide a:hover figure.border {
    border-color: rgba(0, 0, 0, 0.3);
}

.slick-slider .slide a:hover figure {
    opacity: 0.8;
}


#conception .presentation.bg-lib-trajectoire {
    background-position: calc(50% - 350px) 50px;
    background-size: auto 650px;
}


.content h3 {
    font-size: 22px;
}

.content ul {
    padding-left: 15px;
}

.content ul li {
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.content ul li::marker {
    color: var(--vert);
}


#conception .photos a {
    display: block;
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
}

#conception .photos a figure {
    height: 250px;
    width: 100%;
}

#conception #eric ul li {
    font-size: 16px;
}

/*

.demarche .item {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 50px;
}

.demarche .item .content p {
    font-size: 14px;
    line-height: 23px;
}

.demarche .item .content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.demarche .item .content span.ico {
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;

}

.demarche .item .content span.ico i {
    font-size: 30px;
    line-height: normal;
    width: 100%;
    text-align: center;
}
*/


/*
.demarche .item {
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.demarche .item .visuel {
    display: block;
}

.demarche .item .onglet {
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 70px;
}

.demarche .item.flex-row-reverse .onglet {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    padding-left: 70px;
    padding-right: 50px;
}


.demarche .item .onglet .content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.demarche .item .onglet .content p {
    font-size: 14px;
    line-height: 22px;
}
*/


#label .content p {
    font-size: 17px;
    font-weight: 400;
}


#label .label {
    background-position: calc(50% - 100px) top;
}

#label .video .titre h2,
#label .label .titre h2 {
    font-size: 35px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 15px;
}
#label .video .titre h2 strong,
#label .label .titre h2 strong {
    font-size: 54px;
    line-height: 54px;
    font-weight: 600;
}

#label .label .titre h3 {
    font-size: 23px;
}

#label .label .titre h3::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background-color: var(--vertfonce);
    margin-top: 25px;
}

#label .label .visuel figure:nth-of-type(2) {
    transform: translateY(-25px);
}
#label .label .visuel figure:nth-of-type(1) {
    transform: translateY(25px);
}

#label .video {
    overflow: hidden;
}

#label .video .content {
    position: relative;
    z-index: 3;
}

#label .video .content a {
    display: block;
    overflow: hidden;
    border-radius: 30px;
    color: #FFF;
}

#label .video .rond {
    display: block;
    position: absolute;
    z-index: 1;
    mix-blend-mode: multiply;
    border-radius: 100%;
}

#label .video .rond:nth-of-type(1) {
    width: 400px;
    height: 400px;
    left: calc(50% - 800px);
    bottom: -200px;
}
#label .video .rond:nth-of-type(2) {
    width: 350px;
    height: 350px;
    left: calc(50% - 600px);
    bottom: -250px;
}


#label .video .content a .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 250ms ease-in-out;
}

#label .video .content a:hover .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

#label .video .content a .overlay .legende {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
}


#label .video .content a .overlay span {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    z-index: 3;
}
#label .video .content a .overlay img {
    width: 60px;
    height: auto;
    display: block;
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}

#label .video .content a:hover .overlay img {
    transform: scale(1.1);
}


#label .valeur {
    padding-bottom: 250px;
}

#label .valeur h2 {
    font-size: 30px;
    line-height: normal;
    font-weight: 500;
}


#label .valeur .shape-right {
    display: block;
    position: absolute;
    z-index: 2;
    right: -30px;
    bottom: -50px;
    width: 120px;
    height: 200px;
    border-radius: 30px;
    border-bottom-right-radius: 70px;
    background-color: var(--vertmed);
    mix-blend-mode: multiply;
}

#label .apave {
    transform: translateY(-220px);
    background-color: #fff;
    margin-bottom: -160px;
}

#label .vision .shape-left {
    background-color: var(--vertmed);
}
#label .vision .shape-right {
    background-color: var(--vertmed);
}


#label .vision .titre h2 {
    font-size: 35px;
    line-height: normal;
}

#label .vision .titre h2 strong {
    font-size: 50px;
    line-height: 50px;
}

#label .vision .titre h3 {
    font-size: 18px;
    line-height: normal;
}  

#label .vision .titre hr {
    margin-top: 35px;
    margin-bottom: 35px;
    margin-left: 0;
    margin-right: auto;
    height: 1px;
    background-color: #fff;
    width: 150px;
}

#label .logos .titre h2 {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 15px;
}
#label .logos .titre h2 strong {
    font-size: 50px;
    line-height: normal;
}

#label .logos .titre h3 {
    font-size: 18px;
    line-height: normal;
}

#label .logo.or {
    color: #b79c00;
}

#label .logo.argent {
    color: #505050;
}

#label .logo.bronze {
    color: #96450b;
}

#label .logo p::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#label .logo.bronze p::before {
    background-color: #96450b;
}
#label .logo.argent p::before {
    background-color: #505050;
}
#label .logo.or p::before {
    background-color: #b79c00;
}


#label .logo p {
    font-size: 16px;
    font-weight: 400;
}

#label .logo {
    text-align: center;
}


#label .logo figure img {
    display: block;
    width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#label .logo figure figcaption {
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

#label #reassurance {
    height: 700px;
}

#label #reassurance .underlay {
    background-color: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

#label #reassurance .overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
#label #reassurance .overlay .titre h3 {
    font-size: 32px;
    font-weight: 400;
}
#label #reassurance .overlay .titre h3 strong {
    font-weight: 700;
}
#label #reassurance .overlay .titre .lib {
    width: 70px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#label #reassurance .overlay .link:hover {
    background-color:#FFF;
    color: var(--vertmed);
}


.labellisez .content ul {
    padding: 0;
    margin: 0;
}


.labellisez .content ul li {
    font-size: 16px;
    line-height: normal;
    list-style-type: none;
    flex-direction: row;
    column-gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.labellisez .content ul li strong {
    font-weight: 600;
}


#monitoring .items {
    row-gap: 15px;
}

#monitoring .items .item {
    display: block;
    padding: 25px;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.7);
    cursor: pointer;
}

#monitoring .items .item h3 {
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    color: var(--vertfonce);
}
#monitoring .items .item h3 i {
    font-weight: inherit;
}


#monitoring .items .item p {
    font-size: 12px;
    line-height: 20px;
    display: block;
    margin: 0;
    height: 0;
    overflow: hidden;
}

#monitoring .items .item.up p {
    height: auto;
}

#monitoring .items .item:hover,
#monitoring .items .item.up {
    background-color: #fff;
}

#monitoring .demo .slide {
    width: 100%;
    height: auto;
}

#monitoring .wrapper-ipad {
    width: 100%;
    padding-left: 37px;
    padding-top: 41px;
}

#monitoring .wrapper-ipad .ipad {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#monitoring .wrapper-ipad .demo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 652px;
    height: auto;
}

#monitoring .wrapper-ipad .demo .slide {
    border-radius: 6px;
    overflow: hidden;
}


.link.plus {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(-30px);
}
.link.plus span:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 0;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: solid 1px;
    position: relative;
    transform: translateX(15px);
    z-index: 2;
}


.link.plus.vert span:first-of-type {
    border-color: var(--vert);
    color: var(--vert);
    background-color: #fff;
}
.link.plus.vert:hover span:first-of-type {
    border-color: var(--vertfonce);
    color: var(--vertfonce);
}



.link.plus span:last-of-type {
    display: block;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 15px 35px;
    position: relative;
    z-index: 1;
    font-size: 17px;
}



.link.plus.vert span:last-of-type {
    color: #FFF;
    background-color: var(--vert);
    font-weight: 600;
}

.link.plus.vert:hover span:last-of-type {
    background-color: var(--vertfonce);
}


.flex-end {
    justify-content: flex-end;
}


.clients .client {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 50px;
    flex-wrap: nowrap;
}

#clients #client-rse .lib {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}

#clients #client-rse .wrapper-content {
    transform: translateY(-50px);
}

#clients .parallax-container {
    height: 850px;
}

#clients .parallax-container .frise-herbe {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
}

#clients .parallax-container .underlay {
    background-color: rgba(0, 0, 0, 0.4);
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: block;
}

#clients .parallax-container .overlay {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

#clients .parallax-container .overlay p {
    font-size: 18px;
}
#clients .parallax-container .overlay p .link {
    font-weight: 600;
}



#client-indus {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#client-rse {
    z-index: 1;
}

#clients #client-indus .visuel figure img {
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
}

#clients #client-indus .page {
    position: relative;
    z-index: 2;
}

#clients #client-indus .rond {
    display: block;
    position: absolute;
    z-index: 1;
    mix-blend-mode: multiply;
    border-radius: 100%;
}

#clients #client-indus .rond:nth-of-type(1) {
    width: 400px;
    height: 400px;
    left: calc(50% - 1100px);
    bottom: -200px;
}
#clients #client-indus .rond:nth-of-type(2) {
    width: 350px;
    height: 350px;
    left: calc(50% - 800px);
    bottom: -250px;
}




#clients #client-centre .titre h2,
#clients #client-indus .titre h2 {
    font-size: 40px;
}
#clients #client-centre .titre h2 strong,
#clients #client-indus .titre h2 strong {
    font-size: 54px;
}



#clients #client-transition .underlay {
    background-color: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

#clients #client-transition .client {
    position: relative;
    z-index: 2;
}

#clients #client-transition .content .flex-row ul {
    flex-grow: 0;
    flex-shrink: 1;
}

#clients #client-transition .content .flex-row ul li {
    margin-bottom: 20px;
}


#clients #client-promoteur .wrapper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#clients #client-promoteur .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#clients #client-promoteur .content p {
    font-size: 20px;
    font-weight: 400;
}

#clients #client-promoteur .visuel {
    justify-content: center;
}


#clients .client .titre h2 {
    font-size: 50px;
    font-weight: 500;
}
#clients .client .titre h2 strong {
    font-size:60px;
    font-weight: 600;
    line-height: normal;
}
#clients .client .titre h3 {
    font-size: 35px;
}


#clients #client-promoteur .titre h3::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background-color: #fff;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}

.sep-feuille {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.sep-feuille img {
    display: block;
    width: 20px;
    height: auto;
}

.link-bloc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 35px;
    border-radius: 70px;
    text-decoration: none;
    padding: 25px;
    padding-top: 30px;
    padding-left: 60px;
    font-family: "Quicksand";
}
.link-bloc .label {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-align: left;
    border-left: solid 1px rgba(0, 0, 0, 0.1);
    padding-left: 35px;
}

.link-bloc .label:first-of-type {
    border-left: none;
    padding-left: 0;
}

.link-bloc .label strong {
    font-size: 40px;
    font-weight: 400;
}


.link-bloc .arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
}
.link-bloc .arrow i {
    font-size: 16px;
    transition: all 200ms cubic-bezier(0.25, 1, 0.5, 1);
}

.link-bloc:hover .arrow.bg-vertfonce {
    background-color: var(--vertclair);
}

.link-bloc:hover .arrow i {
    transform: translateX(5px);
}


.link.large {
    padding: 20px 35px;
    border-radius: 40px;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    letter-spacing: 0;
}


.clients .client .visuel {
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
}

.radius img {
    border-radius: 30px;
}
.radius-top-left img {
    border-top-left-radius: 180px;
}
.radius-bottom-left img {
    border-bottom-left-radius: 180px;
}
.radius-top-right img {
    border-top-right-radius: 180px;
}
.radius-bottom-right img {
    border-bottom-right-radius: 180px;
}

.shape-left {
    display: block;
    position: absolute;
    z-index: 2;
    left: -70px;
    top: 100px;
    width: 120px;
    height: 200px;
    border-radius: 30px;
    border-bottom-left-radius: 70px;
    background-color: #aab676;
    mix-blend-mode: multiply;
}

.shape-right {
    display: block;
    position: absolute;
    z-index: 2;
    right: -70px;
    bottom: 100px;
    width: 120px;
    height: 200px;
    border-radius: 30px;
    border-top-right-radius: 70px;
    background-color: #828a61;
    mix-blend-mode: multiply;
}





.clients .client .visuel figure {
    display: block;
    padding: 10px;
    border: solid 1px var(--vert);
    border-radius: 100%;
}

.clients .client .visuel figure span {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 100%;
}

.clients .client .wrapper-content {
    flex-grow: 1;
    flex-shrink: 1;
}

.clients .client .wrapper-content .titre h2 {
    font-size: 25px;
    line-height: normal;
}

#label .labellisez .content ul,
#clients .client .wrapper-content ul {
    padding-left: 0;
}

#label .labellisez .content ul li,
#clients .client .wrapper-content ul li {
    display: block;
    padding-left: 50px;
    position: relative;
}


#label .labellisez .content ul li::before,
#clients .client .wrapper-content ul li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    /*background-color: #fff;*/
    background-image: url('../media/img/ico-feuille-blanc.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
}

#label .labellisez .content ul li:nth-of-type(1)::before,
#clients .client .wrapper-content ul li:nth-of-type(1)::before {
    background-color: var(--vertclair);
}

#label .labellisez .content ul li:nth-of-type(2)::before,
#clients .client .wrapper-content ul li:nth-of-type(2)::before {
    background-color: var(--vert);
}
#label .labellisez .content ul li:nth-of-type(3)::before,
#clients .client .wrapper-content ul li:nth-of-type(3)::before {
    background-color: var(--vertmed);
}

#label .labellisez .content ul li:nth-of-type(4)::before,
#clients .client .wrapper-content ul li:nth-of-type(4)::before {
    background-color: var(--vertfonce);
}




.programmes .titre h2 {
    font-size: 25px;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 7px;
}
.programmes .titre h3 {
    font-size: 18px;
    line-height: normal;
}





.apave {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.10);
    border-radius: 300px;
}

.apave .content h3 {
    font-size: 24px;
}

.apave .content p {
 
}

.screen {
    padding: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.10);
}

.grecaptcha-badge {
    display: none;
}

#ecoreporting #chiffres {
    position: relative;
    z-index: 2;
}
#ecoreporting #demo {
    z-index: 1;
    position: relative;
    transform: translateY(-170px);
    margin-bottom: -170px;
}


.etapes {
    justify-content: center;
}

.etapes .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 10px;
    padding: 25px 50px;
    border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.etapes .item:first-child {
    border-left: none;
}

.etapes .item .numero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    line-height: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.etapes .item .libelle {
    font-size: 20px;
    line-height: normal;
    text-align: center;
    display: block;
    font-family: "Quicksand";
    font-weight: 700;
    margin-bottom: 10px;
}

.etapes .item-3 .content {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
}

.etapes .item-3 .content p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}

.etapes .item .content p .check {
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('../media/img/checked.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.etapes .item-1 .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 10px;
}

.etapes .item-1 .content .link {
    border-radius: 4px;
    cursor: default;
    width: 100%;
}


.etapes .item-2 .content figure {
    width: 160px;
}

.gellule {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.10);
    border-radius: 300px;
}

.gellule h4 {
    font-size: 20px;
}

.gellule h4 strong {
    font-size: 24px;
}

.gellule .item:first-of-type {
    border-right: solid 1px #FFF;
}