.history {
    background-color: #EEEEEE;
    padding: 0 0 3rem 0;
    position: relative;
}

.history .hero {
    width: 100vw;
    height: 20rem;
    background-color: #000000;
    position: relative;
}

.history .hero img {
    width: 100vw;
    height: 20rem;
    object-fit: cover;
}

.history .breadcrumb {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin: 3rem 5rem 3rem 5rem;
}

.history .breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.history .breadcrumb a:hover {
    text-decoration: underline;
}

.history .breadcrumb i {
    font-size: 0.75rem;
    color: #C80000;
    margin: 0 0.25rem;
}

.history .breadcrumb b {
    font-weight: 700;
}

.history span {
    display: block;
    margin: -2rem 0 0 0;
}

.history h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    width: 100vw;
    height: 20rem;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.65);
    align-content: center;
}

.history p {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    margin: 0 5rem 2rem 5rem;
}

.history p b {
    font-weight: 500;
    color: #000000;
}

.history .timeline {
    width: calc(100vw - 10rem);
    margin: 0 5rem;
    min-height: 1rem;
    border-left: 0.5rem solid #CCCCCC;
    padding: 2rem 0;
}

.history .timeline .event {
    width: 40rem;
    min-height: 1rem;
    background-color: #FFFFFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    margin: 2rem 0 0 calc(50% - 21rem);
}

.history .timeline .event:nth-child(1) {
    margin: 0 0 0 calc(50% - 21rem);
}

.history .timeline .event h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    padding: 1rem 1rem 0 1rem;
}

.history .timeline .event h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    padding: 1rem 1rem 0 1rem;
}

.history .timeline .event h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    padding: 1rem 1rem 1rem 1rem;
}

.history .timeline .event h5 {
    font-size: 2rem;
    color: #CCCCCC;
    background-color: #EEEEEE;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 50vw + 4.25rem);
    margin: 0.5rem 0 -1rem 0;
    padding: 0.5rem;
}

.history h6 {
    font-size: 4rem;
    color: #FFFFFF;
    position: absolute;
    left: -1rem;
    top: 0;
}

.history .photos {
    width: calc(100vw - 20rem);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 10rem;
    justify-content: center;
}

.history .photos div img {
    width: 30rem;
    height: 20rem;
    object-fit: cover;
    margin: 2rem 1rem 0 1rem;
    padding: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0.25rem;
}

@media only screen and (max-width: 900px) {
    .history .breadcrumb {
        font-size: 1rem;
        font-weight: 400;
        color: #000000;
        margin: 3rem 5% 2rem 5%;
        text-align: center;
    }
    
    .history p {
        font-size: 1rem;
        font-weight: 400;
        color: #666666;
        margin: 0 5% 2rem 5%;
    }

    .history .timeline {
        width: calc(100vw - 10%);
        margin: 0 5%;
        border-left: 0.5rem solid #CCCCCC;
        padding: 2rem 0;
    }

    .history .timeline .event {
        width: calc(85%);
        margin: 2rem 0 0 calc(10%);
        position: initial;
    }
    
    .history .timeline .event:nth-child(1) {
        margin: 0 0 0 calc(10%);
    }

    .history .timeline .event h2 {
        margin: -5rem 0 0 0;
    }

    .history h6 {
        position: relative;
        left: -1rem;
        top: 0;
    }

    .history .timeline .event h5 {
        left: calc(5% - 1.275rem);
    }
    
    .history .photos {
        width: calc(100vw - 10%);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 0 5%;
        justify-content: center;
    }
    
    .history .photos div img {
        width: calc(100% - 10%);
        height: 20rem;
        object-fit: cover;
        margin: 2rem 1rem 0 1rem;
        padding: 0;
    }
}