.two-images-title-cta-container {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    max-height: 74rem;
    gap: 2rem;
}
.two-images-title-cta-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-radius: .8rem;
    overflow: hidden;
    text-decoration: none;
}
.two-images-title-cta-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 200ms ease-in;
}
.two-images-title-cta-wrapper:hover img {
    transform: scale(1.05);
}
.two-images-title-cta-wrapper .content-wrapper {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    gap: 2rem;
    align-items: center;
}
.two-images-title-cta-wrapper .content-wrapper .text-component{
    font-size: 3.4rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-family: 'Oswald';
    color: #fff;
    min-height: 4rem;
    max-width: 58rem;
    line-height: 4rem;
} 

.two-images-title-cta-wrapper .cta-component {
    padding: 1.2rem 1.8rem;
    font-size: 1.4rem;
    color: #002E5E;
    font-weight: 600;
    font-family: 'Oswald';
    background-color: #fff;
    text-transform: uppercase;
    border-radius: 0.4rem;
    cursor: pointer;
    text-decoration: none;
    width: max-content;
    line-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    transition: .2s ease-in-out;
}
.two-images-title-cta-wrapper:hover .cta-component {
    background-color: #F2F6FA;
    animation-timing-function: ease-in-out;
    animation-duration: .1s
}
.two-images-title-cta-wrapper:active .cta-component {
    background-color: #D7E5EF;    
    animation-timing-function: ease-in-out;
    animation-duration: .1s
}
.two-images-title-cta-wrapper:focus-visible .cta-component {
    box-shadow: 0 0 0 2px #7ab3ef,0 0 0 4px rgba(122,179,239,.5);
    outline: 0;
    transition-duration: .2s
}

@media (max-width: 992px) {
    .two-images-title-cta-container {
        flex-direction: column;
    }
    .two-images-title-cta-wrapper {
        width: 100%;
        height: 33.5rem;
        gap: 1.2rem;
    }
    .two-images-title-cta-wrapper .cta-component {
        width: 100%;
        justify-content: center;
    }
    .two-images-title-cta-wrapper .content-wrapper {
        gap: 1.2rem;
        padding: 2rem;
    }
    .two-images-title-cta-wrapper .content-wrapper .text-component{
        font-size: 2.8rem;
        max-height: 6.4rem;
        line-height: 3.2rem;
    }
}
