#home {
    position: relative;
    width: 100%;
    height: auto;
}
#home .full_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100px;
    background-image: url('../images/abstract_bg.jpg');
    background-image: url('../images/abstract_bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
#home .full_wrapper::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(70deg, rgba(249, 249, 255, 0.7), rgba(245, 245, 255, 0.7), rgba(175, 156, 192, 0.6));
    opacity: 0.6;
    z-index: 2;
    display: block;
}
#home .wrapper {
    position: relative;
    width: 1080px;
    margin: auto;
    z-index: 3;
}
#home .wrapper .section{
    position: relative;
    width: 100%;
}
#home .wrapper .section.one {
    padding: 175px 0;
    padding-bottom: 100px;
}
#home .wrapper .section.one h2{
    position: relative;
    width: 850px;
    font-size: 45px;
    font-weight: 900;
    font-weight: bold;
    background: linear-gradient(45deg, var(--bleu), var(--orange));
    -webkit-background-clip: text;
    background-clip: text; 
    color: transparent; 
}
#home .wrapper .section.one p {
    position: relative;
    width: 800px;
    font-size: 16px;
    font-weight: 500;
    color: var(--noir);
}


#home .wrapper .section.two {    /****************************  Listing des acteurs        ****** */
    position: relative;
    padding: 0;
    display: flex;
    justify-content: space-between;
    padding-bottom: 155px;
}
#home .wrapper .section.two .left{
    position: sticky;
    top: 10vh;
    width: 325px;
    padding: 0px;
    height: auto;
    max-width: 350px;
    max-height: 750px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.00);
    /* border: 1px solid red; */
}

#home .wrapper .section.two .left .filtre{
    position: relative;
    width: 100%;
    background-color: var(--blanc);
    padding: 0px;
}
#home .wrapper .section.two .left form{
    position: relative;
    width: 100%;
}
#home .wrapper .section.two .left form .form-control{
    position: relative;
    width: 100%;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
    border: 1px solid var(--bleu-clair);
    height: 40px;
}
#home .wrapper .section.two .left form .form-control:focus{
    outline: none;
}
#home .wrapper .section.two .left form .btn{
    position: relative;
    width: 100%;
    text-align: center;
    background-color: var(--bleu-clair);
}

#home .wrapper .section.two .left .forme{
    position: relative;
    width: 100%;
}
#home .wrapper .section.two .left .forme h3{
    position: relative;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    background-color: var(--blanc);
    padding: 25px;
    padding-bottom: 15px;
    color: var(--bleu);
}
#home .wrapper .section.two .left .forme .trait_forme {
    position: relative;
    display: block;
    width: 80%;
    height: 1px;
    background-color: var(--bleu-clair);
    content: '';
    margin-left: 25px;
}
#home .wrapper .section.two .left .forme ul{
    position: relative;
    width: 100%;
    padding: 20px;
    padding-top: 15px;
    background-color: var(--blanc);
    list-style: none;
}
#home .wrapper .section.two .left .forme ul li{
    position: relative;
    width: 100%;
    background-color: var(--blanc);
    list-style: none;
}
#home .wrapper .section.two .left .forme ul li a{
    position: relative;
    display: flex;
    width: 100%;
    color: rgb(83, 83, 83);
    font-size: 14px;
    cursor: pointer;
    transition: ease all 0.3s;
    text-decoration: none;
    padding: 3px 10px;
}
#home .wrapper .section.two .left .forme ul li a:hover{
    position: relative;
    color: var(--bleu-clair);
}
#home .wrapper .section.two .left .forme ul li a.active{
    color: var(--orange);
}
#home .wrapper .section.two .left .forme ul li a span{
    color: var(--bleu);
    display: none;
    font-size: 16px;
    margin-right: 5px;
    margin-top: -1px;
}
#home .wrapper .section.two .left .forme ul li a.active span{
    display: inline-block;color: var(--bleu);
}

#home .wrapper .section.two .left .pub{  /***  pub  ***/
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: var(--blanc);
}
#home .wrapper .section.two .left .pub .liste{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#home .wrapper .section.two .left .pub .liste a{
    position: relative;
    display: block;
    width: 100%;
    /* border: 1px solid red; */
    border-radius: 5px;
    overflow: hidden;
    margin: 0 !important;
}
#home .wrapper .section.two .left .pub .liste a .inner{
    position: relative;
    width: 100%;
    height: 150px;
    z-index: 2;
}
#home .wrapper .section.two .left .pub .liste a .inner::after{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    background-image: linear-gradient(70deg, var(--bleu-clair), var(--bleu-clair), rgb(96, 66, 124));
    opacity: 0.6;
    transition:ease-out all 0.3s;
}
#home .wrapper .section.two .left .pub .liste a:hover .inner::after{
    background-image: linear-gradient(80deg, var(--bleu-clair), var(--bleu-clair), rgb(96, 66, 124));
    opacity: 0.9;
}
#home .wrapper .section.two .left .pub .liste a .inner img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease all 0.3s;
}
#home .wrapper .section.two .left .pub .liste a:hover .inner img{
    transform: scale(1.03) rotate(1deg);
}
#home .wrapper .section.two .left .pub .liste a .caption{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--blanc);
    z-index: 10;
    transition: ease all 0.3s;
    font-size: 18px;
}

#home .wrapper .section.two .left .pub .liste a .caption p{
    position: relative;
    font-size: 14px;

    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--blanc);

}
#home .wrapper .section.two .left .pub .liste a .caption p span{
   
    font-size: 11px;

}

#home .wrapper .section.two .left .lexique{  /***  lexique  ***/
    position: relative;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
}
#home .wrapper .section.two .left .lexique h3{
    position: relative;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 15px;
    color: var(--bleu);
}
#home .wrapper .section.two .left .lexique .trait_lexique {
    position: relative;
    display: block;
    width: 80%;
    height: 1px;
    background-color: var(--bleu-clair);
    content: '';
}

#home .wrapper .section.two .left .lexique .liste{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
#home .wrapper .section.two .left .lexique .liste .item{
    position: relative;
    width: 100%;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(202, 202, 202, 0.3);
}
#home .wrapper .section.two .left .lexique .liste .item h4{
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--noir);
}
#home .wrapper .section.two .left .lexique .liste .item p{
    position: relative;
    width: 100%;
    font-size: 12px;
    color: rgb(83, 83, 83);
}
#home .wrapper .section.two .left .lexique a{
    position: relative;
    width: 100%;
    font-size: 18px;
    background-color: var(--bleu-clair);
    color: var(--blanc);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 25px;
    border-radius: 20px;
    margin-top: 15px;
    text-align: center;
    border: 5px solid rgba(173, 173, 173, 0.0);
    transition: ease-in-out all 0.3s;
}
#home .wrapper .section.two .left .lexique a span{
    font-size: 16px;
    margin-left: 8px;
}

#home .wrapper .section.two .left .lexique a:hover{
    position: relative;
    width: 100%;
    border: 5px solid var(--bleu);
}
#home .wrapper .section.two .left .lexique a:hover{
    position: relative;
    width: 100%;
}


/**** Right */
#home .wrapper .section.two .right{
    position: relative;
    width: 70%;
    float: right;
    margin-left: 20px;
    height: auto;
    margin-bottom: 175px;
    
}
#home .wrapper .section.two .right .bloc_secteur {
    display: none;
    width: 0;
    height: 0;
    position: absolute;
    visibility: hidden;
    z-index: 0;
    opacity: 0;
    transition: 0.2s ease-in-out all;
}
#home .wrapper .section.two .right .bloc_secteur.active {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    visibility: visible;
    z-index: 3;
    opacity: 1;
    transition: 0.2s ease-in-out all;
}


#home .wrapper .section.two .right h1{
    position: relative;
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(202, 202, 202, 0.3);
    color: rgb(63, 63, 63);
}
#home .wrapper .section.two .right h1 b{
    color: var(--bleu-clair);
}
#home .wrapper .section.two .right .items.listing{
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: -250px;
    padding-top: 225px;
}
#home .wrapper .section.two .right .items .item{
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(173, 173, 173, 0.1);
    background-color: var(--blanc) !important;
    border: 3px solid rgba(25, 91, 164, 0.2);
    transition: ease all 0.3s;
    padding: 15px;
}
#home .wrapper .section.two .right .items .item:hover {
    border: 3px solid rgba(25, 91, 164, 0.8);
}
#home .wrapper .section.two .right .items .item .item-head {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: var(--blanc);
    border-radius: 5px;
}
#home .wrapper .section.two .right .items .item .item-head .name{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
}
#home .wrapper .section.two .right .items .item .item-head .name .logo{
    position: relative !important;
    display: inline-block;
    width: 175px;
    height: auto;
    padding-right: 10px !important;
    border: 1px solid rgba(241, 241, 241, 0.1);
    overflow: hidden;
}
#home .wrapper .section.two .right .items .item .item-head .name .logo img{
    position: relative !important;
    width: 100%;
    height: auto;
    /* background-color: var(--bleu-clair); */
}
#home .wrapper .section.two .right .items .item .item-head .name h2 {
    position: relative;
    display: inline-block;
    min-width: 200px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blanc);
    text-transform: uppercase;
    padding: 6px 25px;
    background-image: linear-gradient(70deg, var(--bleu-clair), var(--bleu-clair), rgb(96, 66, 124));
    border-radius: 30px;
    margin: 15px 0;
}
#home .wrapper .section.two .right .items .item .item-head .name h2 span{
    position: relative;
    display: inline-block;
    background-color: rgb(201, 201, 201);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px !important;
    color: var(--blanc);
    margin-top: 10px;
    text-transform: none;
}

#home .wrapper .section.two .right .items .item .item-head p {
    position: relative;
    font-size: 14px;
}
#home .wrapper .section.two .right .items .item .item-head .forme {
    position: relative;
    width: auto;
}
#home .wrapper .section.two .right .items .item .item-head > div{
    position: relative;
    display: flex;
    margin-bottom: 5px;
}
#home .wrapper .section.two .right .items .item .item-head span{
    position: relative;
    font-size: 15px !important;
    margin-right: 12px;
    margin-top: -5px;
    color: var(--bleu-clair);
}
#home .wrapper .section.two .right .items .item .item-head p {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 10px;
}
#home .wrapper .section.two .right .items .item .item-head .email {
    position: relative;
    display: flex;
}
#home .wrapper .section.two .right .items .item .item-head .telephone {
    position: relative;
    display: flex;
}
#home .wrapper .section.two .right .items .item .item-head .lien {
    position: relative;
    display: flex;
}

#home .wrapper .section.two .right .items .item .item-head .lien p {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 0;
    margin-bottom: 35px;
}

#home .wrapper .section.two .right .items .item .btns {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#home .wrapper .section.two .right .items .item .btns .reseaux{
    position: relative;
    width: auto;
    display: flex;
}
#home .wrapper .section.two .right .items .item .btns .reseaux a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bleu-clair);
    text-decoration: none;
    margin: 3px;
}
#home .wrapper .section.two .right .items .item .btns .reseaux a span{
    position: relative;
    margin: auto;
}

#home .wrapper .section.two .right .items .item .btns .lien a{
    position: relative;
    float: right;
    width: auto;
    max-width: 190px;
    background-color: rgba(25, 91, 164, 0.0);
    border: 1px solid rgba(25, 91, 164, 0.9);
    transform: scale(1);
    opacity: 1;
    transition: ease-in-out 0.3s all;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
    text-decoration: none;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 12px;
    color: var(--bleu) !important;
    margin-left: 5px;
}

#home .wrapper .section.two .right .items .item .btns .lien a:hover {
    background-color: rgba(25, 91, 164, 0.9);
    transform: scale(1.01);
    opacity: 1;
    color: var(--blanc) !important;
}
#home .wrapper .section.two .right .items .item .btns .lien a span{
    font-size: 12px !important;
    font-weight: 600;
    margin: 0px;
    margin-left: 5px;
    transition: ease-in-out 0.3s all;
}
#home .wrapper .section.two .right .items .item .btns .lien a:hover span{
    color: var(--blanc);
}





#home .wrapper .section.two .pagination-controls{
    /* background-color: var(--blanc); */
    border-radius: 5px;
}
#home .wrapper .section.two .pagination-controls {
        text-align: center;
        margin-top: 30px;
        padding: 10px;
    }

#home .wrapper .section.two .pagination-controls button {
    margin: 5px;
    border: none;
    /* background-color: rgb(197, 197, 197); */
    border: 1px solid var(--bleu-clair);
    color: var(--bleu-clair);
    cursor: pointer;
    border-radius: 3px;
    opacity: 0.5;
    transition: ease-in all 0.2s;
    width: 35px;
    height: 33px;
    font-size: 13px;
}

#home .wrapper .section.two .pagination-controls button:focus,
#home .wrapper .section.two .pagination-controls button.active {
    border: 1px solid var(--bleu);
    outline: none;
    background-color: var(--bleu);
    opacity: 1;
    color: var(--orange);
}

#home .wrapper .section.two .pagination-controls button:hover {
    background-color: var(--bleu);
    opacity: 1;
}

#home .wrapper .section.two .pagination .page-link:focus {
    outline: none !important;
    /* This will remove the outline */
}
#home .wrapper .section.two li.page-item a:focus {
    outline: none;
}
#home .wrapper .section.two li.page-item.active a {
    background-color: var(--bleu);
    color: var(--blanc);
    outline: 0;
    outline: none;
}
