/* =CSS Reset
--------------------------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;
}
/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article, section, figure, hgroup { display: block; }  
html{min-height: 100%}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
   img,object,embed {max-width: 100%;}

   /* force a vertical scrollbar to prevent a jumpy page */

/* we use a lot of ULs that aren't bulleted. 
don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

/* Accessible focus treatment people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active, a:focus {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* Micro Clearfix Hack */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.cf:after { clear: both; }  
.cf { zoom: 1; }  

/* End CSS Reset
--------------------------------------------------------------------------------------------------*/


/* =Basic CSS
--------------------------------------------------------------------------------------------------*/
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;  
}

html.loading {
	overflow: hidden;
}

/* we like off-black for text */
body, select, input, textarea {color: #333;}

/*link colors*/
a {color: #03f;}
a:hover {color: #69f;}

.wrapper {
	max-width: 1920px;
	margin: 0 auto;
}

.page-loader {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	z-index: 99999;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0px 0px -30px;
	width: 60px;
	height: 60px;
	background-color: #b0b0a4;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% { -webkit-transform: perspective(120px) }
	50% { -webkit-transform: perspective(120px) rotateY(180deg) }
	100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
	0% { 
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
		} 50% { 
			transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
			-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
			} 100% { 
				transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
				-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
			}
		}

.scroll-down {
	position: absolute;
    display: block;
    bottom: 50px;
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
    height: 80px;
    background: #fff;
    border-radius: 50%;
}
.scroll-down span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 3px solid #b0b0a4;
	border-bottom: 3px solid #b0b0a4;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb05 1s infinite;
	animation: sdb05 1s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes sdb05 {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
/* End Basic CSS
--------------------------------------------------------------------------------------------------*/


/* =Header
--------------------------------------------------------------------------------------------------*/
#header {
	position: fixed;
	top: 0px;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: 120px;
	padding: 30px 30px 10px;
	background: #fff;
	z-index: 7000;
	box-sizing: border-box;
}

#header h1 {
	font-size: 0px;
}

.header-logo {
	float: left;
	display: block;
}

.header-logo img{
	display: block;
	width: auto;
	height: 80px;
}

.main-nav {
	float: right;
    padding: 57px 0px 5px;
}

.main-nav li {
	display: inline-block;
	margin: 0px 10px;
}

.main-nav li a {
	display: inline-block;
	font-size: 16px;
	color: #b0b0a4;
	text-decoration: none;
	font-weight: 300;
}

.main-nav li a:after {
	content: '';
	display: block;
	height: 1px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.main-nav li a:hover:after {
	width: 100%;
	background: #b0b0a4;
}

/* End Header
--------------------------------------------------------------------------------------------------*/

/* Start homepage
--------------------------------------------------------------------------------------------------*/
.default-section {
	position: relative;
	padding-top: 120px;
	box-sizing: border-box;
    margin: 0px 30px;
}

.home-top-section {
	/* position: fixed;
	max-width: 1860px;
    width: 100%;
	margin: 0 auto; */
	width: calc(100% - 60px);
}

.home-top-section .home-bg {
	width: 100%;
	background-size: cover !important;
}

.best-projects-section {
	width: calc(100% - 60px);
	margin: 0px 30px;
	background: #fff;
	padding-bottom: 50px;
}

.best-projects-list ul li {
	float: left;
	width: calc(100% / 5 - 8px);
	margin-bottom: 10px;
	margin-right: 10px;
	overflow: hidden;
}

.best-projects-list ul li a {
	display: block;
	position: relative;
}

.best-projects-list ul li img {
	display: block;
	-webkit-filter: grayscale(90%);
	-moz-filter: grayscale(90%);
	-o-filter: grayscale(90%);
	-ms-filter: grayscale(90%);
	filter: grayscale(90%);
	transition: all .5s ease-in-out;
}

.best-projects-list ul li a:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%); 
}

.best-projects-list ul li:nth-child(5n) {
	margin-right: 0px;
}

.all-projects {
	position: relative;
}

.page-template-page-projects .default-section {
	margin-bottom: 50px;
}

.all-projects a {
	display: block;
	position: absolute;
	bottom: 0px;
    background: #b0b0a4;
	left: 0px;
	width: 100%;
	height: 100%;
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	line-height: 30px;
	box-sizing: border-box;
	font-weight: 300;
	border: 2px solid #b0b0a4;
	transition: all .2s ease-in-out;
}

.all-projects:hover a {
	background: #fff;
}

.all-projects:hover a {
	color: #b0b0a4;
}

.all-projects a span {
	position: absolute;
	bottom: 10px;
}
/* End homepage
--------------------------------------------------------------------------------------------------*/

.projects-list a {
	position: relative;
	overflow: hidden;
}

.gallery-section {
    margin-bottom: 44px;
}

.overlay-hover {
	position: absolute;
	/* background: rgba(176, 176, 164, .5); */
	width: 100%;
	height: 100%;
}

.overlay-hover span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 16px;
}

.about-content h1 {
	margin-bottom: 10px;
	font-weight: 300;
	font-size: 24px;
	color: #b0b0a4;
}

.about-inner figure {
	float: left;
	width: 293px;
}

.about-inner figure img {
	display: block;
	width: 100%;
	height: auto;
}

.about-inner .about-description {
	float: right;
	width: calc(100% - 343px);
}

.about-pattern span {
	display: block;
	width: 100%;
	height: 293px;
	background-size: cover !important;
}

.name {
	margin: 20px 0px;
}

.name h2 {
	float: left;
    font-size: 28px;
    line-height: 48px;
    font-weight: 300;
    color: #b0b0a4;
}

.name p {
    float: left;
    font-size: 12px;
    line-height: 16px;
    color: #b0b0a4;
    padding-left: 10px;
    border-left: 1px solid #b0b0a4;
    margin-left: 10px;
}

.about-content {
	margin: 30px 0px 0px 175px;
}

.cv-content p {
	margin: 10px 0px;
    color: #b0b0a4;
}

