/* .historybox {
    width: 100%;
    display: block;
    margin-bottom: 40px;
    background-color: transparent;
    position: relative;
    text-align: center;
}

.history-year { 
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
} */

.history-circle {
    width: 100px;
    height: 100px;
    background-color: #BAB7AE;
    /* -webkit-border-radius: 50%;
    border-radius: 50%; */
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    margin-bottom: 20px;
}

.history-circle span {
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.history-content {
    width: 100%;
}

.history-text p {
    padding-top: 0;
    margin-top: 0;
}

.history-image {
}

.history-image img {
    max-width: 250px;
    max-height: 180px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    
    .historybox {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        vertical-align: middle;
        -webkit-box-align: center;
        -ms-flex-align: center;
                align-items: center;
        text-align: left;
        margin-bottom: 40px;
    }
    
    .history-year {
        width: 33.3333%;
        position: relative;
        overflow: hidden;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    .history-year:before {
        content: '';
        width: 100%;
        height: 5px;
        background: #BAB7AE;
        z-index: -1;
        position: absolute;
        top:50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
    
    .history-circle {
        margin-bottom: 0;
    }
    
    .history-content {
        width: 100%;
        display: block;
        padding-left: 10px;        
    } 
}

@media (min-width: 767px) {
    
    .history-content {
        width: 66.66666%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-left: 20px;        
    }
    
    .history-image img {
        margin-bottom: 0;
        padding-right: 30px;
    }
}

@media (max-width: 480px) {
    .historybox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        vertical-align: middle;
        -webkit-box-align: start;
        -ms-flex-align: start;
                align-items: flex-start;
        text-align: left;
    }
    
    .history-year {
        width: 33.3333%;
        overflow: hidden;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .history-circle {
        width: 60px;
        height: 60px;
    }
}
