.grid-container {
    max-width: 1400px;
    margin-top: 100px;
}

.grid-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 20px; */
}

.grid-box {
    width: 33%;
}

.donation-block {
    height: 200px;
    top: -145px;
}

.donation-btn {
    font-size: 16px;
}

.donation-hand {
    max-height: 650px;
}

@media screen and (max-width:1500px){
    .donation-hand {
        display: none;
    }
}

@media screen and (max-width:1250px){
    .grid-boxes {
        /* display: grid;
        grid-template-columns: repeat(1, 1fr);*/
        max-width:500px; 
    }
    .donation-box {
        margin-bottom:70px;
    }
    .grid-box {
        width: 100%;
    }
}
