.don-banner {
    height: 50vh;
    background: linear-gradient(#79ae46, #79ae46);
    opacity: .4;
    padding-top: 125px;
    padding-bottom: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.don-banner-text {
    width: 70%;
}
.don-banner-text h2 {
    color: #ffffff;
    font-size: 3em;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: center;
}

.don-content {
    padding: 80px 150px;
}
.don-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.don-form-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
}
.don-form-input {
    width: 45%;
    height: 40px;
    border: 3px solid #79ae46;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 20px;
}
.don-form-long-input {
    width: 95%;
    height: 40px;
    border: 3px solid #79ae46;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 20px;
}
.don-form-radio-box {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.radio-item {
    margin-right: 10px;
}
.don-form-submit-btn {
    width: 45%;
    border: 3px solid #79ae46;
    border-radius: 5px;
    background-color: #79ae46;
    color: #ffffff;
    height: 40px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
.don-form-submit-btn:hover {
    border-color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .don-content {
        padding: 20px 0;
    }
}