
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}
​
body{
	height: 100vh;
    width: 100%;
    background-color: whitesmoke;
}

/*Debut police homogene mobile*/
h1{
    font-size: 50px;
}
h2{
    font-size: 36px;
}

p {
    font-size: 18px;
}
/*Debut police homogene mobile*/

/*lien a dans la page*/

footer a {
    text-decoration: none;
    color: #fcfcfc;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 10%, transparent 10.01%) no-repeat left bottom / 0 100%;
    background-size: O 100%;
    transition: background-size .5s;
  }

footer a:hover {
    background-size: 100% 100%;
  }

footer a:visited {
   color: white;
}



.menuNav a {
    text-decoration: none;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 10%, transparent 10.01%) no-repeat left bottom / 0 100%;
    background-size: O 100%;
    transition: background-size .5s;
  }

.menuNav a:hover {
    background-size: 100% 100%;
  }

.menuNav a:visited {

     color: white;
  }



  /* Liens menu de navigation*/
.menuNav a {
    text-decoration: none;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 10%, transparent 10.01%) no-repeat left bottom / 0 100%;
    background-size: O 100%;
    transition: background-size .5s;
  }

.menuNav a:hover {
    background-size: 100% 100%;
  }

.menuNav a:visited {

     color: white;
  }


  /* Fin liens généraux*/

  /*Liens footer*/
footer a {
    text-decoration: none;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 10%, transparent 10.01%) no-repeat left bottom / 0 100%;
    background-size: O 100%;
    transition: background-size .5s;
  }


body:hover, a:hover{
    cursor: url("../img/logo/icons8-noix-25.png"), pointer;
}



.ici {
    text-decoration-color : white;
    text-decoration-style : double;
    text-decoration-line : underline;
}

header a {
    text-decoration: none;
    color: white;
}

/*lien a dans la page*/
/*Debut style footer*/

footer {
    background-color: #516743;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.footerinfo li{
    padding: 5px 0;
}

.footer {
    display: flex;
    flex-direction: row;
    color: #fcfcfc;
    padding: 10px;
    font-size: xx-large;
}


footer ul {
    padding: 10px;


}

footer li {
    list-style: none;
    padding-right: 30px;
    color: #fcfcfc;
}

footer a {
    text-decoration: none;
    color: #fcfcfc;
    text-align: center;

}

.footer {
    display: flex;
    flex-wrap: wrap;
    color: #fcfcfc;
    font-size: xx-small;
}

.footer img {
    filter: invert(100%);
    font-size: xx-small;
    width: 35px;
    margin: 5px;
}


.copyright {
    text-align: justify, center;
    font-size: xx-small;
    word-wrap: break-word;
    color: #fcfcfc;
    padding: 1em;
}
/*Fin design footer*/


/*Debut style barre nav*/

.headerNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #516743;
    color: white;
    min-height: 35px;
    font-size: 1.1rem;
}
.headerNav img{
    filter: invert(98%);
    padding-left: 15px;
}

.headerNav ul {
    display: flex;
    margin: 0 5px;
}

.headerNav ul li {
    list-style: none;
    padding: 10px;
}

/*fin style barre nav*/


/*Debut style dynamique menu burger*/
.burger{
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transition: all 0.5s ease-in-out;
}

.burgerButtonLign {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    /*permet de rentre progressif la disparition de la barre centrale*/
}

.burgerButtonLign::before, 
.burgerButtonLign::after  {
    content:"";
    position: absolute;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
/*Permet de voir le déplacement des span avec le rotateZ*/
}

.burger div::before{
    transform: translateY(-15px);
}

.burger div::after{
    transform: translateY(15px);
}

.burger.active div::before{
    transform: rotate(45deg) translate(35px, -35px) ;
}

.burger.active div::after{
    transform: rotate(-45deg) translate(35px, 35px) ;
}

.burger.active div {
    background-color: transparent;
    /*l'ajout de transparent sur backgroune ne retire maintenant que la barre centrale*/
    transform: translateX(-50px);
}
/*Fin style dynamique menu burger*/


/*Debut positionnement et style t Overley*/
#burgerOverlay{
    display: none;
    position : fixed;
    z-index: 10;
    top:0;
    right:0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
/*Fin positionnement et style t Overley*/


/*Debut positionnement et style Sidebar*/

#burgerSideBar{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    height: 100%;
    width: 75%;
    max-width: 350px;
    background-color: #516743;
    background: linear-gradient(#516743, 95%, #9fc08b);

    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}
#burgerSideBar ul{
    display: block;

}
#burgerSideBar-Header{
    height: 200px;
    background-size: cover;
    background-position: center;
    background-image: url("../img/banniere_sidebar2.jpg");
}
#burgerSideBar-body li{
    padding: 8px 0 8px 5px;
}
#burgerSideBar-body{
    padding: 10px 5px;
    font-size: 1.6em;
}

/*Fin  positionnement et style Sidebar*/


/*Debut style slogan*/

.slogan {
    color: #806221;
    margin: 1rem;
    text-align: center;
}


/*debut style link*/

.headerNav ul li a {
    text-decoration: none;
    color: white;
}


/*fin style link*/




​
​
/*H2 and H1 maybe some P.. i dont know. we will see*/
​
h1, h2{
    color: #806221;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
​
/*main page*/
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 20px 0 80px;
}
​
.card {
	width: 300px;
	margin: 10px;
	background-color: white;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}
​
/*partners*/
​
​
​
​
​
​
/*Contact form*/
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 10px;
  max-height: 140px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 16px;
  resize: vertical;
}
  
  .form {
    text-align: left;
    background-color: #ffffff22;
    padding: 30px;
    border-radius: 12px;
  }
  
  /* Submit button */
  input[type="submit"] {
    background-color: #c0c0c0;
    color: black;
    padding: 12px 20px;
    min-height: 20px;
    min-width: 120px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
  }
  
  /*button hover effect*/
  input[type="submit"]:hover {
    background-color: #092c12;
  }
  
  .button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
​
section#Contact-form{
    background: url(img/eran-menashri-qWXWQoYrOnk-unsplash.jpg)no-repeat center center/cover;
}
​
/**/
​
.row{
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-right: -.5rem;
    margin-left: -.5rem;
    flex-direction: row;
}
​
.info{
    text-align: center;
    margin: auto;
    box-sizing: content-box;
}




@media screen and (max-width:1023px){
    .menuNav{
        display: none;
    }
    
    .burgerButtonLign, #burgerSideBar,
     .burgerActivated #burgerOverlay{
        display: block;
    }

    .burgerActivated #burgerSideBar{
        transform: translateX(0);
    }
}

@media screen and (min-width:1024px){
    .burger{
        display: none;
    }
    /*Debut mise en place page desktop*/
    .profils {
        display: grid;
        grid-template-columns: 0.3fr 2fr 2fr 0.3fr;
        grid-gap: 1em;
    }

    .profil:nth-child(1),.profil:nth-child(3),.profil:nth-child(5){
       grid-column: 2/3;
       max-height: 500px;
    }

    .profil:nth-child(2), .profil:nth-child(4), .profil:nth-child(6){
        grid-column: 3/4;
        max-height: 500px;
    }
    /*Fin mise en place page desktop*/

    /*Police headerNav*/
    .headerNav{
        font-size: 1.5em;
    }
    /*Police headerNav*/

}




body, html{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    background-color: whitesmoke;
}


/*Debut style barre nav*/

.headerNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #516743;
    color: white;
    min-height: 35px;

    font-size: 1.1rem;
}
.headerNav img{
    filter: invert(98%);
    padding-left: 15px;
}

.headerNav ul {
    display: flex;
    margin: 0 5px;
}

.headerNav ul li {
    list-style: none;
    padding: 10px;
}

/*fin style barre nav*/


/*Debut style dynamique menu burger*/
.burger{
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transition: all 0.5s ease-in-out;
}

.burgerButtonLign {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    /*permet de rentre progressif la disparition de la barre centrale*/
}

.burgerButtonLign::before, 
.burgerButtonLign::after  {
    content:"";
    position: absolute;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
/*Permet de voir le déplacement des span avec le rotateZ*/
}

.burger div::before{
    transform: translateY(-15px);
}

.burger div::after{
    transform: translateY(15px);
}

.burger.active div::before{
    transform: rotate(45deg) translate(35px, -35px) ;
}

.burger.active div::after{
    transform: rotate(-45deg) translate(35px, 35px) ;
}

.burger.active div {
    background-color: transparent;
    /*l'ajout de transparent sur backgroune ne retire maintenant que la barre centrale*/
    transform: translateX(-50px);
}
/*Fin style dynamique menu burger*/


/*Debut positionnement et style t Overley*/
#burgerOverlay{
    display: none;
    position : fixed;
    z-index: 10;
    top:0;
    right:0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
/*Fin positionnement et style t Overley*/


/*Debut positionnement et style Sidebar*/

#burgerSideBar{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    height: 100%;
    width: 75%;
    max-width: 350px;
    background-color: #516743;
    background: linear-gradient(#516743, 95%, #9fc08b);

    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}
#burgerSideBar ul{
    display: block;

}
#burgerSideBar-Header{
    height: 200px;
    background-size: cover;
    background-position: center;
    background-image: url("../img/banniere_sidebar2.jpg");
}
#burgerSideBar-body li{
    padding: 8px 0 8px 5px;
}
#burgerSideBar-body{
    padding: 10px 5px;
    font-size: 1.6em;
}

/*Fin  positionnement et style Sidebar*/



/*debut style link*/

.headerNav ul li a {
    text-decoration: none;
    color: white;
}


/*fin style link*/



@media screen and (max-width:1023px){
    .menuNav{
        display: none;
    }
    
    .burgerButtonLign, #burgerSideBar,
     .burgerActivated #burgerOverlay{
        display: block;
    }

    .burgerActivated #burgerSideBar{
        transform: translateX(0);
    }
}

@media screen and (min-width:1024px){
    .burger{
        display: none;
    }
    /*Police headerNav*/
    .headerNav{
        font-size: 1.5em;
    }
    /*Police headerNav*/

}
body, html{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100%;
    background-color: whitesmoke;
    font-family: 'Roboto', sans-serif;
}


/*Debut style barre nav*/

.headerNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #516743;
    color: white;
    min-height: 35px;

    font-size: 1.1rem;
}
.headerNav img{
    filter: invert(98%);
    padding-left: 15px;
}

.headerNav ul {
    display: flex;
    margin: 0 5px;
}

.headerNav ul li {
    list-style: none;
    padding: 10px;
}

/*fin style barre nav*/


/*Debut style dynamique menu burger*/
.burger{
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transition: all 0.5s ease-in-out;
}

.burgerButtonLign {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    /*permet de rentre progressif la disparition de la barre centrale*/
}

.burgerButtonLign::before, 
.burgerButtonLign::after  {
    content:"";
    position: absolute;
    width: 50px;
    height: 8px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease-in-out;
/*Permet de voir le déplacement des span avec le rotateZ*/
}

.burger div::before{
    transform: translateY(-15px);
}

.burger div::after{
    transform: translateY(15px);
}

.burger.active div::before{
    transform: rotate(45deg) translate(35px, -35px) ;
}

.burger.active div::after{
    transform: rotate(-45deg) translate(35px, 35px) ;
}

.burger.active div {
    background-color: transparent;
    /*l'ajout de transparent sur backgroune ne retire maintenant que la barre centrale*/
    transform: translateX(-50px);
}
/*Fin style dynamique menu burger*/


/*Debut positionnement et style t Overley*/
#burgerOverlay{
    display: none;
    position : fixed;
    z-index: 10;
    top:0;
    right:0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
/*Fin positionnement et style t Overley*/


/*Debut positionnement et style Sidebar*/

#burgerSideBar{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    height: 100%;
    width: 75%;
    max-width: 350px;
    background-color: #516743;
    background: linear-gradient(#516743, 95%, #9fc08b);

    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
}
#burgerSideBar ul{
    display: block;

}
#burgerSideBar-Header{
    height: 200px;
    background-size: cover;
    background-position: center;
    background-image: url("../img/banniere_sidebar2.jpg");
}
#burgerSideBar-body li{
    padding: 8px 0 8px 5px;
}
#burgerSideBar-body{
    padding: 10px 5px;
    font-size: 1.6em;
}

/*Fin  positionnement et style Sidebar*/



/*debut style link*/

.headerNav ul li a {
    text-decoration: none;
    color: white;
}


/*fin style link*/




h1, h2{
    color: #806221;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*main page*/
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 20px 0 80px;
}

.card {
	width: 300px;
	margin: 10px;
	background-color: white;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
}

/*Contact form*/
input[type="text"],
select,
textarea, option {
  width: 100%;
  padding: 10px;
  max-height: 140px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 16px;
  resize: vertical;
}

  
.form {
    text-align: left;
    background-color: #ffffff22;
    padding: 30px;
    border-radius: 12px;
}
  
  /* Submit button */
input[type="submit"] {
    background-color: #c0c0c0;
    color: black;
    padding: 12px 20px;
    min-height: 20px;
    min-width: 120px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
}
  
  /*button hover effect*/
input[type="submit"]:hover {
    background-color: #556B2F;
}
  
.button {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*partenaire*/



.photo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.image--cover {
    width: 170px;
    height: 170px;
    border: #fff 3px solid;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.username {
    text-align: center;
    padding: 0;
    margin: 1px;
}



/*map*/

.map{
    display: flex;
    justify-content: center;
}




@media screen and (max-width:1023px){
    .menuNav{
        display: none;
    }
    
    .burgerButtonLign, #burgerSideBar,
     .burgerActivated #burgerOverlay{
        display: block;
    }

    .burgerActivated #burgerSideBar{
        transform: translateX(0);
    }
}

@media screen and (min-width:1024px){
    .burger{
        display: none;
    }
    /*Police headerNav*/
    .headerNav{
        font-size: 1.5em;
    }
    /*Police headerNav*/

}