:root {
    --primary-color: #3BB273;
    --secondary-color: #FFD700;
    --body-color: #f6f6f6;
    --bg-color-2: #F5F8FE;
    --footer-bg-color: #070707;
    --text-color: #18181B;
    --text-color-2: #070707;
    --category-text-color: #919191;
    --white: #ffffff;
    --black: #010101;
    --sub-title-color: #EBF7F1;
    --menu-item-color: #EFEEEE;
    --gray: #52525B;
    --primary-hover-color: #2e8a59;
    --translucent-color: #EBF7F11A;


}

@font-face {
    font-family: 'Graphik-Regular';
    src: url('/assets/fonts/Graphik-Family/Graphik-Regular-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik-Bold';
    src: url('/assets/fonts/Graphik-Family/Graphik-Bold-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik-Medium';
    src: url('/assets/fonts/Graphik-Family/Graphik-Medium-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Custom highlight color when text is selected */
::selection {
    background-color: #13a758;
    color: #ffffff;
}

/* For Firefox-specific styling*/
::-moz-selection {
    background-color: #13a758;
    color: #ffffff;
}


body {
    background-color: var(--body-color);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;

}

body.loaded {
    visibility: visible;
    opacity: 1;
}

main {
    background-color: var(--body-color);
    padding: 1em 1em 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-family: 'Graphik-Bold', sans-serif;

}

.logo {
    width: 80px;
}

p,
li,
select,
input,
label {
    font-family: 'Graphik-Regular', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

p.info {
    color: var(--sub-title-color);
}

.sub {
    font-family: 'Graphik-Regular', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;

}

.title {
    font-family: 'Graphik-Bold', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
    margin-bottom: 0.5em;
    text-transform: uppercase;

}

section {
    margin: 1em auto;
    border-radius: 1.5em;
}

footer {
    margin: 0 1em 1em;
    border-radius: 0 0 1.5em 1.5em;

}

.spacer-1 {
    height: 5em;
}

.spacer-2 {
    height: 10em;
}

i.bullet {
    display: inline-block;
    background: var(--secondary-color);
    border: solid 2px;
    border-color: var(--primary-color);
    border-radius: 190px;
    padding: 10px;

}

a {
    text-decoration: none;
    color: inherit;
}

.btn,
button {
    border: none;
    border-radius: .5em;
    height: 3em;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    text-decoration: none;
}

.btn-primary,
button {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0px 16px 38.6px 0px #36A2691A;


}

.btn-primary:hover,
button:hover {
    background-color: var(--primary-hover-color);
    box-shadow: 0px 16px 38.6px 0px #36A2691A;
    transition: ease-out 300ms;
}

.btn:active,
button:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn:focus-visible {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--secondary-color);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    transition: ease-out 300ms;

}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transition: ease-out 300ms;
}


.right-arrow {
    font-size: 18px;
    margin: 0 10px;
}

.max-width {
    max-width: 1440px;
    margin: auto;
}

section .row {
    max-width: 1400px;
    margin: auto;
}

footer .container-fluid {
    max-width: 1400px;
    margin: auto;
}

/* normal nav-bar  */
.navbar-normal {
    margin: auto;
    padding: 10px 10px;
    border-radius: 15px;
    width: 95%;
    align-items: center;
    font-size: 16px;
    background-color: #0A1111;

    .navbar-brand img {
        height: 40px;
    }

}

.navbar-simple {
    backdrop-filter: blur(94px);
    background-color: #FFFFFF1A;
    padding: 10px 10px;
    border-radius: 15px;
    position: fixed;
    width: 95%;
    margin: auto;
    top: 2em;
    left: 0;
    right: 0;
    align-items: center;
    font-size: 16px;
    z-index: 20;

    .navbar-brand img {
        height: 40px;
    }
}

.navbar {
    transition: top 0.3s;
}

.hidden-navbar {
    top: -80px !important;

}

/* nav-bar  */
.navbar-custom {
    backdrop-filter: blur(94px);
    background-color: #FFFFFF1A;
    padding: 10px 10px;
    border-radius: 15px;
    position: fixed;
    width: 95%;
    margin: auto;
    top: 2em;
    left: 0;
    right: 0;
    align-items: center;
    font-size: 16px;
    z-index: 20;

    .nav-dark {
        color: black !important;
    }

    .nav-dark .nav-link {
        color: black;
    }


    .navbar-toggler-icon {
        color: var(--primary-color);
    }

    .navbar-toggler {
        padding: 0;
        border: none;
        box-shadow: none !important;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        background: none !important;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-nav {
        margin-left: auto;
    }

    .navbar-nav .nav-link {
        color: #EFEEEE;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

    .d-flex {
        gap: 15px;
    }

    .btn {
        width: 6em;

    }

}

/* .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
} */

/* .hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;


    .mycarousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .mycarousel-item {
        flex: 0 0 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #000;
        color: white;
    }

    .mycarousel-item.active {
        opacity: 1;
    }

    .mycarousel-indicators {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        z-index: 5;
    }

    .mycarousel-indicators button {
        background: none;
        border: none;
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        cursor: pointer;
        transition: color 0.3s ease;

        .dash {
            display: none;
        }
    }


    .mycarousel-indicators button.active {
        color: #3BB273;

        .dash {
            display: block !important;
            margin: 0 2px;
            height: 2px;
            background-color: white;
        }
    }

    flex {
        display: flex;
    }

    .controls {
        display: flex;
        gap: 2;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .mycarousel-control {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1000;
        padding: 10px 20px;
    }

    .mycarousel-control.prev {
        left: 20px;
    }

    .mycarousel-control.next {
        right: 20px;
    }
} */

/* hero section styling  */

.hero-section {
    background: url(/assets/images/homepage/hero-bg.webp) no-repeat;
    background-size: cover;
    margin: 0 !important;
    position: relative;

    .gradient {
        width: -webkit-fill-available;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        bottom: 0;

        img {
            border-bottom-left-radius: 10em;
            border-bottom-right-radius: 10em;
        }
    }

    h1,
    h2 {
        text-transform: uppercase;
    }

    h1 {
        font-size: 28px;
        text-transform: uppercase;
        color: var(--secondary-color);
        line-height: 26.07px;
        margin-bottom: 0;
    }

    h2 {
        font-size: 55px;
        color: var(--white);
        line-height: 50px;
        text-transform: uppercase;
    }

    p {
        color: var(--sub-title-color);
        font-weight: normal;
        max-width: 32em;
        margin: 1rem auto;

    }
    p.about{
        max-width: 4em;
    }

    .btn {
        width: 18em;
        font-size: 16px;
    }

    .cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}

.heroslide {
    .carousel-indicators [data-bs-target] {
        height: 0;

    }

    .carousel-indicators {
        position: absolute;
        top: 50%;
        z-index: 10;
    }

    .carousel-control-next,
    .carousel-control-prev {
        position: absolute;
        top: 50%;
        bottom: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 15%;
        padding: 0;
        color: #fff;
        text-align: center;
        background: 0 0;
        border: 0;
        opacity: .5;
        transition: opacity .15s ease;

    }



    .carousel-control-next {}

    .carousel-control-prev {}
}





/* about section styling  */
.about-section {
    background-color: #fff;
    padding: 4em 0;

    .row {
        gap: 2em;
    }

    .text-frame {
        background-color: var(--white);
        padding: 4em 1em;


        h3 {
            text-align: left;
            color: var(--primary-color);
            line-height: 50px;
            font-size: 20px;

        }

        h2 {
            line-height: 40px;
            color: var(--black);
            max-width: 11em;

        }

        p {
            color: var(--gray);
            font-weight: 400;
            line-height: 24px;
            text-align: left;
            min-width: 34em;

        }

        .btn {
            width: 10em;
        }
    }
}

/* founders-section  */
.founders-section {
    background: #F5F8FE;
    padding: 5em 0;

    .title {
        color: var(--text-color-2);
        font-weight: 700;
        text-align: left;

    }

    .line {
        display: block;
        margin-left: 5em;
        margin-bottom: 1em;
        width: 11em;
        border: 3px solid #FFD700
    }

    .details {
        margin-left: 5em;
        max-width: 38em;
    }

    .team {
        padding: 3em 0 0;
        row-gap: 15px;

        .frame {
            width: fit-content;
            position: relative;

            img {
                max-width: 250px;
                transition: transform 0.4s ease;
                position: relative;
                z-index: 1;
            }

            img:hover {
                transform: translateY(-55px);
                transition: transform 0.4s ease;
            }

            .bio {
                background: #fff;
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 0;
                width: 85%;
                text-align: center;
                padding: 16px 12px;
                margin: auto;
                border: 2px solid var(--icon-primary, #070707);
                border-radius: 0 0 8px 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;

                p {
                    margin-bottom: 0;
                    color: #000000;
                }

                .role {
                    font-weight: 700;
                    font-family: 'Graphik-Bold', sans-serif;

                }


            }
        }

    }
}

/* vision-mission */
.vm-2 {
    background: #fff !important;

    .text-frame {
        .title {
            color: var(--text-color-2);
        }
    }

    .sliding-frame {
        .no h1 {
            color: var(--primary-color);
        }

        .title {
            border-color: var(--text-color-2);

            h3 {
                color: var(--text-color-2);
            }
        }

        .info {
            p {
                color: var(--text-color-2);
            }

            .list img {
                filter: invert(1);

            }
        }

    }
}

.vison-mission {
    padding: 5em;
    background: url(/assets/images/homepage/hero-bg.webp) no-repeat;
    background-size: cover;
    color: var(--white);
    overflow: hidden;

    .row {
        gap: 5em;
    }

    /* Hide scrollbar for Chrome, Safari, and Opera */
    .sliding-frame::-webkit-scrollbar {
        display: none;
    }

    .sliding-frame {
        height: 34em;
        overflow: scroll;
        scrollbar-width: none;
        /* Hide scrollbar in Firefox */
        -ms-overflow-style: none;

        /* Hide scrollbar in IE and Edge */
        .row {
            margin-bottom: 2em;

            .col {
                position: relative;

                .no h1 {
                    font-size: 100px;
                    font-weight: 700;
                    line-height: 100px;
                    left: 0;
                }

                .body {
                    padding-left: 5em;

                }

                .title {
                    font-weight: 500;
                    font-size: 20px;
                    border-bottom-style: solid;
                    padding: 5px 0;
                    border-width: 1px;

                }

                .info {
                    padding: 10px 0;

                    .list {
                        display: flex;
                    }
                }
            }
        }

    }
}


/* CSS for achievements-section */
.achievements {
    background-color: var(--black);
    padding: 5em 0;
    color: var(--white);
    min-height: 60em;


    .features {
        margin: 2em 0;
        padding: 0;

        .box-container .box {
            cursor: pointer;
            /* Change cursor to pointer on hover */
            background: #EBF7F11A;
            padding: 1em;
            margin: 1em 0;
            border-radius: 8px;
            opacity: 0.5;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;

            .heading {
                margin-bottom: 0;
            }
        }

        .box-container .box-active {
            border-left: 7px solid var(--primary-color, #3BB273);
            box-shadow: 0px 25px 65px -12px #3BB2731A;
            opacity: 1;
            transform: translateY(-10px);
        }

        .details-box {
            display: none;
        }

        .box-active .details-box {
            display: block;
            padding-top: 10px;
            padding-bottom: 10px;
            margin-bottom: 0;
        }
    }

    .hero-images {
        position: relative;

        .hero-image {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .active-thumbnail {
            opacity: 1;
            transform: translateY(0);
        }
    }

    h2 {
        text-align: center;
    }
}




/* Join the movement section styling  */
.join-section {
    background-color: #fff;
    padding: 5em 0;

    .row {
        gap: 4em;
    }

    .text-frame {
        background-color: var(--white);
        padding: 4em 1em;

        h3 {
            text-align: left;
            color: var(--primary-color);
            line-height: 40px;
            font-size: 20px;
        }

        h2 {
            color: var(--black);
        }

        p {
            gap: 10px;
            display: flex;
            color: var(--gray);
            font-weight: 400;
            text-align: left;
        }

        .points {
            margin: 0;
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 5px;

            .info {
                display: flex;
                align-items: center;

            }

            img {
                width: 50px;
            }
        }

        a {
            margin-top: 0em;
        }
    }
}

/* success-stories */
.success-stories {
    background-color: #E9E9E9;
    padding: 5em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;

    .text-frame {
        p {
            max-width: 30em;
            margin: auto;
        }

    }

    .title {
        text-align: center;
        color: var(--text-color);

    }

    .box {
        margin-top: 3em;
        padding: 2em 1.5em;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0px 16px 38.6px 0px #36A2691A;



        .thumbnail {
            position: relative;

            img {
                width: -webkit-fill-available;
            }

            .carousel-buttons {
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 1rem;

                .carousel-button {
                    height: auto;
                    padding: 16px;
                }


                img {
                    width: 12px;
                }

                #prevBtn {
                    color: var(--primary-color);
                    background-color: #fff;
                    box-shadow: 0px 16px 38.6px 0px #36A2691A;
                    transition: transform 0.4s ease;

                }

                #prevBtn:hover,
                #nextBtn:hover {
                    transition: transform 0.4s ease;
                    transform: translateY(-5px);
                }

                #nextBtn {
                    background-color: var(--primary-color);
                    box-shadow: 0px 16px 38.6px 0px #36A2691A;
                    transition: transform 0.4s ease;

                }
            }

        }

        .name {
            font-size: 1.2em;

        }

        .role {
            color: #343434;
            font-weight: 400;
            font-family: "Graphik-Medium", sans-serif;
        }

        .story {
            color: #343434;
            height: 5em;
            font-size: 15px;
        }


        /* Indicators */
        .carousel-indicators {
            position: relative;
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin: 1.5em 0;
        }

        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-indicator.active {
            background-color: #28a745;
        }
    }
}



/* support-section  */
.support-section {
    background: url(/assets/images/homepage/donate-home-support.webp) no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding: 4em 2em;
    height: 35em;
    color: var(--white);

    .row {
        justify-content: center;
    }

    .title {
        text-align: center;
    }

    .text-frame {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* events-section */
.events-section {
    padding: 4em 0;
    background-color: var(--bg-color-2);
    font-family: inherit;

    .title {
        text-align: center;
    }

    p {
        max-width: 38em;
        margin: auto;
    }

    .row {
        gap: 2em 0;
        padding: 1em 7em;
    }

    .custom-search-bar {
        gap: 10px;
        position: relative;
        display: flex;

    }

    .custom-search-bar .form-control {
        border: none;
        border-radius: 12px;
        box-shadow: none;
        padding: 12px 24px;
        border: 1px solid var(--stroke-normal, #EFEEEE)
    }

    .custom-search-bar .search-icon {
        background: transparent;
        border: none;
        position: absolute;
        right: 14rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        color: #343434;
        box-shadow: none !important;

        svg {
            width: 24px;
        }
    }

    .custom-dropdown-toggle {
        border-radius: 12px;
        background: #C2E7D4;
        padding: 12px 24px 12px 24px;
        color: #000;
        gap: 1.2rem;
        border: none;
        height: auto;
        box-shadow: none !important;
        justify-content: space-between;
    }

    .custom-dropdown-toggle:focus {
        background: #C2E7D4 !important;
    }

    .custom-dropdown-toggle:focus {
        box-shadow: none;
    }

    .custom-dropdown-menu {
        width: 12.5rem;
        margin: 5px 0 0 0 !important;
        border-radius: 12px;
        padding: 0.5rem;
        border: none;
        box-shadow: 0px 4px 41.3px 0px #0000001A;

    }

    .custom-dropdown-menu .dropdown-item {
        border-radius: 5px;
        margin-bottom: 5px;
    }

    .custom-dropdown-menu .dropdown-item.active {
        background-color: #d4f5e5;
        color: #000;
    }

    .custom-dropdown-menu .dropdown-item:hover {
        background-color: #e9f7ef;
        color: #000;
    }

    .event-card {
        color: var(--text-color-2);
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.4s ease;
        position: relative;
        height: 100%;
        /* max-width: 320px; */

        .card-title {
            font-size: 18px;
        }

        .category {
            color: var(--category-text-color);
            font-weight: 700;
            font-family: inherit;
        }
    }

    .event-card:hover {
        transition: 0.4s ease;

    }

    .event-card img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 200px;
        object-fit: cover;
    }

    .event-date {
        font-family: inherit;
        box-shadow: 0px 16px 38.6px 0px #36A2691A;
        border: 1px solid #FFFFFF;
        text-align: center;
        color: var(--text-color-2) !important;
        background-color: #EBF7F1;
        width: 100px;
        border-radius: 12px;
        padding: 10px;
        font-weight: 700;
        position: absolute;
        right: 10px;
        top: -50px;

        .day {
            font-size: 16px;
            color: var(--text-color-2) !important;
        }

        .date {
            font-weight: 800;
            font-size: 20px;
        }

        .month {
            font-size: 16px;
            color: #343434 !important;
        }

    }

    .card-body {
        position: relative;
        background-color: #fff;
        transition: transform 0.4s ease;

        .category {
            text-transform: uppercase;
            font-size: 12px;
        }

        .link {
            display: none;
            transition: transform 0.8s ease;
            color: var(--success, #3BB273);
            font-weight: 500;
            width: fit-content;

        }

        .link:hover {
            color: var(--primary-hover-color);
            transition: transform 0.8s ease;

        }
        .card-ext{
            font-size: 14px;
        }

    }

    .card-body:hover {
        transform: translateY(-20px);
        /* position: absolute; */
        transition: transform 0.4s ease;

        .link {
            display: block;
            transition: transform 0.4s ease;
        }
    }

    .view-more-btn {
        display: flex;
        justify-content: center;

        .more {
            background-color: #00000000;
            color: var(--primary-color);
            border: 1px solid var(--success, #3BB273);
            box-shadow: none !important;
            padding: 8px 22px;
        }

        .more:hover {
            color: #fff !important;
            background-color: var(--primary-color);
        }
    }


}

/* engage-section */
.engage-section {
    padding: 5em 2em 4em;
    background-color: var(--white);

    .sub {
        color: var(--primary-color);
    }

    .title {
        text-align: center;
    }

    .features {
        margin-top: 2em;
        padding: 0;

        .vector {
            width: 3em;
        }

        .card {
            padding: 2em;
            border: none;
            background-color: var(--bg-color-2);
            transition: transform 0.4s ease;
            height: 100%;
            display: flex;
            justify-content: space-between;

            .title {
                font-size: 1em;
                text-align: left;
            }

            .info {
                color: #343434;
            }

            a {
                color: var(--primary-color);
                font-weight: 500;

            }

            .btn {
                background-color: #EBF7F1;

            }


        }

        .card:hover {
            transform: translateY(-5px);
            transition: transform 0.4s ease;

        }

    }
}

/* newsletter */
.newsletter {
    padding: 4em 2em;
    background-color: #E9E9E9;
    color: #343434;

    .text-frame {
        .title {
            color: var(--text-color-2);

        }

        .info {
            color: #343434;
        }

        label {
            display: none;
        }

        input {
            background: #FAFAFA;
            border: 1px solid #A1A1AA;
            border-radius: 50px;
            padding: 20px;
            height: 3.8em;
            width: 100%;
            color: #343434;
        }

        .btns {
            position: relative;
        }

        button {
            background-color: var(--text-color-2);
            color: var(--white);
            border-radius: 50px;
            width: 10em;
            height: 3em;
            border: none;
            position: absolute;
            top: 6px;
            right: 6px;
            transition: transform 0.4s ease;


        }

        button:hover {
            transform: scale(1.04);
            transition: transform 0.4s ease;
        }
    }

}


/* faq-section */
.faq {
    background-color: var(--white);
    padding: 5em 7em;

    .box {
        padding: 0 0 16px 0;
        border-bottom: 2px solid #000000
    }

    .title {
        color: var(--text-color-2);
    }

    .info {
        color: var(--text-color);
        width: 320px;
        margin-bottom: 0;
    }

    .accordion {
        .accordion-header button {
            height: auto;
            font-size: 16px;
            line-height: 24px;
            font-family: 'Graphik-Medium', sans-serif;
            color: var(--text-color-2);
            padding: 16px;
            background: var(--white);
            box-shadow: none !important;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button:focus-visible {
            background-color: var(--white) !important;
        }

        .accordion-button:active {
            background: var(--white) !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--white);
        }

        .accordion-item {
            margin-bottom: 10px;
            border-bottom: var(--bs-accordion-border-width) solid #000;
            border-width: 1px;
        }

        .accordion-item:last-child {
            border: 0;
        }

        .accordion-body {
            font-size: 16px;
        }
    }
}

.contact-section {
    padding: 4em 2em;
    background-color: #101010;
    color: var(--white);
    margin-bottom: 0;
    border-radius: 1.5em 1.5em 0 0;

    .box {
        background: #141414;
        padding: 2.5em;
        border-radius: 10px;
        justify-content: space-between;
        gap: 20px;

    }

    .info {
        opacity: 0.7;
        font-size: 16px;

        .link {
            display: flex;
            flex-direction: row;
            gap: 15px;
            align-items: stretch;
            margin: 20px 0;

            img {
                width: 40px;
            }

            p {
                margin: 0;
            }

            span {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
        }

    }

    .form {
        border: solid 1px #E7E7E74D;
        border-radius: 10px;
        background: #36A26908;
        color: var(--white);
        font-family: "Graphil-Regular", sans-serif;
        font-size: 16px;
        padding: 25px;
        font-weight: 400;

        label {
            display: block;
            opacity: 0.7;
        }

        input,
        textarea {
            display: block;
            background-color: inherit;
            border: solid 1px #E7E7E74D;
            width: -webkit-fill-available;
            opacity: 0.7;
            color: var(--white);
            padding: 15px;
            margin: 5px 0 20px;
            border-radius: 8px;
            overflow: hidden;
        }

        textarea {
            height: 4em;
            resize: none;
        }

        input.submit {
            box-shadow: 0px 16px 38.6px 0px #36A2691A;
            background: var(--primary-color);
            border: none;
            opacity: 1;
            width: 10em;
            height: 2.8em;
            padding: 0;
            font-size: 16px;
            font-weight: 500;
            font-family: "Graphik-normal", sans-serif;
            transition: transform 0.4s ease;

        }

        input.submit:hover {
            box-shadow: 0px 16px 38.6px 0px #36A2691A;
            background-color: var(--primary-hover-color);
            transition: transform 0.4s ease;



        }


    }
}

footer {
    background-color: var(--footer-bg-color);

    .footer {
        padding: 4em 5em;

        .row {
            justify-content: space-around;
        }

    }

    .menu {
        color: var(--white) !important;
        text-transform: capitalize;
        font-weight: 600;
        font-family: 'Graphik-Bold';

    }

    ul,
    ul.menu-items {
        font-weight: 500;
        font-size: 16px;
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0.7;

        a {
            color: var(--menu-item-color) !important;

        }

        a:hover {
            /* color: var(--primary-color); */
            text-decoration: underline;
        }
    }

    .footer-texts {
        margin: 2em 0 0;

        p {
            font-size: 14px !important;
        }
    }

    .copyright,
    .tagline,
    .links {
        text-align: center;
        font-size: 14px;
        color: #9CA3AF;

        ul.menu-items {
            font-weight: 500;
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 10px;

            /* opacity: 0.7; */
            a {
                color: #9CA3AF !important;
                font-size: 14px;
            }
        }

    }
}

/* donation-styling */
.container1 {
    display: flex;
}

.conatainer3 {
    margin-left: 150px;

}

.img3 {
    margin-right: 70px
}

.center1 {
    display: flex;
    margin-left: 0px;
}

/* support-cause  */
.support-cause {
    /* background to be replaced  */
    background: url(/assets/images/homepage/donate-home-support.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4em 2em 4em 5em;
    height: 25em;
    color: var(--white);

    .row {
        justify-content: space-between;
        height: -webkit-fill-available;
    }

    .text-frame {
        display: flex;
        flex-direction: column;

        .details {
            max-width: 28em;
        }
    }

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

}

/* blogs-page  */
.blog-hero {
    background: url(/assets/images/blog/blog-hero-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4em 2em 4em 5em;
    height: 40em;
    color: var(--white);
    margin-top: 0;

    .row {
        justify-content: space-between;
        height: -webkit-fill-available;
    }

    .text-frame {
        display: flex;
        flex-direction: column;

        h2.title {
            font-size: 50px;
            line-height: 1;
        }

        .details {
            max-width: 40em;
        }
    }

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

}

.blogs-section {
    padding: 4em 0;
    background-color: var(--bg-color-2);
    font-family: inherit;

    .title {
        text-align: center;
    }

    p {
        max-width: 38em;
        margin: auto;
    }

    .row,
    .search-bar {
        gap: 2em 0;
        padding: 1em 7em;

        form {
            display: flex;
            justify-content: center;
        }

        .custom-search-bar {
            gap: 20px;
            position: relative;
            display: flex;
            width: 97%;
        }

        .custom-search-bar .form-control {
            border: none;
            border-radius: 12px;
            box-shadow: none;
            padding: 12px 24px;
            border: 1px solid var(--stroke-normal, #EFEEEE)
        }

        .custom-search-bar .search-icon {
            background: transparent;
            border: none;
            position: absolute;
            right: 17rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: #343434;
            box-shadow: none !important;

            svg {
                width: 24px;
            }
        }

        .custom-dropdown-toggle {
            border-radius: 12px;
            background: #C2E7D4;
            padding: 12px 24px 12px 24px;
            color: #000;
            gap: 1.2rem;
            border: none;
            height: auto;
            width: 15em;
            box-shadow: none !important;
            justify-content: space-between;
        }

        .custom-dropdown-toggle:focus {
            background: #C2E7D4 !important;
        }

        .custom-dropdown-toggle:focus {
            box-shadow: none;
        }

        .custom-dropdown-menu {
            width: 12.5rem;
            margin: 5px 0 0 0 !important;
            border-radius: 12px;
            padding: 0.5rem;
            border: none;
            box-shadow: 0px 4px 41.3px 0px #0000001A;

        }

        .custom-dropdown-menu .dropdown-item {
            border-radius: 5px;
            margin-bottom: 5px;
        }

        .custom-dropdown-menu .dropdown-item.active {
            background-color: #d4f5e5;
            color: #000;
        }

        .custom-dropdown-menu .dropdown-item:hover {
            background-color: #e9f7ef;
            color: #000;
        }

    }

    .blog-card {
        color: var(--text-color-2);
        border: none;
        border-radius: 40px 40px 16px 16px;
        overflow: hidden;
        transition: transform 0.4s ease;
        position: relative;
        height: 100%;
        /* max-width: 320px; */

        img.thumbnail {
            border-radius: 40px;
        }

        .card-title {
            font-size: 18px;
        }

        .category {
            color: #919191;
            font-size: 14px;
            text-transform: uppercase;
        }

        .category:hover {
            color: var(--primary-hover-color);
            transition: transform 0.4s ease;
        }

        .blog-date {
            color: #919191;
            font-size: 14px;
        }

        .blog-date:hover {
            color: var(--primary-hover-color);
            transition: transform 0.4s ease;
        }

        .card-body {
            position: relative;
            background-color: #fff;
            transition: transform 0.4s ease;

            .excerpt {
                color: #343434;
            }

        }
    }

    .view-more-btn {
        display: flex;
        justify-content: center;

        .more {
            background-color: #00000000;
            color: var(--primary-color);
            border: 1px solid var(--success, #3BB273);
            box-shadow: none !important;
            padding: 8px 22px;
        }

        .more:hover {
            color: #fff !important;
            background-color: var(--primary-color);
        }
    }
}

.blog-title-page {
    background-color: #000000;
    height: 30em;
    display: flex;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding: 0 1em !important;
    position: relative;

    .row {
        justify-content: center;
        text-align: center;
        color: var(--white);
        position: relative;
        z-index: 2;
    }

    .title {
        font-family: 'Graphik-Regular', sans-serif;
        text-align: center;
        text-transform: uppercase;
        font-size: 40px !important;
        line-height: 50px;
        font-weight: 400 !important;
    }

    .date {
        color: #919191;
        font-size: 20px;
    }
}

.blog-details {
    padding: 2em 2em;
    background-color: var(--white);

    .entry {
        img {
            border-radius: 16px;
            margin: 1.7rem 0;
        }

        h2 {
            font-family: 'Graphik-medium', sans-serif;
            font-size: 25px;
            font-weight: 500;
            line-height: 1.2;
            margin: 10px 0 30px;

        }
    }

    .view-more-btn {
        display: flex;
        justify-content: center;

        .more {
            background-color: #00000000;
            color: var(--primary-color);
            border: 1px solid var(--success, #3BB273);
            box-shadow: none !important;
            padding: 8px 22px;
        }

        .more:hover {
            color: #fff !important;
            background-color: var(--primary-color);
        }
    }
}




.faq-hero {
    background: url(/assets/images/faq/faq-hero-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4em 2em 4em 5em;
    height: 45em;
    color: var(--white);
    margin-top: 0;

    .row {
        justify-content: space-between;
        height: -webkit-fill-available;
    }

    .text-frame {
        display: flex;
        flex-direction: column;

        h2.title {
            font-size: 50px;
            line-height: 1;
        }

        .details {
            max-width: 40em;
        }
    }

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

}

/* about page  */
.about {
    height: 60em;

}

.about-hero-image {
    padding: 0;
    width: 90%;
    max-width: 80em;
    position: absolute;
    top: 32em;
    margin: auto;
    left: 0;
    right: 0;


}


/* donations page  */
.donation {
    background: url(/assets/images/donate/hero-background.webp) no-repeat;
    background-size: cover;
    background-position: center;
    height: 60em;
    margin-top: 0;

    h1,
    h2 {
        text-transform: uppercase;
    }

    h1 {
        font-size: 28px;
        text-transform: uppercase;
        color: var(--secondary-color);
        line-height: 28px;
        margin-bottom: 0;
    }

    h2 {
        font-size: 50px;
        color: var(--white);
        line-height: 50px;
        text-transform: uppercase;
    }

    p {
        color: var(--sub-title-color);
        font-weight: normal;
        font-size: 16px;


    }

    .btn {
        width: 18em;
    }

    .cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

}

/* how section styling  */
.how-section {
    background-color: #fff;
    padding: 5em 2em;

    .row {
        /* gap: 5em; */
        justify-content: space-around;
    }


    .text-frame {
        background-color: var(--white);

        /* padding: 4em 1em; */
        h3 {
            text-align: left;
            color: var(--primary-color);
            line-height: 20px;
            font-size: 20px;
        }

        h2 {
            line-height: 45px;
            color: var(--black);
        }

        p {
            color: var(--gray);
            font-size: 16px;
            font-weight: 400;
            line-height: normal;
            text-align: left;
        }

        .btn {
            width: 10em;
        }
    }

    .features {
        margin-top: 2em;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2em;

        img {
            width: 48px;
        }

        .box {
            width: 280px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;

            .bold {
                color: var(--black);
                font-size: 20px;
                line-height: 30px;
                font-weight: 700 !important;
                margin-bottom: 0;
            }

            p {
                font-size: 16px;
                font-weight: 500;
                line-height: 19.2px;

            }
        }
    }
}

.support1 {
    /* background: #1B4638; */
    background: url(/assets/images/community/support-cause.webp) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    padding: 4em 2em;
    height: 25em;
    color: var(--white);

    .title {
        text-align: center;
    }

    .text-frame {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.news1 {
    padding: 8em 2em;
    background-color: #0F251F;
    color: #343434;

    .text-frame {
        .title {
            color: #FAFAFA;
            text-align: center;

        }

        .info {
            color: #FAFAFA;
            text-align: center;
        }

        label {
            display: none;
        }

        input {
            background: #FAFAFA;
            border: 1px solid #A1A1AA;
            border-radius: 50px;
            padding: 20px;
            height: 3.8em;
            width: 100%;
            color: #343434;
        }

        .btns {
            position: relative;
        }

        button {
            background-color: var(--text-color-2);
            color: var(--white);
            border-radius: 50px;
            width: 10em;
            height: 3em;
            border: none;
            position: absolute;
            top: 6px;
            right: 6px;

        }
    }

}

.p1 {
    font-size: 10px;
}

/* community page  */
.community {
    background: url(/assets/images/community/hero-community.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0;
    margin-top: 0;
    height: 60em;

    h1,
    h2 {
        text-transform: uppercase;
    }

    .h1 {
        font-size: 28px;
        text-transform: uppercase;
        color: var(--secondary-color);
        line-height: 1.2;
        margin-bottom: 0;
    }

    h2 {
        font-size: 55px;
        color: var(--white);
        line-height: 50px;
        text-transform: uppercase;
    }

    p {
        color: var(--sub-title-color);
        font-weight: normal;


    }

    .btn {
        width: 18em;

    }

    .cta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

}

/* community page  */
/* com-about section st  */
.com-about-section {
    background-color: #fff;
    padding: 4em 2em;

    .text-frame {
        background-color: var(--white);

        h3 {
            text-align: left;
            color: var(--primary-color);
            line-height: 40px;
            font-size: 20px;
        }

        h2 {
            line-height: 45px;
            color: var(--black);
        }

        p {
            color: var(--gray);
            font-weight: 400;
            line-height: 28px;
            text-align: left;
        }

    }
}

.ignite {
    padding: 4em 0;
    background: url(/assets/images/community/ignite.webp) no-repeat;
    background-size: cover;
    background-position: center;
    height: 50em;

    .text-frame {
        color: var(--white);
        text-align: center;

        h2 {
            text-align: center;
        }

        p {
            color: #FFFFFFCC;
        }

    }

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

}

/* events page  */
.events-hero {
    background: url(/assets/images/events/hero-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    height: 50em;
    margin-top: 0;

    .row {
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    h1,
    h2 {
        text-transform: uppercase;
    }



    h1 {
        font-size: 28px;
        text-transform: uppercase;
        color: var(--secondary-color);
        line-height: 28px;
        margin-bottom: 0;
    }

    h2 {
        max-width: 15em;
        margin: auto;
        font-size: 50px;
        color: var(--white);
        line-height: 50px;
        text-transform: uppercase;
    }

    p {
        color: var(--sub-title-color);
        font-weight: normal;
        font-size: 16px;
        /* max-width: 38em; */
        margin: auto;
    }


}

/* event-detail page  */
.title-page {
    display: flex;
    background: url(/assets/images/events/event-details/hero-image.webp) no-repeat;
    background-size: cover;
    background-position: center;
    height: 40em;
    margin-top: 0;
    padding: 0 1em !important;
    position: relative;

    .overlay {
        border-radius: 1.5em;
        background-color: #000000bd;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        z-index: 1;
        width: -webkit-fill-available;
        height: -webkit-fill-available;
    }

    .row {
        justify-content: center;
        text-align: center;
        color: var(--white);
        position: relative;
        z-index: 2;

        .title {
            text-align: center;
            text-transform: uppercase;
            font-size: 40px;
        }

        .date {
            color: var(--secondary-color);
            font-weight: 500;
        }


        .cta {
            margin-top: 1em;
            display: flex;
            justify-content: center;
            padding: 0;
        }

        .btn {
            width: 18em;
            box-shadow: 0px 16px 38.6px 0px #36A2691A;

        }
    }
}

.event-details {
    padding: 4em 0;
    background-color: var(--white);

    h2 {
        text-transform: uppercase;
        margin-bottom: .5em;
    }

    button {
        box-shadow: 0px 16px 38.6px 0px #36A2691A;
    }

    .subtitle {
        font-family: 'Graphik-Medium', sans-serif;
        font-size: 24px;
        text-transform: uppercase;
        line-height: 28px;
        font-weight: 500;
        font-size: 20px;
    }

    /* single-events-template */
    .events-info {
        display: flex;
        flex-direction: column;
        gap: .8rem;

        p {
            margin-bottom: 0;
        }

        i {
            font-size: 20px;
        }
    }

    .speakers {
        display: flex;
        /* gap: 2em; */
        justify-content: center;

        .speaker {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-items: center;
            gap: 3px;

            p {
                margin-bottom: 0;
            }

            .thumbnail {
                margin-bottom: 4px;
            }

            #name {
                font-weight: 500;
                font-family: 'Graphik-Medium', sans-serif;
                font-size: 24px;
                text-transform: uppercase;
                font-size: 18px;
                line-height: 20px;
            }

            #role {
                font-size: 15px;
            }
        }
    }


    .entry {
        width: 90%;

        a {
            text-decoration: underline;
            color: var(--primary-color);
        }

        a:hover {
            color: var(--primary-hover-color)
        }

        a:visited {
            color: #0A1111;
        }


    }

    button,
    .btn {
        width: 18em;
        margin: 1em 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-transform: uppercase;
    }

    b {
        text-transform: uppercase;
        font-weight: 500 !important;
        font-size: 18px !important;

    }

    ul,
    ol {
        margin-left: 2em;
    }

}



/* donate page  */
.donate-page {
    padding: 4em 2em;
    background: var(--white);


    .head {
        font-size: 24px;
        font-family: 'Graphik-Medium', sans-serif;
        font-weight: 700;

    }

    .form-container {

        h4 {
            font-size: 20px;
            font-family: 'Graphik-normal    ', sans-serif;
            font-weight: 600;
            margin: 3rem 0 1rem;
            text-transform: uppercase;

        }

        .btn-money {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;

            button {
                padding: 15px;
                color: black;
                border-radius: 12px;
                border: solid 1px #EFEEEE;
                box-shadow: none !important;
                font-weight: 500;
                line-height: 24px;
                font-family: 'Graphik-Medium', sans-serif;

            }

            button:hover {
                background-color: var(--primary-color);
                color: #ffffff;
            }
        }

        .myform {
            margin: 1rem 0;

            label {
                display: block !important;
                margin: 1rem 0;
            }

            .cardx {
                gap: 16px;

                .col {
                    padding: 0;
                }
            }

            .donation-total {
                padding: 16px;
                border-radius: 10px;
                background-color: #EFEEEE;
                border: 1px solid var(--stroke-normal, #EFEEEE);
                background: var(--color-green-green-50, #EBF7F1);
                border-radius: 12px;
                border: 1px 0px 0px 0px;
                opacity: 0px;
                width: fit-content;

            }

            .submit {
                width: 100%;
                padding: 16px;
            }
        }
    }



}


/* login page  */
.scaffold {
    background-color: #F6F6F6;

    .base {
        .left {
            background-color: #EBF7F1;

            img {
                width: -webkit-fill-available;
            }
        }

        .left {
            height: auto;
        }

        .right {
            border-radius: 1.5em;
            background-color: #ffffff;
            display: flex;

            .wrapper {
                width: 70%;
                margin: 10em auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                height: fit-content;

            }

            .event {
                width: 70%;
                margin: 3em auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                height: fit-content;
            }

            .navbar-brand img {
                height: 40px;
            }

            .navbar-brand img:focus {
                outline: none;
            }
        }
    }
}

.myform {
    width: -webkit-fill-available;

    .form-title {
        font-family: "Graphik-Medium";
        font-size: 18px;
    }

    label {
        display: none !important;
    }

    input,
    select {
        display: block;
        border: 1px solid #EFEEEE;
        background: #F6F6F6;
        color: var(--black);
        font-size: 16px;
        width: -webkit-fill-available;
        border-radius: 12px;
        padding: 12px;

    }

    input:focus,
    select:focus {
        border-color: #7CCBA1;
        outline: none;
    }

    input:-webkit-autofill {
        background-color: #7CCBA1 !important;
        border-color: #7CCBA1 !important;
    }

    input:-webkit-autofill:focus {
        background-color: #7CCBA1 !important;
        border-color: #7CCBA1 !important;
    }

    .submit {
        width: -webkit-fill-available;
        background-color: var(--primary-color);
        box-shadow: 0px 16px 38.6px 0px #36A2691A;
    }

    .submit:hover {
        background-color: var(--primary-hover-color);
    }

    .submit:focus {
        outline: var(--primary-color);
        background-color: var(--primary-hover-color);
    }



    .forgot {
        /* font-weight: 600; */
        font-family: "Graphik-Medium";
    }

    .forgot:hover,
    .forgot:focus {
        text-decoration: underline;
        outline: none;
    }

    .register,
    .login {
        color: var(--primary-color);
        font-family: "Graphik-Medium";
        outline: none;
    }

    .register:hover,
    .register:focus,
    .login:hover,
    .login:focus {
        color: var(--primary-hover-color);
        outline: none;
        border: var(--primary-hover-color);
        text-decoration: underline;
    }

    .styled-select {
        appearance: none;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"%3E%3Cpath d="M0 0l5 6 5-6z" fill="%23707070"%3E%3C/path%3E%3C/svg%3E');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
        cursor: pointer;
        font-weight: 400;
        font-family: 'Graphik-Regular', sans-serif;
    }

    .styled-select option {
        padding: 10px;
        color: #000;
    }

    .styled-select option:disabled {
        color: #aaa;
    }

    .styled-select option:hover {
        background-color: #f1f1f1;
    }


}