/*!
Theme Name: Aesthetics
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aesthetics
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.


Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

blockquote, q {
	quotes: "" "";
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
	outline:none;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	outline: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 800px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
    margin: 1.5% auto;

}

.gallery-columns-2 .gallery-item {
    max-width: 48.5%;
}

.gallery-columns-3 .gallery-item {
	max-width: 31.83%;
}

.gallery-columns-4 .gallery-item {
	max-width: 23.875%;
}

.gallery-columns-5 .gallery-item {
	max-width: 18.5%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Site Styling */

@font-face {
    font-family: 'Camila-BlackIt';
    src: url('css/Camila-BlackIt.woff2') format('woff2'),
 		 url('css/Camila-BlackIt.woff') format('woff'),
 		 url('css/Camila-BlackIt.ttf') format('truetype'),
		 url('css/camila-bold-webfont.woff2') format('woff2'),
         url('css/camila-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'camila-boldbold';
    src: url('css/camila-bold-webfont.woff2') format('woff2'),
         url('css/camila-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro-Light';
    src: url('css/DINPro-Light.woff2') format('woff2'),
 		 url('css/DINPro-Light.woff') format('woff'),
 		 url('css/DINPro-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url('css/PlayfairDisplay-Regular.woff2') format('woff2'),
 		 url('css/PlayfairDisplay-Regular.woff') format('woff'),
 		 url('css/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Italic';
    src: url('css/PlayfairDisplay-Italic.woff2') format('woff2'),
 		 url('css/PlayfairDisplay-Italic.woff') format('woff'),
 		 url('css/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*{  padding:0; 
    margin:0;
}
@font-face {
  font-family: 'Camila-BlackIt';
  src: url('css/Camila-BlackIt.eot');
  src: url('css/Camila-BlackIt.svg#Camila-BlackIt') format('svg'),
       url('css/Camila-BlackIt.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}


* a{
	text-decoration:none;
}
.wrapper{
    max-width:1140px; 
    margin:0 auto; 
    overflow:hidden;
    width: 95%;
}

p{  font-family: "Baskerville Old Face"; text-align: center; font-size:19px; color:#444444; margin-bottom: 45px; line-height: 25.7px; }
h1{ font-family: "camila-boldbold", serif; font-size:77px; color:#000000; text-align: center; font-weight:lighter; }
h2{ font-family: "Camila-BlackIt", serif; font-size:38px; color:#444444; margin-bottom: 45px; text-align: center;font-weight:lighter; }
h3{ color:#ffffff; font-family: "camila-boldbold", serif; font-size:27px; margin-bottom: 12px; border-bottom: 1px solid; text-align: center;font-weight:lighter;}
h4{ font-family: "Camila-BlackIt", serif; font-size:27px; color:#444444; margin-bottom: 12px; border-bottom: 1px solid; text-align: center;font-weight:lighter; }
.vampblack p, .projectdescription p{  font-family: "PlayfairDisplay-Italic"!important;}


.colour-divider{
    width: 100%;
    margin-bottom: 125px;
    position: relative;
    display: block;
}

.colour-divider img{
    width: 100%;
}
	.about-divider-desktop{ display:block;}
	.about-divider-mobile{ display:none;}



.nav{ z-index:9999; position:fixed; top:0; transition: all 0.35s ease-in-out; -webkit-transition: all 0.35s ease-in-out;	}
#masthead{ margin-bottom:100px;}
.home #masthead{ margin-bottom:0px;}
.nav{ display:inline-block; width:100%;}
.nav-content{
    width: 90%;
    margin: 0 auto;
}

.logo{
    float: left;
    display: block;
}

.mobile-logo{
    width: 100%;
    display: none;
}

.logo img{
    height:60px; 
    margin-top:20px;
}

.mobile-logo img{
    height:60px; 
    margin-top:20px;
}

.desktop-menu{
    float: right;
    display: block;
    width: 100%;
}

.desktop-menu ul{
    list-style: none;
    height: 100px;
    padding: 0;
    margin: 0;
}

.desktop-menu ul li{
    height: 100px;
    float: left;
    color: #fff;
	margin: 0px 3.5px;
}

.menu-item{
    min-width: 120px;
}

.desktop-menu ul li h3{
    border: none;
    color: #fff;
}

.desktop-menu ul li a h3{
    text-decoration: none;
    padding-top: 33px;
}

.desktop-menu ul li a h3:hover{
    padding-bottom: 2px;
    border-bottom: solid 1px #fff;
}

.desktop-menu ul li img{
    margin-top: 27.5px;
	height:45px;
}





#view-code{
  color:#4183d7; 
  font-size:13px;
  text-transform:uppercase;
  font-weight:700;
  text-decoration:none;
  position:absolute;top:640px; left:50%;margin-left:-35px;
}
div.screen{
	width:320px;
	height:560px;	
	overflow:hidden;
	position:absolute; 
	top:50px; 
	left:50%;
  margin-left:-160px;
	background:#31558a;
}

.list{margin-top:36px; text-align:left;}
.item{
	height:115px;
	margin-top:30px 0;
	padding-left:115px;
	clear:both;
}
.item .img, .item span{background:#214273; border-radius:3px;}
.item .img{float:left; width:71px; height:71px; margin-left:-93px;}
.item span{height:11px; width:180px; margin-bottom:19px; float:left;}
.item span:nth-of-type(3){width:75px; margin-botom:0;}

div.burger {
	height: 30px; 
	width: 40px;
	cursor: pointer;
    display: block;
    position: static;
}
	div.x,
	div.y,
	div.z {
		position: absolute; margin: auto;
		top: 0px; bottom: 0px;		
		background: #fff;
		border-radius:2px;
		-webkit-transition: all 200ms ease-out;
		   -moz-transition: all 200ms ease-out;
		    -ms-transition: all 200ms ease-out;
		     -o-transition: all 200ms ease-out;
		        transition: all 200ms ease-out;
	}		
	div.x, div.y, div.z { height: 3px; width: 26px; }
	div.y{top: 18px;}
	div.z{top: 37px;}
	div.collapse{
		top: 20px;
		background:#000000;
		-webkit-transition: all 70ms ease-out;
		   -moz-transition: all 70ms ease-out;
		    -ms-transition: all 70ms ease-out;
		     -o-transition: all 70ms ease-out;
		        transition: all 70ms ease-out;
	}
	 
	
	div.rotate30{
		-ms-transform: rotate(30deg); 
    	-webkit-transform: rotate(30deg); 
	    transform: rotate(30deg);	
		-webkit-transition: all 50ms ease-out;
		   -moz-transition: all 50ms ease-out;
		    -ms-transition: all 50ms ease-out;
		     -o-transition: all 50ms ease-out;
		        transition: all 50ms ease-out;					
	}
	div.rotate150{
		-ms-transform: rotate(150deg); 
    	-webkit-transform: rotate(150deg); 
	    transform: rotate(150deg);	
		-webkit-transition: all 50ms ease-out;
		   -moz-transition: all 50ms ease-out;
		    -ms-transition: all 50ms ease-out;
		     -o-transition: all 50ms ease-out;
		        transition: all 50ms ease-out;					
	}
	
	div.rotate45{
		-ms-transform: rotate(45deg); 
    	-webkit-transform: rotate(45deg); 
	    transform: rotate(45deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
	}
	div.rotate135{
		-ms-transform: rotate(135deg); 
    	-webkit-transform: rotate(135deg); 
	    transform: rotate(135deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
	}

div.navbar{height:73px;background:#385e97;}

div.circle{	
	width: 0px;
	height: 0px; 
	position:absolute;
	left: .1px;
	background:#fff;
	opacity:1;
	-webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);	
}
div.circle.expand{
	width:100%;
	height:1500px;
	-webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);					
	
}
div.menu {
	height: 568px; 
	width: 100%;
	position: absolute;
	top: 0px; left: 0px;
}
div.menu ul li {
	list-style: none;
	position:absolute;
	top:50px;;
	left:0;
	opacity:0;
	width:100%;
	text-align:center;
	font-size:0px;
	-webkit-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
.menu ul li a {
	color:#000000;
	font-family: "Camila", serif; font-size:27px; margin-bottom: 12px; border-bottom: 1px solid; text-align: center; font-weight: normal;		
}

div.menu li.animate{
	font-size:21px;
	opacity:1;
	-webkit-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu li.animate:nth-of-type(1){	
	top:120px;
	transition-delay: 0.0s;	
}
div.menu li.animate:nth-of-type(2){
	top:190px;
	transition-delay: 0.03s;	
			
}
div.menu li.animate:nth-of-type(3){
	top:260px;
	transition-delay: 0.06s;		
	
}
div.menu li.animate:nth-of-type(4){
	top:330px;
	transition-delay: 0.09s;		
	
}
div.menu li.animate:nth-of-type(5){
	top:400px;
	transition-delay: 0.12s;		
	
}
div.menu li.animate:nth-of-type(6){
	top:470px;
	transition-delay: 0.15s;	
			
}


.blog-half-left{
    width: 48%;
    float: left;
}

.blog-half-right{
    width: 48%;
    float: right;
}

.blog-half-left h2{
    text-align: left;
}

.blog-half-right h2{
    text-align: left;
}

.blog-half-left p{
    text-align: left;
}

.blog-half-right p{
    text-align: left;
}


.socials{
    margin-left: 30px;
}

.hero{
    width: 100%;
    padding-top: 100px;
    background-image: url(images/bg-img.jpg);
    background-size: cover;
}

.header{
    width: 100%;
    height: 300px;
    display: block;
}

.header h1{
    border-right:solid;
    float: left;
    margin-top: 75px;
    padding-right: 50px;
    line-height: 150px;
	clear:none;
}

.header h2{
    float: left;
    line-height: 40px;
    margin-top: 130px;
    margin-bottom: 0;
    margin-left: 50px;
	clear:none;

}



	
.divider{
    height: 1.5px;
    width: 100%;
    margin: 125px auto;
    background-color: #444444;
}

.thinkerdivider {
    margin-top: 30px!important;
    margin-bottom: 75px!important;
}

.content{
    width:90%;
    max-width: 660px;
    margin: 0 auto;
}

.color-link{
    display: table;
    margin: 0 auto;
    border-bottom: 1.5px solid;
    padding-bottom: 3px;
}

.con-col-one{
    width: 29%;
    float: left;
}

.con-col-two{
    width: 29%;
    margin: 0 6.5%;
    float: left;
}

.con-col-three{
    width: 29%;
    float: right;
}

.footer{
    height: 300px;
    background-color: #000000;
}
.footerinstagram{margin-top: 8%;margin-bottom: -7px;}
.footer-content{
    text-align: center;
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    padding-top: 63px;
}

.footer-content p{
    color: #fff;
}


.pace-inactive {
    display: none;
    POSITION: FIXED;
    TOP: 0;
    WIDTH: 100%;
}

.home #masthead .colour-divider{ margin:0 auto;}
.featureheading {  margin: 0px; position: relative; color:#000; font-size: 74px; font-family: 'Camila-BlackIt'!important; font-weight:lighter;line-height: initial; }
.vampblack,.theteam{ background-color:#000; padding:4.5% 0; margin-bottom:4.688%; overflow:hidden; }
.vampblack .featureheading, .theteam .featureheading { margin-bottom: 20px;}
.vampblack *,.theteam *{ color:#fff!important;}
.featureddescription,.featureddescription *{ font-size:19px!important; color:#000; font-family: 'PlayfairDisplay-Italic';}
.home .featureddescription{ margin-bottom:60px; }
.initialposts{ position:relative;}
.initialposts .initialpost, .alm-reveal li,.nextposts{ float:left; width:25%;}
.initialposts .initialpost:nth-child(1) { width:100%;}
.initialposts .initialpost:nth-child(2), .initialposts .initialpost:nth-child(3){ width:50%; display:inline-block;}
.initialpost h2, .initialpost h3{ text-align: left; line-height: 40px; margin:0 auto; font-weight: lighter; margin-bottom: 15px; font-size: 30px; }
.blogcontent h2, .initialpost:nth-child(1) h2 {  margin: 0px;  bottom: 60px;  position: relative;  left: 20px;  font-size: 60px;  float: left; color:#fff; font-weight: lighter; line-height: 45%; }
.nextpostfeaturedimage h2{ text-align: left; line-height: 40px;  font-weight: lighter; font-family: "Camila-BlackIt"; text-align: left;  font-size: 23px; color: #444444;}
.exploreourminds h2{ margin-bottom:70px;}
.ajaxpostimage,.nextpostimage { width: 100%; padding: 24.427%; margin: 0 auto!important; background-size: cover; background-position: center center; }
.nextpostimage{padding: 30% 43.427%!important;}
.alm-listing li{ padding:0; margin:0 auto;}
.alm-listing li p{ text-align:left; line-height:40px; font-weight: lighter; font-family: "Camila-BlackIt", serif;}
.initialpost:nth-child(1) .postwrapper{ width: 97.5%;}
.initialpost:nth-child(2) .postwrapper, .initialpost:nth-child(3) .postwrapper { width: 95%;}
.postwrapper { width: 90%; margin:0 auto;}
.done#load-more { display: none; }
.blogcontent .entry-content *, .nextpostfeaturedimage *{ text-align:left;}
.blogcontent .entry-content p{ text-align:left; line-height:normal; margin-bottom:20px; font-size:22px;}
.blogexcerpt *{ font-size:42px!important;}
h3.blogauthor { color: #000; padding-bottom: 50px; font-family: "Camila-BlackIt"; }
.home .projectsunderlines { margin: 60px auto; }
.projectsunderlines { text-align: center; display: inline-block; margin-top: 60px ; width: 100%; }
.nextpostsheader{font-family: 'camila-boldbold'; color:#b78400; clear:both; text-align:center; display:block; width:100%; font-size:27.4px; margin:60px auto; }
.seemoreprojects{font-family: 'camila-boldbold'; color:#b78400; clear:both; text-align:center; display: inline; border-bottom: 1px solid; padding-bottom: 10px; width:100%; font-size:27.4px; }
.nextpostfeaturedimage h2{ margin-bottom:0;}
.menu-toggle { border: 0px; border-color: transparent!important; border-radius: 0; background: url(images/menu-icon.svg); box-shadow: none!important; padding: 0!important; width: 35px; height: 30px; background-size: 34px; background-repeat: no-repeat; outline: none; float: right; margin: 35px 0; }
.mobilesocialicons{ display:none;}
.mobilesocialicons a { width: 60px; display: inline-block; }
.clear{ clear:both;}
.desktop-menu ul{ float:right;}
.mobilehomelink{ display:none;}
.headerimage { margin: 10% auto!important; background-repeat: no-repeat; padding: 20%; background-size: 100%; background-position: center;}
.ajax-load-more-wrap.blue button.alm-load-more-btn { border: 0; background: 0; color: #b88400; border-color: #b88400; display: table; margin: 0 auto; border-bottom: 1.5px solid; padding-bottom: 3px; font-family: "camila-boldbold", serif; font-size: 22px;border-radius:0;}
.ajax-load-more-wrap.blue button.alm-load-more-btn:hover{ background-color:transparent!important;  text-shadow:none; box-shadow:none;}
.ajax-load-more-wrap{ clear:both!important; }

.businessinfo { position: relative; width: 100%; }
.businessinfo .left { float: left; display: inline-block; width:50%; border-right: 1px solid; padding-right: 30px; }
.businessinfo .right { float: right; display: inline-block; width:50%; border-left: 1px solid; padding-left: 30px; }
.businessinfo .left p{ text-align:right; }
.businessinfo .right p{ text-align:left; }

.businessinfo * { color: #fff; }
.con-col-two .divider { margin: 45px auto; }
/*************** Staff Styling ***************/
.stafflist{ text-align:center; max-width:1280px; margin:0 auto;}
.staff{ display:inline-block; overflow:hidden; width:30%;}
.staffimage { padding: 67% 50%; margin: 0 auto!important; background-size:  auto 100%; background-position: center center; position: relative; background-repeat: no-repeat;}
.staffbar { position: absolute; width: 100%; margin: 0 auto; left: 0; right: 0; bottom: 5%; background-color: rgba(0, 0, 0, 0.6);  padding: 20px;}
.staffbar h2 { font-family: "camila-boldbold"; margin-bottom: 0; font-size: 40px; }
.staffposition { font-family: 'DINPro-Light'; text-align: center; font-size: 28px; }


/*************** Portfolio Styling ***************/
.ajaxprojectimage{background-blend-mode: multiply; width: 100%; padding: 66.926% 0; margin: 0 auto!important; background-size: cover; background-position: center center; position: relative; background-repeat: no-repeat;}
.colourblock{position: absolute; height: 100%; width: 100%; top: 0;}
.darkcolourblock{ position: absolute; top: 5%; left: 5%;  width:90%; height:90%; background-color:rgba(0,0,0,.6)}
.initialproject { width: 33.3333%; display: inline-block; float:left;}
.projectwrapper { width: 91.56%; margin:0 auto; margin-bottom: 8.44%;}
.companylogo{ width: 100%; height: 100%; background-repeat: no-repeat; background-size: 50% auto; background-position: center; filter: brightness(0) invert(1);}
.projectwrapping{ margin:0 auto; text-align:center; }
.moreprojectswrapper .alm-reveal li{ width:33.3333%;}
.projectcontent h2 {  margin: 0px; position: relative; color:#000; top: 20px;  font-size: 74px;  float: left;  font-family: 'Camila-BlackIt'!important; font-weight:lighter;line-height: initial; margin-bottom: 20px; }

.home .projectwrapping{ width:90%;}
.projectwrapper { width: 91.56%; margin:0 auto; margin-bottom: 8.44%;}
.home .initialproject { width: 25%; display: inline-block; float:left;}


.projectcontent .entry-content * { text-align:left;}
.projectcontent .entry-content p{ text-align:left; line-height:normal; margin-bottom:20px; font-size:22px;}
.jobname *{ font-size:38px!important; color:#000; }
.projectdescription *{ font-size:19px!important; color:#000; font-family: 'PlayfairDisplay-Italic';  }
.gallery-icon { width: 100%; }
.gallery-item * { text-align: center!important; }

.gallery-columns-2 	.gallery-item:nth-child(2n+1){ margin-left:3%;}
.gallery-columns-3 .gallery-item:nth-child(3n){ margin:1.5% 2.25%;}

.gallery-columns-4 .gallery-item:nth-child(4n-1){ margin-left:1.5%; margin-right:0.75%;}
.gallery-columns-4 .gallery-item:nth-child(4n){ margin-right:1.5%; margin-left:0.75%;}

.gallery-columns-5 .gallery-item:nth-child(5n){ margin-right:1.875%; margin-left:0.9375%;}
.gallery-columns-5 .gallery-item{margin: 0.9375% auto;}
.gallery-columns-5 .gallery-item:nth-child(5n-1){ margin:0.9375%;}
.gallery-columns-5 .gallery-item:nth-child(5n-2){ margin-left:1.875%; margin-right:0.9375%;}

.gallery-item:nth-child(1){ margin:0 auto 1.5% auto!important; max-width: 100%!important;}
.gallery-item:nth-child(1) .gallery-icon{ width: 100%!important;}
.gallery-item:nth-child(1) .projectgalleryimage{ padding: 25%!important;}

figure.gallery-item { vertical-align: top;  position: relative; }
.projectgalleryimage { padding:50%; background-repeat: no-repeat; background-size: cover; background-position: center; }
.taglist { margin: 30px auto;}
.projecttags { display: inline-block; width: 23.5%; font-family: 'Camila-BlackIt'!important; text-align: center!important; font-size: 25px; background-color: #B78400; color: #fff; text-transform: capitalize; padding:10px; margin-top: 2%;}
.tagrow .projecttags:nth-child(2){ margin-left: 2% ;margin-right: 1%;}
.tagrow .projecttags:nth-child(3){ margin-left: 1% ;margin-right: 2%;}
.exploreourminds .nextposts{ clear:none!important;}

@media(max-width:1860px){
	.staffbar h2{ font-size: 45px;}
	.staffposition{ font-size: 25px;}
}

@media(max-width:1860px){
	.staffbar h2{ font-size: 38px;}
	.staffposition{ font-size: 20px;}
}

@media(max-width:1860px){
	.staffbar h2{ font-size: 35px;}
}

@media(max-width:1220px){
	.header{ text-align:center;}
    .header h1{
    border-right: none;
    border-bottom: solid;
    margin: 0 10%;
    width: 80%;
    line-height: 150px;
    text-align: center;
	clear:none;
	padding:0;
}

.header h2{
	float:none;
    line-height: 38px;
    margin-top: 30px;
    margin-bottom: 40px;
	clear:none;
	padding:0;
	margin-left:0;
	display:inline-block;
}
}
@media(max-width:1200px){
    .divider{
        width: 85%;
    }
    
    .blog-half-left h2{
        min-height: 80px;
    }
    
    .blog-half-right h2{
        min-height: 80px;
    }
}
@media(max-width:1080px){
	.staffbar h2{ font-size: 24px;}
	.staffposition{ font-size: 18px;}
}
@media(max-width:1070px){
    .con-col-one{
        width: 80%;
        float: none;
        clear: both;
        margin: 0 auto;
    }

    .con-col-two{
        margin: 90px auto;
        width: 80%;
        float: none;
        clear: both;
    }

    .con-col-three{
        width: 80%;
        float: none;
        clear: both;
        margin: 0 auto;
    }
}

@media(max-width:1000px){
    .socials{ margin-left: 10px; }
    .menu-item{ min-width: 100px; }
	.initialpost h2, .initialpost h3, .alm-listing li p { font-size: 20px; line-height: 20px; margin-top: 10px; margin-bottom: 15px; }
	.logo { display: none; float: left; padding-right: 0; }
    .mobile-logo{ display: block; max-width: 70px; float:left; }

}

@media(max-width:860px){
	.blogcontent h2, .initialpost:nth-child(1) h2 { bottom: 0; line-height: 60px; font-size: 30px!important; color: #000; text-align: center; left: 0; width: 100%; }
}

@media(max-width:810px){
.colour-divider{ margin-bottom:62.5px;}
p{ font-size:18px; }
h1{  font-size:67px; }
h2{ font-size:30px;  }
h3{ font-size:22px; }
h4{ font-size:22px; }
p, h1, h2, h3, h4{ margin-bottom:25px;}
.divider{ margin:50px auto;}
.hentry{ margin:0 auto;}
.thinkerdivider{ margin-top:0!important; margin-bottom:35px!important;}
}
@media(max-width:799px){
	.desktop-menu { display: inline; width: 100%;}
	.desktop-menu ul li { width: 100%;}
	.socials{ display:none;}
	.mobilesocialicons { text-align: center; }
	.desktop-menu ul{ float:none!important;}
	.mobilehomelink{ display:block;}
	.nav{ background-color:#000!important;}
	.toggled .mobilesocialicons{ display:block;}
	.projecttags { width: 50%!important; margin: 0 auto!important; border: 5px solid; }
	.initialproject { width: 50%!important;}
	.staff{ width:90%; margin:10px auto!important;}	
	.staffbar h2{ font-size: 38px;}
	.staffposition{ font-size: 25px;}
	.featureheading { font-size: 60px;}
	.vampblack h2,.vampblack h2 b { font-size: 25px; }
	.vampblack *, .theteam * { font-size: 15px; line-height: inherit; }
	.featureddescription { font-size: 16px!important; line-height: normal; }
	.home .featureddescription{ margin-bottom:40px;}
	.home .projectsunderlines { margin: 10px auto 50px auto; }
	.aboutfiveimage{ margin-bottom:30px!important;}
}

@media(max-width:679px){
	.about-divider-desktop{ display:none;}
	.about-divider-mobile{ display:block;}
	.header h2{ float: left; }
	.initialposts .initialpost, .alm-reveal li, .nextposts{ width:50%; text-align:center;}
	.featuredimage h2,.alm-listing li p{ text-align:center; font-size:22px;}
	.projectcontent h2{ line-height: initial; font-size: 55px; top: 10px;}
	.header{ height:250px;}
	.initialpost:nth-child(even) { clear: left; }
	.nextposts:nth-child(odd) { clear: left; }
}

@media(max-width:610px){
    .blog-half-left{
        width: 85%;
        margin: 0 7.25%;
        float: left;
        clear: both;
    }

    .blog-half-right{
        width: 85%;
        margin: 0 7.25%;
        float: left;
        clear: both;
    }
    
    .blog-half-left img{
        max-height: 180px; 
    }
    
    .blog-half-right img{
        max-height: 180px; 
    }
    
    .blog-half-left h2{
        min-height: 40px;
    }
    
    .blog-half-right h2{
        min-height: 40px;
    }
	.blogexcerpt * { font-size: 26px!important; }
	.blogcontent .entry-content p{font-size: 18px; }
	.nextpostsheader{    margin: 30px auto;}
	.blogauthor{ margin:0;}
	.nextpostimage { padding: 30%!important; }
	.nextpostfeaturedimage h2{ text-align:center;}
	.featureheading { font-size: 45px; margin-bottom:10px;}
	.projectwrapping { margin-top: 30px!important;}
	.projecttags{ width:100%!important;}
}


@media(max-width:500px){
    .logo{ display: none;  }
    .featuredimage{ width:100%;}
	.initialposts .initialpost, .alm-reveal li, .nextposts{ width:100%!important; }
	.businessinfo .left, .businessinfo .right{ width:100%; border-left:0; border-right:0; padding:5px 0; margin:5px 0;}
	.businessinfo .left p, .businessinfo .right p{ text-align:center;}
	.businessinfo .left{ border-bottom:2px solid; padding-bottom:15px;}
	.footer { height: 395px;}
	.exploreourminds h2{ margin-bottom:30px;}
}

@media(max-width:400px){
	.staffbar h2{ font-size: 30px;}
	.staffposition{ font-size: 20px;}
	}
