﻿.timelineSliderWrap {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.timelineSlider {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2%;
}

    .timelineSlider .tlThumbRotator {
        float: left;
        padding-top: 100px;
    }

        .timelineSlider .tlThumbRotator .swiper-wrapper {
            display: grid !important;
            grid-auto-flow: row !important;
            grid-auto-columns: 1fr !important;
            transform: translate3d(0px, 0px, 0px) !important;
            gap: 30px;
        }

        .timelineSlider .tlThumbRotator .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            cursor: pointer;
            border: 1px solid #ffffff;
            color: #ffffff;
            padding: 5px 40px;
            border-radius: 50px;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            font-weight: 600;
        }

            .timelineSlider .tlThumbRotator .swiper-slide:not(:last-child)::after {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: -30px;
                height: 30px;
                width: 2px;
                background-color: #fff;
            }

        .timelineSlider .tlThumbRotator .swiper-slide-thumb-active {
            background: #ffffff;
            color: #062f6e;
        }

.timelineRotator {
    float: right;
    width: 80%;
    overflow: hidden;
}

    .timelineRotator .swiper-wrapper {
        align-items: flex-start;
    }

        .timelineRotator .swiper-wrapper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            height: auto !important;
        }

    .timelineRotator .swiper-slide .slideContent {
        padding: 100px 50px;
        width: 100%;
    }

        .timelineRotator .swiper-slide .slideContent .imageWrap img {
            max-width: 700px;
            width: 100%;
        }

        .timelineRotator .swiper-slide .slideContent .year {
            margin: 50px 0 0 0;
            color: #ffffff;
            font-weight: 700;
        }

        .timelineRotator .swiper-slide .slideContent .headline {
            width: 100%;
            margin: 0 auto 50px auto;
            font-weight: 700;
            font-size: 47px;
            line-height: 1em;
            color: #ffffff;
        }

        .timelineRotator .swiper-slide .slideContent .copy {
            color: #ffffff;
        }

@media screen and (max-width: 850px) {
    .timelineSlider {
        flex-direction: column;
    }
        .timelineSlider .tlThumbRotator {        
            width: 100%;
            padding-top: 50px;
        }
            .timelineSlider .tlThumbRotator .swiper-wrapper {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex !important;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .timelineSlider .tlThumbRotator .swiper-wrapper .swiper-slide{
                width: auto;
            }

            .timelineSlider .tlThumbRotator .swiper-slide:not(:last-child)::after {
                display: none;
            }
    .timelineRotator {
        width: 100%;
    }
        .timelineRotator .swiper-slide .slideContent {
            padding: 50px 0 100px 0;
        }
        }