.flex-content.cta-bar:not(.boxed) {
    position: relative;
    background-color: var(--bs-primary);
    overflow: clip;
}

.flex-content.cta-bar:not(.boxed)::before {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 50%;
    z-index: 1;
    background-image: linear-gradient(to right, rgb(0 0 0 / .2), transparent);
}
.flex-content.cta-bar:not(.boxed)::after {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px);
    background-color: color-mix(in srgb, var(--secondary-blue) 20%, transparent);
}

.flex-content.cta-bar .badge {
    color: #fffc;
    background-color: #ffffff1a;
}
.flex-content.cta-bar .main-title {
    color: var(--bs-white);
}
.flex-content.cta-bar .text {
    color: #ffffffb3;
}

.flex-content.cta-bar hr {
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.flex-content.cta-bar .cta-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.flex-content.cta-bar .cta-icons > a {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fffc;
    text-decoration: none;
}
.flex-content.cta-bar .cta-icons > a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff1a;
}
.flex-content.cta-bar .cta-icons > a .icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.flex-content.cta-bar .cta-icons > a .text-xs {
    color: #fff9;
}







.flex-content.cta-bar.boxed {
    z-index: 1;
}

.flex-content.cta-bar:not(.boxed),
.flex-content.cta-bar.boxed .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.flex-content.cta-bar .container {
    position: relative;
    z-index: 2;
}
.flex-content.cta-bar .container > * {
    position: relative;
}
.flex-content.cta-bar.boxed .container::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    background-color: var(--bs-secondary);
    border-radius: var(--bs-border-radius-xl);
}
.flex-content.cta-bar.boxed .btn-secondary {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
}

.flex-content.cta-bar .ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0 0;
    margin: 0;
}



@media (max-width: 767px) {
    .flex-content.cta-bar .cta-icons {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}