.content {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2em;
    box-sizing: border-box;
    line-height: 1.5;
}
.content--wide {
    max-width: 1100px;
}

.support {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
}
.support-icon {
    background-image: url(https://api.windy.com/static/img/hands.svg);
    background-size: cover;
    width: 150px;
    height: 150px;
    display: block;
}
.support-text {
    max-width: 50%;
}
.support-text h2 {
    text-align: center;
    font-size: 23px;
    color: #4a4a4a;
    letter-spacing: 0.05em;
}
.support-text a {
    display: inline-block;
    border: 1px solid #9d0300;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 18px;
    color: #9d0300;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.support-text a:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 767px) {
    .support-icon {
        display: none;
    }
}

/*SUPPORT END*/

/*FOOTER START*/
.footer {
    display: flex;
    justify-content: center;
    padding: 70px 50px;
    background-color: #fff;
    border-top: 1px #ddd solid;
    box-sizing: border-box;
}
.footer-logo {
    display: block;
    text-decoration: none;
    height: 51px;
    background-color: transparent;
    font-weight: 100;
}
.footer-logo-image {
    display: block;
    width: 200px;
    max-width: 100%;
    border-style: none;
    box-sizing: border-box;
}
/*FOOTER END*/
