@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.boxHelper /*Class to help visualize the grid*/
{
	color: #fff;
	background-color: #000;
	text-align: center;
}

.hidden {
	display: none;
}

.vert-parent {
  position: relative;
}
.vert-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

body{
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}



.see-yourself
{
	padding: 50px 0px 50px 0px;
	background-color: #f9f9f9;
	display: none;
}


.more-close {
	position: absolute;
	right: 0;
	margin-right: 40px;
	max-width: 20px;
	cursor: pointer;
}




#menuToggle
{
  display: block;
  position: relative;
  top: 20px;
  left: 0px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: white;

  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #aa8545;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;

}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
	overflow: hidden;
  width: 99.9vw;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: rgba(9,8,9,0.98);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 20px 0;
  font-size: 22px;

}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}









.header-logo {
	margin: 20px 0px 20px 0px;
}

.header-home
{

	position: absolute;
	width: 100%;

}

.header-nav{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}

.header-nav li{
    display:inline;
}

.header-nav a{
    display:inline-block;
    margin:15px;
		color: white;
}

.header-nav a:hover{
color: #aa8545;
}


.header-nav-samples{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}

.header-nav-samples li{
    display:inline;
}

.header-nav-samples a{
    display:inline-block;
    padding:10px;
		color: #090809;
}

.header-nav-samples a:hover{
color: #aa8545;
}


.home-nav {
	margin-top: 30px;
}

.logo-landing {
	margin-top: 50px;
	margin: 0 auto;
	max-width: 250px;
}



.intro-section {
	background-color: #dfdfdf;
	height: 100vh;
	background: url("../images/intro-background.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;
	color: white;

}

.vert-parent {
  position: relative;
}
.vert-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


.intro-title{
	font-size: 6em;
	font-weight: bold;
	opacity: 0;
}


.intro-title-sub{
	font-size: 1.5em;
	margin: 60px 0px 60px 0px;
	opacity: 0;
}

.intro-btn {
	border: 1px white solid;
	padding: 10px 50px 10px 50px;
	color: white;
}

.intro-btn:hover {
	color: #fba51c;
	border: 1px #fba51c solid;
}

.see-more-centered
{
	text-align: center;
	margin-bottom: 150px;
}



.know-me-section
{
	text-align: center;
	padding: 100px 0px 100px 0px;
	background: url("../images/know-me-background.jpg") no-repeat fixed;
}

.know-me-desc{
		margin-top: 40px;
		margin-bottom: 40px;
		clear: both;
		line-height: 1.8;
}


.know-me-title {
	font-size: 2.3em;
	text-transform: uppercase;
	margin-bottom: 40px;
	color: #aa8545;
}


#stop_spam {
	display: none;
}



.samples-title {
	text-align: center;
	text-transform: uppercase;
	color: #aa8545;
	font-size: 1.8em;
	margin: 0px 0px 50px 0px;
}


.sample-title
{
	text-align: center;
	color: #aa8545;
	text-transform: uppercase;
	font-size: 1.1em;

}


.parent-sample{
	position: relative;
	margin-top: 30px;
	text-align: center;
}

.child-sample{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.child-sample img{
	cursor: pointer;
}




.specialize-section{
	margin: 50px 0px 50px 0px;
	text-align: center;
}

.specialize-section h2{
	font-weight: bold;
	color: #aa8545;
	text-transform: uppercase;
	margin: 10px 0px 10px 0px;
}

.specialize-section p{
	color: #b3b3b3;
	padding: 20px;
	line-height: 1.5;
	font-size: 0.9em;
}

.specialize-indvidual {
	padding: 30px 5px 30px 5px;
}

.specialize-indvidual img {
 max-height: 80px;
 padding-bottom: 20px;
}



.car-title
{
	text-align: center;
}


.skills-para {
	padding: 50px;
	line-height: 1.5;
	color: #b3b3b3;
	font-size: 1.1em;
}




.samples-section
{
	margin: 75px 0px 75px 0px;
}





.samples-div{
	padding: 50px 0px 0px 0px;
	text-align: center;
}

.samples-div h2{
	font-size: 2em;
	text-transform: uppercase;
}

.samples-div p{
	font-size: 0.9em;
	margin: 20px 0px 20px 0px;
	color: #404040;
	right: 20px;

}

.body-container {
	opacity: 0;
}

.samples-container {
	background-color: white;
}

.contact-container {
	opacity: 0;
}

html {
	background-color: black;
}

.sample-page-img{
	display: block;
	margin: 0 auto;
	margin-bottom: 50px;
}

.close-audio{
	position: absolute;
	max-width: 15px;
	cursor: pointer;
	top: 0;
	right: 0;
	margin: 20px;
}


.audio-wave{
	width: 100%;
	background-color: #151314;
	position: fixed;
	bottom: 0;
	padding: 15px 0px 10px 0px;
  display: none;
	opacity: 0;
	z-index: 2;
}
.contact-submit{
	text-align: center;
	margin: 0 auto;
	display: block;
	color: white;
	padding: 10px 50px 10px 50px;
	border: 1px solid white;
	margin-top: 50px;
	cursor: pointer;
	background: transparent;
}

#menu {
	overflow: hidden;
}


.profile-pic {
	margin: 0 auto;
	display: block;
}

.buttons-section{
	text-align: center;
}

.buttons-section input{
	margin: 20px;
	max-width: 15px;
}

input[type="image"]:disabled{background-color:transparent;}


.sample-icon
{
	cursor: pointer;
	margin-top: 30px;
}






footer {
	background-color: #151314;
	padding: 40px 0px 50px 0px;
}

footer ul li a{
	font-size: 0.8em;
}


.footer-copy
{
	color: white;
	margin: 20px 0px 0px 0px;
	font-size: 0.8em;
	line-height: 2;
	padding: 10px;
}


.footer-copy a
{
	color: #aa8545;
	margin: 0px 0px 0px 0px;

}

.footer-copy a:hover
{
	color: #b3b3b3;
	margin: 0px 0px 0px 0px;

}


.contact-section {
	padding-top: 200px;
	height: 1000px;
	background: url("../images/contact-background.jpg") no-repeat fixed;
	color: white;
}


.samples-video {
	width: 80%;
	margin: 0 auto;
	display: block;
	margin-top: 50px;
}


.contact-fill, .contact-love {
	text-align: center;
	text-transform: uppercase;
	margin: 50px 0px 50px 0px;
}


.contact-love {
	font-size: 2em;
	font-weight: bold;

}

.contact-info-sec, .contact-info-sec2 {
	font-size: 1em;
	margin: 20px 0px 20px 0px;
	text-align: center;
}

.contact-info-sec img, .contact-info-sec2 img{
	display: none;
}




.contact-form input[type=text] {
	margin: 0 auto;
	margin-top: 30px;
	width: 60%;
	color: white;
	border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid white;
text-transform: uppercase;
}

.contact-form input[type=text]:focus {
	margin: 0 auto;
	margin-top: 30px;
	width: 60%;
	color: white;
	border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid white;
text-transform: uppercase;
}


.contact-form {
	margin-bottom: 100px;
}



.home-nav
{
	display: none;
}

.samples-logo {
	margin: 0 auto;
	display: block;
	padding-bottom: 20px;
}


.see-more {
	margin-top: 40px;
	margin-bottom: 10px;
border: 1px solid #aa8545;
padding: 10px 25px 10px 25px;
color: #aa8545;
cursor: pointer;
}


.see-more:hover {
	border: 1px solid #090809;
	color: #090809;
}




/* End */

/*Queires*/



@media only screen and (min-width: 640px) {
	.hamNav {
		display: none;
	}

	.home-nav
	{
		display: block;
	}


	.logo-landing {
		margin-top: 50px;
		margin: 0 auto;
		max-width: 500px;
	}

	.contact-info-sec, .contact-info-sec2 {
		margin: 50px 0px 50px 0px;
	}

	.contact-info-sec img, .contact-info-sec2 img{
		margin-right: 20px;
		display: block;
	}

	.contact-info-sec img{
		float: right;
	}

	.contact-info-sec p{
		float: right;
	}

	.contact-info-sec2 img{
		float: left;
	}

	.contact-info-sec2 p{
		float: left;
	}
}


@media only screen and (min-width: 1024px) {
	.sample-page-img{
		display: inline;
		float: left;
		margin-right: 40px;
	}

	.samples-div{
		padding: 50px 0px 0px 0px;
		text-align: left;
	}

	.samples-div h2{
		font-size: 1.4em;
		text-transform: uppercase;
	}

	.samples-div p{
		font-size: 0.8em;
		margin: 20px 0px 20px 0px;
		color: #404040;

	}

	.know-me-title{
		float: left;
		margin-top: 80px;
	}



	.know-me-section
	{
		text-align: left;
		padding: 100px 0px 100px 0px;
		background: url("../images/know-me-background.jpg") no-repeat fixed;
	}

}



@media only screen and (min-width: 1300px) {
	.sample-page-img{
		display: inline;
		float: left;
		margin-right: 40px;
	}

	.samples-div{
		padding: 50px 0px 0px 0px;
		text-align: left;
	}

	.samples-div h2{
		font-size: 2em;
		text-transform: uppercase;
	}

	.samples-div p{
		font-size: 0.9em;
		margin: 20px 0px 20px 0px;
		color: #404040;

	}

}

























































/* End of Queires */
