.cta-module-container {
    max-width: 1512px;
    width: 100%;
    margin: 0 auto;
}
.cta-module {
    display: flex;
}
.cta-module.two-columns {
    flex-direction: row;
}
.cta-module.full-width {
    flex-direction: column;
}
.cta-module .cta-item {
    cursor: pointer;
    flex: 1;
    padding: 65px 50px;
    position: relative;
    text-decoration: none;
}

.cta-module .cta-item:hover .btn.outline {
	background: var(--white) !important;
	color: var(--black) !important;
}

.cta-module .cta-item .innards {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-module .cta-item .overlay,
.cta-module .cta-item .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.cta-module .cta-item .overlay {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}

.cta-item p {
    margin-bottom:0;
    /* Paragraph Large */
    font-family: Lexend;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.cta-item h2 {
    margin-bottom: 24px;
}

.cta-item h2,
.cta-item p {
    color: var(--white);
}

.cta-module.full-width .cta-item {
    width: 100%;
}

.cta-button {
    display: inline-block;
    margin-top: 48px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.cta-item:hover .overlay {
    opacity: 1;
}

.cta-item.bg-red .overlay {
    background-color: var(--med-red);
}

.cta-item.bg-black .overlay {
    background-color: var(--black);
}

@media (max-width:1350px) {
    .cta-module .cta-item {
        padding:60px;
    }
}

@media(max-width:1050px) {
    .cta-module.two-columns {
        flex-wrap:wrap;
    }
    
    .cta-module .cta-item {
        flex-basis:100%;
    }
}