/*----- TIMELINE -----*/
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #232323;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
            
.timeline {
    width: 100%;
    height: 100px;
    max-width: auto;
    margin: 0 auto;
    display: flex;      
    justify-content: center;    
}

.timeline .events {
    position: relative;
    background-color: #f2c179;
    height: 3px;
    width: 100%;
    border-radius: 4px;
    margin: 4em 0;
}

.timeline .events ol {
    margin: 0;
    padding: 0;
    text-align: center;
}

.timeline .events ul {
    list-style: none;
}

.timeline .events ul li {
    display: inline-block;
    width: 15%;
    margin: 0;
    padding: 0;
}

.timeline .events ul li a {
    
    font-size: 1.25em;
    color: #c29e67; /*titulos*/
    text-decoration: none;
    position: relative;
    top: -32px;
}

.timeline .events ul li a:after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 21%;
    right: auto;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 3px solid #f2c179;
    background-color: #fff;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.timeline .events ul li a:hover::after {
    background-color: #81101b;
    border-color: #f2c179;
}

.timeline .events ul li a.selected:after {
    background-color: #81101b;
    border-color: #f2c179;
}
            