/* general
-------------------------------------------------------------------------------*/

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #cccccc; color: #000000; text-shadow: none;}
::selection {background: #cccccc; color: #000000; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #cccccc;}

ins {background-color: #cccccc; color: #000000; text-decoration: none;}
mark {background-color: #cccccc; color: #000000; font-style: italic; font-weight: bold;}

*, html {
	-webkit-text-size-adjust: 100%;
}

html, body {
	margin:0;
	padding:0;
	height:100%;
}

body, p {
	width:100%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #000000;
	text-align:center;
}

.wrapper {
	width:100%;
	max-width:1500px;
	margin:0 auto;
	padding:40px 10px 0 10px;
	min-height:100%;
}

p {line-height:150%;}

a {color:inherit;}

img {image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */}

h1 {
	font-weight:400;
	text-transform:uppercase;
	font-size:1.5em;
	margin-bottom: 1em;
	line-height:100%;
}

h2 {
	font-weight:400;
	font-size:1.25em;
	margin-bottom: 1em;
	line-height:100%;
	text-transform:uppercase;
}

h3 {
	font-weight:500;
	font-size:1em;
	margin-bottom: 0.5em;
	line-height:100%;
}

.pb1 {
	padding-bottom:1em;
}

.pb2 {
	padding-bottom:2em;
}

.bold {
		font-weight:500;
}

.button-black {
	font-weight:500;
	padding: 2px 4px 4px 4px;
	font-size: 1.25em;
	color: #ffffff;
	text-transform:uppercase;
	background-color:#000000;
	display:inline-block;
	text-decoration:none;
	border: none;
	line-height:100%;
}

.button-black:hover {
	background-color:#AEAEAE;
}

/* HEADER
-------------------------------------------------------------------------------*/

header .title {
	z-index:50; 
	position: fixed;
	text-align:left;
	top:10px;
}

header .title img {
max-height:54px;
}

header .title a:hover {
opacity:0.4;
}

header label {
	right: 10px;
	z-index:50; 
	position: fixed;
}

/* MENU
-------------------------------------------------------------------------------*/
header input {
	display: none;
}

header nav {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s ease-in-out;
	height:0;
	z-index:10;
}
 
header label {
	font-size: 1em;
}

header label:hover {
	color: #AEAEAE;
}
 
header > input:checked + nav {
	visibility:visible;
	opacity:1;
	height:100%;
	width:100%;
	background-color:#ffffff;
}

header ul {
	padding-top:50px;
}

@media only screen and (min-height: 260px) {
	header ul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	header > input:checked + nav {
	position:fixed;
	top:0;
	left:0;	
}

}

header ul li {
	padding: 1.5em 10px;
	font-size: 1em;
	text-transform:uppercase;
	display:block;
}

header ul li a {
	color: #000000;
	text-decoration:none;
}

header ul li a:hover, header ul li a.selected {
	color: #AEAEAE;
}
 
@media only screen and (min-width: 650px) {
	
	header .title {
	top:auto;
	left: 5%;
}

	header nav {
		visibility: visible;
		opacity: 1;
		height:auto;
		position:fixed;
		right:5%;
	}
	
	header > input:checked + nav {
	visibility:visible;
	opacity:1;
	height:auto;
	width:auto;
	background-color:transparent;
	top:auto;
}	
	header ul {
		position:relative;
		top:auto;
		left: auto;
		transform:none;
    padding-top: 0;
	}
	header label {
		display: none;
	}
  
    header ul li {
		padding: 0 0 8px 0;
		display:block;
		line-height:140%;
		text-align:right;
	}
}


/* FOOTER 
-------------------------------------------------------------------------------*/
footer {
	text-align:right;
	color:#AEAEAE;
	font-size:0.85em;
	margin-top: 10px;
	height: 42px;
	line-height: 42px;
	padding-right:10px;
	display:table;
	width:100%;
}

@media only screen and (min-width: 650px) {
	footer {
		padding-right:5%;
			margin-top: -42px;
}
}

/* PORTFOLIO 
-------------------------------------------------------------------------------*/
#return-to-top {
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
	width: 30px;
    height: 30px;
	display: none;
    z-index: 1000;
	background: rgba(0, 0, 0, 0.5);
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 7px;
    font-size: 12px;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.8);
}

.portfolio {
    padding: 42px 0 0 0;
}

.portfolio figure {
	display:inline-block;
	position:relative;
}

.portfolio img {
  opacity: 1;
  transition: .4s ease;
  backface-visibility: hidden;
}

.portfolio figcaption {
  color: #000000;
  transition: .4s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  text-transform:uppercase;
}

.portfolio figure:hover img {
  opacity: 0.2;
}

.portfolio figure:hover figcaption {
  opacity: 1;
}

@media only screen and (min-width: 650px) {
	
.section-9 {margin-top:4%;}
.whisky-boutique {width:29%;transform:translate(-12%,-20%);}
.tear {width:27%; transform:translate(0%,38%);}	
	
.section-1 {margin-top:16%;}
.jerrys-girl {width:39%;transform:translate(8%,0%);}
.kramerica {width:30%; transform:translate(0%,42%);}

.section-2 {margin-top:12%;}
.duke-pizza {vertical-align: top; width:19%; transform:translate(38%,0%);}
.giddiup {width:39%; transform:translate(26%,15%);}
.los-barbudos {width:24%; transform:translate(-22%,140%);}

.section-3 {margin-top:15%;}
.wall-two-80 {vertical-align: top; width:28%; transform:translate(-10%,15%);}
.white-guy-cooks-thai {width:28%; transform:translate(20%,45%);}

.section-4 {margin-top:22%;}
.copper-co-bikes {width:38%; transform:translate(-20%,0%);}

.section-5 {margin-top:6%;}
.xe54 {vertical-align: top; width:48%; transform:translate(10%,0%);}
.greenfields {vertical-align: top; width:26%; transform:translate(-25%,190%);}

.section-6 {margin-top:23%;}
.alumbra {width: 22%; transform:translate(8%,0%); z-index:1;}
.phat {width: 47%; transform:translate(4%,32%);}
.thats-house {width: 36%; transform:translate(-30%,70%);}

.section-7 {margin-top:24%;}
.dom-perignon {width: 30%;transform:translate(36%,30%);}
.grey-goose {width: 30%; transform:translate(26%,100%);}
.belvedere {width: 30%; transform:translate(-40%,-100%);}

.section-8 {margin-top:10%; margin-bottom:40%}
.other-logos {width: 18%;}
.art {width: 48%; transform:translate(5%,92%);}
}

/* ABOUT 
-------------------------------------------------------------------------------*/

.about {
padding:62px 0 0 0;
}

.about img {
width:100%;
}

.about-left {
padding: 0 0 2.5em 0;
text-align:left;
}

.about-left p{
	text-align:left;
}

@media only screen and (min-width: 850px) {
	.about-left {
	width:60%;
	padding: 0 2.5em 0 0;
	float:left;
}

	.about-right {
	width:40%;
	float:left;
	text-align:right;
	}
}

@media only screen and (min-width: 650px) {
	
	.about {
	padding: 100px calc(5% - 10px) 42px calc(5% - 10px);
	}
}

@media only screen and (min-width: 650px) and (max-width:850px), (min-width: 1200px) {
	.about {
	padding: 100px 17% 42px 17%;
	}
}

@media only screen and (min-width: 380px) {
.about-left span {
	display:block;
	text-transform:capitalize;
}
}

/* PROJECTS 
-------------------------------------------------------------------------------*/
.project-section {
	padding:42px 0 0 0;
}

.gallery-container {
	position:relative;
	padding:23px 0 0 0;
}

.description {
	position:relative;
	padding: 40px 0 20px;
	text-align:left;
}

.desc-left {
padding-bottom:40px;
}

.project-description {
padding-top:20px;
border-top:1px dotted #dedede;
width: 100%;
}

.pd-header {
	display:inline-block;
	text-decoration:underline;
	line-height:165%;
	font-size:1em;
}

.pd-header:after {
	content: "";
}

.pd-text {
	padding: 20px 0 0 0;
	display:block;
}

.pd-text p {
	text-align:left;
	padding-bottom:1em;
	font-size: 1em;
}


.project-title {
	font-size:1em;
	font-weight:500;
	display:inline;
	line-height:150%;
}

.project-nav {
	padding-top:10px;
}

.project-nav a {
	text-decoration: none;
}

@media only screen and (min-width: 650px) {
	
.gallery-container {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 139px 5px 139px;
	transition: opacity .3s ease-out;
}

.description {
    transition: padding .3s ease-out;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 5% 20px;
	background-color:#ffffff;
	font-size:0.9em;
}

.desc-left {
	width:50%;
	text-align:left;
	float:left;
	padding:0 5% 0 0;
}

.project-description {
	float:left;
	width:49.5%;
	text-align:right;
	padding-top:0;
	border-top: none;
}

.pd-header:after {
	content: " ";
	border: solid black;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 0 0 0.25em 8px;
}

.arrow-up:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.pd-text {
	display:none;
}

.pd-text p {
	text-align:justify;	
}

.pd-header {
	cursor:pointer;
	text-decoration:none;
}
}



/* SLIDER
-------------------------------------------------------------------------------*/
.slick-slider {
	height:100%;
}

.slick-list, .slick-track {
	height:100%;
}


.slick-slide img {
	margin: 0 auto;
	max-height: 100%;
	max-width:100%;
	height:auto;
}

.slick-next {
	cursor:url("../images/right-arrow.png"), default;
	right:0;

}

.slick-prev {
	cursor: url("../images/left-arrow.png"), default;
	left:0;
}

.ie .slick-next {
	cursor: url(/assets/images/right-arrow.cur), auto;
}

.ie .slick-prev {
	cursor: url(/assets/images/left-arrow.cur), auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.slick-next {
	cursor: url(/assets/images/right-arrow.cur), auto;
}

.slick-prev {
	cursor: url(/assets/images/left-arrow.cur), auto;
}
}


.slick-arrow {
    position: absolute;
    height: 100%;
    width: 50%;
    z-index: 9;
    border: 0;
    text-indent: -1000em;
    background: transparent;
	top: 0;
	outline: none;
	display:block;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slide {
	position:relative;
}

.slick-loading .slick-list {
    background: #fff url(../images/ajax-loader.gif) center center no-repeat;
}



/* FORM 
-------------------------------------------------------------------------------*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 1 !important;
	color:#000000 !important;
	font-weight:normal !important;
	font-family: 'tex_gyre_adventorregular', sans-serif;
	text-transform:uppercase;
}
::-moz-placeholder { /* Firefox 19+ */
	opacity: 1 !important;
	color:#000000 !important;
	font-weight:normal !important;
	font-family: 'tex_gyre_adventorregular', sans-serif;
	text-transform:uppercase;
}
:-ms-input-placeholder { /* IE 10+ */
	opacity: 1 !important;
	color:#000000 !important;
	font-weight:normal !important;
	font-family: 'tex_gyre_adventorregular', sans-serif;
	text-transform:uppercase;
}
:-moz-placeholder { /* Firefox 18- */
	opacity: 1 !important;
	color:#000000 !important;
	font-weight:normal !important;
	font-family: 'tex_gyre_adventorregular', sans-serif;
	text-transform:uppercase;
}

.registration-wrapper {
	max-width:280px;
	margin:0 auto;
	text-align:left;
	padding:10px 10px 20px 10px;
}

#registration-form {
	text-align:left;
	font-weight:normal;
}

#registration-form input, #registration-form select {
	font-family: 'tex_gyre_adventorregular', sans-serif;
	font-weight:normal;
	width:100%;
	padding:2px 0 2px 6px;
	margin:4px 0;
	text-transform: uppercase;
	font-size:14px;
	color:#000000;
	border: 2px solid #000000;
	-webkit-border-radius: 0;
	border-radius:0;
	background-color:#00AA4F;
}

#registration-form select {
	padding-left:3px;
}

#registration-form option {
	font-family: 'tex_gyre_adventorregular', sans-serif;
	font-weight:normal;
	text-transform: uppercase;
	color:#000000;
	font-size:14px;
}

#registration-form .form-submit {
	float: right;
	display: block;
	margin:4px auto;
}

.error {color: #000000;}

.error p {
	padding-bottom:0;
	display:block;
}

#slup7iz, #zlup7iz {
	display:none;
}

select::-ms-expand {
	display:none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../images/arrowsml.png), linear-gradient(to right, #000000, #000000);
	background-position: calc(100% - 5px) center, calc(100% - 26px) center;
	background-size: 16px 16px, 1px 100%;
	background-repeat: no-repeat;
	text-transform:uppercase;
}

select:focus {
	background-image: url(../images/arrowsml-up.png), linear-gradient(to right, #000000, #000000);
	background-position: calc(100% - 5px) center, calc(100% - 26px) center;
	background-size: 16px 16px, 1px 100%;
	background-repeat: no-repeat;
	outline: 0;
}

/* THANK YOU, ERROR PAGES 
-------------------------------------------------------------------------------*/

.main {
	padding: 40px 0 60px 0;
}

.main .logo {
	width:80%;
	max-width: 900px;
	margin: 0 auto;
	padding:60px 0;
}

