/**********************************************************
// Block >> Timeline
**********************************************************/
.Block-Timeline {
    overflow-x: auto;
    width: 100%;
    padding: 20px 0;
}

.Block-Timeline-Track {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: max-content;
    padding: 0 40px;
    position: relative;
}



.Timeline-Event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 200px;
    flex-shrink: 0;
}

.Timeline-Event-Year {
    font-weight: bold;
	font-family: var(--Alt-Font);
	font-size: 50px;
}

.Timeline-Event-Dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--Gold-Gradient);
    flex-shrink: 0;
}

.Timeline-Event-Content {
    text-align: center;
    line-height: 1.4;
}

.Block-Timeline-Wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.Block-Timeline-Arrows {
    display: flex;
    gap: 10px;
    align-items: center;
	padding: 0 20px;
	justify-content: space-between;
}

.Block-Timeline-Arrow {
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
	color: #fff;
}

.Block-Timeline-Arrow.is-hidden { 
    opacity: 0; 
    pointer-events: none; 
}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 768px),
all and (max-device-width: 768px)
{
	
}
