.outerwrap.cta-module {
    text-align: center;
}

.cta-module__outer {
    display: flex;
    flex-direction: column;
    gap: 175px;
}

.cta-module__innerwrap {
    padding: 30px 10px;
}

.cta-module__row {
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    min-height: 375px;
}

.cta-module__row > * {
    height: 100%;
    padding: 30px;
}

.cta-module__left {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
}

.cta-module__right {
    display: flex;
    background-color: var(--brand-primary);
}

.cta-module__right img {
    height: 315px !important;
    border-radius: 50%;
    width: 315px;
    object-fit: cover;
    margin: auto auto;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.cta-module__link-wrap a {
    font-size: 25px;
    font-weight: bold;
    color: rgb(226 198 117);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cta-module__link:after {
    content: "\f054";
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    padding-left: 20px;
}

.cta-module__link:hover {
    color: #a30000;
    text-decoration: none;
}

.cta-module__inner-title {
    font-size: 48px;
}

.cta-module__subtitle {
    font-size: 24px;
    font-style: italic;
}

.cta-module__title {
    margin-bottom: 80px;
}

@media (min-width: 768px) {

    .cta-module__row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
    }

    .cta-module__row:first-child:before {
        content: "";
        background: var(--brand-primary) url('pattern.svg') center / cover no-repeat;
        width: 50vw;
        height: 500px;
        position: absolute;
        left: 0;
        margin-left: calc((-100vw + 100%) / 2);
        z-index: -1;
    }

    .cta-module__row:first-child:after {
        content: "";
        background: #000 url('pattern.svg') center / cover no-repeat;
        width: 50vw;
        height: 500px;
        position: absolute;
        right: 0;
        margin-right: calc((-100vw + 100%) / 2);
        z-index: -1;
    }

}