/********************/
/*ajout kalélia 2025*/
/********************/
:root{
    --wh: #ffffff;
    --blk: #1D1D1B;
    --bleu: #085DA6;
    --bleumoyen: #B5CFE5;
    --bleuclair: #E6EFF6;
    --or: #D0A722;
    --orclair: #F8F2DE;
    /*offset*/
    --anchor-offset: 300px;
}
[id]{
    scroll-margin-top: var(--anchor-offset);
}
html{
    scroll-behavior: smooth;
}

/*structure*/
.container,
.widzmain{
    width: 1400px;
    margin-right: auto;
    margin-left: auto;
}
.container{
    max-width: unset;
}
.contain-article{
    padding-top: 0;
}

/*HEADER*/
#header.header_sticky{
    background: var(--bleu);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 888;
}
#header_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 5.4%;

    background: url('../images/svg/decoration_dot_blue.svg') no-repeat left 30% center;

}
.header_sticky #header_content{
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 7;
}
/*logo*/
#logo{
    display: block;
    width: 150px;
    padding: 12px 0;
    position: relative;
    z-index: 8;
    transition: all 0.3s;
}
.header_sticky #logo{
    width: 109px;
    padding: 8px 0;
    /*position: fixed;
    left: 30px;*/
    transition: all 0.3s;
}
#logo img{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}
.header_sticky #logo img{
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
#logo a{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}
/*baseline*/
#header_baseline{
    display: block;
    line-height: 25px;
    margin: auto auto auto 0;
    font-size: 18px;
    color: var(--or);
    font-weight: 600;
    font-style: italic;
}
.header_sticky #header_baseline{
    position: absolute;
    top: -9999px;
    left: -9999px;
}
/*navtop*/
#navtop_strap{
    display: block;
    background: var(--bleu);
    position: relative;
    z-index: 8;
    transition: all 0.3s;
}
.header_sticky #navtop_strap{
    width: 1291px;
    padding-left: 109px;
    background: unset;
    margin-right: auto;
    margin-left: auto;
}
.header_sticky #navtop_strap nav.widzmain{
    width: 100%;
}
.navtop ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}
.navtop ul li{
    position: relative;
}
.navtop ul li:not(.spe){
    margin: auto 24px;
}
.navtop ul li:not(.spe):first-child{
    margin-left: auto;
}
.navtop ul li a{
    display: block;
    line-height: 22px;
    padding: 19px 18px;
    font-size: 16px;
    color: var(--wh);
    font-weight: 600;
    text-decoration: none;
}
.header_sticky .navtop ul li a{
    padding: 42px 18px;
}
.navtop ul li.spe{
    display: flex;
}
.navtop ul li.spe.search {
    margin-left: auto;
}
.navtop ul li.spe.contact,
.navtop ul li.spe.li{
    margin-left: 12px;
}
.navtop ul li.spe a{
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: var(--wh);
    border-radius: 50px;
    margin: auto 0;
    font-size: 0;
    position: relative;
}
.navtop ul li.spe a:before{
    content: '';
    display: block;
    background-color: var(--bleu);
    mask-size: 100%;
    -webkit-mask-size: 100% ;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s;
}
.navtop ul li.spe.search a:before{
    width: 18px;
    height: 20px;
    mask: url('../images/pic_ill_search.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_search.svg') no-repeat center;
}
.navtop ul li.spe.contact a:before{
    width: 21px;
    height: 15px;
    mask: url('../images/pic_ill_mail.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_mail.svg') no-repeat center;
}
.navtop ul li.spe.li a:before{
    width: 22px;
    height: 22px;
    mask: url('../images/pic_ill_li.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_li.svg') no-repeat center;
}
.navtop ul li:not(.spe):hover{
    background: var(--or);
    transition: all 0.3s;
}
.navtop ul ul{
    display: block;
    box-sizing: border-box;
    width: 200%;
    padding: 15px 15px 19px;
    background: var(--or);
    opacity: 0;
    position: absolute;
    top: 100%;
    left: -9999px;
    transition: opacity 0.3s 0.1s;
    z-index: 555;
}
.navtop ul li:hover ul{
    display: block;
    left: 0;
    opacity: 1;
}
.navtop ul li:not(.spe) ul li,
.navtop ul ul li{
    display: block;
    margin: 0;
}
.navtop ul ul li a{
    display: block;
    padding: 7px 0;
    font-size: 14px;
    transition: all 0.3s;
}
.header_sticky .navtop ul ul li a{
    padding: 7px 0;
}
.navtop ul ul li a:hover{
    color: var(--bleu);
    transition: all 0.3s;
}
/*search form*/
#searchform_block{
    display: none;
    padding: 14px 0 17px;
    background: var(--bleuclair);
    opacity: 0;
    transition: all 0.3s 0.1s;
}
#searchform_block.is_open{
    display: block;
    opacity: 1;
    transition: all 0.3s 0.1s;
}
#searchform{
    display: flex;
    width: 335px;
    padding: 0 0 5px 26px;
    border-bottom: 1px solid var(--bleumoyen);
    margin: 0 0 0 auto;
    position: relative;
}
#searchform:before{
    content: '';
    display: block;
    width: 14px;
    height: 16px;
    mask: url('../images/pic_ill_search.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_search.svg') no-repeat center;
    background-color: var(--bleumoyen);
    mask-size: 100%;
    -webkit-mask-size: 100% ;
    position: absolute;
    top: 3px;
    left: 5px;
}
#searchform #s{
    flex: 1;
    display: block;
    height: 20px;
    line-height: 20px;
    padding: 0;
    background: none;
    border: none;
    font-size: 15px;
    font-family: 'Open Sans';
    color: var(--bleu);
}
#searchform #searchsubmit{
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    background: var(--wh) url('../images/pic_ill_arrow.svg') no-repeat center;
    background-size: 9px 8px;
    border-radius: 50px;
    border: none;
    font-size: 0;
    cursor: pointer;
}


/*FOOTER*/
#newsletter{
    font-size: 16px;
}
#newsletter .container{
    padding: 60px 0 101px;
    border-top: 1px solid var(--bleumoyen);
}
#newsletter h4{
    display: block;
    line-height: 31px;
    margin-bottom: 13px;
    font-size: 21px;
    color: var(--or);
    font-weight: 700;
}
#newsletter p {
    line-height: 22px;
}
#newsletter form input[type="email"] {
    background: var(--bleuclair);
    border: 1px solid var(--bleuclair);
    border-radius: 0;
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--bleu);
}

/*HOMEPAGE*/
.home_big_title{
    display: block;
    line-height: 36px;
    margin-bottom: 34px;
    font-size: 31px;
    color: var(--bleu);
    font-weight: 700;
}
.list_single_mozaik{
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}
.list_single_mozaik_single{
    display: block;
    box-sizing: border-box;
    width: calc((100% / 4) - 19px + (19px / 4));
    padding: 41px 40px 80px;
    background: transparent;
    border: 1px solid var(--bleumoyen);
    transition: all 0.3s;
    position: relative;
}
.list_single_mozaik_single:hover{
    background: var(--bleu);
    transition: all 0.3s;
}
.list_single_mozaik_single_title{
    display: block;
    line-height: 29px;
    margin-bottom: 10px;
    font-size: 21px;
    color: var(--bleu);
    font-weight: 700;
    transition: all 0.3s;
}
.list_single_mozaik_single:hover .list_single_mozaik_single_title{
    color: var(--or);
    transition: all 0.3s;
}
.list_single_mozaik_single_pic{
    display: block;
    margin: 0 auto 24px;
    text-align: center;
}
.list_single_mozaik_single_link{
    display: block;
    font-size: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}
/*thématiques*/
.home_thema_strap{
    display: block;
    padding: 50px 0 0;
    margin-bottom: 60px;
}
.home_thema_single{
    text-align: left;
}
.home_thema_single_pic{
    display: flex;
    width: 100px;
    height: 100px;
    background: var(--orclair);
    border-radius: 50px;
    margin: 0 auto;
}
.home_thema_single_pic img{
    display: block;
    width: auto;
    max-width: 50%;
    height: auto;
    max-height: 50%;
    margin: auto;
}
.home_thema_single_hentry p{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 21px;
}
.home_thema_single_hentry .labels{
    display: block;
    line-height: 19px;
    padding: 1px 10px;
    background: var(--bleuclair);
    font-size: 14px;
    color: var(--bleu);
    font-width: 400;
}
.home_thema_single:before{
    content: '';
    width: 40px;
    height: 40px;
    background: var(--bleu);
    border-radius: 50px;
    position: absolute;
    right: 20px;
    bottom: 30px;
    z-index: 3;
}
.home_thema_single:after{
    content: '';
    width: 18px;
    height: 15px;
    mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--wh);
    position: absolute;
    right: 31px;
    bottom: 42px;
    z-index: 4;
    transition: all 0.3s;
}
.home_thema_single:hover:before{
    background: var(--wh);
    transition: all 0.3s;
}
.home_thema_single:hover:after{
    background-color: var(--or);
    transition: all 0.3s;
}
/*Observatoire*/
.home_observat_strap{
    display: block;
    margin-bottom: 57px;
}
.home_observat_strap_content{
    display: flex;
    padding: 49px 60px 49px 0;
    margin-bottom: 10px;
    position: relative;
}
img.home_observat_strap_pic{
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.home_observat_strap_hentry_block{
    display: block;
    box-sizing: border-box;
    width: auto;
    max-width: 572px;
    padding: 60px 40px;
    background: var(--orclair);
    margin: 0 0 0 auto;
    position: relative;
    z-index: 3;
}
.home_observat_strap .home_big_title{
    padding-left: 95px;
    margin-bottom: 24px;
    color: var(--or);
    position: relative;
}
.home_observat_strap .home_big_title:before{
    content: '';
    width: 75px;
    height: 75px;
    background: var(--or) url('../images/pic_ill_eye.svg') no-repeat center;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
}
.home_observat_strap_hentry{
    display: block;
    line-height: 22px;
    font-size: 16px;
}
.home_observat_strap_hentry p{
    line-height: 22px;
    margin-bottom: 19px;
}
.home_observat_strap_hentry a{
    display: inline-block;
    line-height: 26px;
    padding: 7px 50px 7px 0;
    color: var(--or);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
}
.home_observat_strap_hentry a:before{
    content: '';
    width: 40px;
    height: 40px;
    background: var(--wh);
    border-radius: 50px;
    margin: auto 0 auto auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s;
}
.home_observat_strap_hentry a:after{
    content: '';
    width: 18px;
    height: 15px;
    mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--or);
    margin: auto 0 auto auto;
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    z-index: 3;
    transition: all 0.3s;
}
.home_observat_strap_hentry a:hover{
    color: var(--bleu);
    transition: all 0.3s;
}
.home_observat_strap_hentry a:hover:before{
    background: var(--bleu);
    transition: all 0.3s;
}
.home_observat_strap_hentry a:hover:after{
    background-color: var(--wh);
    transition: all 0.3s;
}
.home_observat_strap_pic_legend{
    display: block;
    line-height: 16px;
    font-size: 12px;
    color: var(--bleu);
    font-weight: 400;
    font-style: italic;
}
/*social*/
.home_social_strap{
    display: block;
    margin-bottom: 60px;
}
/*nouveautés*/
.home_new_strap{
    display: block;
    padding: 79px 0 85px;
    background: var(--bleuclair);
    margin-bottom: 54px;
}
.home_new_single{
    text-align: center;
}
.home_new_single .list_single_mozaik_single_pic img{
    display: block;
    width: auto;
    height: 50px;
    margin: 0 auto;
}
.home_new_single .list_single_mozaik_single_hentry{
    font-size: 16px;
    color: var(--blk);
    transition: all 0.3s;
}
.home_new_single:hover .list_single_mozaik_single_hentry{
    color: var(--wh);
    transition: all 0.3s;
}
.home_new_single .list_single_mozaik_single_hentry p{
    line-height: 22px;
    margin-bottom: 22px;
}
.home_new_single:before{
    content: '';
    width: 40px;
    height: 40px;
    background: var(--wh);
    border-radius: 50px;
    margin: auto auto 0;
    position: absolute;
    right: 0;
    bottom: 40px;
    left: 0;
    z-index: 3;
}
.home_new_single:after{
    content: '';
    width: 18px;
    height: 15px;
    mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--bleu);
    margin: auto auto 0;
    position: absolute;
    right: 0;
    bottom: 52px;
    left: 0;
    z-index: 4;
    transition: all 0.3s;
}
.home_new_single:hover:after{
    background-color: var(--or);
    transition: all 0.3s;
}

/*TABLEAU DE BORD*/
.page_content_wrap{
    padding: 47px 0 80px;
}
.teo_breadcrumb{
    display: block;
    line-height: 16px;
    padding: 20px 0 0;
    font-size: 12px;
    color: var(--blk);
}
.teo_breadcrumb a{
    color: var(--blk);
    text-decoration: none;
}
.teo_breadcrumb .current-item{
    font-weight: 700;
}
.single-tableau-de-bord .teo_breadcrumb{
    margin-bottom: 47px;
}
.breadcrumb{
    padding: 20px 0 10px;
}
/*sidebar*/
.page_wizsidebar_main{
    display: flex;
    flex-wrap: wrap;
    gap: 98px;
    padding: 0 0 80px;
}
.page_wizsidebar_side{
    display: block;
    width: 355px;
    height: fit-content;
    padding-top: 47px;
    position: sticky;
    top: 0;
}
.page_wizsidebar_side_content{
    display: block;
    box-sizing: border-box;
    width: 355px;
    padding: 40px 56px;
    background: var(--bleuclair);
    transition: all 0.3s;
}
.page_wizsidebar_side_content.page_wizsidebar_side_content_sticky{
    padding-top: 100px;
}
/*.page_wizsidebar_side_content.page_wizsidebar_side_content_sticky{*/
/*    position: fixed;*/
/*    top: 106px;*/
/*    z-index: 7;*/
/*    transition: all 0.3s;*/
/*}*/
.page_wizsidebar_side .list_single_mozaik_single_title{
    margin-bottom: 21px;
}
.page_wizsidebar_side_nav_item{
    display: block;
}
.page_wizsidebar_side_nav_item:not(:last-of-type){
    margin-bottom: 17px;
}
.page_wizsidebar_side_nav_item a{
    display: block;
    line-height: 22px;
    font-size: 16px;
    color: var(--bleu);
    text-decoration: none;
    transition: all 0.3s;
}
.page_wizsidebar_side_nav_item a:hover{
    color: var(--or);
    transition: all 0.3s;
}
/*content*/
.page_wizsidebar_content{
    flex: 1;
    padding-top: 47px;
}
.page_wizsidebar_content .contain-article{
    padding: 0;
}
.page_double_content_strap{
    display: flex;
    flex-wrap: wrap;
    gap: 41px;
}
.page_double_content_single{
    flex: 1;
    display: block;
    background: var(--orclair);
}
.page_double_content_single_main{
    display: block;
    padding: 40px 50px;
}
.page_double_content_single .list_single_mozaik_single_title{
    color: var(--or);
}
.children_mozaik_wrap{
    padding-top: 74px;
}
.children_mozaik:not(:last-of-type){
    margin-bottom: 80px;
}
/*cards*/
.tdb_list_single{
    display: block;
    box-sizing: border-box;
    width: calc((100% / 3) - 19px + (19px / 3));
    padding: 31px 20px 110px;
    background: transparent;
    border: 1px solid var(--bleumoyen);
    text-align: center;
    position: relative;
}
.tdb_list_single.bleu{
    background: var(--bleuclair);
}
.tdb_list_single:hover,
.tdb_list_single.bleu:hover{
    background: var(--bleu);
    transition: all 0.3s;
}
.tdb_list_single .list_single_mozaik_single_title{
    font-weight: 600;
}
.tdb_list_single:hover .list_single_mozaik_single_title{
    color: var(--or);
}
.tdb_list_single_pic_strap{
    display: block;
    margin-bottom: 10px;
}
.tdb_list_single_pic svg{
    display: block;
    width: auto!important;
    height: 25px;
    margin: 0 auto;
    color: var(--or);
}
.tdb_list_single_chiffres{
    display: block;
    line-height: /*33px*/40px;
    margin-bottom: 3px;
    font-size: /*24px*/35px;
    color: var(--bleu);
    font-weight: 400;
    transition: all 0.3s;
}
.tdb_list_single_sub{
    display: block;
    line-height: 22px;
    font-size: 16px;
    font-weight: 300;
}
.tdb_list_single:hover .tdb_list_single_sub,
.tdb_list_single:hover .tdb_list_single_chiffres{
    color: var(--wh);
    transition: all 0.3s;
}
.tdb_list_single:before{
    content: '';
    width: 40px;
    height: 40px;
    background: var(--bleuclair);
    border-radius: 50px;
    margin: auto auto 0;
    position: absolute;
    right: 0;
    bottom: 40px;
    left: 0;
    z-index: 3;
    transition: all 0.3s;
}
.tdb_list_single:after{
    content: '';
    width: 18px;
    height: 15px;
    mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    -webkit-mask: url('../images/pic_ill_arrow_l.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    background-color: var(--or);
    margin: auto auto 0;
    position: absolute;
    right: 0;
    bottom: 52px;
    left: 0;
    z-index: 4;
}
.tdb_list_single:hover:before{
    background: var(--wh);
    transition: all 0.3s;
}
.tdb_list_single_link{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}