:root {
    --whiteBackground: #eeeeee;
    --titleColor: #222222;
    --snippetColor: #494949;
    --accentColor: #0070f3;
}

* {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
		sans-serif;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
}

.pageTitle {
	font-size: 2rem;
	font-weight: 600;
	color: var(--titleColor);
	text-align: center;
}

.slideContainer {
	position: relative;
	display: block;
	clear: both;
	z-index: 1;
	text-align: center;
	padding: 100px 0;
	padding-bottom: 70px;
	padding-top: 17px;
}

.container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: 1070px;
	padding: 0 20px;
}

.slider {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: distribute;
	-moz-justify-content: space-around;
	justify-content: space-around;
	-ms-flex-align: center;
	-moz-align-items: center;
	-webkit-box-align: center;
	        align-items: center;
}

@media screen and (max-width: 480px) {
	.slider {
		width: 80%;
	}
}

.sliderBody {
	overflow: hidden;
}

@media only screen and (max-width: 590px) {
	.sliderBody {
		width: 100%;
	}
}

@media only screen and (max-width: 864px) {
	.sliderBody {
		width: 100%;
		padding-bottom: 20px;
	}
}

.leftArrow,
.rightArrow {
	-moz-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	        flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 100%;
	background-color: #eee;
	cursor: pointer;
	font-size: 1.2em;
	text-align: center;
	line-height: 42px;
	z-index: 1;
	margin: auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-right: 1px;
	opacity: 0.25;
	position: relative;
	top: -60px;
    opacity: 0.25;
}

.rightArrow {
	padding-left: 1px;
    opacity: 1;
}

@media only screen and (max-width: 864px) {
	.leftArrow,
	.rightArrow {
		display: none;
	}
}

.sliderWindow {
	max-width: 100%;
	margin: 0 auto;
	width: 480px;
}

.sliderWarp {
	display: -moz-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	max-width: 100%;
	position: relative;
	-webkit-transition: margin-left 400ms ease-out 0ms;
	-o-transition: margin-left 400ms ease-out 0ms;
	transition: margin-left 400ms ease-out 0ms;
	-ms-flex-align: center;
	-moz-align-items: center;
	-webkit-box-align: center;
	        align-items: center;
	white-space: nowrap;
	font-size: 0;
	width: 100%;
}

.timelinePanel {
	display: inline-block;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	max-width: 100%;
	-webkit-transition: opacity 0.3s ease-in-out;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	   transition-delay: 0s;
	-webkit-transition: opacity 0.3s ease-in-out 0s;
	-o-transition: opacity 0.3s ease-in-out 0s;
	transition: opacity 0.3s ease-in-out 0s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	vertical-align: top;
	white-space: normal;
	opacity: 0;

	-moz-flex: 0 0 480px;
	-ms-flex: 0 0 480px;
	-webkit-box-flex: 0;
	        flex: 0 0 480px;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	min-height: 250px;
	text-align: center;

	-webkit-transition: margin-left 0.3s, opacity 0.3s;

	-o-transition: margin-left 0.3s, opacity 0.3s;

	transition: margin-left 0.3s, opacity 0.3s;
}

.isActive {
	opacity: 1;
}

.timelineImage {
	max-width: 100%;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px auto;
	display: block;
}

.slideTitle {
	font-size: 36px;
	font-weight: bold;
	padding: 0;
	line-height: 1;
	color: var(--titleColor);
	margin-bottom: 30px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 590px) {
	.slideTitle {
		margin-bottom: 25px;
	}
}
@media only screen and (max-width: 590px) {
	.slideTitle {
		font-size: 32px;
	}
}

.timelineSnippet {
	max-width: 70vw;
	color: var(--snippetColor);
	margin: 0 auto;
	padding: 0;
	font-size: 18px;
}

@media only screen and (max-width: 590px) {
	.timelineSnippet {
		font-size: 17px;
	}
}

.timelineDate {
	line-height: 1.35;
	margin: 30px 0 0;
	padding: 0;
	color: var(--accentColor);
	font-size: 15px;
}

.sliderNavButtonsContainer {
	-webkit-transition: margin-left 400ms ease-out 0ms;
	-o-transition: margin-left 400ms ease-out 0ms;
	transition: margin-left 400ms ease-out 0ms;
	left: 50%;
	position: absolute;
}

.sliderNav {
	height: 64px;
	width: 100%;
	margin: 50px 0;
	white-space: nowrap;
	display: table;
	position: relative;
	z-index: 30;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media only screen and (max-width: 590px) {
	.sliderNav {
		height: 52px;
		margin: 20px 0;
	}
}

.navButton {
	-webkit-transition: background-color 200ms ease-out 0.774836ms;
	-o-transition: background-color 200ms ease-out 0.774836ms;
	transition: background-color 200ms ease-out 0.774836ms;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 0 solid #eee;
	height: 36px;
	width: 36px;
	margin: 0 25px;
	background: #eee;
	display: inline-block;
	white-space: normal;
	vertical-align: middle;
	position: relative;
	cursor: pointer;
	z-index: 20;
	border-radius: 100%;
}

.navButton::after {
	content: '';
    width: 100%;
    border-bottom: solid 1px var(--whiteBackground);
    position: absolute;
    left: 65px;
    top: 50%;
    z-index: 1;
}

.isActiveNav {
	background-color: var(--accentColor);
}

.firstNavButton {
	margin-left: 0;
	position: relative;
	font-size: 24px;
	height: 64px;
	width: 64px;
	line-height: 64px;
	color: #fff;
}

.firstNavButton img {
	padding-top: 1rem;
	pointer-events: none;
}

.secondaryNavButton {
	-webkit-box-shadow: none;
	        box-shadow: none;
	border: none;
	color: var(--accentColor);
	font-size: 18px;
}

.timelineYearText {
	position: relative;
	top: 50px;
}