body, html {
	margin: 0px;
	padding: 0px;
	font-family: NOAA;
	background-color: black;
	color: white;
}

@font-face {
    font-family: NOAA;
    src: url(NOOA.ttf);
}

a {
	text-decoration: none;
	color: white;
}

#home {
	height: 100vh;
	width: 100vw;
}

#home a {
	width: calc(50% - 2px);
	display: inline-block;
	height: 100%;
}

#photography {
	margin-left: 4px;
}

#photography .home_div {
	background-image: url(../images/gallery/P3.jpg);
}

#film .home_div {
	background-image: url(../images/gallery/berwick.jpg);
}

.home_div {
	height: 100%;
	background-size: cover;
	background-position: center;
	color: white;
	position: relative;
}

.overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	margin: 0px;
	opacity: 0;
	transition: opacity ease-in-out 0.3s;
	cursor: pointer;
	position: relative;
	display: table;
}

.home_div:hover .overlay{
	opacity: 1;
	transition: opacity ease-in-out 0.3s;
}

.label {
	vertical-align: middle;
	display: table-cell;
	padding: 50px;
}

.home_div h1 {
	margin: 0px;
	text-align: center;
}

.home_div h2 {
	margin: 0px;
	text-align: center;
}

header {
	width: 100%;
	height: 56px;
	border-bottom: thin white solid;
	z-index: 1002;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: black;
}

.container {
	width: 100vw;
	overflow-x: hidden;
	margin-top: 56px;
}

.container h2 {
	text-align: center;
}

.nav {
	width: 100vw;
	height: 40px;
	top: 0px;
	position: absolute;
	z-index: 1;
}

.links {
	position: absolute;
	width: 100%;
	top: 0px;
	z-index: 5;
}

.nav_item {
	height: 15px;
	display: table;
	top: 0px;
}

.nav_item img {
	height: 15px;
	display: table-cell;
	padding-top: 19px;
	vertical-align: middle;
}

.nav_item div {
	height: 15px;
	display: table-cell;
	padding-top: 18px;
	vertical-align: middle;
}

.left-arrow {
	float: left;
	padding-left: 5px;
}

.right-arrow {
	float: right;
	padding-right: 5px;
}

.title {
	color: white;
	width: 100%;
	text-align: center;
	font-size: 35px;
	padding-top: 9px;
	display: inline-block;
	z-index: 2;
	position: relative;
}

.films {
}

.films ul {
	padding: 0px;
	margin: 0px;
	z-index: 1;
	margin-bottom: 5px;
}

.film-item {
	margin-left: 5px;
	margin-right: 5px;
	padding: 0px;
	cursor: pointer;
	display: inline;
	white-space: nowrap;
	position: relative;
}

.film-item img {
	width: calc(20vw - 10px);
}

.film_overlay {
	width: 100%;
	height: 100%;
	background-color: black;
	position: absolute;
	bottom: 0px;
	opacity: 0;
	-webkit-transition: ease-in-out 0.5s;
}

.film_overlay:hover {
	opacity: 0.4;
	-webkit-transition: ease-in-out 0.5s;
}

.film_description {
	width: calc(100vw - 30px);
	color: white;
	border-top: thin white solid;
	border-bottom: thin white solid;
	margin-top: 15px;
	margin-bottom: 10px;
	padding: 15px;
	font-size: 15px;
	display: none;
	position: relative;
	z-index: 0;
	/*text-transform: uppercase;*/
}

.description_close {
	position: absolute;
	right: 10px;
	top: -10px;
	cursor: pointer;
}

.main_text {
	width: 65%;
	display: table-cell;
	padding-right: 15px;
	vertical-align: middle;
}

.reviews {
	width: 20%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-left: white thin solid;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 19px;
}

.up-arrow {
	width: 20px !important;
	position: absolute;
	bottom: -21px;
	left: calc(50% - 10px);
	display: none;
}

.text_display {
	display: block;
}

.gallery {
	padding-left: 0px;
}

.gallery li {
	display: block;
	padding-bottom: 7px;
}

.gallery li img {
	width: 100%;
}

.gallery li p {
	margin-top: 1px;
}

#Gallery {
	margin: 10px;
}

.about {
	text-align: center;
	margin: 40px;
}

.about p {
}

.about h2 {
	text-align: center;
}

#photography h2 {
	text-align: center;
}

.filmography {
	text-align: center;
}

.underline {
	border-bottom: solid white 2px;
}

#menu_click {
	display: none;
}

.email {
	color: red;
	text-decoration: underline;
}

@media screen and (max-width: 750px){
	.main_text {
		width: 100%;
		display: block;
		font-size: 12px;
		padding-bottom: 15px;
	}

	.overlay {
		opacity: 1;
	}

	.reviews {
		width: calc(100% - 30px);
		display: block;
		vertical-align: middle;
		text-align: center;
		border-left: white thin none;
		border-top: white thin solid;
		padding-top: 12px;
		padding-right: 15px;
		padding-left: 15px;
		font-size: 15px;
	}

	.title {
		font-size: 20px;
	}

	.nav_item img {
		padding-top: 12px;
	}

	.nav_item div {
		padding-top: 11px;
	}

	header {
		height: 40px;
	}

	.container {
		margin-top: 40px;
	}
}

@media screen and (max-width: 510px){
	.film-item {
		width: calc(100% - 10px);
		margin-bottom: 10px;
	}

	#home a {
		width: 100%;
		display: inline-block;
		height: calc(50% - 2px);
	}

	#photography {
		margin-left: 0px;
	}

	.overlay {
		opacity: 1;
	}

	.label {
		padding: 20px;
	}

	.home_div h1 {
		font-size: 26px;
		padding-top: 80px;
	}

	.home_div h2 {
		font-size: 22px;
	}


	.title {
		font-size: 15px;
	}

	.nav_item img {
		padding-top: 12px;
		height: 10px;
	}

	.nav_item div {
		padding-top: 10px;
		font-size: 12px;
	}

	header {
		height: 35px;
	}

	.container {
		margin-top: 35px;
	}
}

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

}