.about-page .history .item-list {
    margin: 60px 0;
    position: relative;
}

.about-page .history .item-list .txt {
    width: 178px;
    height: 178px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.about-page .history .item-list .txt::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    border-radius: 50%;
    left: 0;
    bottom: -10px;
}

.about-page .history .item-list .wrapper::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    bottom: -178px;
    left: 0;
    right: 0;
    z-index: -1;
    margin: 0 auto;
    background: #dee7f2;
}

.about-page .history .item-list .txt .desc {
    color: var(--color-white);
    font-weight: bold;
    font-size: 46px;
}

.about-page .history .item-list .wrapper {
    display: flex;
    position: relative;
}

.about-page .history .item-list .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 530px;
    min-height: 230px;
    padding-left: 110px;
    position: relative;
}

.about-page .history .item-list .inner .number {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: flex;
    align-items: center;
}

.about-page .history .item-list .inner .number span {
    line-height: .7em;
    font-family: 'Montserrat', sans-serif;
    font-size: 300px;
    color: rgba(144, 213, 208, .3);
    font-weight: 700;
}

.about-page .history .item-list .inner .title {
    font-size: var(--typo-md);
    font-weight: var(--fw-bold);
    color: var(--color-secondary-light);
    line-height: 1.2em;
}

.about-page .history .item-list>li {
    width: 100%;
    margin-bottom: 120px;
}

.about-page .history .item-list>li+li {
    /* margin: 50px 0; */
}

.about-page .history .item-list>li:nth-child(even) .wrapper {
    justify-content: flex-end;
}

.about-page .history .item-list>li:nth-child(even) .txt,
.about-page .history .item-list>li:nth-child(even) .txt::before {
    background: var(--color-secondary-light);
}


/* .about-page .history .item-list>li:nth-child(4) .txt .desc{
    color: var(--color-secondary-light);
}
.about-page .history .item-list>li:nth-child(4) .txt,
.about-page .history .item-list>li:nth-child(4) .txt::before {
    background: var(--color-primary-light);
} */

.about-page .history .item-list>li:nth-child(even) .txt::before {
    left: auto;
    right: 0;
}

.about-page .history .item-list>li:last-child .wrapper {
    justify-content: center;
    padding-top: 90px;
}

.about-page .history .item-list>li:last-child .txt {
    width: 237px;
    height: 72px;
    border-radius: 36px;
    position: relative;
    background: var(--color-primary)
}

.about-page .history .item-list>li:last-child .txt::before,
.about-page .history .item-list>li:last-child .wrapper::before {
    display: none;
}


/* .page-body .about-block {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
} */

@media (max-width: 1600px) {}

@media (max-width: 1440px) {
    .about-page .history .item-list .inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 460px;
    }
    .about-page .history .item-list .txt {
        width: 160px;
        height: 160px;
    }
    .about-page .history .item-list .txt .desc {
        font-size: 40px;
    }
    .about-page .history .item-list .wrapper::before {
        bottom: -160px;
    }
    .about-page .history .item-list>li {
        margin-bottom: 90px;
    }
    .about-page .history .item-list>li:last-child .wrapper {
        padding-top: 60px;
    }
}

@media (max-width: 1199px) {
    .about-page .history .item-list .inner {
        width: 360px;
        padding-left: 90px;
    }
    .about-page .history .item-list .inner .number span {
        font-size: 220px;
    }
    .about-page .history .item-list .txt {
        width: 140px;
        height: 140px;
    }
    .about-page .history .item-list .txt .desc {
        font-size: 35px;
    }
    .about-page .history .item-list .wrapper::before {
        bottom: -140px;
    }
    .about-page .history .item-list>li:last-child .txt {
        width: 200px;
        height: 60px;
    }
}

@media (max-width: 991px) {
    .about-page .history .item-list .txt {
        position: relative;
        margin-bottom: 30px;
    }
    .about-page .history .item-list .inner {
        width: 100%;
    }
    .about-page .history .item-list .wrapper::before {
        display: none;
        /* height: 40px;
        bottom: auto;
        top: 0; */
    }
    .about-page .history .item-list>li {
        margin-bottom: 40px;
    }
    .about-page .history .item-list>li:last-child .wrapper {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .about-page .history .item-list .inner .number {
        display: none;
    }
    .about-page .history .item-list .inner {
        padding-left: 0;
        min-height: auto;
    }
    .about-page .history .item-list .inner .title {
        text-align: center;
    }
}

@media (max-width: 575px) {}