#archives {
    margin-bottom: 50px;
}

#archives .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: start;
}

#archives .wrap .item {
    width: calc(50% - 20px);
    margin: 10px;
}

.gray-bg {
    background: url(../../img/concrete_seamless.png) #f6f6f6;
}

footer {
    padding-top: 20px;
    padding-bottom: 100px;
}

.footer-icon a i {
    line-height: 30px;
}

/*timeline*/
/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline h2 {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 30px;
}

.timeline h2 span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-family: "敺株��迤暺煾��";
    color: #666;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    border: 3px dashed #cecece;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.timeline .contain {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline .contain.left {
    text-align: right;
}

/* The circles on the timeline */
.timeline .contain::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid #353535;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline p {
    font-size: 18px;
    font-weight: bold;
}

/* Place the container to the left */
.timeline .left {
    left: 0;
}

/* Place the container to the right */
.timeline .right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timeline .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #fff;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}

/* Add arrows to the right container (pointing left) */
.timeline .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #fff;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

/* Fix the circle for containers on the right side */
.timeline .right::after {
    left: -13px;
}

/* The actual content */
.timeline .content {
    padding: 5px 10px 20px 10px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline .contain {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline .content {
        text-align: left;

    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline .contain::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .timeline .left::after,
    .timeline .right::after {
        left: 18px;
    }

    /* Make all right containers behave like the left ones */
    .timeline .right {
        left: 0%;
    }
}

@media screen and (max-width: 800px) {
    #archives .wrap .item {
        width: calc(50% - 10px);
        margin: 5px;
    }
}

#awards {
    padding-bottom: 60px;
}

#awards ul {
    border: 1px solid #d4d4d4;
    margin: 0;
    border-radius: 10px;
}

#awards ul li {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-bottom: 1px solid #d4d4d4;
}

#awards ul li:last-child {
    border-bottom: 0;
}

#awards ul li p b {
    border-left: 5px solid #488747;
    padding-left: 10px;
}

#awards ul li .year {
    width: 100px;
}

#awards ul li .administration {
    width: 320px;
}

#awards ul li .award {
    width: calc(100% - 420px);
}

@media screen and (max-width: 1280px) {
    #awards ul li {
        flex-wrap: wrap;
    }

    #awards ul li:first-child {
        display: none
    }

    #awards ul li .year {
        width: 100%;
    }

    #awards ul li .administration {
        width: 100%;
        font-size: 24px;
        line-height: 150%;
        margin: 8px 0;
    }

    #awards ul li .award {
        width: 100%;
    }

}