@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sawarabi+Mincho&display=swap'); 
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"); 
/********** Template CSS **********/
:root {
    --primary: #8f9700; 
    --secondary: #8f9700; 
    --light: #F6F7FC; 
    --dark: #244325; 
}

html {
    overflow-x: hidden; 
}
body {
    overflow-x: hidden; 
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
a {
    transition: .5s; 
}
a:hover {
    color: var(--secondary); 
    transition: .5s; 
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 50px;
}

.text-primary {
    color: #8f9700!important; 
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(rgb(0 0 0 / 74%), rgb(79 80 61 / 38%)), url(../img/carousel-1.jpg) center right no-repeat; 
    background-size: cover; 
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-2.jpg) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    color: var(--primary);
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #A7A8B4;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


/********** SECTION 01 HOME ************/
section.section-under-hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8f9700; 
    max-width: 100%;
    min-height: 150px; 
    height: auto;
    padding: 15px 0; 
}
section.section-under-hero .container-fluid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    max-width: 100%; 
    flex-wrap: wrap; 
}
section.section-under-hero .container-fluid .col-sm-3 {
    max-height: 95px;
    max-width: 315px; 
    min-width: 305px; 
    background-color: transparent!important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 15px; 
}
section.section-under-hero .container-fluid .col-sm-3 .bg-light.rounded {
    max-height: 95px; 
    max-width: 305px;  
    min-width: 305px; 
    background-color: transparent!important; 
    display: flex;
    align-items: center;
    justify-content: center; 
}
section.section-under-hero .container-fluid .col-sm-3 a {
    flex-direction: row!important; 
    align-items: center; 
    width: 315px; 
}
section.section-under-hero .container-fluid .col-sm-3 a i {
    color: #8f9700; 
}
section.section-under-hero .container-fluid .col-sm-3 a h5 {
    width: 90%; 
    margin: 0!important; 
    transition: .5s;
}
section.section-under-hero .container-fluid .col-sm-3:hover h5 {
    color: #8f9700!important; 
    transition: .5s;
}


/****** À PROPOS PAGE ******/
section#section-header-page {
    width: 100%; 
    height: 40vw; 
    min-height: 650px; 
    background-size: cover!important; 
    position: relative; 
    box-shadow: 5px 0px 20px 2px #000; 
}
section.section-about-01 {}
section.section-about-01 .container-fluid {}
section.section-about-01 .container-fluid .title-section-h1 {
    font-family: 'Jost', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: -.5px; 
    font-weight: 600; 
    font-size: 2.4vw!important; 
}
section.section-about-01 .left-section-02-about {
    padding-right: 4rem!important; 
    padding-top: 5vw; 
}
section.section-about-01 .container-fluid .title-section-h4 {
    font-family: 'Jost', sans-serif; 
    text-transform: capitalize; 
    font-weight: 300; 
    color: #8f9700; 
}
section.section-about-01 #btn-hero-don {
    margin-top: 0.5rem!important; 
}
section.section-about-01 #btn-hero-don:hover {
    background-color: #8f9700; 
}

section.section-02-mission #btn-hero-don:hover {
    background-color: #8f9700; 
}

section.section-02-mission .card {
    border: 0px solid rgba(0,0,0,0.125)!important; 
}


section#timeline .bg-success {
    background-color: #8f9700 !important;
}



/****** ÉVÉNEMENT PAGE ******/
.section-evenements {}
.section-evenements .container-fluid {
    padding: 0 0px!important; 
}
.section-evenements .container-fluid .text-event-title {
    font-family: 'Jost', sans-serif; 
}
.section-evenements .container-fluid .text-event-title span {
    font-size: 14px;
    color: #696e77;
}
.section-evenements .container-fluid h1.text-capitalise {
    font-size: 2.8vw!important; 
}


/********** CONTACT PAGE **********/
section.contact-page {}
section.contact-page .container-fluid {
    width: 100%!important; 
    max-width: 100%!important; 
}
section.contact-page .fs-2-custom {
    font-size: 1.3rem; 
    color: #464646!important; 
}
section.contact-page .fs-2-custom i {
    color: #8f9700; 
    border: 1px solid #8f9700; 
    padding: 8px; 
    border-radius: 50%; 
    margin-right: 8px!important; 
}
section.contact-page .fs-2-custom:hover {
    color: #8f9700!important; 
    transition: .5s; 
}
section.contact-page .media-socail-contact {
    border-top: 1px solid #ccc;
}
section.contact-page .media-socail-contact a {
    border: 1px solid #8f9700; 
    margin-right: 15px!important; 
}
section.contact-page .media-socail-contact i {
    color: #8f9700; 
}

section.contact-page .google-map-section {
    min-height: 550px; 
}
section.devenir-benevole .container-fluid {
    width: 100%!important; 
    max-width: 100%!important; 
}

section#section-header-page::after {
    content: ""; 
    position: absolute; 
    top: 0; 
    right: 0; 
    left: 0; 
    bottom: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.803); 
}
section#section-header-page .container-fluid {
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: flex-start; 
    justify-content: center; 
    flex-direction: column; 
    position: relative; 
    z-index: 5; 
}
section#section-header-page .container-fluid .content-header-desc {
    padding: 4px 2%;
}
section#section-header-page .container-fluid .content-header-desc h1.title-header-page {
    font-family: 'Sawarabi Mincho', serif; 
    font-size: 3.5vw; 
    line-height: 4.8vw; 
    color: #fff; 
}
section#section-header-page .container-fluid .content-header-desc p.text-desc-header-page {
    color: #fff; 
    font-size: 1.6vw; 
    font-family: 'Jost', sans-serif; 
    font-weight: 300; 
}



/******* PAGE DONNATION *********/
div.prices-data {
    width: 100%; 
    margin-top: 45px; 
    margin-bottom: 45px; 
} 
div.prices-data .menu-payment-opt {
    width: 100%; 
    display: flex; 
    align-items: flex-start; 
    justify-content: flex-start; 
    flex-direction: column; 
} 
div.prices-data .menu-payment-opt ul.nav.nav-pills {
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    margin-bottom: 25px; 
}
div.prices-data .menu-payment-opt ul.nav.nav-pills li {
    margin-right: 25px; 
}
div.prices-data .menu-payment-opt ul.nav.nav-pills li a {
    color: #8f9700; 
    border-radius: 7px; 
    border: 2px solid #8f9700; 
    padding: 10px 15px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 175px;
} 
div.prices-data .menu-payment-opt ul.nav.nav-pills li a i {
    font-size: 22px; 
    margin-right: 15px; 
} 
div.prices-data .menu-payment-opt ul.nav.nav-pills li a:hover {
    color: #fff;
    border: 2px solid #fff; 
    background-color: #8f9700;
}
div.prices-data .menu-payment-opt ul.nav.nav-pills li.active a {
    color: #fff;
    border: 2px solid #8f9700; 
    background-color: #8f9700;
}

div.prices-data div.payment-content-main-opt {
    width: 100%; 
    margin-top: 15px; 
    padding-top: 30px; 
    border-top: 1px solid #ccc; 
}
div.prices-data div.payment-content-main-opt .content-section-active {
    width: 100%; 
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap; 
}
div.prices-data div.payment-content-main-opt .content-section-active .left-side-prices {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    flex-wrap: wrap; 
}
div.prices-data div.payment-content-main-opt .content-section-active .form-check {
    width: 200px;
    border-radius: 7px;
    border: 2px solid #8f9700;
    padding: 0; 
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; 
    position: relative; 
}
div.prices-data div.payment-content-main-opt .content-section-active .form-check input {
    position: absolute;
    margin-right: 8px;
    margin-top: 0px;
    left: 40px;
    width: 23px;
    height: 23px; 
}
div.prices-data div.payment-content-main-opt .content-section-active .form-check label {
    line-height: 12px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center; 
}
button#btn_donnation_account {
    width: 205px; 
}



.section-about-main-page {
    background: #e1e3bc; 
}
.section-nos-causes {
    background: #e1e3bc; 
}
.section-2-activities {
    background: #e7e7e7; 
}
.text-uppercase {
    text-transform: uppercase!important; 
}
.section-about-main-page .container-fluid {
    width: 94%!important; 
    max-width: 94%!important; 
}
.hidden {
    display: none;
}

.green-btn {
    color: #8f9700!important; 
    border: 1px solid #8f9700!important; 
    transition: .5s; 
}
.green-btn:hover {
    color: #fff!important; 
    transition: .5s; 
}
.text-green-1 {
    color: #8f9700!important; 
}
.border-top {
    border-top: 1px solid #d5d5d5 !important; 
}
.btn-custom-inner {
    width: 205px;
    color: #fff;
    padding: 10px 18px;
    border-radius: 7px;
    background: #8f9700;
    font-weight: 500; 
}
.btn-custom-inner:hover {
    background-color: #fff!important; 
    color: #8f9700!important; 
}
.bg-primary-custom {
    background-color: #8f9700!important; 
}
.btn-success {
    color: #fff;
    background-color: #8f9700!important;
    border-color: #8f9700!important;
}
.btn-read-more-activites {
    width: 205px;
    color: #8f9700!important;
    border: 1px solid #8f9700; 
    padding: 10px 18px;
    border-radius: 7px;
    background: #fff; 
    font-weight: 500; 
}
.btn-read-more-activites:hover {
    color: #fff!important;
}
.btn-custom-green {
    width: 205px; 
    border-radius: 5px; 
    padding: 10px 30px!important; 
}

.vc_row.wpb_row {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 100%; 
}

.section-contribution-main .sune-counter {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
}
.section-contribution-main .sune-counter .icon {
    margin-right: 12px;
}
.section-contribution-main .sune-counter .icon i {
    font-size: 2.8rem; 
    color: #8f9700; 
}
.section-contribution-main .sune-counter .text {
    display: flex; 
    flex-direction: column; 
}
.section-contribution-main .sune-counter .text .sune-primary-color {
    width: 100%; 
    font-size: 2.12rem; 
    font-weight: 600; 
    /* color: #198754; */
}


.section-06 {
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background-color: #fff!important; 
    padding: 4% 2%!important; 
    flex-direction: column; 
}
.section-06 .container-fluid {
    width: 75%!important; 
}

.section-06 .content-partenaires {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #dbdbdb;
    padding-top: 25px!important;
    background: #fff;
    margin-top: 25px;
}
.section-06 .content-partenaires .col-lg-6.col-md-6 {
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.section-06 .content-partenaires img {
    max-height: 75px!important; 
}



.checkout-faire-un-don {}

body.checkout-faire-un-don .pricing-card {
	 width: 40%;
	 min-width: 300px;
	 min-height: 300px;
	 height: auto;
	 background: #e5e5e5; 
	 border-radius: 10px;
	 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.286);
	 padding: 50px;
	 display: flex;
	 flex-direction: column;
	 row-gap: 20px;
	 position: relative; 
	 top: 10%;
	 left: 50%;
	 transform: translateX(-50%);
}
body.checkout-faire-un-don .pricing-card .card-header {
	 width: 100%;
	 height: 60px;
	 padding: 10px;
	 border: 1px solid #ededed;
	 border-radius: 10px; 
     background: #ffffff; 
}
body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent {
	 width: 100%;
	 height: 100%;
	 display: flex;
	 position: relative;
}
body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent button {
	 width: calc(100%/3);
	 height: 100%;
	 border: 0;
	 border-radius: 7px;
	 background-color: transparent;
	 cursor: pointer;
	 z-index: 1;
	 font-weight: 500;
	 transition: color 0.5s ease;
}
body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent button:nth-of-type(1).active, body .pricing-card .card-header .card-btn-parent button:nth-of-type(1).active ~ div {
	 left: 0px;
	 color: #fff;
}
body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent button:nth-of-type(2).active, body .pricing-card .card-header .card-btn-parent button:nth-of-type(2).active ~ div {
	 left: calc(100%/3);
	 color: #fff;
}
body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent button:nth-of-type(3).active, body .pricing-card .card-header .card-btn-parent button:nth-of-type(3).active ~ div {
	 left: calc(calc(100%/3)*2);
	 color: #fff;
}
 body.checkout-faire-un-don .pricing-card .card-header .card-btn-parent div {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: calc(100%/3);
	 height: 100%;
	 background: #45a69a;
	 border-radius: 7px;
	 transition: left 0.5s ease;
}
body.checkout-faire-un-don .pricing-card .card-body {
	 display: flex;
	 width: 100%;
	 padding: 10px 20px;
}
 body.checkout-faire-un-don .pricing-card .card-body > div {
	 width: 100%;
	 height: auto;
	 display: none;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-plans {
	 width: 100%;
	 display: flex;
	 flex-direction: column;
	 row-gap: 5px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-plans span {
	 color: gray;
	 font-weight: 500;
	 font-size: 13px;
	 letter-spacing: 0.5px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-plans div {
	 display: flex;
	 justify-content: space-between;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-plans div h3 {
	 font-size: 24px;
}
 body .pricing-card .card-body > div .card-content {
	 margin-top: 25px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-content > p {
	 line-height: 20px;
	 font-size: 14px;
	 font-weight: 400;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-content .card-lists {
	 margin-top: 20px;
	 display: flex;
	 flex-direction: column;
	 row-gap: 10px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-content .card-lists .card-list {
	 display: flex;
	 column-gap: 10px;
	 font-size: 14px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-content .card-lists .card-list img {
	 width: 15px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-button {
	 margin-top: 35px;
}
body.checkout-faire-un-don .pricing-card .card-body > div .card-button button {
	 border: 0;
	 width: 100%;
	 height: 40px;
	 background-color: #45a69a;
	 border-radius: 20px;
	 color: #fff;
	 font-size: 14px;
	 cursor: pointer;
	 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.286);
	 letter-spacing: 0.5px;
	 font-weight: 500;
}
body.checkout-faire-un-don .pricing-card .card-body > div.active {
	 display: block;
}
 @media screen and (max-width: 400px) {
	 body.checkout-faire-un-don .pricing-card {
		 width: 320px;
		 padding: 25px;
	}
}
 


#cover-article {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 380px;
    overflow: hidden;
}




.box-event-unique {}
.box-event-unique .card-img-top {
    border-radius: 7px 7px 0px 1px!important; 
}
.box-event-unique .card-footer {
    margin-top: -57px; 
    background: #000000ad!important; 
    display: none; 
}
.box-event-unique .card-footer .small {
    color: #8f9700!important; 
}
.box-event-unique .card-footer .small .text-muted {
    color: #8f9700!important; 
}
.bg-primary-custom-grey {
    background: #4f503d!important; 
}
.container-fluid.copyright {
    background: #333426!important; 
}
.container-fluid.copyright a {
    color: #8f9700!important; 
}

.section-recentes-eventes {}

.error-msg {
    font-size: 14px; 
    color: #a52a2a; 
    padding: 10px 15px; 
    border-radius: 3px; 
    background: #ffd5d5; 
    border: 1px solid #ffafaf; 
    font-family: 'Jost', sans-serif; 
    font-weight: 400; 
}

.success-msg {
    font-size: 14px;
    font-weight: 300;
    color: #8f9700;
    border: 1px solid;
    padding: 12px 15px;
    border-radius: 3px; 
}

select.devenir-benevole .btn-custom-inner {
    width: 150px!important; 
}

.text-desc {
    font-family: 'Jost', sans-serif!important; 
}
.text-icon-content h5 {
    display: flex;
    flex-wrap: wrap;
}
.text-icon-content h5 p {
    font-size: 13px; 
    font-weight: 400; 
    color: #696E77; 
    font-family: 'Jost', sans-serif!important; 
}
.text-capitalise {
    text-transform: capitalize!important; 
}
.bg-primary-custom {
    background-color: #8f9700!important; 
    font-weight: 300!important; 
}
.bg-360dev {
    background: #4f503d; 
}
.icon-section-causes {
    color: #292a19; 
}
.text-icon-content i {
    font-size: 3.5rem; 
    margin-right: 12px; 
    color: #8f9700; 
}
.text-360dev-grey {
    color: #696e77!important; 
}
.text-grey-1 {
    color: #727272!important; 
}
.text-360dev {
    color: #4f503d; 
}
.text-360dev-1 {
    color: #292a19; 
}
.text-360dev-2 {
    color: #8f9700; 
}
.bg-primary-custom {
    background: #4f503d; 
}
.b-radius-2 {
    border-radius: 4px!important; 
}
.text-Jost {
    font-family: 'Jost', sans-serif!important; 
}
.bg-grey-ccc {
    background-color: #ccc!important; 
}
.fs-12 {
    font-size: 12px!important; 
}

.loading {
    top: 0; 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    background: #fff; 
    bottom: 0; 
    z-index: 9999; 
    left: 0; 
    right: 0; 
    display: none; 
    align-items: center; 
    justify-content: center; 
}
.loader-ID {
    top: 0; 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    background: #fff; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;

    border-top: 16px solid #8f9700; 
    border-bottom: 16px solid #8f9700; 
}
  
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}