.bubble-cta-wrap {
    width: 100%;
}

.bubble-cta-wrap .bubble-cta {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-basis: 25%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 150px;
    margin: auto;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    transition: all 0.4s ease-in-out;   

}

.bubble-cta-wrap .bubble-cta:after {
    content: "";
    position: absolute;
    left: 75%;
    top: 0;
    width: 46px;
    height: 46px;
    background-color: var(--bs-info);
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="20" viewBox="0 0 24 20" fill="none"><path d="M19.3035 16.1137C21.4681 16.1137 23.2275 14.3542 23.2275 12.1896V3.9206C23.2275 1.75604 21.4681 -0.00341797 19.3035 -0.00341797H4.15156C1.98699 -0.00341797 0.227539 1.75604 0.227539 3.9206V18.6833C0.227539 18.9852 0.398322 19.2592 0.668396 19.3943C0.779603 19.4499 0.902725 19.4777 1.02188 19.4777C1.19266 19.4777 1.36344 19.4221 1.50245 19.3148L5.7164 16.1137H19.3035ZM4.96575 14.6878L1.81621 17.0828V3.9206C1.81621 2.63378 2.86473 1.58525 4.15156 1.58525H19.3035C20.5903 1.58525 21.6389 2.63378 21.6389 3.9206V12.1896C21.6389 13.4765 20.5903 14.525 19.3035 14.525H5.44633C5.27157 14.525 5.10476 14.5846 4.96575 14.6878Z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 20px;
    transition: all 0.4s ease-in-out;
}

.bubble-cta-wrap .bubble-cta-content {
    flex-basis: 100%;
    margin-bottom: 0;
    text-align: center;
}

.bubble-cta-wrap .bubble-cta-content * {
    color: var(--bs-primary);
    margin: 0;
}

@media (min-width: 992px) {
    .bubble-cta-wrap .bubble-cta {
        flex-basis: 30%;
        max-width: 200px;
    }
    .bubble-cta-wrap .bubble-cta-content {
        flex-basis: 70%;
        margin-left: 2rem;
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .bubble-cta-wrap .bubble-cta {
        flex-basis: 25%;
    }
    .bubble-cta-wrap .bubble-cta-content {
        flex-basis: 75%;
    }
}
