*{
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

/* ---- CONTENEUR PRINCIPALE ----*/
body{padding : 5% 20% 5% 20%;}

.cv-container{
    display: grid;
    grid-template-areas: 
    'left header'
    'left right';    
    grid-template-columns: 1.20fr 3fr;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* ---------------------------- */

/* ------- BOUTON ----------- */
.btn-line{
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.btn{
    border: 1px solid rgb(46, 54, 161);
    border-radius: 15px;
    padding: 10px;
}


/* ---------- HEADER ------*/


.header{
    display: flex;
    padding: 30px 30px 0 30px;
    justify-content: center;
    flex-direction: column;
    
}

.informations{
    list-style-type: none;
    /* padding: 10px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.informations li{
    margin: 10px;
}




/* ------- COLONNE DE GAUCHE --- */

.left-column{
    grid-area: left;
    display: grid;
    grid-template-areas: 
    ''
    ''
    ''
    '';
    /* grid-template-rows: 2fr 1fr 2fr 2fr; */
    padding: 30px;
    background-color: rgb(46, 54, 161);
    color: white;
}

.propos{grid-area: propos;}
.langue{grid-area: langue;}
.diplome{grid-area: diplome;}
.loisir{grid-area: loisir;}

h2{
    margin: 10px;
}
.presentation{
    text-align: justify;
}

h2{
    margin: 10px;
}

/* ------- COLONNE DE DROITE --- */

.right-column{
    grid-area: right;
    padding: 30px;
}

.titre-content{
    padding: 10px;
    font-size: 1.75rem;
}

.titre-column{
    text-align: center;
    padding-bottom: 30px;

}

.poste{
    font-size: rem;
    font-weight: bold;
    padding: 5px;
}



.competence{
    margin: 10px;
    list-style: none;
    text-align: justify;
}

.activite{
    margin: 10px;
    list-style: circle;
    list-style-position: outside;
    text-align: justify;
}

.activite_left{
    margin: 10px;
    list-style: circle;
    list-style-position: outside;
    text-align: justify;
}

.list_activite{
    padding-left: 30px;
}


h4{
    padding: 10px;
    color: rgb(79, 79, 184);
    font-weight: bolder;
    font-size: 1rem;
}

.date{
    padding: 10px;
    font-weight: bold;
    color: navy;
}

.experiences{
    display: flex;
    justify-content: space-between;
}


/* ------- GENERAL ------- */

.icon{margin-right: 0.5em;}

a{text-decoration: none;color: navy;}

h1{
    margin-bottom: 0.5em;
    font-size: 2.5rem;
    text-align: center;
}

h5{font-size: 1.30rem;}

li{
    list-style: none;
}

.bot_1em{
    margin-bottom: 1em;
}

.blue_word{
    color: rgb(46, 54, 161);;
}


/* GESTION RESPONSIVE */

@media screen and (max-width:1400px){
    body{padding : 5% 10% 5% 10%;}
}


@media screen and (max-width:1100px){
    body{padding : 5%;}
}

@media screen and (max-width:1100px){
    body{padding : 5%;}

    .informations{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:830px){
    body{padding : 0%;}

}

@media screen and (max-width:830px){
   .cv-container{
    grid-template-areas: 
    'header'
    'right'
    'left';
    grid-template-columns: 1fr;
   }

   .left-container li{text-align: center;margin-bottom: 20px;}
   .activite_left{
    list-style: none;
   }
   .titre-column{
    padding: 10px;
   }
}

@media screen and (max-width:830px){
    .activite{margin: 0;}

}

@media print{
    .no-print{display: none !important;}
}