.timeline-nav-top {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	overflow-x: auto;
	scrollbar-width: none;
}

.timeline-nav-top::-webkit-scrollbar {
	display: none;
}

/* Only apply fade masks and grab cursors when JS detects overflow */
.timeline-nav-top.is-scrollable {
	cursor: grab;
	justify-content: flex-start;
}

.timeline-nav-top.is-scrollable:active {
	cursor: grabbing;
}

.timeline-nav-top.is-scrollable.fade-right {
	-webkit-mask-image: linear-gradient(to right, black 0%, black 59.93%, transparent 100%);
	mask-image: linear-gradient(to right, black 0%, black 59.93%, transparent 100%);
}

.timeline-nav-top.is-scrollable.fade-left {
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 40.07%, black 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 40.07%, black 100%);
}

.timeline-nav-top.is-scrollable.fade-both {
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 40.07%, black 59.93%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 40.07%, black 59.93%, transparent 100%);
}

.timeline-nav-top .nav-year-link {
	background: transparent !important;
	border: none;
	border-radius: 0;
	color: var(--e-global-color-secondary, #fff);
	font-family: Gotham, sans-serif;
	font-size: 2rem;
	cursor: pointer;
	padding: 1em .75em;
	transition: opacity 0.3s ease, color 0.3s ease;
}

.timeline-nav-top .nav-year-link:first-child {
	padding-left: 1.5em;
}

.timeline-nav-top .nav-year-link:last-child {
	padding-right: 1.5em;
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
	.timeline-nav-top .nav-year-link {
		font-size: 2.25rem;
	}
}

@media only screen and (min-width: 1367px) {
	.timeline-nav-top .nav-year-link {
		font-size: 2.5rem;
	}
}

@media (hover: hover) {
	.timeline-nav-top .nav-year-link:hover {
		background: transparent !important;
		opacity: 0.5;
	}
}

.timeline-nav-top .nav-year-link:focus-visible {
	background: transparent !important;
	opacity: 0.5;
}

.timeline-nav-top .nav-year-link.active {
	color: var(--e-global-color-8a26f2b, #5be9ff);
	opacity: 1;
}


.time-contents .content-wrapper img{
	margin-top:2em;
}
.module.timeline {
	padding: 150px 0 40px;
	position: relative;
	overflow: hidden;
	background-color: #002e6d;
}
.module.timeline .time-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.module.timeline .time-images .image-wrapper {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.3s;
}
.module.timeline .time-images .image-wrapper.active {
	opacity: 1;
}
.module.timeline .time-images .image-wrapper .overlay {
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.module.timeline .time-images .image-wrapper .ace-figure {
	height: 100%;
	z-index: 1;
}
.module.timeline .time-images .image-wrapper .ace-figure .placeholder {
	padding-bottom: 75%;
}
.module.timeline .wrapper-timeline {
	height: 100%;
	max-width: 1483px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.module.timeline .time-years-window {
	width: 23%;
	position: absolute;
	top: clamp(-40px, calc((100vh - 600px) * 0.8 - 40px), 120px);
	left: 0;
	height: 100vh;
	z-index: 1;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 50px);
	mask-image: linear-gradient(to bottom, transparent 0px, black 50px);
}

.module.timeline .time-years {
	width: 100%;
	padding: 50px 30px 0;
	position: relative;
	color: #fff;
	font-family: Gotham;
	font-size: 1.625rem;
	font-weight: bold;
}
.module.timeline .time-years .spinner-year {
	height: 300px;
	padding-right: 105px;
	position: relative;
	text-align: right;
	line-height: 22px;
	transition: font-size 0.3s;
}
.module.timeline .time-years .spinner-year:last-child:after {
	display: none;
}
.module.timeline .time-years .spinner-year:after {
	content: "";
	display: block;
	height: 100%;
	width: 1px;
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: -1px;
	background-color: var(--e-global-color-secondary);
}
.module.timeline .time-years .spinner-year.active {
	font-size: 60px;
}
.module.timeline .time-years .spinner-year.active .year-dot .outer {
	width: 32px;
	height: 32px;
	border: 2px solid var(--e-global-color-8a26f2b);
}
.module.timeline .time-years .spinner-year.active .year-dot .outer .inner {
	border-color: var(--e-global-color-8a26f2b);
	background-color: var(--e-global-color-8a26f2b);
}
.module.timeline .time-years .spinner-year .year-dot {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(50%);
}
.module.timeline .time-years .spinner-year .year-dot .outer {
	display: flex;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 2px solid var(--e-global-color-secondary);
	transition: width 0.3s, height 0.3s;
}
.module.timeline .time-years .spinner-year .year-dot .outer .inner {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 1px solid var(--e-global-color-secondary);
	background-color: var(--e-global-color-secondary);
	transform: scale(.8);
	transition: border-color 0.3s;
}
.module.timeline .time-contents {
	width: 56%;
	bottom: 0;
	margin-right: 165px;
	padding: 0 30px;
	position: absolute;
	top: clamp(-40px, calc((100vh - 600px) * 0.8 - 40px), 120px);
	right: 0;
	z-index: 1;
	color: #fff;
	flex-grow: 1;
}
.module.timeline .time-contents h1, .module.timeline .time-contents .h1,
.module.timeline .time-contents h2, .module.timeline .time-contents .h2,
.module.timeline .time-contents h3, .module.timeline .time-contents .h3,
.module.timeline .time-contents h4, .module.timeline .time-contents .h4,
.module.timeline .time-contents h5, .module.timeline .time-contents .h5,
.module.timeline .time-contents h6, .module.timeline .time-contents .h6 {
	color: #fff;
}
.module.timeline .time-contents .content-wrapper {
	width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateX(80px);
	opacity: 0;
	overflow: auto;
	transition: opacity 0.3s, transform 0.3s;
}
.module.timeline .time-contents .content-wrapper.active {
	z-index: 1;
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.3s, transform 0.5s;
}
.module.timeline .time-contents .content-wrapper .terms {
	display: flex;
	flex-wrap: wrap;
	column-gap: 12px;
	row-gap: 10px;
}
.module.timeline .time-contents .content-wrapper .terms .term {
	display: flex;
	height: 36px;
	padding: 5px 20px;
	align-items: center;
	border-radius: 30px;
	background-color: #fff;
	color: #00008b;
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
	.module.timeline .time-years-window {
		top: clamp(-40px, calc((100vh - 600px) * 0.76 - 40px), 112px);
		height: 100vh;
	}
	.module.timeline .time-years {
		font-size: 22px;
	}
	.module.timeline .time-years .spinner-year {
		height: 250px;
		padding-right: 80px;
	}
	.module.timeline .time-years .spinner-year.active {
		font-size: 40px;
	}
	.module.timeline .time-years .spinner-year.active .year-dot .outer {
		width: 26px;
		height: 26px;
	}
	.module.timeline .time-years .spinner-year .year-dot .outer {
		display: flex;
		width: 18px;
		height: 18px;
	}
	.module.timeline .time-contents {
		top: clamp(-40px, calc((100vh - 600px) * 0.76 - 40px), 112px);
		bottom: 0;
		height: auto;
		margin-right: 100px;
	}
}
@media only screen and (min-width: 769px) {
	.module.timeline .time-years .spinner-year:first-child:after {
		height: calc(100% - 10px);
	}
	.module.timeline .time-contents .content-wrapper {
		max-height: none;
		overflow: hidden;
	}
}
@media only screen and (max-width: 768px) {
	.timeline-nav-top {
		display: none;
	}
	.module.timeline .wrapper-timeline {
		display: flex;
		flex-direction: column;
	}
	.module.timeline .time-years-window {
		position: relative;
		width: auto;
		top: 0;
		height: auto;
		flex-shrink: 0;
		-webkit-mask-image: none;
		mask-image: none;
	}
	.module.timeline .time-contents {
		top: 0;
		bottom: auto;
		height: auto;
		flex: 1;
		min-height: 0;
	}
	.module.timeline .time-years .spinner-year:first-child:after {
		width: calc(100% - 10px);
	}
	.module.timeline {
		padding: 100px 0;
	}
	.module.timeline .wrapper-timeline {
		padding: 0 40px;
	}
	.module.timeline .time-years {
		display: flex;
		width: auto;
		padding: 0;
		position: relative;
		z-index: 2;
		flex-direction: row;
		font-size: 20px;
	}
	.module.timeline .time-years .spinner-year {
		width: 200px;
		height: auto;
		padding-right: 0;
		padding-bottom: 40px;
		text-align: left;
		flex-shrink: 0;
	}
	.module.timeline .time-years .spinner-year:after {
		width: 100%;
		height: 1px;
		right: 0;
		bottom: 0;
	}
	.module.timeline .time-years .spinner-year .year-dot {
		top: auto;
		bottom: 0;
		right: auto;
		left: 0;
		transform: translate(0, 50%);
	}
	.module.timeline .time-contents {
		width: 75%;
		position: relative;
		padding: 0;
		margin-right: 0;
		margin-top: 80px;
	}
}
@media only screen and (max-width: 480px) {
	.module.timeline .time-contents .content-wrapper {
		padding-bottom: 42px;
	}
	.module.timeline .wrapper-timeline {
		padding: 0 30px;
	}
	.module.timeline .time-years {
		font-size: 18px;
	}
	.module.timeline .time-contents {
		width: 100%;
	}
}