

/* quelques réglages globaux */
:root {
	--color: black;
	--bgcolor: #e0e0e0;
	--low-color: white;
	--high-color: #FF007A;
}


/* réglages généraux de la page */
html, body {
	font-size: 14px; /* valeur de base d'1 rem */
}
html{
  scroll-behavior: smooth;
}
body {
	font-family: 'SpratVF.woff2', Sprat, Helvetica, sans-serif;
	/*font-family: 'Courier New',Courier,monospace;*/	
	background-color:white;
	color: var(--color);
	margin: 0; padding: 0;
    width:100%; height:100%;
}

/* pour faciliter les paddings... */
*, *:before, *:after {/* * c'est TOUS les éléments de la page... */
    box-sizing: border-box; /* règle les ennuis de padding */
    outline:none; /* pas de cadre de sélection */
}


/* css reset minimal */

/*a { color:var(--high-color); text-decoration: none; } /* les liens */
/*a:hover { color:lightgray; } /* les liens au survol */

/* listes à puce */
/*nav li { padding:0; } */

/* pour que les images s'ajustent toutes seules */
/*img, video { width:100%; }*/

/*.square-media { aspect-ratio:1 / 1; object-fit:cover; }*/



/* votre style */

main{
	width: 100vw;
  overflow-x: auto;
 	overflow-x: auto;
}


h1{
	font-size: 1rem;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
}


header a{
 	text-decoration: none;
 	color: black;
 }

header{ 
	background-color: white;
	padding: 0;
	margin: 0;
}

header{
	position: relative;
	
}


header menu{
	width: calc(100%);
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	

}

header menu li {
	
	display:flex; 
	margin: 1rem;
	flex-wrap:wrap;
	justify-content: center;
	align-items:center;

	transition-duration: .3s;
}

header menu li:hover,
header menu a:hover { 
	color: lightgray;
}


.logo{
	display: flex;
	height: 30px;
	justify-content: center;
	margin: 1rem;
}

.logo img{
	max-width:100%;
}

.contact{
	position: absolute;
  right: 2rem;
  top: 0.2rem;
}

.contact img{
	height: 2rem;
}

.contact_fiche{
	display: none;
	position: absolute;
	width: 50rem;
  right: 20rem;
  top: 0.2rem;
  font-size: 2rem;
  text-align: center;
  background-color: white;
  padding: 2rem;
  z-index: 20;
}

.contact_fiche a {
	text-transform: uppercase;
	color: orange;
}

.menu_logo{
	display: none;
	position: absolute;
  left: 2rem;
  top: 0.2rem;
}

.menu_logo img{
	height: 2rem;
}


h3{
	white-space: nowrap;
	font-size:4rem;
	margin: 1rem;

}

/* diaporama */



.splide_track {
	align-content: center;
	width: 100vw;
  overflow-x: auto;
}

.splide_list{
	display: flex;
	margin: auto;
}


.splide_slide{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;

	height: 330px;
	
	margin-right: 18rem;
}

.splide_slide h3{
	position: absolute;
	z-index:-1;
}

.splide_slide article{
	margin: 2rem;
	width:90px;

}

.splide_slide article img{
	max-width: 100%;
	position: relative;
}

footer{
	display:flex; 
	flex-wrap:wrap;
	justify-content: center;
	align-items:center;
	

}

footer p{
	position: sticky;
	bottom: 0%;
}









/* la mosaïque de medias */


/* media-queries : altérer le style sous certaines conditions seulement */
@media screen and (max-width:720px){
	header menu {
		display:block;
		margin: 0.2rem;
		
	}

	header menu li {
		margin: 0;
		margin-top: 1rem;

	}

	menu{
		position: absolute;
		left: -1000rem;
	}
	.menu_logo{
		display: block;
	}
	.splide_list {
		display: block;
	}

}

@media screen and (min-width:303px){}

