section.image-box {
    padding: 8rem 8rem 8rem;
    height: 100%;
    max-height: 1100px;
    box-shadow: inset 7px -10px 23px #00000039;
}

.image-box .image-box__container {
    background: #fff;
    height: 760px;
    overflow: hidden;
    border-radius: 35px;
    border: 7px solid white;
}

.image-box .image-box__container .image-box__top-section {
    height: fit-content;
    padding: 35px 0;
    position: relative;
}

.image-box .image-box__container .image-box__top-section h2 {
    color: var(--green-dk);
    font-size: 40px;
    text-align: center;
    font-weight: normal;
}

.image-box .image-box__container .image-box__top-section h2 span {
    display: block;
    font-size: 50px;
    font-weight: bold;
}

.image-box .image-box__container .image-box__top-section h2 span span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.image-box .image-box__container .image-box__top-section h2 span span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: var(--yellow);
    z-index: -1;
    pointer-events: none;
    border-radius: 15px;
}

.image-box .image-box__container .image-box__bottom-section {
    height: 100%;
    position: relative;
}


.image-box .banner-buttons {
    z-index: 1;
    position: relative;
}

.image-box .image-box__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    z-index: 0;
}


section#donate-image-box.image-box {
    box-shadow: unset;
}


@media screen and (max-width: 1050px) {
    .image-box .image-box__image {
        display: none;
    }

    .image-box .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-box .image-box__container {
        height: fit-content;
        padding-bottom: 2rem;
    }

    .banner-buttons .banner-button {
        width: 80%;
    }

    .image-box .image-box__container .image-box__bottom-section {
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 735px) {

    .image-box .image-box__container {
        padding: 0 10px 2rem;
    }

    .banner-buttons .banner-button {
        width: 100%;
        border: none;
    }

    .image-box .image-box__container .image-box__bottom-section {
        padding-bottom: 1rem;
    }

    .image-box .image-box__container .image-box__top-section h2 {
        font-size: 26px;
    }

    .image-box .image-box__container .image-box__top-section h2 span {
        font-size: 36px;
    }
}


@media screen and (max-width: 550px) {
    section.image-box {
        padding: 4rem 2rem;
    }

    .image-box .banner-buttons {
        gap: 10px;
    }

    .banner-buttons .banner-button .banner-button-text {
        text-transform: uppercase;
        font-size: 21px;
    }

    .banner-buttons .banner-button span {
        display: inline;
        font-size: 22px;
        margin-right: 8px;
        margin-left: 5px;
    }

    .banner-buttons .banner-button .icon {
        height: 40px;
        width: 40px;
    }

    .banner-buttons .banner-button.decorated {
        justify-content: flex-start;
    }

    .image-box .image-box__container .image-box__bottom-section {
        padding-bottom: 0rem;
    }

    .image-box .image-box__container {
        padding-bottom: 30px;
        border-radius: 20px;
        box-shadow: inset 0px 3pt 6pt #00000029;
    }
}

@media screen and (max-width: 500px) {
    .image-box .banner-buttons .banner-button {
        height: 75px;
        border-radius: 15px;
    }

    .image-box .image-box__container .image-box__top-section {
        padding: 35px 0 15px;
    }
}

@media screen and (max-width: 375px) {
    .banner-buttons .banner-button .banner-button-text {
        text-transform: uppercase;
        font-size: 20px;
    }
}
@media screen and (max-width: 370px) {
    .banner-buttons .banner-button .banner-button-text {
        text-transform: uppercase;
        font-size: 18px;
    }
}