
/* CSS Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End Reset */

@font-face {
  font-family: 'HeldaneTextWeb-Regular';
  src: url('./fonts/HeldaneTextWeb-Regular.eot');
  src: url('./fonts/HeldaneTextWeb-Regular.eot?#iefix') format('embedded-opentype'), 
       url('./fonts/HeldaneTextWeb-Regular.woff2') format('woff2'), 
       url('./fonts/HeldaneTextWeb-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'HeldaneTextWeb-RegularItalic';
  src: url('./fonts/HeldaneTextWeb-RegularItalic.eot');
  src: url('./fonts/HeldaneTextWeb-RegularItalic.eot?#iefix') format('embedded-opentype'), 
       url('./fonts/HeldaneTextWeb-RegularItalic.woff2') format('woff2'), 
       url('./fonts/HeldaneTextWeb-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'HeldaneTextWeb-Bold';
  src: url('./fonts/HeldaneTextWeb-Bold.eot');
  src: url('./fonts/HeldaneTextWeb-Bold.eot?#iefix') format('embedded-opentype'), 
       url('./fonts/HeldaneTextWeb-Bold.woff2') format('woff2'), 
       url('./fonts/HeldaneTextWeb-Bold.woff') format('woff');
  font-weight: 600;
}

@font-face {
  font-family: 'HeldaneDisplayWeb-Bold';
  src: url('./fonts/HeldaneDisplayWeb-Bold.eot');
  src: url('./fonts/HeldaneDisplayWeb-Bold.eot?#iefix') format('embedded-opentype'), 
       url('./fonts/HeldaneDisplayWeb-Bold.woff2') format('woff2'), 
       url('./fonts/HeldaneDisplayWeb-Bold.woff') format('woff');
  font-weight: 600;
}


html {
	font-size: 16px;
	color: #333333;
	background-color: #ebebeb;
}

body {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	overflow: auto;
}

.container {
	display: block;
}

header {
	display: flex;
    justify-content: center;
    align-items: center;
}

.header__text > h1, .header__text > h1 > a {
	font-size: 3rem;
	font-family: 'HeldaneDisplayWeb-Bold';
	text-align: center;
	text-decoration: none;
	color: #636363;
	transition: color 0.2s linear;
	padding: 0.5rem 0;
}

.header__text:hover > h1 > a {
	color: #333333;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: 2rem;
	padding-left: 1rem;
    padding-right: 1rem;
}

.hero__text {
	width: 100%;
	pointer-events: none;
	z-index: -1;
	transform: translateY(200px);
}

.hero__text > h1 {
	font-size: 10rem;
	font-family: 'HeldaneDisplayWeb-Bold';
	text-align: center;
	margin-bottom: 3rem;
}

.hero__text > h2 {
	font-size: 3rem;
	font-family: 'HeldaneDisplayWeb-Bold';
	text-align: center;
	color: #636363;
}

.title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.5rem;
	font-family: 'HeldaneDisplayWeb-Bold';
	text-align: center;
	line-height: 4rem;
	border-top: 0.35rem double #333333;
    border-bottom: 0.35rem double #333333;
    box-sizing: border-box;
    padding: 2rem 0;
    max-width: 900px;
	margin: 0 auto;
}

.sectionTitle {
    font-size: 2.25rem;
    font-family: 'HeldaneDisplayWeb-Bold';
    text-align: center;
    line-height: 2.5rem;
    box-sizing: border-box;
    margin-top: 2rem;
}

.cutout-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cutout-wrapper::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 65px;
	bottom: 0;
	left: 0;
	background-color: #ebebeb;
	z-index: 0;
}

.cutout {
    opacity: 1;
    width: 100%;
    max-width: 1600px;
    height: auto;
    position: relative;
    z-index: 1;
}

.credit-wrapper {
	background-color: #ebebeb;
	font-family: 'HeldaneTextWeb-Bold';
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #636363;
	padding-top: 3rem;
    padding-bottom: 2rem;
    margin: 0 auto;
}

.credit {
	width: 100%;
	border-top: 0.35rem double #333333;
	border-bottom: 0.35rem double #333333;
	text-transform: uppercase;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.15rem;
	padding-top: 0.6rem;
	padding-bottom: 0.5rem;
	letter-spacing: 0.1rem;
}

.credit__org {
	color: #333333;
}

.main-wrapper {
	background-color: #ebebeb;
	max-width: 900px;
	margin: 0 auto;
}

.main {
	padding-left: 1rem;
	padding-right: 1rem;
}

blockquote {
	font-size: 1.5rem;
    line-height: 2.5rem;
    margin-left: 1rem;
    margin-right: 2rem;
    padding: 1rem;
    border-left: 0.25rem solid #aaaaaa;
}

blockquote > em {
	font-family: 'HeldaneTextWeb-RegularItalic';
}

p > em {
	font-family: 'HeldaneTextWeb-RegularItalic';
}

p > strong {
	font-family: 'HeldaneTextWeb-Bold';
	font-weight: bold;
}

p {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	line-height: 2.25rem;
	font-family: 'HeldaneTextWeb-Regular';
}

p:first-child:first-letter {
  float: left;
  font-size: 5rem;
  line-height: 4rem;
  padding-right: 0.25rem;
  padding-top: 0.25rem;
}

p > a {
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	font-family: 'HeldaneTextWeb-Bold';
	text-shadow: 2px 0px #ebebeb, 0px 2px #ebebeb, -2px 0px #ebebeb, 0px -2px #ebebeb;
	background-image: linear-gradient(to right, #333333 75%, #333333 75%);
	background-position: 0 1.1em;
	background-repeat: repeat-x;
	background-size: auto 2px;
}

ul {
	margin-left: 2rem;
	margin-right: 2rem;
	list-style-type: square;
	padding: 1rem;
	font-size: 1.5rem;
	line-height: 2rem;
}

li {
	margin-bottom: 1rem;
}

ul > li:last-child {
	margin-bottom: 0;
}

li > strong {
	font-family: 'HeldaneTextWeb-Bold';
	font-weight: bold;
}

li > em {
	font-family: 'HeldaneTextWeb-RegularItalic';
}

li > * > a {
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	font-family: 'HeldaneTextWeb-Bold';
	text-shadow: 2px 0px #ebebeb, 0px 2px #ebebeb, -2px 0px #ebebeb, 0px -2px #ebebeb;
	background-image: linear-gradient(to right, #333333 75%, #333333 75%);
	background-position: 0 1.13em;
	background-repeat: repeat-x;
	background-size: auto 2px;
}

.nextPage-wrapper {
	background-color: #ebebeb;
	display: flex;
	align-items: center;
}

.nextPage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: 'HeldaneTextWeb-Bold';
	font-size: 2rem;
	color: #333333;
	text-align: center;
	align-items: center;
	z-index: 2;
	border: 0.35rem double #333333;
	box-shadow: -5px 5px #333333;
	cursor: pointer;
	transition: box-shadow 0.1s linear, transform 0.1s linear;
	margin: 0 auto;
	padding-top: 1.25rem;
	padding-bottom: 2rem;
	text-decoration: none;
	width: 100%;
	max-width: 900px;
	background-color: #ebebeb;
	box-sizing: border-box;
}

.nextPage:hover {
	box-shadow: -8px 8px #333333;
}

.nextPage:active {
	box-shadow: 0px 0px #333333;
	transform: scale(0.99);
}

.nextPage > div {
	pointer-events: none;
}

.nextPage__readMore {
	font-family: 'HeldaneTextWeb-Bold';
    font-weight: bold;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	padding-bottom: 1.75rem;
	color: #636363;
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.sub-page {
	padding: 2rem;
	padding-top: 2.5rem;
	border: 0.17rem solid #636363;
	position: relative;
	margin-top: 6rem;
}

.sub-page > p{
	margin-top: 0px;
}

.sub-page > p:last-child {
	margin-bottom: 0px;
}

.sub-pageTitle-wrapper {
	position: absolute;
	top: -1.25rem;
	left: 0;
	width: 100%;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sub-pageTitle {
    font-size: 2.25rem;
    font-family: 'HeldaneDisplayWeb-Bold';
    text-align: center;
    line-height: 2.5rem;
    box-sizing: border-box;
    background-color: #ebebeb;
    padding: 0 1rem;
}

footer {
	background-color: #ebebeb;
}

.footer__items-wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 900px;
	height: 200px;
	margin: 4rem auto;
	padding: 1rem;
	padding-top: 200px;
	padding-bottom: 100px;
	box-sizing: border-box;
}

.footer__item {
	display: inline-block;
    height: auto;
    font-family: 'HeldaneTextWeb-Bold';
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;

}

.footer__link {
	text-decoration: none;
    text-shadow: 2px 0px #ebebeb, 0px 2px #ebebeb, -2px 0px #ebebeb, 0px -2px #ebebeb;
    background-image: linear-gradient(to right, #333333 75%, #333333 75%);
    background-position: 0 1.4rem;
    background-repeat: repeat-x;
    background-size: auto 2px;
}

.footer__link--image {
	width: 200px;
	background-image: none;
}

.menu-wrapper {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: transparent;
	z-index: 50;
	pointer-events: none;
}

.menu__button{
	font-size: 2rem;
	padding: 0.5rem;
	font-family: 'HeldaneTextWeb-Bold';
	margin: 1rem;
	display: inline-block;
	border: 0.175rem solid #333333;
	box-shadow: -3px 3px #333333;
	background-color: #ebebeb;
	transition: box-shadow 0.1s linear, transform 0.1s linear, opacity 0.1s linear;
	cursor: pointer;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
	opacity: 1;
}

.menu__button:hover{
	box-shadow: -5px 5px #333333;
}

.menu__button:active{
	box-shadow: 0px 0px #333333;
	transform: scale(0.96);
}

.invisible {
	opacity: 0;
	pointer-events: none;
}

.menu__title {
  width: 100%;
  font-size: 2.5rem;
  font-family: 'HeldaneDisplayWeb-Bold';
  text-align: center;
  padding: 1.5rem;
  box-sizing: border-box;
  background-color: #333333;
  color: #ebebeb;
}

.menu {
	height: 100vh;
	width: 100%;
	max-width: 500px;
	position: fixed;
	top: 0;
	right: 0;
	border: 0.35rem double #333333;
	background-color: #ebebeb;
	box-sizing: border-box;
	overflow-y: auto;
	pointer-events: none;
	transform: translateX(100%);
	transition: transform 0.2s linear;
	-webkit-overflow-scrolling: touch;
}

.menu--open {
	transform: translateX(0px);
	pointer-events: all;
}

.menu__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu__item {
    font-family: 'HeldaneDisplayWeb-Bold';
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 0;
    border-top: 0.35rem double #333333;
}

.menu__item:last-child {
	border-bottom: 0.35rem double #333333;
}

.menu__item > a {
	display: block;
	padding: 1rem;
	text-decoration: none;
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	font-family: 'HeldaneTextWeb-Bold';
	text-shadow: 2px 0px #ebebeb, 0px 2px #ebebeb, -2px 0px #ebebeb, 0px -2px #ebebeb;
}

.menu__item > a:hover > span {
	background-image: linear-gradient(to right, #333333 75%, #333333 75%);
	background-position: 0 1.1em;
	background-repeat: repeat-x;
	background-size: auto 2px;
}


@supports (display: grid) {

	.container {
		display: grid;
		grid-template-columns: 0.5fr 0.5fr minmax(0px, 900px) 0.5fr 0.5fr;
		grid-template-rows: minmax(100px, 13vh) 13vh minmax(100px, min-content) minmax(100px, min-content) 0.05fr auto minmax(100px, min-content);
	}

	header {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
		padding-top: 0;
	}

	.hero {
		grid-column: 1 / -1;
		grid-row: 1 / 4;
		padding-top: 0;
	}

	.hero__text {
		position: fixed;
		transform: none;
	}

	.title {
		grid-column: 3 / 4;
	    grid-row: 2 / 5;
	    padding: 0;
	    margin: 0;
	}

	.cutout-wrapper {
		grid-column: 1 / -1;
	    grid-row: 3 / 5;
	}

	.credit-wrapper {
		grid-column: 2 / 5;
		grid-row: 1 / 2;
		width: auto;
    	margin: 0;
	}

	.main-wrapper {
		grid-column: 1 / -1;
		grid-row: 5 / 6;
		display: grid;
		grid-template-columns: 0.5fr 0.5fr minmax(0px, 900px) 0.5fr 0.5fr;
		max-width: unset;
		margin: 0;
		grid-template-rows: auto auto;
	}

	.main {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}

	.nextPage-wrapper {
		grid-column: 1 / -1;
		grid-row: 6 / 7;
		display: grid;
		grid-template-columns: 0.5fr 0.5fr minmax(0px, 900px) 0.5fr 0.5fr;
	}

	.nextPage {
		grid-column: 3 / 4;
	}

	footer {
		grid-column: 1 / -1;
		grid-row: 7 / 8;
	}
}

/* Photoswipe Overrides */
.pswp__bg {
	background: rgba(235, 235, 235, 0.90);
}
.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
	background-color: rgba(0,0,0,0);
}

.pswp__top-bar, .pswp__caption {
	background: transparent;
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
	background-color: rgba(0,0,0,0);
	border: 0.175rem solid #333333;
	box-shadow: -3px 3px #333333;
	background-color: #ebebeb;
	transition: box-shadow 0.1s linear, transform 0.1s linear;
}

.pswp__button--arrow--left:hover:before, .pswp__button--arrow--right:hover:before {
	box-shadow: -5px 5px #333333;
}

.pswp__button--arrow--left:active:before, .pswp__button--arrow--right:active:before {
	box-shadow: 0px 0px #333333;
	transform: scale(0.96);
}

.pswp__caption__center {
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
    line-height: 20px;
   	margin-top: 2rem;
	margin-bottom: 2rem;
	font-size: 1rem;
	line-height: 2.25rem;
	font-family: 'HeldaneTextWeb-Regular';
	color: inherit;
	border: 0.35rem double #333333;
	background-color: #ebebeb;
}

.pswp__caption__center em {
	font-family: 'HeldaneTextWeb-RegularItalic';
}

.pswp__caption__center a {
	color: #333333;
	font-weight: bold;
	text-decoration: none;
	font-family: 'HeldaneTextWeb-Bold';
	text-shadow: 2px 0px #ebebeb, 0px 2px #ebebeb, -2px 0px #ebebeb, 0px -2px #ebebeb;
	background-image: linear-gradient(to right, #333333 75%, #333333 75%);
	background-position: 0 1.1em;
	background-repeat: repeat-x;
	background-size: auto 2px;
}

.pswp__caption__center strong {
	font-family: 'HeldaneTextWeb-Bold';
	font-weight: bold;
}

/* Masonry Grid */
.grid {
	max-width: 750px;
	margin: 4rem auto;
	position: relative;
	display: block;
	transform: translateX(15px);
}

.grid:after {
	content: '';
	display: block;
	clear: both;
}

.grid-500 {
	max-width: 500px;
}

.grid-750 {
	max-width: 750px;
}

.grid-item {
	width: 125px;
	height: auto;
	float: left;
	margin-bottom: 25px;
	border: 0.13rem solid #333333;
	box-shadow: -5px 5px #333333;
	transition: box-shadow 0.1s linear, transform 0.1s linear;
	box-sizing: border-box;
}

.grid-item:hover {
	box-shadow: -8px 8px #333333;
	cursor: pointer;
}

.grid-item:active {
	box-shadow: 0px 0px #333333;
	transform: scale(0.99);
	cursor: pointer;
}

.grid-item--2 {
	width: calc(33.333% - 25px);
}

.grid-item--3 {
	width: calc(50% - 25px);
}

.grid-item--4 {
	width: calc(66.666% - 25px);
	margin-right: 0px;
}

.grid-item--6 {
	width: calc(100% - 25px);
	margin-right: 0px;
}

.grid-item > a > img {
	pointer-events: none;
}

@media only screen and (max-width: 1100px) {

	.hero__text > h1 {
	    font-size: 3.25rem;
    	padding-left: 0.25rem;
    	padding-right: 0.25rem;
	}

	.hero__text > h2 {
    	display: none;
    }

    .footer__links-wrapper {
	    flex-direction: column;
		padding-top: 0px; 
		padding-bottom: 0px; 
	}

	.title {
		font-size: 4rem;
    	line-height: 4.5rem;
	}

}

@media only screen and (max-width: 900px) {
	
	.header__text > h1, .header__text > h1 > a {
		font-size: 2.5rem;
	}

	.grid-item--2 {
	    width: calc(40% - 25px);
	}

	.grid-item--4 {
	    width: calc(40% - 25px);
	}

	.nextPage {
		width: calc(100% - 1rem);
		margin-left: 0.5rem;
		margin-right: 0.5rem;
	}

	.footer__items-wrapper {
		flex-direction: column;
	}

	.footer__item {
		margin-bottom: 2rem;
	}

}

@media only screen and (max-width: 500px) {
	.title {
	    font-size: 3.5rem;
    	line-height: 4rem;
	}

	.grid-item--2 {
	    width: calc(100% - 25px);
	}

	.grid-item--3 {
	    width: calc(100% - 25px);
	}

	.grid-item--4 {
	    width: calc(100% - 25px);
	    margin-right: 0px;
	}

	.sub-pageTitle {
	    font-size: 2rem;
	}

	.cutout-wrapper::after {
		height: 50px;
	}
}