/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */

/* Timeline Section */
.timeline_section{
    /* padding: 100px 0; */
}

.timeline_content_left{
    max-width: 588px;
    position: sticky;
    top: 90px;
}
.timeline_content_left .main_content_wrap{
    margin-bottom: 35px;
}

.timeline_content_left .main_content_wrap h2{
    margin-bottom: 30px;
}
.timeline_content_left .sticky-bar-nav ul li:not(:last-child){
    margin-bottom: 15px;

}
.timeline_content_left .sticky-bar-nav ul li a{
    border-radius: 6px;
    border: 1px solid var(--beige);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    padding: 15.5px 20px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.timeline_content_left .sticky-bar-nav ul li.active a{
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
.timeline_boxes_right_wrap{
    max-width: 574px;
    margin-left: auto;
}
.timeline_boxes_right .timeline_box_item:not(:last-child){
    margin-bottom: 25px;
}
.timeline_boxes_right .timeline_box_item{
    padding: 25px;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.timeline_box_item .year,
.timeline_box_item .title {
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-blue);
}

.timeline_box_item .year {
    font-size: 45px;
    margin-bottom: 25px;
}
.timeline_box_item .title {
    font-size: 22px;
    margin-bottom: 15px;
}
.timeline_box_item p{
    color: var(--primary-blue);
    opacity: 0.85;
}


.timeline_slider_arrows {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 25px;
    display: none;
}
.timeline_slider_arrows .slick-arrow:not(:last-child){
    margin-right: 15px;
}
.timeline_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.timeline_slider_arrows .slick-arrow:hover{
    background: var(--primary-blue);
}
.timeline_slider_arrows .slick-arrow.prev-btn img,
.timeline_slider_arrows .slick-arrow.prev-btn svg{
    transform: rotate(180deg);
}
.timeline_slider_arrows .slick-arrow img,
.timeline_slider_arrows .slick-arrow svg{
    width: 24px;
    height: 24px;
}
.timeline_slider_arrows .slick-arrow svg path{
    transition: var(--transition);
}
.timeline_slider_arrows .slick-arrow:hover svg path{
    fill: var(--white);
}
.timeline_slider_arrows  .slick-disabled{
    opacity: 0.5;
    pointer-events: none;
}
/* Timeline Section */