/*

GREEN: #1C5136
ORANGE: #F39C12
LIGHT ORANGE: #FCC08E;
BLACK: #161F1C

OPEN SANS: 400, 600, 700, 800

*/

:root {
    --theme-primary: #1C5136;
    --theme-secondary: #181E1C;
    --theme-highlight: #D97706;
    --theme-black: #181E1C;
    --theme-white: #F9F8F8;
}

@font-face {
	font-family: 'icomoon';
	src:  url('fonts/icomoon.eot?pejqg7');
	src:  url('fonts/icomoon.eot?pejqg7#iefix') format('embedded-opentype'),
	  url('fonts/icomoon.ttf?pejqg7') format('truetype'),
	  url('fonts/icomoon.woff?pejqg7') format('woff'),
	  url('fonts/icomoon.svg?pejqg7#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
  
[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.maintenance {
	display: none;
}

.beta {
	display: block;
}

/* ================ GENERAL ================ */

html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}

@media only screen and (max-device-width: 480px) {
	body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

body.single-post {
	display: block;
}

h1 {
	font-size: 28px;
	font-family: industry-inc-base, sans-serif;
	letter-spacing: 1px;;
}

h2 {
	font-family: industry-inc-base, sans-serif;
}

h3 {
	-webkit-hyphens: none;
    -moz-hyphens:    none;
    -ms-hyphens:     none;
    hyphens:         none;
}

a.orange {
	color: #F39C12;
	text-decoration: none;
}

a.breadcrumb {
	color: #F39C12!important;
	text-decoration: none;
	font-size: 12px;
}

a.button-standard {
    background: #E79F3C;
    color: #F9F8F8!important;
	padding: 5px 15px;
	transition: 0.5s ease-in-out;
}

a.button-standard:hover {
    background: #1C5136;
	transition: 0.5s ease-in-out;
}

.wrapper {

}

.content-wrap {
	min-height: 100%;
	flex: 1 0 auto;
	padding: 200px 0 0 0;
	background: #F9F8F8;
	transition: 0.5s ease-in-out;
	overflow-x: hidden;
}

@media (max-width: 767px) {
	.content-wrap {
		padding: 120px 0 0 0;
	}
}

.page-template-page-HOME .content-wrap {
	padding: 0;
}

.page-template-page-CONTACT .content-wrap {
	background: #1C5136;
	color: #F9F8F8;
}

.content-wrap.hasgrid {
	padding: 200px 0 100px 0;
}

@media (max-width: 767px) {
	.content-wrap.hasgrid {
		padding: 120px 0 100px 0;
	}
}

.content-wrap.tran {
	background: #F9F8F8;
	transition: 0.5s ease-in-out;
}

.content-wrap.tran2 {
	background: #F2F2F2;
	transition: 0.5s ease-in-out;
}

.content-wrap.tran3 {
	background: #F9F8F8;
	transition: 0.5s ease-in-out;
}

.content-wrap.tran4 {
	background: #F9F8F8;
	transition: 0.5s ease-in-out;
}

/* ================ ./END GENERAL ================ */


/* ================ MISC ================ */

.fullscreen {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.fullscreen embed {
	width: 100%;
	height: 100%;
}

.fullscreen object {
	width: 100vw;
	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height: 100vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

object.portrait {
	display: none;
}

@media (max-width: 420px) {
	object.landscape {
		display: none;
	}
	object.portrait {
		display: block;
	}
}

article {
    position: relative;
    margin: 0 auto;
    font-size: 21px;
    letter-spacing: 0.14px;
    line-height: 33px;
	font-family: 'Open Sans', sans-serif;
}

article h2 {
    margin: 0 0 30px 0;
    font-size: 32px;
    letter-spacing: 0.44px;
    line-height: 45px;
	font-family: industry-inc-base, sans-serif;
	-webkit-hyphens: none;
    -moz-hyphens:    none;
    -ms-hyphens:     none;
    hyphens:         none;
}

article.top {
	position: relative;
	height: calc(100vh - 200px);	
}

@media (max-width: 767px) {
	article.top {
		position: relative;
		height: calc(100vh - 120px);	
	}
}

article.top.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: -200px 0 0 0;
    overflow: hidden;
    color: #F9F8F8;
    background-color: #1C5136;
    z-index: 1;
}

article.top.hero[style*="background-image"]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
	z-index: -1; 
}

article.top.hero > * {
    position: relative;
    z-index: 1;
}

article.top.hero.blk {
	color: #000;
}

article.top.hero.blk_bg {
	background: #000;
}

article.top.hero.grn_bg {
	background: #1C5136;
}

article.top article.heading .buttons {
	position: relative;
	margin: 60px 0 0 0;
	bottom: 20%;
}

article.secondary {
	position: relative;
	width: 100%;
}

article.secondary section.bodycopy {
	padding: 15vh 0 18vh;
	font-size: 20px;
	line-height: 28px;
	font-family: 'Open Sans', sans-serif;
	overflow-wrap: break-word;
	word-wrap: break-word;

	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	word-break: break-all;
	/* Instead use this non-standard one: */
	word-break: break-word;

	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.page-template-page-SIMPLE article.secondary section.bodycopy {
	padding: 15vh 0 0 0;
}

@media (max-width: 480px) {
	article.secondary section.bodycopy {
		line-height: 30px;
	}
}

article.secondary section.bodycopy a {
	text-decoration: none;
	color: #F39C12;
}

@media (max-width: 480px) {
	article.secondary section.bodycopy a {
		line-height: 20px;
	}
}

article.secondary section.bodycopy a:hover {
	text-decoration: none;
	color: #FCC08E;
}

@media (max-width: 768px) {
	article.secondary section.bodycopy {
		padding: 10vh 0;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	article.secondary section.bodycopy {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	article.secondary section.bodycopy {
		font-size: 16px;
	}
}

.page-template-page-SIMPLE article.secondary section.bodycopy a {
	color: #1C5136;
}


.static_image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-size: cover;
	background-position: center;
}

.media_content {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.page-template-page-HOME .media_content {
	opacity: 1;
}

.media_content .static_image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-size: cover;
	background-position: center;
}

.mediaholder {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.btn1 {
	position: relative;
	width: 160px;
	height: 50px;
	display: flex;
	float: left;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border: 3px solid #E39E38;
}

.btn1 + .btn1 {
	margin-left: 60px;
}

.btn1 a {
	position: relative;
	display: flex;
	text-decoration: none;
	color: #E39E38;
	align-items: center;
}

.btn2 {
	position: relative;
	width: 200px;
	height: 50px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border: 3px solid #F9F8F8;
}

@media (max-width: 767px) {
	.btn2 {
		height: 30px;
	}
}

.btn2 + .btn2 {
	margin-left: 60px;
}

.btn2 a {
	position: relative;
	display: flex;
	text-decoration: none;
	color: #F9F8F8;
	align-items: center;
}

article.heading {
	position: absolute;
	width: calc(100% - 160px);
	max-width: 1230px;
	left: 0;
	top: 80%;
	transform: translateY(-50%);
	right: 0;
	margin: 0 auto;
	z-index: 1;
}

@media (min-width: 481) and (max-width: 767px) {
	article.heading {
		top: 70%;
		transform: translateY(-40%);
	}
}

@media (max-width: 480px) {
	article.heading {
		top: 50%;
		transform: translateY(-40%);
	}
}

.hero article.heading {
	/* background: rgba(255,255,255,0.8); */
	padding: 20px 35px 20px 80px;
	/* width: fit-content; */
	right: auto;
	/* color: #000; */
}

/*@media (min-width: 481px) and (max-width: 767px) {
article.heading {
		bottom: 10%;
	}
}

@media (max-width: 480px) {
	article.heading {
		top: 0;
	}
}

article.top.hero article.heading {

}*/

article.heading .wrap {
	position: relative;
	max-width: 700px;
}

article.heading a {
	color: #FFF;
}

article.heading h1 {
	margin: 0;
	font-size: 46px;
	line-height: 55px;
	font-family: industry, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	article.heading h1 {
		margin: -20px 0 0 0;
		font-size: 45px;
	}
}

@media (max-width: 800px) and (-webkit-device-pixel-ratio: 3) 
and (orientation: landscape) {
	article.heading h1 {
		margin: -20px 0 0 0;
		font-size: 45px;
	}
}

article.heading section.summary {
    font-size: 20px;
    line-height: 28px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

article.heading section.summary p {
    margin: 0;
}

.heading-block {
	position: relative;
	width: 100%;
	padding: 40% 0 0 0;
	background: #161F1C;
}

.heading-block.slide {
	background: #FFF;
}

/* @media only screen and (min-device-width: 1000px) {
	.heading-block {
		height: 400px;
		display: table;
		padding: 0;
	}
} */

.heading-block.vh {
	padding: 100vh 0 0 0;
}

.fill-animate {
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	background: #181F1C;
}

.fill-animate.active {
	width: 100%;
	transition: 0.5s ease-in-out 1s;
}

.inner.animate h2 {
	transform: rotateY(-90deg);
}

.fill-animate.active .inner.animate h2 {
	transform: rotateY(0deg);
	transition: 0.5s ease-in-out 1.55s;
}

.heading-block.strip {
	height: 140px;
	padding: 0;
}

.heading-block .inner {
	position: absolute;
	width: 90%;
	top: 65%;
	right: 0;
	left: 0;
	transform: translateY(-65%);
	margin: 0 auto;
	color: #F9F8F8;
}

.heading-block .inner h2 {
	position: relative;
	display: block;
	width: 70%;
	margin: 0;
	font-size: 48px;
	line-height: 1em;
	text-transform: uppercase;
	font-family: industry-inc-base, sans-serif;
}

@media (max-width: 767px) {
	.heading-block .inner h2 {
		font-size: 32px;
	}
}

.heading-block.solo {
	background: #1C5136;
	margin: -1px 0 0 0;
	padding: 30% 0 0 0;
}

@media (max-width: 480px) {
	.heading-block.solo {
		padding: 50% 0 0 0;
	}
}

.heading-block.solo .inner {
	top: 50%;
	transform: translateY(-50%);
}

@media (min-width: 768px) and (max-width: 1024px) {
	.heading-block.solo .inner {
		
	}
}

@media (max-width: 767px) {
	.heading-block.solo .inner {
		
	}
}

.heading-block.solo .inner h2 {
	width: 100%;
	max-width: none;
	margin: 0 0 20px 0;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.heading-block.solo .inner h2 {
		margin: 0 0 15px 0;
		font-size: 28px;
		letter-spacing: 0.25em;
	}
}

@media (max-width: 480px) {
	.heading-block.solo .inner h2 {
		margin: 0 0 10px 0;
	}
}

.heading-block.solo .inner h3 {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.heading-block.solo .inner h3 {
		font-size: 0.85em;
	}
}

@media (max-width: 480px) {
	.heading-block.solo .inner h3 {
		line-height: 0.1em;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.heading-block.solo .inner .btn2 {
		height: 30px;
	}
}

.standard-wrap {
	position: relative;
	width: calc(100% - 510px);
	max-width: 1240px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.standard-wrap {
		width: calc(100% - 200px);
	}
}

@media (max-width: 480px) {
	.standard-wrap {
		width: calc(100% - 100px);
	}
}

.fadeon,
.fadeon-loop {
	opacity: 0;
}

.fadeon.inview,
.fadeon-loop.inview {
	opacity: 1;
	transition: 0.5s ease-in-out 0.5s;
}

.fadeon.inview a,
.fadeon-loop.inview a {

}

.fadeonMarginShift {
	margin-top: 40px;
	opacity: 0;
	transition: 0.5s ease 0.5s;
}

.fadeonMarginShift.inview {
	margin-top: 0;
	opacity: 1;
	transition: 0.5s ease 0.5s;
}

.stay {
	position: fixed;
	top: 0;
}

.mobile-only {
	display: none;
	text-align: center;
}

@media (max-width: 480px) {
	.mobile-only {
		display: block;
	}
}

.downloads {
	position: relative;
	margin: 50px 0 0 0;
}

@media (min-width: 481px) and (max-width: 767px) {
	.downloads {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.downloads {
		margin: 0;
	}
}

a.download {
	position: relative;
	display: block;
	margin: 20px 0;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	transition: 0.25s ease-in-out;
}

@media (min-width: 481px) and (max-width: 767px) {
	a.download i {
		margin: 10px 0;
	}
}

a.download i {
	position: relative;
	margin: 0 0 0 10px;
	transform: translateY(13%);
	font-size: 28px;
	transition: 0.25s ease-in-out;
	cursor: pointer;
}

@media (min-width: 481px) and (max-width: 767px) {
	a.download i {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	a.download i {
		display: none;
	}
}

a.download:hover {
	margin: 20px 0 20px 15px;
	transition: 0.25s ease-in-out;
}

@media (max-width: 480px) {
	a.download:hover {
		margin: 0;
	}
}

a.download:hover i {
	transform: scale(1.25) translateY(15%);
	transition: 0.25s ease-in-out;
}

.scale-box iframe {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.noclick-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	background:#000;
	opacity: 40%;
	z-index: 9;
	transition: 0.25s ease-in-out;
	cursor: pointer;
}

.noclick-overlay.inactive {
	width: 7%;
	height: calc(100% - 55px);
	transition: 0.25s ease-in-out;
}

.noclick-overlay .fa-unlock {
	opacity: 0;
	transition: 0.25s ease-in-out;
}

.noclick-overlay.inactive .fa-unlock {
	opacity: 1;
	transition: 0.25s ease-in-out;
}

.noclick-overlay.inactive .fa-lock {
	opacity: 0;
	transition: 0.25s ease-in-out;
}

.noclick-overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 15vh;
	color: #999;
}

.noclick-overlay.inactive i {
	font-size: 5vw;
}

#stickThis {

}
#stickThis.stick {
    position: fixed;
    top: 0;
}

.scale-box {
	position: relative;
	width: 100%;
	padding-top: 75%;
}

.scale-box .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: block;
	overflow: hidden;
}

/* ================ ./END MISC ================ */



/* ================ CONTACT BOX ================ */

.contact-box {
	width: 100%;
	margin: 0 0 60px 0;
	padding: 0;
	color: #F9F8F8;
}

@media only screen and (max-device-width: 440px) {
	.contact-box {
		margin: 0;
	}
}

.contact-box a {
	color: #F9F8F8;
	text-decoration: none;
	transition: 0.5s ease-in-out;
}

.contact-box a:hover {
	color: #F39C12!important;
	transition: 0.5s ease-in-out;
}

#slide_out_menu .contact-box {
	padding: 0 0 50px 0;
}

.contact-box h2 {
	margin: 0;
}

.contact-box .mobile {
	display: none;
}

@media (max-width: 767px) {
	.contact-box .desktop {
		display: none;
	}
	.contact-box .mobile {
		display: block;
	}
}

.contact-box .wrap {
	width: 100%;
	margin: 10px 0 20px;
	border-top: 1px solid #F9F8F8;
	border-bottom: 1px solid #F9F8F8;
}

.clearfix {
	clear: both;
}

.contact-box ul.social {
	position: relative;
	width: 69%;
	left: 0;
	margin: 15px 0;
	padding: 0;;
	list-style: none;
	display: flex;
	justify-content: space-between;
	transition: 0.5s ease-in-out;
}

@media (max-width: 480px) {
	.contact-box ul.social {
		width: 100%;
	}
}

.contact-box ul.social.p_active {
	width: 60%;
	left: 40%;
	transition: 0.5s ease-in-out;
}

.contact-box ul.social li {
	position: relative;
	width: 30px;
	height: 30px;
	display: block;
	cursor: pointer;
	text-align: center;
	filter: invert(0);
	transition: filter 0.5s ease-in-out;
	background-size: cover;
}

.contact-box ul.social li a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.contact-box ul.social li:hover {
	filter: invert(1);
	transition: filter 0.5s ease-in-out;
}

.contact-box .wrap .phone_number {
	position: absolute;
	width: 40%;
	margin: 20px 0;
	text-align: center;
	font-size: 18px;
	display: none;
}

@media only screen and (max-device-width: 1170px) {
	.contact-box .wrap .phone_number {
		font-size: 2vw;
		line-height: 5.125vw;
	}
}

.contact-box ul.social a.desktop {
		display: block;
}
	
.contact-box ul.social a.mobile {
		display: none;
}

@media (max-width: 767px) {
	.contact-box ul.social a.desktop {
		display: none;
	}
	.contact-box ul.social a.mobile {
		display: block;
	}
}

.contact-box ul.social li.phone {
	background: url(img/icons/icon-phone.png) no-repeat;
	background: url(img/icons/icon-phone.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.phone.p_active {
	filter: invert(1);
	transition: filter 0.5s ease-in-out;
}

.contact-box ul.social li.email {
	background: url(img/icons/icon-email.png) no-repeat;
	background: url(img/icons/icon-email.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.pin {
	background: url(img/icons/icon-pin.png) no-repeat;
	background: url(img/icons/icon-pin.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.twitter {
	background: url(img/icons/icon-twitter.png) no-repeat;
	background: url(img/icons/icon-twitter.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.facebook {
	background: url(img/icons/icon-facebook.png) no-repeat;
	background: url(img/icons/icon-facebook.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.instagram {
	background: url(img/icons/icon-instagram.png) no-repeat;
	background: url(img/icons/icon-instagram.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box ul.social li.youtube {
	background: url(img/icons/icon-youtube.png) no-repeat;
	background: url(img/icons/icon-youtube.svg) no-repeat,
    linear-gradient(transparent, transparent);
}

.contact-box #mc_embed_signup {

}

.contact-box #mc_embed_signup input {
	position: relative;
	height: 40px;
	padding: 0;
	float: left;
	font-size: 1em;
	text-align: center;
	border: none;
}

.contact-box #mc_embed_signup input.email {
	width: 70%;
}

#slide_out_menu .contact-box #mc_embed_signup input.email {
	position: absolute;
	left: 0;
}

.contact-box #mc_embed_signup input.button {
	width: 30%;
	height: 41px;
	background: #F39C12;
	color: #F9F8F8;
	cursor: pointer;
	border: 1px solid #F39C12;
	transition: 0.5s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#slide_out_menu .contact-box #mc_embed_signup input.button {
	position: absolute;
	right: 0;
}

/* ================ ./END CONTACT BOX ================ */





/* ================ GRID BOX ================ */

.heading-block.grid {
	position: absolute;
	height: 200px;
	margin: 0 0 60px 0;
	padding: 0;
	z-index: 9;
}

@media (max-width: 1024px) {
	.heading-block.grid {
		height: 120px;
	}
}
	
/*.heading-block.grid.stay {
	position: fixed;
	z-index: 99;
}*/

.heading-block.grid .inner {
	top: 52%;
	transform: translateY(-50%);
}

@media (max-width: 1024px) {
	.heading-block.grid .inner {
		
	}
}

@media (max-width: 767px) {
	.heading-block.grid .inner {
		width: 80%;
	}
}

ul.grid_nav {
	position: relative;
	width: 100%;
	margin: 0 auto;
	font-size: 0.85em;
	list-style: none;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}

@media (max-width: 1024px) {
	ul.grid_nav {
		font-size: 0.75em;
	}
}

@media (max-width: 767px) {
	ul.grid_nav {
		line-height: 35px;
	}
}

@media (max-width: 480px) {
	ul.grid_nav {
		font-size: 12px;
		line-height: 20px;
		text-align: center;
	}
}

ul.grid_nav li {
	display: inline-block;
	margin: 8px 20px;
	padding: 0 1% 2px 1%;
	border-bottom: 2px solid #F2F8FF;
	opacity: 0.2;
	transition: 0.5s ease-in-out;
}

@media (max-width: 768px) {
	ul.grid_nav li {
		margin: 4 10px;
		padding: 0 1%;
		border-bottom: none;
	}
}

@media (max-width: 380px) {
	ul.grid_nav li {
		margin: 0 12px;
	}
}


ul.grid_nav li:hover {
	opacity: 0.7;
	transition: 0.5s ease-in-out;
}

ul.grid_nav li.active {
	opacity: 1;
	transition: 0.5s ease-in-out;
}

ul.grid_nav li.active::before {
	position: relative;
	content: ' __';
}

ul.grid_nav li a {
	color: #F2F8FF;
	text-decoration: none;
}

.grid-container {
	display: grid;
	margin: 0 0 10vh 0;
	column-gap: 50px;
	row-gap: 50px;
}

.grid-container.two {
	grid-template-columns: auto auto;
}

.grid-container.three {
	grid-template-columns: auto auto auto;
}

.grid-container.four {
	grid-template-columns: auto auto auto auto;
}

@media (max-width: 1024px) {
	.grid-container.four {
		grid-template-columns: auto auto auto;
	}
}

@media (max-width: 1250px) {
	.grid-container.four,
	.grid-container.three  {
		grid-template-columns: auto auto;
	}
}

@media (max-width: 630px) {
	.grid-container.four,
	.grid-container.three,
	.grid-container.two  {
		grid-template-columns: auto;
	}
}

.grid-box {
	position: relative;
	background: #000;
	padding-top: 100%;
	font-size: 30px;
	text-align: center;
	cursor: pointer;
}

.grid-container .bio-wrapper {
	cursor: pointer;
}

@media (min-width: 768) and (max-width: 1024px) {
	.grid-container .bio-wrapper {
		margin: 0 5px 10px 5px;
	}
}

@media (min-width: 481) and (max-width: 480px) {
	.grid-container.two .bio-wrapper:nth-child(2n) {
		margin: calc(50% + 15px) 0 calc(-50% - 15px) 0;
	}
}

@media (min-width: 1025px) {
	.grid-container.four .bio-wrapper:nth-child(2n) {
		margin: calc(50% + 15px) 0 calc(-50% - 15px) 0;
	}
}

@media (min-width: 1251px) {
	.grid-container.three .bio-wrapper:nth-child(3n - 1) {
		margin: calc(50% + 15px) 0 calc(-50% - 15px) 0;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.grid-container.four .bio-wrapper:nth-child(3n - 1) {
		margin: calc(50% + 15px) 0 calc(-50% - 15px) 0;
	}
}

@media (min-width: 631px) and (max-width: 1250px) {
	.grid-container.three .bio-wrapper:nth-child(2n),
	.grid-container.four .bio-wrapper:nth-child(2n) {
		margin: calc(50% + 15px) 0 calc(-50% - 15px) 0;
	}
}



.grid-box .bio_pic {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	opacity: 0.75;
	transition: 0.5s ease-in-out;
	z-index: 1;
}

.grid-box .info-wrapper:hover .pic-cover {
	opacity: 1;
	transition: 0.5s ease;
}

.grid-box .pic-cover {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	transition: 0.5s ease;
}

@media (max-device-width: 1024px) {
	.grid-box .pic-cover {
		opacity: 1;
	}
}

.grid-box .info-wrapper.active .pic-cover {
	display: none;
}

@media (max-width: 1024px) {
	.grid-container .grid-box .bio-wrapper {
		margin: 10px 10px 0 10px;
	}
}

.grid-container .grid-box .info {
	position: absolute;
	width: 95%;
	padding: 5% 2.5% 0 2.5%;
	color: #FFF;
}

.grid-box .info-wrapper.active .info {
	display: block;
	opacity: 1;
	transition: opacity 0.5s ease-in-out 0.5s;
}

.grid-box .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	overflow-y: scroll;
	text-align: left;
	z-index: 2;
}

.grid-container .grid-box .info-wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}

.grid-container .grid-box:hover .info-wrapper {
	opacity: 0.2;
	transition: opacity 0.5s ease-in-out;
}

.grid-box .inner.bios a {
	color: #F2F2F2;
	transition: 0.5s ease-in-out;
}

.grid-box .inner.bios a:hover {
	color: #F9F8F8;
	transition: 0.5s ease-in-out;
}


.grid-box .inner.bios h3 {
	position: relative;
	width: 100%;
	text-align: right;
	margin: 0;
	font-size: 0.75em;
}

.grid-box .inner.bios h3 {
	position: relative;
	width: 100%;
	text-align: right;
	margin: 0;
	font-size: 0.75em;
}

.grid-box .inner.bios h2 {
	position: relative;
	width: 100%;
	margin: 5px 0;
	font-size: 1em;
}

.grid-box .inner.bios .bio_icons {
	position: relative;
	width: 100%;
}

.grid-box .inner.bios .bio {
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 0.75em;
	line-height: 1.25em;
}

.grid_bottom_spacer {
	position: relative;
	padding: 8% 0 0 0;
}

/* ================ ./END GRID BOX ================ */



/* ================ TILES ================ */

.tiles-holder {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.tiles-wrap {
	position: relative;
	display: block;
}

section.tiles {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 40% 0 0 0;
}

@media (min-width: 1240px) {
	section.tiles {
		height: 495px;
		padding: 0;
	}
}

section.tiles.solo {
	max-width: 1240px;
}

@media (max-width: 480px) {
	section.tiles.solo {
		padding: 0;
	}
}

section.event.tiles.solo {
	margin: 0 auto 80px auto;
}

section.tiles.slider {
	max-width: none;
	height: auto;
	padding: 40% 0 0 0;
}

section.tiles .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}

@media (max-width: 480px) {
	section.tiles.solo .inner {
		position: relative;
	}
}

section.tiles .pic-tile {
	position: relative;
	width: 55%;
	height: 100%;
	float: left;
	background: #CCC;
}

@media (max-width: 480px) {
	section.tiles.solo .pic-tile {
		width: 100%;
		height: 200px;
		float: none;
	}
}

section.tiles.odd .pic-tile {
	float: left;
}

section.tiles.even .pic-tile {
	float: right;
}

section.tiles.slider .pic-tile {
	width: 50%;
}

.pic-tile-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
}

.pic-tile-content img {
	position: absolute;
	min-width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

section.tiles .text-tile {
	position: relative;
	display: flex;
	width: 45%;
	height: 100%;
	float: left;
	line-height: 45px;
	font-family: Open Sans, sans-serif;
	justify-content: center;
	align-items: center;
	/* text-align: right; */
	background: #FFF;
}

@media (max-width: 480px) {
	section.tiles.solo .text-tile {
		width: 100%;
		float: none;
	}
}

section.tiles .text-tile a {
	text-decoration: none;
	color: #F39C12;
	transition: 0.5s ease-in-out;
}

section.tiles .text-tile a:hover {
	color: #FCC08E;
	transition: 0.5s ease-in-out;
}

section.tiles.even .text-tile {
	text-align: left;
}

section.tiles.slider .text-tile {
	width: 50%;
}

section.tiles .text-tile .holder {
	padding: 50px;
}

@media (max-width: 767px) {
	section.tiles .text-tile .inner,
	section.tiles .text-tile .holder {
		padding: 30px;
	}
}

section.tiles .text-tile h2 {
	font-size: 3vw;
}

@media (min-width: 1240px) {
	section.tiles .text-tile h2 {
		font-size: 37px;
	}
}

@media (max-width: 767px) {
	section.tiles .text-tile h2 {
		margin: 0 0 20px 0;
		line-height: 25px;
	}
}

@media (max-width: 480px) {
	section.tiles .text-tile h2 {
		line-height: 25px;
	}
}

section.tiles .text-tile .copy {
	font-size: 2vw;
	line-height: 2.75vw;
}

.tiles.slider .text-tile .copy {
	font-size: 21px;
	line-height: 30px;
}

@media (max-width: 767px) {
	.tiles.slider .text-tile .copy {
		font-size: 16px;
		line-height: 20px;
	}
}

@media (min-width: 1240px) {
	section.tiles .text-tile .copy,
	section.tiles .text-tile .copy.single {
		font-size: 16px;
		line-height: 28px;
	}
}

@media (max-width: 768px) {
	section.tiles .text-tile .copy {
		line-height: 23px;
	}
	section.tiles .text-tile .copy.single {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	section.tiles .text-tile .copy {
		line-height: 13px;
	}
	section.tiles .text-tile .copy.single {
		font-size: 11px;
	}
	section.tiles.solo .text-tile .copy.single {
		line-height: 18px;
	}
}

section.tiles.slider .text-tile {
	text-align: left;
}

section.tiles .text-tile .copy .caption2 {
    position: absolute;
	width: calc(100% - 200px);
	padding: 30px;
	bottom: 100px;
}

/* ================ ./TILES ================ */





/* ================ HEADER ================ */

header {
	position: absolute;
	width: 100%;
	height: 200px;
	z-index: 999;
}

#header-overlay {
    position: fixed;
    width: 100%;
    height: 200px;
	top: 0;
	pointer-events: none;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.3) 100%);
}

/*.page-template-page-HOME header {
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0) 100%);
} */

article.top.hero .video {
	width: 100%;
	height: 100%;
}

article.top.hero .video embed {
	position: absolute;
	height: 100%;
	width: 200vh;
	min-width: 100%;
	min-height: 56.25vw;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 780px) {  
	header {
		position: absolute;
		height: 120px;
	}
}	

header #homelogo {
	position: absolute;
	width: 450px;
	height: 110px;
	top: 50%;
	left: 80px;
	transform: translateY(-50%);
	background: url(img/logos/logo-black.png) no-repeat;
	background: url(img/logos/logo-black.svg) no-repeat, linear-gradient(transparent, transparent);
	background-size: contain;
	z-index: 9;
}

.page-template-page-HOME header #homelogo,
.page-template-page-WORK header #homelogo,
.page-template-page-PARKS header #homelogo,
.page-template-page-IMPACT header #homelogo,
.page-template-page-CONTACT header #homelogo,
.page-template-page-SIMPLE header #homelogo {
	background: url(img/logos/logo-white.png) no-repeat;
	background: url(img/logos/logo-white.svg) no-repeat, linear-gradient(transparent, transparent);
}

@media (max-width: 768px) {  
	header #homelogo {
		width: 180px;
		height: 80px;
		top: 20px;
		left: 20px;
		opacity: 1;
		transform: none;
		transition: 0.5s ease-in-out;
	}	
}

@media (max-width: 800px) and (-webkit-device-pixel-ratio: 3) 
and (orientation: landscape) {
	header #homelogo {
		width: 180px;
		height: 80px;
		top: 20px;
		left: 20px;
		opacity: 1;
		transform: none;
		transition: 0.5s ease-in-out;
	}	
}

header .toolbar {
	position: fixed;
	width: 130px;
	height: 80px;
	top: 55px;
	right: 40px;
	color: #000;
	z-index: 999;
	font-size: 32px;
}

header.homepage .toolbar {
	color: #F9F8F8;
}

@media (max-width: 1024px) { 
	header .toolbar {
		height: 65px;
		top: 20px;
		right: 0;
		transform: none;
	}	
}

@media (max-width: 480px) { 
	header .toolbar {
		width: 100px;
		height: 45px;
	}	
}

header .toolbar i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

header .toolbar i#menu_btn.inactive {
	opacity: 0;
	display: none;
}

header .toolbar i#close_btn {
	opacity: 0;
	display: none;
}

header .toolbar i#close_btn.active {
	opacity: 1;
	color: #F9F8F8;
	display: block;
	transition: 0.5s ease-in-out;
}

header .toolbar i#close_btn.active:hover {
	color: #F39C12;
	transition: 0.5s ease-in-out;
}

header .toolbar .search {
	position: relative;
	width: calc(50% - 1px);
	height: 100%;
	float: left;
	/*border-right: 2px solid #000;*/
	transition: 0.5s ease-in-out;
}

.page-template-page-HOME header .toolbar .search,
.page-template-page-WORK header .toolbar .search,
.page-template-page-PARKS header .toolbar .search,
.page-template-page-IMPACT header .toolbar .search,
.page-template-page-CONTACT header .toolbar .search,
.page-template-page-SIMPLE header .toolbar .search
header .toolbar.knockout .search {
	/*border-right: 2px solid #F9F8F8;*/
	transition: 0.5s ease-in-out;
}

header .toolbar .menu {
	position: relative;
	width: calc(50% - 1px);
	height: 100%;
	float: right;
	cursor: pointer;
	color: #000;
	transition: 0.5s ease-in-out;
}

.page-template-page-HOME .toolbar .menu,
.page-template-page-WORK .toolbar .menu,
.page-template-page-PARKS .toolbar .menu,
.page-template-page-IMPACT .toolbar .menu,
.page-template-page-CONTACT .toolbar .menu,
.page-template-page-SIMPLE .toolbar .menu,
header .toolbar.knockout .menu {
	color: #F9F8F8;
}

header .toolbar .menu:hover {
	color: #F39C12;
	transition: 0.5s ease-in-out;
}

/* ----- #slide_out menu ----- */

#slide_out_menu {
	position: fixed;
	width: 40%;
	min-width: 525px;
	height: 100%;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 99;
	display: none;
}

#slide_out_menu.internal {
	width: 100%;
	z-index: 9;
}

@media (max-width: 525px) {
	#slide_out_menu {	
		width: 100%;
		min-width: auto;
	}
}

#slide_out_menu .holder {	
	position: relative;
	width: 92%;
	height: 100%;
	right: -100%;
	display: flex;
	flex-flow: column;
	padding: 50px 4% 30px;
	color: #F9F8F8;
	font-family: industry-inc-base, sans-serif;
	background: rgba(22,31,28,0.9);
	transition: 0.5s ease-in-out;
}

@media (max-width: 768px) {
	#slide_out_menu .holder {	
		padding: 15px 4% 20px;
	}
}

#slide_out_menu .holder.active {
	right: 0;
	transition: 0.5s ease-in-out;
	overflow-y: scroll;
}

#slide_out_menu .holder h2 {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 1.5em;	
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) and (orientation:landscape) {
	#slide_out_menu .holder h2 {	
		font-size: 1em;
	}
}

#slide_out_menu .holder h3 {
	position: absolute;
	bottom: 20px;
	left: 4%;
    margin: 0;
    font-weight: normal;
    font-size: .75em;
}

@media screen and (max-width: 768px) and (orientation:landscape) {
	#slide_out_menu .holder h3 {	
		bottom: 0;
		left: auto;
		right: 4%;
		font-size: .5em;
	}
}

#slide_out_menu .holder .box-top {
	position: relative;
	width: 100%;
	flex: 0 1 auto;
}

#slide_out_menu .holder .logo,
footer .logo {
	position: relative;
	width: 310px;
	height: 70px;
	top: 0;
	left: 0;
	margin: 10px 0;
	background: url(img/logos/logo-subhead2-white.png) no-repeat;
	background: url(img/logos/logo-subhead2-white.svg) no-repeat,
    linear-gradient(transparent, transparent);
	background-size: contain;
	background-position: left center;
	/*z-index: 999;*/
	/*opacity: 0;*/
	transition: 0.5s linear ;
}

@media (max-width: 768px) {
	#slide_out_menu .holder .logo {	
		margin: 0;
	}
}

@media (max-width: 480px) {
	#slide_out_menu .holder .logo {	
		width: 200px;
	}
}

#slide_out_menu .holder.active .logo {
	opacity: 1;
	transition: 1s linear ;
}

#slide_out_menu .holder .open_div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	flex: 1 1 auto;
	overflow-y: auto;
}

#slide_out_menu .holder .footerinfo {
	position: relative;
	width: 100%;
	flex: 0 1 40px;
}

footer hr {
	border-top: 3px solid #F9F8F8;
}

#slide_out_menu .holder ul.footer_links {
	position: relative;
	margin: 0;
	padding: 0;;
	list-style: none;
}

#slide_out_menu .holder ul.footer_links li {
	padding: 0 0 10px 0;
}

#slide_out_menu.internal .column {
	position: relative;
	width: 400px;
	margin: 200px 0 0 0;
}

@media (max-width: 740px) {
	#slide_out_menu.internal .column {
		margin: 110px 0 0 0;
	}
}

@media (max-width: 440px) {
	#slide_out_menu.internal .column {
		width: 100%;
	}
}

#slide_out_menu.internal .column .stay_in_touch {
	position: relative;
	width: 100%;
	margin: 80px 0 0 0;
}

/* ----- dropdown ----- */

ul.dropdown {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
	color: #F9F8F8;
	line-height: 3em;
}

ul.dropdown li {
	position: relative;
	display: table;
	color: #F9F8F8;
	font-size: 1.75em;
	cursor: pointer;
	transition: 0.5s ease-in-out;
}

ul.dropdown li .feature-link {
	color: #F00;
}

@media (max-width: 440px) {
	ul.dropdown li {
		position: relative;
		display: table;
		color: #F9F8F8;
		font-size: 1.25em;
		cursor: pointer;
		transition: 0.5s ease-in-out;
	}
}

ul.dropdown li:hover {
	color: #F39C12;
	transition: 0.5s ease-in-out;
}

ul.dropdown li i {
	position: inline-block;
	margin: 0 0 0 10px;
	transform: rotate( 0 );            
    transition: transform 500ms ease-in-out;
}

ul.dropdown li i.active {
	transform: rotate( 180deg );            
    transition: transform 500ms ease-in-out;
}

ul.dropdown li a {
	color: #F9F8F8;
	text-decoration: none;
}

ul.dropdown li.inactive a {
	opacity: 0.25;
}

ul.expand {
	position: relative;
	height: 0;
	display: block;
	margin: 0;
	list-style: none;
	overflow: hidden;
	opacity: 0;
	color: #F00;
	transition: 0.5s ease-in-out;
}

@media (max-width: 440px) {
	ul.expand {
		padding: 0 0 0 10px;
	}
}

ul.expand.active {
	height: auto;
	opacity: 1;
	transition: 0.5s ease-in-out;
}

ul.expand li {
	margin: 10px 0;
	display: block;
	font-size: 0.75em;
}

@media (max-width: 440px) {
	ul.expand li {
		margin: 0;
	}
}

ul.expand li a {
	color: #F9F8F8;
	text-decoration: none;
	transition: 0.5s ease-in-out;
}

ul.expand li a:hover {
	color: #F39C12;
	transition: 0.5s ease-in-out;
}

#slide_out_menu .extra {
	position: absolute;
	width: 200px;
	top: 250px;
	right: 80px;
	text-align: center;
}

@media (max-width: 768px) {
	#slide_out_menu .extra {
		right: 30px;
	}
}

@media (max-width: 740px) {
	#slide_out_menu .extra {
		top: 120px;
	}
}

@media (max-width: 420px) {
	#slide_out_menu .extra {
		width: 120px;
		top: 150px;
		right: 20px;
	}
}

#slide_out_menu .extra a,
#slide_out_menu .extra div {
	position: relative;
	width: 100%;
	margin: 0 0 20px;
	padding: 20px 0 15px;
	display: block;
	line-height: 20px;
	letter-spacing: 0.25em;
	text-decoration: none;
}

@media (max-width: 420px) {
	#slide_out_menu .extra a {
		padding: 10px 0 5px;
		letter-spacing: 0em;
	}
}

#slide_out_menu .extra .button {
	background: #E79F3C;
	color: #F9F8F8;
}

#slide_out_menu .extra .button.featured {
	background: none;
	color: #F00;
	border: 2px solid #F00;
	box-sizing: border-box; 
}

/* ================ ./END HEADER ================ */




/* ================ HOMEPAGE ================ */

.page-template-page-HOME .swiper-slide .headline {
	position: absolute;
	width: calc(100% - 160px);
	bottom: 0;
	padding: 120px 80px 40px 80px;
	color: #F9F8F8;
	text-align: left;
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
	z-index: 99;
}

.swiper-slide.swiper-slide-active .headline {
	
}

@media (max-width: 780px) {
  
	.page-template-page-HOME .swiper-slide .headline {
		padding: 0 60px 20px 60px;
		background: rgb(0,0,0);
		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.40) 34%);
	}
	
}

@media (max-width: 480px) {
  
	.page-template-page-HOME .swiper-slide .headline {
		padding: 80px 20px 30px 20px;
		background: rgb(0,0,0);
		background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6951155462184874) 34%);
	}
	
}

.page-template-page-HOME .swiper-slide .headline h1 {
	margin: 0 0 -2.5vw 0;
	font-size: 4vw;
	font-family: industry-inc-base, sans-serif;
}

@media (min-width: 780px) {
  
	.swiper-slide .headline h1 {
		
	}
	
}

@media (max-width: 480px) {
  
	.page-template-page-HOME .swiper-slide .headline h1 {
		margin: 0 0 -2vw 0;
		font-size: 6vw;
	}
	
}

.page-template-page-HOME .swiper-slide .headline h2 {
	font-size: 2vw;
	font-weight: 600;
	line-height: 2.75vw;
	font-family: din-2014, sans-serif;
	font-weight: 700;
}

@media (min-width: 780px) {
  

	
}

@media (max-width: 480px) {
  
	.page-template-page-HOME .swiper-slide .headline h2 {
		font-size: 4vw;
		line-height: 6vw;
	}
	
}

.page-template-page-HOME .swiper-slide .headline a.btn {
	position: relative;
	width: 250px;
	display: block;
	margin: 0;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	font-family: din-2014, sans-serif;
	font-size: 1.5vw;
	font-weight: 800;
	letter-spacing: 0.2vw;
	line-height: 1em;;
	color: #161F1C;
	background: #F39C12;
	transition: 0.5s ease;
}

@media (max-width: 780px) {
  
	.page-template-page-HOME .swiper-slide .headline a.btn {
		font-size: 2.5vw;
	}
	
}

@media (max-width: 767px) {
  
	.page-template-page-HOME .swiper-slide .headline a.btn {
		width: 200px;
		margin: 10px 0 0 0;
		padding: 5px;
	}
	
}

@media (max-width: 480px) {
  
	.page-template-page-HOME .swiper-slide .headline a.btn {
		width: 160px;
		font-size: 5vw;
	}
	
}

.swiper-slide .headline a {
	
}

.page-template-page-HOME .swiper-slide .headline a.btn:hover {
	color: #F9F8F8;
	transition: 0.5s ease;
}

/* ================ ./END HOMEPAGE ================ */




/* ================ GENERAL GRID ================ */

@media (min-width: 768px) and (max-width: 1024px) {
	.grid-container.people .bio-wrapper {
		margin: 10px 10px 0 10px;
	}
}

/* ================ ./END GENERAL GRID ================ */




/* ================ WORK WITH US ================ */

.jobs-box h2 {
	text-decoration: none;
}

.jobs-box h3 {
	margin: 80px 0 5px 0;
	font-size: 21px;
}

/* ================ ./END WORK WITH US ================ */




/* ================ PARKS POSTS ================ */

#park-post.content-wrap {
	padding: 0;
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) 
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
	#park-post .heading-block.vh {
		padding: 20px 0;
	}
}

#park-post article.secondary section.bodycopy {
	padding: 20vh 0;
}

@media (max-width: 450px) {
	#park-post article.secondary section.bodycopy {
		padding: 20vh 0 10vh;
	}
}

.park_info_holder {
	position: absolute;
	width: 90%;
	top: 0;
	right: 0;
	left: 0;
	margin: 80px auto 40px;
	padding: 0 5%;
	color: #FFF;
	background: #161F1C;
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) 
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
	.park_info_holder {
		position: relative;
		margin: 0 auto 40px;
	}
}

@media (max-width: 650px) {
	.park_info_holder {
		width: 100%;
		padding: 0 5% 40px;
	}
}

.park_info_holder a {
	color: #FFF;
}

.park_info_holder .leftbox {
	position: relative;
	width: 60%;
	float: left;
}

@media (max-width: 650px) {
	.park_info_holder .leftbox {
		width: 90%;
	}
}

.park_info_holder h1.title {
	text-transform: uppercase;
}

.park_info_holder .parkaddress {
	line-height: 35px;
}

ul.parkicons {
	position: relative;
	width: 60%;
	margin: 40px 0 0 0;
	padding: 0;
	color: #000;
}

@media (max-width: 650px) {
	ul.parkicons {
		width: 100%;
		margin: 40px 0;
	}
}

ul.parkicons li {
	position: relative;
	height: 45px;
	width: 45px;
	margin: 0 10px 10px 0;
	background-color: #FFF;
	border-radius: 50%;
	display: inline-block;
}

ul.parkicons li i {
	position: absolute;
	top: 52%;
	left: 52%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	text-align: center;
}

ul.parkicons li .popup {
	position: absolute;
	padding: 8px 13px;
	bottom: 65px;
	background: #F39C12;
}

ul.parkicons li .popup-wrapper {
	visibility: hidden;
	opacity: 0;
	transition: 0.5s ease-in-out;
}

ul.parkicons li:hover .popup-wrapper {
	visibility: visible;
	opacity: 1;
	transition: 0.5s ease-in-out;
}

ul.parkicons li .popup .internal {
	position: relative;
	white-space: nowrap;
	background: #F39C12;
	z-index: 1;
}

ul.parkicons li .pointer {
	position: absolute;
	height: 20px;
	width: 20px;
	background: #F39C12;
	transform: rotate(45deg);
	bottom: 54px;
	left: 12px;
	z-index: 0;
}

.park_info_holder ul.parkdetails {
	position: relative;
	width: 30%;
	margin: 0;
	float: right;
}

@media (max-width: 650px) {
	.park_info_holder ul.parkdetails {
		width: 90%;
	}
}

.park_info_holder ul.parkdetails li {
	margin: 10px 0;
	line-height: 22px;
}

#park-post .heading-block .inner {
	top: auto;
	bottom: 80px;
}

ul.park_nav {
	display: none;
	font-size: 20px;
	justify-content: space-between;
	color: #FFF;
	width: 80%;
	margin: -60px auto 0;
	padding: 0 0 60px 0;
	list-style: none;
}

ul.park_nav li {
	border-bottom: 2px solid #FFF;
	padding: 0 20px 10px;
	margin: 0 20px;
}

#park-post ul.grid_nav {
	text-align: center;
}

#park-post ul.grid_nav li {
	margin: 8px;
}

#park-post section.bodycopy {
	padding: 10vh 0;
}

#park-post section.bodycopy h1 {
	text-transform: uppercase;
}

#park-post article.sectionwrapper {
	padding: 20px 0 50px 0;
	margin: 0 0 40px 0;
}

#park-post article.sectionwrapper h2 {
	position: relative;
	display: block;
	margin: 40px 0 40px 60px;
	font-size: 46px;
}

#park-post article.sectionwrapper .standard-wrap h2 {
	margin: 0 0 30px 0;
	font-size: 24px;
}

.flipbox .inner {
	width: 100%;
	height: 100%;
	top: 0;
	text-align: left;
	z-index: 2;
}

.page-template-page-PARKS .bio-wrapper .boxhidden .boxcopy {
	height: 50%;
}

/* ================ ./PARKS POST ================ */




/* ================ CONTACT PAGE ================ */

.contact-page {
	position: relative;
	width: 100%;
	height: calc(100vh - 200px);
}

.contact-page a {
	color: #F2F2F2;
	text-decoration: none;
	transition: 0.5s ease-in-out;
}

.contact-page a:hover {
	color: #F8F8F8;
	text-decoration: underline;
	transition: 0.5s ease-in-out;
}

.contact-page h1 {
	font-size: 42px;
	text-transform: uppercase;
}

.contact-page-box {
	position: absolute;
	width: 90%;
	height: 60%;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.contact-page-box {
		position: relative;
	}
}

.contact-page .box-half {
	position: relative;
	width: 50%;
	height: 100%;
	float: left;
}

@media (max-width: 768px) {
	.contact-page .box-half {
		width: 100%;
		height: auto;
		float: none;
	}
}

.contact-page .box-half .inner-contact-box {
	position: relative;
	width: 50%;
	height: 50%;
	float: left;
	font-family: Open Sans, sans-serif;
}

@media (max-width: 480px) {
	.contact-page .box-half .inner-contact-box {
		width: 100%;
		height: auto;
		float: none;
	}
}

@media (max-width: 768px) {
	.contact-page .box-half .inner-contact-box.margin {
		margin: 0 0 15vh 0;
	}
}

/* ================ ./END CONTACT PAGE ================ */




/* ================ PARKS POSTS ================ */



/* ================ ./END PARKS POSTS ================ */





/* ================ FOOTER ================ */

footer {
	position: relative;
	width: calc(100% - 160px);
	flex-shrink: 0;
	bottom: 0;
	padding: 40px 80px 0;
	font-size: 14px;
	color: #F9F8F8;
	background: #161F1C;
}

@media (max-width: 767px) {
	footer {
		width: calc(100% - 80px);
		padding: 40px 40px 10px 40px;
	}
}

.footerinfo.standard .box-left {
	position: relative;
	width: 50%;
	max-width: 600px;
	margin: 40px 0 0 0;
	float: left;
}

@media only screen and (max-device-width: 1160px) {
	.footerinfo.standard .box-left {
		width: 100%;
		max-width: none;
		float: none;
	}
}

@media only screen and (max-device-width: 440px) and (orientation: portrait) {
	.footerinfo.standard .box-left {
		text-align: center;
	}
}

.footerinfo.standard .box-left .footerlogo {
	position: relative;
	margin: 0 40px 0 0;
	float: left;
	background: #F9F8F8;
}

.footerinfo.standard .box-left #NYCParksLogo {
	width: 90px;
	height: 90px;
	background: url(img/logos/NYC_Parks-logo-white.png) no-repeat;
	background: url(img/logos/NYC_Parks-logo-white.svg) no-repeat, linear-gradient(transparent, transparent);
	background-size: contain;
}

@media only screen and (max-device-width: 440px) and (orientation: portrait) {
	.footerinfo.standard .box-left #NYCParksLogo {
		width: 50%;
		margin: 0;
		background-position: center;
	}
}

.footerinfo.standard .box-left #NBKParksLogo {
	width: 90px;
	height: 90px;
	background: url(img/logos/logo-icon-white.png) no-repeat;
	background: url(img/logos/logo-icon-white.svg) no-repeat, linear-gradient(transparent, transparent);
	background-size: contain;
}

@media only screen and (max-device-width: 440px) and (orientation: portrait) {
	.footerinfo.standard .box-left #NBKParksLogo {
		width: 100%;
		margin: 0;
		background-position: center;
	}
}

.footerinfo.standard .box-left .text {
	position: relative;
	max-width: 400px;
	display: contents;
	float: left;
}

@media only screen and (max-device-width: 1170px) {
	.footerinfo.standard .box-left .text {
		position: relative;
		max-width: 400px;
		display: contents;
		float: left;
	}
}

@media only screen and (max-device-width: 440px) {
	.footerinfo.standard .box-left .text {
		max-width: 350px;
	}
}

@media only screen and (max-device-width: 440px) {
	.footerinfo.standard .box-left .text {
		display: block;
	}
}

.footerinfo.standard .box-right {
	position: relative;
	width: 500px;
	float: right;
}

@media only screen and (max-device-width: 1160px) {
	.footerinfo.standard .box-right {
		width: 100%;
		margin: 40px 0;
		float: none;
	}
}

.footerinfo.standard .footer_links_wrapper {
	position: relative;
	width: 100%;
}

@media (max-width: 740px) {
	.footerinfo.standard .footer_links_wrapper {
		display: none;
	}
}

.footer_links_wrapper li.inactive a {
	opacity: 0.25;
}

.footerinfo.standard .footer_links_wrapper ul {
	position: relative;
	width: calc(100% - 60px);
	margin: 50px 0 0 0;
	padding: 30px;
	list-style: none;
	-moz-column-count: 5;
	-moz-column-gap: 10%;
	-webkit-column-count: 5;
	-webkit-column-gap: 10%;
	column-count: 5;
	column-gap: 10%;
	line-height: 1.2em;
	border-top: 1px solid #F9F8F8;
}

.footerinfo.standard .footer_links_wrapper ul li {
	margin: 0 0 10px 0;
}

.footerinfo.standard .footer_links_wrapper ul li a {
	text-decoration: none;
	color: #F9F8F8;
}

footer .footerbase {
	position: relative;
	width: 100%;
	height: 40px;
	bottom: 0;
	left: 0;
	padding: 10px 0;
	font-size: 14px;
	text-transform: uppercase;
	border-top: 1px solid #F9F8F8;
}

.footerbase h3 {
	position: relative;
	display: contents;
	margin: 0;
	font-size: 0.75em;
}

.breakinside {
	display: initial;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

/* ================ ./END FOOTER ================ */




/* ================ BIOS ================ */

.boxwrap {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 250px 50px 0;
}

@media (max-width: 1024px) {
	.boxwrap {
		padding: 150px 100px 0;
	}
}

.boxwrap.stick {
	padding: 50px 50px 0;
}

@media (max-width: 1024px) {
	.boxwrap.stick {
		padding: 30px 50px 0;
	}
}

.grid-box {
    position: relative;
    background: #000;
    padding-top: 100%;
    font-size: 30px;
    text-align: center;
	cursor: pointer;
}

.bio-wrapper {
	min-width: 250px;
	max-width: 300px;
}

.bio-wrapper .quotecard {
	position: relative;
	width: 100%;
	height: calc(100% - 10px);
	background: #FCC08E;
	cursor: none;
}

.bio-wrapper .boxinner {
    position: absolute;
    width: 100%;
    height: calc(100% - 30px);
	top: 0;
	padding: 30px 0 0 0;
	text-align: left;
	background-color: #000;
}

.bio-wrapper .boximage {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 1;
	transition: 0.5s ease-in-out;
}

.bio-wrapper .boxhidden {
	position: absolute;
	width: 100%;
	height: calc(100% - 30px);
	opacity: 0;
	transition: 0.5s ease-in-out;
	z-index: 1;
	color: #FFF;
}

.bio-wrapper .boxinner:hover > .boxhidden {
    opacity: 1;
	transition: 0.5s ease-in-out;
}

.bio-wrapper .boxinner:hover > .boximage {
    opacity: 0.2;
	transition: 0.5s ease-in-out;
}

.bio-wrapper .boxhidden .boxcopy {
	position: relative;
	height: calc(75% - 40px);
	overflow-y: scroll;
}

.bio-wrapper .boxhidden .boxscroller {
	position: relative;
	width: calc(100% - 60px);
	margin: 0 auto 20px;
	font-size: 12px;
	line-height: 28px;
}

.bio-wrapper .boxhidden .boxscroller a {
	color: #F39C12;
}

@media (max-width: 767px) {
	.bio-wrapper .boxhidden .boxscroller {
		font-size: 13px;
		line-height: 25px;
	}
}

.newsroom .bio-wrapper .boxhidden .boxscroller {
	font-size: 16px;
	line-height: 28px;
	font-weight: 700;
}

.newsroom .bio-wrapper .boxhidden .boxscroller span {
	display: block;
	margin: 60px 0 0 0;
}

.newsroom-filter {
    position: relative;
	width: 100%;
    display: inline-block;
    min-width: 200px;
    z-index: 99;
}

.newsroom-filter__toggle {
    width: 100%;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center;
}

.newsroom-filter__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.newsroom-filter__menu .js-filter-item a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.newsroom-filter__menu .js-filter-item.active a,
.newsroom-filter__menu .js-filter-item a:hover {
    background-color: #f5f5f5;
}

.alliance .bio-wrapper .boxhidden .boxscroller h2 {
	margin: 0;
	font-size: 15px;
	line-height: 20px;
}

.alliance .bio-wrapper .boxhidden .boxscroller span {
	display: block;
	margin: 0 0 -8px 0;
}

.bio-wrapper .boxhidden .boxscroller p:first-of-type {
	margin: 0;
}

.bio-wrapper .boxhidden .boxfooter {
	position: relative;
	height: 25%;
	margin: 20px 30px;
	line-height: 28px;;
}

@media (min-width: 768) and (max-width: 840px) {
	.bio-wrapper .boxhidden .boxfooter {
		height: 30%;
	}
}

.bio-wrapper .boxhidden .boxfooter h2,
.bio-wrapper .boxhidden .boxfooter h3 {
	margin: 0;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 28px;
}

@media (max-width: 767px) {
	.bio-wrapper .boxhidden .boxfooter h2,
	.bio-wrapper .boxhidden .boxfooter h3 {
		font-size: 13px;
		line-height: 24px;
	}
}

.bio-wrapper .boxhidden .boxfooter .fa-link {
	font-size: 24px;
}

.bio-wrapper .boxhidden .boxfooter a {
	color: #FFF;
}

.alliance .boxhidden .boxfooter h3 {
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
}

.bio-wrapper .boxhidden .boxicons {
	position: absolute;
	width: 100%;
	right: 10px;
	bottom: 10px;
	text-align: right;
}

@media (max-width: 767px) {
	.bio-wrapper .boxhidden .boxicons {
		right: -13px;
		bottom: -13px;
	}
}

.bio-wrapper .boxhidden a.icon {
	position: relative;
	display: inline-block;
	font-size: 21px;
	color: #e6a03c;
	letter-spacing: 4px;
	transition: 0.5s ease-in-out;
}

@media (max-width: 767px) {
	.bio-wrapper .boxhidden a.icon {
		position: relative;
		font-size: 18px;
	}
}

.bio-wrapper .boxhidden a.icon:hover {
	color: #FFF;
	transition: 0.5s ease-in-out;
}

.bio-wrapper .boxhidden .boxfooter a.presslink {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 30px;
	color: #E6A03C;
	transition: 0.5s ease-in-out;
}

.bio-wrapper .boxhidden .boxfooter a.presslink:hover {
	color: #F9F8F8;
	transition: 0.5s ease-in-out;
}

/* ================ ./END BIOS ================ */




/* ================ PARKS ================ */

.parks h2 {
	margin: 0;
	font-size: 16px;
	letter-spacing: normal;
	line-height: normal;
}

.parks h3 {
	margin: 0;
	font-size: 16px;
	text-transform: capitalize;
}

.parks h4 {
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}

.parks .bio-wrapper .boxhidden .boxscroller,
.alliance .bio-wrapper .boxhidden .boxscroller,
.newsroom .bio-wrapper .boxhidden .boxscroller {
	margin: 60px auto 20px;
}

/* ================ ./END PARKS ================ */


.alliance .bio-wrapper .boxhidden .boxscroller {
	margin: 40px auto 20px;
}


/* ================ EVENTS ================ */

article.events {
    margin: 10vw 0;
}

article.events .vid-container {
	height: 100%;
	background: #1C5136;
}

article.events .vid-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

article.events .event-date {
	font-family: industry-inc-base, sans-serif;
    font-size: 34px;
    letter-spacing: 3px;
}

article.events h2.event-title {
	margin: -10px 0 0 0;
	font-family: Open Sans, sans-serif;
    font-size: 26px;
}

/* ================ ./END EVENTS ================ */




/* ================ MULTIMEDIA SWIPER ================ */

.multimediaslide-wrapper {
    position: relative;
    height: 0;
    width: 90%;
    margin: 40px auto 10px;
    padding-bottom: calc(51.25% + 100px); /* 16:9 + caption */
}

@media (max-width: 767px) and (orientation: portrait) {
	.multimediaslide-wrapper {
        width: 100%;
	}
}
    

.multimediaslide-wrapper.full {
    width: 100%;
    padding-bottom: calc(56.25% + 100px); /* 16:9 + caption */
}

.multimediaslide-wrapper.triptic01 {
	width: 100%;
	margin: 0 0 15% 0;
    padding-bottom: 40%;
}

.multimediaslide-wrapper.triptic02 {
	width: 100%;
	margin: 0 0 10px 0;
    padding-bottom: 23.1%;
}

.multimediaslide-wrapper.splittile {
    padding-bottom: 39%;
}

.multimediaslide-inner  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
	left: 0;
	overflow-x: hidden;
}

.triptic01 .multimediaslide-inner  {
    padding: 120px 40px 60px;
    width: calc(100% - 80px);
}

.triptic02 .multimediaslide-inner  {
    padding: 50px 40px 60px;
    width: calc(100% - 80px);
}

.multimediaslide-controls  {
    position: absolute;
    width: 100%;
    bottom: 140px;
}

.triptic01 .multimediaslide-controls  {
    width: calc(100% + 80px);
    bottom: 0;
    left: -40px;
}

.triptic02 .multimediaslide-controls  {
    width: calc(100% + 80px);
    bottom: calc(50% - 10px);
    left: -40px;
}

.splittile .multimediaslide-controls  {
    bottom: 40px;
}

.multimediaslide-controls .swiper-pagination {
    left: 0;
    right: 0;
    margin: -10px 0 0 0;
}

@media (max-width: 727px) {
    .multimediaslide-controls .swiper-pagination {
        margin: 10px 0 0 0;
    }
}

.multimediaslide-controls .swiper-pagination-bullet {
    margin: 0 5px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
	margin-right: auto;
}

.swiper-container.hide {
	height: 0;
}

.triptic01 .swiper-container,
.triptic02 .swiper-container {
    width: 80%;
    padding: 0 10%;
    overflow: visible;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.narrow3 .swiper-slide {
    background: none;
}

.narrow3 .pic-cover {
	padding: 100% 0 0 0;
}

.swiper-content {
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    top: 0;
    overflow: hidden;
    background: #F8F7F7;
}

.triptic01 .swiper-content {
    height: 45%;
}

.triptic02 .swiper-content {
    height: 100%;
}

.splittile .swiper-content {
	width: 50%;
	height: 100%;
	left: 0;
}

.inner-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('img/misc/inner_shadow.png');
    z-index: 99;
}

.swiper-content img {
    position: absolute;
    min-width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.pic-tile-content iframe,
.pic-tile-content object,
.pic-tile-content embed,
.swiper-content iframe,
.swiper-content object,
.swiper-content embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-content .vert-video {
    display: none;
}

@media (max-width: 420px){
    .swiper-content .vert-video {
        display: block;
    }
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.7;
    transition: 0.5s ease-in-out;
}

.swiper-button-next::after {
    position: absolute;
    width: 30px;
    content: url('img/icons/arrow-right.svg');
}

.swiper-button-prev::after {
    position: absolute;
    width: 30px;
    content: url('img/icons/arrow-left.svg');
}

.swiper-caption {
    position: absolute;
    width: 100%;
    height: 92px;
    bottom: 0;
    padding: 8px 0;
    background: #F9F8F8;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

@media (max-width: 727px) {
    .swiper-caption {
        font-size: 9px;
        line-height: 14px;
    }
}

@media (max-width: 420px) {
    .swiper-caption {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 0 20px;
    }
}



.triptic01 .swiper-caption {
    width: calc(100% - 40px);
    height: calc(55% - 40px);
    padding: 20px;
    background: #171C1A;
    color: #FFF;
}

.triptic01 .swiper-caption hr {
    width: 25px;
    margin: -5px 0 10px;
    color: #FFF;
}

.triptic01 .swiper-caption .posttype {
	position: absolute;
	width: calc(100% - 40px);
    bottom: 0;
}

.triptic01 .swiper-caption .posttype h2 {
    margin: 0;
    font-weight: normal;
    color: #F1B635;
}

.full .swiper-caption {
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 420px) {
    .full .swiper-caption {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 0 20px;
    }
}

.splittile .swiper-caption {
    width: calc(50% - 120px);
	height: calc(100% - 120px);
	right: 0;;
	padding: 60px;
}

.splittile .swiper-caption p {
	font-size: 19px;
	line-height: 30px;
}

span.credit {
	font-size: 13px;
	line-height: 19px;
}

@media (max-width: 727px) {
    span.credit {
        font-size: 10px;
        line-height: 13px;
    }
}

.swiper-overlay {
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    top: 0;
    z-index: 9;
}

.swiper-slide .info-wrapper {
	position: relative;
	width: 90%;
	background: #FFF;
}

.splittile .swiper-overlay {
	width: 50%;
    height: 100%;
	left: 0;
}

.triptic02 .swiper-overlay {
	height: 100%;
	left: 0;
}

.triptic02 .swiper-content img {
    min-width: 95%;
    height: 95%;
    object-fit: contain;
}

@media (max-width: 727px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

#park-news .scale-box {
	padding: 25% 0 0 0;
}

/* ================ ./END MULTIMEDIA SWIPER ================ */



/* ================= BLOCKS =============== */

/* ---- HERO ---- */

/* ---- MAIN HERO WRAPPER ---- */
#hero-block section.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -200px; /* Pulls hero under a transparent header */
    overflow: hidden;
    color: #F9F8F8;
    background-color: var(--hero-primary);
    background-size: cover;
    background-position: center;
    z-index: 1;
    
    /* Base Typography */
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    letter-spacing: 0.14px;
    line-height: 33px;
}

/* Base Mobile Adjustments */
@media (max-width: 767px) {
    #hero-block section.hero {
        margin-top: -120px; 
    }
}

/* ---- THEME MODIFIERS ---- */
#hero-block section.hero.bg-primary { background-color: var(--hero-primary); }
#hero-block section.hero.bg-secondary { background-color: var(--hero-secondary); }
#hero-block section.hero.bg-highlight { background-color: var(--hero-highlight); }
#hero-block section.hero.bg-black { background-color: var(--hero-black); }
#hero-block section.hero.bg-white { 
    background-color: var(--hero-white); 
    color: #111827;
}

/* ---- GRADIENT OVERLAY ---- */
#hero-block section.hero.has-overlay::after {
    content: "";
    position: absolute;
    inset: 0; /* Modern shorthand for top/left/right/bottom: 0 */
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: -1; 
    pointer-events: none;
}

/* ---- CONTENT LAYOUT ---- */
#hero-block .textwrap {
    position: absolute;
    width: calc(100% - 160px);
    max-width: 1230px;
    left: 0;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    margin: 0 auto;
    z-index: 2;
}

/* ---- TYPOGRAPHY ---- */
#hero-block .hero-title {
    margin: 0 0 30px 0;
    font-size: 32px;
    letter-spacing: 0.44px;
    line-height: 45px;
	font-size: 46px;
    font-family: industry-inc-base, sans-serif;
    hyphens: none;
}

#hero-block .hero-subtitle p {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
}

/* ---- VIDEO BACKGROUND ---- */
#hero-block .video-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

#hero-block .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw; 
    min-height: 100vh;
    min-width: 177.77vh; 
}

#hero-block .horz-video { display: block; }
#hero-block .vert-video { display: none; }

/* Mobile / Portrait Video Swap */
@media (max-aspect-ratio: 1/1) {
    #hero-block .horz-video { display: none; }
    #hero-block .vert-video { display: block; }
    
    #hero-block .video-background iframe.vert-video {
        height: 177.77vw; 
        min-width: 56.25vh; 
    }
}

/* ---- GUTENBERG EDITOR FIXES ---- */
/* Keeps the block usable in the backend if you use mode => auto */
#hero-block.is-admin-preview section.hero {
    height: 500px;
    min-height: 500px;
    margin-top: 0;
}

#hero-block.is-admin-preview .textwrap {
    position: relative;
    top: auto;
    transform: none;
    padding-top: 60px;
}