.cta-bar {
    position: relative;
    padding: 70px 0 50px;
    color: var(--white);
    text-align: center;
}

.cta-bar.bg-overlay:after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
}

.cta-bar__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}

.cta-bar__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-bar__headline {
    padding-bottom: 30px;
}

.cta-bar.bg-red .cta-bar__headline {
    margin-top: 0;
    color: #fff;
}

.cta-bar.bg-red p a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.cta-bar__content .btn-secondary {
    background-color: #fff;
}

.cta-bar.bg-light-green .cta-bar__headline {
    color: #09254B;
}

@media (min-width: 768px) {
    .cta-bar__headline {
        padding-bottom: 45px;
    }

}

@media (min-width: 1200px) {
    .cta-bar__headline {
        padding-bottom: 0;
    }

    .cta-bar__content {
        padding: 0 ;
    }

    .cta-bar__content .cta-bar__headline {
        width: calc(100% - 210px);
        padding-bottom: 0;
        padding-right: 20px;
    }

    .cta-bar__content .btn {
        width: 210px;
        float: right;
    }

    .cta-bar__content .btn-secondary:hover {
        background-color: #CEDBD9;
        color: var(--dark-blue);
    }

    .cta-bar {
        text-align: left;
    }

    .cta-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: center
    }


}