@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------------
 -----------------------------GENERAL--------------------------
------------------------------------------------------------------*/
::-webkit-scrollbar{
    width: 0px;
	background: transparent;
	display: none;
}

html {
	/*background: #00040B;*/
	
	font-family: "sans-serif";
	cursor: default;
	
	width: 100%;
	height: 100%;
}
header {
	width: 100%;
}
	navbar {		
		
}
	navbar ul {
		
	}
	navbar li {
		
	}
	navbar a {
		
	}
	

body {
	text-align: center;
	
	width: 100%;
	height: 100%;
	
	margin-left: -0.03em;
}
h1 {
	font-size: 45px;
}
h2 {
	
}
h3 {
	
}
h4 {
	
}
h5 {
	
}
h6 {

}
p {
    
}
li {
	
}
dd {
	
}
footer {
	
}

/*-----------------------------------------------------------------
 -----------------------------BACKGROUND--------------------------
------------------------------------------------------------------*/



/*-----------------------------------------------------------------
 -----------------------------header--------------------------
------------------------------------------------------------------*/

header {
	display: flex;
	flex-direction: column;
	
	position:static;
	top: 0px;
}

.header_navbar {
	background-color: white;
	
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	flex-wrap: wrap;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	
	width: 100%;
	height: 70px;
	
	box-shadow: inset 0px -2px 5px rgba(0,156,229,0.3);
}
@media (orientation: landscape) {
	.header_navbar {
		position:absolute;
	}
}
@media (min-height: 900px) {
	.header_navbar {
		position:fixed;
	}
}

.header_titre {
	/*background-color: orange;*/

	display:block;
	
	position: relative;
	top: 5px;
	left: auto;
	right: auto;
	
	line-height: 0.6;
}

#acd {
	color: rgba(0,12,112,1.00);
	
	top: auto;
	bottom: auto;
	right: auto;
	
	font-size: 35px;
	margin-top: 15px;
}

#bfr {
	color: rgba(0,156,229,0.88);
	
	position: relative;
	top: -28px;
	left: 60px;
	
	font-size: 15px;
}

.burger_menu_icon {
	background-color: white;
	
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	
	position: absolute;
	left: 15px;
	

	width: 30px;
	height: 30px;
	border: none;
}

.burger_menu_icon span{
	background-color: rgba(0,12,112,1.00);
	
	display: block;
	z-index: 1001;
	
	position: absolute;
	
	width: 25px;
	height: 3px;
	
	pointer-events: none;
	
	transition: 0.1s ease-out;
}

.burger_menu_icon span:nth-child(1){
	transform: translateY(-7px);
}
.burger_menu_icon span:nth-child(3){
	transform: translateY(7px);
}

.burger_menu_icon.active span:nth-child(1) {
	transform: translateY(0) rotateZ(-135deg);
}
.burger_menu_icon.active span:nth-child(2) {
	opacity: 0;
	transition: 0.1s 0s ease-out;
}
.burger_menu_icon.active span:nth-child(3) {
	transform: translateY(0) rotate(135deg);
}

.menu_links_container {
	background-color: rgba(255,255,255,0.99);
	
	position: fixed;
	z-index: 999;
	
	display: none;
	flex-direction: column;
	text-align: center;
	align-items: center;
	-webkit-align-items: center;
	
	padding-top: 70px;
	
	width: 101%;
	height: 280px;
	
	box-shadow: inset -2px 0px 5px rgba(0,156,229,0.3);
	
	transform: translateY(-100%);
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.menu_links_container.show {
	transform: translateY(0%);
	opacity: 1;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.menu_links_container a{
	color: rgba(217,239,254,1.00);
	text-shadow: -1px 1px 1px rgba(0,12,112,1.00);
	
	font-size: 25px;

	line-height: 2.5;
	
}

.menu_links_container a:active {
	box-shadow: #D6D6E7 0 3px 7px inset;
	transform: translateY(3px);
}
	
/*-----------------------------------------------------------------
 -----------------------------BODY--------------------------
------------------------------------------------------------------*/

.html {
	max-width: 100%;
}

.body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	padding: 0;
	margin: 0;
}

/*-----------------------------------------------------------------
 -----------------------------TITRE ET ACCROCHE--------------------------
------------------------------------------------------------------*/

.home_container_titre_accroche {
	/*background-color: red;*/
	
	display: flex;
	flex-direction: column;
	width: 100%;
	
	padding-top: 70px;
}

.home_container_titre_sous-titre{
	/*background-color: aqua;*/

	width: 350px;
	height: 350px;
	
	position: relative;
	align-self: center;
	
	background-image: url("../Images/Logo_ACD45_dimm-min.png");
	background-clip: content-box;
	background-size: contain;
}
@media (orientation:landscape){
.contact_container_titre_sous-titre{

	width: 300px;
	height: 300px;
	}
.contact_titre h1{
	font-size: 40px;
	}	
}

.home_titre {
	color: rgba(0,12,112,1.00);
	text-shadow: 0px -4px 2px white;
	
	padding-top: 75px;
}
.home_titre h6{
	font-size: 15px;
	alignment-baseline: baseline;
	
	margin-top: -35px;
	padding-left: 205px;
}
@media (orientation:landscape){
	.contact_titre h6{
	font-size: 15px;
	padding-left: 160px;
	}
}

.home_sous-titre {
	color: rgba(0,12,112,1.00);
	text-shadow: 0px -4px 2px white;
	
	margin-top: 5px;
	
	font-weight: bold;
	font-size: 25px;
}

.home_accroche {
	color: rgba(217,239,254,1.00);
	text-shadow: -1px 1px 1px rgba(0,12,112,1.00);
	
	font-size: 28px;
}


/*-----------------------------------------------------------------
 -----------------------------PRESTA SELECTOR--------------------------
------------------------------------------------------------------*/


.presta_container_prestarif {
	background-color: rgba(217,239,254,1.00);
	
	padding-bottom: 5px;
	
	height: 1020px;
	
	
	box-shadow: 0px -5px 5px 1px rgba(0,140,255,0.2);
	border-radius: 25px 25px 0px 0px;
}
@media (min-width: 800px) {
	.presta_container_prestarif{
		height: 890px;
	}
}

.presta_container_prestarif h5{
	color: black;
	font-size: 12px;
}

.presta_container_titre {
	color: white;
	text-shadow: 2px 2px 2px rgba(0,12,112,1.00);
	
	margin-bottom: -1.5em;
}

.presta_selector {
	/*background-color: rgba(255,255,255,0.4);*/
	
	display: flex;
	flex-direction: row;
	
	height: 650px;
	
	margin-top: -10px;
	margin-left: auto;
	margin-right: auto;
	
	overflow-x: scroll;
	-webkit-overflow-x: scroll;
	overflow-y: hidden;
	-webkit-overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-scroll-snap-type: x mandatory;
	
	gap: 15px;
	white-space: nowrap;
	
	box-shadow: 0px 20px 20px -5px rgba(0,12,112,0.2);
}
@media (min-width: 800px) {
	.presta_selector {
		align-self: center;
		
		width: 670px;
		
		margin-left: auto;
		margin-right: auto;
		
		gap: 5px;
	}
}
@media (min-width: 1200px) {
	.presta_selector {
		align-self: center;
		
		width: 1060px;
		
		margin-left: auto;
		margin-right: auto;
		
		gap: 5px;
	}
}
@media (min-width: 1500px) {
	.presta_selector {
		align-self: center;
		
		width: 1410px;
		
		margin-left: auto;
		margin-right: auto;
		
		gap: 5px;
	}
}

.presta_selector::-webkit-scrollbar {
    display: none; /* Cacher la barre de défilement sur Chrome/Safari */
}

.presta_titre {
	/*background-color: aqua;*/
	background-color: rgba(217,239,254,1);
	
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	
	color: rgba(0,12,112,1.00);
	
	width: 305px;
	height: 70px;
	
	margin: 10px;
	
	box-shadow: inset 0px 2px 10px -5px rgba(0,12,112,1.00);
}

.presta_picto {
	/*background-color: coral;*/
	
	height: 120px;
	margin-top: 1em;
	margin-bottom : 1em;
}

.presta_picto img{
	background-color: rgba(217,239,254,1.00);
	
	object-fit: contain;
	
	box-shadow: 0px 0px 5px 1px rgba(0,12,112,0.4);
}

.presta_detail {
	/*background-color: antiquewhite;*/
	
	display: block;
	
	text-align: start;
	white-space: normal;
	
	width: 100%;
	height: 450px;
}

.presta_details {
	background-color: rgba(217,239,254,1);
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	text-align: center;
	
	white-space: wrap;
	
	color: rgba(0,12,112,1.00);
	font-size: 16px;
	
	width: 300px;
	height: 330px;
	
	margin: 15px;
	
	box-shadow: inset 0px 2px 10px -5px rgba(0,12,112,1.00);
}

#presta_details_int {
	display: flex;
	flex-direction: column;
	text-align: center;
}
#presta_details_int_list{
	text-align: left;
}
#presta_details_ext {
	display: flex;
	flex-direction: column;
	text-align: center;
}
#presta_details_ext_list {
	text-align: left;
}
#presta_details_int-ext {
	display: flex;
	flex-direction: column;
	text-align: center;
}
#presta_details_int-ext_list {
	text-align: left;
}

.presta_tarif {
	/*background-color: blue;*/
	
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	
	color: rgba(0,12,112,1.00);
	font-weight: bold;
	font-size-adjust: 0.7;
	
	height: 50px;
	
	position: relative;
}

.presta_int-ext, .presta_ext, .presta_shampoo, .presta_phares, .presta_polish, .presta_ceramic {
	background-color: rgba(255,255,255,1);
	
	scroll-snap-align: center;
	-webkitscroll-snap-align: center;
	
	width: 360;
	height: 640px;
	
	margin: 10px;

	box-shadow: 0px 0px 5px 1px rgba(0,12,112,0.4);
}
@media (orientation: landscape){
	.presta_int-ext, .presta_ext, .presta_shampoo, .presta_phares, .presta_polish, .presta_ceramic {
		height: 630px;
	}
}

.presta_more_info {
	color: rgba(0,12,112,1.00);
	font-size-adjust: 0.5;
}



/*-----------------------------------------------------------------
--------------------------BOUTONS CAROUSEL------------------------
-------------------------------------------------------------------*/


.carousel-button {
	background-color: rgba(217,239,254,1.00);
	
	color: rgba(0,12,112,1.00);
	font-size: 20px;
	
	position: absolute;
	margin-top: 145px;
	
	padding: 10px;
	
    cursor: pointer;
	line-height: 0.5;
	
    z-index: 500;
	
	border: none;
	border-radius: 20px;
}

.carousel-button.left {
    left: 40px;
}

.carousel-button.right {
    right: 40px;
}

@media (orientation: landscape) {
	.carousel-button {
		margin-top: 150px;
	}
	.carousel-button.left {
    margin-left: 55px;
}

	.carousel-button.right {
		margin-right: 55px;
}
}



/*-----------------------------------------------------------------
------------------------------BULLETPOINTS------------------------
-------------------------------------------------------------------*/


.carousel-indicators {
    display: flex;
    justify-content: center; /* Centrer les bullet points sous le carrousel */
    margin-top: 17.5px; /* Un peu d'espace entre le carrousel et les bullet points */
}
@media (orientation:landscape) {
	.carousel-indicators {
    display: none;
}
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    margin: 0 5px; /* Espace entre les points */
    border-radius: 50%;
    background-color: white; /* Couleur de base des bullet points */
    transition: background-color 0.3s ease; /* Transition pour le changement de couleur */
    cursor: pointer; /* Permet de cliquer sur les bullet points */
}

.carousel-indicator.active {
    background-color: #000C70; /* Couleur active pour le bullet point */
}


/*-----------------------------------------------------------------
------------------BOUTONS CONTACT ET DEVIS------------------------
-------------------------------------------------------------------*/

.presta_buttons_container {
	/*background-color: orange;*/
	
	difplay: flex;
	justify-content: space-evenly;
	position: relative;
}

.presta_buttons_container a{
	text-decoration: none;
}

.presta_contact_button {
	width: 80px;
	margin-right: 10px;
	margin-left: 10px;
	
	align-items: center;
	-webkit-align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background-color: #FCFCFD;
	border-radius: 4px;
	border-width: 0;
	box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
	box-sizing: border-box;
	color: rgba(0,12,112,1.00);
	cursor: pointer;
	display: inline-flex;
	font-family: sans-serif;
	height: 48px;
	justify-content: center;
	line-height: 1;
	list-style: none;
	overflow: hidden;
	-webkit-overflow: hidden;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: box-shadow .15s,transform .15s;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	will-change: box-shadow,transform;
	font-size-adjust: 0.5;
}
.presta_contact_button:focus {
	box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}
.presta_contact_button:hover {
	box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
	transform: translateY(-2px);
}
.presta_contact_button:active {
	box-shadow: #D6D6E7 0 3px 7px inset;
	transform: translateY(2px);
}

.presta_devis_button {
	width: 80px;
	margin-right: 10px;
	margin-left: 10px;
	
	align-items: center;
	-webkit-align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background-color: #FCFCFD;
	border-radius: 4px;
	border-width: 0;
	box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
	box-sizing: border-box;
	color: rgba(0,12,112,1.00);
	cursor: pointer;
	display: inline-flex;
	font-family: sans-serif;
	height: 48px;
	justify-content: center;
	line-height: 1;
	list-style: none;
	overflow: hidden;
	-webkit-overflow: hidden;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: box-shadow .15s,transform .15s;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	will-change: box-shadow,transform;
	font-size-adjust: 0.5;
}

.presta_devis_button:focus {
	box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.presta_devis_button:hover {
	box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
	transform: translateY(-2px);
}

.presta_devis_button:active {
	box-shadow: #D6D6E7 0 3px 7px inset;
	transform: translateY(2px);
}


/*-----------------------------------------------------------------
 -----------------------BOUTON HAUT DE PAGE------------------------
------------------------------------------------------------------*/

.container_top_button {
	display:flex;
	justify-content:center;
}

#TOP {
	display: none; /* Hidden by default */
 
	position: fixed; /* Fixed/sticky position */
	bottom: 30px;
	
	margin-left: auto;
	margin-right: auto;
	z-index: 800;
	
	border: none;
	outline: none;
	
	background-color: rgba(0,12,112,0.7); /* Set a background color */
	color: rgba(217,239,254,1); /* Text color */
	
	padding: 8px 10px 6px 10px; /* Some padding */
	font-size: 20px; /* Increase font size */
	
	cursor: pointer; /* Add a mouse pointer on hover */
	
	/*transform: rotate(180deg);*/
}

#TOP:hover {
	background-color: #85FFFD;
	color: #5a0001;
}


/*-----------------------------------------------------------------
 -----------------------------FOOTER--------------------------
------------------------------------------------------------------*/


footer {
	background-color: black;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	-webkit-align-items: center;
	
	width: 100%;
	bottom: 0px;
	padding-top: 0.2em;
	padding-bottom: 1em;
}

.footer_container_contact {
	/*background-color: aqua;*/
	
	text-decoration: none;
	
	display: flex; 
	flex-direction: column;
	justify-content: center;
	
	width: 100%;
}

.footer_container_contact a{
	color: white;
	
	font-size: 8px;
}
.footer_container_contact p{
	color: white;
	
	
	font-size: 8px;
}

.footer_container_RS {
	/*background-color: antiquewhite;*/
	
	display: flex; 
	flex-direction: row;
	justify-content: center;
	align-self: center;
	
	margin-top: 0.3em;
	margin-left: 0.4em;
	
	width: 100%;
}

.footer_container_RS img{
	height: 1.5em;
	width: 1.5em;
	
	margin: 0.2em;
}

.footer_copyright {
	margin:-0.5em;
}

.footer_copyright p{
	color: white;
	
	font-size: 8px;
}