@charset "UTF-8";
/* CSS Document */

html {
	padding:0;
	margin:0;
}

body {
	padding:0;
	margin:0;
	font-size: 14px;
	line-height: normal;
	font-family: "Montserrat";
	font-weight: 400;
}

section,
header,
nav,
article,
aside,
footer,
figure
{
	padding:0;
	margin:0;
	display:block;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline:none;
	line-height:0;
	font-size:0;
}

figure {
	font-size: 0px;
	line-height: 0px;
	display: block;
	margin: 0px;
	padding: 0px;
}

figure > img {
	display:block;
	width:100%;
	height:auto;
}

a {
	outline:none;
}

h1,h2,h3,h4,h5,h6 {
	display:block;
	padding:0;
	margin:0;
	font-weight:normal;
}


.hidden-l {
	display:none;
}


.txt-z {
	line-height:0;
	font-size:0;
}
.txt-n {
	font-size:13px;
	font-weight: 300;
	line-height: 28px;
}


.v-top {
	vertical-align:top;
}
.v-middle {
	vertical-align:middle;
}
.v-bottom {
	vertical-align: bottom;
}

.overflow {
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.full-height {
	height:100%;
}
.fh {
	height: 100vh;
}

/* ========================================= COMMONS ============================== */

.trace {
	background-color: #CEEAF9;
	color: #000;
	display: block;
	padding: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	border: 1px dotted #09C;
}

.trace .close {
	display: block;
	float: right;
	color: white;
	background-color: #09C;
	cursor: pointer;
	font-size: 10px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	line-height:15px;
	text-decoration:none;
}

.table {
	/*border-collapse: separate; border-spacing: 5px;*/
	border-collapse: collapse; border-spacing: 0;
	width:100%;
}
.table th, td {
	padding: 5px;
	vertical-align: top;
}

.box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
	box-sizing: border-box;
}

.txt-center {
	text-align: center;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-justify {
	text-align: justify;
}

.left {
	float:left;
}

.right {
	float:right;
}

.clear {
	display:block;
	clear:both;
	line-height:0;
	height:0;
}

.hide {
	display:none;
}


.bloc {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ib {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.margin-auto {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.radius {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.transition {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.transition.fast {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.transition.slow {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.relative {
	position:relative;
}

.bg-cover {
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}
.bg-cover.top-left {
	background-position:left top;
}
.bg-cover.top-center {
	background-position:center top;
}
.bg-cover.top-right {
	background-position:right top;
}

.bg-cover.middle-left {
	background-position:left center;
}
.bg-cover.middle-center {
	background-position:center center;
}
.bg-cover.middle-right {
	background-position:right center;
}

.bg-cover.bottom-left {
	background-position:left bottom;
}
.bg-cover.bottom-center {
	background-position:center bottom;
}
.bg-cover.bottom-right {
	background-position:right bottom;
}



.bg-contain {
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
}

.link {
	display:inline-block;
	text-decoration:none;
	line-height: normal;
	font-size: 11px;
	font-weight: 400;
	padding: 10px 17px;
	letter-spacing: 1px;
	cursor: pointer;
}

.border {
	border:solid 1px;
}

/* ========================================= COLORS ============================== */

.bg-noir-10 {
	background-color:rgba(0,0,0,0.1);
}
.bg-noir-20 {
	background-color:rgba(0,0,0,0.2);
}
.bg-noir-30 {
	background-color:rgba(0,0,0,0.3);
}
.bg-noir-40 {
	background-color:rgba(0,0,0,0.4);
}
.bg-noir-50 {
	background-color:rgba(0,0,0,0.5);
}
.bg-noir-60 {
	background-color:rgba(0,0,0,0.6);
}
.bg-noir-70 {
	background-color:rgba(0,0,0,0.7);
}
.bg-noir-80 {
	background-color:rgba(0,0,0,0.8);
}
.bg-noir-90 {
	background-color:rgba(0,0,0,0.9);
}


.bg-noir {
	background-color:#000;
}
.bg-blanc {
	background-color:#FFF;
}
.bg-noirmat {
	background-color: rgb(10,4,5);
}
.bg-taupe {
	background-color: rgb(151,139,134);
}
.bg-rose {
	background-color: rgb(230,0,126);
}
.bg-grisclair {
	background-color: #f2f1f1;
}


.b-noir {
	border-color:#000;
}
.b-blanc {
	border-color:#FFF;
}
.b-noirmat {
	border-color: rgb(10,4,5);
}
.b-taupe {
	border-color: rgb(151,139,134);
}
.b-rose {
	border-color: rgb(230,0,126);
}


.f-noir {
	color:#000;
}
.f-blanc {
	color:#FFF;
}
.f-noirmat {
	color: rgb(10,4,5);
}
.f-taupe {
	color: rgb(151,139,134);
}
.f-rose {
	color: rgb(230,0,126);
}



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


header.strip {
	display: block;
	padding: 0;
	margin: 0;
	border-bottom: solid 1px rgba(0,0,0,0.05);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
header.strip #wrapper-menu {
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
	/*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);*/
}

header.strip #wrapper-menu .menu {
	position: relative;
	top: 0;
	padding-right: 25px;
	z-index: 1;
}
header.strip #wrapper-menu .menu a {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
header.strip #wrapper-menu .menu a span {
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	line-height: normal;
	font-weight: 600;
}
header.strip #wrapper-menu .menu a img {
	display: inline-block;
	vertical-align: middle;
	height: 30px;
	width: auto;
	margin-right: 10px;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}
header.strip #wrapper-menu .menu a:hover img {
	transform: rotate(90deg);
}

.social {
	position: relative;
}
.social .ico {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-position: center top;
	background-size: 100% auto;
	/*transition: all 0.2s ease-in-out;*/
	margin-left: 10px;
}
.social .ico:hover {
	background-position: center bottom;
}
.ico-facebook {
	background-image: url(../media/images/ico-facebook.png);
}
.ico-twitter {
	background-image: url(../media/images/ico-twitter.png);
}
.ico-linkedin {
	background-image: url(../media/images/ico-linkedin.png);
}
.ico-pinterest {
	background-image: url(../media/images/ico-pinterest.png);
}
.ico-youtube {
	background-image: url(../media/images/ico-youtube.png);
}
.ico-instagram {
	background-image: url(../media/images/ico-instagram.png);
}
.ico-maps {
	background-image: url(../media/images/ico-maps.png);
}
.ico-mail {
	background-image: url(../media/images/ico-mail.png);
}


footer .ico-facebook {
	background-image: url(../media/images/ico-facebook-footer.png);
}
footer .ico-twitter {
	background-image: url(../media/images/ico-twitter-footer.png);
}
footer .ico-linkedin {
	background-image: url(../media/images/ico-linkedin-footer.png);
}
footer .ico-pinterest {
	background-image: url(../media/images/ico-pinterest-footer.png);
}
footer .ico-youtube {
	background-image: url(../media/images/ico-youtube-footer.png);
}
footer .ico-instagram {
	background-image: url(../media/images/ico-instagram-footer.png);
}
footer .ico-maps {
	background-image: url(../media/images/ico-maps-footer.png);
}
footer .ico-mail {
	background-image: url(../media/images/ico-mail-footer.png);
}


header.strip #wrapper-nav {
	height:100vh;
	width:0;
	overflow: hidden;
	position:absolute;
	top: 0;
	right:0;
	z-index: 2;
}
header.strip #wrapper-nav .close {
	display: block;
	position: absolute;
	top: 55px;
	right: 55px;
	background-size: contain;
	background-image: url(../media/images/close-noir.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	z-index: 3;
	cursor: pointer;
}

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

header.strip #wrapper-nav nav{
	opacity:1;
}

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

header {
	padding: 30px 30px;
	margin-bottom: 3px;
}

header .wrapper-logo .logo {
	display: block;
	height: 80px;
	width: auto;
	position: relative;
}
header .wrapper-logo .logo img {
	display: block;
	width: auto;
	height: 100%;
}

header .titre {
	font-size: 12px;
	font-weight: 300;
	line-height: 15px;
	margin: 0;
	letter-spacing: 1px;
	opacity: 0.8;
}
header .titre strong {
	font-weight: 600;
}
header nav {
	line-height: 0px;
	font-size:0;
}

header nav ul {
	position: relative;
	padding: 0;
	margin:0;
	display: inline-block;
	font-size: 0;
	line-height: 0;
}

header nav ul li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0px;
	text-align:left;
	font-size: 0;
	line-height: 0;
	border-right: solid 1px #e6007e;
}

header nav ul li:last-of-type {
	border-right: none;
}


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


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

header nav ul li:hover {
	position: relative;
	/*z-index: 101;*/
	cursor: pointer;
}

header nav > ul {
	margin-left: auto;
	margin-right: auto;
}


header nav > ul > li > a {
	color: #978b86;
}

header  nav > ul > li.up > a ,
header nav > ul > li > a:hover {
	color:#FFF;
}


header nav > ul > li > ul {
	visibility: hidden;
	position: absolute;
	left: 0px;
	/*z-index: 102;*/
	width: 200px;
}

header nav > ul > li:hover > ul {
	visibility: visible;
}

header nav > ul > li > ul > li {
	display: block;
}

header nav > ul > li > ul > li > a {
	color: #CCC;
	border: solid 1px rgba(0,0,0,0.1);
}

header nav > ul > li > ul > li > a:hover,
header nav > ul > li > ul > li.up > a
 {
	color:purple;
}


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

footer {

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

footer .logo {
	height: 70px;
	width: auto;
	position: relative;
}
footer .logo img {
	display: block;
	width: auto;
	height: 100%;
}

footer .adresse {
	font-size: 13px;
	font-weight: 300;
	line-height: 21px;
	border-right:solid 1px rgba(255,255,255,0.3);
	border-left:solid 1px rgba(255,255,255,0.3);
	padding-right: 35px;
	padding-left: 35px;
	margin-left: 35px;
	margin-right: 35px;
}
footer .adresse strong {
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 16px;
}


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

footer .adresse a:hover {
	color: rgb(10, 4, 5);
}	


footer .social .ico {
	margin-left: 0;
	margin-right: 7px;
}
footer .social p {
	font-size: 11px;
	font-weight: 300;
	line-height: 18px;
	margin-top: 15px;
}

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

footer .social p a:hover {
	color: rgb(10, 4, 5);
}

footer .credits {

}

footer .credits p {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 1px;
	font-weight: 300;
	margin: 0;
	color: rgba(255,255,255,0.6);
}

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

footer .credits a:hover {

}

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


/* =============================================================================================== */

.ariane {
	padding: 0;
	margin: 0 20px;
	color: rgba(0,0,0,0.5);
}
.ariane a {
	color: rgba(0,0,0,0.5);
	text-decoration: none;
}
.ariane a:hover {
	text-decoration: underline;
}


.couv {
	display: block;
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow:hidden;
}

.couv img {
	height: auto;
	width: 100%;
	position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}
/* ========================================= 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-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-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-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-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;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: white;
	
	cursor:pointer;
	-webkit-appearance: none;
	font-family: "Open Sans";
	font-size: 13px;
	line-height: normal;
}
#contact .g-recaptcha {
		margin-bottom: 10px;
}
#contact form input[type=submit]:disabled {
	opacity: 0.2;
}


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

/* ================================================= GRID ============================================== */

.page {
	display:block;
	width:1000px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.page.xl {
	width:1400px;
}
.page.l {
	width:1200px;
}
.page.m {
	width:900px;
}

.page.s {
	width:800px;
}
.page.xs {
	width: 700px;
}
.page.xxs {
	width: 600px;
}



.col-100-l {
	width:100%;
}
.col-90-l {
	width:90%;
}
.col-80-l {
	width:80%;
}
.col-70-l {
	width:70%;
}
.col-60-l {
	width:60%;
}
.col-50-l {
	width:50%;
}
.col-40-l {
	width:40%;
}
.col-30-l {
	width:30%;
}
.col-20-l {
	width:20%;
}
.col-10-l {
	width:10%;
}

.col-33-l {
	width:33%;
}
.col-66-l {
	width:66%;
}

.col-25-l {
	width:25%;
}
.col-75-l {
	width:75%;
}


#vp #large {
	display:block !important;
}
#vp #medium {
	display:none !important;
}
#vp #small {
	display:none !important;
}


/* ============================================ 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;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	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 ============================== */

.padd-xxs {
	padding: 10px;
}
.padd-l-xxs {
	padding-left: 10px;
}
.padd-r-xxs {
	padding-right: 10px;
}
.padd-t-xxs {
	padding-top: 10px;
}
.padd-b-xxs {
	padding-bottom: 10px;
}
.padd-h-xxs {
	padding-left: 10px;
	padding-right: 10px;
}
.padd-v-xxs {
	padding-top: 10px;
	padding-bottom: 10px;
}



.padd-xs {
	padding: 20px;
}
.padd-l-xs {
	padding-left: 20px;
}
.padd-r-xs {
	padding-right: 20px;
}
.padd-t-xs {
	padding-top: 20px;
}
.padd-b-xs {
	padding-bottom: 20px;
}
.padd-h-xs {
	padding-left: 20px;
	padding-right: 20px;
}
.padd-v-xs {
	padding-top: 20px;
	padding-bottom: 20px;
}


.padd-s {
	padding: 25px;
}
.padd-l-s {
	padding-left: 25px;
}
.padd-r-s {
	padding-right: 25px;
}
.padd-t-s {
	padding-top: 25px;
}
.padd-b-s {
	padding-bottom: 25px;
}
.padd-h-s {
	padding-left: 25px;
	padding-right: 25px;
}
.padd-v-s {
	padding-top: 25px;
	padding-bottom: 25px;
}


.padd-m {
	padding: 50px;
}
.padd-l-m {
	padding-left: 50px;
}
.padd-r-m {
	padding-right: 50px;
}
.padd-t-m {
	padding-top: 50px;
}
.padd-b-m {
	padding-bottom: 50px;
}
.padd-h-m {
	padding-left: 50px;
	padding-right: 50px;
}
.padd-v-m {
	padding-top: 50px;
	padding-bottom: 50px;
}

.padd-xm {
	padding: 75px;
}
.padd-l-xm {
	padding-left: 75px;
}
.padd-r-xm {
	padding-right: 75px;
}
.padd-t-xm {
	padding-top: 75px;
}
.padd-b-xm {
	padding-bottom: 75px;
}
.padd-h-xm {
	padding-left: 75px;
	padding-right: 75px;
}
.padd-v-xm {
	padding-top: 75px;
	padding-bottom: 75px;
}

.padd-l {
	padding: 100px;
}
.padd-l-l {
	padding-left: 100px;
}
.padd-r-l {
	padding-right: 100px;
}
.padd-t-l {
	padding-top: 100px;
}
.padd-b-l {
	padding-bottom: 100px;
}
.padd-h-l {
	padding-left: 100px;
	padding-right: 100px;
}
.padd-v-l {
	padding-top: 100px;
	padding-bottom: 100px;
}


.padd-xl {
	padding: 150px;
}
.padd-l-xl {
	padding-left: 150px;
}
.padd-r-xl {
	padding-right: 150px;
}
.padd-t-xl {
	padding-top: 150px;
}
.padd-b-xl {
	padding-bottom: 150px;
}
.padd-h-xl {
	padding-left: 150px;
	padding-right: 150px;
}
.padd-v-xl {
	padding-top: 150px;
	padding-bottom: 150px;
}


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

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

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

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

.parallax {
  position: absolute;
  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;
}

/* ========================================= FLEX ============================== */

.wrapper-v-center {
	display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper-v-center.align-right {
	display: flex;
	justify-content: flex-end;
}

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

.wrapper-masonry {
	box-sizing: border-box;
}

.wrapper-item-sizer,
.wrapper-item {
	
}

.wrapper-item a {
	
}
.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;
}

.wrapper-item a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}
.wrapper-item a img {
	display: block;
	width: 100%;
	height: auto;
}


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

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

.fancybox-show-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}
#progress {
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 0;
	background-color: rgba(255,255,255,1);
}

#homepage .bottom {
	display: block;
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 0;
	left: 0;
	overflow: visible;
	bottom: 90px;
}
#homepage .bottom a {
	display: inline-block;
	text-decoration: none;
}
#homepage .bottom a span {
	font-size: 10px;
	line-height: normal;
	letter-spacing: 1px;
	color: #000;
	display: block;
	margin-bottom:5px;
	animation: loopBottom 1s infinite alternate;
}
#homepage .bottom a figure {
	display: block;
	background-image:url(../media/images/arrow_down_blanc.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	width: 100%;
	height: 40px;
}
#homepage .bottom a:hover span {
	margin-bottom: 20px;
}
@keyframes loopBottom {
  from {
		margin-bottom: 20px;
	}
}


#slider_homepage {
	width: 100%;
}

#slider_homepage .owl-item {
	height: 77vh;
	box-sizing: border-box;
}

#slider_homepage .owl-item .slide {
	height: 100%;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
#slider_homepage .owl-item .slide .overlay {
	width: 100%;
	height: 100%;
	opacity: 0;
}
#slider_homepage .owl-item .slide .overlay .legende {
	padding: 20px;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
	bottom: 200px;
	right: 200px;
	position: absolute;
}

#slider_homepage .owl-item .slide .overlay.stressless .legende {
	right: 0;
	padding: 0;
}

#slider_homepage .owl-item .slide .overlay.stressless .legende .content {
	background-color: rgba(255,255,255,0.9);
	color: #000;
	padding: 30px 50px;
}

#slider_homepage .owl-item .slide .overlay.stressless .legende .content p {
	font-size: 35px;
}
#slider_homepage .owl-item .slide .overlay.stressless .legende .content p strong {
	font-size: 45px;

}
#slider_homepage .owl-item .slide .overlay.stressless .legende .content p img {
	margin-left: 30px;
}


#slider_homepage .owl-item .slide .overlay .legende .content {
	position: relative;
	opacity: 1;
	padding:0;
	display: block;
	width: 100%;
	box-sizing: border-box;
}
#slider_homepage .owl-item .slide .overlay .legende .content p {
	display: block;
	margin:0;
	text-align: right;
	font-size: 60px;
	line-height: normal;
	font-weight: 200;
	
}
#slider_homepage .owl-item .slide .overlay .legende .content p strong {
	font-weight: 600;
	font-size: 40px;
	line-height: normal;
	letter-spacing: 3px;
}

#slider_homepage .owl-item .slide .overlay .legende .content p a {
	text-decoration: none;
	color: #FFF;
	font-size: 14px;
	font-weight: 300;
	border:solid 1px #FFF;
	padding: 10px 15px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	opacity: 0;
}
#slider_homepage .owl-item .slide .overlay .legende .content p a:hover {
	background-color: #FFF;
	color: #000;
}
#slider_homepage .owl-nav {
	height: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 2;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	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;
	background-color: #FFF;
	padding: 10px;
}
#slider_homepage .owl-nav .owl-prev {
	float: left;
	background-image: url(../media/images/arrow_left.png);

}
#slider_homepage .owl-nav .owl-next {
	float: right;
	background-image: url(../media/images/arrow_right.png);

}
#slider_homepage .owl-dots {
	position: absolute;
	bottom: 50px;
	right: 50px;
	width: auto;
	z-index: 4;
}
#slider_homepage .owl-dots button {
	display: inline-block;
	border: solid 1px #FFF;
	background-color: transparent;
	width: 12px;
	height: 12px;
	margin-left: 10px;
}
#slider_homepage .owl-dots button.active {
	background-color: #FFF;
}

#homepage .presentation .links p {
	margin: 0;
}
#homepage .presentation .links a {
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	display: inline-block;
	width: auto;
	text-decoration: none;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}
#homepage .presentation .links a::after {
	content:"";
	display: block;
	width: 50px;
	height: 3px;
	background-color: #e6007e;
	transition: all 200ms ease-in-out;
}

#homepage .presentation .links a:hover::after {
	width: 100%;
}


#homepage .presentation h1 {
	font-size: 20px;
	font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}


#homepage .marques .carousel .logo {
	display: block;
	height: 120px;
	width: auto;
	position: relative;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	padding: 15px;
	box-sizing: border-box;
}

#homepage .marques .carousel .logo img {
	display: block;
	height: 100%;
	width: auto;
	position: relative;
}



h2 {
	font-size: 35px;
	font-weight: 200;
}

h2 strong {
	font-weight: 600;
}



#homepage .showroom .col-50-l {
	position: relative;
	height: 30vw;
}

#homepage .showroom a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

#homepage .showroom a .legende {
	width:280px;
	padding: 25px;
	bottom: 50px;
	position: absolute;
}

#homepage .showroom .literie .legende {
	right: 0;
}
#homepage .showroom .salon .legende {	
	left: 0;
}


#homepage .showroom a .legende h3 {
	font-size: 20px;
	line-height: normal;
	font-weight: 300;
	letter-spacing: 2px;
	display: block;
	width: 100%;
	padding-bottom: 10px;
	position: relative;
}
#homepage .showroom a .legende h3 strong {
	font-size: 55px;
	font-weight: 700;
	line-height: normal;
}

#homepage .showroom a .legende h3::after {
	content:"";
	display: block;
	position: absolute;
	width: 100px;
	height: 3px;
	bottom: 0;
	background-color: #e6007e;
	transition: all 200ms ease-in-out;
}

#homepage .showroom .literie .legende h3::after {
	right: 3px;
}
#homepage .showroom .salon .legende h3::after {
	left: 3px;
}

#homepage .showroom a:hover .overlay {
	background-color: rgba(0,0,0,0.4);
}


#homepage .showroom a .legende .link {
	padding: 0;
	font-size: 10px;
	font-weight: 400;
	display: inline-block;
	margin: 0;
	margin-top: 15px;
	margin-right: 3px;
}


#homepage .showroom a:hover .legende h3::after {
	width: 3px;

}


#homepage .services h2 {
	font-size: 20px;
	font-weight: 300;
	line-height: 35px;
	letter-spacing: 1px;
}
#homepage .services h2 strong {
	font-size: 35px;
	font-weight: 700;
	line-height: normal;
}

#homepage .services hr {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
	height: 1px;
	width: 400px;
	background-color: rgba(255,255,255,0.2);
	border:none;
}

#homepage .services .pictos p {
	font-size: 15px;
	line-height: normal;
	font-weight: 400;
}

#homepage .services .pictos p small {
	font-size: 11px;
	font-weight: 300;
}


.univers .bandeau {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

.univers .titre h1,
#contact .titre h1 {
	font-size: 24px;
	font-weight: 200;
	line-height: normal;
	letter-spacing: 1px;
}
.univers .titre h1 strong,
#contact .titre h1 strong {
	font-size: 50px;
	font-weight: 600;
	line-height: normal;	
}

.univers .titre h2,
#contact .titre h2 {
	font-size: 17px;
	font-weight: 300;
	line-height: normal;
}


.univers .txt-n h3 {
	font-size: 20px;
	font-weight: 200;
	line-height: normal;
	letter-spacing: 1px;
	margin-bottom: 20px;
}


.sep {
	display: block;
	width: 200px;
	height: 3px;
	margin-top: 25px;
	margin-bottom: 35px;
}

.sep.small {
	width: 100px;
}


.link.border.b-noirmat.f-noirmat:hover {
	background-color: rgb(10, 4, 5);
	color: #FFF;
}
.txt-n p {
	margin-top: 0;
}

.txt-n p strong {
    font-weight: 600;
}

.univers .catalogue h4 small {
	font-size: 11px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1px;
}

.univers .catalogue h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 15px;
}

.univers .catalogue h4 strong {
	font-size: 45px;
	font-weight: 400;
	line-height: normal;
}

#enimages h2 {
	font-size: 20px;
	font-weight: 200;
	line-height: normal;
	letter-spacing: 1px;
}
#enimages h2 strong {
	font-size: 50px;
	font-weight: 600;
	line-height: normal;	
}

#enimages .wrapper-item a .overlay {
	opacity: 0;
	background-color: rgba(255,255,255,0.9);
	flex-direction: column;
}
#enimages .wrapper-item a:hover .overlay {
	opacity: 1;
}
#enimages .wrapper-item a .overlay .legende {
	font-size: 11px;
	line-height: normal;
}
#enimages .wrapper-item a .overlay .legende strong {
	font-size: 30px;
	line-height: 20px;
	font-weight: 400;
}
#enimages .wrapper-item a .overlay .sep {
	margin-top: 15px;
	margin-bottom: 10px;
}

.univers .other h3 {
	font-size: 30px;
	line-height: normal;
	font-weight: 200;
	margin-bottom: 15px;
}
.univers .other h3 strong {
	font-weight: 600;
}



#contact .coordonnees .logo {
	
}
#contact h3 {
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	margin-top: 20px;
	margin-bottom: 10px;
}
#contact .coordonnees p {
	line-height: 22px;
}
#contact .coordonnees p a {
	text-decoration: none;
}
#contact .coordonnees p a:hover {
	color: rgb(230, 0, 126);
}

#contact input[type=text],
#contact textarea {
	font-size: 12px;
	font-weight: normal;
	font-family: "Montserrat";
    border-radius: 4px;
}

#contact .wrapper-form h3 {
	margin-top: 0;
    margin-bottom: 20px;
}

#contact input[type=submit] {
	font-weight: 400;
	font-family: "Montserrat";
	width: 100%;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 12px;
    background-color: #e6007e;
    color: #FFF;
    border-radius: 4px;
}

.univers .conseil h2 {
    font-size: 30px;
}
.univers .conseil h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-align: center;
}

.univers .conseil .txt-n p {
    line-height: 23px;
}


#mentions-legales .titre h1 {
	font-size: 35px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1px;
}

#mentions-legales h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 40px;
}

#mentions-legales h2:first-of-type {
    margin-top: 0;
}

#mentions-legales p a {
    color: #e6007e;
    text-decoration: none;
}

.covid a {
    display: block;
    font-weight: 500;
    line-height: normal;
    font-size: 13px;
    color: #FFF;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    padding: 15px;
}

#covid ul {
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

#covid ul li {
    padding: 0;
    margin: 0;
    margin-bottom: 7px;
}

#covid p a.tel {
    text-decoration: none;
}

#covid h2 {
    margin-bottom: 20px;
}


.flash-covid h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
}

.soldes {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    z-index: 999;
}

.soldes p {
    display: block;
    font-size: 16px;
    line-height: normal;
    margin: 0;
}

/*
header {
    margin-top: 39px;
}
*/


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

#destockage {
    margin-bottom: 3px;
}

#destockage h3 {
    margin: 0;
    font-size: 65px;
    font-weight: 800;
    line-height: normal;
}

#destockage h3 small {
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
}

#homepage .pub img {
    display: block;
    width: 100% !important;
    height: auto;
}




.wrapper-form form .success {
    background-color:rgb(152, 215, 35);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 4px;
    text-align: center;
}

.wrapper-form form .success p {
    padding: 0;
    text-align: center;
    display: block;
    flex: none;
    color: #FFF;
}

.wrapper-form form .success p .link {
    padding: 10px 20px;
    border: none;
}

.wrapper-form form p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 10px 0;
    column-gap: 10px;
}

.wrapper-form form p input[type=text] {
    outline: none;
}



.grecaptcha-badge {
    display: none;
}


.wrapper-trace {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    box-sizing: border-box;
    z-index: 9999;
    width: calc(100% - 40px);
    height: 0;
    overflow: visible;
}
.wrapper-trace .trace {
    background-color: dodgerblue ;
    color: #FFF;
    animation-name: fadeinfadeout;
    animation-fill-mode:both;
    animation-duration:7s;  
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box;
    padding: 7px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.wrapper-trace .trace.alert {
    background-color: orangered;
    color: #FFF;
}
.wrapper-trace .trace.success {
    background-color: yellowgreen;
    color: #FFF;
}

@keyframes fadeinfadeout {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    10% {
        opacity: 1;
        visibility: visible;
        height: auto;
        margin-bottom: 10px;
        padding: 7px 15px;
    }
    90% {
        opacity: 1;
        visibility: visible;
        height: auto;
        margin-bottom: 10px;
        padding: 7px 15px;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        height: 0;
        margin-bottom: 0;
        padding: 0;
    }
}
