/*
Theme Name: OngolaDev WordPress Ligth Theme
Text Domain: odWpLigthTheme
Version: 1.0
Description: A simple WordPress theme for ligth website
Tags: flatdesign, nofancy, minimalism, 
Author: Frederic PAPY
Author URI: https://fredericpapy.com
*/

@import url('assets/css/menu/css.css');

@font-face {
    font-family: myFont;
    src: url('assets/fonts/Roboto/Roboto-Light.ttf');
}
@font-face {
    font-family: myFontRegular;
    src: url('assets/fonts/Roboto/Roboto-Regular.ttf');
}
@font-face {
    font-family: myFontLilThin;
    src: url('assets/fonts/Roboto/Roboto-Thin.ttf');
}
@font-face {
    font-family: myFontLilThinItalic;
    src: url('assets/fonts/Roboto/Roboto-ThinItalic.ttf');
}
@font-face {
    font-family: myFontBigBold;
    src: url('assets/fonts/Roboto/Roboto-Bold.ttf');
}
@font-face {
    font-family: myFontBigBoldItalic;
    src: url('assets/fonts/Roboto/Roboto-BoldItalic.ttf');
}
@font-face {
    font-family: sophieFont;
    src: url('assets/fonts/Sophie/Sophie.ttf');
}

html, body{
    margin: 0;
    height: 100%;
    width: 100%;
    position: relative;
    font-size: 0.9rem;
    background-color: #FFF;
    font-family: myFont;
    font-size: 1rem;
    scroll-behavior: smooth;
}


.header{
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(253, 253, 253, 0.95);
    position: fixed;
    top: 0;

    z-index: 3;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.headermini{
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(253, 253, 253, 0.95);
    position: fixed;
    top: 0;

    z-index: 3;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menumobile{
    width: 80%;
    height: 90%;  
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    top: 80px;
    position: fixed;
    transition-property: left; /* Specify the property to transition */
    transition-duration: 0.5s; /* Duration of the transform */

    z-index: 10;
    background-color: #FFF;

    padding: 20px;
    box-sizing: border-box;

    display: block;
    
}
.header .logo{
    height: 70px;
    width: auto;
}
.headermini .logo{
    height: 70px;
    width: auto;
}
.header .menu{
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.header .menu > img{
    width: 24px;
    height: auto;
    margin: 15px;
    cursor: pointer;
}
.header .menu > img:hover{
    background-color: #bdbdbd;
}

.header .menu .dropdownmenu, .menumobile .dropdownmenu{
    display: inline-block;
    position: relative;
    margin: 0px 15px;
}
.menumobile .dropdownmenu{
    margin: 0px 0px;
}
.header .menu .dropdownmenubutton, .menumobile .dropdownmenubutton{
    margin: 0;
    padding: 2px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-end;
}
.header .menu .dropdownmenubutton img, .menumobile .dropdownmenubutton img{
    width: 16px;
    height: auto;
    margin: 0;
    padding: 0;
}
.header .menu .dropdownmenubutton span, .menumobile .dropdownmenubutton span{
    text-decoration: none;
    font-size: 1.1rem;
    font-family: myFontBigBold;
    color: black ;
}

.header .menu .dropdownmenu .submenu, .menumobile .dropdownmenu .submenu{
    display: none;
    position: absolute;
    right: 0;
    top: calc(100%);
    min-width: max-content;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}
.header .menu .dropdownmenu:hover .submenu, .menumobile .dropdownmenu:hover .submenu{
    display: block;
}
.header .menu .dropdownmenu .submenu a, .menumobile .dropdownmenu .submenu a{
    display: block;
    padding: 3px 10px;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: myFontBigBold;
    color: black ;
}
.header .menu .dropdownmenu .submenu a:visited, .menumobile .dropdownmenu .submenu a:visited{
    color: #000;
}
.header .menu .dropdownmenu .submenu a:hover, .menumobile .dropdownmenu .submenu a:hover{
    background-color: #bdbdbd;
}
.hiddenSpace{
    width: 100%;
    height: 80px;
}
.addSpace{
    margin-bottom: 70px;    
}













.banner{
    width: 100%;
    position: relative;
}
.banner > img{
    height: 100%;
    width: 100%;
    object-fit: cover;      
}
.banner .background{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}
.banner .bannercontent, .banner .bannercontentBottom{
    position: absolute;   
}

.banner .bannercontent p.devise, .banner .bannercontentBottom p.devise{
    width: 100%;
    font-family: sophieFont;
    font-weight: bolder;
    color: #FFF;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .3);
    padding: 0px 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.banner .bannercontent button{
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: myFontRegular;
    font-weight: bold;
    background-color: #BE1522;
    color: #FFF;
    border: none;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
}
.banner .bannercontent button:hover{
    color: #BE1522;
    background-color: #FFF;
}


.aboutus{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.aboutus .bloc{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: start;
    align-items: center;
}
.aboutus .bloc div{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.aboutus .bloc div.text{
    background-color: rgba(190, 21, 34, .03);
    box-sizing: border-box;
    flex: auto !important;
}
.aboutus .bloc div.text p{
    padding: 0;
    margin: 0;
    font-family: myFontLilThin;
    /*font-weight: bolder;*/
    width: 100%;
    color: #05014a;
}
.aboutus .bloc div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus .bloc div.text button{
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: myFontRegular;
    font-weight: bold;
    color: #BE1522;
    background-color: #FFF;
    border: none;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
}
.aboutus .bloc div.text button:hover{
    background-color: #BE1522;
    color: #FFF;
}


.nosservices{
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;  
    background-color: rgba(190, 21, 34, .05);  
}
.nosservices h1{
    font-family: myFontBigBold;
    font-size: 2.5rem;
    padding: 50px;
}
.nosservices .servicesWrap{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    box-sizing: border-box;
}
.nosservices .servicesWrap > div{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #FFF;
    cursor: pointer;
    box-sizing: border-box;
}
.nosservices .servicesWrap > div img{
    width: 100%;
    height: 40vh;
    object-fit: cover;
}

.nosservices .servicesWrap > div .content{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.nosservices .servicesWrap > div .content p{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-family: myFontBigBold;
}

.nosservices .servicesWrap > div .content ul li{
    font-size: .9rem;
    font-family: myFont;
}

.nosservices .servicesWrap > div:hover .content p{
    color: #BE1522;
}
.nosservices .servicesWrap > div:hover .content ul li{
    color: #BE1522;
}
.nosservices .servicesWrap > div:hover{
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}


.divactualites{
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;  
    background-color: #FFF;  
}
.divactualites h1{
    font-family: myFontBigBold;
    font-size: 2.5rem;
    padding: 50px;
}
.divactualites > button{
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: myFontRegular;
    font-weight: bold;
    color: #BE1522;
    background-color: #FFF;
    border: none;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    cursor: pointer;

    margin: 0px 50px 75px 50px;
}
.divactualites > button:hover{
    background-color: #BE1522;
    color: #FFF;
}
.divactualites .actualiteswrap{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    box-sizing: border-box;
}
.divactualites .actualiteswrap > div.alaune{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #F5F5F5;
    cursor: pointer;
    box-sizing: border-box;
}
.divactualites .actualiteswrap > div.simplearticle{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #F5F5F5;
    cursor: pointer;
    box-sizing: border-box;
}
.divactualites .actualiteswrap > div.alaune:hover, .divactualites .actualiteswrap > div.simplearticle:hover{
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}
.divactualites .actualiteswrap > div.alaune img, .divactualites .actualiteswrap > div.simplearticle img{
    width: 100%;
    height: 30vh;
    object-fit: cover;
}

.divactualites .actualiteswrap > div.alaune .content, .divactualites .actualiteswrap > div.simplearticle .content{
    width: 100%;
    height: 30vh;
    padding: 5px 15px 15px 15px;
    box-sizing: border-box;
    position: relative;
}
.divactualites .actualiteswrap > div.alaune .content .date, .divactualites .actualiteswrap > div.simplearticle .content .date{
    width: 100%;
    padding: 0;
    margin: 0px 0px 20px 0px;
    box-sizing: border-box;
    font-size: .8rem;
    font-family: myFont;
    color: rgba(0, 0, 0, .6);

    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.divactualites .actualiteswrap > div.alaune .content .date > img, .divactualites .actualiteswrap > div.simplearticle .content .date > img{
    width: 12px;
    height: auto;
    margin: 0px 10px 0px 0px;
}
.divactualites .actualiteswrap > div.alaune .content > span, .divactualites .actualiteswrap > div.simplearticle .content > span{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-family: myFontBigBold;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.divactualites .actualiteswrap > div.alaune:hover .content > span, .divactualites .actualiteswrap > div.simplearticle:hover .content > span{
    color: #BE1522;
}
.divactualites .actualiteswrap > div.alaune .content > p, .divactualites .actualiteswrap > div.simplearticle .content > p{
    width: 100%;
    padding: 0;
    margin-top: 5px;
    box-sizing: border-box;
    font-size: .9rem;
    font-family: myFont;
    color: rgba(0, 0, 0, .8);

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.divactualites .actualiteswrap > div.alaune:hover .content > p, .divactualites .actualiteswrap > div.simplearticle:hover .content > p{
   color: #BE1522;
}

.divactualites .actualiteswrap > div.alaune .content .stats, .divactualites .actualiteswrap > div.simplearticle .content .stats{
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.divactualites .actualiteswrap > div.alaune .content .stats > span, .divactualites .actualiteswrap > div.simplearticle .content .stats > span{
    width: 100%;
    padding: 5px 0px;
    font-size: .9rem;
    font-family: myFont;
    color: rgba(0, 0, 0, .6);
}
.divactualites .actualiteswrap > div.alaune .content .stats > div, .divactualites .actualiteswrap > div.simplearticle .content .stats > div{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.divactualites .actualiteswrap > div.alaune .content .stats > div .stat, .divactualites .actualiteswrap > div.simplearticle .content .stats > div .stat{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.divactualites .actualiteswrap > div.alaune .content .stats > div .stat img, .divactualites .actualiteswrap > div.simplearticle .content .stats > div .stat img{
    width: 16px;
    height: auto;
    margin: 0;
}
.divactualites .actualiteswrap > div.alaune .content .stats > div .stat span, .divactualites .actualiteswrap > div.simplearticle .content .stats > div .stat span{
    font-size: .9rem;
    font-family: myFont;
    color: rgba(0, 0, 0, .6);
    margin: 0px 10px 0px 2px;
}

.partenaires{
    width: 100%;
    box-sizing: border-box;
    margin: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    background-color: #000;
}
.partenaires h1{
    width: 100%;
    margin: 5%;
    font-size: 2.5rem;
    color: #FFF;
    font-family: myFontBigBold;
    text-align: center;
}
.partenaires img{
    height: 60px;
    width: auto;
    margin: 10px;
    cursor: pointer;
}
.partenaires img:hover{
    box-shadow: 0px 2px 4px -1px rgb(255 255 255 / 20%), 0px 4px 4px 0px rgb(255 255 255 / 14%), 0px 1px 10px 0px rgb(255 255 255 / 12%);
}


.footer{
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    background-color: #BE1522;
}
.footer .contacts{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer .contacts > div{
    display: flex;
    align-items: center;
}
.footer .contacts > div img{
    width: 30px;
    height: auto;
    margin: 20px;
    background-color: #FFF;
    border-radius: 15px;
    cursor: pointer;
}
.footer .contacts > div .contact{
    width: fit-content;
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
.footer .contacts > div .contact img{
    width: 24px;
    height: auto;
    margin: 10px;
    border-radius: 12px;
    background-color: transparent;
}
.footer .contacts > div .contact span{
    font-size: .9rem;
    font-family: myFont;
    color: #FFF;
}
.footer hr{
    color: #FFF;
}
.footer .copyright{
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: myFont;
    padding: 10px;
    box-sizing: border-box;
}
.divfooter{
    position: relative;
}
   


.bannerarticle{
    position: relative;
}
.bannerarticle > img{
    height: 100%;
    width: 100%;
    object-fit: cover;      
}
.bannerarticle .background{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}
.bannerarticle .bannerarticlecontent{
    position: absolute;
    left: 20px;
    bottom: 20%;
}
.bannerarticle .bannerarticlecontent .title{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 2rem;
    font-family: myFontBigBold;
    color: #FFF;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .3);

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.divarticle{
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.divarticle .content{
    box-sizing: border-box;
}
.divarticle .rigthdiv{
    box-sizing: border-box;
    background-color: #bababa;
}
.divarticle .content .metrics{
    padding: 0; 
    position: relative;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;

    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
}
.divarticle .content .metrics img{
    margin: 0;
    padding: 0; 
    position: relative;
    float: left;
    width: 16px;
    height: auto;
}
.divarticle .content .metrics .notag{
    margin-left: 5px;
    margin-right: 10px;
    padding: 0; 
    position: relative;
    float: left;
}
.divarticle .content .metrics .tag{
    margin: 2px;
    padding: 3px;
    border-radius: 3px;
    background-color: #bebebe;
    float: right;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.divarticle .content .metrics .tag a{
    color: rgba(219,65,42,255);
}
.divarticle .content .metrics .tag a:visited{
    color: rgba(219,65,42,255);
}








.serviceIntroduction{
    width: 100%;
    
    font-size: 1.5rem;
    font-family: myFontLilThin;
    padding: 0;
    margin: 0px 0px 50px 0px;
}
.serviceItems{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.serviceItems .bloc{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 15px;
    margin: 20px 0px;
    overflow: hidden;
}
.serviceItems .bloc:hover{
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 4px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);    
}
.serviceItems .reverse{
    flex-direction: row-reverse !important;
}
.serviceItems .bloc div{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.serviceItems .bloc div.text{
    background-color: rgba(190, 21, 34, .03);
    box-sizing: border-box;
    flex: auto !important;
}
.serviceItems .bloc div.text h1{
    font-size: 1.5rem;
}
.serviceItems .bloc div.text p{
    padding: 0;
    margin: 0;
    font-family: myFontLilThin;
    /*font-weight: bolder;*/
    width: 100%;
}
.serviceItems .bloc div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.aboutus .blocAppropos{
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin: 20px 0px;
    font-family: myFont !important;
    font-size: 1.5rem;
}
.aboutus .blocApproposX{
    padding: 50px 20px !important;
    box-sizing: border-box;
    background-color: rgba(190, 21, 34, .03);
}
.aboutus .blocAppropos p{
    padding: 0;
    margin: 0;
    /*font-weight: bolder;*/
    width: 100%;
    
}
.aboutus .blocAppropos h3{
    font-size: 2rem;
}
.aboutus .blocAppropos .divimag{
    width: 100%;
    height: 80vh !important;
    margin: 30px 0px 0px 0px;
}
.aboutus .blocAppropos .divimag img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.visionquote{
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.visionquote p{
    font-size: 2.5rem;
    /* font-family: myFontLilThin; */
    padding: 0% 5%;
    
    color: #BE1522;
    text-align: center !important;
}
















@media only screen and (min-width: 1401px){
    .header{
        height: 80px;
        padding: 1% 10%;
        display: flex;
    }
    .headermini, .menumobile{
        display: none;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 90vh;
    }
    .banner .bannercontent{
        top: 40%;
        left: 10%;        
    }
    .banner .bannercontent p.devise{
        font-size: 3.5rem;
    }

    .banner .bannercontentBottom{
        bottom: 10%;
        left: 10%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 2.5rem;
    }

    .aboutus{
        padding: 5% 10%;
    }
    .aboutus .bloc{
        flex-direction: row;
    }
    .aboutus .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }
    .serviceItems, .visionquote{
        padding: 5% 10%;
    }
    .serviceItems .bloc{
        flex-direction: row;
    }
    .serviceItems .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    
    .nosservices{
        padding: 0% 10%;  
    }
    .nosservices .servicesWrap > div{
        width: 30%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites{
        padding: 0% 10%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 48%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 23%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .partenaires{
        padding: 0% 10% 5% 10%;
    }
    .divfooter{
        width: 80%;
        left: 10%;
    }
    .footer{
        padding: 0% 10%;
    }
    .footer .contacts > div{
        flex-direction: row;
        justify-content: start;
    }
    .bannerarticle{
        width: 80%;
        left: 10%;
        height: 60vh;
    }
    .divarticle{
        width: 80%;
        left: 10%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 70%;
    }
    .divarticle .rigthdiv{
        width: 30%;
        padding: 20px;
        margin-top: 50px;
    }
    
}
@media only screen and (min-width: 1248px) and (max-width: 1401px){
    .header{
        height: 80px;
        padding: 1% 5%;
        display: flex;
    }
    .headermini, .menumobile{
        display: none;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 90vh;
    }
    .banner .bannercontent{
        top: 40%;
        left: 5%;        
    }
    .banner .bannercontent p.devise{
        font-size: 3.5rem;
    }
    .banner .bannercontentBottom{
        bottom: 10%;
        left: 5%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 2.5rem;
    }
    .aboutus{
        padding: 5% 5%;
    }
    .aboutus .bloc{
        flex-direction: row;
    }
    .aboutus .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }


    .serviceItems, .visionquote{
        padding: 5% 5%;
    }
    .serviceItems .bloc{
        flex-direction: row;
    }
    .serviceItems .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }


    .nosservices{
        padding: 0% 5%;  
    }
    .nosservices .servicesWrap > div{
        width: 30%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites{
        padding: 0% 5%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 48%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 23%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .partenaires{
        padding: 0% 5% 5% 5%;
    }
    .divfooter{
        width: 90%;
        left: 5%;
    }
    .footer{
        padding: 0% 5%;
    }
    .footer .contacts > div{
        flex-direction: row;
        justify-content: start;
    }
    .bannerarticle{
        width: 90%;
        left: 5%;
        height: 60vh;
    }
    .divarticle{
        width: 90%;
        left: 5%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 70%;
    }
    .divarticle .rigthdiv{
        width: 30%;
        padding: 20px;
        margin-top: 50px;
    }

    
}
@media only screen and (min-width: 1151px) and (max-width: 1248px){
    .header{
        height: 80px;
        padding: 1% 1%;
        display: flex;
    }
    .headermini, .menumobile{
        display: none;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 90vh;
    }
    .banner .bannercontent{
        top: 40%;
        left: 1%;        
    }
    .banner .bannercontent p.devise{
        font-size: 3.5rem;
    }
    .banner .bannercontentBottom{
        bottom: 10%;
        left: 1%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 2.5rem;
    }
    .aboutus{
        padding: 5% 1%;
    }
    .aboutus .bloc{
        flex-direction: row;
    }
    .aboutus .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }

    .serviceItems, .visionquote{
        padding: 5% 1%;
    }
    .serviceItems .bloc{
        flex-direction: row;
    }
    .serviceItems .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }


    .nosservices{
        padding: 0% 1%;  
    }
    .nosservices .servicesWrap > div{
        width: 30%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites{
        padding: 0% 1%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 48%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 23%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .partenaires{
        padding: 0% 1% 5% 1%;
    }
    .divfooter{
        width: 98%;
        left: 1%;
    }
    .footer{
        padding: 0% 1%;
    }
    .footer .contacts > div{
        flex-direction: row;
        justify-content: start;
    }
    .bannerarticle{
        width: 98%;
        left: 1%;
        height: 60vh;
    }
    .divarticle{
        width: 98%;
        left: 1%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 75%;
    }
    .divarticle .rigthdiv{
        width: 25%;
        padding: 20px;
        margin-top: 50px;
    }
}
@media only screen and (min-width: 1000px) and (max-width: 1151px){
    .header{
        height: 80px;
        padding: 1% 0%;
        display: flex;
    }
    .headermini, .menumobile{
        display: none;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 90vh;
    }
    .banner .bannercontent{
        top: 40%;
        left: 0.5%;        
    }
    .banner .bannercontent p.devise{
        font-size: 3.5rem;
    }
    .banner .bannercontentBottom{
        bottom: 10%;
        left: 0.5%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 2.5rem;
    }
    .aboutus{
        padding: 5% 0%;
    }
    .aboutus .bloc{
        flex-direction: row;
    }
    .aboutus .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }

    .serviceItems, .visionquote{
        padding: 5% 0.75%;
    }
    .serviceItems .bloc{
        flex-direction: row;
    }
    .serviceItems .bloc div{
        width: 50%;
        height: 50vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }


    .nosservices{
        padding: 0% 0%;  
    }
    .nosservices .servicesWrap > div{
        width: 30%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites{
        padding: 0% 0%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 48%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 23%;
        height: 60vh;
        margin: 0% 1% 2% 1%;
    }
    .partenaires{
        padding: 0% 0% 5% 0%;
    }
    .divfooter{
        width: 99%;
        left: 0.5%;
    }
    .footer{
        padding: 0% 0%;
    }  
    .footer .contacts > div{
        flex-direction: row;
        justify-content: start;
    }
    .bannerarticle{
        width: 99%;
        left: 0.5%;
        height: 60vh;
    }  
    .divarticle{
        width: 99%;
        left: 0.5%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 75%;
    }
    .divarticle .rigthdiv{
        width: 25%;
        padding: 20px;
        margin-top: 50px;
    }
}
@media only screen and (min-width: 651px) and (max-width: 999px){
    .header{
        display: none;
    }
    .headermini{
        height: 80px;
        padding: 1% 0%;
        display: flex;
    }
    #menubutton{
        height: auto;
        width: 48px;
    }
    .menumobileon{
        left: 0;
    }
    .menumobileoff{
        left: -100%;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 80vh;
    }
    .banner .bannercontent{
        top: 38%;
        left: 0.5%;        
    }
    .banner .bannercontent p.devise{
        font-size: 3.5rem;
    }
    .banner .bannercontentBottom{
        bottom: 10%;
        left: 0.5%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 2.5rem;
    }
    .aboutus{
        padding: 5% 0%;
    }
    .aboutus .bloc{
        flex-direction: row;
    }
    .aboutus .bloc div{
        width: 50%;
        height: 30vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }

    .serviceItems, .visionquote{
        padding: 5% 0.75%;
    }
    .serviceItems .bloc{
        flex-direction: row;
    }
    .serviceItems .bloc div{
        width: 50%;
        height: 30vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 2%;
        font-size: 1.5rem;
    }


    .nosservices{
        padding: 0% 0%;  
    }
    .nosservices .servicesWrap > div{
        width: 48%;
        height: 50vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites{
        padding: 0% 0%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 98%;
        height: 50vh;
        margin: 0% 1% 2% 1%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 48%;
        height: 50vh;
        margin: 0% 1% 2% 1%;
    }
    .partenaires{
        padding: 0% 0% 5% 0%;
    }
    .divfooter{
        width: 100%;
    }
    .footer{
        padding: 0% 0%;
    }    
    .footer .contacts > div{
        flex-direction: row;
        justify-content: start;
    }
    .bannerarticle{
        width: 100%;
        height: 70vh;
    }
    .divarticle{
        width: 100%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 100%;
    }
    .divarticle .rigthdiv{
        width: 100%;
        padding: 20px;
        margin-top: 50px;
    }
}
@media only screen and (max-width: 650px){
    .header{
        display: none;
    }
    .headermini{
        height: 80px;
        padding: 1% 0%;
        display: flex;
    }
    #menubutton{
        height: auto;
        width: 48px;
    }
    .menumobileon{
        left: 0;
    }
    .menumobileoff{
        left: -100%;
    }
    .hiddenSpace{
        display: block;
    }
    .addSpace{
        display: block;    
    }
    .banner{
        height: 90vh;
        
    }
    .banner .bannercontent{
        top: 50%;
        left: 0.5%;        
    }
    .banner .bannercontent p.devise{
        font-size: 2rem;
    }
    .banner .bannercontentBottom{
        bottom: 10%;
        left: 0.5%;        
    }
    .banner .bannercontentBottom p.devise{
        font-size: 1.5rem;
    }
    .aboutus{
        padding: 5% 0%;
    }
    .aboutus .bloc{
        flex-direction: column;
    }
    .aboutus .blocreverse{
        flex-direction: column-reverse;
    }
    .aboutus .bloc div{
        width: 100%;
        height: 40vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .aboutus .bloc div.text{
        padding: 4%;
        font-size: 1.2rem;
    }
    .aboutus .bloc div.text button{
        margin-top: 20px;
        padding: 10px 20px;
    }


    .serviceItems, .visionquote{
        padding: 5% 0.75%;
    }
    .serviceItems .bloc{
        flex-direction: column;
    }
    .serviceItems .reverse{
        flex-direction: column !important;
    }
    .serviceItems .bloc div{
        width: 100%;
        height: 40vh;
        padding: 0;
        margin: 0px 0px 0px 0px;
    }
    .serviceItems .bloc div.text{
        padding: 4%;
        font-size: 1.2rem;
    }

    

    .nosservices{
        padding: 0% 0%;  
    }
    .nosservices .servicesWrap > div{
        width: 94%;
        height: 60vh;
        margin: 0% 3% 3% 3%;
    }
    .divactualites{
        padding: 0% 0%;  
    }
    .divactualites .actualiteswrap > div.alaune{
        width: 94%;
        height: 60vh;
        margin: 0% 3% 3% 3%;
    }
    .divactualites .actualiteswrap > div.simplearticle{
        width: 94%;
        height: 60vh;
        margin: 0% 3% 3% 3%;
    }
    .partenaires{
        padding: 0% 0% 5% 0%;
    }
    .divfooter{
        width: 100%;
    }
    .footer{
        padding: 0% 0%;
    }   
    .footer .contacts > div{
        flex-direction: row-reverse;
        justify-content: center;
    }
    .bannerarticle{
        width: 100%;
        height: 70vh;
    }
    .divarticle{
        width: 100%;
        flex-direction: row;
    }
    .divarticle .content{
        width: 100%;
    }
    .divarticle .rigthdiv{
        width: 100%;
        padding: 20px;
        margin-top: 50px;
    } 
}