.com-history {
    position: relative;
}
.com-history .-vertical{
    position: absolute;
    left: 99px;
    width: 2px;
    height: 100%;
    background-color: #177CC1;
    z-index: 1;
    top: 0;
}

.com-history .-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    position: relative;
}

.com-history .-date-box {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.com-history .-date {
    font-family: 'HeliosCond',sans-serif;
    font-weight: 700;
    color: #177CC1;
    font-size: 36px;
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 10px 0;
}

.com-history .-text {
    padding: 20px 0;
    border-bottom: 2px solid #C5C5C5;
    width: calc(100% - 215px);
    font-size: 16px;
}
.com-history .-text * {
    font-size: 16px;
}
.com-history .-item:nth-child(2) .-text {
    padding-top: 0;
}
.com-history .-item:last-child .-text {
    border-bottom: none;
}

.com-history .-item:nth-child(2):before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 99px;
    width: 2px;
    height: 50%;
    background: white;
    z-index: 3;
}
.com-history .-item:last-child:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 99px;
    width: 2px;
    height: 50%;
    background: white;
    z-index: 3;
}

@media (max-width: 768px){
    .com-history .-item{
        flex-direction: column;
    }
    .com-history .-date-box {
        width: 100%;
        margin-right: 0;
        justify-content: flex-start;
    }
    .com-history .-date-box {
        padding-bottom: 0px;
    }
    .com-history .-item:nth-child(2):before {
        display: none;
    }
    .com-history .-item:last-child:before {
        display: none;
    }
    .com-history .-vertical{
        display: none;
    }
    .com-history .-text {
        padding: 0 0 20px;
        width: 100%;
    }
}