

/*

colors

main:			rgb(229, 100, 77);
dark grey: 		#4d4b4b;
teil: 			#43cacc;
alert: 			rgb(191,42,82);


#11090D Dark purple
#2A2C2D charcoal
#664477 purple
#E5644D orange
#FD8056 light orange
#F9FADE cream


*/




* {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #2A2C2D;
	font-size: 100%;
	line-height: 1.4;
}

a {
	text-decoration: none;
	color: rgb(229, 100, 77);
	-webkit-transition: all .15s ease-out;
	   -moz-transition: all .15s ease-out;
	    -ms-transition: all .15s ease-out;
	     -o-transition: all .15s ease-out;
	        transition: all .15s ease-out;
}

a.button {
	background: #FD8056;
	border-radius: 5px;
	padding: 5px 13px;
	color: #fff;
}

.button.parker {
/*   display:none;*/
}

.button.sandy {
	background: rgb(102, 68, 119);
	border-radius: 5px;
	padding: 5px 13px;
	color: #fff;
/*   display: none;*/
}

.visible .button.sandy, .visible .button.parker {
   display: block;
}

a:hover {
	color: #000;
}

a.button:hover {
	background: #E5644D;
}



section {
	position: relative;
	/*min-height: 100vh;*/
	width: 100%;
	padding: 75px 35px;
}

p {
	margin: 0 0 2rem 0;
	font-size: 110%;
	font-weight: 300;
}

h2 {
	font-size: 300%;
	color: rgb(229, 100, 77);
	margin: 0 0 35px 0;
	text-transform: uppercase;
	font-weight: 800;
}

h3 {
	font-size: 300%;
	color: #fff;
	margin: 0 0 35px 0;
	font-weight: 200;
}


a.anchor {
	position: absolute;
	top: -60px;
}

.flex {
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: stretch;
   align-items: stretch;
   -webkit-justify-content: center;
   justify-content: center;
   -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
}

.flex > a {
	display: block;
	margin: 0;
}


.container {
	width: 100%;
   max-width: 1024px;
   margin: 0 auto;
   overflow: hidden;
}


.title {
	display: none;
}





/* Home screen */

.home {
	position: relative;
	height: 100vh;
	width: 100%;
	background: url(../img/home_bg2.jpg) 50% 50% no-repeat;
	background-size: cover;
	margin: 0;
	padding: 0;
}

.home:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.8) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,1) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center,  rgba(0,0,0,0.8) 0%,rgba(0,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.home img {
	z-index: 2;
	width: 60vmin;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20vmin 0 0 -30vmin;
}

.alert {
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	z-index: 3;
	background: rgba(191,42,82,.3);
	/*border: 1px solid rgba(138, 30, 59,.5);*/
	padding: 25px;
	color: #f3eded;
}

.signup_form {
	display: none;
}

.alert.signup .signup_form {
	display: block;
}

.explanation {
	text-align: center;
}

.alert.signup .explanation {
	display: none;
}

div#mc_embed_signup form {
	padding: 0;
}




/* nav bar */

header.nav {
	position: fixed;
	top: 0;
	left: 0;
	height: 60px;
	width: 100%;
	z-index: 10;
	background: none;
	padding-bottom: 5px;
	box-shadow: 0 3px 5px rgba(0,0,0,.25);
	-webkit-transition: background .5s ease;
	   -moz-transition: background .5s ease;
	    -ms-transition: background .5s ease;
	     -o-transition: background .5s ease;
	        transition: background .5s ease;
}

header.nav h1 {
	text-indent: -9999px;
	background: url(../img/logo_small_light.svg) no-repeat;
	margin: 0;
	width: 200px;
	opacity: 0;
	-webkit-transition: opacity .5s ease;
	   -moz-transition: opacity .5s ease;
	    -ms-transition: opacity .5s ease;
	     -o-transition: opacity .5s ease;
	        transition: opacity .5s ease;
}

header.nav ul {
	list-style-type: none;
	display: flex;
	display: -webkit-flex;
	/*-webkit-justify-content: flex-end;*/
    justify-content: flex-end;
    margin-right: 20px;
}

header.nav li {
	text-transform: uppercase;
	font-weight: 500;
	margin: 0 20px 0 0;
	font-size: 120%;
	line-height: 140%;
	white-space: nowrap;
}

header.nav li:nth-child(2) {
	flex-grow: 2;
	-webkit-flex-grow: 2;
}

header.nav a {
	color: #fff;
}

header.nav a:hover {
	color: #ccc;
}

header.nav a.button {
	color: #fff;
}

/*header.nav .active a {
	color: rgb(229, 100, 77);
}*/

.page1_active .nav a[data-id="home"] {
	color: rgb(229, 100, 77);
}

.page2_active .nav a[data-id="about"] {
	color: rgb(229, 100, 77);
}

.page3_active .nav a[data-id="services"] {
	color: rgb(229, 100, 77);
}

.page4_active .nav a[data-id="reviews"] {
	color: rgb(229, 100, 77);
}

.nav .hamburger {
	margin: 15px;
	float: right;
}

.book.button.small {
	float: right;
	margin: 12px 15px;
}

.nav .hamburger {
   margin: 24px 20px 24px;
   width: 20px;
   height: 15px;
   position: relative;
   display: none;
}


.line {
   width: 23px;
   position: absolute;
   height: 2px;
   background: #fff;
   transition: all .15s ease-out;
}

.hamburger .line:nth-of-type(1) {
   top: 0;
}

.hamburger .line:nth-of-type(2) {
   top: 6px;
}

.hamburger .line:nth-of-type(3) {
   top: 12px;
}

.nav_visible .hamburger .line:nth-of-type(1) {
   transform: rotate(45deg);
   top: 5px;
}

.nav_visible .hamburger .line:nth-of-type(2) {
   opacity: 0;
}

.nav_visible .hamburger .line:nth-of-type(3) {
   transform: rotate(135deg);
   top: 5px;
}

.header_main header.nav {
	background: rgba(42, 44, 45, 0.95);
/*	box-shadow: 0 3px 5px rgba(0,0,0,.25);*/
}

.header_main header.nav a {
	color: #fff;
	-webkit-transition: color .5s ease;
	   -moz-transition: color .5s ease;
	    -ms-transition: color .5s ease;
	     -o-transition: color .5s ease;
	        transition: color .5s ease;
}

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

.header_main header.nav a.button {
	color: #fff;
}

.header_main header.nav .active a {
	color: rgb(229, 100, 77);
}

.header_main header.nav h1 {
	opacity: 1;
}

header.nav ul.book_sub {
   display: flex;
   position: absolute;
   top: 0;
   right: 0;
   background: #000;
   width: 100%;
   height: 100%;
   margin:0;
   -webkit-transition: all .25s ease-in;
      -moz-transition: all .25s ease-in;
       -ms-transition: all .25s ease-in;
        -o-transition: all .25s ease-in;
           transition: all .25s ease-in;
   -webkit-transform: translateY(-100px);
      -moz-transform: translateY(-100px);
       -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
           transform: translateY(-100px);
}

header.nav ul.book_sub li {
	flex-grow: 0;
    webkit-flex-grow: 0;
    margin-top: 12px;
}

header.nav ul.book_sub.show {
   -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
       -ms-transform: translateY(0);
        -o-transform: translateY(0);
           transform: translateY(0);
}



.book_sub li {
   
}




.note {
   position: fixed;
   bottom: -100px;
   left: 40px;
   right: 40px;
   background: rgba(42, 44, 45, 0.95);
   color: #fff;
   padding: 1% 5% 1%;
   z-index: 15;
   opacity: 0;
}

.note.hide {
	display: none;
}

.close {
   position: absolute;
   height: 25px;
   width: 25px;
   right: 20px;
   top: 20px;
}

.close .line:nth-of-type(1) {
   transform: rotate(45deg);
   top: 10px;
   background: #fff;
}

.close .line:nth-of-type(2) {
   transform: rotate(-45deg);
   top: 10px;
   background: #fff  ;
}

.close:hover .line {
   background: #E5644D;
   cursor: pointer;
}









/* About */

.about {
	background: url(../img/parker.jpg) no-repeat;
	background-size: cover;
	/*border-bottom: 1px solid #f4f4f4;*/
}

.about .container > div {
	float: right;
	width: 70%;
	color: #fff;
}

.cv-widget {
	margin-top: 100px;
}











/* Services */

section.services {
	padding-left: 0;
	padding-right: 0;
	 background: url("../img/white_brick.jpg") no-repeat;
	background-size: cover;
}

.services {
/*	background: url("../img/gray-canvas-fabric-texture.jpg");*/
	/*border-bottom: 1px solid #f4f4f4;*/
}


/*.services a {
	display: block;
	position: relative;
	margin: 0;
	width: 48%;
	margin-bottom: 30px;
}*/

.services .image_holder {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin: 0 auto;
	border: 1px solid #7b7d7c;
	/*padding: 25px;*/
	-webkit-transition: all .25s ease-out;
	   -moz-transition: all .25s ease-out;
	    -ms-transition: all .25s ease-out;
	     -o-transition: all .25s ease-out;
	        transition: all .25s ease-out;
}

.services a.mens_cut_and_perm .image_holder {
	background-image: url(../img/shots/Depositphotos_10837243.jpg);
}
.services a.mens_color .image_holder {
	background-image: url(../img/shots/Depositphotos_46944481.jpg);
}
.services a.childs_cut .image_holder {
	background-image: url(../img/shots/Depositphotos_5136834.jpg);
}
.services a.mens_cut .image_holder {
	background-image: url(../img/shots/Depositphotos_11193354.jpg);
}
.services a.barber_cut .image_holder {
	background-image: url(../img/shots/Depositphotos_11193288.jpg);
}
.services a.beard .image_holder {
	background-image: url(../img/shots/Depositphotos_11193280.jpg);
}


.services .text {
	margin-top: 20px;
	color: #7b7d7c;
	-webkit-transition: opacity .25s ease-out;
	   -moz-transition: opacity .25s ease-out;
	    -ms-transition: opacity .25s ease-out;
	     -o-transition: opacity .25s ease-out;
	        transition: opacity .25s ease-out;
}

.services .flex {
	flex-wrap: wrap;
}

.services a {
	width: 30%;
	padding: 20px 2% 40px;
}

.services a h4 {
	display: block;
	width: 100%;
	/*background: rgba(255,255,255,.1);*/
	color: #000;
	margin: 0;
	padding: 10px 0;
	font-size: 120%;
	font-weight: 600;
	-webkit-transition: all .25s ease-out;
	   -moz-transition: all .25s ease-out;
	    -ms-transition: all .25s ease-out;
	     -o-transition: all .25s ease-out;
	        transition: all .25s ease-out;
}


/*.services a:hover .image_holder {
	background-size: 110%;
}


.services a:hover {
	cursor: pointer;
}

.services a:hover .text {
	opacity: 0.4;
}

*/







/* Reviews */ 

.reviews {
	background: #11090D;
	color: #fff;
}

.reviews h3 {
	font-size: 200%;
	margin-bottom: 5px;
}

.reviews h3 span {
	font-size: 50%;
	padding-left: 10px;
	color: rgba(255,255,255,.5);
}

.reviews img {
	margin-bottom: 40px;
}

.reviews .container > div {
	padding-bottom: 25px;
}

.reviews a {
	color: #fff;
}

.reviews a:hover {
	color: #E5644D;
}







.products {
  background: transparent;/*  url("../img/_MG_3480-X3.jpg") 50% 50% no-repeat;*/
   background-size: cover;
   height: 600px;
}







.footer {
	background: #403340 url("../img/purple_brick.jpg") no-repeat;
	color: #fff;
   background-size: cover;
}

.footer .map {
	width: 60%;
}

.footer .info {
	width: 40%;
}

.footer h3 {
	margin-bottom: 5px;
}

.footer ul {
	list-style: none;
	display: flex;
	margin-left: 0;
	padding-left: 0;
	margin-top: 0;
}

.footer li {
	margin-right: 25px;
}


.footer h3 {
	text-indent: -9999px;
	background: url(../img/logo_small_light.svg) no-repeat;
	margin: 0;
	width: 200px;
   font-size: 200%;
	-webkit-transition: opacity .5s ease;
	   -moz-transition: opacity .5s ease;
	    -ms-transition: opacity .5s ease;
	     -o-transition: opacity .5s ease;
	        transition: opacity .5s ease;
}



/* Social */

.social img {
   padding: 2px;
   transition: all .15s ease-in;
}

.social img:hover {
	cursor: pointer;
	-webkit-transform: scale(1.2);
	   -moz-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	     -o-transform: scale(1.2);
	        transform: scale(1.2);
}











/* all mobile devices ----------- */
@media only screen 
and (max-width : 1024px) {
/* Styles */


	section {
		padding-left: 15px;
		padding-right: 15px;
	}

	.services .image_holder {
	}

	.about .container > div {
		width: 60%;
	}


}







/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 820px) {
/* Styles */

	.home img {
		width: 80vmin;
		margin: -20vmin 0 0 -40vmin;
	}

	.about .container > div {
		width: 50%;
	}

	header.nav li:nth-child(2), header.nav li:first-child {
		display: none;
	}

	header.nav ul {
		/*margin: 10px 10%;*/
		justify-content: center;
		-webkit-justify-content: center;
	}

	.social li:last-child {
		display: block;
	}

	.cv-widget {
		display: none;
	}

	.about {
		background: #1E151B;
	}

	.services a {
		width: 50%;
		padding: 20px 2% 40px;
	}

	.footer .info, .footer .map {
		width: 100%;
	}

	.footer ul {
		margin-top: 0;
		margin-bottom: 50px;
	}



}







@media only screen 
and (max-width : 670px) {
/* Styles */

	.nav_visible header.nav {
		height: 100%;
		bottom:0;
		right: 0;
		background: rgba(25,25,25,.85);
	}

	header.nav .hamburger {
		display: block;
	}

	.nav_visible .header_main .hamburger .line {
		background: #fff;
	}

	.header_main header.nav a {
		color: #fff;
	}

	.title {
		display: block;
	}

	.nav_visible .title {
		display: none;
	}

	.title:before {
		content: "";
		display: block;
		position: absolute;
		top: 15px;
		left: 18px;
		width: 100%;
		color: c5c0c0;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 140%;
		white-space: nowrap;
	}

	.page2_active .title:before {
		content: "About";
	}

	.page3_active .title:before {
		content: "Services";
	}

	.page4_active .title:before {
		content: "Reviews";
	}

	.note {
  		padding: 7% 5% 1%;
	}



	header.nav ul {
		flex-direction: column;
		-webkit-flex-direction: column;
		justify-content: center;
		-webkit-justify-content: center;
		display: block;
		width: 50%;
		/*background: red;*/
		padding: 50px 0;
		margin: auto;
		text-align: center;
		transform: translateY(-110%);
		-webkit-transform: translateY(-110%);
		-webkit-transition: all .25s ease-out;
		   -moz-transition: all .25s ease-out;
		    -ms-transition: all .25s ease-out;
		     -o-transition: all .25s ease-out;
		        transition: all .25s ease-out;
	}

	.nav_visible header.nav ul {
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}

	header.nav li {
		line-height: 2.5;
		font-size: 150%;
		padding: 0;
		margin: 0;
	}

	.services a {
		width: 100%;
	}

	.services .image_holder {
		border-radius: 12px;
	}

	.about .container > div {
		width: 100%;
	}
   
   

   .note {
      bottom: 0px;
      left: 0px;
      right: 0px;
      top:0px;
   }
   
   .note .close {
      position: relative;
      margin-bottom: 20px;
      right: 0;
      top: 0;
   }
   
   .note p {
      margin-bottom: 1.2rem;
      line-height: 1.5rem;
      font-size: 1rem;
   }



}



@media only screen 
and (max-width : 320px) {
   .note {
      font-size: 80%;
   }
   
}


