* {
    box-sizing: border-box;
}

.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;
	transition: all 0.2s ease-in-out;
    color: #FFF;
    width: 35px;
    height: 35px;
    background-color:#000;
    text-decoration: none;
}
.social .ico i {
    font-size: 20px;
}

.social .ico:hover {
	color: #FFF;
    background-color: red;
}

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


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

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

header .wrapper-menu {
	
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    column-gap: 10px;
    padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
    border-bottom: solid 1px transparent;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header.scroll .wrapper-menu {
    border-bottom: solid 1px rgba(255,255,255,0.3);
}

header .wrapper-menu .logo {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 25px;
}

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

header .wrapper-menu .wrapper-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-basis: auto;
}

header .wrapper-menu .wrapper-autogrow {
    flex: 1;
}

header .wrapper-menu .topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

header .wrapper-menu .topbar .link {
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    padding-left: 30px;
    padding-top: 7px;
    padding-bottom: 7px;

}

header .wrapper-menu .menu {
	position: relative;
	z-index: 1;
}
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: #FFF;
}

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

header .wrapper-nav {
    display: block;
}



header.strip .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.strip .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.strip .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.strip.open .wrapper-nav .wrapper-boutons a {
    opacity: 1;
    transform: translateX(0px);
}

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

header.strip .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.strip .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.strip .wrapper-nav .wrapper-boutons a:hover span {
    transform: translateY(10px);
    opacity: 0;
}

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

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


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


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

header .wrapper-nav nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-top: 15px;
}












/* ========================================= CLASSIC MENU ============================== */
/*
header.inline {
    position: relative;
    z-index: 3;
}

header.inline .wrapper-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-basis: auto;
}

header.inline .wrapper-autogrow {
    flex: 1;
}

header.inline .logo {
    display: block;
    width: auto;
    height: 40px;
    position: relative;
}

header.inline .logo a {
    display: block;
    position: relative;
    height: 100%;
    width: auto;
}

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

header.inline nav {
    display: block;
}

header.inline nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}
*/

/* ========================================= STD MENU ============================== */

header nav {
	
}

header nav ul {
	position: relative;
    list-style-type: none;
	padding: 0;
	margin:0;
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    padding-right: 35px;
}

header nav ul li {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
	margin: 0;
	padding: 0;
    column-gap: 0px;
}

header nav ul li:first-of-type::before {
    display: none;
}

header nav ul li::before {
    content: "/";
    color: #ef7b0b;

}

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

header nav ul li a {
	display: block;
	font-size: 15px;
	line-height: normal;
	text-decoration: none;
	padding: 10px;
    margin:0;
    color: #FFF;
    font-weight: 400;
}

header nav ul li.up a {
    font-weight: 700;
}

header nav ul li a:hover {
    color: #ef7b0b;
}

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


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

footer {

}

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

footer .credits {

}

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

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

footer .credits a:hover {

}

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;
	
	color: white;
	background-color: rgb(0,0,0);
	cursor:pointer;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}




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

.ariane {
    
    padding: 20px;
    border-top: solid 1px rgb(27,27,29);
    border-bottom: solid 1px rgb(27,27,29);
    font-size: 12px;
    line-height: normal;
    font-weight: 500;
}

.ariane a {
    color: rgba(27,27,29, 0.8);
    text-decoration: none;
}
.ariane a:hover {
    text-decoration: underline;
}


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


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


.slick {
	margin-bottom:0;
	position:relative;
}
.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/images/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/images/arrow_left.png);
	background-position: center center;
}

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

.slick .slick-dots {
	bottom:0;
}

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

.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: calc(100vh - 100px);
    overflow: hidden;
}

#progress {
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	z-index: 2;
	top: 1px;
	left: 0;
	background-color: #ef7b0b;
}

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

.arrow-down-loop a {
    margin: 0;
    display: block;
    text-decoration: none;
}

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

.arrow-down-loop .arrow-down {
    position: relative;
    width: 120px;
    height: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background-color: #ef7b0b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
}

.arrow-down-loop :hover .arrow-down {
    transform: translateY(6px);
}


.arrow-down-loop .arrow-down .bulle {
    display: block;
    position: relative;
    width: 25px;
    height: 20px;
    background-image: url('../media/img/arrow-down-blanc.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: loopBottom 500ms infinite alternate;
    transform: translateY(10px);
}


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


.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;
}





#slider_homepage {
	width: 100%;    
}

#slider_homepage .owl-item {
	height: auto;
    height: calc(100vh - 100px);
    
    /*height: 65vh;
    min-height: 600px;
    */
}
#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);
    background-color: rgba(0, 0, 0, 0.3);
}


#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: 100%;
	
}

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

/* anims slide title */


#slider_homepage .owl-item .slide.title .legende .content::before,
#slider_homepage .owl-item .slide.title .legende .content::after {
    content: "";
    display: block;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    z-index: 2;
    transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
    transition-property: all;
    transition-delay: 500ms;
    transition-duration: 800ms;
}

#slider_homepage .owl-item .slide.title .legende .content::before {
    background-image: url('../media/img/logo-signe-top-left-orange.png');
    left: calc(50% - 80px);
    top: 35px;
    
}

#slider_homepage .owl-item.active .slide.title .legende .content::before {
    left: -80px;
    top: -20px;
}

#slider_homepage .owl-item .slide.title .legende .content::after {
    background-image: url('../media/img/logo-signe-bottom-right-grisfonce.png');
    bottom: 35px;
    right: calc(50% - 80px);
}

#slider_homepage .owl-item.active .slide.title .legende .content::after {
    right: -100px;
    bottom: -70px;
}


#slider_homepage .owl-item .slide.title .legende .content {
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
}

#slider_homepage .owl-item .slide.title .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;
    font-size: 100px;
    line-height: normal;
    font-weight: 200;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transform: scale(0.9);
    transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0ms;
}

#slider_homepage .owl-item .slide.title .legende .content p strong {
    font-weight: 700;
}


#slider_homepage .owl-item.active .slide.title .legende .content p {
    opacity: 1;
    transform: scale(0.9);
    transition-delay: 1000ms;
}




/* 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 p {
    display: block;
    margin: 0;
    text-align: center;
    transition: all 1000ms cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0;
    opacity: 0;
}
#slider_homepage .owl-item.active .slide.logo .legende .content p {
    opacity: 1;
    transition-delay: 1500ms;
}
#slider_homepage .owl-item .slide.logo .legende .content p img {
    display: block;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 800px;
    height: auto !important;
}

/* 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: calc(50% - 40px);
	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;
    transform: translateX(30px);
	background-image: url("../media/img/arrow-left-blanc.png");
}
#slider_homepage .owl-nav .owl-next {
	float: right;
    transform: translateX(-30px);
	background-image: url("../media/img/arrow-right-blanc.png");

}
#slider_homepage .owl-dots {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
	bottom: 50px;
	left: 50px;
	width: auto;
	z-index: 4;
    column-gap: 5px;
}
#slider_homepage .owl-dots .owl-dot {
	font-size: 14px;
    line-height: normal;
    font-weight: 500;
    color: #FFF;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
	border: none;
	border-bottom: solid 2px #FFF;
	width: 120px;
}
#slider_homepage .owl-dots .owl-dot.active {
	border-color: #ef7b0b;
}


.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: 17px;
    font-weight: 400;
    line-height: normal;
    padding: 0;
}

.filters .sep {
    color: #ef7b0b;
    font-weight: 600;
    margin-left: 7px;
    margin-right: 7px;
}

.filters a {
    cursor: pointer;
}
.filters a:hover {
    text-decoration: underline;
}
.filters a.active {
    font-weight: 700;
}

/*
.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: 90px;
    gap: 10px;
}

.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: rgb(27,27,27);
}

.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;
    /*background-color: rgba(0,0,0,0.1);*/
}


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

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



#blog article a {
    display: block;
    text-decoration: none;
}

#blog article a figure {
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.1);
}


#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 input[type=submit]
{
	margin-bottom:0;
    border-radius: 4px;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #ef7b0b;
}

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: normal;
}

.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;
}


/* custom */

body {
    font-family: "Montserrat";
    font-weight: 400;
    line-height: 26px;
    font-size: 16px;
}

.f-orange {
    color: #ef7b0b;
}
.bg-orange {
    background-color: #ef7b0b;
}
.b-orange {
    border-color: #ef7b0b;
}

.f-gris {
    color: #a4a4a5;
}
.f-gris {
    background-color: #a4a4a5;
}
.f-gris {
    border-color: #a4a4a5;
}

.f-noirmat {
    color: #211f1e;
}
.bg-noirmat {
    background-color: #211f1e;
}
.b-noirmat {
    border-color: #211f1e;
}
.cutcorner {
    clip-path: polygon(100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%, 0 0);
}
.cutcornertop {
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%, 0 100px);
}


.content.intro h1,
.content.intro h2 {
    font-size: 32px;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 400;
}

.content.intro h2.txt-center {
    text-align: center;
}

.content.intro {
    font-size: 16px;
    line-height: 26px;
}


#intro .lignes-orange {
    display: block;
    position: absolute;
    left: -380px;
    top: 100px;
    width: 450px;
    height: auto;
    z-index: 1;
}

#intro .lignes-gris {
    display: block;
    position: absolute;
    right: -380px;
    bottom: -200px;
    width: 450px;
    height: auto;
    z-index: 1;
}

#intro .logo {
    margin-left: auto;
    margin-right: 25px;
    width: 65%;
    height: auto;
    margin-bottom: 100px;
}

.link.para {
    clip-path: polygon(33px 0%, 100% 0%, calc(100% - 33px) 100%, 0% 100%);
    padding-left: 45px;
    padding-right: 45px;
}
#homepage .parallax-container {
    height: 600px;
}


#homepage .parallax-container .bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(calc(50% + 250px) 0, 100% 0, 100% 100%, calc(50% - 250px) 100%);
    background-color: rgba(255,255,255,0.8);
}


#homepage .parallax-container .overlay {
    position: absolute;
    z-index: 3;
    right: 0;
    left: auto;
    top: 0;
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#homepage .parallax-container .overlay .titre {
    margin-left: 150px;
    margin-top: 100px;
}

section {
    overflow: hidden;
}

h1,h2,h3,h4,h5 {
    line-height: normal;
}

h2 {
    font-weight: 300;
}
h2 strong {
    font-weight: 700;
}


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

.titre.medium h1,
.titre.medium h2 {
    font-size: 40px;
}

.titre.small h1,
.titre.small h2 {
    font-size: 34px;
}

.titre.small h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}
.titre h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}





.titre.has-arrows {
    position: relative;
    display: flex;
    width: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
.titre.has-arrows > div {
    position: relative;
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

.titre.has-arrows > div::before,
.titre.has-arrows > div::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    
}

.titre.has-arrows div::before {
    background-image: url('../media/img/logo-signe-top-left-orange.png');    
    z-index: 2;
    left: 0;
    top: 0;
    /*transform: translate(-50px,-40px);*/
}

.titre.has-arrows div::after {
    background-image: url('../media/img/logo-signe-bottom-right-grisfonce.png');
    z-index: 3;
    right: 0;
    bottom: 0;
    /*transform: translate(50px,40px);*/
}


.titre.has-arrows div > * 
{
    position: relative;
    width: auto;
    display: block;
}




/*
.titre.has-arrows h1::before,
.titre.has-arrows h2::before,
.titre.has-arrows h1::after,
.titre.has-arrows h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
}


.titre.has-arrows h1::before,
.titre.has-arrows h2::before {
    background-image: url('../media/img/logo-signe-top-left-orange.png');    
    left: -50px;
    top: -40px;
}

.titre.has-arrows h1::after,
.titre.has-arrows h2::after {
    background-image: url('../media/img/logo-signe-bottom-right-grisfonce.png');
    right: -60px;
    bottom: -40px;
}
*/

.titre.has-arrows.light div::after {
    background-image: url('../media/img/logo-signe-bottom-right-gris.png');
}

.titre.large.has-arrows div::before,
.titre.large.has-arrows div::after {
    width: 75px;
    height: 75px;
}

.titre hr {
    margin-top: 50px;
    margin-bottom: 50px;
}


.wrapper-metiers .item {
    padding: 30px;
}

.wrapper-metiers .item a {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    color: #FFF;
}

.wrapper-metiers .item a figure {
    display: block;
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.wrapper-metiers .item a .legende {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    position: absolute;
    top: 280px;
    left: 0;
    width: 100%;
}

.wrapper-metiers .item a .legende h3 {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 60px;
    background-color: rgba(0, 0, 0, 0.9);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-metiers .item a:hover .legende h3 {
    padding-left: 30px;
}



.wrapper-metiers .item a .legende h3::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url('../media/img/logo-ecmb-signe.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    font-weight: 100;
    line-height: normal;
    font-size: 50px;
    border: solid 1px;
    text-decoration: none;
}

.wrapper-metiers .item a .plus {
    margin-left: auto;
    margin-right: auto;
    transition: transform 600ms cubic-bezier(0.83, 0, 0.17, 1);
}
.wrapper-metiers .item a:hover .plus {
    transform: rotate(180deg);
}



.wrapper-actus article .wrapper-content h1::before {
    content: "/";
    color: #ef7b0b;
    margin-right: 5px;
}

.wrapper-actus article .wrapper-content h1 {
    font-size: 22px;
    line-height: 30px;
}

.wrapper-content .content p:last-of-type {
    margin-bottom: 0;
}


.visuel.has-arrows {
    position: relative;
}

.visuel.has-arrows::before,
.visuel.has-arrows::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
}


.visuel.has-arrows::before {
    background-image: url('../media/img/logo-signe-top-left-orange-alt.png');
    left: -50px;
    top: -40px;
}
.visuel.has-arrows::after {
    background-image: url('../media/img/logo-signe-bottom-right-gris-alt.png');
    right: -50px;
    bottom: -40px;
}





.wrapper-actus article .wrapper-visuel .visuel figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    background-color: #fff;
    color: #1b1b1b;
    padding-top: 10px;
    padding-right: 20px;
    font-size: 85px;
    line-height: 70px;
    font-weight: 300;
    line-height: normal;
    bottom: -30px;
    left: -30px;
}


footer .wrapper-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 100px;
}

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

footer .col {
    min-width: 200px;
}

footer .item ul li::marker {
    content: "+";
    color: #ef7b0b;
}

footer .item ul li {
    margin: 0;
    padding: 0;
}

footer .item.col h4 {
    color: #ef7b0b;
    font-size: 18px;
    border-bottom: solid 1px #ef7b0b;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding-right: 50px;
}

footer .item ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

footer .item ul li a {
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    color: #FFF;
    margin-left: 5px;
}

footer .col.adresse p {
    font-size: 14px;
    line-height: 22px;
}

footer .item ul li a:hover {
    color: #ef7b0b;
}

footer .credits {
    border-top: solid 1px rgba(255,255,255,0.3);
    padding-top: 25px;
}

footer .credits p {
    font-size: 13px;
    line-height: normal;
}

footer .credits p a {
    color: #FFF;
}

footer .credits p a:hover {
    color: #ef7b0b;
}

footer .social {
    justify-content: center;
}

footer .social .ico {
    background-color: #ef7b0b;
    transition: unset;
}

footer .social .ico:hover {
    background-color: #fff;
    color: #211f1e;
}


.bandeau {
    width: 100%;
    height: 200px;
}

/*
#realisations .titre.has-arrows h1::before {
    top: -15px;
    left: -35px;
}
#realisations .titre.has-arrows h1::after {
    bottom: -35px;
    right: -65px;
}
*/
.wrapper-realisations .item a {
    display: block;
    text-decoration: none;
    
}


.wrapper-realisations .item a figure {
    height: 300px;
    margin-bottom: 5px;
}
.others .wrapper-realisations .item a figure {
    height: 250px;
}

.wrapper-realisations .item a figure .overlay {
    background-color: rgba(255,255,255,0.9);
    transform: scale(0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-realisations .item a:hover figure .overlay {
    transform: scale(1.01);
    opacity: 1;
}

.wrapper-realisations .item a figure .overlay span {
    display: block;  
    font-size: 13px;
    line-height: normal;
    font-weight: 700;
    transition: all 200ms ease-in-out;
    opacity: 0;
} 


.wrapper-realisations .item a:hover figure .overlay span {
    transition-delay: 200ms;
    opacity: 1;
}


.wrapper-realisations .item a .legende {
    column-gap: 30px;
}

.wrapper-realisations .item a .legende .titre {
    flex-grow: 1;
    flex-shrink: 1;
    position: relative;
}

.wrapper-realisations .item a .legende .titre h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.wrapper-realisations .item a .legende .titre::before {
    content: "+";
    font-size: 22px;
    line-height: 20px;
    color: #ef7b0b;
    font-weight: 400;
    display: "block";
    position: absolute;
    left: -15px;
    top: 0;
}

.wrapper-realisations .item a .legende .titre h4 {
    font-size: 18px;
    font-weight:400;
}
.wrapper-realisations .item a .legende .plus {
    flex-grow: 0;
    flex-shrink: 0;
}
.wrapper-realisations .item a:hover .legende .plus {
    background-color: #ef7b0b;
    color: #FFF;
    border: solid 1px transparent;
}

.wrapper-realisations .item a .visuel.has-arrows::before,
.wrapper-realisations .item a .visuel.has-arrows::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: all 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-realisations .item a .visuel.has-arrows::before {
    background-image: url('../media/img/logo-signe-top-left-orange-alt.png');
    left: -45px;
    top: -35px;
}
.wrapper-realisations .item a .visuel.has-arrows::after {
    background-image: url('../media/img/logo-signe-bottom-right-gris-alt.png');
    right: -45px;
    bottom: -35px;
}
.wrapper-realisations .item a:hover .visuel.has-arrows::before {
    opacity: 1;
    left: -35px;
    top: -25px;
}
.wrapper-realisations .item a:hover .visuel.has-arrows::after {
    opacity: 1; 
    right: -30px;
    bottom: -25px;
}




.wrapper-titre {
    row-gap: 70px;
}

#realisation .details {
    border-top: solid 1px #ef7b0b;
    border-bottom: solid 1px #ef7b0b;
}

#realisation .details p {
    margin: 0;
    font-size: 15px;
    line-height: normal;
}

#realisation .details > span {
    margin-left: 25px;
    margin-right: 25px;
}

#realisation .presentation .lignes-orange {
    display: block;
    position: absolute;
    left: -600px;
    top: -100px;
    width: 450px;
    height: auto;
    z-index: 1;
}

#realisation .presentation .lignes-gris {
    display: block;
    position: absolute;
    right: -500px;
    top: 150px;
    width: 450px;
    height: auto;
    z-index: 1;
}

#realisation .presentation .content {
    z-index: 2;
}

#realisation .presentation .content h3 {
    font-size: 23px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}
#realisation .presentation .content h3::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../media/img/logo-ecmb-signe.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;   
}


#realisation .presentation .wrapper-map .link {
    font-weight: 800;
    padding: 0;
}
#realisation .presentation .wrapper-map .link:hover {
    color: #ef7b0b;
}


#realisation .presentation .wrapper-map .plus {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    right: 0;
}

#realisation .presentation .wrapper-map .plus:hover {
    background-color: #ef7b0b;
    color: #FFF;
    border: solid 1px transparent;
}

#realisation .presentation .map {
    clip-path: polygon(100% 0, 100% calc(100% - 120px), calc(100% - 120px) calc(100% - 20px), 0 calc(100% - 20px), 0 0);
    display: block;
    width: 100%;
    height: 300px;
    background-color: rgb(240,240,240);

}

#realisation .wrapper-galerie .carousel .slick-dots {
    display: none !important;
}


.wrapper-galerie .carousel .slick-slide {
    box-sizing: border-box;
    padding: 10px;
}

.wrapper-galerie .carousel .slick-slide a .slide {
    display: block;
    width: 800px;
    height: 500px;
    position: relative;
    box-sizing: border-box;
}


.wrapper-galerie .carousel .slick-slide a .slide .overlay {
    background-color: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-galerie .carousel .slick-slide a:hover .slide .overlay {
    opacity: 1;
}


.wrapper-galerie .carousel .slick-slide a .slide .overlay .legende {
    display: block;
    padding: 50px;
    opacity: 0;
    transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
}

.wrapper-galerie .carousel .slick-slide a:hover .slide .overlay .legende {
    opacity: 1;
    transition-delay: 300ms;
}

.wrapper-galerie .carousel .slick-slide a .slide .overlay .legende .link:hover {
    background-color: #211f1e;
}


.wrapper-galerie .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-sizing: border-box;
    column-gap: 20px;
}

.wrapper-galerie .arrows .slick-arrow {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: solid 1px #ef7b0b;
    box-sizing: border-box;
    padding: 0;
    border-radius: 100%;
    transform: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 200;
    line-height: 0;
}

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

.wrapper-galerie .arrows .slick-arrow.prev:hover img {
    transform: translateX(-7px);
}
.wrapper-galerie .arrows .slick-arrow.next:hover img {
    transform: translateX(7px);
}


.metier .presentation .wrapper-visuel .visuel {
    clip-path: polygon(100% 0, 100% calc(100% - 350px), calc(100% - 350px) 100%, 0 100%, 0 0);
}

.metier .presentation .wrapper-visuel {
    transform: translateX(50px);
}

.metier .presentation .wrapper-content {
    transform: translate(-150px, 340px);
    margin-bottom: 400px;
}

.metier .chiffres {
    column-gap: 80px;
}

.metier .chiffres .item {
    text-align: center;
}
.metier .chiffres .item h3 {
    font-weight: 200;
    font-size: 70px;
    line-height: normal;
    color: #ef7b0b;
    margin-bottom: 10px;
}

.metier .chiffres .item p {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}


.metier .experience hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.metier .content h2::before {
    display: none;
}


.content.columns {
    column-count: 2;
    column-gap: 75px;
    align-items: flex-start;
}

.content.columns ul {
    margin-top: 0;
    margin-bottom: 0;
}

.content.columns li {
    break-inside: avoid;
    margin-top: 7px;
    margin-bottom: 7px;
}


.content.columns p:first-of-type {
    margin-top: 0;
}
.content.columns p:last-of-type {
    margin-bottom: 0;
}

.carousel .slick-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.carousel .slick-dots li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 0;
    margin: 0;
    background-color: none;
}

.carousel .slick-dots li::before {
    content: "/";
}

.carousel .slick-dots li:first-of-type::before {
    display: none;
}

.carousel .slick-dots li button {   
    display: block;
    padding: 0;
    margin: 0;
    color: #211f1e;
    background: none !important;
    background-color: none !important;
    border-radius: unset;
    width: unset;
    height: unset;
    font-family: "Montserrat";
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: normal;
}


.carousel .slick-dots li.slick-active button {
    color: #ef7b0b;
}

.metier .others .texte.offset-top {
    transform: translateY(-50px);
}
.metier .others .texte.offset-bottom {
    transform: translateY(50px);
}


.metier .others .texte h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.metier .others .texte .link {
    padding: 0;
    letter-spacing: 4px;
}

.metier .others .texte .link:hover {
    color: #ef7b0b;
}

.bg-double-ligne {
    background-image: url('../media/img/bg-double-ligne.png');
    background-repeat: no-repeat;
    background-position: center 200px;
    background-size: 2300px auto;
}

.bg-simple-ligne {
    background-image: url('../media/img/bg-ligne-simple.png');
    background-repeat: no-repeat;
    background-position: center 100px;
    background-size: 2300px auto;
}

.metier .wrapper-visuel .lignes-orange {
    display: block;
    position: absolute;
    z-index: 2;
    display: block;
    width: 300px;
    height: auto;
    top: -115px;
    left: -220px;
}
.metier .wrapper-visuel .lignes-gris {
    display: block;
    position: absolute;
    z-index: 3;
    display: block;
    width: 500px;
    height: auto;
    top: 400px;
    right:320px;
}


#realisations .lignes-orange {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 450px;
    left: 0;
    top: 100px;
    background-repeat: no-repeat;   
    background-position: calc(50% - 970px) 0px;
    background-size: auto 100%;
    background-image: url('../media/img/lignes-orange-alt.png');
}


#realisations .lignes-gris {
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 450px;
    left: 0;
    bottom: 50px;
    background-repeat: no-repeat;   
    background-position: calc(50% + 970px) 0px;
    background-size: auto 100%;
    background-image: url('../media/img/lignes-gris.png');
}

/* submenu */

header .wrapper-subnav {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
}

.wrapper-subnav .close {
    position: absolute;
    right: 35px;
    top: 35px;
    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;
}

.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: 450px;
    transition: all 600ms cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 200ms;
}

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

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

.submenu.open .item {
    opacity: 1;
    transform: translateX(0);
    border-bottom: solid 1px #ef7b0b;
}


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



.submenu .item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    text-align: center;
    color: #FFF;
}

.submenu .item a:hover {
    color: #ef7b0b;
}

.submenu .item a .legende {
    font-size: 17px;
    line-height: normal;
    font-weight: 400;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
}

.submenu .item a .legende::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/img/logo-ecmb-signe.png");
    flex-grow: 0;
    flex-shrink: 0;
}


.link.para.bg-orange:hover {
    background-color: #211f1e;
}
.content ul {
    list-style-type: square;
    padding-left: 15px;
}

.content ul li::marker {
    color: #ef7b0b;
}

.content h2:first-child {
    margin-top: 0;
}

.content h2 {
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    margin-top: 30px;
}

.content h2::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/img/logo-ecmb-signe.png");
    flex-grow: 0;
    flex-shrink: 0;
}


.titre.has-signe {
    row-gap: 25px;
    align-items: center;
    justify-content: center;
}

.titre.has-signe .picto {
    display: block;
    width: 80px;
    height: auto;
}

.content h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 25px;
    margin-top: 25px;
}

.content hr {
    background-color: rgba(0, 0, 0, 0.1);
}


.labels {
    justify-content: center;
}

.labels figure img {
    height: 125px;
    width: auto;
}


#contact .horaires li {
    border-bottom: solid 1px rgba(255,255,255,0.1);
    padding-top: 8px;
    padding-bottom: 8px;
}

#contact .horaires li:last-of-type {
    border-bottom: none;
}

#contact .horaires li p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

#contact .horaires li span {
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 130px;
}

.link {
    text-transform: uppercase;
}

.content table {
    border: solid 1px rgb(27,27,29);
    border-collapse: collapse;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
}
.content table tr td,
.content table tr th {
    padding: 10px;
    border: solid 1px rgb(27,27,29);
    font-size: 14px;
    text-align: left;
}

.content table tr th {
    background-color: rgb(27,27,29);
    color: #FFF;
    text-align: center;
}

.content table tr td:nth-of-type(1) {
    width: 180px;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
}

.content table tr:nth-of-type(odd) td {
    background-color: rgba(239, 123, 11, 0.1);
}
.content table tr:nth-of-type(even) td {
    background-color: rgba(0,0,0, 0.05);
}

.content table tr td h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}