/* Global */
body {
	font-family: 'Alegreya Sans', sans-serif;
	background-color: #0096c7;
	color: #FFFFFF;
}

.site-header__nav {
	max-height: 0;
	transition: .3s;
}
@media screen and (min-width: 800px) {
	.site-header__nav {
		max-height: fit-content;
		transition: .3s;
	}
}

.show-menu .site-header__nav {
	max-height: fit-content;
	transition: .3s;
}

/* Header */
.site-header {
	margin: 1em;
	position: relative;
	transition: .3s;
}

@media screen and (min-width: 800px) {
    /* desktop css here */
	.site-header {
		display: flex;
		justify-content: space-between;
		max-width: 60em;
		margin-left: auto;
		margin-right: auto;
		padding: 0 1em;
	}
}

.site-header__logo {
	font-family: 'Vampiro One', cursive;
	font-size: 2em;
	color: #003049;
}
.site-header__menu-trigger {
	padding: .625em;
	border: 1px solid #075775;
	width: 3.5em;
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (min-width: 800px) {
    /* desktop css here */

    .site-header__menu-trigger {
        display: none;
    }
}

.site-header__menu-trigger svg {
	display: block;
	width: 100%;
	height: auto;
}
.site-header__nav {
	margin-top: 2em;
	transition: ease-in-out 0.4s;
	overflow: hidden;
}

@media screen and (min-width: 800px) {
    /* desktop css here */
	.site-header__nav {
		margin-top: 0;
	}

	.site-header__nav ul {
		display: flex;
	}
    .site-header__nav li {
		margin-right: .5em;
    }

	.site-header__nav li:last-child {
		margin-right: 0;
    }
}

.site-header__nav a {
	font-size: 1.2em;
	text-decoration: none;
	padding: .375em;
	border: 1px solid #075775;
	color: #003049;
	display: block;
	margin-bottom: .375em;
	text-align: center;
	box-shadow: inset 0 0 0 0 #075775;
	-webkit-transition: ease-out 0.4s;
	-moz-transition: ease-out 0.4s;
	transition: ease-in-out 0.4s;
}

@media screen and (min-width: 800px) {
	.site-wrapper {
		max-width: 60em;
		margin-left: auto;
		margin-right: auto;
	}

	.site-header__nav a:hover {
		box-shadow: inset 300px 0 0 0 #075775;
		color: #FFF;
		transition: ease-in-out 0.4s;
	  }
}

/* Hero */
.hero {
	padding: 0 1em;
	margin-bottom: 2.5em;
}

@media screen and (min-width: 800px) {
	.hero__wrapper {
		display: flex;
		align-items: center;
		border-bottom: 1.5em solid #ee9b00;
	}
}

.hero__image {
	border-bottom: 1.5em solid #ee9b00;
	margin-bottom: 2.5em;
	margin-top: 2.5em;
	margin-left: -1em;
	margin-right: -1em;
}

@media screen and (min-width: 800px) {
	.hero__image {
		border: 0;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
	}
}

.hero__image img {
	width: 80%;
	display: block;
	margin: 0 auto;
	max-width: 20em;
}

@media screen and (min-width: 800px) {
	.hero__image img{
		max-width: none;
	}
}

.hero__header {
	font-size: 3em;
	font-family: 'Lora', serif;
	text-align: center;
	letter-spacing: -0.05em;
	line-height: 100%;
	margin-bottom: .833em;
}

@media screen and (min-width: 800px) {
	.hero__header {
		margin-bottom: 0;
		font-size: 4em;
		text-align: left;
		position: relative;
	}

	.hero__header::before {
		content: '';
		background-image: url(../images/arrow.svg);
		background-size: contain;
		position: absolute;
		width: 1.5em;
		height: 1.2em;
		top: -1.2em;
		left: -0.5em;
	}
}

.hero__header em {
	color: #075775;
	font-style: normal;
}
.hero__quote {
	text-align: center;
}
@media screen and (min-width: 800px) { 
	.hero__quote {
		margin-top: 2.5em;
		font-size: 1.2em;
		text-align: center;
		max-width: 25em;
		margin-left: auto;
		margin-right: auto;
	}
}

.hero__quote__text {
	font-size: 1.25em;
	font-family: 'Lora', serif;
	font-style: italic;
}
.hero__quote__name {
	font-size: 1.1em;
	margin-top: .5em;
}
/* Section */
.section {
	margin: 2.5em 0;
	padding: 2.5em 1em 0;
	border-top: 1px solid #075775;
}
.section__header {
	font-size: 1.5em;
	font-family: 'Lora', serif;
	letter-spacing: -0.03em;
	margin-bottom: 1.67em;
	text-align: center;
}

@media screen and (min-width: 800px) {
	.section__header {
		text-align: left;
		font-size: 1.7em;
	}
	.toc {
		display: flex;
	}
}

/* TOC */
.toc__item {
	text-align: center;
	margin-bottom: 2em;
}

@media screen and (min-width: 800px) {
	.toc__item {
		width: 33.33%;
		margin-right: 2em;
		margin-bottom: 0;
	}

	.toc__item:last-child {
		margin-right: 0;
	}
}

.toc__header {
	color: #003049;
}

.toc__lead-in {
	max-width: 20em;	
	margin-left: auto;
	margin-right: auto;	
	color: #003049;
}

.toc__link {
	text-decoration: none;
	display: block;
}
.toc__image {
	height: 10em;
	width: 10em;
	margin: 0 auto 1.5em;
	border-radius: 50%;
	overflow: hidden;
	padding: 1.5em;
	background: radial-gradient(circle at center, #FFF 0%, #7edfff 100%);
	box-shadow: .5em .5em 0px rgba(0, 0, 0, 0.25);
	transition: 0.3s;
}

.toc__image:hover {
	padding: 1.8em;
	transition: 0.3s;
}

.toc__image img {
	max-width: 100%;
	mix-blend-mode: multiply;
}

.toc__header {
	font-size: 1.2em;
	margin-bottom: .5em;
	font-weight: bold;
	text-transform: uppercase;
}
/* Button */
.button {
	font-size: 1.2em;
	padding: .5em 1.25em;
	background-color: #075775;
	color: white;
	text-decoration: none;
	box-shadow: .25em .25em 0px rgba(0, 0, 0, 0.25);
	transition: .3s;

}

.button:hover {
    box-shadow: .7em .7em 0px rgba(0, 0, 0, 0.75);
	background-color: #0a7aa3;
	letter-spacing: .1em;
	transition: all 300ms ease;
}

/* Mailing List */
.mailing-list {
	text-align: center;
}
/* Footer */
.site-footer {
	padding: 2em 1em;
	margin-top: 6em;
	background-color: #003049;
	color: #fff;
}

@media screen and (min-width: 800px) {
	.site-footer p {
		max-width: 60em;
		margin-left: auto;
		margin-right: auto;
	}
}