.txt-img {
    --flex-direction: row;
}

.txt-img.reverse {
    --flex-direction: row-reverse;
}

.txt-img.medium-blue {
    background-color: var(--medium-blue);
}

.txt-img.maroc.primary-blue {
    background-color: var(--maroc);
}

.txt-img.primary-blue {
    background-color: var(--accent-1);
}

.txt-img--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .txt-img--container {
        flex-direction: var(--flex-direction);
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .txt-img--container {
        gap: 80px;
    }
}

.txt-img--content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .txt-img--content {
        padding: 48px 0;
        flex-basis: 50%;
    }
}

.txt-img--content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    padding-left: 32px;
}

.txt-img--content ul li {
    list-style-type: disc;
}

.txt-img--content ul li::marker {
    color: var(--primary-green);
}

.maroc .txt-img--content ul li::marker {
    color: var(--maroc);
}

.txt-img--content .uptitle {
    margin-bottom: -16px;
}

.primary-blue .txt-img--content .uptitle {
    color: var(--white);
}

.txt-img--content h2 {
    color: var(--accent-1);
}

.primary-blue .txt-img--content h2 {
    color: var(--white);
}

.txt-img--content h2 span {
    color: var(--accent-2);
}

.txt-img--content p:not(.uptitle) {
    color: var(--accent-3);
}

.primary-blue .txt-img--content p:not(.uptitle) {
    color: var(--white);
}

.txt-img--content strong {
    font-weight: 700;
}

.txt-img--images {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .txt-img--images {
        border-radius: 24px;
        flex-basis: 50%;
        min-height: 550px;
    }
}

.txt-img--images img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.txt-img--images-logo {
    position: absolute;
    right: 8px;
    bottom: 8px;
    border-radius: 20px;
    max-width: 230px;
    max-height: 180px;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .txt-img--images-logo {
        right: auto;
        left: 8px;
        bottom: 8px;
    }
}

.txt-img--images img.logo {
    width: 100%;
    height: 100%;
    display: block;
}