svg {
	display:none;
}

p video {
	width:50%;
	display: block;
	margin: 0 auto;
}

.img-icon { width: 30px; }
.img-small { width: 10%; }
.img-medium { width: 50%;display: block;margin: 0 auto; }
.img-large { width: 100%; }


.btn{
	padding: 5px 10px;
	background-color: #ccc;
	border: solid 1px black;
	box-shadow: 1px 1px 1px #000;
	color: black !important;
	text-decoration: none;
	font-style: bold;
	border-radius: 5px;
}
.btn:hover{
	color: blue;
	box-shadow: none;
}


/*
u {
  background-color: transparent;
  box-shadow: inset 0 -0.7em 0 #ffeb3b;
  text-decoration: none;
}
*/



h1.white, h3.white {
	text-align:center;
	color: white;
}
h3.white {
	font-style: italic;
}


/* Vidéo en fond */
video.background-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* Remplit l'écran sans déformation */
	z-index: -1; /* Derrière le contenu */
}
#player {
  transition: opacity 1s;
  opacity: 0.7;
}
.fade-out {
  opacity: 0;
}

/* Contenu par-dessus */
.content {
	position: relative;
	z-index: 1;
	color: white;
	text-align: center;
	margin-top: 20%;
	font-size: 2em;
}

.entree {
	display: flex;
	align-items: center;
	width: calc(20% - 20px);
	margin: 10px;
	padding: 20px;
	background-color: #ccc;
	/*border: solid 1px black;
	border-radius: 20px;*/
	font-weight: bold;
	font-size: 1rem;
	color: black !important;
	float:left;
	height: 120px;
	opacity: 0.8;
	text-align: center;
	justify-content: center;
}
.entree img {
	width: 95px;
	height: 125px;
	border: none;
	border-radius: 5px;
	margin-right: 20px;
	display: none;
}
.entree:hover {
	background-color: #fff;
	transition: 1s;
}


#header {
	/*background: linear-gradient(to right, white 30%, black);*/
	background-color: #055EBB;
}

#header a {
	color: #000 !important;
}

#header .logo img {
	height: 75px !important;
	margin-top: -3px;
	border-radius: 20px;
}


/*
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; 
  justify-content: center; 
}

.gallery img {
  width: 200px;
  height: 200px; 
  object-fit: cover; 
  display: block;
}*/

/*
.img-gallery {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 5px;
  
  
  background: #d2a679; 
  border: 10px solid #8b5a2b;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);

}*/

/* From Uiverse.io by alexruix */ 
.img-gallery {
 --background: linear-gradient(to left, #f7ba2b 0%, #ea5358 100%);
 /*width: 190px;*/
 height: 254px;
 padding: 5px;
 border-radius: 1rem;
 overflow: visible;
 background: var(--background);
 position: relative;
 z-index: 1;
}

.img-gallery::after {
 position: absolute;
 content: "";
 top: 30px;
 left: 0;
 right: 0;
 z-index: -1;
 height: 100%;
 width: 100%;
 transform: scale(0.8);
 filter: blur(25px);
 background: var(--background);
 transition: opacity .5s;
}

.img-gallery:hover::after {
 opacity: 0;
}

.img-gallery:hover{
 padding: 0;
 transition: 0.5s;
}

a.retour::before {
	content:"< ";
}

.dropmenu ul li {
	margin: 0px 5px;
}
.dropmenu ul li a {
	padding: 7px 20px !important;
}

.dropmenu ul li {
	border-radius: 1rem;
}

.dropmenu ul li:hover {
	transition: 0.5s;
	background-color: #ccc;
}

p + ul {
	margin-top: -10px !important;
}