@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* --- VARIABLES --- */
:root {
    /* colors */
    --white-color: #FFF;
    --black-color: #000;
    --darkGray-color: #292929;
    --darkBlue-color: #121924;
    --lightGreen-color: #85C382;
    /* Border Radius */
    --border-radius-1: 15px;
    --border-radius-2: 30px;
    --border-rounded: 50%;
}

/* GENERAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--darkGray-color);
    font-size: 14px;
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: calc(1450px - 30px);
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    padding: 30px 0;
    color: var(--white-color);
    background-color: var(--lightGreen-color);
    border-radius: var(--border-radius-1);
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:hover {
    background-color: rgb(116, 170, 113);
}

/*
** Header
*/

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
.header-logo {
    width: 200px;
}
.navigation-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: var(--darkGray-color);
}
.nav-link:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--lightGreen-color);
    transition: 0.5s;
}
.nav-link.active:after,
.nav-link:hover:after {
    width: 100%;
}
.header-btn {
    padding: 15px 45px;
    font-size: 16px;
}
.lang-dropdown {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
}
.lang-menu {
    position: absolute;
    width: 100%;
    height: 0;
	min-height: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s;
    z-index: 50;
}
.lang-menu.active {
    min-height: 140px;
    opacity: 1;
}
.lang-menu a {
    width: 100%;
    text-align: center;
    color: var(--darkGray-color);
    font-size: 20px;
    padding: 10px 0;
    transition: 0.5s;
}
.lang-menu a:first-child{
    border-top-left-radius: var(--border-radius-1);
    border-top-right-radius: var(--border-radius-1);
}
.lang-menu a:last-child{
    border-bottom-left-radius: var(--border-radius-1);
    border-bottom-right-radius: var(--border-radius-1);
}
.lang-menu a:hover {
    background-color: var(--lightGreen-color);
    color: var(--white-color);
}
.chevron,
.become-chevron {
    width: 30px;
    transition: 0.5s;
}
.chevron.active,
.become-chevron.active {
    transform: rotate(180deg);
}
.header-actions {
    display: flex;
    align-items: center;
}

/*
** Hamburger menu
*/
.lines {
    position: relative;
    display: none;
    height: 100%;
    width: 35px;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    z-index: 50;
    transition: 0.5s;
}
.line {
    width: 100%;
    height: 2px;
    background-color: var(--darkGray-color);
    border-radius: var(--border-radius-2);
    transition: 0.5s;
}
.line:nth-child(1).active {
    transform: rotate(45deg) translate(6px, 8px);
}
.line:nth-child(2).active {
    transform: translateX(20px);
    opacity: 0;
}
.line:nth-child(3).active {
    transform: rotate(-45deg) translate(8px, -10px);
}
.sidebarMenu {
    position: fixed;
    right: 0;
    height: 100%;
    width: 450px;
    background: #fff;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
    padding: 10px;
    z-index: 2;
    transform: translate(100%,0);
    transition: all .3s cubic-bezier(.29,.39,.68,.53);
    -webkit-transition: all .3s cubic-bezier(.29,.39,.68,.53);
    overflow: hidden;
}
.menuOpen .sidebarMenu {
  transform: translate(0,0);
  transition: all .3s cubic-bezier(.29,.39,.68,.53);
  -webkit-transition: all .3s cubic-bezier(.29,.39,.68,.53);
}
body.menuOpen {
    overflow: hidden;
}
.menu-content {
    position: relative;
    color: var(--darkGray-color);
    z-index: 100;
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu-title h3 {
    text-transform: uppercase;
    font-size: 24px;
    border-bottom: 1px solid var(--lightGreen-color);
    padding-bottom: 15px;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
}
.ham-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--darkGray-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--lightGreen-color);
}
.menu_overlay {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.2);
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.menuOpen .menu_overlay {
      display: block;
}

/*
** Banner
*/

.banner {
    width: 100%;
}
.banner .container {
    padding-top: 50px;
    display: flex;
    align-items: end;
    gap: 40px;
}
.banner-content {
    width: 60%;
    position: relative;
}
.tree-bg {
    position: absolute;
    top: -50px;
    width: 100%;
    height: 750px;
    z-index: -1;
}
.banner-content h1 {
    font-size: 58px;
    margin-bottom: 30px;
}
.banner-content p {
    font-size: 20px;
    margin-bottom: 70px;
}
.banner-numbers {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 50px;
}
.number span {
    display: block;
    font-size: 96px;
}
.number p {
    padding: 0;
    font-size: 16px;
}
.banner-btn-1 {
    width: 100%;
    font-weight: 100;
    background-color: var(--darkGray-color);
}
.banner-btn-1:hover {
    background-color: #000;
}
.banner-events {
    width: 40%;
}
.bannerSwiper {
    position: relative;
    width: 100%;
}
.bannerSwiper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--border-radius-2);
}
.event-text {
    width: 100%;
    position: absolute;
    display: flex;
    height: 130px;
    bottom: 0;
    color: var(--darkGray-color);
}
.event-data {
    min-width: 110px;
    background-color: var(--darkGray-color);
    border-bottom-left-radius: var(--border-radius-2);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
}
.event-detail-data {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.event-title {
    width: 100%;
    background-color: #f6f6f6;
    border-bottom-right-radius: var(--border-radius-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    padding: 0 15px;
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    top: 45%;
    width: 50px;
    height: 50px;
    background-color: rgba(133, 195, 130, 0.5);
    color: var(--white-color);
    border-radius: var(--border-rounded);
    transition: 0.5s;
}
.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background-color: rgba(133, 195, 130, 1);
}
.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after {
    font-size: 10px;
}
.banner-btn-2 {
    width: 100%;
    font-weight: 100;
    margin-top: 25px;
}

/*
** About section
*/
.about {
    width: 100%;
    padding: 100px 0;
}
.about .container {
    display: flex;
    gap: 40px;
}
.about-img {
    width: 60%;
    height: 700px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-2);
}
.about-content {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-content h3 {
    font-size: 36px;
}
.about-paragraphs p {
    font-size: 20px;
    padding-bottom: 15px;
}
.about-btn {
    font-weight: 300;
}

/* Member card */
.member-box {
    padding-bottom: 100px;
}
.member-box .container {
    display: flex;
}
.member-box-detail {
    position: relative;
    width: 57%;
    background-color: var(--lightGreen-color);
    border-top-left-radius: var(--border-radius-2);
    border-bottom-left-radius: var(--border-radius-2);
    padding: 30px 25px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.member-tree-bg {
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.member-box-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.member-box-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.member-box-title span {
    font-size: 24px;
    font-weight: 600;
}
.member-box-title p {
    font-size: 36px;
    font-weight: 600;
}
.member-box-title h3 {
    font-size: 48px;
}
.member-box-detail ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 15px;
    font-size: 20px;
}
.checkmark {
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-box-btn {
    position: relative;
    z-index: 10;
    background-color: var(--white-color);
    color: var(--lightGreen-color);
}
.member-box-btn:hover {
    color: var(--white-color);
    background-color: #d1cfcf;
}
.member-box-img {
    width: 43%;
    height: 700px;
}
.member-box-img img {
    width: 100%;
    height: 100%;
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
    object-fit: cover;
    object-position: center;
}

/*
** News
*/
.news {
    padding-bottom: 100px;
}
.news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.news-title h1 {
    font-size: 36px;
}
.news-title a {
    font-size: 20px;
    text-decoration: underline;
    color: var(--darkGray-color);
    transition: 0.5s;
}
.news-title a:hover {
    color: var(--lightGreen-color);
}
.article-img-box {
    position: relative;
    height: 400px;
}
.article-img-box::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(133, 195, 130, 0.6);
    border-radius: var(--border-radius-2);
    z-index: 5;
    opacity: 0;
    transition: 0.5s;
}
.article-img-box .article-img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-2);
    object-fit: cover;
}
.new-content h3 {
    margin-top: 25px;
    font-size: 20px;
    color: var(--darkGray-color);
    transition: 0.5s;
}
.newsSwiper .swiper-wrapper {
    margin-bottom: 40px;
}
.article-card:hover .article-img-box::after {
    opacity: 1;
}
.article-card:hover h3 {
    color: var(--lightGreen-color);
}
.swiper-scrollbar-drag {
    background-color: var(--lightGreen-color);
}

/*
** Partners
 */
.partners {
    padding-bottom: 100px;
}
.partners h1{
    font-size: 36px;
    padding-bottom: 50px;
}
.partner-box img {
    width: 220px;
}
.partnersSwiper .swiper-wrapper {
    margin-bottom: 40px;
    align-items: center;
}

/* Mail Box */

.mail-box {
    padding-bottom: 100px;
}
.mail-box-container {
    position: relative;
    background-color: var(--lightGreen-color);
    padding: 50px;
    border-radius: var(--border-radius-2);
    display: flex;
    gap: 50px;
}
.mail-tree {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    z-index: 1;
}
.mail-box-text {
    width: 50%;
}
.mail-box-text h1 {
    font-size: 36px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 50px;
}
.mail-box-text p {
    font-size: 24px;
    color: var(--white-color);
}
.mail-box form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 50;
}
.mail-box form input {
    padding: 25px 15px;
    border-radius: var(--border-radius-1);
    border: none;
    outline: none;
}
.mail-box form input::placeholder {
    color: var(--darkGray-color);
}
.mail-box-btn {
    background-color: var(--white-color);
    color: var(--lightGreen-color);
    margin-top: 20px;
}
.mail-box-btn:hover {
    color: var(--white-color);
    background-color: #d1cfcf;
}

/*
** Footer
*/
.footer-info {
    background-color: var(--darkGray-color);
    color: var(--white-color);
}
.footer-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--white-color);
}
.footer-socials,
.socials {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    padding-bottom: 70px;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-contact:nth-child(2) {
    align-items: start;
}
.footer-contact a,
.footer-contact p {
    font-size: 20px;
    font-weight: 300;
    color: var(--white-color);
    transition: 0.5s;
}
.footer-contact a:hover,
.footer-links ul li a:hover,
.footer-copyright .container a:hover {
    color: var(--lightGreen-color);
}
.footer-links ul li {
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 15px;
}
.footer-links ul li a {
    color: var(--white-color);
    transition: 0.5s
}
.footer-copyright {
    background-color: var(--black-color);
    padding: 25px 0;
}
.footer-copyright .container {
    display: flex;
    justify-content: space-between;
}
.footer-copyright .container p {
    color: var(--white-color);
    font-size: 20px;
}
.footer-copyright .container a {
    color: var(--white-color);
    transition: 0.5s;
    font-size: 20px;
}

/* Sparate Pages */

/* About Page */
.about-banner {
    padding: 20px 0 100px;
}
.about-banner .container h1 {
    font-size: 36px;
    margin-bottom: 50px;
}
.about-banner-container {
    width: 100%;
    display: flex;
    gap: 50px;
}
.about-banner-img {
    width: 100%;
}
.about-banner-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--border-radius-2);
}
.about-banner-img .banner-numbers {
    margin-bottom: 0;
}
.about-banner-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-banner-text p {
    font-size: 20px;
}


.about-cards {
    padding-bottom: 100px;
}
.about-cards .container {
    display: flex;
    gap: 50px;
}
.about-card-1 {
    background: linear-gradient(rgba(133, 195, 130, 0.6), rgba(133, 195, 130, 0.6)), url('/assets/images/general/about-us-page.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 700px;
    padding: 30px 25px;
    border-radius: var(--border-radius-2);
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.about-card-1 h3 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.card-1-btn {
    background-color: var(--white-color);
    color: var(--lightGreen-color);
}
.card-1-btn:hover {
    color: var(--white-color);
    background-color: #d1cfcf;
}
.about-cards .member-box-detail {
    width: 100%;
    border-radius: var(--border-radius-2);
}

/* Blog */
.blog {
    padding: 20px 0 100px;
}
.blog .container h1 {
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 50px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 40px;
}
.blog-grid .article-img-box {
    height: 300px;
}
.pagination {
    padding-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-number {
    height: 65px;
    min-width: 65px;
    width: 65px;
    background-color: rgba(133, 195, 130, 0.5);
    color: var(--darkGray-color);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
}
.page-number.active,
.page-number:hover {
    background-color: var(--lightGreen-color);
    color: var(--white-color);
}
.blog-detail h1 {
    text-transform: capitalize !important;
}
.blog-detail img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--border-radius-2);
    margin-bottom: 25px;
}
.blog-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.blog-paragraphs p {
    font-size: 20px;
}

/* Events */
.events {
    padding: 20px 0 100px;
}
.events .container h1 {
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 50px;
}
.events-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 30px;
}
.events-grid .event-box {
    position: relative;
    height: 520px;
    color: var(--darkGray-color);
}
.events-grid .event-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-2);
}
.event-box .event-text {
    bottom: -2px;
}
.event-box .event-text span,
.event-box .event-text p {
    font-size: 20px;
}
.event-box .event-text p {
    padding: 0 10px;
}

/* Event detail */
.events-detail {
    padding: 20px 0 100px;
}
.events-detail h1 {
    font-size: 36px;
    margin-bottom: 50px;
}
.event-detail-container {
    display: flex;
    gap: 25px;
}
.event-detail-text {
    width: 60%;
}
.event-detail-text img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--border-radius-2);
    margin-bottom: 50px;
}
.event-detail-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.event-detail-paragraphs p {
    font-size: 20px;
}
.event-detail-card {
    width: 40%;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}
.event-card {
    background-color: rgba(196, 196, 196, 0.17);
    border-radius: var(--border-radius-2);
    padding: 25px 25px 100px;
    height: 100%;
}
.event-card h3 {
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 45px;
    border-bottom: 1px solid var(--black-color);
}
.event-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.event-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.event-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-icon-box p,
.event-icon-box h4 {
    font-size: 16px;
    font-weight: 400;
    align-self: end;
}
.event-icon-box h4 span{
    font-size: 36px;
    font-weight: 600;
}
.event-icon span {
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightGreen-color);
    border-radius: 5px;
}

/* Pop up */
.custom-model-main {
    text-align: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    opacity: 0;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .model-open {
    z-index: 9999;
    opacity: 1;
  }
  .custom-model-inner {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
    display: inline-block;
    vertical-align: middle;
    width: 950px;
    padding: 0 10px;
    margin: 15px auto;
    max-width: 97%;
  }
  .custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-2);
    outline: 0;
    padding: 20px;
    overflow-y: auto;
  }
  .model-open .custom-model-inner {
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
  }
.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
  }
.bg-overlay {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: background 0.15s linear;
}
.close-btn {
    min-width: 45px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 30px;
    color: var(--darkGray-color);
}
.custom-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--darkGray-color);
}
.custom-title h3 {
    font-size: 24px;
}
.order-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--darkGray-color);
    gap: 15px;
}
.order-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-price-num {
    display: flex;
    align-items: center;
    gap: 5px;
}
.order-text {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.order-text h6,
.order-price-num span {
    font-size: 16px;
}
.order-text p {
    font-size: 16px;
    text-align: left;
}
.order-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background-color: var(--lightGreen-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popBtn {
    padding: 20px 0;
}
.order-icon img {
    width: 50px;
}
.order-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.order-price p {
    font-size: 24px;
    font-weight: 600;
}
.order-title {
    text-align: left;
}
.popBtn,
.order-form {
    width: 100%;
}
.order-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}
.user-inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--darkGray-color);
}
.user-inputs input{
    padding: 25px;
    width: 100%;
    border-radius: var(--border-radius-1);
    border: none;
    outline: none;
    background-color: rgba(133, 195, 130, 0.07);
}
.user-inputs input::placeholder {
    color: var(--darkGray-color);
}
.checkbox {
    display: flex;
}
.control {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
  }
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--black-color);
  }
.control_indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 9px;
    top: 5px;
    width: 3px;
    height: 8px;
    border: solid var(--lightGreen-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox a {
    color: var(--lightGreen-color);
}
body.popupOpen {
    overflow: hidden;
}

/*
** Thanks
*/
.thanks {
    padding: 100px 0 200px;
}
.thanks .thanks-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.thanks img {
    position: absolute;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.thanks h1 {
    font-size: 48px;
    padding-bottom: 25px;
    color: var(--lightGreen-color);
    text-align: center;
}
.thanks-text h3 {
    font-size: 36px;
}
.thanks-text p {
    text-align: center;
}
.thanks-text p a {
    font-weight: 600;
    color: #EB001B;
}
.thanks-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    padding-bottom: 100px;
}
.bank-details,
.cont-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.bank-details h4 {
    font-size: 24px;
}
.cont-detail {
    display: flex;
    gap: 15px;
}
.cont-detail span {
    font-size: 20px;
    font-weight: 600;
}
.thanks-btn {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error h1,
.important {
    color: #EB001B;
}
.error-text a {
    color: var(--darkGray-color);
    transition: 0.5s;
}
.error-text a:hover {
    color: var(--lightGreen-color);
}

/*
** Members
*/
.members {
    padding: 50px 0 100px;
}
.members .container,
.members-intro {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.members-intro {
    gap: 25px;
}
.members-intro h1 {
    font-size: 36px;
}
.members-intro p {
    font-size: 20px;
}
.members-container {
    display: flex;
    gap: 25px;
}
.members-filters {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.members-dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.member-btn {
    text-transform: capitalize;
    background-color: rgba(133, 195, 130, 0.07);
    color: var(--darkGray-color);
    padding: 20px;
    font-size: 16px;
}
.member-btn.active {
    text-align: center;
    text-transform: uppercase;
}
.member-btn.active,
.member-btn:hover {
    background-color: var(--lightGreen-color);
    color: var(--white-color);
}
.chevron-white {
    display: none;
    transition: 0.5s;
}
.chevron-white.active {
    transform: rotate(180deg);
}
.members-cards {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.member-card {
    cursor: pointer;
    height: 100%;
}
.member-card .member-img {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-2);
    object-fit: cover;
}
.member-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}
.member-card h3 {
    font-size: 24px;
    font-weight: 400;
    transition: 0.5s;
}
.member-card:hover h3 {
    color: var(--lightGreen-color);
}
/* Members Pop up */
.custom-model-member {
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    opacity: 0;
    transition: opacity 0.15s linear, z-index 0.15;
    z-index: -1;
    overflow-x: hidden;
}
.infoOpen {
    z-index: 9999;
    opacity: 1;
}
.custom-model-member .custom-model-inner {
    width: 950px;
    height: 550px;
    margin: 70px auto;
}
.infoOpen .custom-model-inner {
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
}
.infoOpen .custom-model-wrap {
    padding: 0;
    height: 100%;
    overflow-y: hidden;
    display: flex;
}
.infoOpen .member-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}
.member-overlay {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: background 0.15s linear;
}
.custom-img{
    width: 50%;
}
.custom-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.member-detail {
    width: 50%;
    padding: 10px 25px 25px;
    display: flex;
    flex-direction: column;
}
.close-member {
    font-size: 24px;
    align-self: end;
}
.member-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.member-text h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}
.member-text h5 {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}
.member-text p {
    text-align: left;
    margin: 50px 0;
}
.member-text a {
    color: var(--darkGray-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    gap: 10px;
}
.member-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.member-email svg path {
    fill: var(--darkGray-color);
    transition: 0.5s;
}
.member-email:hover a,
.member-email:hover svg path {
    color: var(--lightGreen-color);
    fill: var(--lightGreen-color);
}

.members-filters-mobile {
    position: relative;
    display: none;
    width: 100%;
}
.members-filters-mobile .members-cards {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
}
.members-filters-mobile .member-btn {
    width: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.members-filters-mobile .chevron-white {
    display: block;
}
.members-dropdown-mobile  {
    position: absolute;
    width: 100%;
    height: 0;
    top: 70px;
    min-height: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    transition: all 0.5s;
    z-index: 50;
}
.members-dropdown-mobile.active {
    min-height: 600px;
    overflow-y: scroll;
    opacity: 1;
}

/*
** Become Member
*/
.become-member {
    padding: 50px 0 100px;
}
.become-member .members-intro {
    margin-bottom: 50px;
}
.become-member .members-intro h1 {
    text-transform: uppercase;
}
.become-member-form h1 {
    font-size: 36px;
    margin-bottom: 25px;
}
.become-title {
    width: 100%;
    font-size: 24px;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(133, 195, 130, 0.17);
    border-radius: var(--border-radius-1);
    margin-bottom: 25px;
}
.become-inputs  {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 25px;
}
.input-data {
    display: flex;
    gap: 25px;
}
.input-data input {
    width: 100%;
    padding: 25px 15px;
    border-radius: var(--border-radius-1);
    border: none;
    outline: none;
    background-color: rgba(196, 196, 196, 0.17);
    appearance: none;
    cursor: pointer;
}
.input-data input::placeholder {
    text-transform: uppercase;
    color: var(--darkGray-color);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.become-member-form .checkbox {
    margin-top: 25px;
    padding: 25px 0 25px;
    border-top: 1px solid var(--darkGray-color);
}
.become-member-form .checkbox label {
    padding-top: 5px;
}
.become-member-form .radiobox {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--darkGray-color);
}
.become-member-form .order-details-member {
    border: none;
    flex-direction: row;
}

/*
** Seniors
*/
.seniors {
    padding: 50px 0 100px;
}
.seniors .members-cards {
    width: 100%;
    margin-top: 50px;
}
.seniors .members-cards .member-img{
    height: 500px;
    object-position: top;
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.senior-card {
    flex-direction: column;
    cursor: default;
}
.senior-card .member-name{
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.senior-card:hover h3 {
    color: var(--darkGray-color);
}
.senior-card p {
    font-size: 16px;
}

/*
** Comision
 */
.comision h1 {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 36px;
}
.comision-box {
    margin-bottom: 50px;
}
.comision-btn {
    width: 100%;
}
.comision-box .become-title p {
    text-align: center;
    padding: 25px 15px;
}
.comision-box .member-card {
    cursor: default;
}
.comision-box .member-card:hover h3 {
    color: var(--darkGray-color);
}

 /*
** Statut
 */
.status {
    padding: 50px 0 100px;
}
.status h1 {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 36px;
}
.status p {
    margin-bottom: 20px;
    font-size: 20px;
}
.status h3 {
    font-size: 24px;
    margin-bottom: 25px;
}
.status ul {
    margin-bottom: 25px;
    padding-left: 35px;
}
.status ul li {
    list-style:lower-latin;
    font-size: 20px;
}

/*
** Contacts
*/
.contacts {
    padding: 50px 0 100px;
}
.contacts-container {
    margin-bottom: 50px;
    display: flex;
    gap: 25px;
}
.contacts-details {
    width: 50%;
}
.contacts-details h1 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.contacts-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contacts-box:nth-of-type(1) {
    margin-bottom: 50px;
}
.contacts-box h3 {
    font-size: 24px;
}
.contacts-box p {
    font-size: 20px;
}
.contact-detail {
    color: var(--darkGray-color);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    transition: 0.5s;
}
.contact-detail svg {
    width: 30px;
}
.contact-detail path {
    fill: var(--darkGray-color);
    transition: 0.5s;
}
.contacts-box a:hover path,
.contacts-box a:hover {
    color: var(--lightGreen-color);
    fill: var(--lightGreen-color);
}
.contacts-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(133, 195, 130, 0.25);
    border-radius: var(--border-radius-2);
    padding: 25px;
}
.contacts-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.contacts-form p {
    font-size: 20px;
    margin-bottom: 15px;
}
.contacts-form form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 15px;
}
.contacts-form form input,
.contacts-form form textarea {
    padding: 20px;
    border: none;
    outline: none;
    border-radius: var(--border-radius-1);
    font-family: "Open Sans", sans-serif;
    resize: none;

}
.contacts-form form input::placeholder,
.contacts-form form textarea::placeholder  {
    text-transform: uppercase;
    color: var(--darkGray-color);
}
#map {
    width: 100%;
    height: 50vh;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    color: var(--black-color);
}

.alert-danger {
    color: #EB001B;
}

/*
** Auth page
*/
.auth-page {
    padding-top: 200px;
    padding-bottom: 100px;
    width: 100%;
    min-height: 100vh;
}
.auth-page .row {
    display: flex;
    justify-content: center;
}
.auth-form {
    width: 450px;
    background-color: var(--white-color);
    padding: 30px 55px;
    border: 1px solid #ebebeb;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .375);
}
.auth-form .logo {
    margin-bottom: 25px;
}
.auth-form .logo img {
    width: 140px;
}
.auth-form h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #141414;
}
.auth-form .auth-field {
    width: 100%;
    position: relative;
    display: flex;
}
.auth-form .auth-field input {
    width: 100%;
    margin: 20px 0;
    height: 50px;
    border-radius: 35px;
    border: 1px solid #141414;
    padding-left: 65px;
}
.auth-form .auth-field span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}
.auth-form .auth-field span img {
    width: 25px;
}
.auth-form .auth-action button {
    width: 100%;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
    background-color: var(--lightGreen-color);
    border-color: var(--lightGreen-color);
    border: 1px solid var(--lightGreen-color);
    color: var(--white-color);
    transition: 0.5s;
}
.auth-form .auth-action button:hover {
    background-color: transparent;
    border: 1px solid var(--lightGreen-color);
    color: var(--lightGreen-color);
}
.auth-form .auth-forgot a {
    color: #141414;
    text-decoration: none;
    border-bottom: 1px solid #141414;
    font-weight: 500;
}
.auth-page ul li {
    text-align: left;
}
.register-field {
    margin-top: 15px;
    display: flex;
    justify-content: end;
}
.register-field h6 {
    text-align: center;
    font-weight: 100;
}
.register-field h6 a {
    color: #141414;
    font-weight: 700;
}
.auth-check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.auth-check-forgot .form-check {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.auth-field-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.auth-field-checkbox label {
    margin-top: 2px;
}
.auth-field-checkbox a {
    border-bottom: 1px solid #141414;
}
.auth-form .auth-field input[type="checkbox"] {
    margin: 0;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 1px solid #141414;
    padding-left: 0;
    margin-right: 10px;
}
.auth-form .auth-field input[type="checkbox"]:checked {
    background-color: var(--lightGreen-color) !important;
    border-color: var(--lightGreen-color) !important;
}
.auth-form .auth-field label {
    text-align: left;
    line-height: 1;
}
.swal2-actions button{
    box-shadow: 0 0 0 transparent!important;
}

/*
** Notification Pop Up
*/

.notification-bar {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX( -50%);
    max-width: 900px;
    z-index: 1000;
    display: none;
}
.notification-content {
    position: relative;
    width: 100%;
}
.notification-img img {
    width: 100%;
    height: 80vh;
    display: block;
    object-fit: cover;
    border-radius: var(--border-radius-1);
}
.close-button {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--lightGreen-color);
    width: 40px;
    height: 40px;
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.close-button svg {
    width: 25px;
}
.close-button svg path {
    fill: var(--white-color);
}
#notification_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

