@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    background-color: #7332f4ca;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #0ee2f1;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #ffffff;
    line-height: 65px;
    font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
  color: #0ee2f1;
}


/* Home section */

.home {
    width: 100%;
    height: 70vh;
    background-image: url(https://resize.prod.docfr.doc-media.fr/placeholder.jpg);
    background-position: center top;
	background-size:cover;
}
.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 23;
}


.affix {
    padding: 0;
    background-color: #7332f4ea;
}
.affix a {
  
  color: #fff;
}






.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}












h2{
    font-size: 3em;
    color:black
  }

h6{
    font-size: 1em;
  }

  .center {
    /* position: absolute;
    left: 0%;
    top: 25%; */
    /* width: 100%;
    height: 100vh; */
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
  }
  
  .center ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 90%;
  }
  
  .center ul {
    margin-top: 5rem;
  }
  
  .center ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    width: 90%;
    padding: 1rem 2rem;
    margin: 1rem 0px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px #00000020;
    position: relative;
    transition: all .3s ease;
    /* background-color: #878787b4; */
    background-color: #ffffffb4;
  }
  
  .center ul li:hover:before {
      content: "";
      display: flex;
      width: 8px;
      height: 100%;
      background-color: #fffdfd;
      position: absolute;
      top: 0;
      left: 0;
      margin-left: -1.5rem;
      border-radius: 25px;
      box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.162);
  }
  
  .center ul li:hover {
      transform: translateX(15px);
  }
  
  .image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .text-group {
    width: 60%;
    font-size: 2em;
  }
  
  /* Small Screens */
  @media only screen and (max-width: 576px) {
    .center ul li:hover {
      transform: none;
    }
    
    .date-group {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }
  
  /* Medium Screens */
  @media only screen and (max-width: 768px) {
    .center li {
      flex-direction: column;
    }
    
    .center li>div {
      margin: 1rem 0px;
    }
    
    .text-group {
      width: 80%;
      text-align: center;
    }
    
    .date-group{
      display: flex;
    }
    
    .date-group h4, p {
      margin: 0px .5rem;
    }
  }




  .btn-blink1 {
    position: relative;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 1.2em;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    animation: anim-btn1 1s ease-in-out infinite alternate;
    cursor: pointer;
   }
   
   @keyframes anim-btn1 {
    from {
     transform: scale(1);
     background-color: rgb(90, 246, 251);
     text-shadow: 0 1px 3px rgba(0, 0, 0, .15);
     box-shadow: 0 0 0 transparent, 0 0 5px rgba(0, 0, 0, 0.25) inset;
    }
    to {
     transform: scale(1.1);
     background-color: rgb(179, 0, 255);
     text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
     box-shadow: 0 0 12px rgb(217, 0, 255), 0 0 10px rgba(0, 0, 0, .5) inset;
    }
   }
   
   footer {
    background-color: #333;
    color: #fff;
    padding: 1px 0;
  }
  
  .containerr {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Style du lien dans le pied de page */
  footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  


  .btn a {
    color:white ;
    font-weight: 500;
    padding: 5px 26px;
    border: 2px solid transparent;
    transition: ease .40s;
    text-decoration: none;
    
  }
  .btn .connexion{
    color: rgb(0, 0, 0);
    background-color:#3beded;
    border-radius: 30px;
  }
  .btn .connexion:hover{
    background: transparent;
    border: 2px solid #15d5ea;
  }


  .centered-image {
    position: relative;
}

.transparent-image {
    width: 46%; /* Ajustez la taille selon vos besoins */
    opacity: 0.5; /* Valeur d'opacité entre 0 (transparent) et 1 (opaque) */
    display: block;
    margin: 0 auto;
   
}

#menuToggle {
  display: none; /* Cacher le menu par défaut */
}

@media screen and (max-width: 579px) {
  .home {
    width: 100%;
    height: 70vh;
    background-image: url(https://resize.prod.docfr.doc-media.fr/placeholder.jpg);
    background-position: center top;
	background-size:cover;
}
.transparent-image {
  width: 77%;
  opacity: 0.5;
  display: block;
  margin: 0 auto;
}

#mainListDiv{
  display: none; /* Cacher le menu par défaut */
}

.center ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
  width: 100%;
  padding: 1rem 2rem;
  margin: 1rem 0px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px #00000020;
  position: relative;
  transition: all .3s ease;
  /* background-color: #878787b4; */
  background-color: #ffffffb4;
}
h2 {
  font-size: 2.3em;
  color: black;
}
.text-group {
  font-size: 1.5em;
}
.home {
  width: 100%;
  height: 50vh;
  background-image: url(https://resize.prod.docfr.doc-media.fr/placeholder.jpg);
  background-position: center top;
  background-size: cover;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.center ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
}


/* ------------------------------menu--------------------------------------- */
#menuToggle
{
  display: block;
  position: fixed;
  top: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: 83vw;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  left: 83vw;
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * hide the middle one
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  text-align:center;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
  
}

/*
 * slide it in
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

#coleurM{
  color :#000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ------------------------------------fin menu ------------------------------- */


}