:root {
	--color: #A72B2A;
	--hover: #DE2B2A;
	--neutral: #626C7E;
	--accent: #3CA2B2;
	--serif: "utopia-std-display", serif;
	--headline: "utopia-std-headline", serif;
	--sans: "source-sans-3", sans-serif;
	--header: 137px;
	--nav: 100px;
	--max: 1600px;
	--pad: 0 30px;
}

html,
body {
	position: relative;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	outline: none;	
}

h1 {
	margin: 0;
	padding: 50px 10% 45px;
	font-family: var(--serif);	
	color: white;
	background: black;
	font-size: 50px;
	line-height: 54px;
	text-align: center;
	cursor: default;
}

h1 a {
	color: white;
}	

h2 {
	font-family: var(--headline);
	font-weight: 400;
	font-size: 42px;
	line-height: 45px;
	color: black;
}

h2 a {
	color: black;
}

h3 {
	font-size: 30px;
	line-height: 32px;
}

h3 a {
	color: black;	
}

figure {
	margin: 0;	
}

iframe {
	margin: 15px 0;
	border: 0 !important;
}

input {
	display: block;
	height: 62px;
	padding-left: 15px;
	padding-right: 15px;
	background: white;
	border: 0;
	border-radius: 0;
	margin: 0;
	font-family: var(--sans);
	font-size: 19px;
	-webkit-appearance: none;	
}

blockquote {
	position: relative;
	margin: 50px 0;	
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	font-size: 30px;
	line-height: 35px;
}

blockquote:before {
	display: block;
	content: '\301D';
	position: absolute;
	left: -250px;
	font-size: 200px;
	line-height: 200px;
	top: 10px;
	color: var(--color);
}

blockquote:after {
  content: "";
  display: table;
  clear: both;
}

blockquote em {
	float: right;
	display: inline-block;
	font-size: 15px;
	margin-top: 10px;
}

.button {
	color: white;
	font-weight: 600;
	padding-right: 40px;
	background: url("../images/common/arrow-right.svg") right center no-repeat;
	transition: background-color .2s;
	-webkit-font-smoothing: antialiased;
}

.button-reverse {
	font-weight: 500;
	background: url("../images/common/arrow-right-reverse.svg") right center no-repeat;
	color: var(--color);
	-webkit-font-smoothing: initial;
}

.button-reverse:hover {
	background-color: white;
}

.button-border {
	display: block;
	height: 22px;
	text-align: center;
	border: 2px solid black;
	color: black;
	font-size: 19px;
	line-height: 22px;
	font-weight: bold;
	padding: 16px;
	transition: color .2s, background .2s;
}

.button-border:hover {
	background: black;
	color: white;
}

.button-border-reverse {
	color: white;
	border-color: white;
	-webkit-font-smoothing: antialiased;
}

.button-border-reverse:hover {
	background: white;
	color: var(--color);
}

.share-button {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 230px;
	margin: 0 20px;
	overflow: hidden;
	cursor: pointer;
}

.share-action {
	display: block;
}


.share-sheet {
	display: none;
	position: absolute;
	width: 60%;
	height: 100%;
	padding: 0 20%;
	top: 2px;
	left: 0;
	gap: 30px;
}


.share-button.active,
.share-button.active:hover {
	background: white;
	color: black;
	cursor: default;
}



.share-button.active .share-sheet {
	display: flex;
}

.share-button.active .share-action {
	display: none;
}

.share-sheet a {
	box-sizing: border-box;
	display: block;
	height: 50px;
	flex-grow: 1;
}

.share-sheet a:hover * {
	fill: var(--accent);
}

.share-facebook {
	padding-top: 10px;
}

.share-twitter {
	padding-top: 13px;
}

.share-email {
	padding-top: 14px;
}

.pagination {
	text-align: center;	
	padding-bottom: 60px;
}

.pagination-back,
.pagination-next {
	display: inline-block;
	margin: 0 20px;
}

.pagination-pages {
	display: none;
}

.button-back,
.button-next,
.pagination-back a,
.pagination-next a {
	display: inline-block;	
	font-size: 19px;
	line-height: 22px;
	font-weight: bold;
	padding: 18px 30px;
	color: white;
	padding-right: 60px;
	background: url("../images/common/arrow-right.svg") right 20px center no-repeat;
	background-color: #BBB;
	cursor: default;
}

.button-back,
.pagination-back a {
	background: url("../images/common/arrow-left.svg") left 20px center no-repeat;
	padding-right: 30px;
	padding-left: 60px;
	background-color: #BBB;
}

a.button-next,
a.button-back,
.pagination-back a,
.pagination-next a {
	background-color: var(--accent);
	cursor: pointer;
}

.pagination-back a.disabled,
.pagination-next a.disabled {
	background-color: #BBB;
	cursor: default;
}

.instagram {
	background: url("../images/common/social-instagram.svg") center center no-repeat;
}

.facebook {
	background: url("../images/common/social-facebook.svg") center center no-repeat;
}

.twitter {
	background: url("../images/common/social-twitter.svg") center center no-repeat;
}

.threads {
	background: url("../images/common/social-threads.svg") center center no-repeat;
}

.youtube {
	background: url("../images/common/social-youtube.svg") center center no-repeat;
}

.spotify {
	background: url("../images/common/social-spotify.svg") center center no-repeat;
}

.apple {
	background: url("../images/common/social-apple.svg") center center no-repeat;
}

.linkedin {
	background: url("../images/common/social-linkedin.svg") center center no-repeat;
}







header {
	display: flex;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	height: var(--header);
	width: 100%;
	background: white;
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

#logo {
	position: relative;
	flex-basis: 41%;
	min-width: 300px;
	height: var(--header);
	font-family: var(--serif);
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	line-height: var(--header);
}

#logo a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: white;
	background: var(--color) url("../images/common/logo.svg") center center no-repeat;
	background-size: 71% auto;
	transition: background-color .2s;
}

#logo a:hover {
	background-color: var(--hover);
}

#logo a span {
	display: none;
}

#mobile-menu {
	display: none;
	position: absolute;
	right: 20px;
	top: 17px;
	width: 30px;
	height: 30px;
	background: url("../images/common/mobile-menu.svg") center center no-repeat;
	cursor: pointer;
}

nav {
	display: flex;
	flex-basis: 59%;
	flex-grow: 1;
	height: var(--nav);
	padding: 18px;
	font-family: var(--sans);
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

nav ul {
	position: relative;
	display: flex;
	flex-grow: 0;
	margin: 0;
	padding: 35px 20px 0 35px;
	height: 24px;
	list-style: none;
}

nav ul li {
	margin: 0;
	padding: 0 22px;
}

nav ul li a {
	color: black;
}

nav ul li.current-page a,
nav ul li.current-parent a {
	border-bottom: 4px solid var(--accent);	
}

nav #header-search {
	flex-grow: 1;
    padding-top: 35px;
    padding-left: 2px;
	padding-right: 30px;
}

nav #header-search a {
	display: block;
	width: 30px;
	height: 30px;
	background: url("../images/common/search.svg") center center no-repeat;
}

nav #header-search a span {
	display: none;
}

#subnav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 0;
	background: #3CA2B2;
	-webkit-font-smoothing: antialiased;
}

#subnav ul li {
	display: inline-block;
	margin: 0;
	padding: 0 35px;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

#subnav ul li:first-child {
	display: none;
}

#subnav ul li a {
	display: inline-block;
	padding: 15px 5px;
	color: white;
}

#header-donate {
	flex-basis: 120px;
}

#header-donate a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: var(--nav);
	padding: 0 20px;
	background: var(--color);
	color: white;
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
	transition: background-color .2s;
	-webkit-font-smoothing: antialiased;
}

#header-donate a:hover {
	background-color: var(--hover);
}
	
	
#content {
	position: relative;
	padding-top: var(--header);
	font-family: var(--sans);
}

#content a[id]  {
	position: relative;
	scroll-margin-top: 140px;
}

#site-alert {
	padding: 15px 20px;
	background: #3BA2B2;
	color: white;
	text-align: center;
}

#site-alert p {
	font-weight: bold;
	margin: 0 auto;
	max-width: 900px;
}

#site-alert a {
	color: white;
	border: 0;
	text-decoration: underline;
}


/* -- Lightbox -- */

#lightbox {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #333;
	background-color: rgba(0,0,0,.85);
}

#lightbox .close {
	position: absolute;
	z-index: 999999;
	top: 40px;
	right: 40px;
	width: 30px;
	height: 30px;
	background: url(../images/common/lightbox-close.svg) center center no-repeat;
	cursor: pointer;
}

#lightbox .main {
	position: relative;
	width: 100%;
	height: 100%;
	font-family: 'AvenirLTPro-Medium', arial, sans-serif;
}

#lightbox .intro-text {
	display: block;
	position: absolute;
	width: 60%;
	padding: 0 20%;
	color: #FFF;
	text-align: center;
	font-size: 20px;
}

#lightbox .intro-text h2 {
	font-family: 'AvenirLTPro-Light', arial, sans-serif;
	font-size: 50px;
	line-height: 52px;
	color: #FFF;
}

#lightbox .intro-text .text {
	display: block;
	padding: 60px 0;
	color: #BCBCBC;
	font-size: 24px;
	line-height: 30px;
}

#lightbox .intro-text .button {
	background: #FFF;
	color: #000;
}

#lightbox .title {
	display: block;
	height: 15%;
}

#lightbox .slider li {

}

#lightbox .slider li.intro {
	background: none;
}

#lightbox .photo {
	display: block;
	width: 80%;
	height: 70%;
	margin: auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

#lightbox .caption {
	display: block;
	position: absolute;
	width: 100%;
	bottom: 5%;
	color: #BCBCBC;
	text-align: center;
	font-size: 18px;
	line-height: 22px;
}

#lightbox .caption a {
	color: #BCBCBC;
	text-decoration: underline;
}

#lightbox .caption a:hover {
	color: #FFF;
}

#lightbox .caption .credit {
	display: block;
	color: #707070;
	font-size: 13px;
	line-height: 25px;
}

#lightbox .caption .credit a {
	color: #707070;
}

#lightbox .slider-prev ,
#lightbox .slider-next  {
	border: 0;
	width: 18px;
	height: 36px;
	left: 30px;
	background: url(../images/common/lightbox-left.svg) center center no-repeat;
}

#lightbox .slider-next  {
	left: auto;
	right: 30px;
	background: url(../images/common/lightbox-right.svg) center center no-repeat;
}

#lightbox .slider-page {
	display: none;
}



#mailing-list {
	padding: 75px 10%;
	color: white;
	background: black;
	text-align: center;
	font-family: var(--sans);	
}

#mailing-list h2 {
	font-size: 50px;
	line-height: 52px;
	font-weight: 700;
	color: white;
	margin: 0 auto 30px;
	cursor: default;
}

#mailing-list .description {
	max-width: 670px;
	margin: auto;
	font-family: var(--serif);
	font-size: 24px;
	line-height: 32px;
	font-style: italic;
	cursor: default;
	-webkit-font-smoothing: antialiased;
}

#mailing-list .form {
	padding: 50px;
	padding-bottom: 30px;
	margin-top: 50px;
	border: 2px solid white;
}

#mailing-list input {
	height: 62px;
	padding-left: 15px;
	padding-right: 15px;
	border: 0;
	margin: 0;
	font-family: var(--sans);
	font-size: 19px;	
}

#mailing-list .button {
	width: 100%;
	padding-right: 50px;
	background: var(--color) url("../images/common/arrow-right.svg") right 20px center no-repeat;
	cursor: pointer;
}

#mailing-list .button:hover {
	background-color: var(--hover);
}

#mc_embed_signup_scroll {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 220px;
	gap: 20px;
}

#mc_embed_signup div.mce_inline_error {
	background: var(--color) !important;
}

.mc-layout {
	display: flex;
	width: 100%;
	gap: 20px;
}

.mc-fields {
	flex-basis: 75%;	
}

.mc-submit {
	flex-grow: 1;
	flex-basis: 25%;	
}

.mc-field-group {
	margin-bottom: 20px;	
}

#mc-extra-fields {
	display: none;	
}

#mc-name-fields {
	display: flex;
}

#mc-name-fields .mc-field-group {
	flex-grow: 1;
	border-left: 1px solid #CCC;
}

#mc-name-fields .mc-field-group:first-child {
	flex-basis: 10%;
	border-right: 0;
}


footer {
	padding: 60px 5%;
	color: white;
	background: var(--color);
	text-align: center;
	font-family: var(--sans);
	cursor: default;
	-webkit-font-smoothing: antialiased;
}

#footer-logo {
	display: block;
	width: 412px;
	height: 43px;
	margin: 10px auto;
	background: url("../images/common/logo.svg") center center no-repeat;
	background-size: 100% auto;
}

#footer-logo span {
	display: none;
}

#footer-social {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	width: 321px;
	height: 40px;
	margin: 20px auto;
	gap: 10px;
}

#footer-social a {
	display: block;
}

#footer-social a span {
	display: none;
}

#footer-nav {
	margin: 75px 0 30px;
	font-size: 19px;
	line-height: 30px;
	font-weight: 700;
	text-transform: uppercase;
}

#footer-nav div {
	padding: 5px 0;
}

#footer-nav a {
	color: white;
}

#footer-copy {
	padding-top: 65px;
	font-size: 16px;
	line-height: 24px;	
}

#footer-address {
	margin: 50px 0 0;	
}

#footer-address a {
	color: white;
}

#footer-copy a {
	color: white;	
}

#footer-copy a:hover {
	border-bottom: 1px solid white;
}

#hero {
	width: 100%;
	aspect-ratio: 16 / 9;
  max-height: min(calc(100vh - 340px), 800px); 
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: var(--neutral);	
}