.content_wrap {
    margin-top: 140px;
    position: relative;
}

.content_wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 100%;
    background: url(/static/app_www/company/history/img/bg_history_logo.png) no-repeat center/contain;
}

.content_wrap #bar {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    border-right: 3px solid #BBBBBB;
    z-index: -1;
}

.content_item {
    width: 50%;
    position: relative;
}

.content_item:nth-child(odd) {
    padding-right: 34px;
    text-align: right;
}

.content_item:nth-child(even) {
    margin-left: auto;
    padding-left: 34px;
}

.content_item::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 5px solid var(--main-color);
    background-color: #D8F0CA;
    box-sizing: border-box;
    position: absolute;
    top: 0;
}

.content_item:nth-child(odd)::before {
    right: 0;
    transform: translateX(50%);
}

.content_item:nth-child(even)::before {
    left: 0;
    transform: translateX(-50%);
}

.content_item .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}

.content_item ul {
    margin-top: 16px;
}

.content_item li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}

.content_item:nth-child(odd) li {
    flex-direction: row-reverse;
}

.content_item li:not(:last-child) {
    margin-bottom: 2px;
}

.content_item li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--main-color);
    margin-top: 9px;
    flex-shrink: 0;
}

@media screen and (max-width:1023px) {
    .content_wrap {
        margin-top: 50px;
    }

    .content_wrap #bar {
        left: 9px;
        transform: translateX(0);
    }

    .content_item {
        width: 100%;
    }

    .content_item:nth-child(odd) {
        padding-right: 0;
        padding-left: 34px;
        text-align: left;
    }

    .content_item:nth-child(odd)::before {
        right: initial;
        left: 0;
        transform: translateX(0);
    }

    .content_item:nth-child(even)::before {
        transform: translateX(0);
    }

    .content_item:nth-child(odd) li {
        flex-direction: row;
    }

    .content_item:not(:last-child) {
        margin-bottom: 32px;
    }
}