*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
}

h2{
    text-align: center;
}

/********************************************************************************/
/*Entete*/
/********************************************************************************/

.entete{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4em;
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    z-index: 2;
}

.entete .logo{
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-left: 0.5em;
    margin: 0;
}

.entete .logo img{
    width: 100%;
    height: auto;
}

.entete .menu-principal{
    margin-right: 1em;
    width: 80%;
    max-width: 800px;
}

.entete .menu-principal ul{
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.entete .menu-principal li{
    text-align: center;
    font-weight: bold;
    font-size: 1.35em;
    margin: 0.25em;
    padding: 0.25em;
    flex-grow: 1;
}

.entete .menu-principal a{
    color: #836e49;
}
.entete .mobile-trigger{
    display: none;
}

.entete .mobile-trigger .menu-mobile{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: azure;
}

/********************************************************************************/
/*Contenu principal*/
/********************************************************************************/

.contenu{
    margin: 0;
}

.contenu .accueil .image-accueil{
    position: relative;
}

.contenu .accueil .image-accueil button{
    position: absolute;
    font-size: 1.35em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    max-width: 250px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contenu .accueil .button1 {
    background-color: white; 
    color: #836e49; 
    border: 2px solid #836e49;
}

.contenu .accueil img{
    width: 100%;
    height: auto;
    
}

.parallax{
    height: auto; 


  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contenu .rechauff{
    display: flex;
    justify-content: space-around;
    padding: 2em 0 2em 0;
}

.contenu .rechauff article{
    width: 50%;
    max-width: 600px;
}

.contenu .rechauff article:nth-of-type(1){
    font-size: 1.5em;
    margin: 1em;
}

.contenu .rechauff article:nth-of-type(2){
    margin-right: 1.30em;
}

.contenu .rechauff .img-rechauff{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 15%;
    height: 0;
}



.contenu .consequences{
    padding: 3em;
}

.contenu .consequences ul{
    padding-left: 1em ;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contenu .consequences li{
    margin: 0.80em;
    text-align: center;
    font-weight: bold;
    font-size: 1.35em;
    color: #836e49;
}

/********************************************************************************/
/*equipe*/
/********************************************************************************/

.contenu .equipe{
    padding: 3em;
    display: flex;
    flex-direction: column;
    padding-bottom: 3em;
    align-items: center;
    
    
    
}
.contenu .equipe h2{
    color: white;
}

.contenu .equipe ul{
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
   
}
.contenu .equipe li{
    text-align: center;
    font-weight: bold;
    font-size: 1.35em;
    margin: 0.25em;
    padding: 1em;
    flex-grow: 1;
    color: #836e49;
    
}

.contenu .equipe img{
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15em; 

    
}

/********************************************************************************/
/*Pied de page*/
/********************************************************************************/


.pied-de-page .copyright{
    color: #836e49;
    margin: 1em;
    text-align: center;
}

