@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 {
	
}

/*-----------------------------------------------------------------
 -----------------------------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/ACD45_WIP.png");
	background-clip: content-box;
	background-size: contain;
}
@media (orientation:landscape){
.home_container_titre_sous-titre{

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

.home_titre {
	color: rgba(0,12,112,1.00);
	text-shadow: 0px -4px 2px white;
	
	padding-top: 25vw;
}
.home_titre h6{
	font-size: 3vw;
	alignment-baseline: baseline;
	
	margin-top: -2.8em;
	padding-left: 60vw;
}
@media (orientation:landscape){
	.home_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: 7vw;
	
	font-weight: bold;
	font-size-adjust: 0.9;
}

.home_accroche {
	color: rgba(217,239,254,1.00);
	text-shadow: -1px 1px 1px rgba(0,12,112,1.00);
	
	padding-top: 2vh;
	
	font-size-adjust: 0.9;
}


/*-----------------------------------------------------------------
 -----------------------------PARTENAIRES--------------------------
------------------------------------------------------------------*/

.home_container_partners {
	display: flex;
	flex-direction: column;
	
	color: rgba(0,12,112,1.00);
	
	margin-top: 20px;
}
@media (min-width: 950px) {
	.home_container_partners {
    width: 900px;
	
		margin-left: auto;
		margin-right: auto;
	}
}

.home_partners_logos {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	-webkit-align-items: center;
}

.home_partners_logos img {
	width: 115px;
	height: auto;
}
@media (orientation:landscape) {
	.home_partners_logos img {
	width: 200px;
	height: auto;
}
}

/*-----------------------------------------------------------------
 -----------------------------AVIS GOOGLE--------------------------
------------------------------------------------------------------*/

.home_container_reviews {
	/*background-color: pink;*/
	
	color: rgba(0,12,112,1.00);
	
	width: 95%;
	
	margin-top: 20px;
}
@media (min-width: 950px) {
	.home_container_reviews {
    width: 900px;
	
		margin-left: auto;
		margin-right: auto;
	}
}
.home_container_reviews h1 {
	font-size: 40px;
}

.google_reviews {
	width: 95%;
	height: 500px;
	
	overflow: hidden;
	-webkit-overflow: hidden;
}


/*-----------------------------------------------------------------
 -----------------------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: 10px;
	padding-bottom: 10px;
}

.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: 9px;
}
.footer_container_contact p{
	color: white;
	
	
	font-size: 9px;
}

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

.footer_container_RS img{
	height: 25px;
	width: 25px;
		
	margin: 5px;
}

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