@keyframes rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}

.timeline {
	padding-top: 8.25rem;
	padding-bottom: 19.125rem;
	display: block;
	background-color: #fafcfc;
}

@media (max-width:767px) {
	.timeline {
		padding-top: 4.5rem;
		padding-bottom: 8.75rem;
	}
}

.timeline__content {
	max-width: 65.875rem;
	margin: auto;
}

.timeline__title {
	color: #16322d;
	margin-bottom: 1rem;
}

@media (max-width:767px) {
	.timeline__title.sm { font-size: 2rem; }
}

.timeline__text { margin-bottom: 3.75rem; }

@media (max-width:767px) {
	.timeline__text { margin-bottom: 2.25rem; }
	
	.timeline__text p {
		font-size: 1rem;
		line-height: 1.375;
	}
}

.timeline__head {
	max-width: 36.25rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.timeline__textBox {
	padding: 2.5rem 7.875rem 3rem;
	border-radius: 1rem;
	border: 1px solid #16322d;
	margin-bottom: 2.375rem;
	text-align: center;
}

@media (max-width:767px) {
	.timeline__textBox {
		padding: 3rem 1.6875rem 2.875rem;
		margin-bottom: 2rem;
	}
}

.timeline__textBox__title {
	color: #16322d;
	margin-bottom: .6875rem;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
}

.timeline__textBox__subtitle {
	color: #e05e2f;
	margin-bottom: 1.125rem;
}

.timeline__textBox__text {
	color: #16322d;
	margin-bottom: 1.875rem;
	max-width: 50.125rem;
	margin-left: auto;
	margin-right: auto;
}

.timeline__textBox__text p {
	font-size: 1rem;
	line-height: 1.375;
}

.timeline__list {
	position: relative;
	padding: 4.375rem 0;
}

@media (max-width:767px) {
	.timeline__list {
		padding-top: 2rem;
		padding-bottom: 0;
	}
}

.timeline__listLine {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #c5dadf;
}

@media (max-width:767px) {
	.timeline__listLine { left: -.5rem; }
}

.timeline__listLine::after,.timeline__listLine::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: .9375rem;
	height: .9375rem;
	border-radius: 50%;
	background-color: #c5dadf;
}

.timeline__listLine::after {
	top: auto;
	bottom: 0;
}

.timeline__listItem {
	padding: 1.8125rem 2rem 2.1875rem;
	width: 46.49%;
	background-color: #c5dadf;
	border-radius: 1rem;
	position: relative;
	display: flex;
	align-items: flex-start;
	color: #16322d;
}

@media (max-width:767px) {
	.timeline__listItem {
		width: calc(100% - 1.5625rem);
		margin-left: auto;
		flex-direction: column;
	}
}

.timeline__listItem .timeline__listItem__link a { transition: .3s ease-out; }
.timeline__listItem .timeline__listItem__link a:hover { color: var(--wsc-color-white); }

.timeline__listItem::before {
	content: "";
	position: absolute;
	background: #c5dadf;
	width: 1rem;
	height: 1rem;
	transform: rotate(45deg);
	top: 3.125rem;
	right: -.5rem;
	border-radius: .125rem;
}

@media (max-width:767px) {
	.timeline__listItem::before {
		left: -.5rem;
		right: auto;
	}
}

.timeline__listItem::after {
	content: "";
	position: absolute;
	width: .5625rem;
	height: .5625rem;
	border: 1px solid #c5dadf;
	border-radius: 51%;
	right: -2.75rem;
	background: #fafcfc;
	z-index: 1;
	top: 3.3rem;
}

@media (max-width:1025px) {
	.timeline__listItem::after { right: -2rem; }
}

@media (max-width:767px) {
	.timeline__listItem::after {
		left: -2.4rem;
		right: auto;
	}
}

.timeline__listItem--now {
	background-color: #5fa0af;
	color: var(--wsc-color-white);
}

.timeline__listItem--now a:hover { color: #16322d; }
.timeline__listItem--now::before { background-color: #5fa0af; }
.timeline__listItem--now .timeline__listItem__link { color: var(--wsc-color-white); }

.timeline__listItem--now .timeline__listItem__year {
	background-color: #e05e2f;
	color: var(--wsc-color-white);
	border: 0;
	display: flex;
	flex-direction: column;
}

@media (max-width:767px) {
	.timeline__listItem--now .timeline__listItem__year {
		padding-top: .25rem;
		padding-bottom: .25rem;
		flex-direction: row;
	}
}

.timeline__listItem--now .timeline__listItem__year::after {
	content: "NOW";
	border-top: 1px solid var(--wsc-color-white);
	margin-top: .5rem;
	padding-top: .5rem;
}

@media (max-width:767px) {
	.timeline__listItem--now .timeline__listItem__year::after {
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
		border-left: 1px solid var(--wsc-color-white);
		margin-left: .5rem;
		padding-left: .5rem;
	}
}

.timeline__listItem:nth-child(2n) { margin-left: auto; }
.timeline__listItem:nth-child(2n)::before { left: -.5rem; }
.timeline__listItem:nth-child(2n)::after { left: -2.625rem; }

@media (max-width:1025px) {
	.timeline__listItem:nth-child(2n)::after { left: -1.92rem; }
}

@media (max-width:767px) {
	.timeline__listItem:nth-child(2n)::after { left: -2.4rem; }
}

.timeline__listItem:not(:first-child) {
	margin-top: -3.5rem;
	margin-bottom: 1.1875rem;
}

@media (max-width:767px) {
	.timeline__listItem:not(:first-child) {
		margin-top: 1.25rem;
		margin-bottom: 1.25rem;
	}
}

.timeline__listItem--hidden { display: none; }

.timeline__listItem__year {
	color: #16322d;
	font-size: 1rem;
	line-height: 1.375;
	padding: .5rem;
	border: 1px solid rgba(0,0,0,.4);
	border-radius: .5rem;
	margin-right: 2.5625rem;
}

@media (max-width:767px) {
	.timeline__listItem__year {
		margin-bottom: .625rem;
		padding: .1875rem .5rem;
	}
}

.timeline__listItem__title { margin-bottom: .5rem; }
.timeline__listItem__description { margin-bottom: 1rem; }

@media (max-width:767px) {
	.timeline__listItem__description { margin-bottom: .5rem; }
}

.timeline__listItem__link { color: #e05e2f; }
.timeline__listItem__link a { font-weight: 700; }

.timeline__more {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
	margin-inline: auto;
	position: relative;
	z-index: 10;
}

@media (max-width:767px) {
	.timeline__more { margin-top: 2rem; }
}
