.cc_tablet {
	display: none;
}
.cc_mobile {
	display: none;
}

.cc_timeline_container {
	--background: #243842;
	--light_gray: #535f67;
	--white: #fff;
	--yellow: #ffd200;
}

.cc_timeline_container {
	padding: 24px 32px;
	font-family: "Open Sans", sans-serif;
	background-color: var(--background);
}

.cc_img_background {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.cc_header {
	padding: 20px 0px 20px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cc_30_years {
	width: 265px;
}
.cc_hrc_logo {
	height: 84px;
}

.cc_filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: var(--light_gray);
	text-transform: uppercase;
}
.cc_filter {
	cursor: pointer;
	padding: 0px 2px;
	transition: all 1.0s ease;
}
.cc_filter_separator {
	height: 40px;
	width: 1px;
	flex-shrink: 0;
	background-color: var(--light_gray);
}
.cc_filter_current {
	color: var(--white);
}
.cc_filter_active {
	color: var(--yellow);
}

.cc_main {
	margin-top: 46px;
	display: flex;
	gap: 24px;
}

.cc_project {
	width: 500px;
	min-width: 500px;
	font-size: 16px;
	color: white;
}
.cc_project_title {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 26px;
	font-weight: 700;
	color: var(--white);
}
.cc_project_location {
	min-height: 1px;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: var(--yellow);
}
.cc_project_title_separator {
	height: 1px;
	margin-bottom: 6px;
	background-color: var(--yellow);
}
.cc_project_year {
	padding-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--yellow);
}
.cc_project p {
	margin-bottom: 16px;
	line-height: 24px;
	letter-spacing: -0.5px;
}
.cc_project strong {
	font-weight: 700 !important;
	color: var(--yellow);
}
.cc_project blockquote {
	margin: 0px !important;
	max-width: none !important;
	font-style: italic;
}
.cc_attribution {
	max-width: 80%;
	margin: 0px auto;
}
.cc_attribution::before {
	content: "- ";
}
.cc_project .cc_gallery {
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	/*justify-content: center;*/
}
.cc_project img {
	max-width: 50%;
	display: block;
	cursor: pointer;
}
.cc_caption {
	font-size: 14px;
	line-height: 18px;
	margin-top: -8px;
	margin-bottom: 16px;
}
.cc_project .cc_side_by_side {
	margin-bottom: 16px;
	display: flex;
	gap: 8px;
}
.cc_project .cc_img_small {
	max-height: 240px;
	max-width: none;
}
.cc_project a {
	color: var(--yellow) !important;
}
.cc_project a:visited {
	color: var(--yellow) !important;
}
.cc_project iframe {
	display: block;
	/*margin: 0px auto;*/
}

.cc_slide_nav {
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
.cc_slide_nav_dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.cc_slide_nav_dot {
	height: 16px;
	width: 16px;
	background-color: var(--light_gray);
	cursor: pointer;
}
.cc_slide_nav_dot_active {
	background-color: var(--white);
}
.cc_slide_nav_arrow {
	height: 24px;
	width: 16px;
	cursor: pointer;
}

.cc_map_container {
	flex-grow: 1;
	position: relative;
}
.cc_map {
	position: relative;
	z-index: 2;
}
.cc_map_background {
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.cc_project_nav {
	position: absolute;
	top: 0px;
	left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	color: var(--yellow);
	z-index: 3;
}
.cc_project_nav_arrow {
	height: 24px;
	width: 16px;
	cursor: pointer;
}

.cc_years_container {
	position: relative;
	margin-top: 24px;
	overflow: hidden;
}
.cc_years {
	position: relative;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: var(--white);
	-ms-overflow-style: none; /* For Internet Explorer and Edge */
	scrollbar-width: none;
	transition: all 1.0s ease;
}
.cc_years::-webkit-scrollbar {
	display: none;
}
.cc_year {
	cursor: pointer;
	transition: all 1.0s ease;
}
.cc_year_separator {
	height: 40px;
	width: 1px;
	flex-shrink: 0;
	background-color: var(--light_gray);
}
.cc_year_active {
	font-size: 36px;
	color: var(--yellow);
}
.cc_years_arrow {
	height: 48px;
	width: 48px;
	position: absolute;
	top: 12px;
	background-color: var(--background);
	cursor: pointer;
}
.cc_years_arrow_backward {
	left: 0px;
	background-position: left !important;
}
.cc_years_arrow_forward {
	right: 0px;
	background-position: right !important;
}

.featherlight-close-icon {
	top: 2px !important;
	right: 2px !important;
	height: 24px !important;
	width: 24px !important;
	background-color: white !important;
	font-size: 28px !important;
	color: red !important;
}
.featherlight-content img {
	width: 100%;
	max-height: 800px;
	max-width: 1200px;
	margin: 0px auto;
}
.featherlight-content .cc_caption {
	margin-top: 4px;
}

@media (max-width: 1360px) and (min-width: 601px) {

	.cc_desktop {
		display: none;
	}
	.cc_tablet {
		display: block;
	}

	.cc_timeline_container {
		padding: 24px;
	}

	.cc_main_tablet {
		display: flex;
		gap: 24px;
	}

	.cc_main_tablet_left {
		position: relative;
		width: 280px;
		min-width: 280px;
	}
	.cc_header_tablet {
		font-size: 16px;
		text-align: center;
		color: var(--white);
		text-transform: uppercase;
	}
	.cc_header_tablet strong {
		font-weight: 900;
	}
	.cc_header_tablet img {
		width: calc(100% - 20px);
		margin-top: 5px;
		margin: 0px auto;
	}
	.cc_project_nav_container_tablet {
		position: absolute;
		top: 50px;
		left: 0px;
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}
	.cc_year_tablet {
		font-size: 36px;
		color: var(--yellow);
	}
	.cc_project_nav_tablet {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-size: 16px;
		color: var(--white);
	}
	.cc_project_nav_tablet .cc_project_nav_arrow {
		height: 36px;
		width: 24px;
	}

	.cc_main_tablet_right {
		flex-grow: 1;
		overflow: hidden;
	}
	.cc_filters_tablet {
		margin-bottom: 8px;
		font-size: 14px;
		color: var(--light_gray);
		text-transform: uppercase;
	}
	.cc_project_tablet {
		max-height: 100%;
		width: auto;
		min-width: auto;
	}

}

@media (max-width: 600px) {

	.cc_desktop {
		display: none;
	}
	.cc_mobile {
		display: block;
	}

	.cc_timeline_container {
		padding: 24px;
	}

	.cc_mobile_header {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		font-size: 16px;
		text-align: center;
		color: var(--white);
		text-transform: uppercase;
	}
	.cc_mobile_header strong {
		font-weight: 900 !important;
	}
	.cc_mobile_header img {
		max-height: 60px;
		margin: 0px auto;
	}

	.cc_years_container {
		margin-top: 8px;
	}
	.cc_years {
		height: 48px;
		font-size: 18px;
	}
	.cc_year_separator {
		height: 30px;
	}
	.cc_year_active {
		font-size: 24px;
	}
	.cc_years_arrow {
		height: 32px;
		width: 24px;
		top: 8px;
	}

	.cc_top_row_mobile {
		margin-top: 24px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.cc_year_mobile {
		font-weight: 700;
		font-size: 28px;
		color: var(--yellow);
	}
	.cc_project_nav_mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-size: 16px;
		color: var(--white);
	}
	.cc_project_nav_mobile .cc_project_nav_arrow {
		height: 24px;
		width: 16px;
	}

	.cc_filters_mobile {
		margin: 12px 0px;
		font-size: 14px;
		color: var(--light_gray);
		text-transform: uppercase;
	}

	.cc_project_mobile {
		width: auto;
		min-width: auto;
	}

}


