/* le style des element du texte: les liens, la police, la couleur et la taille du texte*/
*, ::before, ::after {box-sizing: border-box; margin: 0;}

body{font-family:  'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana; }






.container {
    display: flex;
    flex-direction: column;
}

.header {
    background-color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    height: 80px;
}

.element:nth-child(1){
    flex: 2;
    
}

div.header div{
    height: 100%;
    background-color:white;
       
}


.menu {
    background-color:  rgba(39, 74, 106);
    color: #fff;
    padding: 20px;
    font-size: 1.1em;
    min-height: 60px;
}


.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content:space-between;
}

.menu li {
    margin-right: 20px;
}


.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    
}
.menu a:hover{
    color: rgb(78, 130, 228);
    transition: 0.2s all;
}




a{color: rgb(99, 151, 248); text-decoration: none;}

.navigation {
    min-height: fit-content;
    height: 900px; 
    flex-grow: 1;
    padding:  0%;
    
    background-size:cover;
    background-repeat: no-repeat;
    
    color: #fff;
}

.navigation h1 {
    font-size: 1em;
    margin: 10px 20px;
    text-align:center;
    
}
.navigation p {
    margin: 0px 5px;
    text-align:left;
    
}

div.title {
    background-color: rgba(39, 74, 106, 0.911);
    color: white;
    padding: 1%;
    margin-left: 20px;
    margin-top: 30px;
    height: fit-content;
    min-height: 180px;
    border-radius:15px 5px;
}


div.title_acces{
    background-color: transparent;
    padding: 0%;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    height:fit-content;
    border-radius:15px 5px;
    text-align:right;
}


div.btn{
    font-size: 1.3em;
    color: rgb(248, 250, 250); 
    display: block;
    margin: auto;
    padding: 10px 5px;
    
    min-height: fit-content; 
    width: fit-content;
    border-radius: 10px;
    background-color: #03296e; 
    position: relative;
    box-shadow: 2px 6px rgb(9, 141, 202) ; 

}

 .btn:hover{
    box-shadow: 2px 4px  rgb(9, 141, 202);
    top: 4px;

} 

.btn:active{
    box-shadow: 0 0 rgb(9, 141, 202);
    top:6px;
}




.navigation p {
    font-size: 0.8em;
    line-height: 1.5;
    padding: 10px;
    text-align:justify;
}

.image-grid {
    display: grid;
    width:78% ;
    margin: auto;
    grid-template-columns: repeat(4, 1fr); 
    grid-gap: 10%;   
}



.image-grid a {
    display: block;
    background-image: linear-gradient(to bottom,transparent ,rgba(177, 183, 189),white 75%);
    border-radius:5px 70px;
    border: none;
    text-align: center;
    text-decoration: none;
   
}

.image-grid img {
    width: 80%;
    height: auto;
    
}

.image-grid p {font-size: 12px; color: rgb(50, 142, 204);text-align: center;}


.liste-grid{
    width:98% ; 
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2%;
   
}


.listes{
    width: 100%; padding: 0px 25px;
    border-radius:2px 30px;
    background-color:white;
    border: none;          
}



.liste-grid li {
   
    font-size: 0.80em; 
    color: rgb(24, 208, 241)  ;
    margin:2px  0px;  
}


@media only screen and (max-width: 700px) {
.menu li{font-size: smaller; margin-left:25px;}
.title {font-size:0.65em ; }
.title p{margin-left: 10px; }
.title_acces {font-size:0.65em ; }
.title_acces p{margin-left: 10px; }
}




/*================== la bande du footer =========================*/
.container-grille_f{
    height: 45px;
    width: 100%;max-width: 100%;  
    display: grid;
    background-color:rgba(39, 74, 106, 0.911); 
    
}

div.footer{
    grid-column: span 5;
    margin: 1px;
    display: flex;
    flex-direction: row;
    
    justify-content: space-between;
    flex-wrap: nowrap;
    align-self: center;
    max-height: 44px;  
    width: auto;
  
}


div.footer div {background-color:transparent;margin-left:1px;height: 40px; margin-top: 0px;}

div.footer td{ font-family:Verdana,Arial,sans-serif;font-size:0.8em;color:#ffffff; }

div.footer div img{align-self: center;}


div.element_f:nth-child(1) {width: 10%;}     
div.element_f:nth-child(2) {width: 5%; }  
div.element_f:nth-child(3) {width: 60%; padding-left: 10%; }  
div.element_f:nth-child(4) {width: 5%; } 
div.element_f:nth-child(5) {width: 10%; }  


 
div.element_f:nth-child(1) img{width: 46px; margin-left: 20%;}     

div.element_f:nth-child(3) img{width: 80px; margin-left: 20%;margin-top:4px;}  

div.element_f:nth-child(5) img{width: 36px; margin-left: 20%;}  


















