.banner-charge {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-flow: column;
    background: var(--c-charge-gradient-diagonal);
    border-radius: 20px;
    gap: 32px;
}

.banner-charge .fb {
    color: white;
}

.banner-charge__body {
    justify-content: space-between;
}


.banner-charge__btn {
    min-width: 100px;
    padding: .8em 1.4em;
    display: inline-block;
    border: none;
    background: none;
    border: 2px solid white;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: white !important;
    border-radius: 100vmax;
    align-self: flex-start;
    transition: all .35s ease-in-out !important;
}

.banner-charge__btn:active,
.banner-charge__btn:hover,
.banner-charge__btn:focus {
    background: white;
    color: var(--c-green-300) !important;
}

@media (min-width: 640px) {
    .banner-charge__title {
        max-width: 40%;
    }

    .banner-charge__body {
        flex-flow: row;
    }

    .banner-charge__description {
        max-width: 70%;
    }
}