/**********************************

    Basic Elements

***********************************/
body {
	color: #303658;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	overflow: hidden;
}
@media screen and (min-width: 2000px) {
	body {
		font-size: 22px;
	}
}

h1 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8rem;
	margin: 8px 18px 0;
	padding: 8px 0;
	text-align: center;
}
@media screen and (min-width: 576px) {
	h1 {
		font-size: 1.8rem;
		line-height: 2.1rem;
	}
}
@media screen and (min-width: 992px) {
	h1 {
		font-size: 2.4rem;
		line-height: 2.5rem;
	}
}

h2 {
	color: #303658;
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
	padding: 5px 0;
}
@media screen and (min-width: 576px) {
	h2 {
		font-size: 1.8rem;
	}
}
@media screen and (min-width: 992px) {
	h2 {
		font-size: 2.2rem;
	}
}

h3 {
	color: #303658;
	font-size: 1.2rem;
	font-weight: 700;
}
@media screen and (min-width: 576px) {
	h3 {
		font-size: 1.5rem;
	}
}

h4 {
	color: #303658;
	font-size: 1rem;
	font-weight: 700;
}
@media screen and (min-width: 576px) {
	h4 {
		font-size: 1.2rem;
	}
}

p {
	font-size: 0.9rem;
	margin: 22px 0;
}
@media screen and (min-width: 768px) {
	p {
		font-size: 1rem;
	}
}

li {
	font-size: 0.9rem;
	margin: 8px 0;
}
@media screen and (min-width: 768px) {
	li {
		font-size: 1rem;
	}
}

a {
	transition: background 0.2s, color 0.2s;
}

button {
	background: #fff;
	border-radius: 6px;
	border: 0;
	color: #424242;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 16px;
	padding: 8px 28px;
	transition: filter 0.2s;
}
@media screen and (min-width: 768px) {
	button {
		font-size: 1.2rem;
	}
}
button:hover {
	filter: brightness(0.8);
}

.ada-element {
	left: -9999px;
	position: absolute;
}

/**********************************

    Intro screen 

***********************************/
#intro-screens {
	display: none;
	height: 100%;
	left: 0;
	opacity: 1;
	position: absolute;
	top: 0;
	transition: 0.7s;
	width: 100%;
	z-index: 50;
}
#intro-screens.exhausted {
	opacity: 0;
	top: -100%;
}

.has-js #intro-screens {
	display: block;
}

#introduction {
	background: #303658;
	background-image: url("../images/vlcsnap-2025-03-28-15h29m53s217.jpg");
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 52;
}
#introduction.acknowledged {
	opacity: 0;
	top: -100%;
	transition: 1s;
}
#introduction > div {
	border-radius: 16px;
	color: #fff;
	font-size: 0.85em;
	left: 50%;
	max-height: 100%;
	overflow: auto;
	padding: 30px 7% 46px;
	position: absolute;
	text-align: center;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
}
@media screen and (min-width: 576px) {
	#introduction > div {
		font-size: 1rem;
		padding: 32px 4%;
	}
}
@media screen and (min-width: 1290px) {
	#introduction > div {
		padding: 48px 4% 54px;
	}
}
#introduction img[src*="logo"] {
	display: block;
	margin: 0 auto;
	max-width: 250px;
	width: 100%;
}
@media screen and (min-width: 992px) {
	#introduction img[src*="logo"] {
		max-width: 360px;
	}
}
@media screen and (min-width: 1290px) {
	#introduction img[src*="logo"] {
		max-width: 480px;
	}
}
#introduction #intro-desc {
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.6em;
	margin: 28px auto;
	width: 100%;
}
@media screen and (min-width: 992px) {
	#introduction #intro-desc {
		font-size: 0.9rem;
		margin: 40px auto 28px;
		width: 80%;
	}
}
@media screen and (min-width: 1290px) {
	#introduction #intro-desc {
		font-size: 1rem;
		margin: 52px auto 40px;
	}
}
#introduction ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 34px;
	padding: 0;
}
#introduction ul li {
	font-size: 0.8rem;
	margin-bottom: 18px;
	width: 46%;
}
@media screen and (min-width: 992px) {
	#introduction ul li {
		font-size: 0.85rem;
		width: 22%;
	}
}
@media screen and (min-width: 1290px) {
	#introduction ul li {
		font-size: 1rem;
	}
}
#introduction ul li img {
	display: block;
	height: 52px;
	margin: 0 auto 16px;
}
@media screen and (min-width: 992px) {
	#introduction ul li img {
		height: 64px;
	}
}
@media screen and (min-width: 1290px) {
	#introduction ul li img {
		height: 88px;
	}
}
#introduction button {
	font-size: 0.9rem;
}
@media screen and (min-width: 1290px) {
	#introduction button {
		font-size: 1.1rem;
	}
}

#skiptocontent {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 0 #000;
	color: #303658;
	font-size: 1.3rem;
	left: -9999px;
	padding: 6px 12px;
	position: absolute;
	top: -9999px;
}
#skiptocontent:focus {
	left: 8px;
	top: 8px;
}

#walkthrough {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

#walkthrough-cover {
	background: rgba(0, 0, 0, 0.6);
	cursor: pointer;
	height: 100%;
	margin-top: -40px;
	position: absolute;
	transition: 0.75s;
	width: 100%;
}
#walkthrough-cover:after {
	background: rgba(0, 0, 0, 0.6);
	content: "";
	cursor: pointer;
	display: none;
	height: 40px;
	position: absolute;
	top: 100%;
	width: 290px;
}
@media screen and (min-width: 992px) {
	#walkthrough-cover:after {
		display: block;
	}
}

#instruction {
	background: #303658;
	bottom: 60px;
	box-shadow: 0 8px 8px -4px #000;
	color: #fff;
	font-size: 0.85rem;
	left: 24px;
	position: absolute;
	right: auto;
	text-align: center;
	top: auto;
	transition: 0.75s;
	width: 220px;
}
@media screen and (min-width: 576px) {
	#instruction {
		font-size: 1rem;
		width: 300px;
	}
}
@media screen and (min-width: 992px) {
	#instruction {
		left: 340px;
	}
}
#instruction p {
	clear: both;
	display: none;
	margin: 0;
	padding: 16px 24px 12px;
}
#instruction p.showing {
	display: block;
}
#instruction .close-walkthrough {
	background: transparent;
	border-radius: 0;
	color: #fff;
	float: right;
	font-size: 2.4em;
	line-height: 1.2em;
	margin-top: 4px;
	padding: 3px 16px;
}
#instruction #got-instruction {
	background: transparent;
	color: #fff;
	font-weight: 700;
	margin-bottom: 14px;
}
#instruction img {
	bottom: 14px;
	left: 25px;
	position: absolute;
	top: auto;
	transition: 0.75s;
	width: 46px;
}
@media screen and (min-width: 576px) {
	#instruction img {
		width: 70px;
	}
}

.got1 #walkthrough-cover {
	margin-left: 0;
	margin-top: 0;
}
@media screen and (min-width: 992px) {
	.got1 #walkthrough-cover {
		margin-left: 290px;
	}
}
.got1 #instruction {
	left: 24px;
	bottom: auto;
	top: 64px;
}
@media screen and (min-width: 992px) {
	.got1 #instruction {
		left: 320px;
		top: 64px;
	}
}
.got1 #instruction img {
	transform: rotate(180deg) rotateY(180deg);
	top: 16px;
}
@media screen and (min-width: 992px) {
	.got1 #instruction img {
		transform: none;
		top: 24;
	}
}

.got2 #walkthrough-cover {
	margin-left: 0;
}
.got2 #instruction {
	left: auto;
	right: 3%;
	top: 76px;
}
.got2 #instruction img {
	bottom: auto;
	left: 100px;
	position: absolute;
	transform: rotate(180deg);
	top: 12px;
	width: 48px;
}
@media screen and (min-width: 576px) {
	.got2 #instruction img {
		left: 165px;
		width: 70px;
	}
}

/**********************************

    Left menu

***********************************/
#screen {
	display: flex;
	height: 100%;
	left: 0;
	position: absolute;
	transition: left 0.6s;
	width: 100%;
}

#menu {
	background-color: #b5d9e2;
	flex-shrink: 0;
	height: 100%;
	left: -230px;
	position: absolute;
	transition: left 0.6s, margin 0.6s;
	width: 230px;
	z-index: 1;
}
@media screen and (min-width: 576px) {
	#menu {
		left: -290px;
		width: 290px;
	}
}
@media screen and (min-width: 992px) {
	#menu {
		left: 0;
		position: relative;
	}
}
#menu > div {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow-y: auto;
	position: relative;
	z-index: 1;
}

.menu-hidden #menu {
	margin-left: -290px;
}

.contact-open #menu {
	margin-left: -290px;
}

.mobile-menu-open #menu {
	left: 0;
	z-index: 1;
}

#mobile-menu-close {
	background: #000;
	background: rgba(0, 0, 0, 0.36);
	border: 0;
	border-radius: 0;
	display: none;
	height: 100%;
	margin: 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}
#mobile-menu-close.animate {
	margin-left: 230px;
	transition: margin 0.6s;
}
@media screen and (min-width: 576px) {
	#mobile-menu-close.animate {
		margin-left: 290px;
	}
}
@media screen and (min-width: 992px) {
	#mobile-menu-close.animate {
		margin-left: 200px;
	}
}

#menu-top {
	background: #fff;
	padding: 24px 6% 20px;
	text-align: center;
}
@media screen and (min-width: 576px) {
	#menu-top {
		padding: 26px 0 24px;
	}
}
#menu-top a {
	display: block;
	text-decoration: none;
}

.logo {
	display: block;
	margin: 0 auto;
	width: 180px;
}
@media screen and (min-width: 576px) {
	.logo {
		width: 240px;
	}
}

#meeting-title {
	color: #303658;
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3rem;
	margin: 8px 0 0;
}
@media screen and (min-width: 576px) {
	#meeting-title {
		font-size: 1.3rem;
		line-height: 1.6rem;
	}
}

#menu-bottom {
	display: flex;
	flex-direction: column-reverse;
	flex: 1 0;
}

#menu-options {
	font-size: 0.9rem;
	padding: 18px 6% 14px;
	text-align: center;
}
#menu-options > button {
	background: transparent;
	border-radius: 0;
	color: #303658;
	font-size: 0.9rem;
	margin: 0 0 4px;
	padding: 0;
	text-decoration: underline;
}
#menu-options > button:hover {
	color: #303658;
}

#translation-widget {
	display: none;
	width: 100%;
}
#translation-widget label {
	left: -9999px;
	position: absolute;
}
#translation-widget select {
	margin-bottom: 8px;
	width: 100%;
}

.has-js #translation-widget {
	display: block;
}

#google_translate_element {
	display: none;
}

#side-menu {
	border-width: 1px 0;
	flex-grow: 1;
	overflow-y: auto;
	padding: 0;
}
#side-menu button {
	background: #303658;
	border-bottom: 1px solid #fff;
	border-left: 10px solid #f26722;
	border-radius: 0;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.1rem;
	margin: 0;
	min-height: 36px;
	opacity: 0.9;
	padding: 12px 12px 12px 12px;
	position: relative;
	text-align: left;
	transition: 0.2s;
	width: 100%;
}
@media screen and (min-width: 576px) {
	#side-menu button {
		font-size: 1rem;
		line-height: 1.3rem;
	}
}
#side-menu button span:focus {
	border: 2px solid #303658;
	display: block;
}
#side-menu button.input-slide {
	border-left-color: #187cac;
}
#side-menu button:hover {
	background: #000;
	opacity: 1;
}
#side-menu button[aria-selected="true"] {
	background-color: #000;
	border-left-color: #51935c;
}

#menu-toggle {
	display: none;
	font-size: 0.85rem;
	left: 100%;
	margin-left: 5%;
	top: 9px;
	position: absolute;
	transition: margin 0.6s;
	z-index: 1;
}
@media screen and (min-width: 576px) {
	#menu-toggle {
		margin-left: 7%;
	}
}
@media screen and (min-width: 992px) {
	#menu-toggle {
		font-size: 1rem;
		margin-left: 12%;
		top: 14px;
	}
}
@media screen and (min-width: 2000px) {
	#menu-toggle {
		font-size: 0.9rem;
	}
}
#menu-toggle span {
	background-color: #303658;
	display: block;
	height: 2px;
	margin: 4px auto;
	transition: margin 0.2s, transform 0.2s;
	width: 22px;
}

.has-js #menu-toggle {
	display: block;
}

#menu-toggle.not-on-desktop {
	display: block;
}
@media screen and (min-width: 992px) {
	#menu-toggle.not-on-desktop {
		display: none;
	}
}

.menu-open #menu-toggle {
	margin-left: 10%;
}
.menu-open #menu-toggle span:first-of-type {
	transform: rotate(-25deg);
	margin-top: 6px;
	width: 16px;
}
.menu-open #menu-toggle span:last-of-type {
	transform: rotate(25deg);
	margin-top: -6px;
	width: 16px;
}
.menu-open #menu-toggle span:nth-of-type(2) {
	opacity: 0;
}

.mobile-menu-open #menu-toggle {
	margin-left: 4%;
	z-index: 2;
}
@media screen and (min-width: 992px) {
	.mobile-menu-open #menu-toggle {
		margin-left: 5%;
	}
}
.mobile-menu-open #menu-toggle span:first-of-type {
	transform: rotate(-25deg);
	margin-top: 6px;
	width: 16px;
}
.mobile-menu-open #menu-toggle span:last-of-type {
	transform: rotate(25deg);
	margin-top: -6px;
	width: 16px;
}
.mobile-menu-open #menu-toggle span:nth-of-type(2) {
	opacity: 0;
}

.hdr-modal-showing #menu-toggle {
	z-index: -1;
}

.meeting-button {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 8px -2px #222;
	color: #303658;
	font-size: 0.8rem;
	font-weight: 700;
	height: 50px;
	margin: 0;
	overflow: hidden;
	padding: 0 20px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
}
.meeting-button:after {
	background: rgba(155, 155, 155, 0.2);
	content: "";
	height: 100%;
	left: -100px;
	position: absolute;
	top: 0;
	transform: skewX(-22deg);
	transition: 0s;
	width: 90px;
}
.meeting-button:hover:after {
	left: 170px;
	transition: left 1s;
}

/* Modal Window */
.hdr-modal-showing {
	overflow: hidden;
}

.hdr-launch-modal {
	display: none;
}

.has-hdr-modals .hdr-launch-modal {
	color: #303658;
	display: block;
}
.has-hdr-modals .hdr-launch-modal:hover {
	color: #303658;
}

.hdr-close-modal {
	display: none;
}

.hdr-modal-window {
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: -100%;
	transition: 0s;
	width: 100%;
	z-index: 1000;
}
.hdr-modal-window.showing {
	top: 0;
	transition: top 1s;
}
.hdr-modal-window .hdr-close-modal span {
	left: -9999px;
	position: absolute;
}
.hdr-modal-window > .hdr-close-modal {
	background-color: rgba(0, 0, 0, 0.75);
	border: 0;
	border-radius: 0;
	cursor: pointer;
	display: block;
	height: 100%;
	left: 0;
	margin: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.hdr-modal-window .hdr-modal-title {
	margin: 24px 20px 0 0;
}
@media screen and (min-width: 768px) {
	.hdr-modal-window .hdr-modal-title {
		margin: 36px 28px 6px 0;
	}
}
.hdr-modal-window :focus {
	border-radius: 2px;
	outline: 2px groove #eee;
}
.hdr-modal-window > div {
	background-color: #fff;
	box-shadow: 4px 13px 28px 0 #111;
	left: 50%;
	max-height: 82%;
	overflow: auto;
	padding: 0 24px 6px;
	position: absolute;
	top: 8%;
	transform: translateX(-50%);
	width: 84%;
}
@media screen and (min-width: 768px) {
	.hdr-modal-window > div {
		max-height: 52%;
		padding: 0 3% 22px;
		top: 24%;
		width: 54%;
	}
}
.hdr-modal-window > div .hdr-close-modal {
	background: transparent;
	border: 0;
	color: #303658;
	font-size: 2em;
	line-height: 0.6em;
	padding: 0 5px 3px;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media screen and (min-width: 768px) {
	.hdr-modal-window > div .hdr-close-modal {
		font-size: 3em;
	}
}
.hdr-modal-window > div .hdr-close-modal:hover {
	color: #666;
}

/**********************************

    Slide Specific

***********************************/
#mainArea {
	background-color: #99bfd7;
	background-size: cover;
	background-position: center;
	overflow: auto;
	padding-bottom: 32px;
	position: relative;
	transition: left 0.6s, margin 0.6s, width 0.6s;
	width: 100%;
}

.has-js #mainArea {
	padding-bottom: 0;
}

.menu-hidden #mainArea {
	margin-left: 0;
	width: 100%;
}

.contact-open #mainArea {
	margin-left: -270px;
}
@media screen and (min-width: 576px) {
	.contact-open #mainArea {
		margin-left: -390px;
	}
}

#slides {
	padding: 0;
	position: relative;
	transition: left 0.6s, margin 0.6s;
	top: 24px;
	width: 100%;
}

.has-js #slides {
	bottom: 54px;
	position: absolute;
	top: 70px;
}
@media screen and (min-width: 992px) {
	.has-js #slides {
		bottom: 68px;
		top: 88px;
	}
}

.slide {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 15px -4px #000;
	overflow-y: auto;
	padding: 26px 7% 14px;
	width: 96%;
}
@media screen and (min-width: 576px) {
	.slide {
		padding: 26px 5%;
	}
}
@media screen and (min-width: 768px) {
	.slide {
		padding: 36px 5%;
	}
}
@media screen and (min-width: 1290px) {
	.slide {
		padding: 36px 3.5%;
	}
}
@media screen and (min-width: 2000px) {
	.slide {
		padding: 44px 3%;
	}
}
.slide a {
	color: #303658;
}
.slide img {
	max-width: 100%;
}

.has-js .slide {
	display: none;
	height: 100%;
	margin: 0;
	margin-left: -100%;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	transition: 0s;
}

.slide.showing {
	margin-left: 2%;
	margin-top: 0;
	opacity: 1;
	transition: margin-left 0s, margin-top 0.8s, opacity 0.8s;
}

.slide[aria-hidden="false"] {
	display: block;
}

.subheader {
	font-weight: 700;
}

hr {
	border-top-color: #1a2a53;
	border-top-width: 2px;
	margin: 30px 0 42px;
	opacity: 1;
}

.orange {
	color: #f26722;
}

.teal {
	color: #187cac;
}

#phase1-includes {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 22px 0 24px;
	padding: 0;
}
#phase1-includes li {
	background: #1a2a53;
	border-radius: 8px;
	color: #fff;
	font-weight: 700;
	padding: 32px 38px;
	text-align: center;
	width: 100%;
}
@media screen and (min-width: 576px) {
	#phase1-includes li {
		width: 48%;
	}
}
@media screen and (min-width: 1290px) {
	#phase1-includes li {
		width: 23%;
	}
}
#phase1-includes li img {
	display: block;
	margin: 0 auto 26px;
}
#phase1-includes + p img {
	width: 100%;
}

#location-maps {
	margin: 0;
}
#location-maps > * {
	padding: 0;
}
#location-maps img {
	margin-bottom: 24px;
}
#location-maps .hdr-lightbox.enhanced img {
	margin: 0;
}

#purpose-need {
	margin: 0;
}
#purpose-need > div:first-of-type {
	align-items: center;
	background: #99bfd7;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding: 28px;
}
#purpose-need > div:last-of-type {
	padding-left: 0;
}
@media screen and (min-width: 768px) {
	#purpose-need > div:last-of-type {
		padding-left: 36px;
	}
}

#phases-schedule {
	display: block;
	font-size: 0.9em;
	gap: 34px;
}
@media screen and (min-width: 768px) {
	#phases-schedule {
		display: flex;
		font-size: 1em;
	}
}
#phases-schedule > div {
	background: #e8f3fa;
	border-radius: 14px;
	flex: 1;
	margin-bottom: 18px;
	padding: 20px 28px 56px;
	position: relative;
}
@media screen and (min-width: 768px) {
	#phases-schedule > div {
		margin: 0;
	}
}
#phases-schedule > div span {
	background: #51935c;
	border-radius: 80px;
	bottom: 24px;
	color: #fff;
	font-weight: 700;
	padding: 3px 16px 2px;
	position: absolute;
}
#phases-schedule > div:first-of-type {
	background: #f26722;
	color: #fff;
	position: relative;
}
#phases-schedule > div:first-of-type h3 {
	color: #fff;
}
#phases-schedule > div:first-of-type:after {
	border: 20px solid transparent;
	border-width: 30px 24px;
	border-top-color: #f26722;
	content: "";
	display: none;
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
	#phases-schedule > div:first-of-type:after {
		display: block;
	}
}

.phase1-schedule {
	display: block;
	gap: 34px;
	margin: 30px 0;
}
@media screen and (min-width: 768px) {
	.phase1-schedule {
		display: flex;
		font-size: 1em;
	}
}
.phase1-schedule > div {
	background: #f26722;
	border-radius: 14px;
	color: #fff;
	flex: 1;
	font-size: 0.8rem;
	margin-bottom: 18px;
	position: relative;
}
@media screen and (min-width: 1290px) {
	.phase1-schedule > div {
		font-size: 1rem;
		margin: 0;
	}
}
.phase1-schedule > div ul {
	padding-left: 14px;
}
@media screen and (min-width: 1290px) {
	.phase1-schedule > div ul {
		padding-left: 32px;
	}
}
.phase1-schedule > div li {
	font-size: 0.9rem;
}
@media screen and (min-width: 1290px) {
	.phase1-schedule > div li {
		font-size: 1rem;
	}
}
.phase1-schedule > div:after {
	border: 20px solid transparent;
	border-width: 26px 34px;
	border-left-color: #f26722;
	content: "";
	display: none;
	left: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
	.phase1-schedule > div:after {
		display: block;
	}
}
.phase1-schedule > div h4 {
	background: #f26722;
	border-radius: 14px 14px 0 0;
	color: #fff;
	font-weight: 700;
	padding: 14px 28px;
}
.phase1-schedule > div h4 + div {
	padding-top: 10px;
}
.phase1-schedule > div > div {
	padding: 20px 28px;
}
.phase1-schedule > div h5 {
	font-size: 1.2em;
	font-weight: 700;
	margin-bottom: 18px;
}
.phase1-schedule > div span {
	background: #303658;
	border-radius: 80px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	line-height: 1.2em;
	margin: 4px 0;
	padding: 6px 18px 5px;
}
@media screen and (min-width: 1290px) {
	.phase1-schedule > div span {
		padding: 8px 26px 7px;
	}
}

.big-img {
	border: 1px solid #aaa;
	overflow: auto;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.big-img {
		border: 0;
	}
}
.big-img img {
	max-width: 8000%;
	width: 768px;
}
@media screen and (min-width: 768px) {
	.big-img img {
		width: 100%;
	}
}

#existing-conditions {
	margin: 16px 0;
	width: 100%;
}
#existing-conditions thead {
	background: #303658;
}
#existing-conditions thead tr > th {
	color: #fff;
}
#existing-conditions tbody tr {
	background: #e8f3fa;
}
#existing-conditions tbody tr:nth-of-type(even) {
	background: #e7e7e7;
}
#existing-conditions tr > th,
#existing-conditions tr > td {
	border: 2px solid #fff;
	color: #424242;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 4px 9px;
}
@media screen and (min-width: 768px) {
	#existing-conditions tr > th,
	#existing-conditions tr > td {
		font-size: 1rem;
		padding: 8px 15px;
	}
}

#adt-info {
	align-items: center;
}

#adt-legend h3 {
	font-weight: 900;
	margin-top: 28px;
	margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
	#adt-legend h3 {
		margin-top: 0;
	}
}
#adt-legend ul {
	list-style: none;
	margin-bottom: 42px;
	padding: 0;
}
#adt-legend ul li {
	margin: 4px 0;
}
#adt-legend ul li span {
	background: #1a7bab;
	border-radius: 12px 12px 0 0;
	color: #fff;
	display: inline-block;
	font-size: 1em;
	font-weight: 700;
	margin-right: 10px;
	padding: 1px 12px;
	text-align: center;
	vertical-align: middle;
	width: 100px;
}
@media screen and (min-width: 1290px) {
	#adt-legend ul li span {
		font-size: 1.2em;
		width: 140px;
	}
}
#adt-legend ul li:last-of-type span {
	background: #303658;
	border-radius: 0 0 12px 12px;
}

#crash-history > div:first-of-type {
	margin-bottom: 32px;
	padding-right: 32px;
}
@media screen and (min-width: 1290px) {
	#crash-history > div:first-of-type {
		margin-bottom: 0;
	}
}

#safety-counts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	padding: 0;
}
#safety-counts > li {
	background: #187cac;
	border-radius: 8px;
	color: #fff;
	font-size: 0.9em;
	font-weight: 700;
	padding: 20px 10px;
	text-align: center;
	width: 48%;
}
@media screen and (min-width: 576px) {
	#safety-counts > li {
		width: 23%;
	}
}
@media screen and (min-width: 1290px) {
	#safety-counts > li {
		font-size: 1.2em;
		padding: 28px 14px;
	}
}
#safety-counts > li ul {
	margin-top: 22px;
	padding-left: 18px;
}
@media screen and (min-width: 1290px) {
	#safety-counts > li ul {
		padding-left: 28px;
	}
}
#safety-counts > li ul li {
	font-size: 0.75em;
	text-align: left;
}
#safety-counts > li span {
	background: #fff;
	border-radius: 50%;
	color: #303658;
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	height: 62px;
	line-height: 62px;
	margin: 0 auto 12px;
	width: 62px;
}

#crash-circles {
	margin: 42px 0 32px;
	text-align: center;
}
#crash-circles img {
	margin-bottom: 18px;
	width: 240px;
}
#crash-circles ul {
	list-style: none;
	padding: 0;
	text-align: left;
}
#crash-circles ul h5 {
	font-size: 0.85em;
	font-weight: 700;
}
@media screen and (min-width: 992px) {
	#crash-circles ul h5 {
		font-size: 1em;
	}
}
#crash-circles ul li {
	color: #e5541c;
	font-weight: 700;
}
#crash-circles ul li:nth-of-type(2) {
	color: #13517f;
}
#crash-circles ul li:nth-of-type(3) {
	color: #187cac;
}
#crash-circles ul li:nth-of-type(4) {
	color: #50925c;
}

#potential-causes {
	background: #e8f3fa;
	border-radius: 12px;
	padding: 32px 34px;
}
#potential-causes #cause-graph {
	display: flex;
	margin-bottom: 48px;
}
#potential-causes #cause-graph > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 100%;
}
@media screen and (min-width: 768px) {
	#potential-causes #cause-graph > ul {
		text-align: right;
		width: 50%;
	}
}
#potential-causes #cause-graph > ul li {
	font-size: 0.9rem;
	position: relative;
}
@media screen and (min-width: 768px) {
	#potential-causes #cause-graph > ul li {
		font-size: 0.75rem;
	}
}
@media screen and (min-width: 1290px) {
	#potential-causes #cause-graph > ul li {
		font-size: 0.85rem;
	}
}
#potential-causes #cause-graph > ul li span {
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	#potential-causes #cause-graph > ul li span {
		left: -9999px;
		position: absolute;
	}
}
#potential-causes #cause-graph > ul li:after {
	background: #187cac;
	content: "";
	display: none;
	height: 12px;
	left: 100%;
	margin-left: 8.3333%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 64%;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	#potential-causes #cause-graph > ul li:after {
		display: block;
	}
}
#potential-causes #cause-graph > ul li:nth-of-type(2):after {
	width: 36%;
}
#potential-causes #cause-graph > ul li:nth-of-type(3):after {
	width: 10%;
}
#potential-causes #cause-graph > ul li:nth-of-type(4):after {
	width: 10%;
}
#potential-causes #cause-graph > div {
	display: none;
	position: relative;
	width: 50%;
}
@media screen and (min-width: 768px) {
	#potential-causes #cause-graph > div {
		display: block;
	}
}
#potential-causes #cause-graph > div ul {
	display: flex;
	list-style: none;
	height: 100%;
	padding: 0;
	width: 100%;
}
#potential-causes #cause-graph > div ul li {
	flex: 1;
	font-size: 0.75em;
	margin: 0;
	position: relative;
	text-align: center;
}
#potential-causes #cause-graph > div ul li:before {
	background: #d9d9d9;
	content: "";
	display: block;
	height: 100%;
	margin-left: 50%;
	margin-bottom: 5px;
	width: 1px;
}

#crash-probs {
	background: #e8f3fa;
	border-radius: 12px;
	padding: 32px 34px;
}
#crash-probs img {
	width: 100%;
}

/* Lightbox */
.hdr-lightbox {
	position: relative;
}
.hdr-lightbox a {
	display: block;
	padding: 0;
}
.hdr-lightbox a img:first-of-type {
	width: 100%;
}
.hdr-lightbox a img.larger-image {
	display: none;
}
.hdr-lightbox a img[alt="Zoom In"] {
	bottom: 0;
	padding: 12px;
	position: absolute;
	right: 0;
}
.hdr-lightbox > button {
	background-color: rgba(0, 0, 0, 0.75);
	border: 0;
	cursor: pointer;
	display: none;
	height: 0;
	left: -9999px;
	margin: 0;
	position: absolute;
	top: 0;
	transition: 0s;
	width: 100%;
}
.hdr-lightbox button span {
	left: -9999px;
	position: absolute;
}
.hdr-lightbox > div {
	top: 80px;
}
.hdr-lightbox > div .hdr-close-lightbox {
	background: 0;
	border: 0;
	font-size: 2em;
	display: none;
	line-height: 0.6em;
	padding: 6px 8px;
	position: fixed;
	right: 6px;
	top: 2px;
}
@media screen and (min-width: 992px) {
	.hdr-lightbox > div .hdr-close-lightbox {
		font-size: 3em;
		right: 14px;
		top: 6px;
	}
}

.showing-hdr-lightbox {
	overflow: hidden;
}

.hdr-lightbox.enhanced {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5555;
}
.hdr-lightbox.enhanced a img:first-of-type {
	max-width: 555%;
	width: 992px;
}
@media screen and (min-width: 992px) {
	.hdr-lightbox.enhanced a img:first-of-type {
		width: 100%;
	}
}
.hdr-lightbox.enhanced a img[alt="Zoom In"] {
	display: none;
}
.hdr-lightbox.enhanced.different-image a img:first-of-type {
	display: none;
}
.hdr-lightbox.enhanced.different-image a img.larger-image {
	display: block;
	max-width: 555%;
	width: 992px;
}
@media screen and (min-width: 992px) {
	.hdr-lightbox.enhanced.different-image a img.larger-image {
		width: 100%;
	}
}
.hdr-lightbox.enhanced > button {
	background: rgba(48, 48, 48, 0.5);
	display: block;
	height: 100%;
	left: 0;
	transition: height 0.6s, left 0s;
}
.hdr-lightbox.enhanced > button:hover {
	background: rgba(48, 48, 48, 0.6);
}
.hdr-lightbox.enhanced > div {
	background-color: #fff;
	border: 1px solid #333;
	box-shadow: 4px 13px 28px 0 #111;
	left: 6%;
	margin: 0;
	max-height: 80%;
	overflow: auto;
	position: absolute;
	top: 40px;
	transition: 0.8s;
	width: 86%;
}
.hdr-lightbox.enhanced > div .hdr-close-lightbox {
	display: block;
}
.hdr-lightbox.enhanced > div .hdr-close-lightbox:focus {
	border: 1px solid #aaa;
	color: #aaa;
}

.table-area {
	border: 1px solid #aaa;
	overflow: auto;
	width: 100%;
}
@media screen and (min-width: 576px) {
	.table-area {
		border: 0;
	}
}

#alt-eval {
	width: 576px;
}
@media screen and (min-width: 576px) {
	#alt-eval {
		width: 100%;
	}
}
#alt-eval th,
#alt-eval td {
	border: 1px solid #fff;
	font-size: 0.65em;
	line-height: 1.2em;
	padding: 6px 4px;
	text-align: center;
}
@media screen and (min-width: 992px) {
	#alt-eval th,
	#alt-eval td {
		font-size: 0.85em;
		padding: 8px 11px;
	}
}
@media screen and (min-width: 1290px) {
	#alt-eval th,
	#alt-eval td {
		font-size: 1em;
		padding: 12px 14px;
	}
}
#alt-eval thead tr {
	background: #303658;
	color: #fff;
}
#alt-eval tbody tr th {
	background: #187cac;
	color: #fff;
}
#alt-eval tbody tr:nth-of-type(odd) {
	background: #f7f7f6;
}
#alt-eval tbody tr img {
	height: 32px;
}
@media screen and (min-width: 992px) {
	#alt-eval tbody tr img {
		height: 52px;
	}
}

#alt-eval-legend {
	list-style-type: none;
	margin-top: 20px;
	padding: 0;
	text-align: right;
}
#alt-eval-legend li {
	display: inline-block;
	font-weight: 700;
	margin-right: 26px;
}
#alt-eval-legend li img {
	display: inline-block;
	height: 32px;
	margin-right: 3px;
}
#alt-eval-legend li span {
	display: inline-block;
	margin-left: 5px;
}

#project-logos {
	border-top: 2px solid #bcbcbc;
	padding-top: 26px;
	text-align: center;
}
#project-logos img:first-of-type {
	height: 76px;
	margin: 14px 6%;
}

/* Image Slideshow */
.hdr-slideshow {
	width: 100%;
}
.hdr-slideshow button {
	background: #666;
	background: rgba(48, 48, 48, 0.6);
}
.hdr-slideshow button:hover {
	background: #444;
	background: rgba(24, 24, 24, 0.8);
}
.hdr-slideshow button span {
	left: -9999px;
	position: absolute;
}

.hdr-move {
	display: none;
	height: 38px;
	padding: 16px;
}
@media screen and (min-width: 992px) {
	.hdr-move {
		height: auto;
		padding: 0;
	}
}

.hdr-slides {
	height: 100%;
	list-style: none;
	padding: 0;
	position: relative;
}
.hdr-slides > li {
	display: inline-block;
	margin-right: 3%;
	position: relative;
	top: 0;
	width: 100%;
}
@media screen and (min-width: 992px) {
	.hdr-slides > li {
		width: 30%;
	}
}

.hdr-caption {
	font-size: 0.85em;
	left: 0;
	margin: 48px 0 0;
	padding: 14px 0 14px 32px;
	position: absolute;
	top: 100%;
	width: 100%;
	z-index: 1;
}
.hdr-caption h3 {
	color: #187cac;
}
.hdr-caption li {
	margin-bottom: 14px;
}
@media screen and (min-width: 576px) {
	.hdr-caption {
		left: 100%;
		margin-top: 0;
		top: 0;
		width: 51%;
	}
}
@media screen and (min-width: 992px) {
	.hdr-caption {
		font-size: 1.1em;
	}
}

.hdr-dotmenu {
	list-style: none;
	line-height: 1em;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}
@media screen and (min-width: 576px) {
	.hdr-dotmenu {
		width: 64%;
	}
}
.hdr-dotmenu li {
	display: inline-block;
	margin: 0;
	padding: 0 4px;
}
.hdr-dotmenu li button {
	background: #187cac;
	border-radius: 50%;
	height: 20px;
	margin: 0;
	padding: 0;
	width: 20px;
}
.hdr-dotmenu li.hdr-active button {
	background: #51935c;
}

.has-js .hdr-slideshow > div {
	position: relative;
	width: 100%;
}
@media screen and (min-width: 576px) {
	.has-js .hdr-slideshow > div {
		width: 64%;
	}
}
.has-js .hdr-move {
	border: 0;
	border-radius: 0 6px 6px 0;
	color: #fff;
	display: block;
	height: 50px;
	left: 0;
	padding: 0 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.4s;
	z-index: 1;
}
.has-js .hdr-move.hdr-next {
	border-radius: 6px 0 0 6px;
	left: auto;
	right: 0;
}
.has-js .hdr-move.hdr-nextafter {
	border-left-color: #fff;
	border-right-color: transparent;
	transform: translateX(-25%) translateY(-50%);
}
.has-js .hdr-move:after {
	border: 8px solid transparent;
	border-width: 6px 9px;
	border-right-color: #fff;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-75%) translateY(-50%);
}
@media screen and (min-width: 992px) {
	.has-js .hdr-move:after {
		border-width: 8px 12px;
	}
}
.has-js .hdr-move:hover {
	padding: 0 28px;
}
.has-js .hdr-move.hdr-next {
	border-radius: 6px 0 0 6px;
	left: auto;
	right: 0;
}
.has-js .hdr-move.hdr-next:after {
	border-left-color: #fff;
	border-right-color: transparent;
	transform: translateX(-25%) translateY(-50%);
}
.has-js .hdr-slides > li {
	display: block;
	height: 100%;
	left: -9999px;
	margin: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 0s;
	width: 100%;
}
.has-js .hdr-slides > li.hdr-active {
	left: 0;
	opacity: 1;
	position: static;
	top: 0;
	transition: opacity 0.25s;
}
.has-js .hdr-slides > li > img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/**********************************

    Bottom Progress Bar

***********************************/
#bottom-menu {
	background: #303658;
	bottom: 0;
	display: none;
	height: 40px;
	position: absolute;
	right: 0;
	transition: right 0.6s, width 0.6s;
	width: 100%;
}
#bottom-menu div {
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
}
@media screen and (min-width: 576px) {
	#bottom-menu div {
		width: 92%;
	}
}
#bottom-menu button {
	background: #303658;
	border-left: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 576px) {
	#bottom-menu button {
		border-left: 1px solid #99bfd7;
	}
}
#bottom-menu button:last-of-type {
	border-right: 0;
}
@media screen and (min-width: 576px) {
	#bottom-menu button:last-of-type {
		border-right: 1px solid #99bfd7;
	}
}
#bottom-menu button:hover {
	background: #0e6188;
	filter: none;
}
#bottom-menu button span {
	background: #fff;
	border-radius: 4px;
	bottom: 100%;
	box-shadow: 0 3px 8px -3px #222;
	display: none;
	font-size: 0.8rem;
	left: -9999px;
	line-height: 1.1rem;
	margin-left: -100px;
	margin-bottom: 22px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	text-align: center;
	width: 200px;
}
@media screen and (min-width: 992px) {
	#bottom-menu button span {
		display: block;
	}
}
#bottom-menu button span:after {
	border: 8px solid transparent;
	border-top-color: #fff;
	content: "";
	left: 50%;
	margin-left: -8px;
	position: absolute;
	top: 100%;
}
#bottom-menu button:hover span,
#bottom-menu button.focused span {
	left: 50%;
	margin-bottom: 14px;
	opacity: 1;
	transition: margin-bottom 0.5s, opacity 0.3s, left 0s, margin-left 0s,
		right 0s;
}
#bottom-menu .arrow {
	background: #303658;
	border-radius: 0;
	height: 100%;
	position: relative;
	text-align: center;
	width: 50%;
}
@media screen and (min-width: 576px) {
	#bottom-menu .arrow {
		width: 8%;
	}
}
#bottom-menu .arrow i {
	color: #fff;
	display: block;
	font-size: 1.6rem;
}
#bottom-menu .arrow span {
	width: 200px;
}
#bottom-menu .arrow:hover {
	background: #035;
}
#bottom-menu .arrow.disabled {
	cursor: default;
}
#bottom-menu .arrow.disabled:hover {
	background: #303658;
}
#bottom-menu .arrow.disabled i {
	opacity: 0.3;
}
#bottom-menu .arrow.disabled span {
	display: none;
}
#bottom-menu .previous-arrow {
	border-left: 0;
}
#bottom-menu .previous-arrow:hover span,
#bottom-menu .previous-arrow.focused span {
	left: 12px;
	margin-left: 0;
}
#bottom-menu .previous-arrow:hover span:after,
#bottom-menu .previous-arrow.focused span:after {
	left: 20%;
	margin-left: 0;
}
#bottom-menu .next-arrow {
	border: 0 !important;
}
#bottom-menu .next-arrow span {
	left: auto;
	right: 9999px;
	width: 200px;
}
#bottom-menu .next-arrow span:after {
	left: 80%;
}
#bottom-menu .next-arrow:hover span,
#bottom-menu .next-arrow.focused span {
	left: auto;
	right: 12px;
}
#bottom-menu nav {
	display: none;
	height: 100%;
	flex-grow: 1;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 84%;
}
@media screen and (min-width: 576px) {
	#bottom-menu nav {
		display: flex;
	}
}
#bottom-menu nav button {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}
#bottom-menu nav button:hover:after,
#bottom-menu nav button.focused:after {
	height: 10px;
	width: 94%;
}
#bottom-menu nav button.active {
	background: #187cac;
}
#bottom-menu nav button.active:hover {
	background: #0e6188;
}

.has-js #bottom-menu {
	display: flex;
}

/*****************************************

    Corner buttons & Contact form

******************************************/
#corner-buttons {
	display: none;
	position: absolute;
	right: 2%;
	top: 9px;
	transition: margin 0.6s;
}
@media screen and (min-width: 992px) {
	#corner-buttons {
		top: 14px;
	}
}
#corner-buttons a {
	display: inline-block;
	margin-right: 1px;
	opacity: 0.9;
	position: relative;
	transition: opacity 0.2s;
	vertical-align: top;
}
@media screen and (min-width: 576px) {
	#corner-buttons a {
		margin-right: 8px;
	}
}
#corner-buttons a img {
	height: 58px;
}
#corner-buttons a span {
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 8px -3px #222;
	color: #303658;
	font-size: 0.8rem;
	left: -9999px;
	line-height: 1.1rem;
	margin-left: -100px;
	margin-top: 12px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	text-align: center;
	top: 100%;
	width: 200px;
}
#corner-buttons a span:after {
	border: 8px solid transparent;
	border-bottom-color: #fff;
	bottom: 100%;
	content: "";
	left: 50%;
	margin-left: -8px;
	position: absolute;
}
#corner-buttons a:hover {
	opacity: 1;
}
#corner-buttons a:hover span,
#corner-buttons a:focus span {
	left: 50%;
	opacity: 1;
	transition: margin-bottom 0.5s, opacity 0.3s, left 0s, margin-left 0s,
		right 0s;
}
#corner-buttons > *:last-child:hover span,
#corner-buttons > *:last-child:focus span {
	left: -60%;
}
#corner-buttons > *:last-child span:after {
	left: 80%;
}

.contact-open #corner-buttons {
	margin-right: 280px;
}
.contact-open #corner-buttons a {
	display: none;
}
@media screen and (min-width: 992px) {
	.contact-open #corner-buttons a {
		display: inline-block;
	}
}
@media screen and (min-width: 576px) {
	.contact-open #corner-buttons {
		margin-right: 400px;
	}
}

.has-js #corner-buttons {
	display: block;
}

.mobile-menu-open #corner-buttons {
	display: none;
}
@media screen and (min-width: 576px) {
	.mobile-menu-open #corner-buttons {
		display: block;
	}
}

#contact-button {
	display: none;
}
@media screen and (min-width: 576px) {
	#contact-button {
		display: inline-block;
	}
}

#contact-button.instructing {
	z-index: 100;
}

#contact-button img {
	display: block;
	height: 14px;
	margin: 3px auto;
}
@media screen and (min-width: 2000px) {
	#contact-button img {
		margin: 5px auto 1px;
	}
}

.close-contact span {
	left: -9999px;
	position: absolute;
}

#contact {
	background: #fff;
	box-shadow: 0 0 14px 0 #111;
	height: auto;
	padding-left: 15%;
	position: static;
	right: -440px;
	top: 0;
	width: 100%;
	z-index: 1;
}
#contact h2 {
	font-size: 1.5rem;
	margin-top: 28px;
}
@media screen and (min-width: 992px) {
	#contact h2 {
		font-size: 1.8rem;
	}
}
#contact > div {
	height: 100%;
	overflow: auto;
	padding: 32px 22px 22px;
}
@media screen and (min-width: 576px) {
	#contact > div {
		padding: 32px 32px 24px;
	}
}
#contact > div .close-contact {
	background: transparent;
	color: #303658;
	display: none;
	font-size: 1.4em;
	font-weight: 700;
	margin: 0;
	padding: 10px;
	position: absolute;
	right: 12px;
	top: 8px;
}
#contact > .close-contact {
	background: #000;
	background: rgba(0, 0, 0, 0.56);
	border: 0;
	border-radius: 0;
	height: 100%;
	margin: 0;
	position: absolute;
	right: 100%;
	width: 800%;
}

.has-js #contact {
	display: none;
	font-size: 0.8rem;
	height: 100%;
	padding-left: 0;
	position: fixed;
	width: 270px;
}
@media screen and (min-width: 576px) {
	.has-js #contact {
		font-size: 1rem;
		width: 390px;
	}
}
.has-js #contact > div .close-contact {
	display: block;
}

.contact-open #contact {
	display: block;
}
.contact-open #contact.animate {
	right: 0;
	transition: 0.6s;
}

/*****************************************

    Landing Page

******************************************/
#landing-page {
	overflow: auto;
}
#landing-page #header-top {
	background: #303658;
	padding: 6px 3% 10px;
}
@media screen and (min-width: 576px) {
	#landing-page #header-top {
		padding: 12px 2%;
	}
}
#landing-page #header-top #translation-widget {
	width: 280px;
}
#landing-page #header-top #translation-widget img {
	display: inline-block;
}
#landing-page #header-top #translation-widget select {
	background: #303658;
	border: 0;
	color: #fff;
	display: inline-block;
	font-size: 0.75em;
	margin: 0;
	width: 70%;
}
@media screen and (min-width: 576px) {
	#landing-page #header-top #translation-widget select {
		font-size: 0.9em;
	}
}
#landing-page #header {
	background-image: url("../images/landing-hdr-bg.jpg");
	background-position: center;
	background-size: cover;
	padding: 44px 0;
}
@media screen and (min-width: 576px) {
	#landing-page #header {
		padding: 88px 0;
	}
}
@media screen and (min-width: 992px) {
	#landing-page #header {
		padding: 138px 0;
	}
}
#landing-page #header img {
	background: #000;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(6px);
	display: block;
	margin: 0 auto;
	padding: 68px 4%;
	width: 72%;
}
@media screen and (min-width: 992px) {
	#landing-page #header img {
		width: 54%;
	}
}
#landing-page main {
	padding: 48px 14%;
}
#landing-page main h2 {
	margin-top: 42px;
}
#landing-page main #landing-intro {
	font-weight: 700;
	text-align: center;
}
#landing-page main #landing-intro h2 {
	font-size: 1em;
	line-height: 1.4em;
	margin: 0;
}
@media screen and (min-width: 992px) {
	#landing-page main #landing-intro h2 {
		font-size: 1.2em;
	}
}
#landing-page main #landing-intro p {
	font-size: 0.8em;
	line-height: 1.6em;
	margin-top: 8px;
}
@media screen and (min-width: 992px) {
	#landing-page main #landing-intro p {
		font-size: 1em;
	}
}
#landing-page main #meeting-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	margin: 52px 0 56px;
	padding: 0;
}
#landing-page main #meeting-links li {
	margin: 14px 8px;
	text-align: center;
	width: 100%;
}
@media screen and (min-width: 992px) {
	#landing-page main #meeting-links li {
		width: 30%;
	}
}
#landing-page main #meeting-links li span {
	background: #187cac;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 9px 16px;
	padding: 6px 8px;
}

#landing-page main #meeting-links li .live {
	background: #50925c;
}
#landing-page main #meeting-links li img {
	display: block;
	margin: 0 auto;
}
#landing-page main #meeting-links li a {
	background: #303658;
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	margin-top: 22px;
	padding: 7px 18px;
	text-decoration: none;
}
#landing-page main #meeting-links li a:hover {
	background: #1f243f;
}
#landing-page main #project-contact {
	background: #f2f2f2;
	margin: 26px 0 36px;
	padding: 26px 18px 20px;
}
@media screen and (min-width: 576px) {
	#landing-page main #project-contact {
		padding: 36px 38px;
	}
}
#landing-page main #project-contact a {
	color: #303658;
	word-wrap: break-word;
}
#landing-page footer {
	align-items: center;
	background: #303658;
	display: block;
	justify-content: space-between;
	padding: 22px;
}
@media screen and (min-width: 576px) {
	#landing-page footer {
		padding: 32px 14%;
	}
}
@media screen and (min-width: 576px) {
	#landing-page footer {
		display: flex;
	}
}
#landing-page footer img {
	display: block;
	margin: 22px auto;
	width: 160px;
}
@media screen and (min-width: 576px) {
	#landing-page footer img {
		margin: 0;
	}
}
@media screen and (min-width: 992px) {
	#landing-page footer img {
		width: auto;
	}
}

/*# sourceMappingURL=main.css.map */

.unstyled-link {
	background-color: transparent !important;
	padding: 0 !important;
	text-decoration: none !important;
	margin: 0 !important;
}
