.two-column-cta {
    width: 100%;
}

.two-column-cta__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.two-column-cta__col {
    flex: 1;
    min-width: 50%;
    min-height: 400px;
    padding: 70px 98px;
    color: #fff;
}

.two-column-cta__col--first {
    background-color: #43506f;
}

.two-column-cta__col--second {
    background-color: #912F37;
}

.two-column-cta__inner {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    align-content: center;
}

.two-column-cta__inner h2 {
    color: #fff;
}

.two-column-cta__content {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
}

.two-column-cta__content p {
    margin-bottom: 0;
}

.two-column-cta__col--second .btn-secondary:hover {
    color: #fff;
    background-color: #43506f;
}

/* Responsive */
@media ( max-width: 1199px ) {
    .two-column-cta__col {
        padding: 60px 30px;
    }
}
@media ( max-width: 1199px ) {
    .two-column-cta__wrapper {
        flex-direction: column;
    }
    .two-column-cta__col {
        padding: 60px 52px;
    }
}
@media ( max-width: 767px ) {
    .two-column-cta__col {
        min-width: 100%;
        padding: 40px 20px;
    }
}