/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

:root {
  --light-grey: rgba(205,205,205,1);
  --mid-grey:rgba(135,142,150,1);
  --dark-grey: rgba(95,105,115,1);
  --bright-blue: rgba(87,200,213,1);
  --mid-blue: rgba(155,187,201,1);
  --dark-blue: rgba(9,25,40,1);
  --dark-blue-tint: rgba(9,25,40,0.7);
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	transition: all 200ms ease-in;
}

body {
	background-color: white;
	text-rendering: optimizeLegibility !important;
	font-family: "helvetica neue",helvetica, arial, sans-serif;
	background-image: url('../img/bg.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 80% auto;
}
.row {
	width: 94%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 0;
}
.with-cols {
	overflow: auto;
}
.column {
	float: left;
}

.left {
	padding: 0 3% 0 0;
}

.block {
	padding: 60px 0;
}

.widescreen {
	height: 56.25vw;
}

.toggle {
	display:none;
}


.lg-1 {
	width: 8.3%;
}
.lg-2 {
	width: 16.6%;
}
.lg-3 {
	width: 25%;
}
.lg-4 {
	width: 33%;
}
.lg-5 {
	width: 41.5%;
}
.lg-6 {
	width: 50%;
}
.lg-7 {
	width: 58.1%;
}
.lg-8 {
	width: 67%;
}
.lg-9 {
	width: 75%;
}
.lg-10 {
	width: 83%;
}
.lg-11 {
	width: 91.3%;
}
.lg-12 {
	width: 100%;
}

a.button {
	line-height: 100%;
	padding: 15px;
	color: white;
	background-color: var(--dark-blue);
	font-family: 'Play', sans-serif;
	border-radius: 5px;
	margin: 0 5px;
	display: inline-block;
}

a.button:hover {
	background-color: var(--bright-blue);
}

header {
	background-color: var(--light-grey);
	padding: 15px 0;
}

.logo img {
	max-height: 90px;
}

.contact {
	padding: 30px 0 0 0;
	text-align: right;
}

.contact a {
	font-family: 'Play', sans-serif;
	color: var(--dark-blue);
	font-size: 1.2em;
}

.contact a:hover {
	color: var(--bright-blue);
}

nav {
	background-color: var(--dark-blue);
}

nav ul {
	margin: 0;
	padding: 0;
	line-height: 100%;
	list-style: none;
	display: block;
	text-align: center;
}


nav ul li {
	display: inline-block;
	margin: 0 0 0 -5px;
	padding: 0;
}

nav ul li a {
	color: white;
	font-family: 'Play', sans-serif;
	font-size: 1.4rem;
	display: block;
	line-height: 60px;
	padding: 0 15px;
}

nav ul li a:hover {
	color: var(--bright-blue);
}

nav ul li.current-menu-item a {
	color: var(--mid-grey);
}

.splash {
	height: 37.5vw;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.splash-inner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.splash-inner h1 {
	font-family: 'Play', sans-serif;
	display: inline-block;
	background-color: rgba(255,255,255,0.7);
	color: var(--dark-blue);
	padding: 30px;
	width: 100%;
	margin: 0;
	line-height: 100%;
	text-transform: uppercase;
}

main:not(.home main) {
	padding: 90px 0 30px 0;
}

.hero {
	padding: 45px 0 15px 0;
	text-align: center; 
}

.hero p img {
	width: 60%;
}

.hero h2 {
	font-weight: 400;
	color: var(--dark-blue);
	font-size: 1.8em;
	line-height: 130%;
	width: 80%;
	margin: 0 auto 30px auto;
}

.hero p {
	width: 80%;
	margin: 0 auto;
	line-height: 130%;
	font-size: 1.2em;
}


.feature {
	text-align: center;
	padding: 30px 5%;
	color: var(--dark-blue);
}

.feature h3 {
	font-family: 'Play', sans-serif;
}

.feature h3 a {
	color: var(--bright-blue);
}

.testimonials {
	padding: 30px 0;
	text-align: center;
}

.testimonials p {
	width: 70%;
	margin: 0 15%;
	position: relative;
	padding: 0 0 0 0;
	color: var(--dark-blue);
	font-size: 1.2em;
}

/*
.testimonials p:before {
	content: open-quote;
	position: absolute;
	top: 0;
	font-size: 128px;
	color: var(--dark-grey);
	margin: 0;
	padding: 0;
	line-height: 100%;
	width: 100%;
	text-align: center; 
	opacity: 0.2;
}
*/

.testimonials p span {
	font-style: italic;
	padding: 0 0 10px 0;
	display: inline-block;
	width: 100%;
}

.google {
	text-align: center;
}

.text {
	width: 75%;
	margin: auto;
}


.text h1 {
	font-family: 'Play', sans-serif;
	display: inline-block;
	color: var(--dark-blue);
	width: 100%;
	margin: 0 0 1em 0;
	line-height: 100%;
	text-transform: uppercase;
	font-size: 2.4em;
}

.text h2, #boxzilla-118 h2 {
	font-weight: 400;
	color: var(--dark-blue);
	font-size: 1.8em;
	line-height: 130%;
}

.text h3 {
	font-family: 'Play', sans-serif;
	color: var(--dark-blue);
	margin: 0 0 1em 0;
	padding: 0 30px 0.5em 0;
	line-height: 100%;
	font-size: 1.4em;
	border-bottom: 1px solid var(--dark-blue);
	display: inline-block;
}

.text h3 em {
	font-weight: 400;
	font-size: 80%;
}

.text p, #boxzilla-118 p {
	padding: 0 0 1em 0;
	color: var(--dark-blue);
	font-size: 1.2em;
	line-height: 140%;
}

.text p.post-meta {
	font-size: 80%;
	font-style: italic;
	padding: 20px 0;
	border-top: 1px grey solid;
	border-bottom: 1px grey solid;
}

.text a {
	color: var(--bright-blue);
	font-weight: 700;
	border-bottom: 1px var(--bright-blue) dashed;
}

.text ul {
	padding-bottom: 1em;
}

.text li {
	padding: 0 0 5px 0;
	color: var(--dark-blue);
	font-size: 1.2em;
}

.banner img {
	width: 100%;
	height: auto;
}

.post {
	display: block;
	margin: 0 0 45px 0;
}

.post h1 {
	margin: 0 0 0 0;
}

.post p.post-meta {
	font-size: 80%;
	font-style: italic;
	padding: 0;
	border: none;
}

.post-text {
	display: inline-block;
	width: 66.66%;
	margin: 0 0 0 -5px;
	vertical-align: top;
}

.post-image {
	display: inline-block;
	width: 25%;
	margin: 0;
	margin-right: calc(8.3% - 5px);
	vertical-align: top;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.post-image a {
	display: block;
	width: 100%;
	height: 100%;
	padding-bottom: 75%;
}

.wp-block-image {
	width: 100%;
	margin: 0 0 1em 0;
	padding: 0;
}

.citations {
	font-style: italic;
	font-size: 80%;
	line-height: 140%;
}

footer {
	padding: 30px 0;
	color: var(--mid-grey);
}

footer h4 {
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 100%;
	color: var(--dark-blue);
}

footer a, .legal a {
	color: var(--mid-blue);
}

footer a:hover, .legal a:hover {
	color: var(--dark-blue);
}

footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}



.about {
	padding: 0 2% 0 0;
}

.social {
	text-align: center;
}

.social li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.social li a {
	font-size: 3em;
}

footer .book {
	text-align: center;
	padding: 0 !important;
}

.credits {
	text-align: right;
}

.credits img {
	max-width: 100px;
	max-height: 60px;
	width: 40%;
	vertical-align: middle;
}

.credits img:first-child {
	margin-right: 15px;
}

.legal {
	background-color: var(--light-grey);
}

.legal p {
	font-size: 0.8em;
	width: 100%;
	margin: 0;
	padding: 10px 0;
	line-height: 100%;
	color: var(--mid-grey);
	position: relative;
}

.legal p a.hd {
	position: absolute;
	top: 10px;
	right: 0;
}


.map-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: auto;
}

.map-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.newsletter p {
	width: 91.7%;
}

form {
	display: block;
	width: 100%;
}

form input {
	display: inline-block;
	width: calc(88% - 90px);
	padding: 4px;
	outline: none;
	height: 40px;
}

form input[type="submit"] {
	width: 90px;
	background-color: var(--dark-blue);
	color: white;
	border: 0;
}



@media only screen and (min-width: 768px) and (max-width: 1023px) {
	
	.block {
		padding: 30px 0;
	}
	.med-3 {
		width: 25%;
	}
	.med-4 {
		width: 33%;
	}
	.med-5 {
		width: 42%;
	}
	.med-6 {
		width: 50%;
	}
	.med-7 {
		width: 58%;
	}
	.med-8 {
		width: 67%;
	}
	.med-9 {
		width: 75%;
	}
	
	.testimonials p {
		width: 80%;
		margin: 0 10%;
	}
	
	.splash {
		height: 37.5vw;
		background-size: cover;
	}
	
	.newsletter {
		min-height: 180px;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.block {
		padding: 30px 0;
	}
	
	.sm-4 {
		width: 33.3%
	}
	.sm-5 {
		width: 41.5%
	}
	.sm-6 {
		width: 50%;
	}
	.sm-7 {
		width: 58.1%;
	}
	.sm-8 {
		width: 66.6%;
	}
	.sm-12 {
		width: 100%;
	}
		
	.toggle {
		display:block;
		position:fixed;
		bottom:10px;
		left: calc(50% - 25px);
		z-index:1100;
	}
	
	.toggle a {
		display:block;
		color: var(--bright-blue);
		font-size: 24px;
		background-color: var(--dark-blue);
		border-radius:50%;
		width:50px;
		line-height: 50px;
		text-align:center;
		box-shadow:0 0 3px rgba(0,0,0,0.4);
		transition: all 200ms ease;
	}
	
	a.navon {
		background-color: var(--bright-blue);
		color: var(--dark-blue);
		transform: rotate(90deg);
	}
	
	nav {
		display:none;
		position:fixed;
		bottom:66px;
		left: 10%;
		z-index:1000;
		margin:0;
		padding:0;
		min-width:80%;
		margin:0 0;
		text-align:center;
		border: none;
		box-shadow: 0 0 8px var(--dark-blue-tint);
	}
	
	nav .row {
		width:100%;
	}
	
	nav ul {
		margin:0;
		padding:0;
		width:100%;
		border:none;
		
	}
	
	nav ul li {
		width:100%;
		display:block;
		margin:0 0 2px 0 !important;
		padding:0;
		border:none;
	}
	
	nav ul li a {
		padding: 10px;
		line-height:100%;
		font-size:1em;
		color: white;
		border:none;
		color:#fff;
		font-weight:700;
		display: block;
		background-color: var(--dark-grey);
		border-bottom: 1px solid var(--bright-blue);
	}
	
	
	a.button {
		padding: 10px 15px;
	}
	
	.logo {
		text-align: center;
		margin-bottom: 10px;
	}
	
	.logo img {
		max-width: 160px;
	}
	
	.contact {
		padding: 0;
		text-align: center;
	}
	
	

	.splash {
		background-position: center center;
		background-size: cover;
		overflow: visible;
	}
	
	.splash-inner {
		top: 100%;
		transform: none;
	}
	
	.splash-inner h1 {
		display: block;
		padding: 10px;
		line-height: 110%;
		font-size: 1.2em;
	}
	
	main {
		padding-top: 50px;
		padding-bottom: 30px;
		background-position: left 80px;
		background-size: 100% auto;
	}
	
	.hero {
		padding: 15px 0 0 0;
	}
	
	.hero h2 {
		font-size: 1em;
	}
	
	.hero p img {
		width: 100%;
	}
	
	.feature {
		padding: 5px 2.5%;
	}
	
	.testimonials p {
		width: 100%;
		margin: 0;
		font-size: 1em;
	}
	
	.quotes {
		padding-bottom: 30px;
	}
	
	.about {
		padding: 0;
	}

	
	footer .column:not(:last-child) {
		margin-bottom: 20px;
	}
	
	.social {
		text-align: left;
	}
	

	.legal {
		padding-bottom: 70px;
	}
	
	.legal p {
		font-size: 0.7em;
	}
	
	.legal p a.hd {
		position: relative;
		right: auto;
		top: auto;
		display: block;
		width: 100%;
		margin-top: 10px;
	}
	
	form input {
		width: calc(100% - 80px);
	}
	
	form input[type="submit"] {
		width: 80px;
	}

	
}