* {
    font-family: 'Montserrat', sans-serif;
}

.help_us_flex_container {
    display: flex;
    max-height: 550px;
}

.help_us_img_container {
    width: 50%;
    margin: 0;
    padding: 0;
}

.help_us_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20% 0% 0% 0%;
}

.help_us_right_container {
    width: 40%;
    box-sizing: content-box;
    background-color: var(--rojo);
    color: var(--blanco);
    padding-left: 10%;
    padding-top: 10px;
    padding-bottom: 20px;
}

.helpus_button {
    color: var(--blanco);
    width: 220px;
    height: 50px;
    margin-top: 20px;
    margin-left: 235px;
    border: 3px solid var(--blanco);
    cursor: pointer;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
}

.help_us_title{
    font-weight: 300;
    font-size: 50px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.help_us_underline {
    padding-bottom: 10px;
    border-bottom: 3px solid var(--blanco);
}

.help_us_text1, .help_us_text2 {
    width: 60%;
    margin-bottom: 30px;
    line-height: 28px;
    font-size: 14px;
}

.help_us_text1 {
    font-weight: 400;
}

.help_us_text2 {
    font-weight: 700;
}

#donate_btn {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .help_us_flex_container{
        flex-direction: column;
        max-height: none;
    }
    .help_us_img_container{
        width: 100%;
    }
    .help_us_img{
        display: block;
    }
    .help_us_right_container{
        width: 100%;
        padding: 0px;
    }
    .help_us_title, .help_us_text1, .help_us_text2{
        padding: 0px 30px;
        width:100%;
    }
    .help_us_donate_button{
        display: inline-block;
        margin: 0 30px 30px;
    }

}