.primary-content {
    font-size: 1.3rem;
    text-align: justify;
    /* color: #222222; */
}


.c-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    position: relative;
    background: linear-gradient(90deg, #7FD858 0%, #479A26 100%);
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.3rem;
    overflow: hidden;
    transition: all 0.6s ease !important;
    cursor: pointer;
}

.c-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #7FD858 0%, #479A26 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.c-btn-primary:hover::before {
    opacity: 1;
}

.c-btn-primary span {
    position: relative;
    z-index: 2;
}





.c-btn-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    position: relative;
    background: linear-gradient(90deg, #7FD858 0%, #479A26 100%);
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.5rem;
    overflow: hidden;
    transition: all 0.6s ease !important;
    cursor: pointer;
}

.c-btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #7FD858 0%, #479A26 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.c-btn-hero:hover::before {
    opacity: 1;
}

.c-btn-hero span {
    position: relative;
    z-index: 2;
}






.c-btn-more {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    position: relative;
    background: linear-gradient(90deg, #7FD858 0%, #479A26 100%);
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.5rem;
    overflow: hidden;
    transition: all 0.6s ease !important;
    cursor: pointer;
}

.c-btn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #7FD858 0%, #479A26 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.c-btn-more:hover::before {
    opacity: 1;
}

.c-btn-more span {
    position: relative;
    z-index: 2;
}








.submit-donate-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    position: relative;
    background: linear-gradient(90deg, #7FD858 0%, #479A26 100%);
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.5rem;
    overflow: hidden;
    transition: all 0.6s ease !important;
    cursor: pointer;
}

.submit-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #7FD858 0%, #479A26 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 6px;
}

.submit-donate-btn:hover::before {
    opacity: 1;
}

.submit-donate-btn span {
    position: relative;
    z-index: 2;
}





/* ************* Form Styling ************** */
.c-style label {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 700;
}
.c-style input{
    font-size: 1.1rem;
    color: #000000;
    padding: 12px;
    border-radius: 5px;
}
.c-style input::placeholder{
    color: #000000b0;
}

.c-style select{
    font-size: 1.1rem;
    color: #000000;
    padding: 12px;
    border-radius: 5px;
}




.c-l-w-70{
    width: 70% !important;
}