/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --yellow: #efc94b;
    --green: #3e8950;
    --red: #c13133;
    --white: #ffffff;
    --black: #404244;
    --f1: "Arimo", sans-serif;
    --f2: "Jost", sans-serif;
    --text: normal 16px/30px var(--f1);
    --title: 200 48px/50px var(--f2);
}

/* RESET */
body,
ul,
li,
ol,
form,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
p {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

input,
textarea,
select {
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 0;
}

* {
    outline: none !important;
}



ul {
    list-style-type: none;
}

body {
    font: var(--text);
    color: var(--black)
}

body * {
    box-sizing: border-box;
    outline: 0
}

a {
    text-decoration: none;
    outline: none;
    color: var(--black);
}

img {
    border: none;
}

p {
    margin-bottom: 25px
}



/* CLASS */
.clear {
    clear: both;
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.clr:after {
    content: '';
    display: table;
    width: 100%;
    clear: both
}

.slick-dots {
    display: flex;
    justify-content: center;
}

.slick-dots button {
    font-size: 0;
    line-height: 0;
    text-indent: -99999px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--black);
    background: transparent;
    border-radius: 50%;
    padding: 0;
}

.container {
    max-width: 1223px;
    padding: 0 40px;
    margin: auto;
    width: 100%;
}

.slick-dots li {
    margin: 0 7px;
    font-size: 0;
    line-height: 0;
    text-indent: -99999
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.slick-dots li.slick-active button {
    background-color: var(--red);
    border-color: var(--red);
}

.title {
    font: var(--title);
    margin-bottom: 40px;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.text-center {
    text-align: center;
}

.mt_100 {
    margin-top: 100px;
}

.mt_60 {
    margin-top: 60px;
}

.mb_100 {
    margin-bottom: 100px;
}

.pt_100 {
    padding-top: 100px;
}

.pb_100 {
    padding-bottom: 100px;
}

.slick-prev,
.slick-next {
    width: 16px;
    height: 26px;
    background: none;
    z-index: 50;
    cursor: pointer;
    text-indent: -9999px;
    outline: none;
    border: 0;
    padding: 0
}

.slick-next {
    background: url(../images/arrow-next.png)center no-repeat
}

.slick-prev {
    background: url(../images/arrow-prev.png)center no-repeat
}

.slick-dots li {
    display: inline-block;
    height: 10px;
    margin: 0 5px
}

.btn {
    display: inline-block;
    padding: 26px 38px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #404244;
    text-transform: uppercase;
    background: #f4f4f4;
}

.btn.btn-green {
    background: var(--green);
    color: var(--white);
    border-radius: 35px;
}

.btn.outline {
    background: transparent;
    border-color: #ffffff;
}

.btn.outline.dark {
    border-color: #aaaaaa;
    color: #1a1b1c
}

.btn.white {
    background-color: #ffffff;
    color: #1a1b1c;
    border-color: #ffffff;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


/*HEADER*/
.btn-menu {
    display: none;
}

.blc-top .container {
    max-width: 1326px;
}

.blc-nav>ul {
    display: flex;
    flex-wrap: wrap;
}

.blc-nav>ul>li>a {
    font-family: var(--f1);
}

.blc-nav>ul>li.current-menu-item>a {
    color: var(--red);
}

.blc-nav>ul>li {
    margin-right: 35px;
    position: relative;
}

.blc-nav>ul>li:before {
    content: '';
    width: 1px;
    height: 0;
    position: absolute;
    top: -82px;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--green);
    transition: all ease-in-out .4s;
}

.blc-nav>ul>li.current-menu-item:before {
    height: 70px;
}

.connexion {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--yellow);
    font-size: 14px;
    line-height: 14px;
    border-radius: 25px;
}

.connexion:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/ico-connexion.png)center no-repeat;
    display: block;
    margin-right: 9px;
}


.blc-top .language-switcher ul {
    position: absolute;
    top: 25px;
    display: none;
}

.blc-top .language-switcher:after {
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    background: url(../images/arrow-down.png)center no-repeat;
    width: 9px;
    height: 4px;
}

.blc-top .row {
    position: relative;
    padding: 32px 0 25px;
}

.blc-top .row .language-switcher {
    position: absolute;
    right: 0;
    top: 25px;
    padding-right: 15px;
    cursor: pointer;
}

.blc-top .row .language-switcher a {
    color: #727475;
    font-size: 14px;
}

.blc-top .blc-menu {
    padding-top: 40px;
}

/*SECTION BANNER*/
.sec-banner {
    position: relative;
}

.sec-banner .content {
    position: relative;
    z-index: 40;
    width: 100%;
    height: calc(100vh - 151px);
    display: flex;
    align-items: center;
}

.sec-banner .content:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+51,1+95 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 1) 95%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */


}

.sec-banner .blc-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sec-banner .blc-slider img,
.sec-banner .blc-slider iframe {
    width: 100%;
    height: calc(100vh - 151px);
    object-fit: cover;
}

.sec-banner .blc-slider iframe {
    transform: scale(1.4);
}

.sec-banner .label {
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    display: inline-block;
    padding: 24px 43px;
    background: var(--yellow);
    color: var(--white);
    margin-bottom: 10px;
}

.sec-banner .title-banner {
    font-size: 48px;
    line-height: 54px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 800;
    font-family: var(--f2);
}

.sec-banner .container {
    max-width: 1220px;
}

.sec-banner .title-banner p {
    margin-bottom: 0;
}

/*SECTION PROCESS*/
.sec-process-desc .list .item {
    width: 25%;
}

.sec-process-desc .list {
    margin-bottom: 30px;
}

.sec-process-desc .container {
    max-width: 1447px;
}


.sec-process-desc .title-item {
    font-family: var(--f2);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all ease-in-out .4s;

}

.sec-process-desc .info-item {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #404244;
    margin-bottom: 12px;

}

.sec-process-desc .inner-number {
    width: 60px;
    height: 60px;
    border: 1px solid #727475;
    color: #727475;
    border-radius: 50%;
    font-size: 24px;
    font-family: var(--f2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all ease-in-out .4s;
}

.sec-process-desc .number {
    padding-top: 0;
    position: relative;
    transition: all ease-in-out .4s;
    height: 120px;
}

.sec-process-desc .number:before {
    content: '';
    width: 1px;
    height: 0;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    background: var(--green);
    position: absolute;
    transition: all ease-in-out .4s;

}

.sec-process-desc .item .icon img {
    margin: auto;
}

.sec-process-desc .item .icon {
    margin-bottom: 30px;
}


/*SECTION IMAGE TEXT*/
.sec-img-text .container {
    max-width: 1220px;

}

.sec-img-text .btn-mobile {
    display: none;
}

.sec-img-text {
    padding-top: 130px;
    position: relative;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f4f4f4+67 */
    background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 67%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.sec-img-text .deco-top {
    height: 60px;
    width: 1px;
    background: var(--black);
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: auto;
}


.sec-img-text .blc-img {
    width: 57%;
    padding-bottom: 60px;
}

.sec-img-text .blc-img .img img {
    width: 100%;
    display: block;
}

.sec-img-text .blc-text {
    width: 43%;
    padding-left: 60px;
}

.sec-img-text .blc-img .img {
    width: calc(100% - 160px);
    padding-right: 54px;
}


.sec-img-text .blc-img .icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    background: url(../images/bg-logo1.png)center no-repeat;*/
    position: relative;
}

.sec-img-text .blc-img .icon .bg-icon {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.03);
}

.sec-img-text .blc-img .icon .bg-icon1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 0;
    right: 0;
    margin: -50px auto 0;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(158, 158, 158, 0.01);
    -moz-box-shadow: 0px 0px 12px 0px rgba(158, 158, 158, 0.01);
    box-shadow: 0px 0px 12px 0px rgba(158, 158, 158, 0.01);
}

.sec-img-text .blc-img .icon .bg-icon2 {
    background: #fafafa;
    width: 130px;
    height: 130px;
    top: 50%;
    margin: -65px auto 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.sec-img-text .blc-img .icon .bg-icon3 {
    background: #fafafa;
    width: 160px;
    height: 160px;
    top: 50%;
    margin: -80px auto 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.sec-img-text .blc-img .icon img {
    position: relative;
    z-index: 30;
}

.sec-img-text .blc-text .inner-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 70px;
}

.sec-img-text .blc-text .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
}

.before-title {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--f2);
    color: var(--red);
    margin-bottom: 25px;
}

.sec-img-text .title {
    font-size: 48px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 20px;
}



/*SECTION PROJET*/
.sec-project {
    padding: 80px 0;
    position: relative;
}

.sec-project .list {
    margin-left: -15px;
    margin-right: -15px;
}


.sec-project .list:not(.slide-project) .item {
    width: 33.33%;
    margin-bottom: 15px;
}

.sec-project .list:not(.slide-project) {
    display: flex;
    flex-wrap: wrap;
}

.sec-project .list.slide-project .slick-track {
    display: flex;
    flex-wrap: wrap;
}


.sec-project .deco-top {
    height: 60px;
    width: 1px;
    background: var(--black);
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}


.s-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--f2);
    padding-right: 40px;
    position: relative;
}

.s-title:after {
    content: '';
    width: 14px;
    height: 7px;
    background: url(../images/arrow-title.png)center no-repeat;
    position: absolute;
    right: 0;
    top: 15px;
}

.link {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 18px;
    color: var(--red);
    font-weight: 600;
    display: inline-block;
    padding-right: 80px;
    position: relative;
}

.link:after {
    content: '';
    width: 60px;
    top: 8px;
    height: 1px;
    background: var(--green);
    position: absolute;
    right: 0;
    transition: all 400ms ease-in-out;
}

.top-project {
    margin-bottom: 20px;
}

.sec-project .item {
    padding: 15px 15px 20px;
    height: inherit;
}

.sec-project .item .img img {
    width: 100%;
    display: block;
    border-radius: 15px 15px 0 0;
    height: 193px;
    object-fit: cover;
}

.sec-project .item .content {
    padding: 40px 31px 87px;
    position: relative;
    height: calc(100% - 193px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec-project .item .inner {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    transition: all ease-in-out .4s;
    height: 100%;
}

.sec-project .item .btn {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 194px;

}

.sec-project .item .btn .btn-single {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 194px;
    height: 93px;
}

.sec-project .item .title-item {
    font-size: 24px;
    font-family: var(--f2);
    font-weight: 500;
    margin-bottom: 15px;
    transition: all ease-in-out .4s;
}

.s-title-item {
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sec-project .amount {
    font-size: 16px;
    font-weight: 700;
}

.sec-project .item .left .amount {
    color: #3e8950;
}

.sec-project .item .right .amount {
    color: #efc94b;
    font-weight: 500;

}

.sec-project .donation-status,
.sec-top-single-project .blc-right .donation-status {
    font-family: var(--f2);
    font-size: 11px;
    line-height: 11px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    top: -75px;
    width: calc(100% - 40px);
    left: 0;
}

.sec-project .donation-status>div,
.sec-top-single-project .blc-right .donation-status>div {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -20px;
}

.sec-project .item.blocked .donation-status>div:before {
    content: '';
    width: 40px;
    height: 40px;
    background: url(../images/icon-blocked.png)center no-repeat var(--yellow);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.sec-project .item.blocked {
    opacity: .5;
    pointer-events: none;
}

.sec-project .donation-status:before,
.sec-top-single-project .blc-right .donation-status:before {
    content: '';
    width: calc(100% + 40px);
    margin-top: -1px;
    margin-left: 0;
    height: 3px;
    background: var(--yellow);
    display: block;
}

.blc-filter .select2-container--default .select2-selection--single {
    background: none;
    border: none;
    border-radius: 0;
}

.blc-filter .select2-selection__rendered {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--f2);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--red);
}

.select2-dropdown {
    border-radius: 0;
}

.select2-results__option {
    padding: 6px 20px;
}

.select2-container--default .select2-results__option--selected {
    background: var(--yellow);
}


.blc-filter .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 40px;
}


.blc-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 14px;
    height: 7px;
    background: url(../images/arrow-title.png) center no-repeat;
    top: 12px;
}


.blc-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.blc-category>div:not(:first-child) {
    display: none;
}


.blc-filter .select2-container.select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}

/*SECTION COMPANY*/
.sec-company {
    background: url(../images/bg-company.jpg);
    padding: 71px 0 0;
    position: relative;

    /* ✅ CORRECTION : créer un contexte + s'assurer que le contenu passe au-dessus du :before */
    z-index: 1;
}

/* ✅ bande blanche en bas (DOIT être derrière les cards) */
.sec-company:before {
    content: '';
    width: 100%;
    height: 125px;
    left: 0;
    bottom: 0;
    background: var(--white);
    position: absolute;

    /* ✅ CORRECTION : la bande reste derrière */
    z-index: 0;
}

/* ✅ CORRECTION : tout le contenu dans la section au-dessus de la bande blanche */
.sec-company .container {
    position: relative;
    z-index: 2;
}

.sec-company .title {
    color: var(--white);
}

.top-company {
    margin-bottom: 20px;
}

.sec-company .link {
    color: var(--white);
}

.sec-company .link:after {
    background: var(--white);
}

.sec-company .list {
    margin: 0 -15px;
}

/* ✅ CORRECTION : sécuriser l'empilement Slick (évite tout masquage par éléments voisins) */
.sec-company .slide-company,
.sec-company .slide-company .slick-list,
.sec-company .slide-company .slick-track {
    position: relative;
    z-index: 2;
}

/* ✅ spacing des slides */
.sec-company .item {
    padding: 15px;
    height: inherit;
}

/* ✅ CARTE */
.sec-company .item .inner {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;

    /* ✅ CORRECTION : ombre moins “basse” (évite l'effet coupé) */
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);

    transition: all ease-in-out .25s;

    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* ✅ zone logo (hauteur fixe) */
.sec-company .item .img {
    height: 240px;
    padding: 26px;
    box-sizing: border-box;

    /* ✅ CENTRAGE FIABLE */
    display: flex;
    align-items: center;
    justify-content: center;

    /* optionnel */
    background: #fff;
}

/* ✅ FIX IMPORTANT : neutraliser styles globaux */
.sec-company .item .img img {
    /* si ton thème met img{width:100%} -> on casse ça */
    width: auto !important;
    height: auto !important;

    /* ✅ le logo reste dans la box */
    max-width: 100% !important;
    max-height: 100% !important;

    /* ✅ pas de crop */
    object-fit: contain !important;
    object-position: center center !important;

    display: block;
    margin: 0 auto;
}

/* ✅ titre bas */
.sec-company .title-item {
    margin-top: 0;
    padding: 18px 18px 22px;
    text-align: center;

    text-transform: uppercase;
    font-family: var(--f2);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #111;
}

/* ✅ hover (desktop) */
@media (min-width:1025px) {
    .sec-company .item:hover .inner {
        transform: translateY(-4px);

        /* ✅ CORRECTION : hover plus propre (moins “profond” vers le bas) */
        box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    }
}

/* ✅ responsive */
@media (max-width:991px) {
    .sec-company:before {
        display: none;
    }

    .sec-company {
        padding-bottom: 60px;
    }

    .sec-company .item .img {
        height: 220px;
    }
}

@media (max-width:600px) {
    .sec-company .item .img {
        height: 210px;
        padding: 22px;
    }
}

/*SECTION TESTIMONIAL*/
.sec-testimonials {
    padding-top: 80px;
    overflow: hidden;
}

.sec-testimonials .text {
    width: 72%;
    padding-right: 50px;
    padding-bottom: 100px;
}

#slide-text-testimonial {
    padding-left: 48px;
}

.sec-testimonials .img {
    width: 28%;
    position: relative;
    z-index: 5;
}

.sec-testimonials .icon-quote {
    margin-bottom: 27px;
}


.sec-testimonials .author {
    font-weight: 700;
    color: var(--green);
    margin-bottom: 25px;
}

.sec-testimonials .img #slide-img-testimonial {
    width: 40vw;
}

.sec-testimonials .img #slide-img-testimonial img {
    width: 100%;
    max-height: 470px;
    min-height: 450px;
    object-fit: cover;
    height: 100%;

}


.sec-testimonials .slick-track {
    display: flex;
}


.sec-testimonials .slick-slide {
    height: inherit;
}


/*SECTION ACTUS*/
.sec-actus {
    padding: 55px 0;
    background: #f4f4f4;
    margin-top: -81px;
    position: relative;
}

.sec-actus:after {
    content: '';
    width: 100%;
    height: 367px;
    bottom: 0;
    background: var(--white);
    left: 0;
    position: absolute;
}

.sec-actus .container {
    position: relative;
    z-index: 10;
}

.sec-actus .top-actus {
    padding-right: calc(28% + 60px);
    margin-bottom: 45px;
}

.sec-actus .top-actus .title {
    margin-bottom: 0;
}

.sec-actus .list {
    margin: 0 -15px;
}

/* ✅ Slick: track en flex + slides qui prennent la bonne hauteur */
.sec-actus .slick-track {
    display: flex !important;
}

.sec-actus .slick-slide {
    height: auto !important;
}

.sec-actus .slick-slide>div {
    height: 100%;
}

/* ✅ spacing des slides */
.sec-actus .item {
    padding: 15px;
    height: 100%;
}

/* ✅ CARD CONTAINER (stable: flex column) */
.sec-actus .item .inner {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* ✅ image top */
.sec-actus .item .img {
    display: block;
}

.sec-actus .item .img img {
    width: 100%;
    display: block;
    height: 230px;
    object-fit: cover;
}

/* ✅ content: padding seulement haut/côtés, PAS en bas */
.sec-actus .item .content {
    padding: 28px 32px 0;
    /* bottom = 0 */
    background: var(--white);

    display: flex;
    flex-direction: column;
    flex: 1;
}

/* titre */
.sec-actus .item .title-item,
.sec-actus .item .title-item a {
    font-size: 22px;
    font-family: var(--f2);
    font-weight: 600;
    color: var(--green);
    line-height: 1.25;
}

.sec-actus .item .title-item {
    margin-bottom: 14px;
}

/* texte */
.sec-actus .item .content p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
    padding-bottom: 18px;
    /* petit espace avant la barre */
}

/* ✅ barre du bas FULL WIDTH (corrige l'espace à droite/gauche) */
.sec-actus .bottom-actus {
    margin-top: auto;
    /* pousse au bas */
    margin-left: -32px;
    /* ✅ annule le padding de .content */
    margin-right: -32px;
    /* ✅ annule le padding de .content */

    display: flex;
    justify-content: space-between;
    /* date à gauche / bouton à droite */
    align-items: stretch;

    border-top: 1px solid rgba(0, 0, 0, .06);
}

/* date en bas à gauche */
.sec-actus .bottom-actus .date {
    display: flex;
    align-items: center;

    padding: 18px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;

    background: var(--white);
    border-bottom-left-radius: 22px;
}

/* bouton en bas à droite */
.sec-actus .bottom-actus .btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 24px;
    text-align: center;

    background: #f3f3f3;
    color: #222;

    border-bottom-right-radius: 22px;
    text-decoration: none;

    margin: 0;
    /* ✅ au cas où un style global met un margin */
    flex-shrink: 0;
    /* ✅ évite que le bouton se compresse */
    transition: background .2s ease, color .2s ease;
}

/* hover card (desktop) */
@media (min-width:1025px) {
    .sec-actus .item:hover .inner {
        transform: translateY(-3px);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    }

    /* ✅ SEUL le bouton devient rouge au hover */
    .sec-actus .bottom-actus .btn:hover {
        background: var(--red);
        color: #fff;
    }
}

/* ✅ dots */
.sec-actus #slide-actus .slick-dots {
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
}

/* responsive */
@media (max-width:991px) {
    .sec-actus .top-actus {
        padding-right: 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sec-actus .item .img img {
        height: 200px;
    }

    .sec-actus .item .content {
        padding: 22px 22px 0;
    }

    .sec-actus .item .content p {
        padding-bottom: 14px;
    }

    /* ✅ annule le padding responsive (22px) pour la barre full width */
    .sec-actus .bottom-actus {
        margin-left: -22px;
        margin-right: -22px;
    }

    .sec-actus .bottom-actus .date {
        padding: 16px 16px;
    }

    .sec-actus .bottom-actus .btn {
        padding: 16px 18px;
    }
}

/*PAGE actus*/
.banner-page {
    height: 295px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
}

.breadcrumb ul li:after {
    content: '/';
    display: inline-block;
    margin: 0 6px;
}

.breadcrumb ul li a {
    color: var(--white);

}

.breadcrumb ul li.active {
    font-weight: 700;
}

.breadcrumb ul li.active:after {
    display: none;
}

.sec-actus.sec-actus-list {
    margin: 0;
    background: var(--white);
}


.sec-actus-list .item {
    width: 33.33%;
}

.sec-actus-list .list {
    display: flex;
    flex-wrap: wrap;
}

.sec-actus-list:after {
    display: none;
}

.pagination {
    margin-top: 35px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination ul li {
    margin: 0 23px;
    transition: all ease-in-out .4s;
    position: relative;
}

.pagination ul li a {
    font-size: 16px;
    font-family: var(--f2);

}

.pagination ul li.current-page {
    padding-right: 100px;
}

.pagination ul li.current-page a {
    color: var(--red);
}

.pagination ul li:after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--green);
    position: absolute;
    top: 50%;
    left: 45px;
    transition: all ease-in-out .4s;
}

.pagination ul li.current-page:after {
    width: 60px;
}


/*CONTACT*/
.sec-coord {
    padding: 80px 0;
}

.sec-coord .list {
    margin: 0 -15px;
}

.sec-coord .item {
    width: 33.33%;
    padding: 0 15px;

}

.sec-coord .item .picto {
    width: 67px;
    height: 67px;
    display: block;
    margin: 0 auto 20px;
}

.sec-coord .item .picto img {
    width: 100%;
    display: block;
}


.sec-coord .item .inner {
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 57px 20px;
    height: 100%;
}

.sec-coord .title-item {
    font-family: var(--f2);
    color: var(--red);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 7px;

}

.sec-coord .content {
    text-transform: uppercase;
}

.title-contact {
    color: var(--green);
    font-family: var(--f2);
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.sec-formulaire .select2-container {
    width: 365px !important;
    display: block;
}

.sec-formulaire .select2-selection__rendered {
    line-height: 60px !important;
    font-size: 20px;
    font-family: var(--f2);
    font-weight: 400;
    padding: 0 50px 0 30px !important;
}

.sec-formulaire .select2-container .select2-selection--single {
    height: 60px;
    background: #f4f4f4;
    border-radius: 0;
    border: none;

}

.sec-formulaire .select2-selection__arrow {
    background: url(../images/arrow-select.png) center no-repeat;
    width: 10px !important;
    height: 100% !important;
    right: 30px !important;
}

.sec-formulaire .select2-container.select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}


.sec-formulaire .select2-selection__arrow b {
    display: none;
}

.sec-formulaire .row-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.sec-formulaire .row-check {
    margin-top: 46px;
    margin-bottom: 46px;
}

.sec-formulaire .chp-check {
    margin: 0 15px;
    position: relative;
}


.sec-formulaire .chp-check>span {
    display: block;
    padding-left: 29px;
    position: relative;
    font-family: var(--f2);
    font-size: 16px;
    color: #404244;
    display: block;
}

.sec-formulaire .chp-check>span:before {
    content: '';
    width: 11px;
    height: 11px;
    border: 1px solid var(--black);
    background: var(--white);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.sec-formulaire .chp-check input:checked+span:before {
    background: var(--red);
}

.sec-formulaire .chp-check input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 5;
    cursor: pointer;
}

.sec-formulaire .chp {
    padding: 0 15px;
    margin-bottom: 30px;
}

.sec-formulaire .row-form {
    margin-left: -15px;
    margin-right: -15px;
}

.sec-formulaire .chp .form-control {
    height: 60px;
    background: #f4f4f4;
    width: 100%;
    border: none;
    padding: 20px 30px;
    font-family: var(--f2);
    font-size: 16px;
}

.sec-formulaire .chp p,
.sec-formulaire .row-form p {
    margin-bottom: 0;
}


.sec-formulaire .w-50 {
    width: 50%;
}

.sec-formulaire .w-100 {
    width: 100%;
}


.sec-formulaire .chp ::-webkit-input-placeholder,
.sec-connexion .chp ::-webkit-input-placeholder {
    opacity: 1;
    color: #404244;
}

.sec-formulaire .chp ::-moz-placeholder,
.sec-connexion .chp ::-moz-placeholder {
    opacity: 1;
    color: #404244;
}

.sec-formulaire .chp ::-ms-input-placeholder,
.sec-connexion .chp ::-ms-input-placeholder {
    opacity: 1;
    color: #404244;
}

.sec-formulaire .chp textarea.form-control {
    height: 140px;
    resize: none;
}

.sec-formulaire .blc-send {
    display: flex;
    justify-content: center;
}

.sec-formulaire .blc-send .btn {
    border: none;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
}

.sec-formulaire {
    padding-bottom: 80px;
}

.sec-formulaire .row-object .chp {
    margin-bottom: 0;
}


/*PAGE DETAIL ACTUS*/
.sec-detail-actus {
    padding: 80px 0;
}

.sec-detail-actus .date {
    color: var(--red);
    font-weight: 600;
    font-family: var(--f1);
}

.sec-detail-actus .title {
    margin-bottom: 32px;
}

.sec-detail-actus .s-title-actu {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sec-detail-actus .blc-content {
    width: calc(100% - 330px);
    padding-right: 70px;
}


.sec-detail-actus .blc-photos figure {
    margin: 0;
}

.sec-detail-actus .blc-photos {
    display: flex;
    margin: 0 -15px 30px;
}

.sec-detail-actus figure {
    width: 50%;
    display: block;
    padding: 0 15px;
}

.sec-detail-actus figure img {
    width: 100%;
    display: block;
}

.sec-detail-actus p {
    margin-bottom: 30px;
}

.blc-quote {
    font-size: 24px;
    line-height: 30px;
    color: var(--green);
    font-style: italic;
    text-align: center;
    margin-bottom: 50px;
}

.blc-sidebar {
    width: 330px;
}

.title-sidebar {
    padding-left: 40px;
    position: relative;
    font-family: var(--f2);
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 40px;
}

.title-sidebar:before {
    content: '';
    width: 29px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 6px;
    background: url(../images/arrow.png)center no-repeat;
}


.similar-post .img {
    display: block;
    width: 80px;
}

.similar-post .img img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.similar-post .title-item {
    width: calc(100% - 80px);
    padding-left: 20px;

}

.similar-post .title-item a,
.similar-post .title-item {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.similar-post .item {
    margin-bottom: 20px;
}


/*PAGE CONNEXION*/
.sec-connexion {
    padding: 76px 0 80px;
}

.sec-connexion .container {
    max-width: 1040px;
}

.sec-connexion .title {
    margin-bottom: 15px;
}

.sec-connexion .intro {
    margin-bottom: 30px;
}


.sub-title {
    color: var(--green);
    font-family: var(--f2);
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 45px;
}

.sec-connexion .blc-form {
    display: flex;
    flex-wrap: wrap;
}

.sec-connexion .blc-chp {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 190px);
    margin: 0 -14px;
    padding-right: 28px;
}

.sec-connexion .chp {
    width: 50%;
    padding: 0 14px;
}


.sec-connexion .blc-form .blc-btn {
    width: 190px;
}

.sec-connexion .chp input {
    background: #f4f4f4;
    width: 100%;
    border: none;
    padding: 20px 30px;
    font-family: var(--f2);
    font-size: 16px;

}

.sec-connexion .blc-form .btn {
    width: 100%;
    border: none;
    padding: 15px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
}

.sec-connexion .blc-form {
    margin-bottom: 25px;
}

.sec-connexion .forgotten-password {
    display: inline-block;
    position: relative;
    margin-bottom: 44px;

}

.sec-connexion .forgotten-password:after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--black);
    position: absolute;
    bottom: 5px;
    left: 0;
    transition: all ease-in-out .4s;
}

.sec-connexion .text {
    margin-bottom: 50px;
}

.sec-connexion .btn-green2 {
    background: var(--green);
    color: var(--white);
    padding: 15px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}


/*SINGLE PROJECT*/
.sec-top-single-project {
    padding: 70px 0 40px;
}

.sec-top-single-project .row-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sec-top-single-project .blc-left {
    width: calc(100% - 330px);
    padding-right: 70px;
}





.list-infos-donation {
    display: flex;
    flex-wrap: wrap;
}


.list-infos-donation .item {
    width: 33.33%;
    padding: 20px;
    border-top: 2px solid #c13133;
    text-align: center;

}


.list-infos-donation .item .title-item {
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    font-family: var(--f1);
    color: #404244;
    font-weight: 600;
}

.list-infos-donation .item .content-item {
    font-family: var(--f1);
    font-weight: 700;
    font-size: 18px;
}


.list-infos-donation .item.donateur .content-item {
    color: #c13133;
}

.list-infos-donation .item.objectif {
    border-color: #3e8950;
    ;
}

.list-infos-donation .item.objectif .content-item {
    color: #3e8950;
}

.list-infos-donation .item.releve {
    border-color: #efc94b;
    ;
}

.list-infos-donation .item.releve .content-item {
    color: #efc94b;
    ;
}


.sec-top-single-project .blc-right {
    width: 330px;
    border: 1px solid #cccccc;

}

.sec-top-single-project .blc-right .inner {
    padding: 30px 25px 30px;
}

.sec-top-single-project .blc-right .donation-status {
    top: 0;
}

.sec-top-single-project .blc-right .donation-status:before {
    height: 5px;
    margin-top: -2px;
}

.sec-top-single-project .blc-right .subtitle {
    font-family: var(--f1);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

.sec-top-single-project .title-right {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}


.sec-top-single-project .row-form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: space-between;
}

.sec-top-single-project .row-form .chp-check {
    position: relative;
}

.sec-top-single-project .row-form .chp-check span {
    font-family: var(--f2);
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}


.sec-top-single-project .chp-check input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 5;
    cursor: pointer;
}

.sec-top-single-project .chp-check>span:before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #d4d4d4;
    background: var(--white);
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 50%;
}

.sec-top-single-project .chp-check>span:after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 7px;
    opacity: 0;
}

.sec-top-single-project .chp-check input:checked+span:after {
    opacity: 1;
}


.sec-top-single-project .blc-select,
.sec-top-single-project .blc-input {
    width: 100%;
}

.sec-top-single-project .blc-input {
    display: none;
}

.sec-top-single-project .blc-input input {
    font-size: 16px;
    font-family: var(--f2);
    font-weight: 400;
    height: 60px;
    padding: 0 30px;
    width: 100%;
    border: none;
    background: #f4f4f4;
}

.sec-top-single-project .blc-input ::-webkit-input-placeholder {
    opacity: 1;
    color: var(--black);
}

.sec-top-single-project .blc-input ::-moz-placeholder {
    opacity: 1;
    color: var(--black);
}

.sec-top-single-project .blc-input ::-ms-input-placeholder {
    opacity: 1;
    color: var(--black);
}

.sec-top-single-project .blc-select .select2-container {
    width: 100% !important;
}


.sec-top-single-project .select2-selection__rendered {
    line-height: 60px !important;
    font-size: 16px;
    font-family: var(--f2);
    font-weight: 400;
    padding: 0 50px 0 30px !important;
}

.sec-top-single-project .select2-container .select2-selection--single {
    height: 60px;
    background: #f4f4f4;
    border-radius: 0;
    border: none;
}

.sec-top-single-project .select2-selection__arrow {
    background: url(../images/arrow-select.png) center no-repeat;
    width: 10px !important;
    height: 100% !important;
    right: 30px !important;
}

.sec-top-single-project .select2-selection__arrow b {
    display: none;
}

.sec-top-single-project .blc-send {
    text-align: center;
    margin-top: 30px;
}

.sec-top-single-project .blc-send .btn {
    border: none;
    cursor: pointer;
}

.sec-top-single-project .bottom-right .title-right {
    text-align: center;
    margin-bottom: 15px;
    margin-top: 25px;
}

.sec-top-single-project .blc-rs {
    max-width: 130px;
    margin: auto;
}

.sec-text-single .row-text p {
    margin-bottom: 20px;
}



.sec-video-single .video-container,
.sec-video-single .youtube-video {
    height: 480px;
}

.sec-video-single {
    margin: 50px 0;
}


.sec-video-single .container {
    max-width: 1050px;
}


.sec-table-single .blc-table {
    background: #f4f4f4;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--f1);

}

.sec-table-single .inner-table {
    /*    overflow: auto;*/
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: var(--green);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: var(--red);
}

.blc-table>table {
    width: 100%;
}

.sec-table-single .title-table {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 29px;
}

.blc-table th {
    padding: 25px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #cccccc;
}

.blc-table th:first-child {
    text-align: left;
}



.blc-table>table>tbody>tr>td {
    border-bottom: 1px solid #cccccc;
    padding: 22px 18px;
    vertical-align: top;
}

.blc-table>table>tbody>tr:last-child td {
    border: none;
}


.blc-table>table>tbody>tr>td:not(:first-child) {
    padding: 22px 15px;
    text-align: center;
}

.blc-table>table>tbody>tr:nth-child(even) {
    background: #fff;
}

.blc-table>table>tbody>tr>td:first-child {
    width: 71%;
}

.blc-table>table>tbody>tr>td:nth-child(2) {
    width: 13%;
}

.blc-table>table>tbody>tr>td:nth-child(3) {
    width: 3%;
}

.blc-table>table>tbody>tr>td:nth-child(4) {
    width: 13%;
}

.blc-table>table>tbody>tr>td>table {
    width: 100%;
}

.blc-table>table>tbody>tr>td>table>tbody>tr>td {
    width: 50%;
}

.blc-table>table>tbody>tr>td>table>tbody>tr>td:last-child {
    text-align: right;
}


.sec-temoignage {
    padding: 50px 0 0;
}

.sec-temoignage .content {
    border: 1px solid #e7e7e7;
    padding: 40px 60px;
    display: flex;
    flex-wrap: wrap;
}



.sec-temoignage .content .img {
    width: 215px;
}

.sec-temoignage .content .img img {
    width: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    height: 215px;
}


.sec-temoignage .content .text {
    width: calc(100% - 215px);
    padding-left: 57px;
}


.title-temoignage {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sec-temoignage .content .nom {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}


.similar-project .title {
    text-align: center;
}

.similar-project {
    padding-top: 45px;
}

/*FOOTER*/
.footer {
    background: var(--red);
    padding-top: 90px;
    color: var(--white);
}

.logo-foot {
    display: block;
    margin-bottom: 5px;
}

.footer .blc-logo {
    width: 129px;
}


.footer .blc-left {
    max-width: 525px;
    width: 100%;
}

.footer .blc-rs a {
    display: block;
    line-height: 12px;
}

.footer .container {
    max-width: 1326px;
}

.footer .blc-coord {
    padding-left: 20px;
}

.footer .blc-coord a {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
}


.footer .blc-coord li {
    margin-bottom: 7px;
    padding-left: 35px;
    background-position: left center;
    background-repeat: no-repeat;
}

.footer .blc-coord li:last-child {
    margin-bottom: 0;
}

.footer .blc-coord li.adr {
    background-image: url(../images/ico-adr.png)
}

.footer .blc-coord li.tel {
    background-image: url(../images/ico-tel.png)
}

.footer .blc-coord li.mail {
    background-image: url(../images/ico-mail.png)
}

.title-foot {
    font-size: 30px;
    line-height: 30px;
    font-family: var(--f2);
    font-weight: 300;
    color: var(--yellow);
    margin-bottom: 12px;
}

.footer .blc-form .form-control {
    height: 60px;
    background: #ad292b;
    border: none;
    padding: 15px 20px;
    color: var(--white);
    font-size: 16px;
    width: 100%;
    display: block;

}

.footer .chp ::-webkit-input-placeholder {
    opacity: 1;
    color: var(--white);
}

.footer .chp ::-moz-placeholder {
    opacity: 1;
    color: var(--white);
}

.footer .chp ::-ms-input-placeholder {
    opacity: 1;
    color: var(--white);
}


.footer .chp {
    position: relative;
}

.footer .chp .btn-send {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    border: none;
    background: url(../images/ico-send.png)center no-repeat var(--yellow);
    font-size: 0;
    cursor: pointer;
}

.footer .chp .btn-send:hover {
    background-position-x: 23px;
    background-position-y: 17px;
}


.top-footer {
    padding-bottom: 45px;
}


.bottom-footer {
    border-top: 1px solid #ad292b;
    padding: 23px 0;
}

.copyright a {
    color: var(--white);
    position: relative;
}

.copyright a:after {
    content: '';
    width: 0;
    left: 0;
    bottom: -2px;
    height: 1px;
    background: var(--white);
    position: absolute;
    transition: all ease-in-out .4s;
}

.maki a {
    color: var(--yellow);
    font-weight: 600;
}

.maki {
    padding-left: 28px;
    background: url(../images/maki.svg)left center no-repeat;
    background-size: 20px;
}


/* Entreprise */
.list-entreprise .list {
    display: flex;
    flex-wrap: wrap;
}

.list-entreprise .list .item {
    width: 33.33%;
    margin-bottom: 15px;
    padding: 15px 15px 20px;
}


.list-entreprise .item .inner {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    transition: all ease-in-out .4s;
}

.list-entreprise .item .img img {
    width: 100%;
    display: block;
    border-radius: 15px 15px 0 0;
}

.list-entreprise .item .content {
    padding: 0 31px 87px;
    position: relative;
}

.list-entreprise .item .title-item {
    font-size: 24px;
    font-family: var(--f2);
    font-weight: 500;
    margin-bottom: 15px;
    transition: all ease-in-out .4s;
}

.list-entreprise .item .left .amount {
    color: #3e8950;
}

.list-entreprise .item .right .amount {
    color: #efc94b;
    font-weight: 500;
}

.list-entreprise .amount {
    font-size: 16px;
    font-weight: 700;
}

.list-entreprise .item .btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 194px;
}

.sec-entreprise {
    padding: 80px 0;
    position: relative;
}

.list-entreprise .item .logo {
    border: #cccccc solid 1px;
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-bottom: 30px;
}


/* Entreprise details*/

.sec-detail-entreprises {
    padding: 80px 0 0
}

.sec-detail-entreprises .blcTitre {
    margin-bottom: 40px
}

.sec-detail-entreprises .blcTitre h2 {
    font: var(--title);
}

.Info-projets {
    padding-bottom: 8px
}

.Info-projets .col {
    width: 50%;
    text-align: center;
    padding-top: 15px;
}

.Info-projets .col h3 {
    text-transform: uppercase;
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--f1);
    font-weight: 600
}

.Info-projets .col h3 span {
    font-size: 18px;
    font-family: var(--f1)
}

.Info-projets .col.red {
    border-top: var(--red) solid 2px
}

.Info-projets .col.green {
    border-top: var(--green) solid 2px
}

.Info-projets .col span {
    font-size: 18px;
    font-family: var(--f1);
    font-weight: bold
}

.Info-projets .col.red span {
    color: var(--red);

}

.Info-projets .col.green span {
    color: var(--green)
}

.row-details .blcLeft {
    width: calc(100% - 334px);
    padding-right: 70px
}

.slide-thumb-gal {
    margin: 0 -8px
}

.slide-thumb-gal .item {
    padding: 0 10px;
}

.slide-thumb-gal .img {
    width: 100%;
    height: 107px;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}

.slide-thumb-gal .img:after {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.slide-thumb-gal .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-gal {
    margin-bottom: 20px;
    max-width: 3
}

.slide-gal .img {
    height: 362px
}

.slide-gal .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide-thumb-gal .slick-active.slick-current .img:after {
    opacity: 0
}

.row-details .blcRight {
    width: 327px;
}

.row-details .blcRight .inner {
    border: #cccccc solid 1px;
    padding: 49px 40px 20px;
}

.row-details .blcRight .inner .logo-entreprise {
    margin: 0 auto 31px;
    display: block;
    text-align: center;
}

.row-details .blcRight .inner h3 {
    text-align: center;
    color: #404244;
    font-size: 24px;
    font-family: var(--f1);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.row-details .blcRight .inner ul li span {
    width: 100px;
    display: inline-block;
}

.row-details .blcRight .inner ul li {
    margin-bottom: -6px
}

.row-details .blcRight .inner ul {
    margin-bottom: 23px;
}

.row-details .blcRight .inner .social {
    max-width: 200px;
    margin: 0 auto
}

.row-details {
    margin-bottom: 45px;
}

.row-text h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px
}

.row-text p {
    margin-bottom: 13px;
}

.sec-project.details h3:after {
    display: none
}

.sec-project.details h3 {
    font-size: 30px
}

.sec-project.details {
    padding-top: 20px;
}

.lst-video .item {
    width: 50%;

}

.lst-video .item video {
    width: 100%;
}

.video-container {
    position: relative;
    height: 360px;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: #000
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.play-btn {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 200ms ease-in-out;
    z-index: 100;
    cursor: pointer;
    background: url(../images/play.png) no-repeat center;
    cursor: pointer;
    border: none
}

.play-btn:hover {
    opacity: 1;
}

.playing {
    background-image: none;
}



.playing:hover {
    background-image: none;
}

.lst-video .item .txt {
    padding: 0 10px
}

.lst-video .item {
    padding: 0 14px
}

.lst-video .item .txt p {
    font-size: 24px;
    font-family: var(--f2);
    font-weight: 500
}

.sec-video {
    padding-bottom: 60px
}

.video-wrapper {
    width: 640px;
    height: 360px;
    margin-bottom: 22px;
    position: relative;
}

.video-box iframe {
    width: 100%;
    height: 100%;
}

.custom-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 12px 24px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}


.youtube-video {
    position: relative;
    margin-bottom: 20px;
    height: 360px
}

.youtube-video::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--grey);
    opacity: .34;
}

.youtube-video .content-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.youtube-video .btn-play {
    width: 60px;
    height: 60px;
    background: url(../images/play.png)center no-repeat;
    background-size: cover;
    margin: 0 auto;
    transition: all ease-in-out .4s;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-video.hide .btn-play {
    opacity: 0
}



/*Accordion*/

.accordion-outer {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    border-radius: 0;
}

.accordion-heading {
    padding: 10px 33px 13px 30px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    font-size: 18px;
    border-bottom:
}

.accordion-heading:after {
    content: "";
    position: absolute;
    right: 15px;
    background: url(../images/arw-v.png);
    width: 14px;
    height: 8px;
    top: 0;
    bottom: 0;
    margin: auto;


}

.accordion-outer.is-open .accordion-heading:after {
    transform: rotate(-180deg);
}

.accordion-content {
    padding: 15px 85px 15px 85px;
    display: none;
    /* Start hidden - will be shown by JS */
}

.accordion-outer.is-open {
    background: #f4f4f4;
    border-left: var(--green) solid 2px;
    padding-top: 20px;
}


.accordion-wrapper h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 30px
}

.sec-accordion {
    padding: 20px 0
}

.sec-liste {
    padding: 40px 0 80px
}

.sec-liste h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 30px
}

.sec-liste .col-md-6 {
    width: 50%
}

.liste ul {
    padding-left: 10px
}

.liste ul li {
    position: relative;
    padding-left: 15px
}

.liste ul li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--red);
    top: 13px;
    left: 0
}


.liste ol {
    margin-left: 25px;
}

.liste ol li {
    position: relative;
    padding-left: 15px
}


.sec-texte {
    padding: 60px 0 20px
}

.sec-texte h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 30px
}





@media (min-width:1025px) {

    body a,
    input,
    a {
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -ms-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }

    .sec-process-desc .item:hover .number {
        padding-top: 60px;
    }

    .sec-process-desc .item:hover .number:before {
        height: 40px;
    }

    .sec-process-desc .item:hover .inner-number {
        color: var(--red);
        border-color: var(--red);
    }

    .sec-process-desc .item:hover .inner-number {
        color: var(--green);
    }

    .sec-process-desc .item:hover .title-item {
        color: var(--green);
    }

    .link:hover {
        padding-right: 50px;
    }

    .link:hover:after {
        width: 30px;
    }

    .sec-project .item:hover .btn {
        background-color: var(--red);
        color: var(--white);
    }

    .sec-project .item:hover .inner,
    .sec-company .item:hover .inner {
        -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
    }

    .btn:hover,
    .sec-img-text .blc-text .btn:hover {
        background: var(--red);
        color: var(--white);
    }

    .copyright a:hover:after {
        width: 100%;
    }

    .maki a:hover {
        color: var(--white);
    }

    .footer .blc-rs a:hover {
        opacity: .7;
    }

    .blc-rs a:hover {
        opacity: .7;
    }

    .footer .blc-coord a:hover {
        color: var(--yellow);
    }

    .blc-nav>ul>li>a:hover {
        color: var(--red);
    }

    .connexion:hover {
        background: #d5b341;
    }

    .btn.btn-green:hover {
        background: #2f683d;
    }

    .blc-nav>ul>li:hover:before {
        height: 70px;
    }

    .blc-top .row .language-switcher a:hover {
        color: var(--red);
    }

    .pagination ul li:hover a {
        color: var(--red);
    }

    .pagination ul li:hover:after {
        width: 60px;
    }

    .pagination ul li:hover {
        padding-right: 100px;
    }


    .sec-project .item:hover .title-item {
        color: var(--red);
    }

    .sec-coord .content a:hover {
        color: var(--red);
    }

    .sec-formulaire .blc-send .btn:hover {
        background: #8f2426;
    }

    .similar-post .title-item a:hover {
        color: var(--green);
    }

    .sec-connexion .blc-form .btn:hover {
        background: var(--green);
    }

    .sec-connexion .forgotten-password:hover:after {
        width: 0;
    }

    .sec-connexion .forgotten-password:hover {
        color: var(--red);
    }


    .list-entreprise .item:hover .inner {
        -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
    }

    .list-entreprise .item:hover .btn {
        background-color: var(--red);
        color: var(--white);
    }

    .row-details .blcRight .inner ul li a:hover {
        color: var(--red)
    }



}

@media (max-width:1640px) {
    .sec-banner .blc-slider iframe {
        transform: scale(1.8);
    }

}

@media (max-width:1439px) {
    .sec-testimonials .img #slide-img-testimonial {
        width: 32vw;
    }

    .sec-top-single-project {
        padding: 100px 0 40px;
    }

}

@media (max-width:1200px) {
    .blc-nav {
        display: none;
        position: absolute;
        top: 91px;
        left: 0;
        width: calc(100% + 80px);
        left: -40px;
        z-index: 55555;
        background: var(--white);
    }

    .blc-nav>ul>li {
        margin-right: 0;
    }


    .blc-nav>ul>li>a {
        display: block;
        width: 100%;
        padding: 15px 40px;
        border-bottom: 1px solid #cecece;
    }

    .blc-nav>ul {
        flex-direction: column;
    }

    .blc-top .row {
        padding: 90px 0 0;
        flex-direction: column-reverse;
        position: relative;
    }

    .blc-top .blc-menu {
        padding: 0;
        width: 100%;
    }

    .connexion {
        position: absolute;
        right: 0;
        top: 20px;
        font-size: 0;
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .connexion:before {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        margin: 0;
    }

    .blc-top .row .language-switcher {
        right: 70px;
        top: 32px;
    }

    .blc-top {
        position: relative;
    }

    .blc-top:before {
        content: '';
        position: absolute;
        top: 90px;
        width: 100%;
        height: 1px;
        background: var(--red);
        left: 0;
    }

    .blc-top .logo {
        display: block;
        margin: 20px auto;
    }

    .btn-menu {
        display: block;
        width: 20px;
        height: 13px;
        z-index: 100;
        position: absolute;
        top: 40px;
        left: 0;
    }

    .btn-menu span {
        position: absolute;
        color: var(--red);
        left: 30px;
        top: -7px;
    }

    .btn-menu>div {
        width: 20px;
        height: 1px;
        background: var(--red);
        position: absolute;
        top: 50%;
        margin-top: -1px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .btn-menu>div:before {
        content: '';
        width: 100%;
        height: 1px;
        background: var(--red);
        position: absolute;
        top: -6px;
    }

    .btn-menu>div:after {
        content: '';
        width: 100%;
        height: 1px;
        background: var(--red);
        position: absolute;
        top: 6px;
    }


    .btn-menu.active>div {
        height: 0;
    }

    .btn-menu.active>div:before {
        transform: rotate(-45deg);
        top: 0;
        transition: transform ease-in-out 0.4s;
    }

    .btn-menu.active>div:after {
        transform: rotate(45deg);
        top: 0px;
        transition: transform ease-in-out 0.4s;
    }

    .sec-process-desc .number {
        height: inherit;
    }



    .sec-img-text .blc-text .btn {
        padding: 26px 28px;
    }

    .sec-actus .slick-dots {
        margin-top: 20px;
    }

    .sec-actus-list .item {
        width: 50%;
    }

    .blc-nav>ul>li.current-menu-item:before {
        display: none;
    }

    .sec-detail-actus .blc-content {
        padding-right: 40px;
    }

    .sec-project .list:not(.slide-project) .item {
        width: 50%;
    }

    .sec-connexion {
        padding: 50px 0 60px;
    }

    .list-entreprise .list .item {
        width: 50%
    }

    .row-details .blcLeft {
        padding-right: 40px;
    }

    .slide-thumb-gal {
        margin: 0 -5px;
    }

    .slide-thumb-gal .item {
        padding: 0 5px;
    }

    .sec-top-single-project .blc-left {
        padding-right: 40px;
    }

    .sec-top-single-project {
        padding-top: 60px;
    }

    .sec-table-single .blc-table {
        padding: 10px;

    }

    .blc-table>table>tbody>tr>td {
        padding: 15px;
    }

    .blc-table>table>tbody>tr>td:not(:first-child) {
        padding: 15px 10px;
    }


}



@media (max-width:991px) {

    .sec-banner .content,
    .sec-banner .blc-slider img,
    .sec-banner .blc-slider iframe {
        height: 500px;
    }

    .sec-banner .container {
        text-align: center;
    }

    .sec-banner .title-banner {
        font-size: 35px;
        line-height: 45px;
    }

    .sec-banner .label {
        font-size: 20px;
        line-height: 22px;
        padding: 19px 40px;
    }

    .sec-img-text .blc-img {
        width: 100%;
        padding: 0;
        position: relative;
    }

    .sec-img-text .blc-img .img {
        width: 100%;
        padding: 0;
    }

    .sec-img-text .blc-img .icon {
        position: absolute;
        bottom: -80px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .sec-img-text .blc-text {
        width: 100%;
        padding: 100px 0 0;
    }

    .sec-project .item .content {
        padding: 40px 20px 87px;
    }

    .sec-company:before {
        display: none;
    }

    .sec-company {
        padding-bottom: 60px;
    }


    .sec-company .slick-dots button {
        font-size: 0;
        line-height: 0;
        text-indent: -99999px;
        width: 10px;
        height: 10px;
        border: 1px solid var(--white);
        background: var(--white);
        border-radius: 50%;
        padding: 0;
    }


    .sec-company .slick-dots {
        margin-top: 20px !important;
    }

    .sec-company .slick-dots li.slick-active button {
        background-color: var(--yellow);
        border-color: var(--yellow);
    }

    .sec-testimonials .img #slide-img-testimonial {
        display: none;
    }

    .sec-testimonials .text {
        width: 100%;
        padding: 0;
    }

    .sec-actus {
        margin-top: 0;
    }

    #slide-text-testimonial {
        padding-left: 0;
    }

    .sec-testimonials {
        padding: 60px 0;
        text-align: center;
    }

    .sec-testimonials .icon-quote {
        margin: 0 auto 25px;
        display: block;
        width: 30px;
    }

    .sec-actus .top-actus {
        padding-right: 0;
    }

    .footer .blc-left {
        max-width: 100%;
    }

    .footer {
        padding-top: 60px;
    }

    .footer .blc-right {
        margin-top: 50px;
    }

    .bottom-footer {
        text-align: center;
        justify-content: center;
    }

    .sec-img-text .deco-top,
    .sec-project .deco-top {
        display: none;
    }

    .sec-img-text {
        padding-top: 80px;
    }

    .copyright {
        width: 100%;
    }

    .sec-banner .blc-slider iframe {
        transform: scale(1.5);
    }

    .sec-coord .item {
        width: 50%;
        margin-bottom: 30px;
    }

    .sec-coord {
        padding: 60px 0 30px;
    }

    .breadcrumb ul {
        justify-content: center;
    }

    .sec-detail-actus .blc-content {
        width: 100%;
        padding-right: 0;
    }

    .blc-sidebar {
        width: 100%;
    }

    .similar-post .title-item {
        padding-right: 20px;
    }

    .sec-detail-actus {
        padding: 50px 0 50px;
    }

    .sec-detail-actus .slick-dots {
        margin-top: 20px;
    }

    .sec-project .list:not(.slide-project) .item {
        width: 100%;
    }

    .sec-project .list:not(.slide-project) .item:last-child {
        margin-bottom: 0;
    }

    .row-details .blcLeft {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px
    }

    .row-details .blcRight {
        width: 100%;
    }

    .row-details .blcRight .inner ul li span {
        text-align: left;
    }

    .row-details .blcRight .inner ul {
        text-align: center;
    }

    .video-container {
        height: 280px;
    }

    .sec-detail-entreprises {
        padding: 40px 0 0;
    }

    .youtube-video {
        height: 280px
    }

    .sec-top-single-project .blc-left {
        width: 100%;
        padding-right: 0;
    }

    .sec-top-single-project .blc-right {
        width: 100%;
        margin-top: 50px;
    }

    .accordion-content {
        padding: 15px 40px 15px 40px;

    }

    .sec-top-single-project .row-form .chp-check {
        width: 50%;
    }

    .slide-thumb-gal {
        margin: 0 -4px;
    }

    .blc-table th {
        display: none;
    }

    .blc-table>table>tbody>tr>td {
        width: 100% !important;
        display: block;
        text-align: center;
    }

    .blc-table>table>tbody>tr>td:before {
        content: attr(data-label);
        display: block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

    .blc-table>table>tbody>tr>td>table>tbody>tr>td {
        text-align: left;
    }


}

@media (max-width:767px) {
    .container {
        padding: 0 20px;
    }

    .sec-banner .content,
    .sec-banner .blc-slider img,
    .sec-banner .blc-slider iframe {
        height: 344px;
    }

    .sec-banner .content:before {
        display: none;
    }

    .sec-banner .container {
        margin: 0 auto;
        padding: 0 15px;
    }

    .sec-banner .content {
        display: flex;
        align-items: flex-end;
        padding-bottom: 40px;
    }

    .sec-banner .title-banner {
        font-size: 24px;
        line-height: 31px;
    }

    .sec-process-desc {
        padding-top: 35px;
    }

    :root {
        --title: 200 36px / 40px var(--f2);
    }

    .title {
        margin-bottom: 30px;
    }

    .sec-process-desc .info-item {
        margin-bottom: 23px;
    }

    .sec-process-desc .btn.btn-desk {
        display: none;
    }

    .sec-process-desc .list {
        margin-bottom: 0;
    }

    .sec-img-text {
        padding-top: 40px;
    }

    .sec-img-text .title {
        font-size: 30px;
        line-height: 35px;
    }

    .before-title {
        margin-bottom: 10px;
    }

    .sec-img-text .btn-mobile {
        position: absolute;
        top: 50%;
        margin: -35px auto 0;
        left: 0;
        right: 0;
        width: 170px;
        padding: 26px 33px;
        text-align: center;
        display: inline-block;
    }


    .sec-img-text .blc-text .inner-text {
        padding-bottom: 0;
    }

    .sec-img-text .blc-text .btn {
        position: static;
        transform: translateX(0);
    }

    .sec-project {
        padding: 35px 0 40px;
    }

    .sec-project .title {
        margin-bottom: 15px;
    }

    .s-title {
        padding-right: 34px;
        margin-bottom: 20px;
    }

    .top-project,
    .top-company,
    .sec-actus .top-actus {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sec-actus .top-actus .link {
        margin: 0;
    }

    .link {
        margin-right: -80px;
    }

    .top-company .link {
        margin-right: 0;
    }



    .sec-project .item .content {
        padding: 40px 0 87px;
    }

    .sec-company {
        padding: 35px 0 35px;
    }

    .sec-process-desc .title {
        font-size: 30px;
    }

    .sec-company .title {
        margin-bottom: 20px;
    }

    .sec-testimonials {
        padding: 35px 0 40px;
    }

    .sec-actus {
        padding: 35px 0;
    }

    .sec-actus .top-actus .title {
        margin-bottom: 20px;
    }


    .sec-actus .top-actus {
        margin-bottom: 30px;
    }

    .sec-actus .list {
        margin: 0;
    }

    .sec-actus .item {
        padding: 0;
    }

    .sec-actus .item .btn {
        padding: 26px 18px;
        border-radius: 0;
    }

    .sec-actus .item .content {
        padding: 30px 0 76px;
    }

    .footer {
        padding-top: 35px;
    }

    .footer .blc-logo {
        margin: 0 auto 35px;
    }

    .footer .blc-coord {
        padding-left: 0;
        width: 100%;
    }

    .footer .container {
        padding: 0 19px;
    }

    .footer .blc-coord li {
        margin-bottom: 14px;
    }

    .footer .blc-right {
        margin-top: 30px;
    }

    .title-foot {
        font-size: 24px;
    }

    .top-footer {
        padding-bottom: 35px;
    }

    .copyright span {
        display: none;
    }

    .sec-img-text .container {
        padding: 0;
    }

    .sec-img-text .blc-text {
        padding: 75px 20px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 67%);
    }

    .blc-nav {
        left: -20px;
        width: calc(100% + 40px);
    }

    .blc-nav>ul>li>a {
        padding: 15px 20px;
    }

    .sec-project .list {
        margin-left: 0;
        margin-right: 0;
    }

    .sec-actus .item .inner,
    .sec-project .item .inner {
        box-shadow: none;
    }

    .sec-banner .blc-slider iframe {
        transform: scale(1.8);
    }

    .sec-actus .slick-dots {
        margin-top: 30px !important;
    }

    .blc-filter .select2-container .select2-selection--single .select2-selection__rendered {
        padding-right: 34px;
    }

    .blc-filter {
        margin-bottom: 20px;
    }

    .sec-actus .item {
        width: 100%;
        margin-bottom: 40px;
    }

    .sec-actus .item:last-child {
        margin-bottom: 0;
    }

    .sec-actus.sec-actus-list {
        background: var(--white);
    }

    .sec-coord .item {
        width: 100%;
    }

    .title-contact {
        font-size: 25px;
        line-height: 30px;
    }

    .sec-formulaire .select2-container {
        width: 100% !important;
    }

    .sec-formulaire .w-50 {
        width: 100% !important;
    }

    .sec-coord {
        padding: 45px 0 15px;
    }

    .sec-coord .item .inner {
        padding: 45px 20px;
    }

    .sec-formulaire .row-check {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .sec-formulaire .select2-selection__rendered {
        font-size: 16px;
        padding-left: 20px;
    }

    .sec-formulaire .select2-selection__arrow {
        right: 20px;
    }

    .sec-formulaire .row-object .chp {
        width: 100%;
    }

    .sec-formulaire .chp .form-control {
        padding: 20px;
    }

    .sec-formulaire {
        padding-bottom: 45px;
    }

    .similar-post .title-item {
        padding-right: 0;
    }


    .title-sidebar {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .sec-detail-actus {
        padding: 40px 0 50px;
    }

    .sec-detail-actus .title {
        margin-bottom: 25px;
    }

    .sec-detail-actus .s-title-actu {
        font-size: 20px;

    }

    .blc-quote {
        font-size: 20px;
        line-height: 28px;
    }

    .blc-quote {
        margin-bottom: 0;
    }

    .sec-detail-actus figure {
        padding: 0 5px;
    }

    .sec-detail-actus .blc-photos {
        margin: 0 -5px 30px;
    }

    .sec-connexion .blc-chp {
        width: 100%;
        padding-right: 0;
        margin: 0;
    }

    .sec-connexion {
        padding: 45px 0 50px;
    }

    .sec-connexion .chp {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .sec-connexion .blc-form .blc-btn {
        margin: auto;
    }

    .sub-title {
        margin-bottom: 25px;
    }

    .sec-connexion .text {
        margin-bottom: 30px;
    }

    .sub-title {
        font-size: 25px;
        line-height: 30px;
    }

    .sec-connexion .forgotten-password {
        margin-bottom: 35px;
    }

    .sec-connexion .chp input {
        padding: 20px;
    }

    .list-entreprise .list .item {
        width: 100%;
        padding: 15px 0 20px;
    }

    .sec-entreprise {
        padding: 35px 0 40px;

    }

    .list-entreprise .item .inner {
        box-shadow: none
    }

    .lst-video .item {
        width: 100%;
        padding: 0
    }

    .sec-video {
        padding-bottom: 40px;
    }

    .list-infos-donation .item {
        width: 100%;
    }

    .list-infos-donation .item {
        padding: 20px 15px 15px;
    }


    .sec-top-single-project .blc-right .inner {
        padding: 30px 20px;
    }

    .sec-temoignage .content {
        padding: 40px 20px;
    }

    .sec-temoignage .content .text {
        width: 100%;
        padding: 40px 0 0;
    }

    .sec-accordion {
        padding: 40px 0;
    }

    .sec-top-single-project .row-form .chp-check {
        width: auto;
    }

    .sec-top-single-project {
        padding-top: 45px;
    }


    .sec-table-single .blc-table {
        padding: 10px 20px;
    }

    .blc-table>table>tbody>tr>td>table>tbody>tr>td {
        width: 100%;
        display: block;
        text-align: center !important;

    }

    .blc-table>table>tbody>tr>td>table>tbody>tr>td:before {
        display: none;
    }

    .blc-table>table>tbody>tr>td>table>tbody>tr {
        margin-bottom: 15px;
        display: block;
    }

    .sec-table-single .blc-table {
        padding: 0;
    }

    .blc-table>table>tbody>tr:last-child>td:before {
        display: none;
    }






}


@media (max-width:601px) {

    .video-container,
    .sec-video-single .video-container,
    .sec-video-single .youtube-video {
        height: 200px;
    }

    .lst-video .item .txt p {
        font-size: 20px;
    }

    .Info-projets .col {
        width: 100%;

    }

    .youtube-video {
        height: 200px
    }

    .sec-video {
        padding-bottom: 20px;
    }

    .accordion-content {
        padding: 15px 20px 15px 20px;
    }

    .accordion-heading {
        padding: 10px 33px 13px 20px;
    }

    .sec-accordion {
        padding: 30px 0;
    }

    .accordion-wrapper h2 {
        margin-bottom: 20px
    }

    .sec-liste .row {
        flex-direction: column;
    }

    .sec-liste .col-md-6 {
        width: 100%;
        margin-bottom: 20px
    }

    .sec-liste h2 {
        margin-bottom: 10px;
    }

    .sec-project .item {
        padding: 0 0 20px;
    }

    .sec-project .item .title-item {
        height: auto !important;
    }

    .sec-actus .slick-track {
        display: block !important;
    }

    .sec-project .slick-dots {
        margin-top: 10px;
    }

    .sec-project .item .btn {
        bottom: 0;
    }

}

@media (max-width:480px) {
    .slide-thumb-gal {
        margin: 0 -5px;
    }
}

/*ARCHIVE ENTREPRISE*/
/* ARCHIVE ENTREPRISE */

/* parent */
.list .item .img {
    position: relative;
    overflow: visible;
}

/* image top */
.list .item .img>img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* LOGO overlay : à gauche + moitié dans l'image / moitié en bas */
.list .item .img .logo {
    position: absolute;
    left: 35px;
    /* ✅ décalage à gauche (ajuste 25-45px) */
    bottom: -55px;
    transform: none;
    /* ✅ on enlève translateX(-50%) */
    z-index: 2;
}

/* Taille logo (important pour le rendu comme la capture) */
.list .item .img .logo img {
    width: 120px;
    /* adapte si besoin */
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

/* enlever border radius */
.list .item .img .logo,
.list .item .img .logo img {
    border-radius: 0 !important;
}

/* laisser la place au logo dans le contenu */
.list .item .content {
    padding-top: 75px;
}

/* Projets soutenus – bouton "En savoir plus" */
.sec-project.details .slide-project .item .content a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* empêche les débordements liés aux dimensions */
    box-sizing: border-box;
    max-width: 100%;

    /* évite les bugs height/line-height */
    height: auto;
    line-height: 1.2;

    /* si tu veux empêcher le retour à la ligne */
    white-space: nowrap;
}