/* BODY */

@font-face {font-family: PoppinsRegular; src: url(./source/Poppins-Regular.ttf);}
@font-face {font-family: PoppinsItalic; src: url(./source/Poppins-Italic.ttf);}

body{
    overflow-x: hidden;
    margin: 0px;
    padding: 0px 175px 0px 125px;
    background-color: #101510;
    font-family: "PoppinsRegular", sans-serif;
}

header{
    z-index: 1;
    width: 100%;
    position: fixed;
    left: 0;
    background-color: #101510;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

#header{
    min-height: 20px;
    display: flex;
    flex-direction: row;
    padding-right: 125px;
}

#lienHeader{
    display: flex;
    flex-direction: row;
    width: 330px;
    justify-content: space-between;
}

footer{
    margin-bottom: 100px;
}

section{
    width: 100%;
}

h1{
    font-size: 70px;
    font-weight: 400;
    letter-spacing: normal;
    color: white;
}

h2{
    font-size: 60px;
    font-weight: 400;
    color: white;
}

h3{
    font-size: 35px;
    font-weight: 400;
    margin: 0;
    color: white;
}

p{
    font-size: 15px;
    font-weight: 400;
    color: white;
    text-align: justify;
}

a{
    font-size: 14px;
    font-weight: 400;
    color: #E1E1E1;
    opacity: 80%;
    text-decoration: underline;
    font-family: "PoppinsItalic", sans-serif;
}

li{
    color: #E1E1E1;
}

ul{
    list-style: none;
    padding: 0;
}

/* BODY PORTABLE */

@media screen and (max-width: 1500px) {

    body{
        padding: 0px 20px;
        overflow-x: hidden;
    }

    #header{
        padding-right: 20px;
    }

    h1{
       font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

}

/* CLASSES GÉNÉRALES */

.italique{
    font-family: "PoppinsItalic", sans-serif;
}

.espacementIntersection{
    padding-top: 50px;
}

.contenuEnGrille{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.sectionPage{
    margin-top: 150px;
}

.spaceBetween{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.alignRight{
    text-align: right;
}

.texte{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1500px) {

    .HiddenOnTel {
        visibility: hidden;
    }

    .espacementIntersection{
        padding-top: 50px;
    }

    .contenu{
        padding: 20px 0 0 0;
    }

    .contenuEnGrille{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

}

/* ACCEUIL */

#s1{
    height: 100vh;
    display: flex;
    flex-direction: column-reverse;
}

#contenuPrincipalS1{
    display: flex;
    flex-direction: row;
}

#logo-conteneur{
    width: 65%;
    align-content: center;
}

#logo{
    width: 100%;
    max-width: 1200px;
    align-self: center;
}

#titre{
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    color: #E1E1E1;
    letter-spacing: normal;
    text-decoration: none;
}

#slogans{
    display: flex;
    flex-direction: column;
    padding: 0 0 0 50px;
    align-self: center;
}

#slogan1 {
    margin: 0;
}

#slogan2 {
    margin: 0;
    opacity: 75%;
    font-size: 30px;
}

#lien-eco{
    display: flex;
    flex-direction: row;
    justify-content: end;
}

#espacementNav{
    height: 0px;
}


/* ACCEUIL PORTABLE */

@media screen and (max-width: 1500px) {

    #contenuPrincipalS1{
        display: flex;
        flex-direction: column;
    }

    #logo-conteneur{
        width: 100%;
    }

    #slogans{
        width: 100%;
        padding: 0;
    }

    #slogan2 {
        font-size: 15px;
        margin: 0;
    }

    #accroche{
    font-size: 18px;
}

}

/* SECTION : MA DÉMARCHE */

#citationBantjesConteneur{
    margin: 0;
    align-self: center;
}

#citationBantjes{
    font-size: 20px;
    color: #E1E1E1;
    font-family: "PoppinsItalic", sans-serif;
}

/* SECTION : MES PRESTATIONS */

#s3{
   max-width: 1400px;
}

.prestation{
    margin: 20px 0 60px 0;
}

@media screen and (max-width: 1500px) {

.prestation{
    margin: 15px 0 25px 0;
} 

}

/* PIED DE PAGE */

#reseauxSociaux{
    height: 40px;
    width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.reseauSocial{
    width: 40px;
    filter: grayscale(100%) contrast(50%) brightness(50%);
}
 
.reseauSocial:hover {
    filter: grayscale(0%) contrast(90%) brightness(90%);
}

/* PAGES ANNEXES */

.h2PageAnnexe{
    font-size: 25px;
}

.flecheRetour {
    position: fixed;
}

.paragraphePageAnnexe{
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    width: 700px;
}

@media screen and (max-width: 900px) {

    .paragraphePageAnnexe{
        display: flex;
        flex-direction: column;
        padding-left: 55px;
        width: 80%;
    }

}