.support_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
}

.support_section .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8rem 0rem;
}

.support_section .text {
    background-color: var(--black_low);
    color: var(--dark_blue);
    padding: 1.5rem;
    width: 60%;
    border: none;
    text-align: right;
    outline: none;
    border-radius: 1rem;
    font-size: 15px;
    margin: .5rem 0rem;
    background: var(--black_low);
    box-shadow: var(--box_shadow_normal);
    border-radius: 1rem;
}

.support_section .text p {
    line-height: 2rem;
}

@media only screen and (max-width: 1140px) {
    .support_section .text {
        width: 80%;
    }
}