.home__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.home__text {
    flex: 0 1 33%;
    height: 512px;
}
.home__imgs {
    flex: 0 1 68%;
    /* transform: translateX(145px); */

    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: stretch;
    gap: 25px;
    flex-wrap: nowrap;
    max-width: 64%;
}

.homeOddPages {
    gap: 64px;
    /* margin-bottom: 64px; */
}
.homeOddPages > * {
    flex: 1 1 50% !important;
}
.homeOddPages .home__text {
    height: unset;
}
.homeOddPages .home__imgs {
    max-height: 450px;
}
.homeOddPages .home__imgs > * {
    /* max-width: 200px; */
}

@media (max-width: 1024px) {
    .homeOddPages {
        gap: 0px;
    }
    .home__wrapper {
        flex-direction: column-reverse;
        justify-content: start;
        align-items: start;
    }
    .home__imgs {
        max-width: 100%;
        flex: 0 1 68%;
        transform: translateX(0px);
        margin-bottom: 24px;
        gap: 5px;
        min-height: 70vw;
    }
}
