  
 @media only screen and (min-width:1000px) {
     

    body {
        padding: 0;
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
      background-color:  rgb(248, 247, 247);
    }
    .container {
    margin: auto;
    width: 1000px;
    margin-top: 70px;
    }
    header {
        display: flex;
        flex-direction: column;
        background-color:#277DEAff;
        height: 130px;
    }
    
    
    header .header1 .logo {
    width: 250px;
    position: relative;
    top: 7px;
    
    }
    header .header1  {
       display: flex;
       justify-content: center;
    }
    header .search {
    display: flex;
    align-items: center;
    }
    header .search a {
        color: white;
        position: relative;
        top: -45px;
        left: 10%;
    }
    header .header1  i {
       color:white;
    }
    
    a {
        text-decoration: none;
    }
    
    .mobileMenu {
        display: none;
    }
    
    header .header2 nav ul {
        display: flex;
        list-style-type: none; 
        justify-content: center; 
        align-items: center;
        color:white;
        background-color:rgb(2, 96, 211);
        height: 40px;
        position: relative;
        top: -24px;
    
    }
    nav ul .home {
     padding-right: 40px;
    }
    nav ul #active {
        color: rgb(25, 37, 53);
    }
    header .header2 li a {
        color: white;
        padding-left: 30px;
        font-size: 100%;
    }
    .header2 .fa-bars {
        display: none;
    }
    .header2 a:hover {
        color: rgb(25, 37, 53);
    }
    
        /* ARTICLE */
    
           .article {
               display: flex;
               flex-direction: column;
               /* background-color: green; */
           }
        
           .article .intro .category {
               background-color: rgb(63, 116, 185);
               padding: 7px;
               color: white;
           }
    
           .article .intro h1 {
               font-size: 30px;
           }
            .article .intro img {
               width: 100%;
               height: 200px;
               object-fit: cover;
           }
           .intro figcaption {
               color:#277DEAff;
               font-style: italic;
               font-size: 13px;
           }
    
           .article .intro .info {
               color: #333;
               font-size: 13px;
               position: relative;
               top: -10px;
           }
    
           .intro .reseaux i {
               position: relative;
               top: -10px;
               font-size: 40px;
           }
    
           .reseaux .fa-facebook-square {
               color: rgb(48, 48, 245);
           }
    
           .reseaux .fa-twitter-square {
               color: rgb(24, 198, 221);
           }
           .reseaux .fa-whatsapp-square {
               color: rgb(0, 202, 51);
           }
    
          
          .development p {
            line-height: 175%;    
              }
    
    /* CONTENT 2 */
    .container2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
    }
    .section2 .div span {
    display: flex;
    justify-content: center;
    }
    .div span {
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    background-color: #277DEAff;
    padding: 5px;
    }
    .container2 .more_content {
    display: flex;
    background-color: white;
    margin-bottom: 20px;
    }
    .category_more .see_more {
    display: flex;
    justify-content: right;
    font-size: 13px;
    color: #277DEAff;
    }
    .category_more .see_more:hover {
    color: #333;
    }
    .more_content {
    display: flex;
    align-items: center;
    }
    
    .more_content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    }
    .more_content .content {
    position: relative;
    left: 15px;
    }
    .content small {
    position: relative;
    color: gray;
    font-weight: 600;
    font-size: 14px;
    }
    .content h2 {
    position: relative;
    font-size: 16px;
    color: rgb(32, 114, 214);
    overflow: hidden;
     word-wrap: break-word;
     width: 300px;
     display: -webkit-box;
     -webkit-line-clamp: 5;
    -webkit-box-orient: vertical; 
    }
    .content h2:hover {
    color: rgb(5, 69, 153);
    }
    
    
           /* FOOTER */
     
    footer {
        display: flex;
        align-items: center;
        padding: 40px;
        /* justify-content: space-between; */
        flex-direction: column;
        background-color:rgb(2, 96, 211);
        margin-top: 20px;
        }
        .footer_container {
        padding: 10px;
        display: flex;
        }
        .footer_container img {
        width: 200px;
        height: 100px;
        padding-right: 20px;
        object-fit: cover;
        border-right: 2px solid white;
        }
        .footer_content {
        display: flex;
        flex-direction: column;
        position: relative;
        left: -40px;
        }
        .footer_content ul  {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        }
        .footer_content li a {
        margin-left: 20px;
        color: white;
        }
        
        .footer_content small {
        color: white;
        position: relative;
        right: -58px;
        }
        /* ------------ */
        footer p {
  font-size: 13px;
  color: white;
  text-align: center;
  font-weight: 700;
}
footer sup {
  font-size: 5px;
  font-weight: 300;
}
        .footer_mail  {
        display: flex;
        flex-direction: column;
        }
        
        .footer_mail form input {
        padding: 10px;
        border: none;
        outline: none;
        }
        .footer_mail strong {
        color: white;
        font-size: 18px;
        margin-bottom: 5px;
        }
        .footer_mail form .submit {
        background-color: gray;
        color: white;
        font-weight: 600;
        cursor: pointer;
        }
    }