body {
    font-family: "Open Sans", sans-serif;
    color: #444
}

a {
    text-decoration: none;
    color: #4e7f22
}

a:hover {
    color: #67a72d;
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4e7f22;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0
}

.back-to-top:hover {
    background: #80cb3c;
    color: #fff
}

.back-to-top.active {
    visibility: visible;
    opacity: 1
}

#topbar {
    background: #fbfbfb;
    font-size: 15px;
    height: 40px;
    padding: 0
}

#topbar .contact-info a {
    line-height: 0;
    color: #444;
    transition: .3s
}

#topbar .contact-info a:hover {
    color: #4e7f22
}

#topbar .contact-info i {
    color: #4e7f22;
    line-height: 0;
    margin-right: 5px
}

#topbar .contact-info .phone-icon {
    margin-left: 15px
}

#topbar .social-links a {
    color: #6f6f6f;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: .3s
}

#topbar .social-links a:hover {
    color: #4e7f22
}

/* Donation button wrapper */
.donation-wrapper {
  position: fixed;
  left: 15px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 9999;
}

/* Donation buton */
.mobile-floating-top {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #dc3545;
  background: transparent;
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}

/* Donation button ikon */
.mobile-floating-top i {
  font-size: 26px;
  color: #dc3545;
  transition: 0.2s ease;
}

/* Donation button label */
.donation-label {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: #dc3545;
  font-weight: 600;
  pointer-events: none;
  transition: 0.2s ease;
}

/* Donation button Hover */
.mobile-floating-top:hover {
  background: #dc3545;
  color: #ffffff;
}
/* Donation button Hover */
.mobile-floating-top:hover i,
.donation-wrapper:hover {
  color: #ffffff;
}

/* Donation button dispaly none on Desktop */
@media (min-width: 1201px) {
  .donation-wrapper {
    display: none;
  }
}

#header {
    background: #fff;
    transition: all .5s;
    z-index: 997;
    height: 70px;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, .302)
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .1)
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

#header .logo a {
    color: #4e7f22
}

#header .logo img {
    max-height: 60px
}

@media(max-width: 992px) {
    #header .logo img {
        max-height: 50px
    }
}

@media(max-width: 768px) {
    #header .logo img {
        max-height: 40px
    }
}

.scrolled-offset {
    margin-top: 70px
}

.navbar {
    padding: 0
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
}

.navbar li {
    position: relative
}

.navbar a,
.navbar a:focus {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #222;
    white-space: nowrap;
    transition: .3s
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #4e7f22
}

.navbar .getstarted,
.navbar .getstarted:focus {
    color: #4e7f22;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    border: 2px solid #4e7f22;
    transition: .3s;
    font-size: 14px
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #4e7f22;
    color: #fff
}

.navbar .donation,
.navbar .donation:focus {
    color: #dc3545;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    border: 2px solid #dc3545;
    transition: .3s;
    font-size: 14px
}

.navbar .donation:hover,
.navbar .donation:focus:hover {
    background: #dc3545;
    color: #fff
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, .25);
    transition: .3s
}

.navbar .dropdown ul li {
    min-width: 200px
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none
}

.navbar .dropdown ul a i {
    font-size: 12px
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #4e7f22
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible
}

@media(max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%
    }
}

.mobile-nav-toggle {
    color: #222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: .5s
}

.mobile-nav-toggle.bi-x {
    color: #fff
}

@media(max-width: 1200px) {
    .mobile-nav-toggle {
        display: block
    }

    .navbar ul {
        display: none
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, .9);
    transition: .3s;
    z-index: 999
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: .3s
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #4e7f22
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 7px;
    margin-left: 20px
}

.navbar-mobile .donation,
.navbar-mobile .donation:focus {
    margin: 7px;
    margin-left: 20px
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, .25)
}

.navbar-mobile .dropdown ul li {
    min-width: 200px
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4e7f22
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block
}

#hero {
    width: 100%;
    height: 80vh;
    background-color: rgba(9, 9, 9, .4);
    overflow: hidden;
    position: relative
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(16, 26, 7, .2)
}

#hero .carousel-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: clamp(12px, 4vw, 48px)
}

#hero .container {
    text-align: center
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700
}

#hero p {
    animation-delay: .4s;
    margin: 0 auto 30px auto;
    color: #fff
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: .5s
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    border-radius: 50px;
    transition: .3s;
    color: rgba(255, 255, 255, .5)
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8)
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: .3s
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #4e7f22
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid #4e7f22;
    transition: .5s;
    line-height: 1;
    color: #fff;
    animation-delay: .8s;
    background: #4e7f22;
}

#hero .btn-get-started:hover {
    background: #5a9327;
}

#hero .video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #333
}

#hero .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

#hero .video-container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .3)
}

#hero .carousel-item .d-flex.flex-wrap {
    gap: 8px;
    align-content: flex-start
}

#hero .ig-card {
    transition: transform .3s ease;
    width: 12rem;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

#hero .ig-card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

#hero .ig-card:hover {
    transform: scale(1.05);
    z-index: 2
}

@media(max-width: 992px) {
    #hero {
        height: 75vh
    }
}

@media(max-width: 768px) {
    #hero {
        height: 75vh
    }

    #hero h2 {
        font-size: 28px
    }
}

@media(max-width: 576px) {
    #hero .carousel-item .d-flex.flex-wrap {
        height: calc(80vh - 48px)
    }

    #hero .ig-card {
        width: calc((100% - 16px)/3)
    }
}

@media(min-width: 1024px) {
    #hero {
        height: 80vh
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%
    }
}

@media(max-height: 500px) {
    #hero {
        height: 75vh
    }
}

section .section-title {
    text-align: center;
    padding-bottom: 30px
}

section .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

section .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px)
}

section .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #4e7f22;
    bottom: 0;
    left: calc(50% - 20px)
}

section .section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191
}

.announcements {
    padding: 30px 0 60px 0
}

.announcements .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative
}

.announcements .card:hover img {
    transform: scale(1.1)
}

.announcements .card:hover .card-body {
    border-color: #4e7f22
}

.announcements .card:hover .card-body .card-title a {
    color: #4e7f22
}

.announcements .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .4)
}

.announcements .card-img img {
    max-width: 100%;
    transition: all .3s ease-in-out
}

.announcements .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .1);
    margin-top: -60px;
    transition: .3s;
    text-align: center
}

.announcements .card-body a {
    padding: 5px 15px;
    color: #4e7f22;
    border-color: #4e7f22;
    border-style: solid;
    border-radius: 5px
}

.announcements .card-body a:hover {
    color: #9ad664;
    border-color: #9ad664;
    border-style: solid
}

.announcements .card-title {
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #24325d
}

.announcements .card-title a {
    color: #24325d;
    transition: .3s
}

.announcements .card-text {
    color: #777
}

.announcements .read-more a {
    color: #777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: .3s
}

.announcements .read-more a:hover {
    color: #80cb3c
}

.announcements .swiper-pagination {
    margin-top: 5px;
    text-align: center
}

.announcements .swiper-pagination .swiper-pagination-bullet {
    background-color: #555;
    margin: 0 4px;
    opacity: 1;
    transition: .3s
}

.announcements .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #80cb3c
}

.about {
    background: url("../img/about/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 30px 0 60px 0;
    position: relative
}

.about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .92);
    z-index: 9
}

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

.about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, .08);
    margin-bottom: 20px
}

.about .about-col .img {
    position: relative
}

.about .about-col .img img {
    border-radius: 4px 4px 0 0
}

.about .about-col .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    position: absolute;
    background-color: #4e7f22;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.about .about-col i {
    font-size: 28px;
    line-height: 0;
    color: #fff;
    transition: .3s
}

.about .about-col:hover .icon {
    background-color: #fff
}

.about .about-col:hover i {
    color: #4e7f22
}

.about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0
}

.about .about-col h2 a {
    color: #000
}

.about .about-col h2 a:hover {
    color: #4e7f22
}

.about .about-col p {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px
}

.about .read-more {
    font-size: 11px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    text-align: right;
    padding: 1px 35px 15px 0px;
    color: #4e7f22
}

.about .read-more:hover {
    color: #80cb3c
}

.about .read-more::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    line-height: 1;
    top: 4px;
    font-size: 11px;
    right: 0;
    font-weight: 700;
    padding: 0px 20px 15px 0px
}

.activity {
    padding: 30px 0 60px 0
}

.activity .card {
    border: 0;
    padding: 160px 20px 20px 20px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.activity .card:hover .card-body {
    background: #4e7f22
}

.activity .card:hover .read-more a {
    color: #fff
}

.activity .card:hover .card-title {
    color: #fff
}

.activity .card:hover .card-title a {
    color: #fff
}

.activity .card:hover .card-text {
    color: #fff
}

.activity .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, .8);
    padding: 15px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .2);
    transition: .3s;
    transition: ease-in-out .4s;
    border-radius: 5px
}

.activity .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px
}

.activity .card-title a {
    color: #473d3a
}

.activity .card-text {
    color: #4b4949
}

.activity .read-more a {
    color: #656262;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: .4s
}

.activity .read-more a:hover {
    text-decoration: underline
}

.events {
    background: url("../img/activities/activity-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 30px 0 60px 0;
    position: relative
}

.events::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .93);
    z-index: 9
}

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

.events .see-more-link {
    padding: 0px 0px 20px 10px;
    text-align: right
}

.events .see-more-link a {
    text-decoration: none;
    color: #4e7f22;
    padding: 3px 10px
}

.events .see-more-link a:hover {
    color: #80cb3c;
    border-style: solid;
    border-radius: 5px
}

.events .card-shadow {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.events .card-shadow::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%)
}

.events .card-box {
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.events .card-box .img {
    transition: .8s all ease-in-out
}

.events .card-box .card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.events .card-box .card-overlay .card-header {
    padding: 20px;
    bottom: 0px;
    color: #fff;
    position: absolute;
    z-index: 2
}

.events .card-box .card-overlay .card-header .title {
    line-height: .8
}

.events .card-box .card-overlay .card-header .title a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem
}

.events .card-box .card-overlay .card-header .title a:hover {
    color: #80cb3c
}

.events .card-box .card-overlay .card-header .card-date a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem
}

.events .card-box .card-overlay .card-header .card-date a:hover {
    color: #80cb3c
}

.events .card-box .card-overlay .card-header .card-see-more {
    padding-top: 10px
}

.events .card-box .card-overlay .card-header .card-see-more .see-more {
    font-size: .7rem;
    letter-spacing: .03em;
    text-decoration: none;
    padding: 3px 10px;
    color: #fff;
    border-color: #fff;
    border-style: solid;
    border-radius: 7px
}

.events .card-box .card-overlay .card-header .card-see-more .see-more:hover {
    background-color: #80cb3c;
    border-style: none
}

.events .card-box:hover .img {
    transform: scale(1.2)
}

.events .carousel-pagination {
    margin-top: 5px;
    text-align: center
}

.events .carousel-pagination .swiper-pagination-bullet {
    background-color: #555;
    margin: 0 4px;
    opacity: 1;
    transition: .3s
}

.events .carousel-pagination .swiper-pagination-bullet-active {
    background-color: #80cb3c
}

.contact {
    padding: 30px 0 60px 0
}

.contact .info {
    border-top: 3px solid #4e7f22;
    border-bottom: 3px solid #4e7f22;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .12)
}

.contact .info i {
    font-size: 20px;
    color: #4e7f22;
    float: left;
    width: 44px;
    height: 44px;
    background: #eff5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all .3s ease-in-out
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #222
}

.contact .info a {
    color: #2b2b2b
}

.contact .info a:hover {
    color: #4e7f22
}

.contact .info .social-links {
    padding-left: 60px
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s;
    margin-right: 10px
}

.contact .info .social-links a:hover {
    background: #4e7f22;
    color: #fff
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #4e7f22;
    color: #fff
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #4e7f22;
    border-bottom: 3px solid #4e7f22;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .12)
}

.contact .php-email-form .form-group {
    padding-bottom: 8px
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #4e7f22
}

.contact .php-email-form input {
    height: 44px
}

.contact .php-email-form textarea {
    padding: 10px 12px
}

.contact .php-email-form button[type=submit] {
    background: #4e7f22;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: .4s;
    border-radius: 4px
}

.contact .php-email-form button[type=submit]:hover {
    background: #80cb3c
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.breadcrumbs {
    padding: 15px 0;
    background: #fbfbfb;
    min-height: 40px
}

@media(max-width: 992px) {
    .breadcrumbs {
        margin-top: 20px
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px
}

.breadcrumbs ol li+li {
    padding-left: 10px
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/"
}

@media(max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important
    }

    .breadcrumbs ol {
        display: block
    }

    .breadcrumbs ol li {
        display: inline-block
    }
}

#footer {
    background: #090909;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 10px 0
}

#footer img {
    max-height: 50px
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 10px 0
}

#footer .social-links {
    margin: 0 0 10px 0
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #4e7f22;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: .3s
}

#footer .social-links a:hover {
    background: #80cb3c;
    color: #fff;
    text-decoration: none
}

#footer .copyright {
    margin: 0 0 5px 0;
    text-align: left;
    border-top-style: solid;
    border-top-color: #22370f;
    padding-top: 10px
}

#about-us-intro {
    padding: 40px 0 30px 0
}

#about-us-intro .row h3 {
    font-weight: 600;
    font-size: 26px
}

#about-us-intro .row p {
    text-align: justify
}

#about-us-intro .row img {
    padding-top: 40px
}

#about-us-motivation {
    padding: 30px 0 30px 0
}

#about-us-motivation .row h3 {
    font-weight: 600;
    font-size: 26px
}

#about-us-motivation .row p {
    text-align: justify
}

#about-us-perspective {
    padding: 30px 0 30px 0
}

#about-us-perspective .row h3 {
    font-weight: 600;
    font-size: 26px
}

#about-us-perspective .row p {
    text-align: justify
}

#about-us-perspective .row ul {
    list-style: none;
    padding: 0
}

#about-us-perspective .row ul li {
    padding-bottom: 10px;
    text-align: justify
}

#documents {
    background-color: #eff5f5;
    height: 70vh;
    padding: 60px 0 60px 0
}

#documents .raports-title,
#documents .statuts-title {
    text-align: center;
    padding-bottom: 10px
}

#documents .raports-title h3,
#documents .statuts-title h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative
}

#documents .raports-title h3::before,
#documents .statuts-title h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px)
}

#documents .raports-title h3::after,
#documents .statuts-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #4e7f22;
    bottom: 0;
    left: calc(50% - 20px)
}

#documents .raports-title p,
#documents .statuts-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191
}

#documents i {
    padding-right: 10px
}

#documents a {
    font-size: larger;
    color: #222;
    padding: 5px 10px
}

#documents a:hover {
    color: #4e7f22;
    border: solid;
    border-radius: 5px
}

#documents .activite-raport {
    padding-bottom: 10px
}

#documents .comptes-raport {
    padding-bottom: 30px
}

#documents .statuts {
    padding-bottom: 40px
}

@media(max-width: 991px) {
    .statuts-title {
        padding-top: 60px
    }
}

#registration {
    background-color: #eff5f5;
    padding: 40px 0 60px 0
}

#registration .registration-title {
    text-align: center;
    padding-bottom: 10px
}

#registration .registration-title h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative
}

#registration .registration-title h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px)
}

#registration .registration-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #4e7f22;
    bottom: 0;
    left: calc(50% - 20px)
}

#registration .registration-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191
}

#registration .registration-intro {
    text-align: justify
}

#registration .registration-intro p {
    color: #222
}

.event-details {
    padding: 40px 0 60px 0;
    background-color: #eff5f5
}

.event-details .event-description h2 {
    text-align: center;
    font-style: italic
}

.event-details .event-description p {
    font-style: italic;
    text-align: justify;
    text-indent: 50px
}

.event-details .event-description ul {
    padding-left: 20px
}

.event-details .gallery-item {
    margin-bottom: 30px
}

.event-details .gallery-wrap {
    transition: .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(36, 50, 93, .6)
}

.event-details .gallery-wrap::before {
    content: "";
    background: rgba(36, 50, 93, .6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out .3s;
    z-index: 2;
    opacity: 0
}

.event-details .gallery-wrap .gallery-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.event-details .gallery-wrap .gallery-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all .5s ease 0s;
    z-index: 9994
}

.event-details .gallery-wrap .gallery-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all .5s ease 0s;
    z-index: 9994
}

.event-details .gallery-wrap .gallery-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600
}

.event-details .gallery-wrap .gallery-links {
    text-align: center;
    z-index: 4
}

.event-details .gallery-wrap .gallery-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: .3s
}

.event-details .gallery-wrap .gallery-links a:hover {
    color: #25a4ff
}

.event-details .gallery-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1
}

.event-details .gallery-wrap:hover .gallery-info {
    opacity: 1
}

.event-details .gallery-wrap:hover .gallery-info::before {
    top: 15px;
    left: 15px
}

.event-details .gallery-wrap:hover .gallery-info::after {
    bottom: 15px;
    right: 15px
}

#archive {
    padding: 40px 0 60px 0
}

#archive .filter-object {
    text-align: right;
    padding-top: 20px;
    padding-bottom: 10px
}

#archive .filter-object select {
    padding: 5px 50px;
    border-radius: 5px
}

#archive .archive-content .image-wrap {
    display: none;
    position: relative;
    height: 360px;
    overflow: hidden
}

#archive .archive-content .image-wrap.show {
    display: block
}

#archive .archive-content .image-wrap .event-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, .08);
    transition: .3s
}

#archive .archive-content .image-wrap .event-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, .16)
}

#archive .archive-content .image-wrap .event-wrap figure {
    background: #000;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0
}

#archive .archive-content .image-wrap .event-wrap figure:hover img {
    opacity: .4;
    transition: .3s
}

#archive .archive-content .image-wrap .event-info {
    background: #fff;
    text-align: center;
    padding: 12px 16px;
    height: 90px;
    border-radius: 0 0 3px 3px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

#archive .archive-content .image-wrap .event-info h4 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 4px;
    padding-bottom: 0;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis
}

#archive .archive-content .image-wrap .event-info h4 a {
    color: #333
}

#archive .archive-content .image-wrap .event-info h4 a:hover {
    color: #80cb3c
}

#archive .archive-content .image-wrap .event-info p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #b8b8b8;
    line-height: 1.2
}

.organization {
    padding: 40px 0 30px 0
}

.organization .accordion-button {
    font-weight: 600;
    font-size: 1.1rem
}

.organization .accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6
}

.organization .accordion-button:not(.collapsed) {
    background-color: #f0f4f8;
    color: #0d6efd
}

#donation .card img {
    max-width: 250px
}

#donation .card .bank-logo {
    width: 100%;
    height: 30px
}