.block-cta-banner {
    background-color: var(--light-blue);
    background-image: url(../assets/circles.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: -44% center;
    color: var(--white);
    padding: 3rem;
    margin-bottom: 2rem;
}

@media all and (min-width: 64rem) {
    .block-cta-banner {
        margin-bottom: 10rem;
    }
}

.block-cta-banner.no-mb {
    margin-bottom: 0;
}

.block-cta-banner .h3 {
    font-size: 1.8rem;
    margin-top: 11px;
}

.banner-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

@media all and (min-width: 64rem) {
    .banner-cta-content {
        flex-direction: row;
    }
}

.banner-cta-text {
    flex-basis: 65%;
    text-align: center;
}

@media all and (min-width: 64rem) {
    .banner-cta-text {
        text-align: left;
    } 
}

.banner-cta-description p {
    width: 100%;
}

@media all and (min-width: 64rem) {
    .banner-cta-description p {
        width: 60%;
    } 
}

.banner-cta-btn {
    flex-basis: 25%;
}

.block-cta-banner .cta-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--orange);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    text-decoration: none;
    font-family: "Fira semi-bold", sans-serif;
}

.cta-btn::after {
    content: ' \00BB';
}

.block-cta-banner .cta-btn:hover {
    text-decoration: underline;
}