* {
    box-sizing: border-box;
}
.timeline-container {
    height: 100%;
    background-color: rgba(65, 105, 225, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.timeline {
    width: 100%;
    position: relative;
    margin-top: 50px;
}
.timeline-nav__item {
    width: auto;
    height: 100%!important;
    text-align: center;
    opacity: 0.5;
    background: transparent;
    color: #888888;
    margin: 50px 25px 75px !important;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    outline: none;
    cursor: pointer;
}
.timeline-nav__item::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #afc9f6;
    transition: 0.2s;
}
.timeline-nav__item.slick-current {
    font-size: 25px;
    color: #4169E1;
    opacity: 1;
}
.timeline-nav__item.slick-current::before {
    background-color: #4169E1;
}
.timeline-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 60px auto;
}
@media (max-width: 500px) {
    .timeline-wrapper {
        height: 1000px;
        max-height: 900px;
   }
}
.timeline-slider {
    height: 100%;
}
.timeline .slick-list {
    height: 100%;
}
@media (min-width: 1080px) {
    .timeline .slick-list {
        padding: 0 180px !important;
   }
}
.timeline .slick-track {
    height: 100%;
}
.timeline-slide {
    position: relative;
    /* overflow: hidden; */
    background-repeat: no-repeat;
    outline: none;
    background-size: auto 400px, cover;
    background-position: top;
    margin: 0 24px;
    width: 80%;
    z-index: 1;
}
.timeline-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: -0.1%;
    width: 100.2%;
    height: 400px;
    /* background-color: rgba(0, 52, 113, 0.8); */
    background-color: rgba(217, 217, 217,0.8);
    border-radius: 12px;
    z-index: 2;
}
.timeline-slide__content {
    z-index: 5;
    position: absolute;
    top: 220px;
    background: #fff;
    width: 80%;
    left: 50%;
    transform: translate(-50%, 0px);
    padding: 40px;
    opacity: 0;
    transition: opacity 1s;
}
@media (max-width: 500px) {
    .timeline-slide__content {
        width: 100%;
   }
}
.timeline-year {
    z-index: 5;
    font-size: 35px;
    color: #fff;
    background: #f90;
    padding: 15px 26px;
    transition: opacity 1.2s;
    position: absolute;
    right: 0;
    opacity: 0;
}
.timeline-title {
    color: #4169E1;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
}
.timeline-text {
    font-size: 18px;
    line-height: 28px;
    color: #666;
}
.timeline .slick-current:after {
    background-color: rgba(0, 52, 113, 0);
}
.timeline .slick-current .timeline-year {
    opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
    opacity: 1;
}

/*custom*/
.timeline-slide{
    display: flex!important;
    align-items: flex-end;
}
.slick-card{
    text-align: center;
    color: #000;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 12px;
    max-width: 1000px;
    padding: 20px 100px;

    position: relative;
    top: 60px;
}
.slick-card h3{
    font-family: 'Montserrat-SemiBold';
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 35px;
    color: #404040;
    margin: 0 auto;

    max-width: 172px;
    padding-bottom: 3px;
    border-bottom: 4px solid #4169E1;;
}
.slick-card p{
    margin: 15px;
    max-width: 430px;
    font-family: 'Montserrat-regular';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;

    color: #404040;
}