@font-face {
	font-family: "Roboto-Regular";
	src: url("Roboto-Regular.ttf"), format("ttf");
}

@font-face {
	font-family: "Roboto-Bold";
	src: url("Roboto-Bold.ttf"), format("ttf");
}


:root {
	--dark-blue: #07174c;
	--dark-blue-ll: #1033a8;
	--dark-blue-l: #0e2d95;

	--db-overlay: #07174c99;
	--light-blue: #16b5f1;
	--blue-shade: #0a122e;

	--size-1: 2.5rem;
	--size-2: 2rem;
	--size-3: 1.5rem;
	--size-4: 1.2rem;
	--size-5: 1rem;
}

html {
	height: 100%;
}

* body {
	font-family: "Roboto-Regular", sans-serif;
	font-size: var(--size-5);
	margin: 0;
	padding: 0;
	height: 10%;
	min-height: 100%;
	color: #333333;
}

b {
	font-family: "Roboto-Bold", sans-serif;
}

a {
	color: var(--dark-blue-ll);
}

.footer {
	margin-top: 6rem;
	text-align: center;
	font-style: italic;
	padding: 0 1rem 0.5rem 1rem;	
}

.footer a {
	color: #333333;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}


.no-display {
	display: none;
}



/* z-indexes */


#container {
	position: relative;
	z-index: 0;
}

#page-container,
#topper,
#header-img {
	z-index: 10;
}

#header-overlay,
.section,
.headline {
	z-index: 20;
}

.side-navigation,
#navigation-contents {
	z-index: 30;
}


#navigation-toggle {
	z-index: 40;
}


@media (min-width: 900px) {
	#container {
		display: flex;
	}
	.side-navigation {
		transition: width 0.5s;
		width: 270px;
		min-width: 270px;
		background-color: var(--dark-blue);
		color: white;
	}

	.navigation-contents {
		transition: all 0.2s;
		position: fixed;
		opacity: 1;
		width: 270px;
	}

	#navigation-toggle {
		display: none;
	}
	.logo-img {
		display: block;
		max-width: 150px;
		margin: auto;
	}
}


@media (max-width: 900px) {
	.hide {
		transition: all 0.2s;
		width: 0;
		opacity: 0;
		z-index: -10;
	}
	#container {
		display: block;
	}
	.side-navigation {
		position: fixed;
		width: 270px;
		min-width: 270px;
		height: 100%;
		background-color: var(--dark-blue);
		color: white;

	}
	.navigation-contents {
	
	}
	#navigation-toggle {
		position: fixed;
		width: 1.5rem;
		height: 1.5rem;
		padding: 0.5rem;
		margin: 1.5rem;
		background-color: var(--dark-blue);
		border-radius: 4px;
		cursor: pointer;

	}
	.logo-img {
		display: none;
	}

}




#logo-container {
	padding: 2rem;
	margin-bottom: 1rem;
}

.nav-item {
	width: auto;
	padding: 0.7rem 0 0.7rem 2rem;
	border-left: 4px solid transparent;
	font-size: 1.1rem;;
	font-weight: 600px;
	cursor: pointer;
}

.nav-item:hover {
	transition: all 1s;
	background-color: var(--dark-blue-ll); 
}


.nav-item-selected {
	background-color: var(--dark-blue-l);
	border-left: 4px solid #E30613;
	font-family: "Roboto-Bold";
}


#sandwich,
#close {
	color: white;
}

#map-icon,
#mail-icon {
	color: var(--dark-blue-ll);
	width: 30px;
	height: 30px;
	text-align: center;
}

#accom-map {
	margin: 2rem 0;
	height: 500px;
	max-height: 500px;

	
}

/*
@media (max-width: 900px) {
	.side-navigation  {
		transition: all 0.2s;
		width: 0;
		opacity: 0;
	}
	
	.navigation-contents {
		transition: all 0.2s;
		width: 0;
		opacity: 0;
	}

	#navigation-toggle {
		display: block;
	}
}
*/


#page-container {
	min-width: 0;
	flex: 1;
	position: relative;
}

#header-img,
#sm-header-img,
#wide-header-img  {
	max-width: 100%;
	width: auto;
}


#header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
}


.overlay-top-text,
.overlay-bottom-text {
	font-family: "Roboto-Regular", sans-serif;
	text-align: center;
	color: white;
}

.overlay-top-text {
	font-family: "Roboto-Bold", sans-serif;

}


.headline {
	font-family: "Roboto-Bold", sans-serif;
	text-align: center;
	padding: 1rem 0 0 0;
	color: var(--dark-blue);
	
}

.deadline,
.headline-2 {
	font-family: "Roboto-Bold", sans-serif;
	color: var(--dark-blue);
}

.section {
	max-width: inherit;
	font-size: var(--size-4);
	padding-top: 2rem;
	padding-bottom: 2rem;
	line-height: 1.7rem;
	border-bottom: 1px solid #eee;
}

.paragraph {
	margin-bottom: 1rem;
}

/******Breakpoints for scaling**********/


@media (max-width: 450px) {
	#wide-header-img {
		display: none;
	}
	#header-img {
		display: none;
	}
	#sm-header-img {
		display: block;
	}
	.overlay-top-text {
		display: none;
	}

	.overlay-bottom-text {
		display: none;
	}

	.headline {
		font-size: var(--size-3);
		margin: 2rem 0 0;
	}

	.headline-2 {
		font-size: var(--size-4);
		margin-bottom: 1.5rem;
		margin-top: 2rem;
	}

	.section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.map-container {
		height: 400px;
		max-height: 400px;
	}
	.header-logo-img {
		display: block;
		max-width: 25%;
		margin: auto;
		margin-top: 1rem;
	}
}


@media (min-width: 450px) and (max-width:1200px) {
	#wide-header-img {
		display: none;
	}
	#header-img {
		display: block;
	}
	#sm-header-img {
		display: none;
	}
	.overlay-top-text {
		margin-top: 10%;
		margin-left: 10%;
		margin-right: 10%;
		font-size: var(--size-3);

	}

	.overlay-bottom-text {
		margin-top: 1rem;
		font-size: var(--size-4);
	}

	.headline {
		font-size: var(--size-3);
		margin: 2rem 0 0;
	}

	.headline-2 {
		font-size: var(--size-4);
		margin-bottom: 1.5rem;
		margin-top: 2rem;
	}

	.section {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.map-container {
		height: 500px;
		max-height: 500px;
	}
	.header-logo-img {
		display: none;
	}
}

@media (min-width: 1200px) and (max-width:2000px) {
	#wide-header-img {
		display: none;
	}
	#header-img {
		display: block;
	}
	#sm-header-img {
		display: none;
	}
	.overlay-top-text {
		margin-top: 12%;
		margin-left: 12%;
		margin-right: 12%;
		font-size: var(--size-1);

	}

	.overlay-bottom-text {
		margin-top: 1rem;
		font-size: var(--size-3);
	}

	.headline {
		font-size: var(--size-2);
		margin: 2rem 0 1.5rem 0;
	}

	.deadline {
		margin-bottom: 1rem;
		font-size: var(--size-3);
	}

	.headline-2 {
		font-size: var(--size-3);
		margin-bottom: 3rem;
		margin-top: 3rem;
	}

	.section {
		transition: all 0.2s;
		padding-top: 1rem;
		padding-left: 8rem;
		padding-right: 8rem;
	}
	.map-container {
		height: 600px;
		max-height: 600px;
	}
	.header-logo-img {
		display: none;
	}
}

@media (min-width: 2000px) {
	#wide-header-img {
		display: block;
	}
	#header-img {
		display: none;
	}
	#sm-header-img {
		display: none;
	}

	.overlay-top-text {
		margin-top: 9%;
		margin-left: 12%;
		margin-right: 12%;
		font-size: var(--size-1);

	}

	.overlay-bottom-text {
		margin-top: 1rem;
		font-size: var(--size-3);
	}

	.headline {
		font-size: var(--size-2);
		margin: 2rem 0 0;
	}

	.deadline {
		margin-bottom: 1rem;
		font-size: var(--size-3);
	}

	.headline-2 {
		font-size: var(--size-3);
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	.section {
		transition: all 0.2s;
		font-size: 1.3rem;
		padding: 4rem 25rem 4rem 25rem;
	}
	.map-container {
		height: 600px;
		max-height: 600px;
	}
	.header-logo-img {
		display: none;
	}
}



