.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-buttons.align-center {
    justify-content: center;
}

.text-component + .cta-buttons {
    margin-top: 40px;
}

@media only screen and (max-width: 1199px) {
    .cta-buttons {
        flex-wrap: wrap;
    }
}


@media only screen and (max-width: 767px) {

    .cta-buttons.align-center {
        justify-content: left;
    }
    
    .cta-buttons .btn {
        min-width: 80%;
    }
}