/* =========================================================
   OYDC ZAMBIA - DONATION PAGE
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: 'World Athletics';
    src: url('../Font/WorldAthletics.eot');
    src:
        local('World Athletics'),
        local('WorldAthletics'),
        url('../Font/WorldAthletics.eot?#iefix') format('embedded-opentype'),
        url('../Font/WorldAthletics.woff2') format('woff2'),
        url('../Font/WorldAthletics.woff') format('woff'),
        url('../Font/WorldAthletics.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'World Athletics Headline';
    src: url('../Font/WorldAthleticsHeadline.eot');
    src:
        local('World Athletics Headline'),
        local('WorldAthleticsHeadline'),
        url('../Font/WorldAthleticsHeadline.eot?#iefix') format('embedded-opentype'),
        url('../Font/WorldAthleticsHeadline.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --oydc-green: #00843d;
    --oydc-dark-green: #006b32;
    --oydc-light-green: #eaf6ef;
    --oydc-black: #111111;
    --oydc-dark: #181818;
    --oydc-white: #ffffff;
    --oydc-grey: #666666;
    --border-color: #e7e7e7;
    --section-bg: #f7f8f7;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'World Athletics', Arial, sans-serif;
    color: var(--oydc-black);
    background: var(--oydc-white);
    line-height: 1.6;
}


a {
    text-decoration: none;
}


.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.donate-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            rgba(43, 42, 42, 0.9),
            rgba(0, 132, 61, 0.78)
        ),
        url('../Images/OYDC-9.jpg');

    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            transparent
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 90%);
    margin: auto;

    color: var(--oydc-white);
}


.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;

    margin-bottom: 18px;

    color: #ffffff;
}


.hero-label i {
    color: #ffffff;
}


.hero-content h1 {
    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.98;

    max-width: 850px;

    margin-bottom: 28px;

    text-transform: uppercase;
}


.hero-content h1 span {
    color: #8ee2b1;
}


.hero-content p {
    max-width: 650px;

    font-size: 20px;
    line-height: 1.7;

    margin-bottom: 35px;

    color: rgba(255,255,255,0.92);
}


.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.hero-btn,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 26px;
    min-height: 52px;

    font-weight: bold;

    transition: all 0.3s ease;
}


.hero-btn {
    color: var(--oydc-white);
    background: var(--oydc-green);
}


.hero-btn:hover {
    background: var(--oydc-dark-green);
    transform: translateY(-2px);
}


.hero-btn-outline {
    color: var(--oydc-white);
    border: 1px solid rgba(255,255,255,0.75);
}


.hero-btn-outline:hover {
    background: var(--oydc-white);
    color: var(--oydc-black);
}


/* =========================================================
   INTRO
========================================================= */

.donate-intro {
    padding: 90px 0 70px;
    background: var(--oydc-white);
}


.section-heading {
    max-width: 850px;
    margin: auto;
    text-align: center;
}


.section-heading > span,
.section-title > span,
.section-label {
    display: block;

    color: var(--oydc-green);

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;

    margin-bottom: 12px;
}


.section-heading h2,
.section-title h2 {
    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.section-heading p,
.section-title p {
    color: var(--oydc-grey);

    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   DONATION TYPES
========================================================= */

.donation-types {
    padding: 90px 0;
    background: var(--section-bg);
}


.section-title {
    text-align: center;

    max-width: 800px;

    margin: 0 auto 55px;
}


.donation-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.donation-card {
    background: var(--oydc-white);

    padding: 35px 30px;

    border: 1px solid var(--border-color);

    position: relative;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.donation-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: var(--oydc-green);

    transition: height 0.3s ease;
}


.donation-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.08);
}


.donation-card:hover::before {
    height: 100%;
}


.donation-card.featured {
    background: var(--oydc-green);

    color: var(--oydc-white);

    border-color: var(--oydc-green);
}


.donation-card.featured::before {
    background: var(--oydc-black);
}


.donation-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--oydc-light-green);
    color: var(--oydc-green);

    font-size: 25px;

    margin-bottom: 24px;
}


.featured .donation-icon {
    background: rgba(255,255,255,0.15);
    color: var(--oydc-white);
}


.donation-card h3 {
    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: 25px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.donation-card p {
    color: var(--oydc-grey);

    margin-bottom: 20px;
}


.featured p {
    color: rgba(255,255,255,0.88);
}


.donation-card ul {
    list-style: none;

    margin-bottom: 25px;
}


.donation-card li {
    position: relative;

    padding-left: 22px;

    margin-bottom: 8px;

    color: #444;
}


.donation-card li::before {
    content: '\f00c';

    font-family: 'Font Awesome 6 Free';

    font-weight: 900;

    position: absolute;

    left: 0;

    color: var(--oydc-green);
}


.featured li {
    color: rgba(255,255,255,0.9);
}


.featured li::before {
    color: #ffffff;
}


/* =========================================================
   DONATION CARD BUTTON
========================================================= */

.donation-card-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;
    min-height: 48px;

    margin-top: auto;

    padding: 12px 20px;

    background: var(--oydc-green);
    color: var(--oydc-white);

    font-weight: bold;
    font-size: 14px;

    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.donation-card-btn:hover {
    background: var(--oydc-dark-green);

    color: var(--oydc-white);

    transform: translateY(-3px);
}


.donation-card.featured .donation-card-btn {
    background: var(--oydc-white);
    color: var(--oydc-green);
}


.donation-card.featured .donation-card-btn:hover {
    background: var(--oydc-black);
    color: var(--oydc-white);
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.impact-section {
    padding: 100px 0;

    background: var(--oydc-dark);

    color: var(--oydc-white);
}


.impact-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.impact-text h2 {
    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 25px;
}


.impact-text h2 strong {
    color: #70d99b;
}


.impact-text p {
    color: rgba(255,255,255,0.72);

    font-size: 17px;

    margin-bottom: 18px;

    max-width: 580px;
}


.impact-points {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


.impact-point {
    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 20px;

    align-items: start;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


.impact-number {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--oydc-green);

    font-size: 22px;
}


.impact-point h3 {
    font-size: 21px;

    margin-bottom: 5px;
}


.impact-point p {
    color: rgba(255,255,255,0.65);

    font-size: 15px;
}


/* =========================================================
   HOW TO DONATE / CONTACT FORM
========================================================= */

.how-to-donate {
    padding: 100px 0;

    background: var(--oydc-white);
}


.donation-form-wrapper {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 60px;

    padding: 55px;

    background: var(--section-bg);

    border: 1px solid var(--border-color);

    position: relative;
}


.donation-form-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background: var(--oydc-green);
}


.form-introduction {
    padding-right: 20px;
}


.form-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--oydc-green);

    color: var(--oydc-white);

    font-size: 26px;

    margin-bottom: 25px;
}


.form-introduction h3 {
    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: 30px;

    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 18px;
}


.form-introduction > p {
    color: var(--oydc-grey);

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 25px;
}


.form-contact-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 18px;

    background: var(--oydc-white);

    border-left: 3px solid var(--oydc-green);

    color: var(--oydc-grey);

    font-size: 14px;
}


.form-contact-note i {
    color: var(--oydc-green);

    margin-top: 4px;
}


/* =========================================================
   FORM
========================================================= */

.donation-form {
    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    font-weight: bold;

    font-size: 14px;

    margin-bottom: 8px;
}


.form-group label span {
    color: var(--oydc-green);
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dcdcdc;

    background: var(--oydc-white);

    color: var(--oydc-black);

    font-family: 'World Athletics', Arial, sans-serif;

    font-size: 15px;

    padding: 14px 16px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.form-group input,
.form-group select {
    min-height: 50px;
}


.form-group textarea {
    resize: vertical;

    min-height: 150px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--oydc-green);

    box-shadow:
        0 0 0 3px
        rgba(0,132,61,0.08);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}


.form-submit {
    margin-top: 5px;
}


.donation-submit-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 14px 28px;

    border: none;

    background: var(--oydc-green);

    color: var(--oydc-white);

    font-family: 'World Athletics', Arial, sans-serif;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}


.donation-submit-btn:hover {
    background: var(--oydc-dark-green);

    transform: translateY(-3px);
}


.donation-submit-btn:disabled {
    cursor: not-allowed;

    opacity: 0.7;

    transform: none;
}


/* =========================================================
   SUCCESS / ERROR POPUP
========================================================= */

.donation-popup {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.65);

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.donation-popup.show {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.donation-popup-box {
    width: 100%;

    max-width: 460px;

    padding: 40px 35px;

    background: var(--oydc-white);

    text-align: center;

    border-top: 5px solid var(--oydc-green);

    transform:
        translateY(25px)
        scale(0.95);

    transition:
        transform 0.3s ease;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.25);
}


.donation-popup.show .donation-popup-box {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   POPUP ICON
========================================================= */

.donation-popup-icon {
    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 30px;
}


.donation-popup-icon.success {
    background: var(--oydc-light-green);

    color: var(--oydc-green);
}


.donation-popup-icon.error {
    background: #fceaea;

    color: #c62828;
}


/* =========================================================
   POPUP HEADING
========================================================= */

.donation-popup-box h3 {
    margin: 0 0 12px;

    font-family:
        'World Athletics Headline',
        Arial,
        sans-serif;

    font-size: 26px;

    color: var(--oydc-black);
}


/* =========================================================
   POPUP TEXT
========================================================= */

.donation-popup-box p {
    margin: 0 auto 25px;

    max-width: 380px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--oydc-grey);
}


/* =========================================================
   POPUP BUTTON
========================================================= */

.donation-popup-box button {
    min-width: 120px;

    padding: 13px 25px;

    border: none;

    background: var(--oydc-green);

    color: var(--oydc-white);

    font-family:
        'World Athletics',
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.donation-popup-box button:hover {
    background: var(--oydc-dark-green);

    transform: translateY(-2px);
}


/* =========================================================
   CTA
========================================================= */

.donate-cta {
    padding: 75px 0;

    background: var(--oydc-green);

    color: var(--oydc-white);
}


.cta-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.cta-content > div:first-child {
    max-width: 720px;
}


.cta-content span {
    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;
}


.cta-content h2 {
    font-family:
        'World Athletics Headline',
        Arial,
        sans-serif;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.05;

    text-transform: uppercase;

    margin: 10px 0 15px;
}


.cta-content p {
    color: rgba(255,255,255,0.88);

    font-size: 16px;
}


.cta-buttons {
    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 210px;
}


.cta-btn,
.cta-btn-outline {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    font-weight: bold;

    transition: all 0.3s ease;
}


.cta-btn {
    background: var(--oydc-white);

    color: var(--oydc-green);
}


.cta-btn:hover {
    background: var(--oydc-black);

    color: var(--oydc-white);
}


.cta-btn-outline {
    color: var(--oydc-white);

    border: 1px solid rgba(255,255,255,0.7);
}


.cta-btn-outline:hover {
    background: var(--oydc-white);

    color: var(--oydc-green);
}


/* =========================================================
   DONATION INFORMATION
========================================================= */

.donation-information {
    padding: 45px 0;

    background: #f4f4f4;
}


.information-box {
    display: flex;

    gap: 20px;

    padding: 30px;

    background: var(--oydc-white);

    border-left: 5px solid var(--oydc-green);
}


.information-icon {
    font-size: 28px;

    color: var(--oydc-green);
}


.information-box h3 {
    font-family:
        'World Athletics Headline',
        Arial,
        sans-serif;

    text-transform: uppercase;

    margin-bottom: 8px;
}


.information-box p {
    color: var(--oydc-grey);
}


.placeholder-note {
    margin-top: 10px;

    font-size: 14px;
}


/* =========================================================
   PAGE LOAD ANIMATION
========================================================= */

body {
    animation:
        pageFadeIn
        0.9s
        ease-out
        both;
}


/* =========================================================
   HERO ANIMATION
========================================================= */

.donate-hero .hero-content {
    animation:
        donationHeroIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.15s
        both;
}


.donate-hero .hero-label {
    animation:
        donationLabelIn
        0.7s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.30s
        both;
}


.donate-hero h1 {
    animation:
        donationHeadingIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.35s
        both;
}


.donate-hero p {
    animation:
        donationTextIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.50s
        both;
}


.donate-hero .hero-buttons {
    animation:
        donationButtonsIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.65s
        both;
}


.donate-hero .hero-overlay {
    animation:
        heroOverlayIn
        1.1s
        ease-out
        both;
}


/* =========================================================
   INTRO ANIMATION
========================================================= */

.donate-intro {
    animation:
        donationIntroIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.35s
        both;
}


/* =========================================================
   SECTION TITLE ANIMATION
========================================================= */

.donation-types .section-title,
.how-to-donate .section-title {
    animation:
        sectionTitleIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.45s
        both;
}


/* =========================================================
   DONATION CARDS ANIMATION
========================================================= */

.donation-grid .donation-card {
    opacity: 0;

    animation:
        donationCardIn
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}


.donation-grid .donation-card:nth-child(1) {
    animation-delay: 0.55s;
}


.donation-grid .donation-card:nth-child(2) {
    animation-delay: 0.68s;
}


.donation-grid .donation-card:nth-child(3) {
    animation-delay: 0.81s;
}


.donation-grid .donation-card:nth-child(4) {
    animation-delay: 0.94s;
}


.donation-grid .donation-card:nth-child(5) {
    animation-delay: 1.07s;
}


.donation-grid .donation-card:nth-child(6) {
    animation-delay: 1.20s;
}


/* =========================================================
   IMPACT ANIMATION
========================================================= */

.impact-text {
    animation:
        impactTextIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.50s
        both;
}


.impact-points {
    animation:
        impactPointsIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.65s
        both;
}


.impact-point {
    opacity: 0;

    animation:
        impactPointIn
        0.75s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}


.impact-point:nth-child(1) {
    animation-delay: 0.75s;
}


.impact-point:nth-child(2) {
    animation-delay: 0.88s;
}


.impact-point:nth-child(3) {
    animation-delay: 1.01s;
}


/* =========================================================
   FORM ANIMATION
========================================================= */

.donation-form-wrapper {
    animation:
        donationFormIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.55s
        both;
}


/* =========================================================
   CTA ANIMATION
========================================================= */

.donate-cta .cta-content {
    animation:
        ctaIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.55s
        both;
}


/* =========================================================
   INFORMATION ANIMATION
========================================================= */

.information-box {
    animation:
        informationIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.45s
        both;
}


/* =========================================================
   TOP GREEN LOADING LINE
========================================================= */

body::before {
    content: "";

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background: var(--oydc-green);

    transform-origin: left;

    transform: scaleX(0);

    animation:
        pageLoadingLine
        1.1s
        cubic-bezier(0.65, 0, 0.35, 1)
        both;

    z-index: 99999;

    pointer-events: none;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes pageFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes donationHeroIn {

    from {
        opacity: 0;

        transform:
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes donationLabelIn {

    from {
        opacity: 0;

        transform:
            translateX(-25px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes donationHeadingIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes donationTextIn {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes donationButtonsIn {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes heroOverlayIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes donationIntroIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes sectionTitleIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes donationCardIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes impactTextIn {

    from {
        opacity: 0;

        transform:
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes impactPointsIn {

    from {
        opacity: 0;

        transform:
            translateX(35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes impactPointIn {

    from {
        opacity: 0;

        transform:
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes donationFormIn {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes ctaIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes informationIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes pageLoadingLine {

    0% {
        transform:
            scaleX(0);

        opacity: 1;
    }

    70% {
        transform:
            scaleX(0.85);

        opacity: 1;
    }

    100% {
        transform:
            scaleX(1);

        opacity: 0;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    body,

    .donate-hero .hero-content,

    .donate-hero .hero-label,

    .donate-hero h1,

    .donate-hero p,

    .donate-hero .hero-buttons,

    .donate-hero .hero-overlay,

    .donate-intro,

    .donation-types .section-title,

    .how-to-donate .section-title,

    .donation-grid .donation-card,

    .impact-text,

    .impact-points,

    .impact-point,

    .donation-form-wrapper,

    .donate-cta .cta-content,

    .information-box,

    body::before {

        animation: none !important;

        opacity: 1 !important;

        transform: none !important;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .donation-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .impact-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .donation-form-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 45px;
    }


    .form-introduction {
        padding-right: 0;
    }


    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    .cta-buttons {
        width: 100%;

        flex-direction: row;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .donate-hero {
        min-height: 570px;
    }


    .hero-content h1 {
        font-size: 43px;
    }


    .hero-content p {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-btn,
    .hero-btn-outline {
        width: 100%;
    }


    .donate-intro,
    .donation-types,
    .impact-section,
    .how-to-donate {
        padding: 65px 0;
    }


    .donation-grid {
        grid-template-columns: 1fr;
    }


    .donation-card {
        padding: 30px 25px;
    }


    .impact-text h2 {
        font-size: 39px;
    }


    .donation-form-wrapper {
        padding: 35px 25px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-introduction h3 {
        font-size: 27px;
    }


    .donation-submit-btn {
        width: 100%;
    }


    .cta-content h2 {
        font-size: 37px;
    }


    .cta-buttons {
        flex-direction: column;

        width: 100%;
    }


    .information-box {
        flex-direction: column;
    }


    /* POPUP MOBILE */

    .donation-popup-box {
        padding: 35px 25px;
    }


    .donation-popup-box h3 {
        font-size: 23px;
    }


    .donation-popup-box p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 37px;
    }


    .section-heading h2,
    .section-title h2 {
        font-size: 34px;
    }


    .impact-text h2 {
        font-size: 34px;
    }


    .donation-form-wrapper {
        padding: 30px 20px;
    }

}