.benefits {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: row wrap;
    gap: 30px 0;
}
.benefit {
    flex: 1 0 25%;
    text-align: center;
    order:2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.benefit__button {
    flex: 2 0 50%;
    justify-content: center;
}

.benefit img {
    max-width: 55px;
}
.benefit .benefit__text {
    font-size: 16px;
    font-family: 'urbanist-bold', sans-serif;
    margin-left: 5px;
    text-align: left;
    display: block;
    max-width: 79%;
}

@media only screen and (max-width: 776px) {
    .benefit {
        flex: 1 0 100%;
    }
    .benefit .benefit__text {
        max-width: 100%;
    }
    .benefit.benefit__button {
        order: 1;
    } 
    .benefit.benefit__button a {
        font-size: 16px;
    }
}