
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins', sans-serif;
}
body
{    
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.contenaire
{
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background-color: wheat;
    margin: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1);
}
.contenaire .left
{
    position: relative;
    background-color: #003147;
    padding: 40px;
}
.profiltexte
{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid lightblue;
}
.profiltexte .profile 
{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;

}
.profiltexte .profile img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.profiltexte h1
{
    color: azure;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    font-weight: 600px;
    line-height: 1.4em;
}

.profiltexte h1 span
{
    font-size: 0.6em;
    font-weight: 300px;
}
.contactinfo
{
    margin-top: 30px;
    line-height: 1.5em;
}
.contactinfo h2
{
    color: azure;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.contactinfo ul
{
    position: relative;
}
.contactinfo ul li
{   position: relative;
    list-style-type: none;
    margin: 5px 0;
    cursor: pointer;
}
.contactinfo ul li .icone
{
    
    color: lightblue;
    width: 30px;
    margin-right: 10px;
    font-size: 18px;

}
.contactinfo  span
{
    color: white;
    
}


.infoetude
{
    margin-top: 30px;
    line-height: 1.5em;
}
.infoetude h3
{  
    color: azure;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.contactinfo ul
{
    position: relative;
}
.infoetude ul li
{
    list-style-type: none;
    margin: 5px 0;
}
.infoetude h4
{
    color: lightblue;
    font-size: 18px;
}
.infoetude h5
{
    color: white;
    
}
.infolangage
{
    margin-top: 30px;
    line-height: 1.5em;
}
.infolangage h3
{
    color: azure;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px; 
}

.infolangage ul
{
    position: relative;
}
.infolangage ul li
{
    list-style-type: none;
    margin: 5px 0;
}
.infolangage .texte
{
    color: white;
    font-size: 18px;
}
.infolangage .pourcent
{
    position: relative;
    width: 100%;
    height: 6px;
    display: block;
    background-color: whitesmoke;
    font-size: 18px;
    margin-top: 5px;
}
.infolangage .pourcent div
{
    position: absolute;
    top: 0;
    height: 100%;
    background-color: rgb(25, 0, 255);
}


/*partie droite*/


.contenaire .right
{
    position: relative;
    background-color: white;
    padding: 40px;
}
.moi{
    margin-bottom: 40px;
}
.moi h1
{
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px; 
}
.moi p
{
    line-height: 2em;
}
.competence{
    margin-bottom: 50px;
}
.competence h2
{
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.competence ul
{
    position: relative;
}
.competence ul li
{   position: relative;
    list-style-type: none;
    margin: 15px 0;
    cursor: pointer;
}
.centre
{
    margin-bottom: 50px;
}
.centre ul 
{
    position: relative;
}
.centre ul li
{
    position: relative;
    list-style-type: none;
    margin: 15px 0;
    cursor: pointer;
}
.competence span
{
    position: relative;
    width: 100%;
    height: 6px;
    display: block;
    background-color: rgb(78, 55, 55);
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.competence span div
{
    position: absolute;
    top: 0;
    height: 100%;
    background-color: rgb(25, 0, 255);
}
.qualite h2
{  
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.qualite ul
{
    position: relative;
}
.qualite ul li
{
    list-style-type: none;
    margin: 15px 0;
}
.accueil{
    padding: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.accueil h1{
    font-weight: bold;
    font-size: 2rem;
}
footer{
    height: 300px;
    background-color: rgb(83, 66, 24);
}



