.page-cta {
    position: relative;
    overflow: hidden;
}

.page-cta-overflow {
    overflow: hidden;
}

.page-cta-padd128 {
    padding: 128px 0 48px;
}

.page-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.page-cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.40);
}

.page-cta-image img {
    height: 100%;
    object-fit: cover;
}

.page-cta-body {
    position: relative;
    padding: 32px 24px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    z-index: 11;
    font-size: 22px;
    line-height: 36px;
}

.page-cta-phone a {
    color: var(--white);
    transition: color .3s;
    text-decoration: underline;
}

.page-cta-phone a:hover {
    color: var(--primary600);
}

.page-cta-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
}

.page-cta-break {
    display: none;
}


@media(max-width:992px) {
    .page-cta-padd128 {
        padding: 48px 0;
    }
}


@media(max-width:768px) {
    .page-cta-body {
        padding: 48px 24px;
        gap: 24px;
        font-size: 16px;
        line-height: 28px;
    }

    .page-cta-title {
        font-size: 20px;
        line-height: 30px;
    }
}

@media(max-width:576px) {
    .page-cta-image::after {
        background-color: transparent
    }

    .page-cta-break {
        display: block;
    }

    .page-cta-image img {
        height: auto;
    }
}