/* *************** SITE FONTS ********************** */
/*
Helvetica Neue
--------------------
Light: 300
Normal: 400
Bold: 700
*/




/* ************** GENERAL STYLES + RESETS ******************* */

* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

html {
	font-size: 100%;
}

.wf-loading .tk-fade {
	opacity: 0;
}

.wf-active .tk-fade {
	opacity: 1;
	transition: opacity 1s;
}	

body {
	width: 100%;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	background-color: #fff;
	color: #2d2d2d;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;

	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body.masonry {
	overflow-y: scroll;
}

.upcase {
	text-transform: uppercase;
}

a,
nav li a {
	color: inherit;
	text-decoration: none;
}

p a,
li a {
	text-decoration: underline;
}


a:hover,
a.pageOn {
	color: #f17644;
}

h1, h2, h3, h4, h5, h6, strong {
	font-weight: 700;
}

p {
	line-height: 1.4;
	padding-bottom: 1.3em;
}

em, i {
	font-style: italic;
}

label, input, textarea, select {
	font-size: 16px;
	display: block;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline-block;
}

input, textarea {
	background-color: transparent;
	padding: 0px 10px;
	height: 34px;
	color: #000;
	border: 1px solid #000;

	border-radius: 0px;
	box-sizing: border-box;

	appearance: none;
	-webkit-appearance: none;
}

input[type="submit"] {
	padding: 0px 10px;
	border: 0px;
	cursor: pointer;

	border-radius: 0px;
	box-sizing: border-box;

	appearance: none;
	-webkit-appearance: none;
}

label {
	padding-bottom: 5px;
}

.clear {
	clear: both;
}

.clear-after:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}

.req {
	color: #c1cd23;
}

.left { float: left; }
.right { float: right; }
.clear { clear: both; }

.addb4:before {
	content: '';
	display: inline-block;
	height: 100%;
	width: 0;
	vertical-align: middle;
}

.ib {
	display: inline-block;
}

.v-top { vertical-align: top; }
.v-middle { vertical-align: middle; }
.v-bottom { vertical-align: bottom; }
.v-baseline { vertical-align: baseline; }

.centerXY {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
}

.centerY {
	position: absolute;
	top: 50%;
	left: 0%;
	-ms-transform: translateY(-50%);
		transform: translateY(-50%);
}

.centerX {
	position: absolute;
	top: 0%;
	left: 50%;
	-ms-transform: translateX(-50%);
		transform: translateX(-50%);
}

.cover {
	background-size: cover;
	background-position: 50% 50%;
}

.loadme, .bg-loadme {
	opacity: 0;
}

.loadme.loaded,
.bg-loadme.loaded {
	opacity: 1;
	transition: opacity .3s;
}

.photo.size-width {
	width: 102%;
	height: auto;
}

.photo.size-height {
	width: auto;
	height: 102%;
}

.icons {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons li {
    flex: 0 45px;
}

.icons li a {
    text-decoration: none;
}

.icons svg {
	fill: currentColor;
}



/* ************** SITE STRUCTURE ******************* */

main {
	margin: 0px auto;
	position: relative;
	z-index: 1;
}

/* add "sticky-footer" class to body if sticky footer is needed: */

.sticky-footer main {
	margin: 0 auto -262px; /* 262px = height of footer */
	min-height: 100vh;
}

	.sticky-footer main:after {
		content: '';
		display: block;
		height: 262px; /* 262px = height of footer */
	}

.sticky-footer footer {
	height: 262px;
}

#content:before {
	content: '';
	display: block;
	height: 324px;
}




/* ************** HEADER ******************* */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

header .inner {
	position: absolute;
	z-index: 5;
	width: 85.5%;
	padding: 0% 7.25%;
	padding-top: 97px;
	transform: translateY(0rem);
	transition: transform .27s linear 0s;
}
.menuOn header .inner {
	color: #ffffff;
	transition: transform .27s linear 0s;
}

.shrink-header header .inner {
	transform: translateY(-11.7rem);
	transition: transform .27s linear 0s;
}

header .inner > * {
	z-index: 5;
}

.close-menu {
	cursor: pointer;
	color: #ffffff;
	position: absolute;
	top: 3.4rem;
	left: 7.25%;
	transform: translateX(1rem);
	opacity: 0;
	transition: opacity .2s 0s, transform 0s .2s;
}
.menuOn .close-menu {
    transform: translateX(0rem);
    opacity: 1;
    transition: opacity .4s .3s, transform .4s .3s;
}

.close-menu svg {
	fill: currentColor;
	display: block;
	width: 25px;
	height: 23px;
}


.shrink-holder {
	position: relative;
	left: -0.1rem;
	white-space: nowrap;
	transform: scale(1) translateY(0em);
	transform-origin: 0% 100%;
	transition: transform .2s linear .07s;
}

.shrink-header header .shrink-holder {
	transform: scale(0.38) translateY(7.8em);
	transition: transform .2s linear 0s;
}
nav#primary.clone {
	backface-visibility: hidden;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 1em;
	margin-bottom: 0.35em;
	font-size: 2.1rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity .07s 0s;
}
.shrink-header header nav#primary.clone {
	pointer-events: auto;
	opacity: 1;
	transition: opacity .4s .4s;
}

header .logo {
	backface-visibility: hidden;
	display: inline-block;
	font-weight: 700;
    font-size: 5.7rem;
    line-height: 1.1;
    position: relative;
	transition: color .2s linear .05s;
}
header .logo:hover {
	color: inherit;
}
.menuOn header .logo {
    transition: color .2s linear .25s;
}
header nav#primary {
    position: relative;
    font-size: 1.68rem;
    transition: color .2s linear .05s;
}
nav#primary:not(.clone) {
	opacity: 1;
	transition: opacity .2s linear .2s, color .2s linear .05s;
}
.shrink-header header nav#primary:not(.clone) {
	pointer-events: none;
	opacity: 0;
	transition: opacity .07s linear 0s, color .2s linear .05s;
}

.menuOn header nav#primary {
	transition: color .2s linear .25s;
}
.menuOn nav#primary:not(.clone) {
	opacity: 1;
	transition: opacity .2s linear .2s, color .2s linear .25s;
}
.menuOn.shrink-header header nav#primary:not(.clone) {
	pointer-events: none;
	opacity: 0;
	transition: opacity .07s linear 0s, color .2s linear .25s;
}

/* override color of pageOn class while menu is open: */
.pageOn {
	transition: color .2s .05s;
}
.menuOn .pageOn {
	color: #fff;
	transition: color .2s .25s;
}

nav ul {
	cursor: default;
}

nav#primary li {
   	display: inline-block;
   	margin-right: 0.57em;
}

nav#primary a {
    font-weight: 700;
}
.menuOn nav#primary a:hover {
    color: #fff;
    transition: color .2s linear .25s;
}

.title-holder {
    position: absolute;
    color: #2d2d2d;
    right: 7.25%;
    bottom: 1.9rem;
    text-align: right;
    font-size: 0;
    opacity: 1;
    transform-origin: 100% 100%;
    transform: translateX(6.2rem) translateY(0rem) scale(1);
    transition: transform .4s 0s, opacity .4s .5s;
}
.shrink-header .title-holder {
    transform: translateX(4.2rem) translateY(0.9rem) scale(0.68);
    transition: transform .4s 0s, opacity .2s .2s;
}
.slideshow-on .title-holder {
	transform: translateX(0rem) translateY(0.9rem) scale(0.68);
	transition: transform .4s 0s, opacity .2s .2s;
}
.menuOn .title-holder {
	opacity: 0;
	transition: transform 0s 0s, opacity .2s 0s !important;
}

.title-holder span,
.title-holder h1 {
	font-size: 1.75rem;
	font-weight: 300;
	letter-spacing: .05em;
	display: inline-block;
	vertical-align: baseline;
	backface-visibility: hidden;
}

header .close {
	opacity: 0;
	transition: opacity .2s 0s;
}
.slideshow-on header .close {
	opacity: 1;
	transition: opacity .2s .15s;
}
header .close span {
	cursor: pointer;
	transition: color .15s;
}
header .close span:hover {
	color: #f17644;	
}

.bottom-rule {
	position: relative;
	display: block;
	height: 12px;
	background-color: #2d2d2d;
	margin-top: 1.1rem;
	transform-origin: 50% 100%;
	transform: scaleY(1);
	transition: transform .2s .2s;
}
.menuOn .bottom-rule:not(.rule-alt) {
	background-color: #2d2d2d;
}
.bottom-rule.rule-alt {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 8;
	background-color: transparent;
	transform-origin: 100% 0%;
	transform: translateX(100%);
	transition: transform .5s ease-in-out 0s;
}
.menuOn .bottom-rule.rule-alt {
	transform: translateX(0%);
	transition: transform .5s ease-in-out 0s;
}

@supports (clip-path: inset(0px 0px -1px 100%)) {
	.bottom-rule.rule-alt {
		transform: none;
		clip-path: inset(0px 0px -1px 100%);
		transition: clip-path .5s ease-in-out 0s;
	}
	.menuOn .bottom-rule.rule-alt {
		transform: none;
		clip-path: inset(0px 0px -1px 0%);
		transition: clip-path .5s ease-in-out 0s;
	}
}

	.bottom-rule.rule-alt:before {
		content: '';
		display: block;
		width: 85.5%;
		margin: 0 7.25%;
		height: 100%;
		background-color: #ffffff;
	}

.shrink-header header .bottom-rule {
	transform: scaleY(0.4);
	transition: transform .2s 0s;
}
header .inner .header-bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transform: translateX(0%);
	transition: transform .5s ease-in-out 0s;
}
.menuOn header .inner .header-bg {
	transform: translateX(-100%);
}

header .mascot {
	color: #fff;
    position: absolute;
    display: block;
    right: 7.25%;
    top: 2.1rem;
    opacity: 0;
    transition: opacity .3s 0s;
}
.menuOn header .mascot {
	opacity: .2;
	transition: opacity 1s .5s;
}

header .mascot svg {
    display: block;
    width: 120px;
    height: 194px;
}

header nav#secondary {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	color: #ffffff;
	background-color: rgba(241,118,68,0.95);
	width: 85.5%;
	padding: 18.9rem 7.25% 3rem;
	font-size: 1.22rem;
	transform: translateX(100%);
	transition: transform .5s ease-in-out 0s;
}
.menuOn header nav#secondary {
	transform: translateX(0%);
}

.menuScroll {
	overflow: hidden;
}

.overflow-x-holder {
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	width: calc(100% + 20px);
}

/* general secondary nav rules: */
nav#secondary ul {
	list-style-type: none;
}
nav#secondary a {
    display: block;
    max-width: 75%;
}
nav#secondary a:hover {
	color: inherit;
}

/* specific secondary nav rules: */
/* top-level conatiner */
nav#secondary .overflow-x-holder > ul {
    cursor: default;
    column-count: 4;
}

/* sub-categories */
nav#secondary .overflow-x-holder > ul > li {
	page-break-inside: avoid;
	break-inside: avoid;
	position: relative;
	transform: translateY(2em);
	opacity: 0;
	transition: transform 0s ease-out .2s, opacity .2s linear 0s;
}
nav#secondary .overflow-x-holder > ul > li.on {
	transform: translateY(0em);
	opacity: 1;
	transition: transform .2s ease-out 0s, opacity .2s linear 0s;
}
nav#secondary .overflow-x-holder > ul > li > a {
    font-size: 1.8em;
    font-weight: 300;
    cursor: pointer;
}
nav#secondary .overflow-x-holder > ul > li > a.disable {
	cursor: default;
}

/* sub-sub categories */
nav#secondary .overflow-x-holder > ul > li > ul {
    padding-top: 0.8em;
    padding-bottom: 2.35em;
}
nav#secondary .overflow-x-holder > ul > li > ul li {
	padding-bottom: 0.25em;
	line-height: 1;
}
nav#secondary .overflow-x-holder > ul > li > ul li a {
    font-size: 1em;
    font-weight: 700;
    position: relative;
    backface-visibility: hidden;
    margin-left: 0em;
    /* transform: translateX(0em); */
    /* transition: transform .2s; */
    /* WTF, chrome */
    transition: margin .2s;
}
nav#secondary .overflow-x-holder > ul > li > ul li a.pageOn {
	text-decoration: underline;
}
nav#secondary .overflow-x-holder > ul > li > ul li a:hover {
	margin-left: .5em;
	/* transform: translateX(.5em); */
}


/* ************** FOOTER ******************* */

footer {
	position: relative;
	z-index: 5;
	text-align: center;
	height: 262px;
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.intro-on footer {
	opacity: 0 !important;
}

footer .mascot {
	width: 52px;
	height: 84px;
}

footer .social {
	align-self: stretch;
}

footer .icons {
	padding: 26px 0px 18px;
}

footer .icons svg {
	height: 15px;
}


/* ************** INTRO ***************** */

/* intro header behavior */
.intro-on header {
	opacity: 0;
}
.intro-going header {
	transform: translateY(0) !important;
	transition: transform .7s ease .6s;
}
.intro-on header .header-bg {
	background-color: transparent;
}
.intro-on header .bottom-rule:not(.rule-alt) {
	opacity: 0;
}
.intro-going header .bottom-rule:not(.rule-alt) {
	opacity: 1;
	transition: opacity .4s 1.2s;
}
@supports (clip-path: inset(0px 100% -1px 0px)) {
	.intro-on header .bottom-rule:not(.rule-alt) {
		opacity: 1;
	    clip-path: inset(0px 100% -1px 0px);
	}
	.intro-going header .bottom-rule:not(.rule-alt) {
	    clip-path: inset(0px 0% -1px 0px);
	    transition: clip-path .6s ease 1.2s;
	}
}
/* intro text color (light/dark) */
body[data-text-color="light"].intro-on header .inner {
	color: #fff;
}
body[data-text-color="light"].intro-going header .inner {
	color: currentColor;
	transition: color .2s .18s;
}
body[data-text-color="dark"].intro-on header .inner {
	color: currentColor;
}

/* the big hero image */
.intro-on #intro {
	position: fixed;
	z-index: 90;
	opacity: 1;
	transform: translateX(0%);
	top: 0;right: 0;bottom: 0;left: 0;
}
#intro {
	z-index: -99;	
	transform: translateX(-100%);
	opacity: 0;
	transition: opacity 0s 0s, z-index 0s 0s;
}
#intro .bg {
    position: relative;
    width: 100%;
    height: 100%;
    /*box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);*/
}
.intro-going #intro .bg {
	transform: translateX(-100%);
	transition: transform .7s ease .2s;
}

/* enter site arrow */
.enter-site {
    position: fixed;
    z-index: -99;
    fill: #ffffff;
    top: 47.8%;
    right: 0;
    padding: 40px;
    cursor: pointer;
    opacity: 0;
}
body[data-text-color="dark"] .enter-site {
	fill: #2d2d2d;
}
body[data-text-color] .enter-site:hover {
	fill: #f17644;
}
.intro-on .enter-site {
	z-index: 110;
	opacity: 1;
	transform: translateX(0px) translateY(-50%) rotate(180deg) scale(1);
	transition: all .2s;
}
.intro-on .enter-site:hover {
	transform: translateX(7px) translateY(-50%) rotate(180deg) scale(1.2);
}
.intro-going .enter-site {
	opacity: 0;
	z-index: -99;
	transition: opacity .2s 0s, z-index 0s .2s;
}
.intro-going .enter-site:hover {
	transform: translateX(7px) translateY(-50%) rotate(180deg) scale(1.2);
}
.enter-site svg {
	display: block;
	width: 30px;
	height: 27px;
}


/* intro grid animation */
body[data-text-color]:not(.no-intro) .justified {
	/* only tagret the homepage JG, using body's "data-text-color". */
	position: relative;
	transform: translateY(100px);
	opacity: 0;
	transition: transform .4s .9s, opacity .4s .9s;
}
body[data-text-color]:not(.no-intro) .justified.on {
	transform: translateY(0px);
	opacity: 1;
	transition: transform .4s .9s, opacity .6s .9s;	
}
/*
.justified > a:nth-child(1) .photo,
.justified > a:nth-child(2) .photo,
.justified > a:nth-child(3) .photo,
.justified > a:nth-child(4) .photo {
	transform: translateY(100px);
	opacity: 0 !important;
	transition: transform .4s ease .9s, opacity .4s linear .9s;
}
.justified.on > a:nth-child(1) .photo.loaded,
.justified.on > a:nth-child(2) .photo.loaded,
.justified.on > a:nth-child(3) .photo.loaded,
.justified.on > a:nth-child(4) .photo.loaded {
	transform: translateY(0px);
	opacity: 1 !important;
	transition: transform .6s ease .9s, opacity .6s linear .9s;	
}
*/


/* ************** SLIDESHOW - SLICK CAROUSEL ***************** */

.slideshow {
	position: fixed;
	top: 0;right: 0;bottom: 0;left: 0;
	z-index: -1;
	opacity: 0;
	background-color: rgba(255,255,255,.95);
	transition: opacity .4s 0s, z-index 0s .4s;
}

.slideshow.on,
body.share .slideshow {
	z-index: 90;
	opacity: 1;
	transition: opacity .4s 0s, z-index 0s 0s;
}

.slideshow .logo {
    position: absolute;
    top: 23px;
    left: 45px;
    z-index: 10;
}

.slideshow .logo svg {
    fill: currentColor;
    height: 34px;
    width: 150px;
}

.ui {
	backface-visibility: hidden;
	width: 11px;
    height: 10px;
    position: absolute;
    z-index: 20;
    top: 50%;
    top: calc(50% + 27px);
    cursor: pointer;
    transition: transform .13s ease-out 0s, fill .13s linear 0s, opacity .2s 0s;
}
.ui:hover {
	fill: #f17644;
}

.ui.prev {
	left: 0px;
	padding: 48px;
	padding: 48px calc(3.625% - 5px);
	transform: translateX(0%) translateY(-50%) scale(1);
}
.ui.prev:hover,
.ui.prev:active {
	transform: translateX(-7px) translateY(-50%) scale(1.2);
}
.ui.next {
	right: 0;
	padding: 48px;
	padding: 48px calc(3.625% - 5px);
	transform: translateX(0%) translateY(-50%) rotateZ(180deg) scale(1);
	transform-origin: 50% 50%;
}
.ui.next:hover,
.ui.next:active {
	transform: translateX(7px) translateY(-50%) rotateZ(180deg) scale(1.2);
}
.ui.slick-disabled {
	opacity: 0;
	pointer-events: none;
}


.ui.close {
	width: 13px;
	height: 13px;
	padding: 33px 49px;
	top: 0;
	right: 0;
	transform: scale(1);
}
.ui.close:hover {
	transform: scale(1.2);
}

.ui line {
    stroke: #000000;
    stroke-width: 4;
}

.slickslideshow .cell {
	text-align: center;
	position: relative;
	font-size: 0;
	height: 81.5%;
	height: calc(100% - 148px);
	top: 94px;
	opacity: 1;
	transition: opacity .6s .2s;
}

	.slickslideshow .cell .photo {
		max-width: 85.5%;
		max-height: 100%;
		position: relative;
		z-index: 5;
	}

	.slickslideshow .cell .inner {
	    width: 83%;
	    max-width: calc(100% - 222px);
	    height: 100%;
	    display: inline-block;
	    position: relative;
	    z-index: 5;
	}

		.slickslideshow .cell iframe {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			/*box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);*/
		}

		.slickslideshow .cell video {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			/*box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);*/
		}

		.vr-controls {
			/* display: none; */
			position: absolute;
			bottom: 0;
			left: 0;
			z-index: 100;
			cursor: pointer;
		}
		.vr-ui-icon {
			display: inline-block;
			vertical-align: middle;
			width: 40px;
			height: 40px;
			background: white;
			position: relative;
		}
			.vr-play {
				opacity: 1;
			    position: absolute;
			    top: 9px;
			    left: 14px;
			    display: block;
			    width: 0;
			    height: 0;
			    border-left: 15px solid currentColor;
			    border-top: 10px solid transparent;
			    border-bottom: 10px solid transparent;
			    transition: opacity .2s .2s;
			}
			.cell.playing .vr-play {
				opacity: 0;
				transition: opacity .2s 0s;
			}
			.vr-pause {
			    position: absolute;
			    top: 0;
			    left: 0;
			    display: block;
			    opacity: 0;
			    transition: opacity .2s 0s;
			}
			.cell.playing .vr-pause {
				opacity: 1;
				transition: opacity .2s .2s;
			}
			.vr-pause:before {
			    content: '';
			    display: block;
			    position: absolute;
			    left: 13px;
			    top: 12px;
			    width: 5px;
			    height: 15px;
			    background-color: currentColor;
			}
			.vr-pause:after {
			    content: '';
			    display: block;
			    position: absolute;
			    left: 21px;
			    top: 12px;
			    width: 5px;
			    height: 15px;
			    background-color: currentColor;
			}
		.vr-ui-text {
			opacity: 1;
			display: inline-block;
		    vertical-align: middle;
		    width: 150px;
		    height: 40px;
		    background: white;
		    font-size: 16px;
		    font-weight: 700;
		    line-height: 37px;
		    margin-left: 10px;
		    transition: opacity .2s .2s;
		}
		.cell.playing .vr-ui-text {
			opacity: 0;
			transition: opacity .2s 0s;
		}

	.slide-caption {
		position: absolute;
		bottom: 7px;
		height: 47px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		text-align: center;
		width: 88%;
		max-width: 600px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		.slide-caption > div {
			font-size: 0.75rem;
			padding: 0.6em;
		}

		#inject-title {
			font-weight: 700;
		}

		#category-caption {
			display: inline-block;
			padding-left: 0.7em;
			border-left: 1px solid #ccc;
			margin-left: 0.7em;
		}

		#category-caption.no-content {
			padding-left: 0;
			margin-left: 0;
			border-left: none;
		}

			.slide-caption #category-caption a {
			    display: inline-block;
			    font-weight: 800;
			}

		.slide-caption .cta.hide {
			display: none;
		}

		#inject-name {
			font-weight: 800;
			display: inline-block;
		}

		.slide-caption .social {
		    list-style-type: none;
		    font-size: 0;
		}

		.slide-caption li {
		    display: inline-block;
		    padding: 0 5px;
		}

		.slide-caption a {
		    display: block;
		}

		.slide-caption svg {
		    width: 18px;
		    height: 18px;
		    display: block;
		    fill: currentColor;
		}

	.slickslideshow .close-overlay {
		position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	    z-index: 1;
	}




/* ************** GRIDS ******************* */
.gridpage {
    width: 85.5%;
    margin: 0% 7.25%;
}

.overlay-color {
	width: 100%;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 4;
	background-color: #f17644;
	opacity: 0;
	transition: opacity .2s;
}
.cell:hover .overlay-color,
.cell.active .overlay-color {
	opacity: .7;
}
@supports (mix-blend-mode: multiply) {
	.overlay-color {
		mix-blend-mode: multiply;
	}
	.cell:hover .overlay-color,
	.cell.active .overlay-color {
		opacity: 1;
	}
}

.gridpage .cell .info {
    z-index: 10;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s 0s, transform 0s .2s;
}

	.no-touchevents .masongrid .cell:hover .info,
	.no-touchevents .masongrid .cell.active .info {
		opacity: 1;
		transform: translateY(0px);
		transition: opacity .3s .1s, transform .3s .1s;
	}

.gridpage .cell .photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
}
.gridpage .vidHolder {
	position: absolute;
	width: 102%;
	height: 102%;
	top: -1%;
	left: -1%;
	z-index: 2;
}
.gridpage .vidHolder .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.gridpage .cell video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}


/*masonry-style*/

.masongrid {
	list-style-type: none;
	min-height: 100%;
}

.masongrid .cell {
	display: block;
	float: left;
	overflow: hidden;
	text-align: left;
	margin-bottom: 1.1%;
}

	.grid-sizer, .masongrid .cell {
		width: 32.6%;
		height: auto;
	}
	
	.masongrid .cell.large {
		width: 49.66%;
	}

	.gutter-sizer {
		width: 1.1%;
	}

	.masongrid .shown,
	.no-js .masongrid .cell,
	.no-cssanimations .masongrid .cell {
		opacity: 1;
	}

	.masongrid .cell a,
	.masongrid .cell img {
		outline: none;
		border: none;
		width: 100%;
		display: block;
		text-decoration: none;
	}
	

/* grid - justified gallery */
.justified .photo {
	z-index: 1;
}

.justified .cell .caption,
.motion .cell .caption {
	box-sizing: border-box;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    padding: 0 25px 18px;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 5;
    color: #fff;
    text-align: right;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .2s 0s, transform 0s .2s;
}

.justified .cell:hover .caption,
.justified .cell.active .caption,
.motion .cell:hover .caption,
.motion .cell.active .caption {
	opacity: 1 !important;
	transform: translateX(0px);
	transition: opacity .3s .1s, transform .3s .1s;
}


/* ************** MOTION GRID ******************* */
.motion .cell,
.motion .grid-sizer {
	width: 49.45%;
}
/* (caption styles inherited from ".justified" captions) */
.motion .cell .caption {
	max-width: 350px;
	pointer-events: none;
}
.motion .cell .title {
    display: block;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.1;
}
.motion .cell .sub-title {
	display: block;
    font-size: 0.78em;
    font-weight: 400;
    line-height: 1.1;
}
.motion .cell .title + .sub-title {
	padding-top: 0.3em;
}


/* ************** BLOG GRID ******************* */
.blog {}

.blog .cell {
	margin-bottom: 5%;
}
.blog .cell a {
	position: relative;
}

.blog .cell:hover .overlay-color {
	opacity: 0;
}

.blog .cell a:hover .overlay-color {
	opacity: 1;
}

.blog .cell .caption {
    padding: 0.8em 20% 0 2%;
    font-size: 0.85rem;
}
	.cell .post-title {
	    font-weight: 700;
	    font-size: 1.4em;
	}
	.cell .post-caption {
		font-size: 1em;
		padding-top: 0.7em;
	}

/*large cell overrides*/
.blog .cell.large {
	margin-bottom: 1.1%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.blog .cell.large a {
    flex: 0 1 66.4%;
    text-align: center;
}
	.blog .cell.large a img.portrait {
		display: inline-block;
		width: 50%;
	}
.blog .cell.large .caption {
    flex: 0 1 30.5%;
    padding: 0;
}
	.cell.large .post-title {
	    font-size: 2.3rem;
	    font-weight: 700;
	    line-height: 1.05;
	}
	.cell.large .post-caption {
		line-height: 1.4;
		padding-top: 1.6em;
	}


/* ************** BLOG POST ******************* */
.post.textpage {
	max-width: 728px;
	margin: auto;
	text-align: center;
}

/* next/prev navigation */
.post-nav {
	list-style-type: none;
	display: flex;
	justify-content: center;
	padding-bottom: 5.8%;
}
.post-nav li {
	color: #b2b2b2;
	flex: 0 1 9.2em;
}
.post-nav li:nth-child(1) a:before,
.post-nav li:nth-child(2) a:after {
	content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.post-nav li:nth-child(1) a:before {
    margin-right: 0.6em;
    border-right: 7px solid currentColor;

}
.post-nav li:nth-child(2) a:after {
    margin-left: 0.6em;
    border-left: 7px solid currentColor;
}
.post-nav a {
	text-decoration: none;
}

/* post heading */
.post h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.05;
    width: 150%;
    margin: 0px auto 0px -25%;
}
.post .post-caption {
    padding: 1.2em 0 2.8em 0;
}
.post img.hero {
	padding-bottom: 2.8em;
}

/* post body */
.post img {
	max-width: 100%;
	height: auto;
}
.post-content {
	margin: auto;
    width: 90%;
    max-width: 605px;
    padding-bottom: 7%;
}
.post-content p {
    line-height: 1.6;
}
.post-content a {
	color: #f17644;
}



/* ************** TEXT (INFO) PAGE ******************* */

.textpage {
	width: 85.5%;
	max-width: 1095px;
	margin: auto;
	font-size: 0.85rem;
}
@media (min-width: 1401px) {
	.textpage {
		margin-left: 11%;
	}
}

.big-text {
	font-size: 2.75em;
	width: 92%;
	padding-top: 1.4em;
	padding-bottom: 1.1em;
}
.big-text p,
.big-text h1,
.big-text h2,
.big-text h3 {
	font-size: 1em;
	font-weight: 700;
	line-height: 1.2;
}

.textpage .writeup h1,
.textpage h2,
.textpage h3 {
	font-size: 1em;
	line-height: 1.4;
	padding-bottom: 1.3em;
}

.textpage .writeup p + h1,
.textpage .writeup ul + h1,
.textpage .writeup ol + h1,
.textpage p + h2,
.textpage ul + h2,
.textpage ol + h2,
.textpage p + h3,
.textpage ul + h3,
.textpage ol + h3 {
	padding-top: 2em;
}

.textpage .content-holder {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}
.textpage .masongrid {
    flex: 0 1 63%;
}
.textpage .writeup {
	flex: 0 1 27.5%;
	padding-right: 5%;
	padding-top: 1.4em;
}

.textpage .gutter-sizer {
	width: 6.61%;
}
.textpage .grid-sizer,
.textpage .masongrid .cell {
	width: 46.695%;
}
.textpage .masongrid .cell {
	margin-bottom: 9.375% !important;
}
.textpage .masongrid .cell.large {
	width: 100%;
}

.textpage .caption {
	width: 80%;
    color: #878787;
    font-size: 0.9em;
    letter-spacing: .02em;
    font-style: italic;
    padding-top: 2.3em;
    line-height: 1.3;
}
.textpage .caption:before {
    content: '';
    display: block;
    width: 59px;
    height: 1px;
    margin-bottom: 1.1em;
    background-color: currentColor;
    opacity: 0.6;
}

/* INSTAGRAM FEED */
.content-holder + .instagram-feed {
    padding-top: 3%;
}
.instagram-feed .heading {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.instagram-feed h2 {
	font-size: 2.75em;
	line-height: 1;
	padding-bottom: 1em;
}
.instagram-feed .heading a {
	color: #f17644;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

ul.instagram-grid {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3%;
}
.instagram-grid .cell {
    flex: 0 0 22.9%;
}
.instagram-grid a {
	display: block;
	position: relative;
}
.instagram-grid img {
	display: block;
	width: 100%;
	height: auto;
}
.instagram-grid video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
span.view-more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-30%);
    opacity: 0;
    width: 84%;
    text-align: center;
    display: block;
    font-weight: 700;
    font-size: 1.2em;
    color: #fff;
    z-index: 5;
    transition: opacity .2s 0s, transform 0s .2s;
}
.cell:hover span.view-more,
.cell.active span.view-more {
	transform: translate(-50%,-50%);
	opacity: 1;
	transition: opacity .4s 0s, transform .4s 0s;
}
.textpage .instagram-grid .caption {
    padding-top: 2em;
}
.textpage .instagram-grid .hl {
	font-weight: 700;
	color: #f17644;
}


