/****************************************
hero
***************************************/
.hero h1 {
    color: #000;
    font-family: Montserrat;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    /* 130% */
    letter-spacing: 2.45px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.hero h6 {
    color: var(--Green-500, #4540DF);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    /* 170% */
    letter-spacing: 0.98px;
    margin-bottom: 0px;
    text-align: left;
}

.hero p {
    color: var(--800, #636363);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 170% */
    letter-spacing: 0.98px;
    margin-top: 0px;
    text-align: left;
}

.hero .images .col-6 {
    max-width: 200px;
}

.hero .images img {
    width: 177px;
    height: 168px;
    object-fit: cover;
}

.images .img1 {
    border-radius: 30px 0px 0px 30px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}

.images .img2 {
    border-radius: 10px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}

.images .img3 {
    border-radius: 10px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}

.images .img4 {
    border-radius: 0px 30px 30px 0px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}

@media(max-width:992px) {
    .hero h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero h6,
    .hero p {
        font-size: 17px;
    }

    .hero .images .col-6 {
        max-width: 170px;
    }

    .hero .images img {
        width: 150px;
        height: 140px;
    }
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 25px;
        text-align: center;
    }

    .hero h6,
    .hero p {
        font-size: 14px;
        text-align: center;
    }

    .hero .images .col-6 {
        max-width: 200px;
    }

    .hero .images img {
        width: 177px;
        height: 168px;
    }
}

@media(max-width:570px) {
    .hero .images .col-6 {
        max-width: 100%;
    }

    .hero .images img {
        width: 100%;
        height: 130px;
    }
}

/*---------------------------------------------------
HERO 2
-----------------------------------------------------*/
.hero-2 h1 {
    color: var(--Green-600, #2621C5);
    font-family: Montserrat;
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.295px;
}

.hero-2 p {
    color: var(--900, #303030);
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 188.889% */
    letter-spacing: 1.98px;
}

.hero-2 img {
    max-width: 100%;
    object-fit: contain;
}

@media(max-width:992px) {
    .hero-2 h1 {
        font-size: 30px;
    }

    .hero-2 p {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .hero-2 h1 {
        font-size: 25px;
    }

    .hero-2 p {
        font-size: 15px;
    }
}

@media(max-width:570px) {
    .hero-2 h1 {
        font-size: 20px;
    }

    .hero-2 p {
        font-size: 14px;
    }
}

/*---------------------------------------------------
CARD HERO 1
-----------------------------------------------------*/
.cardHero-1 {
    border: 1px solid #b5b3b3;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.cardHero-1 .imgLeft {
    height: 100%;
    object-fit: contain;
    border-radius: 50px 0px 0px 50px;
}

.cardHero-1 .logosBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.cardHero-1 .logosBox img {
    text-align: center;
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
}

@media(max-width:992px) {
    .cardHero-1 {
        height: 100%;
        padding-bottom: 50px !important;
    }

    .cardHero-1 .imgLeft {
        width: 100%;
        border-radius: 50px 50px 0px 0px;
    }

    .cardHero-1 .logosBox {
        margin-top: 20px;
    }

    .herologo {
        height: auto !important;
    }

    .cardHero-1 .logosBox img {
        text-align: center;
        max-width: 120px;
        max-height: 80px;
    }
}

/*-------------------------------------------------------------
hero 3
--------------------------------------------------------------*/
.hero-3 {
    position: relative;
    background-image: url('../img/home/istockphoto-557608419-612x612.png') !important;
    background-repeat: no-repeat;
    background-size: cover;

}

.hero-3 img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-3 h1 {
    color: var(--Green-500, #4540DF);
}

.hero-3 p {
    font-weight: 700;
}

.hero-3 .images {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-3 .images img {
    position: relative !important;
    width: 100%;
    height: auto !important;
}

@media(max-width:992px) {
    .hero-3 .images {
        display: none;
    }

    .hero-3 h1,
    .hero-3 p {
        text-align: center !important;
    }
}

/*--------------------------------------------------------------
# Qui somme nous
--------------------------------------------------------------*/
.bg-blue-1 {
    background: var(--Green-500, #4540DF);
}

.slideshowContainer .slideBox img {
    height: 467px;
    width: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.slideshowContainer .uk-position-relative {
    height: 467px !important;
}

.slideshowContainer .uk-slideshow-nav {
    margin-top: -30px !important;
    z-index: 99 !important;
    position: relative;
    background-color: transparent !important;
}

.uk-dotnav>*>* {
    background: rgba(237, 235, 235, 0.6);
    border: none;
}

.uk-dotnav>.uk-active>* {
    background-color: #fff;
    border-color: transparent;
}

.hr {
    border: 0.5px solid #656565;
}

@media(max-width:768px) {
    .slideshowContainer .slideBox {
        height: 230px !important;
    }

    .slideshowContainer .slideBox img {
        height: 230px !important;
        width: 100%;
        object-fit: cover;
    }

    .uk-slideshow-items {
        height: 230px;
    }

    .slideshowContainer .uk-position-relative {
        height: 260px !important;
    }

    .slideshowContainer .uk-slideshow-nav {
        margin-top: -50px !important;
        z-index: 99 !important;
        position: relative;
        background-color: transparent !important;
    }
}

/*--------------------------------------------------------------
# nos services
--------------------------------------------------------------*/
.cardService {
    border-radius: 25px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cardService .card-header .box {
    width: 72px;
    height: 69px;
    flex-shrink: 0;
    border-radius: 21px;
    background: var(--Green-500, #4540DF);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardService .card-header .box img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.cardService .card-body h5 {
    color: var(--Green-600, #2621C5);
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}

@media(max-width:992px) {
    .cardService .card-header .box {
        width: 62px;
        height: 59px;
    }

    .cardService .card-header .box img {
        width: 30px;
        height: 30px;
    }

    .cardService .card-body h5 {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .cardService .card-header .box {
        width: 52px;
        height: 49px;
    }

    .cardService .card-header .box img {
        width: 25px;
        height: 25px;
    }

    .cardService .card-body h5 {
        font-size: 15px;
    }
}

@media(max-width:570px) {
    .cardService .card-header .box {
        width: 42px;
        height: 39px;
    }

    .cardService .card-header .box img {
        width: 20px;
        height: 20px;
    }

    .cardService .card-body h5 {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# cv en ligne
--------------------------------------------------------------*/
.bg-transp {
    background-color: transparent !important;
}

.cardCv {
    position: relative;
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    padding: 20px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
    min-height: 260px;
    width: 95%;
    max-width: 430px;
}

.cardCv:hover {
    transform: translateY(-10px);
}

.cardCv .card-header h4 {
    font-weight: 400;
    margin-bottom: 5px;
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    text-align: left;
    color: #4540DF;
}

.cardCv .card-header span {
    display: block;
    font-family: "Montserrat";
    font-size: 15px;
    font-style: normal;
    text-align: left;
    color: #656565;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.cardCv .card-header span i {
    color: #4540DF;
}

.cardCv .card-body {
    padding-top: 0px;
    padding-bottom: 0px;
}

.BoxImg {
    display: flex;
    align-items: start;
    justify-content: center;
}

.BoxImg p {
    font-family: "Montserrat";
    font-size: 13px !important;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #656565;
    margin-left: 10px;
    margin-top: 3px;
    margin-bottom: 0px;
}

.BoxImg img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.cardCv .card-footer {
    border-top: 1px solid #65656580;
    padding-top: 10px;
}

.cardCv .card-footer p {
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #656565;
    display: flex;
}

.cardCv .card-footer p span {
    font-weight: 700;
    color: #4540DF;
}

.cardCv .card-footer p span {
    margin-right: 5px;
}

.cardCv .card-footer .vue {
    color: #4540DF;
}

.cardCv .card-footer .vue i {
    margin-right: 5px;
}

/*---------------------------------------
filters
*----------------------------------------*/
.filters .form-control {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.16);
    border: none;
    color: var(--Green-400, #000);
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    /* 188.889% */
    letter-spacing: 0.864px;
    width: fit-content;
}

.filters .form-control::placeholder {
    color: var(--Green-400, #4c4c4c);
}

.filters .form-select {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.16);
    border: none;
    color: var(--Green-400, #000);
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    /* 188.889% */
    letter-spacing: 0.864px;
    width: fit-content;
}

.filters .input-group {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 6px 3px 0px rgba(0, 0, 0, 0.16);
    width: fit-content !important;
    min-height: 48px;
}

.filters .input-group span {
    border: none;
    box-shadow: none;
    background: transparent;
}

.filters .input-group .form-control,
.filters .input-group .form-select {
    box-shadow: none !important;
    width: fit-content !important;
}

.filters .input-group .form-control::placeholder {
    color: var(--600, #C4C4C4);
}

@media (max-width:768px) {
    .filters .btn-primary {
        padding-left: 20px !important;
        padding-right: 20px !important;
        min-height: auto !important;
        border-radius: 15px !important;
    }

    .filters .btn-primary svg {
        height: 20px !important;
        width: 20px !important;
    }

    .cardCv {
        padding: 10px;
    }

    .cardCv h4 {
        font-size: 15px !important;
    }

    .cardCv .card-footer p,
    .cardCv .card-header span {
        font-size: 14px;
    }

    .BoxImg {
        display: block;
        text-align: center;
    }

    .BoxImg p {
        margin-left: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        text-align: center;
    }
}

@media (max-width:570px) {

    .filters .form-control,
    .filters .form-select,
    .filters .input-group {
        width: 100% !important;
        margin-right: 0px !important;
    }

    .filters .btns {
        display: block !important;
    }

    .filters .btn-primary {
        padding-left: 20px !important;
        padding-right: 20px !important;
        min-height: auto !important;
        border-radius: 15px !important;
        width: 100% !important;
        margin-right: 0px;
    }

    .filters .btn-primary svg {
        height: 15px !important;
        width: 15px !important;
    }

    .cardCv {
        padding: 10px 10px !important;
        border-radius: 25px;
    }

    .cardCv .card-header {
        padding-bottom: 0px !important;
    }

    .cardCv .card-header h4 {
        font-size: 15px;
    }

    .cardCv .card-header span {
        font-size: 12px !important;
    }

    .cardCv .card-body img {
        width: 20px;
    }

    .cardCv .card-body p {
        font-size: 12px;
    }

    .cardCv .card-footer {
        padding-left: 0px;
        padding-right: 0px;
    }

    .cardCv .card-footer p {
        text-align: center;
        font-size: 12px !important;
    }

    .BoxImg {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .BoxImg img {
        margin-right: 5px;
    }
}

/*--------------------------------------------------------------
# card number
--------------------------------------------------------------*/
.bg-blue {
    border: 1px solid #707070;
    background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
}

.cardNumber {
    background-color: transparent;
    border: none;
    padding: 0px 0px;
}

.cardNumber .card-body h4 {
    font-family: "Montserrat";
    font-size: 97px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

.cardNumber .card-body p {
    font-family: "Montserrat";
    font-size: 23px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

@media (max-width:768px) {
    .cardNumber .card-body h4 {
        font-size: 60px;
    }

    .cardNumber .card-body p {
        font-size: 15px;
    }
}

@media (max-width:570px) {
    .cardNumber .card-body h4 {
        font-size: 30px;
    }

    .cardNumber .card-body p {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# publicité
--------------------------------------------------------------*/
.cardPublicite {
    background-color: transparent;
    border: none;
}

.cardPublicite .card-body {
    padding-left: 40px;
}

.cardPublicite .card-body h4 {
    font-family: "Montserrat";
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    color: #fff;
}

.cardPublicite .imgPub {
    height: 350px;
    object-fit: contain;
}

@media(max-width:1024px) {
    .cardPublicite .imgPub {
        height: 250px;
    }

    .cardPublicite {
        padding-left: 20px;
    }

    .cardPublicite .card-footer {
        padding-left: 20px;
    }
}

@media(max-width:768px) {

    .cardPublicite .card-body h4 {
        font-size: 17px;
    }

    .cardPublicite .imgPub {
        height: 200px;
    }
}

@media(max-width:570px) {

    .cardPublicite .card-body {
        padding-bottom: 0px;
        padding-left: 0px;
        text-align: center;
    }

    .cardPublicite .card-body h4 {
        font-size: 15px;
        margin-bottom: 10px;
        text-align: center !important;
    }

    .cardPublicite .card-body h4 br {
        display: none;
    }

    .cardPublicite .card-body .images,
    .cardPublicite .card-body .btns {
        justify-content: center !important;
    }

    .cardPublicite .imgPub {
        height: fit-content;
    }
}



/*--------------------------------------------------------------
# depos cv
--------------------------------------------------------------*/
.bg-section-img {
    border: 1px solid #707070;
    background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
}

.cardDepos {
    background-color: transparent;
    border: none;
    width: 95%;
}

.cardDepos img {
    width: 100%;
    max-width: 174px;
    height: 277px;
    object-fit: cover;
    /* border-color: #efefef;
    border-width: 1px;
    border-style: solid;*/
    border-radius: 26px;
}

.deposSection-white .cardDepos img {
    border-radius: 26px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: url(<path-to-image>) lightgray -112.4px 0px / 238.586% 100% no-repeat;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
}

.cardDepos .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardDepos .card-footer {
    cursor: pointer;
    border-radius: 17px;
    background: var(--Green-500, #4540DF);
    min-height: 60px;
    margin-top: 1rem;
}

/*
.cardDepos .btn {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #4540DF !important;
    border-radius: 17px;
    border: 1px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    width: 100%;
    max-width: 174px;
}*/

.cardDepos a {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
}

.deposSection-white .cardDepos a {
    color: #4540DF;
    font-weight: 700;
}

.vr-line {
    width: 1px !important;
    border-left: 1px solid #dadada88;
    color: #dadada;
    min-width: none;
    height: 250px;
}

.images-logos .col-6 {
    max-width: 300px;
}

.images-logos .box {
    border-radius: 20px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 280px;
    height: 104px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.images-logos .box img {
    width: 70%;
    object-fit: contain;
}

@media(max-width:1200px) {
    .images-logos .col-6 {
        max-width: 50%;
    }

    .images-logos .box {
        width: 100%;
    }
}

@media(max-width:992px) {

    .cardDepos img {
        width: 154px;
        height: 257px;
    }

    .cardDepos .btn,
    .cardDepos a {
        font-size: 15px;
    }

    .cardDepos .btn {
        max-width: 154px;
    }
}

@media(max-width:768px) {

    .cardDepos img {
        width: 134px;
        height: 237px;
    }

    .cardDepos .btn,
    .cardDepos a {
        font-size: 14px;
    }

    .cardDepos .btn {
        max-width: 134px;
    }
}

@media(max-width:570px) {
    .cardDepos {
        width: 100% !important;
        padding: 0px 0px !important;
    }

    .cardDepos .card-header {
        padding: 0px 0px;
    }

    .cardDepos .card-footer,
    .cardDepos .card-body {
        padding-left: 0px;
        padding-right: 0px;
    }

    .cardDepos a,
    .cardDepos button {
        font-size: 12px;
    }

    .cardDepos img {
        width: 80%;
        height: auto;
    }

    .cardDepos .btn {
        width: 80%;
    }

    .images-logos .box {
        height: 80px;
    }
}

/*--------------------------------------------------------------
# tabsSection
--------------------------------------------------------------*/

.colCostum {
    flex: 1;
    width: 20%;
}

.tabsSection .nav-link {
    border-radius: 20px;
    border: 2px solid #F2F2F2;
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #4540DF;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 230px;
    height: 100%;
}

.tabsSection .nav-link.active {
    background-color: #4540DF;
    color: #fff;
    border-color: #4540DF;
}

.tabsSection .nav-tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tabsSection .nav-tabs .nav-item {
    margin-bottom: 20px;
}

@media(max-width:992px) {
    .colCostum {
        flex: none;
        width: auto;
    }
}

@media(max-width:992px) {
    .tabsSection .nav-tabs {
        display: flex;
        justify-content: start !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll;
    }

    .tabsSection .nav-tabs::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari and Opera */
    }

    .tabsSection .nav-tabs .nav-item {
        margin-right: 10px;
    }
}

.slideBox-2 {
    height: max-content;
}

.cardRounded {
    border-color: #f6f6f6;
    border-width: 1px;
    border-style: solid;
    border-radius: 44px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.16));
    background: #ffffff;
    height: 100%;
    min-height: 280px;
    width: 90%;
    max-width: 280px;
}


.cardRounded .card-header {
    text-align: center;
    margin-top: 1rem;
    min-height: 80px;
    height: max-content;
}


.cardRounded .box {
    display: flex;
    justify-content: center;
    margin-top: -40px;
    z-index: 1;
}

.cardRounded .iconBox {
    width: 86px;
    height: 86px;
    border-color: #f9f9f9;
    border-width: 4px;
    border-style: solid;
    filter: drop-shadow(0px 8px 4.5px rgba(0, 0, 0, 0.08));
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cardRounded .iconBox img {
    width: 50%;
    object-fit: contain;
}

.cardRounded h4 {
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #4540DF;
    margin-bottom: 0px;
}

.cardRounded .card-body p {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #707070;
    margin-bottom: 0px;
    margin-top: 0px;
}

@media(max-width:992px) {
    .cardRounded .iconBox {
        width: 76px;
        height: 76px;
    }
}

@media(max-width:768px) {
    .cardRounded .iconBox {
        width: 66px;
        height: 66px;
    }
}

@media(max-width:650px) {
    .cardRounded {
        max-width: none;
    }
}

/*--------------------------------------------------------------
# recrutement
--------------------------------------------------------------*/
.bg-blue-2 {
    border: 1px solid #707070;
    background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
}

.rounded-44 {
    border-radius: 44px;
}

.cardOffre {
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    padding: 20px;
    transition: 0.5s;
    height: 100%;
    width: 95%;
}

.cardOffre:hover {
    transform: translateY(-10px);
}

.cardOffre .card-header {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    position: relative;
}

.cardOffre .card-header .favorite {
    width: 45px;
    height: 45px;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    box-shadow: none;
    position: absolute;
    right: 0;
    top: 0;
}


.cardOffre .card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cardOffre .card-header h4 {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: var(--Green-300, #918DEC);
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardOffre .card-header p {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    color: #464646;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardOffre .card-header span {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #8e8e8e;
}

.cardOffre .card-header span i {
    color: #4540DF;
}

.cardOffre .card-body {
    padding-top: 0px;
    padding-bottom: 10px;
}

.infoBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    border: 1px solid #707070;
    background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.infoBox p {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0px;
    margin-top: 0px;
}

.infoBox .border-right {
    border-right: 1px solid #fff;
}

.cardOffre .card-footer {
    border: none;
    padding-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.cardOffre .card-footer p,
.cardOffre .card-footer label {
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    color: #656565;
    display: flex;
}

.cardOffre .card-footer label i {
    color: #4540DF;
    margin-right: 5px;
}

.cardOffre .card-footer p span {
    font-weight: 600;
    color: #4540DF;
}

.cardOffre .card-footer p span {
    margin-right: 5px;
}

.cardOffre .card-footer .vue {
    color: #4540DF;
}

.cardOffre .card-footer .vue i {
    margin-right: 5px;
}

.cardOffre .card-footer a {
    font-size: 13px;
}


.favorite {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Cacher l'input checkbox */
.favorite input {
    display: none;
}

/* Icône du cœur par défaut (contour noir, non rempli) */
.heart {
    fill: none;
    stroke: black;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.heart-2 {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.3s ease;
}

.heart-outline-blue {
    fill: none;
    stroke: #2621C5;
    stroke-width: 1;
    transition: all 0.3s ease;
}

/* Quand la checkbox est cochée, remplir le cœur en rouge */
.favorite input:checked+.heart {
    fill: #FBACBC;
    stroke: #FBACBC;
}

.favorite input:checked+.heart-2 {
    fill: #fff;
    stroke: #fff;
}

.favorite input:checked+.heart-outline-blue {
    fill: #2621C5;
    stroke: #2621C5;
}

@media (max-width:768px) {
    .cardOffre {
        padding: 10px;
    }

    .cardCv h4 {
        font-size: 15px !important;
    }

    .cardCv .card-footer p,
    .cardCv .card-header span,
    .cardOffre .card-footer label {
        font-size: 14px;
    }

    .infoBox p {
        margin-left: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
        text-align: center;
    }

    .cardOffre .card-header .favoris i {
        font-size: 1.3rem;
    }

    .infoBox {
        padding-top: 5px;
        padding-bottom: 5px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .infoBox .border-right {
        border-right: none !important;
        width: 100% !important;
        margin-bottom: 10px;
    }
}

@media (max-width:570px) {
    .cardOffre {
        padding: 10px 10px !important;
        border-radius: 25px;
    }

    .cardOffre .card-header {
        display: block;
    }

    .cardOffre .card-header img {
        text-align: center;
    }

    .infoContainer {
        display: flex;
        justify-content: center;
    }

    .header-text h4,
    .header-text p,
    .header-text {
        text-align: center !important;
    }

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

    .header-text span,
    .cardOffre .adresse span {
        font-size: 12px !important;
    }

    .cardOffre .card-footer {
        display: block !important;
        padding-left: 0px;
        padding-right: 0px;
    }

    .cardOffre .card-footer p,
    .cardOffre .card-footer label {
        text-align: center;
        font-size: 12px !important;
        display: inline-block;
    }

    .cardOffre .card-footer a {
        width: 100%;
        margin-top: 5px;
    }

    .infoBox {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .infoBox p {
        font-size: 12px;
    }

    .cardOffre .card-header .favoris i {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# card offre 2
--------------------------------------------------------------*/
.cardOffre-2 {
    border-radius: 24px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    height: 100%;
    width: 100%;
}

.cardOffre-2 .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cardOffre-2 .card-header h5 {
    color: #464646;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;

}

.cardOffre-2 .card-header p {
    color: var(--Green-500, #4540DF);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardOffre-2 .card-body .text {
    display: flex;
    align-items: start;
    justify-content: start;
}

.cardOffre-2 .card-body .text ul {
    list-style: "- ";
    padding-left: 1.5rem;
    margin-top: 0px;
}

.cardOffre-2 .card-body .text ul li {
    color: var(--GrayScale-Text-Subtitle, #383838);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 150% */
    letter-spacing: 1.32px;
}

.cardOffre-2 .card-footer {
    background-color: transparent;
    border: none;
    padding-bottom: 1rem;
}

.cardOffre-2 .card-footer p {
    color: #656565;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardOffre-2 .card-footer p strong {
    color: var(--Red-400, #F75F7D);
}

.cardOffre-2 .logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

.cardOffre-2 .logo img {
    width: 30px;
    height: 23px;
    aspect-ratio: 30/23;
    border-radius: 5px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    object-fit: cover;
    margin-right: 5px;
}

.cardOffre-2 .logo h4 {
    color: var(--Green-400, #6A66E5);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

@media(max-width:992px) {
    .cardOffre-2 .card-header h5 {
        font-size: 17px;
    }

    .cardOffre-2 .card-header p,
    .cardOffre-2 .card-footer p {
        font-size: 12px;
    }
}

@media(max-width:768px) {
    .cardOffre-2 .card-header {
        display: block;
    }
}

@media(max-width:570px) {
    .cardOffre-2 .card-header h5 {
        font-size: 16px;
    }

    .cardOffre-2 .card-header p,
    .cardOffre-2 .card-footer p {
        font-size: 12px;
    }

    .cardOffre-2 .card-footer .btn {
        margin-top: 10px;
        width: 100%;
    }
}

/*--------------------------------------------------------------
# list offres page 
--------------------------------------------------------------*/
.hero-list {
    background-image: url('../img/home/bg-bureau.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background: none;
}

.hero-list h1 {
    font-family: "Montserrat";
    font-size: 45px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #4540DF !important;
}

.hero-list p {
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: bold;
    line-height: 34px;
    font-style: normal;
    text-align: center;
    color: #4e4e4e;
}

.searchbar {
    border-radius: 25px;
    border-color: #ececec;
    border-width: 1px;
    border-style: solid;
    filter: drop-shadow(0px 7px 4.5px rgba(0, 0, 0, 0.16));
    background: #ffffff;
    padding-top: 10px;
}

.searchbar input {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #4e4e4e;
}

.searchbar select {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #4e4e4e;
}

.searchbar i {
    font-size: 15px;
    color: #4540DF;
}

.btn-3d {
    border-color: #f3f3f3;
    border-width: 1px;
    border-style: solid;
    border-radius: 7px;
    filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.16));
    background: #ffffff;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #4540DF;
}

/*--------------------------------------------------------------
# détail d'offre
--------------------------------------------------------------*/
.btn-dark {
    --color: #313131;
    font-family: "Montserrat";
    display: inline-block;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
    color: #fff;
    border: 1px solid #313131;
    border-radius: 14px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.16));
    position: relative;
    background: #313131;
}

.btn-dark::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 250px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
    color: #313131;
}

.btn-dark:hover {
    color: #313131;
}

.btn-dark:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.btn-dark:hover::before {
    top: -30px;
    left: -30px;
}

.detailsOffreSection .cardOffre {
    filter: none;
    background-color: transparent;
}

.detailsOffreSection .cardOffre:hover {
    transform: none;
}

.detailsOffreSection .cardOffre .header-text {
    padding-left: 10px;
}

.cardText h4 {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    text-align: left;
    color: #4540DF;
}

.cardText p,
.cardText ul li {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    font-style: normal;
    text-align: left;
    color: #707070;
    margin-bottom: 0px;
}

.cardText .infoBox p {
    color: #fff !important;
    font-weight: 400;
}

.cardText h5 {
    color: #656565;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.cardText strong {
    color: var(--Green-500, #4540DF);
    margin-right: 5px;
}

.cardOffreDetail {
    border-color: #707070;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    background: #4540DF;
    background: linear-gradient(180deg,
            #4540DF 0.00%,
            #022e24 100.00%);
    padding: 15px 15px;
}

.cardOffreDetail .card-header {
    border-color: #707070;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    background: #ffffff;
    height: 210px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.cardOffreDetail .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

#vmap {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.cardOffreDetail .card-body {
    padding-left: 0px;
    padding-right: 0px;
}

.details {
    list-style: none;
    padding-left: 0px !important;
}

.details li {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-bottom: 15px;
}

.details li svg {
    margin-top: 5px;
}

.details li p {
    color: var(--GrayScale-Text-Subtitle, #fff);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.details li svg {
    margin-right: 5px;
}

.infoOffre {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
}

.infoOffre label {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

.infoOffre p,
.infoOffre a {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: normal;
    line-height: 22px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
    margin-bottom: 0px;
    margin-top: 0px;
}

.infoOffre a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 5px;
}

@media(max-width:768px) {
    .cardText .infoBox .box {
        justify-content: start !important;
    }

    .cardText .infoBox {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media(max-width:575px) {
    .cardText h4 {
        font-size: 15px;
    }

    .cardText p,
    .cardText ul li,
    .cardText h5 {
        font-size: 12px;
    }

    .cardOffreDetail {
        padding: 8px 8px;
        border-radius: 25px;
    }

    .cardOffreDetail .card-header,
    .cardOffreDetail .card-header img {
        border-radius: 25px;
    }

    .infoOffre {
        display: block;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .infoOffre p {
        text-align: left;
    }
}

@media(max-width:992px) {
    .details li p {
        font-size: 13px;
    }
}

@media(max-width:768px) {
    .details li p {
        font-size: 12px;
    }
}

@media(max-width:570px) {
    .details li p {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# cardForm
--------------------------------------------------------------*/
.cardForm {
    border-color: #707070;
    border-width: 1px;
    border-style: solid;
    border-radius: 51px;
    background: #4540DF;
    background: linear-gradient(-144deg,
            #4540DF 0.00%,
            #1b4b3f 100.00%);
    padding: 20px 20px;
}

.cardForm-2 {
    background: white;
}

.cardForm-2 form {
    padding-left: 20px;
    padding-right: 20px;
}

.cardForm .card-body {
    height: 100%;
}

.cardForm .title h1 {
    font-family: "Montserrat";
    font-size: 25px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
}

.cardForm-2 .title h1 {
    color: #4540DF;
}

.cardForm .title p {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 0px;
}

.cardForm-2 .title p {
    color: #656565;
    font-weight: 600;
}

.cardForm-2 a {
    color: #4540DF;
    font-weight: 600;
    font-size: 14px;
}

.cardForm-2 a img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}


.cardForm-2 input,
.cardForm-2 select,
.cardForm-2 textarea {
    filter: drop-shadow(0px 0px 3.5px rgba(0, 0, 0, 0.16));
}

.imgForm {
    width: 100%;
    height: 100%;
    border-radius: 0px 51px 0px 51px;
    object-fit: cover;
    filter: brightness(50%);
}

.imgForm2 {
    width: 100%;
    height: 490px;
    border-radius: 0px 51px 51px 0px;
    object-fit: cover;
}

.fileItem {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #656565;
}

.cardForm .btn-dark {
    border: 2px solid #95FFE5;
}

.imgSecure {
    height: 70px;
}

.loginCard {
    border-radius: 14px;
    text-align: center;
}

.loginCard:hover img {
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.16));
}

.loginCard img {
    width: 100% !important;
    max-width: 115px !important;
    height: 100% !important;
    max-height: 189px !important;
    flex-shrink: 0;
    border-radius: 14px;
    object-fit: cover;
}

.loginCard p {
    color: #4540DF;
    margin-bottom: 0px;
}

.step {
    width: 200px;
}

.step p {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0px;
}

.lineCircles i {
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.linestep {
    border-top: 2px solid #fff;
    width: 150px;
}

@media (max-width:768px) {
    .imgForm {
        display: none;
    }

    .cardForm {
        margin-top: 70px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cardForm .card-body {
        padding: 0px 0px;
    }

    .cardForm .title h1 {
        font-size: 20px;
    }

    .cardForm-2 form {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.btn-white {
    --color: #313131;
    font-family: "Montserrat";
    display: inline-block;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
    color: #4540DF;
    border: 1px solid #fff;
    border-radius: 14px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.16));
    position: relative;
    background: #fff;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white.fs-sm {
    min-height: auto !important;
}

.btn-white::before {
    position: absolute;
    content: "";
    background: #4540DF;
    width: 250px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
    color: #fff;
}

.btn-white:hover {
    color: #fff !important;
}

.btn-white:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.btn-white:hover::before {
    top: -30px;
    left: -30px;
}

.mr-10 {
    margin-right: 10px;
}

.cardLoginAdmin {
    border-radius: 20px;
    background: var(--50, #FFF);
    box-shadow: -3px -4px 10px 0px rgba(165, 165, 165, 0.25), 3px 4px 10px 0px rgba(165, 165, 165, 0.25);
    width: 100%;
    max-width: 647px;
}

.cardLoginAdmin .card-header img {
    width: 100px;
    height: 55.752px;
    flex-shrink: 0;
    object-fit: contain;
}

.cardLoginAdmin .card-header h1 {
    color: var(--Green-500, #4540DF);
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.176px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.cardLoginAdmin .card-header p {
    color: var(--GrayScale-Text-Subtitle, #383838);
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.784px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardLoginAdmin .card-body .input-group {
    border-radius: 10px;
    border: 2px solid #F3F3F3;
    background: #FFF;
    box-shadow: 0px 0px 3.5px 0px rgba(0, 0, 0, 0.16);
}

.cardLoginAdmin .card-body .input-group span {
    background-color: transparent;
    border: none !important;
}

.cardLoginAdmin .card-body .input-group input {
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
}

.loginSection .text {
    color: var(--GrayScale-Text-Subtitle, #383838);
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    /* 212.5% */
    letter-spacing: 0.768px;
}

.loginSection .text a {
    color: var(--Green-500, #4540DF);
}

@media(max-width:992px) {
    .cardLoginAdmin .card-header img {
        width: 90px;
        height: 45.752px;
    }

    .cardLoginAdmin .card-header h1 {
        font-size: 22px;
    }

    .cardLoginAdmin .card-header p,
    .loginSection .text {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .cardLoginAdmin .card-header img {
        width: 80px;
        height: 45.752px;
    }

    .cardLoginAdmin .card-header h1 {
        font-size: 20px;
    }

    .cardLoginAdmin .card-header p,
    .loginSection .text {
        font-size: 14px;
    }
}

@media(max-width:570px) {
    .cardLoginAdmin .card-header img {
        width: 80px;
        height: 35.752px;
    }

    .cardLoginAdmin .card-header h1 {
        font-size: 20px;
    }

    .cardLoginAdmin .card-header p,
    .loginSection .text {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# consultant
--------------------------------------------------------------*/
.consultantSection .cardOffre {
    height: 200px;
}

.consultantSection .cardOffre .card-header {
    height: 100%;
}

.consultantSection .cardOffre .card-footer p i {
    margin-right: 5px;
    color: #4540DF;
}

.consultantSection .cardOffre .card-footer a {
    font-size: 13px;
}

.btn-share {
    padding: 0px 0px;
    margin-right: 10px;
}

.btn-share img {
    height: 30px;
}

.cardMedia .vr {
    color: #adadad;
    height: 30px;
}

.likes {
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-bottom: 0px;
}

.likes i {
    color: red;
    font-size: 25px;
}

.likes span {
    color: #000;
    font-size: 15px;
    font-weight: bold;
    margin-left: 10px;
}

.cardMedia p {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    color: #656565;
}

.cardMedia p strong {
    color: #464646;
}

.mediaContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width:768px) {
    .mediaContainer {
        display: flex;
        justify-content: center;
    }
}

.tabsProfil .nav-link {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #b3b3b3;
    border: none;
}

.tabsProfil .nav-link.active {
    color: #4540DF;
    border: none;
    border-bottom: 2px solid #4540DF;
    background-color: transparent;
}

/*--------------------------------------------------------------
# publications
--------------------------------------------------------------*/
.js-filter li {
    display: flex;
    justify-content: center;
}

.cardPublication {
    border-color: #e6e6e6;
    border-width: 1px;
    border-style: solid;
    border-radius: 42px;
    background: #4540DF;
    background: linear-gradient(180deg,
            #4540DF 0.00%,
            #194036 100.00%);
    padding: 10px 10px;
    height: 100%;
    padding-bottom: 20px;
}

.cardPublication .card-header {
    padding: 0px 0px;
    height: 201px;
}

.cardPublication .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
}

.cardPublication .card-body h4 {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 600;
    line-height: 34px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardPublication .card-body .tag {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 500;
    line-height: 34px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

.cardPublication .card-body p {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: normal;
    line-height: 22px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 0px;
}

.filterContainer .uk-subnav li {
    padding-right: 20px;
}

.filterContainer .uk-subnav li a {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-align: left;
    color: #707070;
}

.filterContainer .uk-subnav .uk-active a {
    background: transparent;
    color: #4540DF !important;
    border-bottom: 2px solid #4540DF;
}

.uk-pagination a {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #707070;
}

.uk-pagination .uk-active {
    border-color: #27cba2;
    border-width: 1px;
    border-style: solid;
    border-radius: 6px;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media(max-width:575px) {
    .cardPublication {
        padding: 8px 8px;
        padding-bottom: 8px;
        border-radius: 25px;
        width: 95%;
    }

    .cardPublication .card-header {
        height: 170px;
    }

    .cardPublication .card-header img {
        border-radius: 25px;
    }

    .cardPublication .card-body h4 {
        font-size: 14px;
    }

    .cardPublication .card-body .tag {
        font-size: 12px;
    }

    .cardPublication .card-body p {
        font-size: 13px;
    }

    .cardPublication .btn-white {
        font-size: 12px;
    }
}

.filterItems {
    display: flex;
    align-items: center;
}

.subnav-container {
    overflow-x: auto;
    white-space: nowrap;
    width: 95%;
    margin-right: 20px;
    margin-left: 20px;
}

.uk-subnav {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
}

.btn.showMore {
    border: none;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4540DF;
}

.btn.showMore i {
    font-size: 15px;
    color: #fff;
}

.subnav-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for WebKit browsers */
}

/*--------------------------------------------------------------
# partenaires
--------------------------------------------------------------*/


.cardHero {
    border: none !important;
    border-radius: 26px;
    filter: drop-shadow(0px 10px 6.5px rgba(0, 0, 0, 0.16));
    padding: 0px 0px 0px 0px;
    position: relative;
    background-image: url("../img/home/bg-book.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 230px;
}

.cardHero .imgRight {
    height: 100%;
    border-radius: 0px 26px 26px 0px;
}

.cardHero .uk-card-body {
    display: flex;
    align-items: center;
}

.cardHero h1 {
    font-family: "Montserrat";
    font-size: 26px;
    font-weight: bold;
    line-height: 34px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

.cardHero p {
    font-family: "Montserrat";
    font-size: 15.5px;
    font-weight: normal;
    line-height: 24px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

@media(max-width:1200px) {
    .cardHero {
        height: auto;
        background: #4540DF;
        background-image: none;
    }

    .cardHero .col-lg-7 {
        width: 100%;
        align-items: center;
    }

    .hero-partenaire {
        height: auto !important;
    }

    .cardHero p,
    .cardHero h1,
    .cardHero a {
        text-align: center !important;
    }

    .hero br,
    .hero-2 br {
        display: none;
    }

    .btnRow {
        justify-content: center !important;
    }
}

@media(max-width:768px) {
    .imgRight {
        display: none;
    }
}

@media(max-width:575px) {
    .cardHero h1 {
        font-size: 20px !important;
        text-align: center !important;
    }

    .cardHero p {
        font-size: 13px;
        text-align: center !important;
    }

    .cardHero .btn-white {
        font-size: 13px;
        text-align: center !important;
        width: 100%;
    }
}

.cardPartenaire {
    border-color: #95ffe5;
    border-width: 2px;
    border-style: solid;
    border-radius: 24px;
    filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.16));
    background: #ffffff;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 0px;
    height: 230px;
}

.cardPartenaire .imgLeft {
    height: 188px;
    width: 100%;
    object-fit: cover;
    border-color: #e2e2e2;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    filter: drop-shadow(0px 5px 1.5px rgba(0, 0, 0, 0.16));
}

.cardPartenaire .card-body {
    position: relative;
    padding: 0px 0px;
}

.cardPartenaire .infoProfil {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-right: 10px;
}

.cardPartenaire .infoProfil .media {
    display: flex;
    align-items: center;
}

.cardPartenaire .infoProfil .media img {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border-color: #2de9bb;
    border-width: 1px;
    border-style: solid;
    margin-right: 10px;
}

.cardPartenaire .infoProfil .media h4 {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
    font-style: normal;
    text-align: left;
    color: #464646;
}

.cardPartenaire .infoProfil i {
    font-size: 17px;
    color: #fff200;
}

.cardPartenaire p {
    font-family: "Montserrat";
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #979797;
    padding-right: 10px;
}

.cardPartenaire .btn-1 {
    font-size: 12px;
    text-align: left;
}

.cardPartenaire .prix {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 84px;
    height: 70.6px;
    background-image: url('../img/home/bg_prix.png');
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-left: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
}

.cardPartenaire .prix span {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

@media(max-width:786px) {
    .cardPartenaire {
        height: 100%;
        padding: 10px 10px;
    }

    .cardPartenaire h4 {
        font-size: 15px !important;
    }

    .cardPartenaire .prix {
        background-image: none;
        border: 1px solid #707070;
        background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
        border-radius: 25px;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 10px;
        padding-right: 10px;
        height: fit-content;
        width: fit-content;
        bottom: 8px;
    }

    .cardPartenaire .prix span {
        font-size: 15px !important;
        font-weight: 500;
    }
}

/*--------------------------------------------------------------
# profil
--------------------------------------------------------------*/
.hero-profil {
    position: relative;
}

.hero-profil .img-couvert {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
}

.cardProfil {
    margin-top: 130px;
}

.cardProfil .card-header {
    text-align: center;
}

.cardProfil .card-header img {
    width: 150px;
    height: 150px;
    border-color: #1cdfaf;
    border-width: 3px;
    border-style: solid;
    border-radius: 50%;
    object-fit: cover;
}

.cardProfil .card-body h1 {
    font-family: "Montserrat";
    font-size: 25px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #4540DF;
}

.cardProfil .card-body p {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #464646;
}

.cardProfil .card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardProfil .card-footer a img {
    height: 35px;
    width: 35px;
    margin-right: 2px;
    margin-left: 2px;
}

.cardProfil .card-footer a {
    transition: ease-in-out 0.3s;
}

.cardProfil .card-footer a:hover {
    transform: translateY(-10px);
}

.data-profil {
    border-color: #e9e9e9;
    border-width: 2px;
    border-style: solid;
    border-radius: 36px;
    background: #4540DF;
    background: linear-gradient(136deg,
            #4540DF 0.00%,
            #276757 100.00%);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.data-profil .btnEdit {
    position: absolute;
    top: -15px;
    right: 0px;
}

.data-profil a {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: normal;
    line-height: 34px;
    font-style: normal;
    text-align: left;
    color: #ffffff;
}

@media(max-width:575px) {
    .hero-profil .img-couvert {
        height: 250px;
    }

    .cardProfil {
        margin-top: 80px;
    }

    .cardProfil .card-header img {
        width: 120px;
        height: 120px;
    }

    .cardProfil .card-body h1 {
        font-size: 17px !important;
        margin-bottom: 0px;
    }

    .cardProfil .card-body p {
        font-size: 13px;
        margin-top: 0px;
    }

    .cardProfil .card-footer a img {
        height: 25px;
        width: 25px;
    }

    .data-profil {
        width: 95%;
    }
}

/*--------------------------------------------------------------
# edit rofil
--------------------------------------------------------------*/
.hero-edit-profil {
    position: relative;
}

.hero-edit-profil .cardEdit {
    width: 100%;
    height: 300px;
    padding: 0px 0px;
    background-image: url('../img/pages/profile-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardEdit .card-body {
    opacity: 0;
    transition: opacity ease-in-out 0.3s;
}

.cardEdit:hover .card-body {
    opacity: 1;
}

.cardEdit .card-body label {
    cursor: pointer;
}

.cardEdit .card-body label i {
    font-size: 35px;
    color: #fff;
}

.cardEdit .card-body p {
    font-family: "Montserrat";
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #ffffff;
}

.editImageBox {
    width: 150px;
    height: 150px;
    border-color: #1cdfaf;
    border-width: 3px;
    border-style: solid;
    border-radius: 50%;
    background-image: url('../img/avatars/10.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.editImageBox .label {
    width: 156px;
    height: 75px !important;
    border-radius: 0px 0px 80px 80px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity ease-in-out 0.3s;
}

.editImageBox:hover .label {
    opacity: 1;
}

.editImageBox .label i {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
}

.btnEdit {
    width: 30px;
    height: 30px;
    border-color: #eeeeee;
    border-width: 1px;
    border-style: solid;
    filter: drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.16));
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
    margin-left: 10px;
}

.btnEdit i {
    font-size: 15px;
    color: #4540DF;
}

.btnEdit:hover i {
    color: #fff;
}

@media(max-width:575px) {
    .hero-edit-profil .cardEdit {
        height: 250px;
    }

    .cardProfil {
        margin-top: 80px;
    }

    .editImageBox {
        width: 120px;
        height: 120px;
    }

    .cardProfil .card-body h1 {
        font-size: 17px !important;
        margin-bottom: 0px;
    }

    .cardProfil .card-body p {
        font-size: 13px;
        margin-top: 0px;
    }

    .cardProfil .card-footer a img {
        height: 25px;
        width: 25px;
    }

    .data-profil {
        width: 95%;
    }
}

.modalEdit label {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #4540DF;
    margin-bottom: 10px;
}

.modalEdit input,
.modalEdit select {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #adadad;
    box-shadow: none;
    border-radius: 8px;
    border: 1px solid #dadada;
    border-radius: 25px;
}

.modalEdit input:focus,
.modalEdit select:focus {
    border: 1px solid #4540DF;
    box-shadow: none;
}

.modalEdit .modal-footer button {
    font-size: 13px;
}



/*--------------------------------------------------------------
# cardForm
--------------------------------------------------------------*/
.bg-blue-femme {
    position: relative;
}

.bg-blue-femme h3 {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
}

.bg-femme {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardMarche {
    background-color: transparent;
    border: none;
    padding-top: 0px;
    padding-bottom: 0px;
    border-left: 3px solid #fff;
    height: 100%;
    border-radius: 0px;
    padding-top: 0px;
}

.cardMarche .card-body {
    display: flex;
    align-items: start;
    padding-top: 0px;
    padding-left: 0px;
}

.cardMarche .card-body .left {
    margin-right: 30px;
    margin-left: -15px;
    margin-top: -5px;
}

.cardMarche .card-body .left span {
    font-size: 17px;
    font-weight: 600;
    color: #4540DF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.cardMarche h4 {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.cardMarche h4 i {
    font-size: 8px;
    margin-right: 5px;
}

.cardMarche p {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    color: #fff;
    margin-top: 10px;
}

@media (max-width:768px) {
    .bg-femme {
        display: none;
    }

    .bg-blue-femme {
        border: 1px solid #707070;
        background: linear-gradient(180deg, #4540DF 0%, #201F4C 98.21%);
    }

    .bg-blue-femme h3 {
        font-size: 17px !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cardMarche h4 {
        font-size: 15px;
    }

    .cardMarche p {
        font-size: 13px;
    }

    .cardMarche .card-body .left {
        margin-right: 20px;
        margin-left: -15px;
    }

    .cardMarche .card-body .left span {
        font-size: 15px;
        width: 25px;
        height: 25px;
    }

    .cardMarche {
        width: 95%;
        margin-left: 5%;
    }
}

.bg-gold {
    background: #b18200;
    background: linear-gradient(180deg,
            #b18200 0.00%,
            #ffe49a 46.90%,
            #b18200 100.00%);
}

.cardForfait {
    border-radius: 25px;
    border: 2px solid #fff;
    padding: 0px 0px;
    cursor: pointer;
    transition: 0.5s;
}


.cardForfait:hover {
    transform: translateY(-10px);
}

.forfaits input:checked+label {
    border: 2px solid greenyellow;
}

.cardForfait .card-header {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 0px;
}

.cardForfait .card-header .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    border-radius: 0px 0px 14px 14px;
    background-color: #fff;
}

.cardForfait .card-header .number h3 {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #4540DF;
}

.bg-gold .card-header .number h3 {
    color: #d7b24b;
}

.cardForfait .card-body h4 {
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}

.cardForfait .card-body p {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #fff;
}

.input-file {
    filter: drop-shadow(0px 0px 3.5px rgba(0, 0, 0, 0.16));
    border-radius: 20px;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.input-file label {
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    text-align: left;
    color: #656565;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-file label i {
    color: #4540DF;
    font-size: 17px;
    cursor: pointer;
}

/*-----------------------------------------
cardDetailsOffre
*-----------------------------------------*/
.cardDetailsOffre .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardDetailsOffre .card-header h5 {
    color: var(--Green-950, #05041A);
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardDetailsOffre .card-header span {
    color: var(--GrayScale-Text-Subtitle, #383838);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-favoris {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    padding: 0px 0px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2621C5;
    background: var(--Green-600, #fff);
}

.btn-favoris i {
    font-size: 0.8rem;
    color: #2621C5;
    margin-top: 3px;
}

@media(max-width:992px) {
    .cardDetailsOffre .card-header h5 {
        font-size: 20px;
    }

    .cardDetailsOffre .card-header span {
        font-size: 12px;
    }
}

@media(max-width:768px) {
    .cardDetailsOffre .card-header {
        display: block;
    }

    .cardDetailsOffre .card-header h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cardDetailsOffre .card-header span {
        font-size: 12px;
    }
}

@media(max-width:570px) {
    .cardDetailsOffre .card-header h5 {
        font-size: 16px;
    }

    .cardDetailsOffre .card-header span {
        font-size: 12px;
    }
}

/*--------------------------------------------------
cardGroup
*--------------------------------------------------*/
.cardGroup {
    border-radius: 25px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
    height: 100%;
    max-width: 317px;
    min-height: 170.538px;
    flex-shrink: 0;
    padding-left: 0px;
    margin-right: 1rem;
}

.cardGroup .card-body {
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;

}

.cardGroup .left {
    border-radius: 21px;
    background: var(--Green-500, #4540DF);
    width: 81px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-height: 170.538px;
}

.cardGroup .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 100%;
    min-height: 170.538px;
}

.cardGroup .text h5 {
    color: var(--Green-600, #2621C5);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}

.cardGroup .text p {
    color: #949494;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}

.cardGroup .text small {
    color: var(--Green-400, #6A66E5);
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media(max-width:992px) {
    .cardGroup .text h5 {
        font-size: 14px;
    }

    .cardGroup .text p {
        font-size: 11px;
    }

    .cardGroup .text small {
        font-size: 10px;
    }
}

@media(max-width:570px) {
    .cardGroup .left {
        display: none;
    }

    .cardGroup .text {
        padding-left: 1rem;
    }
}

/*---------------------------------------------------------
sujets
+----------------------------------------------------------+*/
.cardSujets {
    border-radius: 5px;
    background: #FFF;
    width: 100%;
    max-width: 780px;
}

.cardSujets .card-header {
    border-radius: 5px;
    background: var(--Green-500, #4540DF);
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardSujets .card-header h5 {
    color: var(--50, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.47px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardSujets .card-body .sujet {
    border-bottom: 1px solid #C4C4C4;
    padding-bottom: 0.5rem;
    padding-top: 1rem;
}

.cardSujets .card-body .sujet:last-child {
    border-bottom: none !important;
}

.cardSujets .card-body h4 {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.98px;
    margin-top: 0px;
    margin-bottom: 1rem;
}

.sujet-2:nth-child(odd) {
    background: #FBFBFB !important;
}

.sujet-2:nth-child(even) {
    background: var(--Green-50, #EEEEFC);
}

.cardSujets .card-body .sujet-2 h4 {
    font-size: 15px;
    color: var(--Green-500, #4540DF);
    margin-bottom: 0.5em;
}

.cardSujets .card-body .left {
    display: flex;
    align-items: start;
    justify-content: start;
}

.cardSujets .card-body .left img {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}

.cardSujets .card-body .sujet-2 .left img {
    width: 15px;
    height: 15px;
}

.cardSujets .card-body .left h6 {
    color: var(--900, #303030);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.49px;
    margin-top: 0;
    margin-bottom: 0;
}

.cardSujets .card-body .sujet-2 .left h6 {
    font-size: 12px;
}

.cardSujets .card-body .comment {
    color: var(--700, #949494) !important;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    letter-spacing: 0.49px;
    font-size: 12px !important;
}

.cardSujets .card-body .right p {
    color: var(--Green-200, #B7B5F3);
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.588px;
    margin-top: 0;
    margin-bottom: 0;
}

.cardSujets .card-body .sujet-2 .right p {
    font-size: 10px;
}

.cardSujets .card-body .right svg {
    margin-right: 5px;
}

.sub-comment img {
    width: 25px !important;
    height: 25px !important;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.sub-comment-content {
    border-radius: 10px;
    background: var(--Green-50, #EEEEFC);
}

.sub-comment-content h6 {
    color: var(--Green-500, #4540DF);
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.49px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.sub-comment-content p {
    color: var(--Green-400, #6A66E5);
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.392px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.sub-comment small,
.sub-comment .btn-action {
    color: var(--800, #636363);
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.49px;
}

@media(max-width:1024px) {
    .cardSujets .card-header {
        min-height: 70px;
    }

    .cardSujets .card-header h5 {
        font-size: 25px;
    }

    .cardSujets .card-body h4 {
        font-size: 16px;
    }

    .cardSujets .card-body .sujet-2 h4 {
        font-size: 14px;
    }

    .cardSujets .card-body .sujet-2 .box {
        display: block !important;
    }

    .cardSujets .card-body .sujet-2 .right {
        display: flex;
    }

    .cardSujets .card-body .sujet-2 .right p {
        margin-right: 10px;
    }
}

@media(max-width:768px) {
    .cardSujets .card-header {
        min-height: 50px;
    }

    .cardSujets .card-header h5 {
        font-size: 20px;
    }
}

@media(max-width:570px) {
    .cardSujets .card-header h5 {
        font-size: 18px;
    }

    .cardSujets .card-body h4 {
        font-size: 15px;
    }

    .cardSujets .card-body .sujet-2 h4 {
        font-size: 13px;
    }

    .cardSujets .card-body .sujet-2 .box,
    .cardSujets .card-body .sujet .box {
        display: block !important;
    }

    .cardSujets .card-body .sujet .right {
        display: flex;
        justify-content: start !important;
    }

    .cardSujets .card-body .sujet-2 .right p {
        margin-right: 5px;
    }

    .cardSujets .card-body .sujet .right svg {
        width: 10px !important;
    }
}

/*-------------------------------------------
Comment 
--------------------------------------------*/
.commentBox {
    display: flex;
    align-items: start;
    justify-content: start;
}

.commentBox img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    margin-right: 1rem;
}

.commentBox .text {
    border-radius: 10px;
    border: 0.5px solid #BBB5B5;
    background: #FBFBFB;
    padding: 0.5rem 0.5rem;
    margin-top: 10px;
}

.commentBox .text .top {
    display: flex;
    align-items: flex-end;
}

.commentBox .text .top h5 {
    color: var(--Green-500, #4540DF);
    text-align: left;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.98px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.commentBox .text .top p {
    color: var(--700, #949494) !important;
    text-align: left;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.637px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.commentBox .text .content p {
    color: var(--700, #949494);
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.784px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.commentBox .text .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commentBox .text .bottom .btn {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: var(--Green-200, #B7B5F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
}

.commentBox .text .bottom .btn:hover {
    background: var(--Green-200, #9e9bf6);
}

.commentBox .text .bottom p {
    color: var(--Green-200, #B7B5F3);
    text-align: center;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.637px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.boxSend {
    display: flex;
    align-items: center;
    justify-content: start;
}

.boxSend .input-group {
    border-radius: 10px;
    border: 0.5px solid #BBB5B5;
    background: #FBFBFB;
    display: flex;
    align-items: center;
    justify-content: start;
}

.boxSend .input-group .form-control {
    color: var(--700, #000);
    text-align: left;
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.637px;
    border: none;
    background: transparent !important;
    height: 100%;
    box-shadow: none !important;
}

.boxSend .input-group .form-control::placeholder {
    color: var(--700, #949494);
}

.boxSend .input-group .input-group-text {
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 50% !important;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Green-200, #B7B5F3);
}

.boxSend .input-group-img img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

@media(max-width:992px) {
    .commentBox img {
        width: 50px;
        height: 50px;
    }

    .commentBox .text .top h5 {
        font-size: 16px;
    }

    .boxSend .btn-image svg {
        width: 40px !important;
        height: 40px !important;
    }
}

@media(max-width:768px) {
    .commentBox img {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }

    .commentBox .text {
        margin-top: 0px !important;
    }

    .commentBox .text .top h5 {
        font-size: 15px;
    }

    .boxSend .btn-image svg {
        width: 35px !important;
        height: 35px !important;
    }
}

@media(max-width:570px) {
    .commentBox img {
        width: 30px;
        height: 30px;
    }

    .commentBox .text .top {
        display: block;
    }

    .commentBox .text .top h5 {
        font-size: 14px;
        margin-right: 0px !important;
        margin-bottom: 5px;
    }

    .commentBox .text .content p {
        font-size: 12px;
    }

    .commentBox .text .bottom .btn {
        width: 25px;
        height: 25px;
    }

    .commentBox .text .bottom .btn svg {
        width: 10px !important;
        height: 10px !important;
    }

    .commentBox .text .bottom p {
        font-size: 10px;
    }

    .boxSend .btn-image svg {
        width: 30px !important;
        height: 30px !important;
    }

    .boxSend .input-group .input-group-text {
        width: 30px;
        height: 30px;
    }

    .boxSend .input-group .input-group-text svg {
        width: 15px !important;
        height: 15px !important;
    }
}

/*------------------------------------
articles
*-------------------------------------------------*/
.cardArticle {
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    height: 100%;
    min-height: 272px;
    width: 100%;
    max-width: 747px;
}

.cardArticle .card-body {
    display: flex;
    align-items: start;
    justify-content: start;
}

.cardArticle .card-body .left {
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: url(<path-to-image>) lightgray 50% / cover no-repeat, #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 254px;
    height: 272px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardArticle .card-body .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 41px;
}

.cardArticle .card-body .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.cardArticle .card-body .text .top {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.cardArticle .card-body .text .top h5 {
    color: var(--Green-500, #4540DF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardArticle .card-body .text p {
    color: var(--GrayScale-Text-Subtitle, #383838);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-top: 0px;
    margin-bottom: 0px;
}

.cardArticle .card-body .text .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cardArticle .card-body .text small {
    color: #656565;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cardArticle .card-body .text small strong {
    color: var(--Green-500, #4540DF);
}

@media(max-width:768px) {
    .cardArticle {
        min-height: 222px;
    }

    .cardArticle .card-body .text .top h5 {
        font-size: 15px;
    }

    .cardArticle .card-body .text p {
        font-size: 12px;
    }

    .cardArticle .card-body .text small {
        font-size: 11px;
    }

    .cardArticle .card-body .text .btn {
        font-size: 11px;
    }

    .cardArticle .card-body .left {
        width: 200px;
        height: 222px;
    }
}

@media(max-width:570px) {
    .cardArticle {
        min-height: auto;
    }

    .cardArticle .card-body {
        display: block;
    }

    .cardArticle .card-body .text {
        display: block;
    }

    .cardArticle .card-body .text .top h5 {
        font-size: 14px;
    }

    .cardArticle .card-body .text p {
        font-size: 12px;
    }

    .cardArticle .card-body .text .bottom {
        display: block;
    }

    .cardArticle .card-body .text small {
        font-size: 11px;
    }

    .cardArticle .card-body .text .btn {
        font-size: 11px;
        width: 100%;
        margin-top: 10px;
    }

    .cardArticle .card-body .left {
        width: 100%;
        height: 250px;
        border-radius: 41px 41px 0px 0px;
    }

    .cardArticle .card-body .left img {
        border-radius: 41px 41px 0px 0px;
    }
}

/*-------------------------------------------------
card image
*-------------------------------------------------*/
.cardImage img {
    width: 100%;
    max-width: 350px;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 175/117;
    object-fit: contain;
}

.cardImage p {
    color: var(--600, #C4C4C4);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    /* 170% */
    letter-spacing: 0.96px;
}

.cardImage a {
    font-weight: 600;
    color: var(--Green-500, #4540DF);
}

/*--------------------------------------
cardShow
-----------------------------------------*/
.cardShow {
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    height: 100%;
    min-height: 272px;
    width: 100%;
}

.cardShow .card-header .bloc {
    border-radius: 25px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
}

.cardShow .card-header .box {
    width: 72px;
    height: 69px;
    flex-shrink: 0;
    border-radius: 21px;
    background: var(--Green-500, #4540DF);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.cardShow .card-header .box img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.cardShow .card-header h5 {
    color: var(--Green-600, #2621C5);
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
    margin-top: 0px;
}

@media(max-width:992px) {
    .cardShow .card-header .box {
        width: 62px;
        height: 59px;
    }

    .cardShow .card-header .box img {
        width: 30px;
        height: 30px;
    }

    .cardShow .card-header h5 {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .cardShow .card-header .bloc {
        width: fit-content;
    }

    .cardShow .card-header .box {
        width: 52px;
        height: 49px;
    }

    .cardShow .card-header .box img {
        width: 25px;
        height: 25px;
    }

    .cardShow .card-header h5 {
        font-size: 15px;
    }
}

@media(max-width:570px) {
    .cardShow .card-header .box {
        width: 42px;
        height: 39px;
    }

    .cardShow .card-header .box img {
        width: 20px;
        height: 20px;
    }

    .cardShow .card-header h5 {
        font-size: 14px;
    }
}

/*-----------------------------------
filters offres
*------------------------------------*/
.pb-10 {
    padding-bottom: 10rem;
}

.offres-section {
    margin-top: -10rem;
}

@media(max-width:768px) {
    .pb-10 {
        display: none;
    }

    .offres-section {
        margin-top: 0rem;
        padding-top: 1rem !important;
    }

}

/*----------------------------------
mention legal
-----------------------------------*/
.cardMention {
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
    background: #FFF;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
    height: 100%;
}

.cardMention .card-header {
    padding-top: 1rem;
}

.cardMention img {
    width: 80%;
    max-width: 231px;
    max-height: 238px;
    object-fit: contain;
    border-radius: 41px;
    border: 2px solid var(--Green-200, #B7B5F3);
}

.cardMention h5 {
    color: var(--Green-400, #6A66E5);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.98px;
    margin-bottom: 0px;
}
.section-text {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.cardMention ul li,
.section-text p,
 .section-text ul li{
    color: #656565;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.784px;
}

.section-text p,
.section-text ul li {
    color: #000;
}
.section-text a {
    text-decoration: underline !important;
}
.section-text h2 {
    color: var(--Green-600, #2621C5);
    font-family: Montserrat;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.911px;
}

@media(max-width:992px) {
    .cardMention h5 {
        font-size: 18px;
    }

    .cardMention ul li,
    .section-text p,
    .section-text ul li {
        font-size: 15px;
    }

    .section-text h2 {
        font-size: 23px;
    }
}

@media(max-width:768px) {
    .cardMention h5 {
        font-size: 16px;
    }

    .cardMention ul li,
    .section-text p,
    .section-text ul li {
        font-size: 14px;
    }

    .section-text h2 {
        font-size: 20px;
    }
}
@media(max-width:570px) {
    .cardMention h5 {
        font-size: 15px;
    }

    .cardMention ul li,
    .section-text p,
    .section-text ul li {
        font-size: 12px;
    }

    .section-text h2 {
        font-size: 18px;
    }
}