@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
.clearfix::after{
    content:"";
    display: table;
    clear: both;
}
body { /* Arriere plan, couleur, font, size du text dans le body */
    background-color: whitesmoke;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    margin: 0;
    color: black;
}
h1 { /* font et size des titre en h1*/
    font-family: "Marriweather", serif;
    font-size: 32px;
}
h2 { /*font et size des titre en h2*/
  font-family: "Marriweather", serif;
  font-size: 28px;
}
h3 { /*font et size des titre en h3*/
  font-family: "Marriweather", serif;
  font-size: 24px;
}
.titre { /* Class Titre couleur du texte et un espace en haut du text*/
  color: blue;
  padding-top: 1em;
}
body> header { /* Bare bleu en haut de la page*/
    background-color: lightblue;
    color: blue;
    padding: 0.5em;
    font-family: "Merriweather", serif;
}
body> footer { /* Bare bleu en bas de la page*/
    background-color: lightblue;
    color: darkslategrey;
    padding: 0.5em;
}
body > header h1 { /* Bare bleu en haut de la page*/
    display: block;
    float: left;
  }
  body > footer a { /* Couleur text dans la Bare bleu en bas de la page*/
    color: darkslategray;
  }
  .entete { /* Position de l'image en hauteur */
    position: relative;
  }
  .entete .contenu { /* Position de l'image marge de gauche et droite */
    padding: 1em;
  }
  .entete .background-image { /* Image de la SSVP*/
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(images/Acceuil/ssvp_BG2.png) no-repeat center center;
    background-size: cover;
  }
  .entete .background-image::before { /* Image de la SSVP*/
    position: absolute;
    background-color: rgba(68, 60, 56, 0.4);
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
    left: 0;    
  }
  .entete img { /* Position et grosseur du logo SSVP */
    position: relative;
    width: 150px
  }
  .entete .texte { /* Position, couleur et grosseur du text sur l'image */
    position: relative;
    display: inline-block;
    margin-left: 1rem;
    vertical-align: top;
    color: white;
  }

Slides {
    padding: 0;
    width: 609px;
    height: 420px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.slides input { display: none; }

.slide-container { display: block; }

.slide {
    top: 0;
    opacity: 0;
    width: 609px;
    height: 420px;
    display: block;
    position: absolute;

    transform: scale(0);

    transition: all .7s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
}

.navimage label {
    width: 200px;
    height: 100%;
    display: none;
    position: absolute;

	  opacity: 0;
    z-index: 9;
    cursor: pointer;

    transition: opacity .2s;

    color: #FFF;
    font-size: 156pt;
    text-align: center;
    line-height: 380px;
    font-family: "Varela Round", sans-serif;
    background-color: rgba(255, 255, 255, .3);
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide:hover + .navimage label { opacity: 0.5; }

.navimage label:hover { opacity: 1; }

.navimage .next { right: 0; }

input:checked + .slide-container  .slide {
    opacity: 1;

    transform: scale(1);

    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .navimage label { display: block; }

.nav-dots {
	width: 100%;
	bottom: 9px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}

.nav-dots .nav-dot {
	top: -5px;
	width: 11px;
	height: 11px;
	margin: 0 4px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
}

.nav-dots .nav-dot:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
}

input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6 {
	background: rgba(0, 0, 0, 0.8);
}
article { /* Code pour que les images soit une a cote de l'autre + bordure bleu tout le tour du texte*/
  background-color: whitesmoke;
 
  border-radius: 3px;
  float: left;
  margin: 0.5em;
  padding: 0.8em;
}
button {
  background-color: rgb(224, 128, 10);
  padding: 1em;
  border-style: solid;
  border-radius: 10px;
  color: darkblue;
  
  margin: 1em;
}
/* Menu deroulant*/
nav li {
  list-style:none !important;
  color:#FFF;
  padding:5px;
  font-size:20px;
  text-decoration:none;
  margin-left: 10px;
  }
       
  nav ul {
  padding:0;
  margin:0;
  }
       
  nav ul li {
  list-style: none;
  line-height:24px;
  float:left;
  background-color:rgb(36, 158, 230);
  border-radius: 10px;
  margin-bottom: 1px;
  }
       
  nav ul li a {
  color:darkslategrey;
  padding:10px;
  font-size:20px;
  text-decoration:none;
  }
       
  li a:hover {
  border-bottom:3px darkgreen solid;
  }
  nav ul li ul { display:none; } /* Rend le menu déroulant caché par défaut */
       
  nav ul li:hover ul { /* Affiche la dropNav au survol de la souris avec la class .drop */
  z-index:99999;
  display:list-item !important;
  position:absolute;
  margin-top:5px;
  margin-left:-10px;
  border-radius: 10px;
  }
  
  nav ul li:hover ul li {
  float:none;
  }
  .deroulant > a::after {
  content: "▼";
  font-size: 12px;
  }
  #ContPrinc {
    padding: 10px;
    width: 785px;
  }
  .paspoint {
    list-style: none;
  }
  .liste{
    list-style: none;
  }
  .titrebas {
    color: blue;
    padding-top: 1em;
    margin-top: 2em;
  }
  .page-nous-joindre form {
    border: solid 1px #333;
    border-radius: 5px;
    margin: 2em auto;
    padding: 1em;
    max-width: 1200px;
  }
  
  .page-nous-joindre form .champ {
    margin-bottom: 1em;
  }
  
  .page-nous-joindre abbr {
    color: red;
    font-weight: bold;
    text-decoration: none;
  }
  
  .page-nous-joindre .champ > label {
    display: inline-block;
    width: 150px;
    vertical-align: top;
  }
  
  .page-nous-joindre .champ > :nth-child(2) {
    display: inline-block;
    width: 300px;
  }
  .article {
    background-color: white;
    border: solid 1px #333;
    border-radius: 6px;
    float: center;
    margin: 2em;
    padding: 0.8em;
  } 
  .apercu {
    display: none;
  }
.FranEng {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: right;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 17px;
  border: 1px solid white;
  background-color: white;
}
.rouge{

  border: 1px solid darkred;
  background-color:red;
}




/* Album photo */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  text-align: center;
}

.album-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}

.photo-item {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.photo-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.photo-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}