 #archive-timeline h2{
    color: var(--text, #343A40);
    /* H3 */
    font-family: "Open Sans";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

 }
 #archive-timeline h1{
    text-align: center;
    padding-top: 40px;
    font-size: 66px;
}
 .timeline-box {
    display: flex;
    justify-content: center;
margin: 40px auto;
    width: 75%;
    gap:20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(52, 58, 64, 0.15);
    padding: 10px;
 }
 .timeline-box .timeline-image{
flex: 1;
margin-top: auto;
margin-bottom: auto;
 }
 .timeline-box .timeline-content{
    flex: 2;
    padding: 10px 0;
 }
 .timeline-container{
    background: url(../background.svg) no-repeat fixed center;
 }
 .timeline-image img{
display: block;
margin: 0 auto;
border-radius: 8px;
box-shadow: 0px 0px 8px 0px rgba(52, 58, 64, 0.15);;
 }
 .timeline-date {
    height: auto;
    color: var(--Dark, #343A40);
    text-align: center;
    /* Style_Text1_em */
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;

}

.timeline-date span {
    margin-top: auto;
    margin-bottom: auto;
}
.timeline-date i {
    color: var(--Primary_Dark, #004FA3);
    font-size: 40px;
    height: 40px;
    width: 40px;
}
.timeline-description-active{
    display: none;
}
.timeline-box:hover .timeline-description {
    display: none;
}
.timeline-box:hover .timeline-description-active {
    display: block;
}
.timeline-box:hover {
    
    width: 100%;
    transition: all .9s;
 }
 #year-overview {
    
 }
 .year-row{
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(min(44px, 100%), 1fr));  
    text-align: center;

 }
 .year-row .year {

 }
 .year.active {
    font-size: 21px;
    font-weight: 700;
}
aside {
    position: sticky;
    top: 20px;
    align-self: start;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px rgba(52, 58, 64, 0.15);
    padding: 20px;
  }
  .year-mobile{
    display:none;
  }
  @media (max-width:600px){
    #archive-timeline .container {
        width:95%;
    }
    aside {
        top: 52px;
    }
    .timeline-description-active{
        display: block;
    }
    .timeline-description{
        display: none;
    }
    .timeline-box:hover .timeline-description {
        display: none;
    }
    .timeline-box:hover .timeline-description-active {
        display: block;
    }
    .timeline-box {
        display:block;
        width: 100%;
        transition: unset;
        text-align:left;
     }
     #archive-timeline h2{
        font-size: 30px;
     }
     .year-mobile {
        display:block;
        text-align:center;
      }
      .year-mobile select{
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        border: 0px solid white;
        border-radius: 360px;
        text-align:center;
        -moz-padding-start: calc(10px - 3px);
        padding: 10px 20px !important;
        background-color: #004fae;
        color:white;
        font-size: 16px;
        outline: none;
        box-shadow: 0px 0px 8px 0px rgba(52, 58, 64, 0.15);
      }
     .year-row{
        display:none;
     }
     .et_pb_menu--style-left_aligned.et_pb_text_align_center .et_pb_menu__wrap {
        justify-content: right !important;
    }
  }