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

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

.cta-buttons .cta-call {
    position: relative;
    padding-left: 50px;
    align-self: center;
    white-space: nowrap;
}

.cta-buttons .cta-call.has-title {
    padding-left: 80px;
}

.cta-buttons .cta-call span {
    display: block;
}

.cta-buttons .cta-call span.title {
    font-size: 19px;
}

.cta-buttons .cta-call span.number {
    font: 22px/1.2 'urbanist-bold', sans-serif;
}

.cta-buttons .cta-call:before {
    font-size: 22px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.cta-buttons .cta-call.has-title:before {
    left: 11px;
    top: 11px;
}

.cta-buttons .cta-call.has-title:before {
    color: var(--primary-color)
}

.cta-buttons .cta-call.has-title:after {
    content: '';
    width: 60px;
    height: 60px;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0
}

.section--background .cta-buttons .cta-call:before {
    color: #fff
}

.section--primary .cta-buttons .cta-call:before {
    color: var(--on-primary-button-primary-color);
}

.section--primary .cta-buttons .cta-call:hover:before {
    color: var(--on-primary-button-primary-color-hover);
}

@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%;
    }
}