html, body {
    overflow-x: clip;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: .7;
}

body {
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid #FFDF00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.pipeline-wrapper {
    display: flex;
    /*max-width: 1400px;*/
    margin: 0 auto;
    padding: 80px 50px 60px;
    position: relative;
    flex-direction: column;
}

.year-rail a:focus {
    border: none !important;
}

/* LEFT YEAR NAV */
.year-rail-wrapper {
    width: 100%;
    height: 100%;
}
.year-rail {
    position: sticky;
    top: 120px;
    width: 120px;
    flex-shrink: 0;
    height: max-content;
}

.year-rail ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.year-rail li a {
    color: #fff;
    text-decoration: none;
    /*opacity: 0.25;*/
    transition: opacity 0.3s ease, font-weight 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.year-rail li.active a {
    /*opacity: 1;*/
    text-shadow: 0 0 2px #ffffff
}

.pipeline-content-wrapper {
    display: grid;
    grid-template-columns: 120px  1fr;
    gap: 20px;
    position: relative;
    /*margin: 0 auto;*/
    padding: 0 0 200px;
}

.scrolling-panel.intro-panel.pipeline {
    margin-bottom: 0;
}

.scrolling-panel.intro-panel h1 {
    font-weight: 700 !important;
    font-size: 80px;
    line-height: 110%;
    max-width: 1000px;
    opacity: 0;
}

.scrolling-panel.intro-panel .header p {
    max-width: 700px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    opacity: 0;
}


.pipeline-content {
    width: 100%;
}

/* pipeline DOTS */
.pipeline-dot {
    position: relative;
    z-index: 5;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f5c400;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 44px;
}

.pipeline-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

}

.launch-title {
    position: absolute;
    right: 80px;
    top: -70px;
    font-size: 24px;
    font-weight: 900;
	white-space: nowrap;
	display: none;
}
.launch-title.mobile-only {
	position: relative;
    right: auto;
    top: auto;
	font-size: 19px;
}

.pipeline-panel:first-child .panel-grid,
.pipeline-panel:first-child .title-wrapper{
    padding-top: 0;
}

.title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    padding-top: 65px;
    margin-right: 19%;
}

.title-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 1px;
    background: #FFFFFF;
}
.section-title {
    font-size: 60px;
    margin-top: -15px;
    opacity: 0;
}

.section-text {
    position: relative;
}

.section-text p {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 0;

}

.panel-grid {
    padding-top: 65px;
    opacity: 0.2;
    /*opacity: 0;*/
    transition: opacity 0.4s ease;

    h2 {
        font-size: 40px;
        line-height: 100%;

        margin-top: 64px;
    }

    h2:first-child {
        margin-top: 0;
    }
}

.panel-grid h2 {
    font-size: 40px;
    line-height: 100%;

    margin-top: 64px;
}

.panel-grid h2:first-child {
    margin-top: 0;
}


.section-title {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.pipeline-panel.active .section-title,
.pipeline-panel.active .panel-grid {
    opacity: 1 !important;
}

.pipeline-panel:not([data-seen="1"]) .section-title,
.pipeline-panel:not([data-seen="1"]) .panel-grid {
    opacity: 0;
}

html.is-ios-legacy .year-rail-wrapper {
    display: none;
}

html.is-ios-legacy .pipeline-panel:not([data-seen="1"]) .section-title,
html.is-ios-legacy .pipeline-panel:not([data-seen="1"]) .panel-grid {
    opacity: 1;
}

html.is-ios-legacy .pipeline-content-wrapper {
    padding: 0 0 200px;
}

.pipeline-panel:first-child,
.year-rail{
    padding-top: 120px;
}
/* RESPONSIVE */

@media (min-width: 769px) {
	
	.pipeline-panel:first-child .title-wrapper .launch-title {
		display: block !important;
	}
	.pipeline-panel .title-wrapper .launch-title.mobile-only {
		display: none !important;
	}
	
}

@media (min-width: 769px) and (max-width: 1000px) {
	
	.launch-title span {display: none !important;}
	
}


@media (max-width: 400px) {
    .pipeline-content .pipeline-panel .section-title {
        font-size: 24px !important;
        line-height: 120%;
        padding-top: 5px;
    }

    .pipeline-content .pipeline-dot {
        margin-top: 5px;
    }
}
@media (max-width: 768px) {
    .pipeline-panel:first-child,
    .year-rail{
        padding-top: 0;
    }
    .scrolling-panel.intro-panel {
        padding: 80px 20px 40px;
    }
    .scrolling-panel.intro-panel.pipeline {
        padding-bottom: 16px;
    }
    .scrolling-panel.intro-panel h1 {
        font-size: 32px !important;
        line-height: 120%;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px !important;
        line-height: 110%;
        margin-top: -5px;
    }

    .panel-grid h2 {
        font-size: 24px !important;
        line-height: 120%;
    }

    .title-wrapper {
        margin-right: 16px;
    }

    .title-wrapper:after {
        right: 10px;
    }

    .pipeline-dot {
        margin-left: 10px;
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .pipeline-wrapper .pipeline-content-wrapper .year-rail-wrapper {
        position: static;
        padding-top: 0;
        top: 70px;
    }
}

@media (max-width: 1023px) {
    .scrolling-panel.intro-panel.pipeline {
        margin-bottom: 0;
    }

    .pipeline-wrapper {
        padding: 0;
    }

    .pipeline-content-wrapper {
        display: flex;
        flex-direction: column;
        padding: 0 20px 60px;
    }

    .pipeline-content-wrapper .year-rail-wrapper {
        position: sticky;
        top: 60px;
        padding-top: 70px;
        height: max-content;
        background: #000;
        z-index: 100;
        padding-bottom: 10px;
    }


    .pipeline-content-wrapper .year-rail {
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 0;
        padding-top: 0;
        top: 0;
    }

    .pipeline-content-wrapper .year-rail ul { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }

    html.is-ios-legacy .section-title,
    html.is-ios-legacy .panel-grid {
        opacity: 1;
    }
	
}