.history {
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    justify-content: space-between;
    gap: 0px;
    position: relative;
}
.history_img {
    z-index: -1;
    width: 50%;
    margin-left: -12%;
    margin-top: 54px;
}
.history_img img {
    width: 100%;
}
.history_text {
    width: 38%;
    margin-top: 10%;
    margin-left: 15%;
}
.history_text h2 {
    margin-bottom: 32px;
}
.history_text > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .history {
        margin-top: 20vw;
        /* overflow-x: hidden; */
        display: block;
    }
    .history_img {
        position: absolute;
        margin-left: 0;
        right: 50%;
        top: 0%;
        transform: translateX(50%) translateY(-45%);
        width: 100%;
        opacity: 0.6;
    }
    .history_text h2 {
        font-size: 9vw;
    }
    .history_text {
        max-width: 85%;
        width: initial;
        margin-left: 12px;
    }
}
