/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700');

html, body {	
  width:100%;
  height:100%;
}

body {
	background: #FFF;
	overflow-x: hidden;
	margin:0;
	padding:0;
	position: relative;
}

html, body, button, input, select, textarea, 
.pure-g [class *= "pure-u"] {
    font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	/*
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    */
    text-rendering: optimizeLegibility; 
	-webkit-font-smoothing: antialiased;
}

html, button, input, select, textarea {
	color: #000;
}

input, select, textarea {
	outline: none !important;
}

.page-width {
	width: 1000px;
	max-width:92%;
	margin: 0 auto;
}

.page-width-full {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.page-width-bleed {
	max-width: 100%;
	margin: 0 auto;
}

/* UTILITY */

.vertical-center {
	display: table;
	width: 100%;
	height: 100%;
}

.vertical-center-cell {
	display: table-cell;
	vertical-align: middle;
}

img.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}

.height-100 {
	height: 100%;
	box-sizing: border-box;
}

/* CORE TYPOGRAPHY */

h1,h2,h3 {
	font-size: 28px;
	font-weight: normal;
	margin:0;
	padding: 0 0 25px 0;
}

h1 a, h2 a, h3 a, h4 a {
	
}

p {
	margin: 0;
	padding: 0 0 23px 0;
	line-height: 1.2em;
}

a {
	color: #000;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

a:hover {
	color: #ff2a00;
}

.text-center {
	text-align: center;
}

/* BACKGROUNDS */

/* BUTTONS */


/* BORDERS AND SPACERS */


/* HEADER */

.header {
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 10000;
	transition: all 0.4s ease-in;
	position: absolute;
	top:0;
	right:0;
	left:0;
}

.header-height {
	min-height: 110px;
}

.header .logo img {
	width: 155px;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.header .about,
.header .projects {
	font-size: 12px;
}

.header .about a.first {
	padding-right: 100px;
}

@media(max-width:580px){
	.header .about a.first {
		padding-right: 0;
		display: block;
	}
}


.header .about a:hover,
.header .projects a:hover {
	text-decoration: none;
}

.header .projects {
	text-align: right;
}

/* FOOTER */

.footer-height {
	min-height: 30px;
}

.footer {
	position: fixed;
	bottom: 0;
	left:0; 
	right: 0;
}

.footer-text {
	font-size: 10px;
	text-align: center;
}

.footer-text .credit {
	display: none;
}

.page-template-page-about .footer-text .credit {
	display: inline;
}

.footer-text p {
	margin:0;
	padding: 0 0 10px 0;
}

.footer-text p a {
	text-decoration: none;
}


/* CONTENT AREA */

.page-content {
	padding-top: 0;
	padding-bottom: 0;
	background:#FFF;
}

.page-content img {
	max-width: 100% !important;
	height: auto !important;
}

.page-content a {
	border-bottom: #ff2a00 solid 2px;
	text-decoration: none;
}

.page-content a:hover {
	border-bottom: none;
	color: #ff2a00;
}

/* HOME PAGE PARALLAX */

.parallax__layer,
.parallax__layer .page-width,
.parallax__layer .container-fluid,
.parallax__layer .row
.parallax__layer .row > div {
	pointer-events:none;
}

.home-image a {
	pointer-events: all;
	background: #000;
	position: relative;
	display: block;
}

.home-image img,
.home-image a img {
	width: 100%;
	height: auto;
	transition: all 0.5s ease-in-out;
}

.home-image a span {
	opacity: 0;
	position: absolute;
	top:50%;
	right:0;
	bottom: 0;
	left:0;
	text-align: center;
	margin-top:-0.5em;
	transition: all 0.5s ease-in-out;
	color: #FFF;
}

.home-image a.hovered img,
.home-image a:hover img {
	opacity: 0.2;
}

.home-image a.hovered span,
.home-image a:hover span {
	opacity: 1;
	color: #FFF;
}

.parallax__layer--back .gap-before-small {
	margin-top: 250px;
}
.parallax__layer--back .gap-before-medium {
	margin-top: 500px;
}
.parallax__layer--back .gap-before-large {
	margin-top: 750px;
}

.parallax__layer--back .gap-after-small {
	margin-bottom: 250px;
}
.parallax__layer--back .gap-after-medium {
	margin-bottom: 500px;
}
.parallax__layer--back .gap-after-large {
	margin-bottom: 750px;
}

.parallax__layer--left .gap-before-small {
	margin-top: 300px;
}
.parallax__layer--left .gap-before-medium {
	margin-top: 450px;
}
.parallax__layer--left .gap-before-large {
	margin-top: 600px;
}

.parallax__layer--left .gap-after-small {
	margin-bottom: 300px;
}
.parallax__layer--left .gap-after-medium {
	margin-bottom: 450px;
}
.parallax__layer--left .gap-after-large {
	margin-bottom: 600px;
}

.parallax__layer--right .gap-before-small {
	margin-top: 150px;
}
.parallax__layer--right .gap-before-medium {
	margin-top: 300px;
}
.parallax__layer--right .gap-before-large {
	margin-top: 450px;
}

.parallax__layer--right .gap-after-small {
	margin-bottom: 150px;
}
.parallax__layer--right .gap-after-medium {
	margin-bottom: 300px;
}
.parallax__layer--right .gap-after-large {
	margin-bottom: 450px;
}
	
		/* Parallax base styles
  --------------------------------------------- */

  .parallax {
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateZ(0px);
	-webkit-transform: translate3d(0,0,0);
    -webkit-perspective: 300px;
    perspective: 300px;
    position: absolute;
    top:0;
    right:0;
    left:0;
  }

  .parallax__group {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .parallax__layer {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .parallax__layer--fore {
    -webkit-transform: translateZ(90px) scale(.7);
    transform: translateZ(90px) scale(.7);
    z-index: 1;
  }

  .parallax__layer--base {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 5;
  }

  .parallax__layer--back {
    -webkit-transform: translateZ(-300px) scale(2);
    transform: translateZ(-300px) scale(2);
    z-index: 3;
    text-align: center;
  }

  .parallax__layer--deep {
    -webkit-transform: translateZ(-600px) scale(3);
    transform: translateZ(-600px) scale(3);
    z-index: 2;
  }
 



  /* style the groups
  --------------------------------------------- */

  #group1 {
    z-index: 5; /* slide over group 2 */
  }

/* ABOUT */

.instagram {
	text-align: center;
	font-size: 48px;
}

.instagram a {
	border: none;
	color: #000;
}

.instagram a:hover {
	color: #ff2a00;
}

/* PROJECTS LIST */

.projects-list {
	text-align: center;
}

.projects-list h2 {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin:0;
	padding:0;
}

.projects-list ul {
	list-style: none;
	margin: 0 0 23px 0;
	padding:0;
}

.projects-list ul li {
	list-style: none;
	margin: 0;
	padding:0;
}

.projects-list ul li a {
	text-decoration: none;
	border: none;
}

.projects-list ul li a:hover {
	text-decoration: none;
	border: none;
}

.project-thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.project-thumb.position-2 {
	margin-top: 10vh;
}

.project-thumb.position-3 {
	margin-top: 20vh;
}

.project-thumb.position-5 {
	margin-top: 10vh;
}

.project-thumb.position-6 {
	margin-top: 25vh;
}

/* SINGLE PROJECT */

.project-title {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
}

.project-image img {
	display: block;
	width: 100%;
	height: auto;
}

.project-image-pad-top-small {
	padding-top: 60px;
}

.project-image-pad-top-medium {
	padding-top: 120px;
}

.project-image-pad-top-large {
	padding-top: 180px;
}

/* FORMS */

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #000;
	opacity:  1;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
:-moz-placeholder { /* Firefox 18- */
	color: #000;
	opacity: 1;
}

/* SLICK FIXES */

.slick-initialized .slick-slide {
	outline: none;
}

/* SECTIONS */



/* FANCYBOX */

@media screen and (min-width: 800px){
	.chasbain-vid .fancybox-content {
	  max-width: 75%;
	  max-height: 80%;
	}
}

/* PROJECT PAGE */

/* WOOCOMMERCE - GENERAL */

.woocommerce-message {
	border-top-color: #ff2a00;
}

.woocommerce-message::before {
	color: #ff2a00;
}

.tm-shop-title h1 {
	text-align: center;
	font-size: 18px;
	margin: 0 0 50px 0;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #000;
    color: #fff;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    border-radius: 0;
    font-size: 14px;
    width: 225px;
    max-width: 100%;
    padding: 11px 17px;
    text-align: left;
    position: relative;
}

.woocommerce #respond input#submit.alt:after, .woocommerce a.button.alt:after, .woocommerce button.button.alt:after, .woocommerce input.button.alt:after {
	content:'>';
	display: inline-block;
	position: absolute;
	top:10px;
	right:10px;
	font-weight: 400;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
	background: #ff2a00;
}

/* WOOCOMMERCE - PRODUCT */

.woocommerce div.product .product_title {
	font-size: 18px;
	font-weight: 600;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
	font-size: 18px;
	color: #000;
}

.tm-product-description {
	font-size: 14px;
}

.variations select {
	border-radius: 0;
    font-size: 14px;
    width: 225px !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 7px 12px !important;
}

.tm-additional-images {
	margin-left: -10px;
	margin-right:-10px;
	margin-top:20px;
}

.tm-additional-images > div {
	width: 25%;
	display: inline-block;
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 12px;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	width: 49%;
}



.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width: 49%;
}

@media (max-width:767px){
	
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	width: 100%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width: 100%;
}
}

/* WOOCOMMERCE - CATEGORY */

.product-list .product {
	text-align: center;
	padding-bottom: 30px !important;
}
.product-list .product a {
	text-decoration: none !important;
}
.product-list .product .add_to_cart_button {
	display: none;
}

.product-list .product h2 {
	font-size: 12px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.product-list .product span.price {
	font-size: 12px !important;
	color: #000 !important;
	text-decoration: none;
	display: block;
}


/* WORDPRESS IMAGE ALIGNMENTS */

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

/* GRID ADJUST */

.cell-pad-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.cell-pad-15 {
	padding-left: 15px;
	padding-right: 15px;
}

.has-gutters-10 {
	margin-left: -10px;
	margin-right: -10px;
}

.has-gutters-15 {
	margin-left: -15px;
	margin-right: -15px;
}

.cell-margin-15 {
	margin-left: 15px;
	margin-right: 15px;
}

/* RESPONSIVE */



/* pure-lg */

@media screen and (min-width:64em) and (max-width:79.938em) {
	
	
	
}


/* pure-md */

@media screen and (min-width:48em) and (max-width:63.938em) {
	
	
	
}


/* pure-sm-xs */
@media screen and (max-width:767px) {
	
	/*
		-webkit-overflow-scrolling: touch !important;
		https://stackoverflow.com/questions/30386301/webkit-overflow-scrolling-touch-breaks-css-3d-perspective
		*/
	

	
	.hide-mobile {
		display: none !important;
	}
	
}


