*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* palette */
    --main-white: #dddddd;
    --color-white: #e7e2d1;
    --color-whitecard:rgb(248, 248, 248);
    --color-black: #131212;
    --color-vert: rgb(63, 104, 28, 0.5);
    --color-brun:#fb6542;
    --color-bleu: rgb(55, 94, 151,0.5);
    --color-fond:#f1ebd6;
    --color-shadow:rgb(223, 185, 177);
    --color-btn:rgb(247, 122, 94);
    --color-footer: rgb(148, 123, 98);
    --color-light_black:#444242;


    /* Fonts */
    --base-font: Open sans, sans-serif;
    --title-font: Merriweather, serif;
    --fs-14: 0.875rem;
    --fs-16: 1rem;
    --fs-18: 1.125rem;
    --fs-20: 1.25rem;
    --fs-24: 1.5rem;
    --fs-30: 1.875rem;
    --fs-36: 2.25rem;
    --fs-42: 2.625rem;
    --fs-50: 3.125rem;
    --fs-72: 4.5rem;

  }

  #body_apropos #body_apropos #body_activites  #body_contact{
    font-family: var(--base-font);
  }
/* ---------------------------  Personnalisations communes à toutes les pages du menu---------------------------------------------------------------- */

.container_section{
    margin: auto;
    margin-top: 100px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 50px;
  }

  .container_section p{
    padding-bottom: 15px;
    font-size: var(--fs-20);
    color: var(--color-light_black);
    padding-left: 60px;
    line-height: 1.4;
  }
  .section-title{
    font-family: var(--title-font);
    font-size: var(--fs-36);
    color: var(--color-black);
    font-weight: 500;
    padding: 80px;
    text-align: center;
  }

  .section-subtitle{
    font-family: var(--title-font);
    font-size: var(--fs-20);
    font-weight: 100;
    padding: 10px;
    margin-top: 10px;
    margin-left: 20px;
  }

  #icon-fleche{
    display: flex;
    position: fixed;
    top: 40vh;
    right: 20px;
    width: 50px;
    height:50px;
    float: right;
    z-index: 99;
    opacity: 0.6;
  }

/* -------------------Responsive des personnalisations communes---------- */
@media (max-width: 420px) {
  .section-title{
    font-size: var(--fs-30);
  }
  #icon-fleche{
    top: 80vh;
  }
}
/* ******************************************************************************************************************************* */
/* -------------------------------Page Accueil------------------------------------------------------------------------------------ */
/* ******************************************************************************************************************************* */

/* ---------------------------------La navigation---------------------------------------------------------------------------------- */


.main-nav{
    position: fixed;
    top: 0;
    width: 100%;
    background-color:var(--color-brun);
    padding: 10px;
    display: flex;
    justify-content: center;
    z-index: 99;
    border-bottom: 1px solid white;
}

.main-nav img{
    width: 80px;
}
#main-navlist img{
  width: 100px;

}

.main-nav ul{
    display: flex;
    align-items: center;
    list-style-type: none
}

.main-nav li{
    padding: 0 40px;
    cursor: pointer;
}

.main-nav .underline-link{
    text-decoration: none;
    color: black;
    padding: 0 30px;
    font-weight: 500;
    font-size: var(--fs-24);
    position:relative
}

.underline-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background:black;
  transform: scaleX(0);
  transform-origin: center;
  transition:transform 500ms ease-out;
}

.underline-link:hover::after {
  transform: scaleX(1);
}

.logo-burger{
    display: none;
}
.nav-toggler {
    display: none;
}
/* -----------Fin de la navigation------------------------------------------------ */
 /* Image de fond et titre et footer */
.hero{
  height: 100vh;
  width: 100%;
  padding-top: 2px;
  background-image: url(media/backg.webp);
  background-size: cover;
  background-position: center;
  font-family: var(--title-font);
}

.hero .h-hero{
  width: 100%;
  margin-top: 60vh;

}
.h-hero h1 {

    font-size: var(--fs-50);
    color:black;
    font-weight: 900;
    text-align: left;
    padding-left: 60px;
    margin-bottom: 90px;
  }
.h-hero h2{
  font-size: var(--fs-24);
  font-style: italic;
  font-weight: 300;
  text-align: center;
}
 /* /////////////////////////////////////////// */
 .h-hero h2{
  transform: translateY(150px);
    opacity: 0;
    animation-name:move ;
    animation-duration: 3s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
 }

 @keyframes move{
  from{
      opacity: 0;
      transform: translateY(150px);
  }
  to{
      opacity: 1;
      transform: translateY(0);
  }
}
.
/* ////////////////////////////////////////////// */
/* ---------------Responsive page d'Accueil-------------------------------------------- */
@media (max-width: 1600px) {
  .main-nav{
    padding: 10px;
  }
  .main-nav li{
    padding:0  20px ;

}
.main-nav .underline-link{
  font-size: var(--fs-24);
}
}

@media (max-width: 1250px) {
    /* ------------------------La Navigation (passage en mode burger)------------------------------------------- */
    .main-nav {
      display: flex;
      order: 1;
    }
    .main-nav .logo-burger{
      display: flex;
    }
    .main-nav ul {
      padding: 52px 0 20px;
      display: none;
      flex-direction: column;
    }
    .main-nav ul li {
      margin: 20px 120px;

    }

    .main-nav.active ul {
      display: flex;
    }

    .main-nav.active ul li:nth-child(1){
      display: none;
    }
    .main-nav.active .logo-burger{
      display: none;
    }
    .nav-toggler {
      order: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      align-self: baseline;
      margin-left: auto;
      background: none;
      border: none;
      cursor: pointer;
      margin-top: 15px;
    }
    .nav-toggler img {
      width: 35px;
    }

  /* ---------------------------------------- Gestion du titres---------------------------- */
    .hero .main-title{
      font-size: var(--fs-42);
    }
  }

  @media (max-width: 730px) {
    .main-nav ul li {
      margin: 20px 20px;
    }
    .h-hero h1{
      font-size: var(--fs-30);
    }

    .h-hero h2{
      font-size: var(--fs-24);
    }
  }

  @media (max-width: 600px) {
    .h-hero h2{
      font-size: var(--fs-20);
    }
  }

  @media (max-width: 420px) {
    .h-hero h1{
      font-size: var(--fs-24);
      padding-left: 20px;

    }
   .h-hero h2{
      font-size: var(--fs-16);
    }

  }

/* ******************************************************************************************************************************* */
/* -------------------------------Page Le Club  -----------------------------------------------------------------------------------*/
/* ******************************************************************************************************************************* */

#body_club{
  background-color: white;
  height: fit-content;
}
#club{
  width:100%;
  height: fit-content;
}

/* -------------------------------Section Esprit du club------------------------------------------------------------------------- */
#esprit-club .container_section .content{
  background-color: var(--color-whitecard);
  width: 50%;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 5px 5px var(--color-shadow);
}

.btn {
  min-width: 155px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-btn);
  cursor: pointer;
  margin-bottom: 30px;
  margin-left: 50px;
  color: black;
  font-size: var(--fs-14);
  font-weight: 700;
}
.btn:hover{
  background-color: var(--color-light_black);
  color: var(--color-brun);
}

/* ---------------------Section Présentation du club ---------------------------------------------------------- */
#presentation-club .container_section .content{
  background-color: var(--color-whitecard);
  box-shadow: 0 5px 5px var(--color-shadow);
  width: 50%;
  margin: auto;
  border-radius: 10px;
}
.ff_velo{
  display:inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#image-ffvelo{
  width: 85%;
  margin-bottom: 20px;
}
#btn_ffvelo{
  margin-left: 0;
  opacity: 1;
  margin-bottom: 40px;
}

/* --------------------------Section Notre adresse ------------------------------------------------------------------ */
#adress-club .container_section{
  background-color: white;
  border-radius: 0;
  width:100%;
  margin-bottom: 0;
}

#adress-club .container_section p{
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
#adress-club h2{
  text-align: center;
  margin-top: 30px;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.salle_anquetil{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
#photo_salle{
  width:80%;
  height: 70%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;  /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* --------------------Section Orgnisation du club -------------------------------------------------- */
#organisation-club .container_section {
  background-color: white;
  border-radius: 0;
  width:100%;
  margin-top: 0;
}

.container_section .organisation{
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 50%;
  background-color: var(--color-whitecard);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 5px var(--color-shadow);
}

.organisation_content{
  margin: auto;
}

.container_section .organisation p{
  margin-left: 0;
}

.comite{
  width:95%;
  background-color: var(--color-whitecard);
  margin: auto;
  border-radius: 10px;
}

#subtitle-comite{
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: var(--fs-30);
  font-weight: 900;
}

.comite .membre_comite1, .comite .membre_comite2{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;
  align-items: start;
  position: relative;
}
.comite .membre_comite1{
  padding: 50px
}
.comite .membre_comite2{
  padding: 0 50px 50px 50px;
}

.membre_comite1 .membre,.membre_comite2 .membre {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.nom_role{
  width:250px;
  margin: auto;
  background-color:var(--color-footer);
  padding-left: 0;
}
.membre .nom_role p{
  text-align: center;
  font-weight: 500;
  padding-left: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  color: black;
}
.membre .nom_role :nth-child(1){
  font-weight: bold;
}

.comite img{
  width: 250px;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

/*  --------------------------------------Suite partie Responsive de la page "Le club"--------------------------------------- */
@media (max-width: 1600px) {
  .comite h3{
    padding-top: 50px;
    padding-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .esprit_presentation{
    margin-top: 30px;
  }
  .container_section{
    margin-top: 30px;
  }
  #esprit-club .container_section .content{
      width: 90%;
    }
  #presentation-club .container_section .content{
      width: 90%;
    }
  .comite h3{
    padding-top: 0;
    font-size: 20px;
  }

}

@media (max-width: 910px) {
  .nom_role{
    margin-bottom: 30px;
}
.comite .membre_comite1{
  padding: 0px
}
}

@media (max-width: 875px) {
  #adress-club h2 {
    text-transform: none;
    }
  .container_section .organisation{
    width: 90%
  }
  .container_section p{
    font-size: var(--fs-16);
  }
  #apropos .btn {
    min-width: 100px;
  }
  #photo_salle{
    width: 95%;
    height: 85%;
  }
}


@media (max-width: 420px) {
  #esprit-club .container_section{
    margin-top: 20vh;
  }

  #esprit-club .container_section .content{
    width: 90%;
  }
  #presentation-club .container_section .content{
    width: 90%;
  }
  #adress-club h2{
    font-size: var(--fs-14);
    font-style: normal;
  }
  .section-title{
    font-size: var(--fs-24);
  }

  .section-subtitle{
    font-size: var(--fs-18);
  }

  .container_section{
    margin-bottom: 5px;
  }
  #plan_salle{
    margin-bottom: 0;
  }
  
  iframe{
    width: 200;
    height: 150;
  }
  .comite{
    margin-top: 0;
  }
  .comite h3{
    font-size: var(--fs-18);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  #adress-club .section-subtitle{
    margin: 0;
  }
  .comite .membre img{
    width: 260px;
    height: 300px;
    object-fit: cover;
    object-position: top;
  }
  .nom_role{
    width: 260px;
    padding: 5px;
    margin-bottom: 20px;
  }
  .membre .nom_role p{
    padding-bottom: 0;
  }
}
  


/* ******************************************************************************************************************************* */
/* -------------------------------Page Activités----------------------------------------------------------------------------------*/
/* *********************************************************************************************************************************/
#body_activites{
  background-color: white;
  height:fit-content
}




/* -----------Section Sorties hebdomadaires---------------- */
  #sorties-hedomadaires .container_section{
    width: 50%;
  }
  #sorties-hedomadaires .texte-sorties{
    box-shadow: 0 5px 5px var(--color-shadow);
  }
  .photos-sorties img{
    width: 500px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    padding: 20px;
    
  }
  

  #bagnoles{
    object-position: right;
  }

  .photos-sorties{
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
  .texte-sorties{
    background-color: var(--color-whitecard);
    box-shadow: 0 5px 5px var(--color-shadow);
    border-radius: 10px;
    padding-top: 30px;
  }

  /* --------Section Circuits routiers--------------------- */
  #circuits-routiers .container_section{
    border-radius: 0;
    width:100%;
  }

  #circuits-routiers .circuits{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .circuits #image-parcours{
    width: 45%;
    height: 45%;
    object-fit: cover;
    object-position: center;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease; 
  }
  .circuits #image-parcours:hover{
    transform: scale(1.5)
  } 
  .texte-circuit {
    width:35%;
    background-color: var(--color-whitecard);
    box-shadow: 0 5px 5px var(--color-shadow);
    border-radius: 10px;
    padding-top: 30px;
  }

/* -----------------Section Activites Cyclistes----------------------------------------------------- */


#activites-cyclistes .container_section{
  width: 100%;
}

.activites .texte-activites{
  background:var(--color-whitecard);
  box-shadow: 0 5px 5px var(--color-shadow);
  border-radius: 10px;
  width: 50%;
  margin: auto;
  line-height: 1.4;
  padding-top: 30px;
  }


.photos-activites img{
  width: 500px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  padding: 20px;
}


.photos-activites{

  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}



 /* --------------Section Convivialité ------------------------------ */

  #la-convivialite .container_section{
    border-radius: 0;
    width:100%;
    height: fit-content;
  }

  #la-convivialite .container_section{
    margin-bottom: 30px;
  }

  #la-convivialite .convivialite{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

  }

  .texte-convivialite ul{
    padding-left: 50px;
  }

  .texte-convivialite {
    width:30%;
    background-color: var(--color-whitecard);
    box-shadow: 0 5px 5px var(--color-shadow);
    border-radius: 10px;
    padding-top: 30px;
  }


  .texte-convivialite p{
    padding-left: 10px;
  }
  .about-slideshow {
    width: 40%;
  }
  .slideshow-images-container {
    margin: 12px 0;
    display: grid;
    width: 100%;
    margin: auto;
    margin-top: 30px;
  }
  .about-slideshow img {
    width: 400px;
    height:400px;
    object-fit: cover;
    object-position: center;
    grid-area: 1/1/2/2;
    width: 100%;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out;
  }
  .about-slideshow img.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
  .dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fade-slide-dots{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid black;
    background-color:white;
  }
  .dot.active {
    background-color: var(--color-brun);
  }


/* *******************Partie Responsive de la page Activités************************************** */

@media (max-width: 1100px) {
  #sorties-hedomadaires .container_section{
    margin-top: 100px;
  }
}

@media (max-width: 875px) {
    
    #sorties-hedomadaires .container_section{
      width: 90%;
      margin-top: 100px;
      margin-bottom: 30px;
    }

    #circuits-routiers .circuits{
      flex-direction: column;
      width: 90%;
      margin: auto;
    }
    .texte-circuit {
      width:100%;
      margin-bottom: 20px;
    }

    .circuits #image-parcours{
      width: 95%;
      height: 95%;
      object-fit: cover;
      object-position: center;
    }
    .activites{
      flex-direction: column;
    }
    #la-convivialite .container_section{
      width: 90%;
    }

    .photos-sorties img{
      width: 350px;
      height: 350px;
    } 
    .activites .texte-activites{
      width: 90%;
    }

    .photos-activites img{
      width: 350px;
      height: 350px;
      
    } 

    .photos-activites{
      width: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
    }
    #la-convivialite .section-title{
      margin-top: 30px;
    }

    #la-convivialite .convivialite{
      flex-direction: column;
      width:100%;
      margin: auto;
      }
    .texte-convivialite {
      width:90%;
      margin-bottom: 20px;
    }

    .about-slideshow {
      width: 80%;
      margin: 0px;
    } 
    .about-slideshow img {
      width: 300px;
      height: 300px;
  }

  }

  @media (max-width: 420px) {
   
    .photos-sorties img{
      padding: 5px;
    }
    .photos-sorties{
      width: 100%;
    }
    
    #circuits-routiers .container_section{
      width: 100%;
      margin-top: 10px;
      margin-bottom: 30px;
    }

    .container_section p{
      padding: 10px 15px;
      padding-bottom: 10px;
    }

    .section-title{
      padding: 10px;
      padding-bottom: 20px;
    }
    .circuits{
      flex-direction: column;
    }
    .texte-circuit{
      width: 100%;
    }

    #activites-cylistes .container_section{
      width: 95%;
      margin-top: 10px;
      margin-bottom: 30px;
    }
    #activites-cylistes .texte-activites{
      width: 95%;
    }
    

    #la-convivialite .container_section{
      width: 95%;
      margin-top: 10px;
      margin-bottom: 30px;
    }
    #la-convivialite .convivialite{
      margin-top: 20px;
    }
    #la-convivialite .texte-convivialite{
      width: 100%;
    }

    }

    @media (max-width: 430px) {
      .convivialite{
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .texte-convivialite {
        width:80%;
      }
      
    }

  /* ************************************************************************************************************ */
  /* -------------------------------Page Blog ------------------------------------------------------------------- */
  /* ************************************************************************************************************ */



    #blog-page{
      height: fit-content;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }

    .bloc-container{
        background-color: wheat;
        background-color: var(--color-whitecard);
        box-shadow: 0 5px 5px var(--color-shadow);
        margin: 20px;
        margin-bottom: 5px;
        margin: 30px;
        width: 400px;
        height:480px ;

    }

    #blog-section-title{
      font-family: var(--title-font);
      font-size: var(--fs-36);
      color: var(--color-black);
      font-weight: 500;
      /* padding: 50px; */
      padding: 30px;
      text-align: center;
      /* margin-top: 100px; */
      margin-top: 100px;
    }
    .titre1{
      font-size:var(--fs-24);
      padding: 20px;
      font-weight: bolder;
      line-height: 1.4;
      color: black;
    }

    .titre2{
      font-size: var(--fs-20);
      padding-left: 50px;
      color: var(--color-light_black);
    }
    .bloc-container img {
      width: 400px;
      height: 300px;
      object-fit: cover; 
      object-position: top;
    }
    #imgrando{
      width: 400px;
      height: 300px;
      object-fit: cover; 
      object-position: bottom;
    }
    #img-galerie{
      object-position: center;
    }
      
    .bloc-container a{
      text-decoration: none;
      cursor: pointer;
    }

    .bloc-container a:hover .titre1{
      color: var(--color-brun);
    }
    .bloc-container a:hover .titre2{
      color: var(--color-brun);
    }
    .bloc-container a:hover img{
      border:3px, solid var(--color-brun)
      }

  /* ---------------------------------------Responsive de la page BLOG ------------------------------------------------ */
 
  @media (min-width:900px) and (max-width:1375px){


  #last-container{
      margin-bottom: 90px;
  }}


  @media (max-width:900px){
    #bloc-page{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin: 0;
        height: fit-content;
    }
    .bloc-container{
      margin: 10px;
    }
    #last-container{
      margin-bottom: 130px;
    }
  }


  @media (max-width:420px){
    #blog-page{
      height: fit-content;
      
    }

    #blog-section-title{
      font-size: var(--fs-36);
      padding: 30px;
      margin-top: 80px;
    }
    .bloc-container {
      width: 350px;
      height: fit-content;
      margin-bottom: 30px;
    }
    
    .bloc-container_titre1{
      font-size:20px ;
      padding-left: 30px;
    }
    .bloc-container_titre2 {
      font-size:16px ;
      padding: 0;
      padding-left:50px;
      padding-bottom: px;
    }
    .bloc-container img{
      width:350px ;
      padding-left: 0;
    }
    #last-container{
      margin-bottom: 70px;
    }
    #imgrando{
      width:350px
    
    }

  }


    /* * ******************************************************************************************************************************* */
    /* -------------------------------Page Contact---------------------------------------------------------------------------------*/
    /* *********************************************************************************************************************************/
     #body_contact{
      font-family: var(--base-font);
      background-color: rgb(44, 44, 44);
      height: 115vh;
     }

    .view-main{
      width: 100%;
      height: 100vh;
    }
    #container-form{
      width:100%;
      height: 100vh;
      padding-top: 110px;
      padding-bottom: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #titre{
      font-size:var(--fs-36);
      margin-bottom: 50px;
      font-weight: 700;
      color: var(--color-black);

    }
    form {
      display: flex;
      flex-direction: column;
      color: black;
      padding: 50px 50px;
      width: 50%;
      padding-top: 40px;
      margin-top: 100px;
      height: fit-content;
      background-color:#fb6542;

    }
    form h1{
      align-content: center;
    }
    label {
      font-size:var(--fs-24);
      /* color: black; */
      color: var(--color-black);
      font-weight: 600;
    }
    .name-field {
      display: flex;
      flex-direction: row;
      padding-bottom: 20px;
    }

    .prenom {
      margin-left: 30px;
    }

    .name-field input {
      width: 100%;
    }

    .name-field {
      width: 100%;
    }
    .telephone div {
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    .telephone {
      width: 45%;
    }

    .email div {
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    .email {
      width: 100%;
    }

    .sujet div {
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: 10px;
    }

    input {
      height: 35px;
      font-size: 20px;
      padding: 15px 15px;
      border-radius: 5px;
      border: none;
      background-color:beige;
      margin-top: 10px;
    }

    .bouton {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .bouton .bp {
      height: auto;
      margin-top: 10px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 18px;
      cursor: pointer;
      color: black;
      background-color:beige;
    }
    .mesag {
      font-size: 20px;
      padding: 10px 10px;
      border: none;
      border-radius: 5px;
      background-color:beige;
      margin-top: 10px;
    }
    .bouton input:hover {
      background-color:var(--color-footer);
      color: black;
      font-weight: bold;
    }


    /* -------------------------Partie responsive de la page CONTACT ------------------------------ */
    @media (max-width: 1903px) {
      #titre{
        font-size: var(--fs-30);
      }
      label {
        font-size:var(--fs-18);
      }
    }


  @media (max-width: 1205px) {
    .container-contact{
      margin-top: 150px;
    }
    form{
      width: 80%;
      margin-top: 100px;
    }
  }

@media (max-width: 480px) {
  #body_contact{
    height: 100vh;
   }
  #container-form{
    background-image: none;
    background-color: #fb6542;
    padding-top: 10px;
    padding-bottom: 20px;
    height: 140vh;
    width: 100%;
  }
  form{
    padding: 10px 20px;
    width: 100%;
    height: 120%;
  }
  #titre{
    font-size:24px;
    margin-bottom: 25px;
  }

  label{
    font-size: 20px;
  }
  input{
    height: 20px;
    font-size: 16px;
  }
  .mesag{
    font-size:16px ;
  }
   .telephone {
      width: 60%;
    }
  
}


/* ---******************************************************************************************* */
/* *******************************Pages REGLEMENT STATUTS et CIRCUITS**************************** */
/* *********************************************************************************************** */
#icon-fleche{
  display: flex;
  position: fixed;
  top: 50vh;
  right: 20px;
  width: 45px;
  height:45px;
  float: right;
  z-index: 99;
  opacity: 0.5;
}
.article{
  width: 100%;
  height: fit-content;
  margin-bottom: 100px;
}
.article-container{
  width: 50%;
  margin: auto;
  margin-top: 100px;
}
.article-container h1{
  padding: 50px 0;
  font-size: var(--fs-36);
  text-transform: uppercase;

}
.article-container h2{
  padding: 20px 0 0 10px;
  font-size: var(--fs-30);

}
.article-container h3, #sous-titre h2{
  padding: 20px 0 0 10px;
  font-size: var(--fs-20);

}
.article-container p{
  padding: 10px;
  line-height: 1.4;
  font-size: var(--fs-20);
  margin-bottom: 12px;
}
#version{
  text-align: center;
  font-weight: 600;
  font-style: italic;
}


@media (max-width: 1600px) {
  .container_section{
    margin-bottom: 10px;
    margin-top: 50px;
  }
}
@media (max-width: 1100px) {
  .article-container{
    width: 70%;
  }
}
@media (max-width: 810px) {
  .article-container{
    width: 90%;
  }
}
@media (max-width: 480px) {
  #icon-fleche{
    top: 40vh;
    right: 10px;
    width: 30px;
    height:30px;
    z-index: 99;
    top: 70vh;
  }
  .article-container h1{
    padding: 20px 0;
    font-size: var(--fs-24);
  }

  .article-container h2{
    padding: 10px 0 0 10px;
    font-size: var(--fs-24);
  }
  .article-container h3{
    padding: 20px 0 0 10px;
    font-size: var(--fs-20);
  }
  .article-container p{
    padding: 10px;
    line-height: 1.4;
    font-size: var(--fs-16);
    margin-bottom: 10px;
}
}
/* ----------------------------- Bandeau retour pour les pages Règlement, statuts, circuits et santé------------------------------------ */

.header-retour{
  width: 100%;
  height: 70px;
  background-color: var(--color-brun);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;

}
#slogan{
  font-size: var(--fs-24);
  font-style: italic;
  font-weight: 500;
}
#logo-retour{
  width: 80px;
  margin-left: 70px;
}
.header-retour a {
  max-width: 200px;
  padding: 10px;
  font-size: var(--fs-16);
  border-radius: 5px;
  text-decoration: none;
  background-color:var(--color-footer);
  font-weight: 700;
  color: black;
  margin-right: 70px;
  cursor: pointer;

}
.header-retour a:hover{
  background-color:white;
  color: var(--color-brun);
}
/* --------------------  Responsive du bandeau retour ---------------------- */
@media (max-width: 1600px) {
  #slogan{
    font-size: var(--fs-18);
    
  }
}

@media (max-width: 1100px) {
  #slogan{
    font-size:var(--fs-16);
 
  }
}

@media (max-width: 850px) {
  #slogan{
    display: none;
  }

}

/* ********************************************************************************** */
/* **************************** Page Circuits du trimestre ************************** */
/* ********************************************************************************** */
#circuits-trimestre{
  height:130vh;
}
#circuits-trimestre div{
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
#circuits-trimestre img{
  width: 50%;
  height: 50%;
  object-fit: cover;
  object-position: center;
}

/*  ---------------------responsive de la page Circuits du trimestre---------------------- */
@media (max-width: 1600px) {
  #circuits-trimestre{
    height: 100vh;
  }
  #circuits-trimestre img{
    width:50%;
  }
}

@media (max-width: 1500px) {
  #circuits-trimestre{
    height: 110vh;
  }
  #circuits-trimestre img{
    width:50%;
    height: 100%;
  }
}

@media (max-width: 800px) {
  #circuits-trimestre{
    height:80vh;
    margin: auto;
  }
  #circuits-trimestre img{
      width: 80%;
  }
}
@media (max-width: 420px) {
  #logo-retour{
    width: 50px;
    margin-left: 30px;
  }

  .header-retour a {
    max-width: 200px;
    padding: 5px;
    margin-right: 30px;
  }

  #circuits-trimestre{
    height:80vh;
  }
  #circuits-trimestre img{
      width: 95%;
  }
}

/* ****************************************************************************** */
/* ********************** Page Santé Vélo**************************************** */
/* ****************************************************************************** */

#sante-velo{
  height: fit-content;
}
#sante-velo div{
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
#sante-velo img{
  width: 80%;
  height: 40%;
  object-fit: cover;
  object-position: center;
}
/* ---------------------------- Reponsive de la page Santé Vélo ----------------------- */
@media (min-width: 1500px) {
  #sante-velo{
    height: 110vh;
  }
  #sante-velo img{
    width:50%;
  }
}
@media (max-width: 700px){
  #sante-velo{
    height: 80vh;
  }
  #sante-velo img{
    width:90%;

  }
}



/* ---******************************************************************************************* */
/* *******************************Pages SECURITE et MAILLOT************************************************* */
/* *********************************************************************************************** */

.contenu-text{
  background-color: wheat;
  background-color: var(--color-whitecard);
  box-shadow: 0 5px 5px var(--color-shadow);
  border-radius: 5px;
  padding: 30px;
  margin: auto;
  margin-top: 130px;
  width: 60vw;
}
.contenu-text h1{
  font-size: var(--fs-24);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.contenu-text ul{
  margin-left: 40px;
}
.contenu-text li{
  margin-left: 50px;
}
.contenu-text .title2{
  font-size: var(--fs-20);
  font-weight: 600;
  padding: 10px;
  margin-left: 10px;

}

.contenu-text p{
  font-size:var(--fs-18);
  margin-left: 40px;
  color:var(--color-light_black);
  line-height: 1.4;
  margin-bottom: 10px;
}

.contenu-foto{
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contenu-foto img{
  width: 400px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  padding: 0 20px;
  margin-top: 30px;}

/* -------------------------------------responsive de la page Sécurité et Maillot------------------------- */
@media (min-width: 800px) {
  .contenu-foto{
  
    margin-bottom: 80px;
  }
}



@media (max-width: 790px) {
    .contenu-text{
      width: 90%;
      height: fit-content;

    }
    .contenu-foto{
      height: fit-content;
    }
    .contenu-foto img{
      width: 300px;
      height: 150px;
      margin-top: 40px;
    }
    .contenu-text h1{
      font-size: var(--fs-20);

    }
    .contenu-text ul{
      margin-left: 10px;   
    }
    #contenu-text li{
      margin-left: 10px;   
    }

    #contenu-text  p{
      margin-left: 0px;  
    }
    .contenu-text .title2{
      font-size: var(--fs-16);
    }
    .contenu-text p{
      font-size:var(--fs-14);
    }
    #last-foto{
      margin-bottom: 80px;
    }
    }

    @media (max-width: 600px) {
      .contenu-text{
        padding: 10px;
      }

      .contenu-text ul{
        margin-left: 3px; 
       
      }
      #contenu-text li{
        margin-left: 3px;   
      }
      #contenu-text p{
        margin-left: 3px; 
      }
    }




  @media (max-width: 430px) {
    .contenu-text{
      padding: 5px;
    }
    .contenu-text h1{
      font-size: var(--fs-18);
    }
    #contenu-text ul{
      margin-left: 10px;
     
    }
    .contenu-text li{
      margin-left: 10px;
     
    }

    #contenu-text p{
      margin-left: 0px;
      
    }
    .contenu-foto img{
      width: 300px;
      height: 200px;
    }
    #last-foto{
      margin-bottom: 60px;
    }

}



/* ---******************************************************************************************* */
/* *******************************Page MAILLOT ( partie photos*)  *************************************/
/* *********************************************************************************************** */


#foto-maillot{
  margin-top: 20px;
}

#foto1-maillot{
  width: 420px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  padding: 0 20px;
  margin-top: 40px;
}
#foto2-maillot{
  width: 420px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  padding: 0 20px;
  margin-top: 40px;
}

#foto3-maillot{
  width: 420px;
  height: 300px;
  object-fit: cover;
  object-position:top;
  padding: 0 20px;
  margin-top: 40px;
}


/* --------------------------responsive de la page  Maillot (partie photos)------------------------- */

@media (max-width: 850px) {

  #foto-maillot{
    margin-top: 0px;
  }

  #foto1-maillot{
    width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    padding: 0 20px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
 

}
@media (max-width: 430px) {
  #foto1-maillot{
    width: 380px;
    height: 280px;
    object-fit: cover;
    object-position: center;

  }
}


/* **************************************************************************************************** */
/* ********************************* Page galerie- traitement des photos ***************************** */
/* ******************************************************************************************************* */
.gallery{

  width: 85vw;
  margin: auto;
  column-count: 3;
  padding-top:  100px;
  padding-bottom: 100px;
}
.gallery img{
  width: 100%;
  height: auto;
  padding-bottom: 10px;
  border-radius: 10px 10px;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}


/* ----------------------- Responsive de la page Galerie ---------------------------------- */
@media (max-width: 1200px) {
  .gallery{
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .gallery{
    column-count: 2;
  }
  .gallery img:hover{
    transform: scale(1.3);
  }
}

@media (max-width: 460px){
  .gallery{
    width: 95%;
    column-count: 1;
  }
  .gallery img{
    object-fit: cover;
    object-position: center;
    height: 280px;
  }
  #fotogal9{
    object-position: bottom;
  }

}

/* **************************************************************************************************** */
/* *********************************   Page Le Tour de france   et Page Randonnées   ***************************** */
/* ******************************************************************************************************* */
 #tourtdf-page, #randon-page{
      height: fit-content;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        
    }

/* **************************************************************************************************** */
/* *********************************   Page Route-tdf,Attente-tdf, Pass-tdf - Route-tdf, rando , tomate, Compostelle      ***************************** */
/* ******************************************************************************************************* */
.contenu-foto{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contenu-foto img{
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  padding: 0 20px;
  margin-top: 30px;}


/* pour la page Tomate */
#foto-tomate img{  
  height: 600px; 
}
#foto2-tomate{
  width: 500px;
} 

/*  pour la page routetdf */
#foto2-routetdf{
  object-position: right;
}

/* pour la page Ronde normande */
#foto2-rondnorm{
  width: 700px;
} 

/* pour la page Compostelle */
#foto4-compost{
  width: 700px;
  margin-bottom: 20px;
} 

/* pour la page Attente Tour de France */
#foto2-attentetdf{
  object-position: left;
} 
#foto3-attentetdf, #foto6-attentetdf {
  width: 600px;
  object-position: left;
}
/* pour la page Bordeaux-Sete */
#foto1-bordosete {
  width: 700px;
  object-position: center;
}
/* -------------------- Responsive ------------------------------------------- */
@media (min-width: 800px) {
  .contenu-foto{  
    margin-bottom: 0;
  }
}
@media (max-width: 850px){
  #foto4-compost{
  width: 380px;
  object-position: center;
  
} 
}
@media (max-width: 420px){


#foto2-tomate{
  width: 370px;;
}

#foto3-tomate{
  margin-bottom: 20px;
}

#foto2-rondnorm{
  width: 385px; 
}

#foto3-rondnorm{
  margin-bottom: 20px;
}

#foto3-attentetdf {
  width: 400px;
  object-position: left;
}
#foto1-bordosete {
  width: 400px;
  object-position: right;
}
#foto4-compost{
  width: 380px;
  object-position: center;  
} 
}
    

/* **************************************************************************************************** */
/* *********************************   Page Randon        ***************************** */
/* ******************************************************************************************************* */
#randon-page .bloc-container{
    width: 400px;    
    height: 600px ;
    margin: 10px;

    }


#randon-page .bloc-container img{
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  
}
#ronden img{
  object-position: bottom;
}

@media (max-width: 500px){
  #ronden img{
    width: 300px;
    height: 350px;
  }
  #randon-page .bloc-container{
       
    height: 550px ;
    margin: 10px;
    margin-bottom: 50px;
    }

}

/* ********************************************************************************************** */
/* **********************************   FOOTER ************************************************** */
/* *********************************************************************************************** */
.pied_bottom{
  width: 100%;
  background-color: rgb(148, 123, 98);
  color: var(--color-black);
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  z-index: 99;
}

.pied_bottom #mentions{
  font-size: var(--fs-16);
  font-weight:600;
  text-decoration: none;
  color: black;
}
.pied_bottom img{
  width: 25px;
  margin-left: 50px;
  padding-top: 5px;
}



/* ---------------------------- Responsive du Footer ------------------------------ */
@media (max-width: 420px) {
  .pied_bottom #mentions{
    font-size: 14px;
    font-weight:300;
  }
  .pied_bottom img{
    width: 16px;
    height: 16px;
    margin-left: 25px;
  }
}

/* ********************************************************************************** */
/* ********************** Page Mentions Légales ************************************** */
/*  *****************    le CSS est le même que pour les pages règlement et statuts ***** */
/* ************************************************************************************ */




/* **************************************************************************************************** */
/* ********************************* Page Le mot du président ***************************** */
/* ******************************************************************************************************* */


#sous-titre{
  margin-top: 150px;
}
#sous-titre p{
  font-family: "Grand Hotel", cursive;
  font-size: var(--fs-30);
  font-weight: 300;
  color: black;
  
}

#texte-projet p{
 padding-left: 50px;
 padding-bottom: 10px;

}