* {
	margin: 0;
	padding: 0;
}

html {
	color: #000000;
	height: 100%
}

body {
	overflow-x: hidden;
	display: block;
	height: 100%;
	background: #FFFFFF;
	font-family: 'BenchNine', sans-serif;
	letter-spacing: .25rem;
}

.disable-scrollbars::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

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

#wrapper {
	position: relative;
	min-height: 100vh;
}

/* HIDE ON DESKTOP */
#hamburger, #close-mobile, #mobile-menu, #scroll-top-mobile, #last-mobile {
	display: none;
}

#header {
	margin: 0 5rem;
	padding: 2rem 0;
	line-height: 3rem;
}

#header * {
	display: inline-block;
}

#logo {
	text-align: center;
}

#logo:hover {
	cursor: pointer;
}

#erichkopp {
	font-family: 'Anton', sans-serif;
	font-size: 3rem;
	letter-spacing: .75rem;
}

#subheader {
	display: block;
	margin-top: -1.5rem;
	font-size: .75rem;
	letter-spacing: .7rem;
}

#nav-links {
	position: relative;
	font-size: 1.15rem;
	float: right;	
}

#nav-links a {
	position: relative;
	width: 94%;
	border-bottom: .25rem solid transparent;
}

#nav-links a:hover {
	border-color: #000000;
	transition: 2s;
}

#nav-links li {
	padding-left: 3rem;
}

#contact-page {
	display: block;
	height: 60vh;
	width: 100%;
	position: relative;
}

#contact-header {
	color: transparent;
	font-size: 2rem;
	text-align: center;
	padding-bottom: 4rem;
}

#contact-container {
	width: 50%;
	margin: 0 auto;
	padding: 5% 0;
}

#email, #textarea {
	font-family: 'BenchNine', sans-serif;
	letter-spacing: 5px;
	font-size: 1rem;
	padding: 1rem;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 1rem;
}

#submit-button {
	font-family: 'BenchNine', sans-serif;
	letter-spacing: .25rem;
	font-size: 1rem;
	padding: .5rem;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 1rem;
	border: 1px solid #000000;
	color: #FFFFFF;
	background: #000000;
	border-radius: 3px;
}

#submit-button:hover {
	cursor: pointer;
	background: #282828;
	transition: .7s;
}

#scrolling-wrapper {
	position: relative;
	height: 60vh;
	overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 2.5rem;
}

.arrows {
	position: sticky;
	opacity: 0;
	bottom: 50%;
	z-index: 1;
	left: 0;
	margin: -.75rem;
	height: 100%;
}

.arrows:hover {
	cursor: pointer;
	opacity: .7;
	transition: .7s;
}

#left-arrow, #right-arrow {
	line-height: 60vh;
	width: 4rem;
	font-size: 2.5rem;
	color: #FFFFFF;
	text-align: center;
	background-color: rgba(0,0,0,0.7);
	transition: .7s;
}

#left-arrow {
	float: left;
}

#right-arrow {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
	right: 0;
}

.photo {
	margin: -.75rem;
	border-left: .75rem solid #000000;
	border-right: .75rem solid #000000;
	height: 100%;
	width: auto;
	display: inline-block;
	overflow: hidden;
}

.photo img {
	height: 100%;
	width: auto;
}

.photo:hover {
	cursor: pointer;
}

#first-img {
	border-left: 1.25rem solid #000000
}

#last-desktop {
	margin-right: -3.65rem;
}

#footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 2.5rem;
}

#footer * {
	display: inline-block;
}

#social-links {
	float: right;
}

#social-links li {
	padding-right: 5rem;
}

#copyright {
	font-size: .6rem;
	padding-left: 5rem
}



/* MODAL BACKGROUND */
#modal {
	display: none; /* HIDDEN BY DEFAULT */
	position: fixed; /* STAY IN PLACE */
	z-index: 1; /* ON TOP */	
	left: 0;
	top: 0;
	width: 100%; /* FULL WIDTH */
	height: 100%; /* FULL HEIGHT */
	overflow: hidden; /* NO SCROLL */
	background-color: rgb(0,0,0); /* FALLBACK COLOR */
	background-color: rgba(0,0,0,0.9); /* BLACK WITH OPACITY */
}

/* MODAL CONTENT (IMG) */
#modal img {
	margin: auto;
	display: block;
	height: : 100%;
	max-height: 100%;
	min-height: 100%;
}

/* MODAL ANIMATION */
#modal img {    
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)} 
	to {-webkit-transform:scale(1)}
}

@keyframes zoom {
	from {transform:scale(0)} 
	to {transform:scale(1)}
}

/* MODAL CLOSE BUTTON */
#close {
	position: absolute;
	top: 0;
	right: 5%;
	color: #FFFFFF;
	font-size: 4rem;
	transition: 0.2s;
}

#close:hover, #close:focus {
	color: #BBBBBB;
	cursor: pointer;
}


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


/* MOBILE & TABLET VIEW */
@media screen and (max-width: 750px) {

	* {
		margin: 0;
		padding: 0;
	}

	html, body {
		overflow: hidden;
	}

	#last-desktop {
		margin-right: 0;
	}

	#first-img {
		border: 0;
	}

	#header{
		display: block;
		margin: 0;
		padding: 0;
		padding-top: 1rem;
	}

	#header #logo {
		text-align: center;
		display: block
	}

	#hamburger, #close-mobile {
		color: black;
		display: block;
		position: absolute;
		font-size: 2rem;
		line-height: 5rem;
		right: 5%;
		z-index: 5;
		cursor: pointer;
	}

	#close-mobile {
		display: none;
		color: #FFFFFF;
	}

	#mobile-menu {
		padding-top: 4rem;
		display: none;
		position: absolute;
		background-color: #000000;
		color: #FFFFFF;
		width: 100vw;
		height: 100vh;
		font-size: 2rem;
		z-index: 2;
		background-color: rgb(0,0,0); /* FALLBACK COLOR */
		background-color: rgba(0,0,0,0.9); /* BLACK WITH OPACITY */
	}

	#mobile-menu ul {
		text-align: center;
	}

	#mobile-menu ul li {
		padding: 1.8rem;
		list-style: none;
	}

	#erichkopp {
		font-size: 1.75rem;
		letter-spacing: .5rem;
	}

	#subheader {
		font-size: .5rem;
		margin-top: -1.5rem;
		letter-spacing: .5rem;
	}

	#logo:hover {
		cursor: default;
	}

	#contact-container {
		width: 90%;
	}

	#contact-header {
		color: #000000;
		font-size: 1.5rem;
		padding-bottom: 3rem;
	}

	#email, #textarea {
		margin-bottom: 2rem;
	}

	#scrolling-wrapper {
		height: 100vh;
		overflow-x: hidden;
		overflow-y: scroll;
		background: #000000;
	}

	#scroll-top-mobile {
		display: none;
		position: absolute;
		bottom: 35%;
		left: 85%;
		font-size: 2.5rem;
		color: #FFFFFF;
		z-index: 1;
		text-shadow: -3px 3px 5px #282828;
		cursor: pointer;
	}

	.photo {
		display: block;
		margin: 0;
		height: auto;
		border-left: none;
		border-right: none;
	}

	.photo img {
		width: 100%;
		height: auto;
	}

	.photo:hover {
		cursor: default;
	}

	#footer, #nav-links, #left-arrow, #right-arrow {
		display: none;
	}

	#last-mobile {
		display: block;
		height: 20rem;
	}

	#copyright {
		padding: 0;
		padding-top: 3rem;
		text-align: center;
		color: #FFFFFF;
	}

}