html, body{
	margin: 0;
	padding: 0;
}
.landing-page-wrapper{
	font-family: 'Anton', sans-serif;
	min-height: 100vh;
	width: 100%;
}
.brand-image {
  position: absolute;
  top: 0;
  left: 0;
  right:0;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  height: 175px;
  width: 175px; }

.brand-image img {
  height: inherit;
  width: inherit; }
#menubar-wrapper{
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 25px;
	padding-top: 10px;
	color: white;
	font-size: 20px;
	z-index: 5;
}
#menu{
	cursor: pointer;
	font-size: 24px;
}
.img-wrapper{
	width: 25%;
	min-height: 100vh;
	float: left;
	margin: none;
	padding: none;
}
.landing-page-wrapper #education{
	background: url(images/education-vert.jpg) center center no-repeat;
	background-size: cover;
}
.landing-page-wrapper #music{
	background: url(images/music-vert.jpg) center center no-repeat;
	background-size: cover;
}
.landing-page-wrapper #photography{
	background: url(images/photography-vert.jpg) center center no-repeat;
	background-size: cover;
}
.landing-page-wrapper #videography{
	background: url(images/video-vert.jpg) center center no-repeat;
	background-size: cover;
}
.img-wrapper-text{
	text-align: center;
	background: rgba(0,0,0,0.1);
	color: white;
	min-height: 100vh;	
}
.img-wrapper-text:hover{
	background: rgba(0,0,0,0.8);
	transition:ease-in .3s;
}
.landing-page-wrapper .img-wrapper .img-wrapper-text .text{
	opacity: 0;
}
.landing-page-wrapper #education:hover .text{
	opacity: 1;
	transition:ease-in .3s;
	cursor: pointer;
	font-size: 32px;
}
.landing-page-wrapper #music:hover .text{
	opacity: 1;
	transition:ease-in .3s;
	cursor: pointer;
	font-size: 32px;
}
.landing-page-wrapper #photography:hover .text{
	opacity: 1;
	transition:ease-in .3s;
	cursor: pointer;
	font-size: 32px;
}
.landing-page-wrapper #videography:hover .text{
	opacity: 1;
	transition:ease-in .3s;
	cursor: pointer;
	font-size: 32px;
}
.landing-page-wrapper #chevron-down, #about-section #chevron-down{
	text-align: center;
}
#chevron-down-wrapper {
	width: 100%;
	position: absolute;
    bottom: 0;
	color: white;
	text-align: center;
	padding-bottom: 25px;
	font-size: 36px;

}
#chevron-down-wrapper i{
	border:solid white 1px;
	border-radius:50%; 
	padding: 20px;
}
#chevron-down-wrapper i:hover{
	background: white;
	cursor: pointer;
	transition:ease-in .3s;
	color: black;
}
/*

	NAVIGATION MENU STYLES

*/
#navbar-wrapper{
	width:30%;
	background: black;
	color: white;
	font-size: 18px;
	letter-spacing: 2px;
	position: fixed;
	top: 0;
	right:0;
	height: 100%;
	z-index: 3000;
	transform:translateX(100%);
	transition:0.3s ease-out;
}
#navbar-wrapper header ul li{
	display: block;
	margin: 30px 25px 20px 0px;
	cursor: pointer;
	font-family: 'Anton', sans-serif;
}
#navbar-wrapper.open{
	transform:translateX(0);
	transition:ease-in 0.3s;

}
#close{
	cursor: pointer;
	font-size: 20px;
}
a:visited{
	color: white;
	text-decoration: none;
}
a:link{
	color:white;
	text-decoration: none;
}
a:hover{
	opacity:0.4;
	transition:ease-in .3s;
}
a:active{
	color: white;
}

/*

	ABOUT SECTION

*/
#about-section{
	height: 100vh;
	width: 100%;
	font-family: 'Rubik', sans-serif;
	background: url(images/aboutme.jpg) center center no-repeat;
	background-size: cover;
	color: white;
}
#about-shade{
	float: right;
	height: 100%;
	background: rgba(0,0,0,0.6);
	width: 47%;
}

#about-section-quote{
	width: 100%;
	text-align: left;
	max-width: 25rem;
	margin: auto;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.5;
}
.underline{
	text-decoration: underline !important;
}
/*

	CONTACT SECTION

*/
#contact-wrapper{
	width: 100%;
	min-height: 100vh;
	font-family: 'Rubik', sans-serif;

}
#contact-img{
	background: url(images/citynyc.jpg) center center no-repeat;
	height: 40vh;
	background-size: cover;	
}
#contact-img-text-wrapper{	
	height: inherit;
	background: rgba(0,0,0,0.4);
	text-align: center;	
	font-size: 48px;
	color: white;
}
#contact-info-wrapper{
	height: 35vh;
	color: black;	
	text-align: center;	
	width: 100%;
}
.contact-info-text{
	float: left;
	width: 20%;
}
.facebook-big, .instagram-big, .youtube-big, .twitter-big, .vimeo-big{
	font-size: 72px;
	cursor: pointer;
	padding-bottom: auto;
}
.social_icon{
	min-height: 35vh;
}
.contact-info-text:hover{
	background: black;
	color: white;
	transition: ease-in 0.4s;
}
.email-section{
	background: black;
	color: white;
	height:30vh;
	text-align: center;
	font-size: 48px;
	letter-spacing: 2px;
	cursor: pointer;
}
.email span{
	padding-right: 10px;
}
.email-section:hover{
	background: black;
	color:white;
	animation: pulse 3s ease-out infinite normal;
}
@keyframes pulse{
	0%{
		background: black;
		color:white;	
	}
	100%{
		color:black;
		background: white;
	}
}
/*

	MEDIA SCREEN BEGINNING 
	MAX WIDTH 965px

*/ 

@media screen and (max-width:965px){
	.landing-page-wrapper #education:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 24px;
	}
	.landing-page-wrapper #music:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 24px;
	}
	.landing-page-wrapper #photography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 24px;
	}
	.landing-page-wrapper #videography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 24px;
	}

	#about-section-quote {
	    max-width: 20rem;
	    font-size: 18px;
	}
}

/*

	MAX WIDTH 770PX
*/

@media screen and (max-width:770px){
	#about-section-quote {
	    max-width: 15rem;
	    font-size: 15px;
	}

}

/*
	
	MAX WIDTH 718PX

*/
@media screen and (max-width:718px){
	.landing-page-wrapper #education:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 18px;
	}
	.landing-page-wrapper #music:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 18px;
	}
	.landing-page-wrapper #photography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 18px;
	}
	.landing-page-wrapper #videography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 18px;
	}

}
/*

	MAX WIDTH 545PX

*/
@media screen and (max-width: 545px){
	.landing-page-wrapper #education:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 14px;
	}
	.landing-page-wrapper #music:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 14px;
	}
	.landing-page-wrapper #photography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 14px;
	}
	.landing-page-wrapper #videography:hover .text{
		opacity: 1;
		transition:ease-in .3s;
		cursor: pointer;
		font-size: 14px;
	}
	#navbar-wrapper{
		width:40%;
		background: black;
		color: white;
		font-size: 12px;
		letter-spacing: 2px;
		position: fixed;
		top: 0;
		right:0;
		height: 100%;
		transform:translateX(100%);
		transition:0.3s ease-out;
	}
	#about-shade{

		width: 50%;
	}
	#about-section-quote {
	    max-width: 12rem;
	    font-size: 14px;

	}

}
/*

	431PX & SMALLER

*/
@media screen and (max-width: 431px){
	.landing-page-wrapper{
		min-height: 50vh;
	}
	.brand-image {
	  height: 100px;
	  width: 100px;
	}
	.img-wrapper{
		min-height: 50vh;
	}
	.img-wrapper-text{
		background: rgba(0,0,0,0.8);
		min-height: 50vh;	
	}
	.landing-page-wrapper .img-wrapper .img-wrapper-text .text{
		opacity: 1;
		font-size: 12px;
	}
	.landing-page-wrapper #education:hover .text{
		font-size: 12px;
	}
	.landing-page-wrapper #music:hover .text{
		font-size: 12px;
	}
	.landing-page-wrapper #photography:hover .text{
		font-size: 12px;
	}
	.landing-page-wrapper #videography:hover .text{
		font-size: 12px;
	}
	#chevron-down-wrapper {
		top: 0;
	    padding-top: 60%;
	    font-size: 20px;
            display:none;
	}
	#contact-wrapper {
	    min-height: auto	
	}
	.facebook-big, .instagram-big, .youtube-big, .twitter-big, .vimeo-big{
		font-size: 32px;
	}
	#contact-img-text-wrapper {
	    font-size: 28px;

	}
	#contact-info-wrapper {
	    height: 25vh;
	}
	.social_icon{
		min-height: 25vh;
	}
	.email-section {
	    height: 25vh;
	    font-size: 30px;
	}
}
