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

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

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

.cta-buttons a[href^="tel:"] {
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-buttons a[href^="tel:"]:before {
    content: "\e900";
    display: inline-block;
    font-family: 'pauls' !important;
    font-size: 22px;
    margin-right: 10px;
    line-height: 0;
}

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


@media only screen and (max-width: 767px) {
    .cta-buttons {
        justify-content: center;
    }

    .cta-buttons .btn {
        min-width: 80%;
    }

    .cta-buttons span {
        display: none;
    }
}