/* https://github.com/hankchizljaw/modern-css-reset */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

body {
	font: 16px/1.4em 'Source Sans Pro', sans-serif;
}

#map {
	width: 100%;
	height: 300px;
	margin-bottom: 20px;
}

#content {
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 100px;
}

#map .leaflet-popup-content-wrapper {
	background: rgba(255,255,255,0.8);
    box-shadow: 0 3px 14px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
	font: 16px/1.4em 'Source Sans Pro', sans-serif;	
}

.leaflet-popup-content .location {
	text-transform: uppercase;
	font-size: 0.8em;
	line-height: 1em;
	margin-bottom: 0.5em;
}

nav {
	width: 100%;
	padding: 10px;
	text-align: center;
}

nav #logo img {
	height: 50px;
	display: inline;
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

nav li {
	display: inline-block;
	margin: 0 5px;
}

nav a:link, nav a:visited {
	color: #333;
	text-decoration: none;
}

nav a:hover {
	color: #00adee;
	border-bottom: 2px solid #00adee;
}

nav:after {
	content: "";
	display: table;
	clear: both;
}

header {
	margin-bottom: 50px;
}

header p {
	text-align: center;
	font-size: 1.2em;
	color: #333;
	line-height: 1.2em;
	margin-top: 10px;
	margin-bottom: 20px;
}

#actions {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#actions li {
	display: inline-block;
	width: 48%;
}

#actions li:first-child {
	width: 100%;
	margin-bottom: 10px;
}

#actions li:last-child {
	margin-left: 3%;
}

#actions a:link, #actions a:visited {
	/*background-image: url(pattern-blue.svg);
	background-size: cover;
	background-repeat: no-repeat;*/
	display: inline-block;
	border: 1px solid #00adee;
	padding: 5px;
	text-decoration: none;
	width: 100%;
	border-radius: 5px;
	text-align: center;
}

#actions a:hover {
	background: #00adee;
	color: #fff !important;
}

#actions a.primary:link, #actions a.primary:visited {
	border-color: #eb8f22;
	color: #eb8f22;
}

#actions a.primary:hover {
	background: #eb8f22;
}

h2 {
	color: #00adee;
	size: 22px;
	font-weight: normal;
	margin-top: 25px;
}

h2 img {
	height: 29px;
	display: inline;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

#content a:link, #content a:visited {
	color: #00adee;
}

#content a:hover {
	color: #eb8f22;
}

#content a.cta:link, #content a.cta:visited {
	background-image: url(pattern-white.svg);
	background-color: #00adee;
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	width: 80%;
	margin: 0 auto;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	text-align: center;
	border-radius: 5px;
	margin-top: 10px;
	font-weight: bold;
}

#content a.cta:hover {
	background-color: #eb8f22;
}

@media(min-width: 1300px) {
	#actions li {
		width: 31% !important;
		margin: 0 0.9% !important;
	}
}

@media(min-width: 700px) {

	#map {
		width: 50%;
		top: 0;
		bottom: 0;
		right: 0;
		height: auto;
		position: fixed;
		margin-bottom: 0;
	}
	#content-outer {
		position: absolute;
		width: 50%;
		top: 0;
		bottom: 0;
		left: 0;
	}
	#content-outer:before {
		content: " ";
		background: #D5E8EB;
		width: 5%;
		position: fixed;
		top: 0;
		bottom: 0;
	}
	#content {
		padding-top: 90px;
		margin-left: 10%;
	}
	nav {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 100000;
		background: #fff;
	}
	nav #logo {
		float: left;
	}
	nav ul {
		float: right;
		margin: 14px 0;
	}
}