/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{overflow:visible}button,input,select,textarea{font:inherit}optgroup{font-weight:bold}button,input,select{overflow:visible}button,input,select,textarea{margin:0}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}[disabled]{cursor:default}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}

* { 
/* better box model */
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
/* ligatures & special OpenType features */
-moz-font-feature-settings: "liga=1, dlig=1";-ms-font-feature-settings: "liga", "dlig";-webkit-font-feature-settings: "liga", "dlig";-o-font-feature-settings: "liga", "dlig";font-feature-settings: "liga", "dlig";
/* adjust all font stacks to use same x-height */
font-size-adjust: auto;
/* enable kerning, ligatures and other typographic features */
text-rendering: optimizeLegibility;
font-feature-settings: "kern";
-webkit-font-feature-settings: "kern";
-moz-font-feature-settings: "kern";
-moz-font-feature-settings: "kern=1";
font-kerning: normal;
}


/*----------------------------------------------------------------------*

	BASIC ELEMENTS

*----------------------------------------------------------------------*/


html, body {
	min-height: 100%;
	font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    background-color: #333; /* For overscroll on mobile */
    color: #fff;
    overflow-x: hidden;
}

h1 {
}

h2, h3, h4, h5, h6 {
	font-family: "balboa",sans-serif;
	font-weight: 200;
}

h2 {
	margin-top: 0;
	text-align: center;
}

h2 img {
	max-width: 80%;
}

h3 {
	margin: 0 0 .6em;
	font-size: 83px;
	line-height: 1em;
	font-weight: 400;	
	text-transform: uppercase;
}

h3.quote {
	font-size: 63px;
	text-transform: none;
	font-weight: 200;	
}

h4.subtitle {
	margin: 0 0 .3em;
	font-style: italic;
	font-size: 24px;
	color: #f10000;
}

h4 {
	margin: 1em 0 .3em;
	font-size: 34px;
}

h4:first-child {
	margin-top: 0;
}

h5 {
	margin: 1.4em 0 0;
	font-size: 22px;
}

h5:first-child {
	margin-top: 0;
}

h6 {
	font-size: 16px;
	line-height: 1.4em;
}

h6:first-child {
	margin-top: 0;
}

h4 + h6 {
	margin-top: .3em;
}

p {
	margin: .4em 0 1.4em;
}

hr {
	border: none;
}

hr:after {
	content: "";
	display: block;
	width: 200px;
	margin: 100px auto;
	border-top: 2px solid #fff;
}

a {
    color: #f10000;
    text-decoration: none;
	transition: all .2s ease;
    touch-action: none;
}

a:hover,
a:focus {
    color: #8b0000;
}

a:active {
	
}

a.button,
button {
	display: inline-block;
	margin: 0 1em 1em 0;
	padding: .5em 1.3em;
	background: rgba(255, 43, 43, 0.9);
	color: #fff;
	text-transform: uppercase;
	font-family: "balboa",sans-serif;
	font-size: 16px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: all .2s ease;
    touch-action: none;
}

.button:hover,
.button:focus,
button:hover,
button:focus {
	background: #fff;
	color: #FF2B2B;
}

a.button:active,
button:active {
	
}

button:disabled,
.button:disabled {
	opacity: .3;
}

section:focus {
	outline: none;
}
    
::selection {
    background-color: #ff3434;
    color: #222222;
}
::-moz-selection {
    background-color: #ff3434;
    color: #222222;
}


/*----------------------------------------------------------------------*

	COMMON CLASSES

*----------------------------------------------------------------------*/




.container {
	max-width: 1000px;
	margin: 0 auto;
}

.flex {
	display: flex;
}

.wrap {
	flex-wrap: wrap;
	flex: 1 1 500px;
}

.wrap > div {
	min-width: 31%;
	max-width: 31%;
	margin-right: 2%;
}

.row {
	clear: both;
	margin: 0 0 50px 0;
}

.column {
/* 	width: 46%; */
/* 	float: left; */
/* 	margin: 0 4% 0 0; */
	flex: 1;
	margin-right: 4%;
}

/*
.column:nth-of-type(2n) {
	margin: 0 0 0 50%;
	float: none;
}
*/


/*
.column.onethird {
	width: 34%;
	margin: 0 4% 0 0;
}
*/

/*
.column.onethird:nth-of-type(2n) {
	width: 34%;
	margin: 0 0 0 66%;
}
*/

.column.twothirds {
	flex: 2;
/*
	width: 62%;
	margin: 0 4% 0 0;
*/
}

/*
.column.twothirds:nth-of-type(2n) {
	width: 62%;
	margin: 0 0 0 38%;
}
*/

.column.oneforth {
/*
	width: 25%;
	margin: 0 4% 0 0;
*/
}

.threeforths {
	flex: 3;
}

/*
.column.threeforths:nth-of-type(2n) {
	width: 71%;
	margin: 0 0 0 29%;
}
*/

.fullwidth {
	width: calc(100% + 40px);
	margin: 0 -20px 6em;
	padding: 2em 20px;
}

.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

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

.alignright {
	text-align: right;
}

.red {
	color: #f10000;
}

.cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.darkbg {
	padding: 2em 20px;
	background: rgba(0,0,0,.6);
}

/*----------------------------------------------------------------------*

	INDIVIDUAL PAGES

*----------------------------------------------------------------------*/


section {
	position: relative;
	padding: 150px 20px;
}

header {
	height: 100vh;
	margin: 0;
	background-image: url(../img/autumn-839563_1920.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

.headline_container {
	position: relative;
/* 	margin-top: 5vw; */
}

header h1,
.headline_overlay {
	font-family: "balboa",sans-serif;
	font-size: 17.7vw;
	font-weight: 700;
	margin: 0;
	color: #270202;
	text-transform: uppercase;
	white-space: nowrap;
	mix-blend-mode: color-burn;
/* 	font-weight: 400; */
	opacity: .7;
}

.headline_overlay {
	position: absolute;
	top: 0;
	left: 0;
	color: #f10000;
	mix-blend-mode: normal;
	opacity: .5;
/* 	display: none; */
}

header nav {
	position: absolute;
	top: 30px;
	right: 30px;
}

header nav a {
	display: inline-block;
	padding: .6em;
	text-transform: uppercase;
	text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

header nav a span {
	display: inline-block;
	width: 0;
	text-indent: -9999px;
	overflow: hidden;
}

header nav a:hover {
	color: #000;
}

img {
	max-width: 100%;
}


.current {
	position: relative;
	background: url(../img/trees.jpg);
	background-size: cover;
}

.current .button {
	margin: 0 0 1em 1em;
	color: #000;
}

.current .button:hover {
	color: #FF2B2B;
}

.bigdate {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-family: "balboa",sans-serif;
	font-size: 120px;
	line-height: 1em;
	text-align: right;
	text-transform: uppercase;
	opacity: .05;
}


.review h4 {
}

.review.small h4 {
	font-size: 22px;
}


.other_works {
	background-color: #eee;
	background-image: url(../img/treeoutline.png); /* url(../img/trees2.jpg); */
/* 	background-size: cover; */
	background-repeat: no-repeat;
	background-position: 0 -100px;
	background-size: 30%;
	color: #000; /* #981717 */;
}

.other_works h3 {
	color: #000;
	font-family: "balboa",sans-serif;
/* 	font-size: 28px; */
	color: #ff4545;
	mix-blend-mode: multiply;
}

.other_works h4 {
	margin: .2em 0 1em;
	font-family: "proxima-nova", Helvetica, Arial, sans-serif;
	font-size: 24px;
	line-height: 1.1em;
	font-weight: 700;
	color: #444;
	text-transform: uppercase;
}

.other_works h4 span {
	display: block;
	font-size: .6em;
	text-transform: none;
}

.other_works h5 {
	margin: 0 0 .2em;
	font-size: 20px;
	color: #981717;
	text-transform: uppercase;
}

.other_works img {
/* 	float: left; */
	margin: 0 20px 0 0;
	width: 100%;
	background: #333;
}





/*----------------------------------------------------------------------*

	Film

*----------------------------------------------------------------------*/


#film {
	background: none;
	background-color: #c53434;
}

#film * {
	position: relative;
	z-index: 10;
}

#film .title {
	position: relative;
	height: 150px;
	mix-blend-mode: difference;
	color: #f00;
}

#film .title h3 {
	position: absolute;
}


#film h4 {
	margin: 0;
}

#film h6 {
	margin: 0 0 .5em;
}

#film .hazy_trees {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url(../img/hazy_trees.jpg) bottom center no-repeat;
	background-size: 120%;
	transform: rotate(180deg);
	mix-blend-mode: multiply;
	z-index: 1;
}



#film .hazy_trees.bottom {
	background-size: 100%;
	transform: rotate(0deg);
	mix-blend-mode: multiply;
}



/*----------------------------------------------------------------------*

	Events

*----------------------------------------------------------------------*/

.events {
	padding: 3em 2em 2em;
	background: rgba(255, 43, 43, 0.9);
}

.events h3 {
	font-size: 3rem;
	margin: 0 0 .4em;
}

.events h4 {
	margin-top: .2em;	
}

.events a {
	color: #000;
	font-weight: bold;
}

.events a:hover {
	color: #fff;
}



/*----------------------------------------------------------------------*

	About

*----------------------------------------------------------------------*/

.about {
	background-color: #1d1a1a;
	background: url(../img/hazylake_light.jpg) top center no-repeat;
	background-size: cover;
	color: #000;
	
/* 	border-top: 4px solid #981717; */
/* 	border-bottom: 4px solid #981717; */
}

.about h4 {
	margin-top: 2em;
}

.about p {
	font-size: 1.2em;
}

.about p:first-child {
	margin-top: 0;
}

.about h5 a {
	display: inline-block;
	padding: .5em 1em .5em 0;
	font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

.about a:hover {
	color: #fff;
}


/*----------------------------------------------------------------------*

	Contact

*----------------------------------------------------------------------*/


.contact {
	background-image: url(../img/trees.jpg);
	padding: 120px;
}

.contact h3 {
	font-size: 4em;
}

.contact_form {
/* 	width: 500px; */
	max-width: 100%;
}

input,
textarea {
	width: 100%;
	margin: 0 0 20px;
	padding: 0.5em 0.7em;
	display: block;
	font-size: 1.3em;
	background: rgba(0,0,0,.5);
	color: white;
	border: 2px solid white;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: #f10000;
}

textarea {
	height: 150px;
}

input[type="submit"] {
	width: auto;
	margin: 20px 0;
	background: rgba(255, 43, 43, 0.9);
	color: #fff;
	font-family: "balboa",sans-serif;
	font-size: 1.8em;
	text-transform: uppercase;
	border: none;
	transition: all .2s ease-in-out;
}

::placeholder {
  color: #bbb;
}

.form_response {
	display: inline-block;
	padding: .4em .6em;
	color: #704e4e;
	background: #f2cece;
}

.form_response.success {
	color: #4f7154;
	background: #cff3d2;
}

.form_response:empty {
	display: none;	
}


footer {
	padding: 20px;
	background-color: #eee;
	background-image: url(../img/autumn-839563_1920.jpg);
	background-size: cover;
	background-position: center center;
	color: #000;
	font-weight: 700;
	text-align: right;
}

footer p {
	position: relative;
	top: auto;
	left: auto;
	display: inline-block;
	margin: 0;
	padding: 0 .1em;
	font-family: "balboa",sans-serif;
	font-size: 28px;
/* 	font-weight: 200; */
/* 	background: #ff4545; */
/* 	color: #fff; */
	color: #ff4545;
	mix-blend-mode: multiply;
	text-transform: uppercase;
	opacity: 1;
}




@media screen and (max-width: 600px) {
	
	header nav {
		top: 10px;
		right: 10px;
	}
	
	header nav a {
		font-size: .7rem;
	}
	
	.flex {
		display: block;
	}
	
	.column {
		width: 100% !important;
		float: none !important;
		margin: 0 0 20px 0 !important;
	}
	
	.aligncenter-sm {
		text-align: center;
	}
	
	.bigdate {
		font-size: 50px;
	}
	
	.other_works {
		background-position: 0 0;
		background-size: 50%;
	}
	
	.other_works img {
		max-width: 300px;
	}
	
}









