@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}
html{
	scroll-behavior: smooth;
}
body{
	position: relative;
}
nav{
	position: fixed;
	width: 100%;
	height: 50px;
	background: white;
	text-align: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.05);
}
nav .wrapper{
	position: relative;
	max-width: 750px;
	padding: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wrapper .logo{
	cursor: pointer;
	font-weight: 600;
	font-size: 25px;
	padding: 10px 0 0 0;
}
.wrapper .logo a{
	color: black;
}
#nav-open{
	padding-right: 20px;
}
.nav-button:hover{
	cursor: pointer;
}
nav .wrapper .nav-latteral{
	display: flex;
	padding-right: 0;
}
nav .wrapper .nav-latteral .nav-link{
	padding: 11px 0 0 0;
	list-style: none;
	cursor: pointer;
	border-radius: 20px;
	color: black;
}
nav .wrapper .nav-latteral .nav-link a{
	color: black;
	padding: 10px;
	border-radius: 20px;
}
nav .wrapper .nav-latteral .nav-link a:hover{
	text-decoration: underline;
}
.nav-button{
	display: none;
}
#paragraphe{
	width: 80%;
	align-items: center;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
#paragraphe .paragraphe-block{
	text-align: justify;
	align-items: center;
	justify-content: center;
	max-width: 750px;
	display: grid;
	padding: 60px 0 0 0;
}
#paragraphe .paragraphe-block p{
	font-size: 1.3rem;
	padding: 30px 30px 0 30px;
}
#paragraphe .paragraphe-block h1{
	text-align: center;
	padding: 30px 0 30px 0;
	font-size: 1.9rem;
}
#paragraphe .paragraphe-block h3{
	padding: 0 0 10px 0;
}
footer{
	background: #F8F8F8;
	color: darkgray;
	text-align: center;
	align-items: center;
}
.footer-logo{
	padding: 20px 0 10px 0;
	font-size: 2rem;
	font-weight: 700;
}
.bas-footer{
	padding-bottom: 35px;
}
.links-footer{
	padding-bottom: 20px;
}
.links-footer a{
	text-decoration: underline;
	color: darkgray;
	padding: 5px;
}
.links-footer a:hover{
	text-decoration: underline;
	color: black;
	padding: 5px;
}

#popup{
	position: fixed;
	border-radius: 20px 20px 0 0;
	bottom: -100%;
	left: 5px;
	right: 5px;
	background: #FCFBFB;
	color: black;
	padding: 0 32px;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
	z-index: 8;
	transition: 400ms;
	font-weight: 500;
}
#popup .contenu-cookie-box{
	display: flex;
	text-align: left;
	justify-content: center;
}
#popup.active{
	bottom: 0;
}
.conteneur-fermer{
	right: 0;
	text-align: right;
	padding: 0;
	margin: 3px -23px 0 0;
}
.fermer-popup{
	color: lightgrey;
	cursor: pointer;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.fermer-popup:hover{
	color: black;
}
.fermer-popup .fa-times{
	font-size: 18px;
}
.paragraphe-cookie{
	margin: 0 5px 24px 2px;
	line-height: 1.5;
	max-width: 1350px;
}
.cookie-container .contenu-cookie-box .paragraphe-cookie{
	
}
.cookie-container .contenu-cookie-box .paragraphe-cookie a{
	color: black;
	text-decoration: underline;
}
.contenu-btn{
	display: flex;
	margin: 0 0 24px 0;
}
 .contenu-btn .conteneur-cookie-btn .cookie-btn{
	background: #d6f8d6;
	border: 0;
	color: green;
	font-size: 18px;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 10px;
}
.cookie-btn:hover{
	cursor: pointer;
}

@media screen and (max-width: 1490px){
	#popup .contenu-cookie-box{
		display: grid;
	}
	.paragraphe-cookie{
		margin: 1px 5px 16px 2px;
	}
}

@media screen and (max-width: 1190px){
	#nav-open,
	#nav-close{
		display: flex;
	}
	nav{
		position: absolute;
	}
	nav .wrapper{
		top: 5px;
	}
	nav .wrapper .logo{
		display: block;
		font-size: 27px;
		padding: 3px 0 5px 15px;
	}
	nav .wrapper .nav-latteral{
		position: fixed;
		display: block;
		top: 0;
		left: -100%;
		transition: all 0.3s ease;
		background: white;
		width: 272px;
		height: 100vh;
		z-index: 7;
		overflow-y: auto;
		line-height: 50px;
		padding: 20px 10px;
		box-shadow: 0 15px 15px rgba(0,0,0,0.15);
		font-size: 1.5rem;
	}
	
	nav .wrapper .nav-latteral #nav-close{
		position: relative;
		padding-left: 225px;
		padding-bottom: 30px;
	}
	#nav-open{
		display: block;
	}
	#nav-open.active{
		position: relative;
		display: none;
	}
	nav .wrapper .nav-latteral .nav-link a:hover{
		color: black;
		background: none;
		border-radius: 20px;
		cursor: pointer;
	}
	nav .wrapper .nav-latteral .nav-link{
		display: grid;
		text-align: left;
		padding: 0;
		margin: 0;
	}
	nav .wrapper .nav-latteral .nav-link:hover{
		background-color: none;
	}
	.nav-link::-webkit-scrollbar{
		width: 0px;
	}
	#nav-wrapper{
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		background-color: rgba(0,0,0,0.6);
		display: none;
		z-index: 6;
	}
	#nav-wrapper.active{
		display: block;
	}
	#nav-close:hover{
		cursor: pointer;
	}
}

@media screen and (max-width: 790px){
	#popup .contenu-cookie-box{
		display: grid;
	}
	.cookie-box{
		margin: -40px 0 0 0;
		text-align: center;
	}
	.contenu-btn{
		display: flex;
		width: 300px;
		max-width: 100%;
	}
	.cookie-btn{
		margin: 0 8px 15px 0;
	}
	.fermer-popup{
		margin-bottom: 15px;
		padding: 10px 26px 0 26px;
	}
	.conteneur-fermer{
		margin: 3px -50px 0 0;
	}
}
@media (max-width: 545px){
	.title-view-qrbot{
  		width: 280px;
		padding: 18px;
	}
	.view-qrbot-container{
  		width: 280px;
		padding: 18px;
	}
}


.to-top{
	background: white;
	position: fixed;
	bottom: 16px;
	right: 40px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: black;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transition: all .4s;
	z-index: 3;
}
.to-top.active{
	bottom: 90px;
	pointer-events: auto;
	opacity: 1;
}
.arrow-top{
	cursor: pointer;
	z-index: 3;
}
.to-contact-page{
	position: fixed;
	right: 40px;
	bottom: 28px;
	width: 50px;
	height: 50px;
	color: black;
	font-size: 28px;
	border: 1px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	cursor: pointer;
	background: white;
	border-radius: 50%;
	transition: all 0.2s ease;
	z-index: 3;
}

