.cta-banner{
    padding: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}

.cta-banner .cta-content-col{
    width: 33.3%;
    text-align: center;
    padding: 0px 50px;
}

.cta-content-col h2{
    font-weight: 900;
    font-size: 40px;
    color: white;
}

.cta-content-col p{
    font-size: 18px;
    color: white;
    line-height: 25px;
}

.cta-banner .cta-arrow-col{
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 33.3%

}

.cta-banner .cta-arrow-col:last-of-type{
    flex-direction: row-reverse;
}

.cta-banner .cta-arrow-col img{
    width: calc(100%/4);
    height: 130px;
}

.cta-banner .cta-content-col .blue-cta{
    padding: 16px 80px;
    margin-top: 16px;
}

@media screen and (max-width: 1195px) {
    .bp-hide{
        display: none;
    }

    .cta-banner .cta-content-col{
        padding: 0px 32px;
}


@media screen and (max-width: 768px) {

    .cta-banner .cta-arrow-col{
        display: none;
    }

    .cta-banner .cta-content-col{
        padding: 0px;
        width: 100%;
    }

    .cta-banner .cta-content-col .blue-cta{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}