* {
    margin: 0px;
    padding: 0px;
    font-family: Aleo;
    box-sizing: border-box;
}

body,
html {
    margin: 0px;
    padding: 0px;
    width: 100%;
    box-sizing: border-box;
}

p {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
}






/* ************ Notification ********************* */

/* ********************************** */
/* ********* Notification *********** */
/* ********************************** */


.alert-container {
    width: fit-content;
    height: fit-content;
    padding: 7px 15px;
    display: none;
    justify-content: start;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000000;
    background-color: rgba(197, 224, 233, 0.842);
    border: 1px solid #0070FF;
    border-radius: 10px;
}

.alert-container.success {
    color: green !important;
}

.alert-container.error {
    color: red !important;
}

.alert-container.warning {
    color: rgb(233, 213, 2) !important;
}

.alert-container img {
    width: 17px;
    color: white;
}

.alert-container .close img {
    margin-left: 10px;
    cursor: pointer;
}

.alert-container p {
    font-size: 1.2rem;
    font-family: roboto;
    transform: translateY(8px);
}



/* *********** ajax error ************* */
.error-msg {
    font-size: 1rem !important;
    font-family: arial;
    color: red;
    margin-top: 3px;
}



/* ******************************* */
/* *********** Home Page ********* */
/* ******************************* */



/* ************ Top Bar ******************* */

.top-bar {
    background: rgb(160, 110, 233);
    background: linear-gradient(90deg, rgba(160, 110, 233, 1) 0%, rgba(113, 34, 221, 1) 68%);
    height: fit-content;
    padding: 13px 0px;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    padding: 0px;
    height: fit-content;
}


.top-bar .container .title-box,
.email-box,
.phone-box {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0px;
    font-size: 1rem;
    color: #FFFFFF;
}


.top-bar .container .title-box {
    width: 53%;
}

.top-bar .container .title-box p {
    font-weight: 700;
    font-size: 1.1rem;
}

.top-bar .container .email-box {
    width: 27%;
    border-right: 3px solid #FFFFFF;
}

.top-bar .container .email-box p {
    font-size: 1rem;
}

.top-bar .container .phone-box {
    width: 20%;
    justify-content: end;
}

.top-bar .container .phone-box p {
    font-size: 1rem;
}




/* *************** Header ******************* */
header {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
}

header .logo {
    width: 112px;
    height: 92px;
    padding: 0px;
}

header .logo img {
    width: 100%;
    height: 100%;
}

header .manu {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header .manu div a {
    font-weight: 400;
    font-size: 22px;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
}

header .manu div a.active {
    font-size: 22px;
    font-weight: 900;
    color: #479A26;
}

header .manu div a:hover {
    font-size: 22px;
    color: #479A26;
}


header .manu div a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #479A26;
    border-radius: 20px;
    bottom: 0px;
    transition: all 0.4s ease;
}

header .manu div a:hover::before {
    width: 100%;
}





/* ************** Hero Section ************ */


.swiper {
    width: 100%;
    height: 117vh;
    z-index: 0 !important;
    overflow: hidden;
    position: relative;
}

/* Swiper slide */
.swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: fit-content;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 95px !important;
    color: white;
    text-align: center;
    position: relative;
    z-index: 0;
}

.swiper-slide p {
    font-size: 1.2rem;
}


.swiper-pagination {
    transform: translateY(-125px) !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    padding: 0px;
    border: 3px solid #FFFFFF;
    opacity: 0.6;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FFFFFF;
    border: none;
    opacity: 0.7;
}




/* ************* make a donation ***************** */


.make-donation {
    background-image: url('../icons/make-a-donation-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 210px;
    transform: translateY(-115px);
    color: white;
}

.make-donation p {
    font-size: 1.3rem;
}


.rate-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* Auto-responsive columns */
    gap: 10px;
    /* Gap between items */
}

.rate {
    border: 2px solid #FFFFFF;
    /* Border for better visibility */
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.rate:last-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.1;
    padding: 0px;
    font-weight: 500;
}

.rate:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.rate.active {
    background-color: #FFFFFF;
    color: #000000;
}

.submit-donation {
    display: flex;
}

.submit-donation .custom-rate-input {
    width: 100%;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 0px;
    font-size: 1.1rem;
    overflow: hidden;
    display: flex;
    justify-content: start;
}

.submit-donation .custom-rate-input .placeholder {
    padding: 10px 20px;
    font-size: 1.3rem;
    background-color: #FFFFFF;
    color: #000000;
    opacity: 1;
    font-weight: 600;
}

.submit-donation .custom-rate-input input::placeholder {
    background-color: transparent;
    border: 0px;
    color: #FFFFFF;
    width: 100%;
    padding: 10px;
}

.submit-donation .custom-rate-input input {
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    width: 100%;
    padding: 10px;
    outline: none;
}

.submit-donation .submit-donate-btn {
    padding: 10px;
    border: none;
}


/* ************* whate were doing ************ */


.whate-were-doing .img-box img {
    width: 100%;
}

.whate-were-doing .content-part {
    position: relative;
    overflow: hidden;
}

.whate-were-doing .content-part .bg-img {
    position: absolute;
    top: 0%;
    right: -20%;
}

.whate-were-doing .content-part .content {
    display: flex;
    flex-direction: column;
}

.whate-were-doing .content-part .content .icon {
    width: 42%;
}

.whate-were-doing .content-part .content h4 {
    color: #189F41;
}





/* *************** what were doing 2 ************* */




.what-were-doing-2 {
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
}

.what-were-doing-2 .headers-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.what-were-doing-2 .cards-container .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.what-were-doing-2 .cards-container .card p{
    font-size: 1.2rem;
}

.what-were-doing-2 .cards-container .card .icon {
    width: 40%;
}




/* ********* Commitment socaial welfare *********** */




.tab-container .tabs {
    height: fit-content;
    background: #F9F6FD;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.tab-container .tab-btn {
    width: 100%;
    padding: 10px;
    background-color: #f4f4f4;
    cursor: pointer;
    color: #000000;
    height: 80px;
    border-radius: 12px;
    border: none;
    /* transition: all 0.3s ease; */
}

.tab-container .tab-btn .icon svg path {
    fill: #000000;
    /* transition: all 0.3s ease; */
}

.tab-container .tab-btn.active {
    background: linear-gradient(90deg, #A06EE9 0%, #7122DD 100%);
    color: #FFFFFF;
}

.tab-container .tab-btn.active .icon svg path {
    fill: #FFFFFF;
}

.tab-container .tab-btn .icon {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-container .tab-btn .btn-title {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}

.tab-container .tab-btn .btn-title h5,
p {
    padding: 0px;
    margin: 0px;
    line-height: 1.5;
}

.tab-container .tab-btn .btn-title p {
    font-size: 1rem;
    font-weight: 100;
}


.tab-content-wrapper .tab-content {
    background: #F9F6FD;
}

.tab-content-wrapper .tab-content .title {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-content-wrapper .tab-content .title img {
    width: 100%;
}

.tab-content-wrapper .tab-content h5 {
    color: #189F41;
}

.tab-content-wrapper .our-mission .part-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.tab-content-wrapper .our-mission .part-2 img {
    width: 100%;
}



/* **************  our mission improve *************** */


.our-mission-improve .our-mission-improve-1 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    width: 100%;
}

.our-mission-improve .our-mission-improve-1 .our-mission-improve-1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.our-mission-improve .our-mission-improve-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.our-mission-improve .our-mission-improve-2 .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}






/* ******************************************* */
/* ************** About Page ***************** */
/* ******************************************* */


.about-hero {
    width: 100%;
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}





/* ************** Our Organization ************* */

.our-organization {
    height: fit-content;
}

.our-organization .part-1 {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


.our-organization .part-1 .title {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-organization .part-1 .title img {
    width: 100%;
}

.our-organization .part-1 .title h5 {
    color: #189F41;
}

.our-organization .part-1 .list .list-item {
    display: flex;
    justify-content: start;
    align-items: center;
}


.our-organization .part-2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.our-organization .part-2 img {
    width: 100%;
}




/* ************* Our Mission **************** */




.about-our-mission {
    width: 100%;
    height: fit-content;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-our-mission .content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #FFFFFF;
    background: linear-gradient(90deg, #A06EE9 0%, #7122DD 100%);
    border-radius: 8px;
}





/* ************** commitment social welfare *************** */



.commitment-social-welfare {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: static;
}


.commitment-social-welfare .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.commitment-social-welfare .title h5 {
    color: #189F41;
}

.commitment-social-welfare .h1 {
    width: 75%;
}





/* ************** about our mission improve *************** */
.our-mission-improve .our-mission-improve-1 .our-mission-improve-1-content .para {
    width: 75%;
}







/* ***************************************** */
/* ************* Donate Page *************** */
/* ************************************************** */

/* .stripe-donation-form{

} */


.c-style .credit_number {
    position: relative;
}

.c-style .credit_number .images {
    height: 100%;
    width: fit-content;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 0px;
    right: 15px;
}

.c-style .credit_number input {
    font-size: 1rem;
}

.c-style .form-check-label {
    font-size: 1.4rem;
    font-weight: 400;
    color: #444444;
}

.c-style .input-group-text {
    color: #FFFFFF;
    background: #479A26;
    font-size: 1.3rem;
}

.c-style button {
    border: none;
}








/* *************** Footer *************** */




footer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
}

footer .signup-container {
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover;
    color: #FFFFFF;
    height: fit-content;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px !important;
    overflow: hidden !important;
    transform: translateY(-50%);
}

footer .signup-container .subscribe-now {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

footer .signup-container .subscribe-now input {
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 10px;
}

footer .signup-container .subscribe-now .c-btn-primary {
    position: relative;
    border-radius: 10px;
}

footer .signup-container .subscribe-now .c-btn-primary svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

footer .footer-content {
    transform: translateY(-15%);
}

footer .footer-content .logo-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

footer .footer-content .logo-content p {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 200;
}

footer .footer-content .useful_links .links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .footer-content .useful_links .links a {
    color: #FFFFFF;
    transition: all 0.3s all;
    font-size: 1.2rem;
    position: relative;
}

footer .footer-content .useful_links .links a:hover {
    color: #189F41;
    font-weight: 600;
}

footer .footer-content .useful_links .links a.active {
    color: #189F41;
    font-weight: 600;
}


footer .footer-content .useful_links .links a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #479A26;
    border-radius: 20px;
    bottom: 0px;
    transition: all 0.4s ease;
}

footer .footer-content .useful_links .links a:hover::before {
    width: 100%;
}




footer .footer-content .services {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

footer .footer-content .services p {
    font-size: 1.2rem;
}


footer .footer-content .our-gallery .gallery-row {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: start;
    gap: 15px;
}

footer .footer-content .our-gallery .gallery-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

footer .copyright p {
    color: #ffffffbe;
    border-top: 2px solid lightblue;
}