@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
  font-family: MuseoSansRounded;
  src: url(./fonts/MuseoSansRounded300.otf);
  font-weight: 300;
}

@font-face {
  font-family: MuseoSansRounded;
  src: url(./fonts/MuseoSansRounded700.otf);
  font-weight: 700;
}

*{
padding:0px;
border:0px;
margin:0px;
}

html{
width:100%;
margin: 0 auto;
background-color: #131416;
scroll-behavior: smooth;
}

.main_width{
width:85vw;
margin:auto;
}


body{
font-family: 'Rubik', sans-serif;
font-weight:400;
width:100%;
background-color: #131416;
color:#fff;
}


/* *********************** COMMON *********************** */

p{
color:#fff;
line-height:23px;
font-size:16px;
}

p+p{
	margin-top: 10px;
}

h1{
color:#fff;
text-transform: uppercase;
font-size: 36px;
font-weight: 300;
line-height: 43px;
font-family: 'MuseoSansRounded', sans-serif;
}

h2{
color: #fff;
text-transform: uppercase;
font-size: 27px;
font-weight: 300;
line-height: 34px;
font-family: 'MuseoSansRounded', sans-serif;
}


.button{
display: block;
width: fit-content;
padding: 5px 40px 5px 15px;
background-color: #fff;
color: #131416;
font-size: 15px;
text-transform: uppercase;
background-image: url(images/icon-button.svg);
background-size: 26px;
background-position: right 7px center;
background-repeat: no-repeat;
transition: all 0.4s;
text-decoration: none;
margin-top: 30px;
}

.button:hover{
	padding: 5px 50px 5px 15px;
}

a{
color:inherit;
text-decoration:underline;
transition: all 0.4s ease-in-out;
}

p a:hover{
background-color:#d5182c;
}



/* *********************** BANNER / MENU *********************** */
#banner{
width:100%;
padding: 20px 0;
position: fixed;
top: 0;
left: 0;
width: 100%;
transition: all 0.4s;
z-index: 100;
}

#banner .main_width{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#banner .logo{
	width: 155px;
	height: auto;
	display: block;
}

#banner .logo img{
	width: 100%;
	height: auto;
}

#banner .menu-links{
cursor: pointer;
}

#banner .burger{
flex: 1;
text-align: left;
}

.menu-links img{
cursor: pointer;
}

.menu-links.open{
flex: 1;
text-align: right;
}

.menu-links.open img{
width: 27px;
height: 27px;
transform: translateY(1px);
}

.menu-links.close{
padding: 20px 0 0 20px;
text-align: left;
}

.menu-links.close img{
width: 20px; 
height: 20px;
}

.burger{
position: fixed;
top: 0;
right: -400px;
width: 350px;
max-width: 100%;
height: 100vh;
background-color: #1b1c1e;
padding-top: 25px;
margin: 0;
-webkit-box-shadow: 0px 2px 15px 0px #363636;
box-shadow: 0px 2px 15px 0px #363636;
transition: all 0.6s;
overflow-y: auto;
z-index: 100;
}

.burger.open{
right: 0;
}

.burger ul {
text-align: left;
padding: 25px 0 25px;
list-style: none;
}

.burger ul li{
	transition: all 0.4s;
}

.burger ul li:hover{
	background-color: #fff;
}

.burger ul li a{
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.4s;
	padding: 20px 20px;
	display: block;
}

.burger ul li:hover a{
	color: #1b1c1e;
}

#banner .langues a{
	text-transform: uppercase;
	font-size: 15px;
	text-decoration: none;
	font-weight: 300;
}

#banner .langues a.selected{
	font-weight: 600;
}

#banner .langues{
	opacity: 0.7;
	margin-left: 20px;
}

html:not([data-scroll='0']) #banner{
	background-color: #131416;
	border-bottom: 1px solid #ffffffb0;
}

html:not([data-scroll='0']) #banner .logo{
	opacity: 1;
}

/* *********************** PAGES *********************** */


/* ***** HOME ***** */
#home .shutter{
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(images/dk-detailing-intro-centre-esthetique-automobile.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.8s;
}

#home .shutter.open{
	top: -200%;
}

#home .shutter:after{
	content:'';
	position: absolute;
    bottom: 30px;
	left: 50%;
	animation: 1s ease-in 0s infinite alternate scroll_animation;
	width: 55px;
	height: 80px;
	background-image: url(images/icon-scroll.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@keyframes scroll_animation { 
	from { transform:translate(-50%, 20px); } 
	to { transform:translate(-50%, 0); }  
}

#home .c1{
	margin-top: 150px;
}

#home .c1 .main_width{
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

#home .c1 .content{
	display: block;
    width: 100%;
    margin: 50px auto 0;
    max-width: 550px;
	position: relative;
	z-index: 10;
}

#home .c1 .content .logo{
	display: none;
}

#home .c1 .content h1{
	font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: none;
    margin-bottom: 15px;
	text-align: left;
}

#home .c1 .content p{
	text-align: left;
}

#home .c1 .content .links{
	margin-top: 50px;
}

#home .c1 .content .links a{
	display: block;
	text-decoration: none;
	text-align: left;
	padding-left: 25px;
	font-size: 15px;
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: left center;
}

#home .c1 .content .links a+a{
	margin-top: 15px;
}

#home .c1 .content .links a.map{
	background-image: url(images/icon-map.svg);
	background-size: 10px;
	background-position: left 3px center;
}

#home .c1 .content .links a.tel{
	background-image: url(images/icon-tel.svg);
}

#home .c1 .content .links a.mail{
	background-image: url(images/icon-mail.svg);
}

#home .c1 .image{
	display: block;
	text-align: center;
	width: 100%;
	max-width: 500px;
	position: relative;
}

#home .c1 .image img{
	width: 100%;
	height: 100%;
}

#home .c1 .sub_title{
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	background-color: #131416e0;
	padding: 20px 10px;
	text-align: left;
	box-sizing: border-box;
}

#home .c1 .sub_title h2{
	font-size: 23px;
	line-height: 30px;
}

#home .c2{
	text-align: center;
	margin: 100px 0 0;
	position: relative;
	z-index: 9;
}

#home .c2 h2{
	margin-bottom: 25px;
}

#home .c3{
	position: relative;
	text-align: center;
	margin-top: -100px;
	padding-top: 200px;
}

#home .c3 .content{
	display: block;
	text-align: center;
	max-width: 550px;
	width: 85vw;
	margin: 0 auto 50px;
}

#home .c3 h2{
	margin-bottom: 15px;
}

#home .c3 p{
	text-align: left;
}

#home .c3 .content .button{
	margin: 30px auto 0;
}

#home .c3 .popup .popup-content{
	background-color: #fff;
	position: fixed;
    top: -200%;
	transition: all 0.4s;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 101;
	width: 80vw;
	max-width: 700px;
	padding: 40px 30px;
	box-sizing: border-box;
	height: auto;
	max-height: 90vh;
	overflow: auto;
}

#home .c3 .popup.open .popup-content{
    top: 50%;
}

#home .c3 .popup .close{
	position: absolute;
	right: 15px;
	top: 15px;
	height: 25px;
	width: 25px;
	cursor: pointer;
	background-image: url(images/common/close-black.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

#home .c3 .popup .background{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #161519c7;
	transition: all 0.4s;
	opacity: 0;
    z-index: -1;
}

#home .c3 .popup.open .background{
	opacity: 1;
    z-index: 100;
}

#home .c3 .popup h3{
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
	margin-bottom: 15px;
	text-align: left;
	color: #131416;
}

#home .c3 .popup p{
	color: #131416;
}

#home .c3 .popup .button{
	color: #fff;
	background-color: #131416;
	background-image: url(images/icon-button-white.svg);
}

#home .c3 .services{
	width: 85%;
	margin: 0 auto;
}

#home .c3 .services .link{
	text-align: left;
	margin: 20px 0;
	width: 100%;
	padding: 17px 30px;
	box-sizing: border-box;
	background-color: #1b1c1e;
	border: 1px solid #d5182c;
	text-transform: uppercase;
	font-size: 15px;
	cursor: pointer;
	position: relative;
	transition: all 0.4s;
}

#home .c3 .services .link:after{
	content:'';
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 10px;
	background-image: url(images/services-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.4s;
}

@media screen and (max-width: 450px) {
	#home .c3 .services .link:after{
		display: none;
	}
	#home .c3 .services .link{
		text-align: center;
	}
}

#home .c3 .services .link:hover{
	transform: scale(1.05);
}

#home .c3 .services .link:hover:after{
	right: 30px;
}

#home .c4{
	padding-top: 200px;
	margin: -100px 0 100px;
	text-align: center;
}

#home .c4 .image-1{
	max-width: 400px;
    margin: 0 auto;
}

#home .c4 .image-1 img{
	width: 100%;
    height: auto;
    margin-bottom: 50px;
}

#home .c4 .image-2{
	display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#home .c4 .image-2 img{
	width: 100%;
	height: auto;
	max-width: 400px;
}

#home .c4 .image-2 .content{
	text-align: left;
	margin-bottom: 50px;
	width: 100%;
	box-sizing: border-box;
}

#home .c4 .image-2 .content p{
	text-align: left;
}

#home .c4 .image-2 .content h2{
	font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: none;
    margin-bottom: 15px;
    text-align: left;
}

/* ***** CÉRAMIQUE ***** */
#ceramique .intro{
	position: relative;
	margin-top: 100px;
}

#ceramique .intro .background{
	position: absolute;
	right: 0;
	top: 250px;
	background-image: url(images/ceramique-intro-image.png);
	background-size: 100%;
	background-position: top left;
	background-repeat: no-repeat;
	width: 65%;
	height: 500px;
}

#ceramique .intro .content{
	max-width: 550px;
	margin: 162px auto 203px 0;
	text-align: left;
}

#ceramique .intro h1{
	font-size: 35px;
    line-height: 48px;
    margin-bottom: 10px;
}

#ceramique .intro p{
	font-size: 18px;
    line-height: 27px;
}

@media screen and (max-width: 400px) {
  #ceramique .intro .background{
	top: 315px;
	width: 90%;
  }
}

#ceramique .c2{
	position: relative;
    padding: 20px 40px;
    box-sizing: border-box;
    width: 100%;
    background-color: #1b1c1ecc;
    border-top: 3px solid #d5182c;
	max-width: 670px;
	margin: 0 auto;
}

#ceramique .c2 h2{
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
	margin-bottom: 15px;
}

#ceramique .c2 p{
	line-height: 26px;
	text-align: justify;
}

#ceramique .c3{
	position: relative;
	text-align: center;
	margin-top: 150px;
}

#ceramique .c3>.content{        
	height: auto;
	padding: 45px 3% 45px 8%;
	box-sizing: border-box;
	width: 40%;    
	position: unset;
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#ceramique .c3 h2{
	margin-bottom: 15px;
}

#ceramique .c3 .button{
	margin: 30px auto 0;
}

#ceramique .c3 .links .link{
	text-align: left;
    margin: 20px auto;
    width: 85%;
    padding: 17px 15px;
    box-sizing: border-box;
	background-color: #1b1c1e;
	border: 1px solid #d5182c;
    text-transform: uppercase;
    font-size: 15px;
	cursor: pointer;
	position: relative;
	transition: all 0.4s;
}

#ceramique .c3 .links .link .icon{
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-image: url(images/ceramique-links-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.4s;
}

#ceramique .c3 .links .link:hover{
	transform: scale(1.05);
}

#ceramique .c3 .links .item.open .icon{
	transform: translateY(-50%) rotate(180deg);
}

#ceramique .c3 .links .content{
	margin: 20px auto;
    width: 80%;
    text-align: left;
	height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
	transition: all 0.6s;
}

#ceramique .c3 .links .item.open .content{
    padding: 0 30px 30px 0;
	height: auto;
	opacity: 1;
}

#ceramique .c3 .links .content ul{
	list-style: none;
}

#ceramique .c3 .links .content li{
	padding-left: 20px;
	position: relative;
	margin: 9px 0;
	line-height: 20px;
	font-size: 15px;
}

#ceramique .c3 .links .content li:after{
	content: '';
	background-color: #d5182c;
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: 6px;
	border-radius: 10px;
}

#ceramique .c4{
	margin: 150px 0 100px;
	text-align: center;
}

#ceramique .c4 .image{
	display: block;
    width: 400px;
	max-width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 0 auto 50px;
}

#ceramique .c4 .image img{
	width: 100%;
    height: auto;
}

#ceramique .c4 .content{
	width: 100%;
	max-width: 550px;
    margin: 0 auto;
	display: block;
	text-align: left;
}

#ceramique .c4 .content h3{
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
	margin-bottom: 10px;
	margin-top: 30px;
}

/* ***** RESERVATION FORM ***** */
#reservation-form .background{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #161519c7;
	transition: all 0.4s;
	opacity: 0;
    z-index: -1;
}

#reservation-form.open .background{
	opacity: 1;
    z-index: 100;
}

#reservation-form .pop-up{
	background-color: #fff;
	position: fixed;
    top: -200%;
	transition: all 0.4s;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 101;
	width: 80vw;
	max-width: 700px;
	padding: 40px 10px;
	box-sizing: border-box;
	height: auto;
	max-height: 90vh;
	overflow: auto;
}

#reservation-form.open .pop-up{
    top: 50%;
}

#reservation-form h2{
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	text-transform: none;
	margin-bottom: 15px;
	text-align: left;
	color: #131416;
}

#reservation-form form{
	text-align: center;
}

#reservation-form label{
	display: block;
    width: 100%;
    color: #131416;
    font-size: 14px;
	margin-bottom: 5px;
}

#reservation-form .form_part{
	margin-bottom: 25px;
	text-align: left;
	position: relative;
}

#reservation-form .form_part .important{
	position: absolute;
    bottom: -15px;
    font-size: 10px;
    color: #b5b5b5;
    left: 0px;
}

#reservation-form input, #reservation-form select{
	width: 100%;
	font-size: 15px;
	padding: 6px 8px;
	box-sizing: border-box;
	font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #131416;
	border: 1px solid #161519;
	border-radius: none;
}

#reservation-form textarea{
	width: 100%;
	height: 100px;
	min-width: 100%;
	max-width: 100%;
	min-height: 50px;
	font-size: 15px;
	padding: 6px 8px;
	box-sizing: border-box;
	font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #131416;
	border: 1px solid #161519;
	border-radius: none;
}

#reservation-form .small{
    font-size: 9px;
	color: #b5b5b5;
	text-align: left;
	line-height: 10px;
	margin-top: -25px;
}

#reservation-form .small+.small{
	margin-top: 8px;
}

#reservation-form .opt_in{
	text-align: left;
	margin-top: 20px;
}

#reservation-form .opt_in input{
min-height: unset;
display: inline-block;
width: 13px;
max-width: unset;
min-width: unset;
margin-right: 5px;
vertical-align: baseline;
transform: translateY(1px);
border-radius: none;
}

#reservation-form .opt_in label{
text-transform: none;
display: inline-block;
width: unset;
vertical-align: baseline;
margin: 0;
cursor: pointer;
}

#reservation-form .button{
	color: #fff;
	background-color: #131416;
	background-image: url(images/icon-button-white.svg);
	width: fit-content;
	cursor: pointer;
	padding: 5px 40px 5px 15px;
}

#reservation-form .button:hover{
	padding: 5px 50px 5px 15px;
}

#reservation-form .pop-up .close{
	position: absolute;
	right: 15px;
	top: 15px;
	height: 25px;
	width: 25px;
	cursor: pointer;
	background-image: url(images/common/close-black.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}

#reservation-form .g-recaptcha{
	max-width: 100%;
    overflow: scroll;
}

.form_response{
position: fixed;
bottom: 50px;
right: -700px;
background-color: #74b643;
padding: 20px 50px;
-webkit-box-shadow: 0px 0px 4px 2px #c0c0c0;
box-shadow: 0px 0px 4px 2px #c0c0c0;
animation-name: response;
animation-duration: 6s;
animation-delay: 1s;
z-index: 100;
}

.form_response p{
	color: #fff;
}

.form_response.error{
background-color: #a34040;
}

@keyframes response {
0% {right: -700px;}
10% {right: 0;}
90% {right: 0;}
100% {right: -700px;}
}


/* ***** Mentions légales ***** */


#legal{
text-align:center;
margin-bottom:100px;
padding-bottom:30px;

}

#legal .main_width{
padding-top:200px;
padding-bottom:30px;
}


#legal h1{
text-align:center;
background-position:bottom center;
margin-bottom:73px;
}

#legal h2{
background-position: 0px 7px;
position: relative;
bottom: 0px;
margin-top: 14px;
margin-bottom: 14px;
font-size:28px;
line-height:30px;
background-position: bottom left;
padding-bottom: 7px;
}

#legal h3{
line-height:23px!important;
padding-bottom: 6px!important;
}

#legal p{
margin-bottom:5px;
}

#legal p span{
display:inline-block;
vertical-align:top;
width:166px;
text-decoration:underline;
}

#legal .c0{
width:600px;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
text-align:left;
padding:1%;
margin-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c1{
display:inline-block;
vertical-align:top;
width:100%;
padding:1%;
border:1px solid #c0c0c0;
text-align:left;
margin-bottom:30px;
min-height:262px;
background-color:#1b1c1e;
border-radius:13px;
}

#legal .c1.last{
margin-right:0px;
}

#legal .c1 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2{
width:100%;
padding:1%;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
margin-bottom:30px;
height:600px;
overflow:auto;
padding-bottom:30px;
background-color:#1b1c1e;
border-radius:13px;
}

#legal .c2 h3{

}

#legal .c2 h4{

}

#legal .c2 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2 ul li{
margin-bottom:5px;
font-size:13px;
line-height:22px;
padding-left:15px;
list-style-type:none;
}

#legal .c2 ul ul li{
padding-left:30px;
}

#legal .c2.last{
margin-right:0px;
}


/* ***** 404 ***** */

#e404{
text-align:center;
margin-bottom:100px;
padding-bottom:30px;
}

#e404 .main_width{
padding-top:200px;
padding-bottom:30px;
}

#e404 h1{
	text-align:center;
background-position:bottom center;
margin-bottom:73px;
}


/* *********************** FOOTER *********************** */


#footer{
width:100%;
text-align: center;
padding-top: 100px;
border-top: 1px solid #ffffffb0;
}

#footer .content{
display: block;
width: 100%;
max-width: 300px;
margin: 0 auto 50px;
text-align: left;
}

#footer .content .logo{
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

#footer .content .logo img{
	width: 100%;
	height: auto;
}

#footer .links{
	margin-top: 50px;
}

#footer .links a{
	display: block;
	text-decoration: none;
	text-align: left;
	padding-left: 25px;
	font-size: 15px;
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: left center;
}

#footer .links a+a{
	margin-top: 15px;
}

#footer .links a.map{
	background-image: url(images/icon-map.svg);
	background-size: 10px;
	background-position: left 3px center;
}

#footer .links a.tel{
	background-image: url(images/icon-tel.svg);
}

#footer .links a.mail{
	background-image: url(images/icon-mail.svg);
}

#footer .image{
display: block;
width: 100%;
max-width: 400px;
margin: 0 auto;
}

#footer .image img{
	width: 100%;
	height: auto;
}

#footer .image .infos{
	position: relative;
	text-align: center;
	background-color: #1b1c1ecc;
	border-top: 3px solid #d5182c;
	top: 20px;
	left: 0;
	width: 100%;
	padding: 20px 16px;
	box-sizing: border-box;
	max-width: 450px;
}

#footer .image .infos p{
	text-align: left;
	font-size: 14px;
}

#footer .image .infos h2{
	font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: none;
    margin-bottom: 5px;
    text-align: center;
}

#footer p.copyright{
color:white;
text-align:center;
font-size:14px;
margin-top:100px;
padding-bottom:15px;
margin-bottom:0px;
}

#footer p.copyright a{
color:white;
text-decoration:underline;
}

#footer p.copyright+a{
width: 100px;
display: block;
margin: 0 auto;
padding-bottom: 30px;
}

#footer p.copyright+a img{
width: 100%;
height: auto;
opacity: 0.6;
}


/* ***** CAPTCHA ***** */

.grecaptcha-badge { 
	visibility: hidden; 
}


/* ***** COOKIES ***** */

#cookieChoiceInfo{
	box-sizing: border-box;
}

#cookieChoiceInfo a{
	display: inline-block;
}

/* ***** AOS ***** */

.fade_container {
    overflow-x: hidden;
}

.microdata{
	display: none;
}