@charset "utf-8";
@import url('bootstrap-reboot.min.css');
@import url('bootstrap-grid.min.css');
@import url('fancybox.css');

/* <loader */
/*.pace {
	-webkit-pointer-events: none;
		pointer-events: none;

	-webkit-user-select: none;
		-moz-user-select: none;
			user-select: none;

	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2500;
	margin: 0 auto;
	background: #ad8c4a;
	width: 100%;
	height: 3px;

	overflow: hidden;
}

.pace .pace-progress {
	-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
				-o-box-sizing: border-box;
					box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
			-ms-transform: translate3d(0, 0, 0);
				-o-transform: translate3d(0, 0, 0);
					transform: translate3d(0, 0, 0);

	max-width: 300px;
	position: fixed;
	top: 0;
	right: 100%;
	z-index: 2000;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.pace.pace-inactive {
	display: none;
}*/
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #ad8c4a;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #ad8c4a, 0 0 5px #ad8c4a;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #ad8c4a;
  border-left-color: #ad8c4a;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
/* loader> */

body {
	margin: 0;
	height: 100%;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: #000;
	-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
	line-height: 20px;
}

/* <mini reset */
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

a,
a:link,
a:active,
a:visited {
	outline: none;
	text-decoration: none;
}
a:focus {
	outline: none;
	outline: expression(hideFocus='true');
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}
/* mini reset> */

#wrapper {
	margin: 0 auto;
	max-width: 1680px;
}

/* <masonry */
.grid-item-content {
	margin-bottom: 30px;
	/*min-height: 100px;*/
}
.grid-item-content--height2 {
	/*min-height: 220px;*/
}
/* masonry> */

/* <header */
header h1 {
	margin: 20px auto;
	width: 40px;
	height: auto;
}
header h1 a {
	display: block;
	width: 40px;
	height: auto;
}
header h1 a img {
	display: block;
	width: 100%;
	height: auto;
}

/* <nav */
nav {
	position: relative;
	margin: 0 0 20px 0;
	width: auto;
	height: 20px;
}
nav ul {
	margin-right: 30px;
	text-align: center;
}
nav ul li {
	display: inline-block;
	padding-left: 20px;
	line-height: 20px;
}
nav ul li:first-child {
	padding-left: 0;
}
nav ul li a {
	display: inline;
	color: #ad8c4a;
	font-weight: 400;
}
nav ul li a:hover {
	color: #ad8c4a;
}
nav ul li a span {
	position: relative;
	display: inline-block;
	color: #000;
	font-weight: 600;
}
nav ul li a span::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	z-index: 9;
	background-color: #ad8c4a;
	width: 100%;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
	height: 1px;
}
nav ul li a:hover span::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
nav ul li a.selected span::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
@media (max-width: 767.98px) {
	/*header h1 {
		margin: 20px 0 0 30px;
	}*/
	nav {
		height: 0;
	}
  nav ul {
    display: none;
  }
}

/* <hamburger */
.hamburger {
	right: 30px;
	bottom: auto;
	left: auto;
	z-index: 999;
	margin: 0;
	overflow: visible;
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: transparent;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	border: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	text-transform: none;
	cursor: pointer;
}
.state-1 {
	position: absolute;
	top: -90px;
}
.state-2 {
	position: fixed;
	top: 50px;
}
.hamburger:hover {
	/*opacity: 0.7;*/
}

.hamburger-box {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
}

.hamburger-inner {
	top: 50%;
	margin-top: -2px;
	display: block;
}
.hamburger-inner, .hamburger-inner::before,
.hamburger-inner::after {
	position: absolute;
	background-color: #000;
	width: 40px;
	height: 4px;
	border-radius: 4px;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}

/* spin */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin:hover .hamburger-inner,
.hamburger--spin:hover .hamburger-inner::before,
.hamburger--spin:hover .hamburger-inner::after {
	/*background-color: #ad8c4a;*/
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 768px) {
	.hamburger {
		display: none;
	}
}
/* hamburger> */

/* <menu */
#menu {
	display: none;
	position: fixed;
	top: 0;
	z-index: 99;
	overflow: auto;
	background-color: #fff;
	width: 100%;
	height: 100%;
}
#menu div {
	margin: 0 auto;
	max-width: 90%;
	color: #e9e9e9;
	text-align: center;
}
#menu div .menu {
	margin: 0;
	padding: 120px 0 0 0;
}
#menu div .menu li {
	margin: 0;
	display: block;
	width: auto;
	padding: 10px 0;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}
#menu div .menu li a {
	display: block;
	transition-property: all .2s linear 0s;
		-moz-transition: all .2s linear 0s;
			-webkit-transition: all .2s linear 0s;
				-o-transition: all .2s linear 0s;
	color: #000;
}
#menu div .menu li a:hover,
#menu div .menu li a:focus,
#menu div .menu li a.selected {
	color: #ad8c4a;
}

#menu div hr {
	margin: 20px auto 10px;
	background: none;
	width: 100px;
	height: 1px;
	border: none;
	border-top: 1px solid #ad8c4a;
	font-size: 0;
	line-height: 0;
}

#menu div .contact {
	margin: 0;
	list-style-type: none;
	padding: 20px 0;
}
#menu div .contact li {
	display: inline;
	padding: 0 0 0 10px;
	color: #000;
	font-weight: 600;
}
#menu div .contact li::before {
	content: "/";
	padding: 0 10px 0 0;
	color: #ad8c4a;
	font-weight: 400;
}
#menu div .contact li:first-child::before {
	content: "";
	padding: 0;
}
#menu div .contact li a {
	color: #000;
}
#menu div .contact li a:hover,
#menu div .contact li a:focus {
	color: #ad8c4a;
}
@media  (max-width: 991.98px) {
	.overlay div .menu {
		opacity: 0;
		visibility: hidden;
	}
	.overlay div .menu > li {
		width: 100%;
	}
}
@media (min-width: 768px) {
	#menu {
		visibility: hidden;
	}
}
@media (max-width: 575.98px) {
	#menu div .contact li {
		display: block;
		padding-left: 0;
		line-height: 30px;
	}
	#menu div .contact li::before {
		content: "";
		padding-right: 0;
	}
}
/* menu> */
/* nav> */
/* header> */

/* <projects */
.visible {
	overflow: inherit;
	height: inherit;
	font-size: inherit;
	line-height: inherit;
}
.hidden {
	overflow: hidden;
	height: 0;
}
@media (min-width: 768px) {
	.visible,
	.hidden {
		overflow: inherit;
		height: inherit;
	}
}

.content {
	position: relative;
}
.content a {
	position: relative;
	display: block;
	width: 100%;
	min-height: 100%;
	color: #000;
}
.content a img {
	z-index: 1;
	display: block;
	max-width: 100%;
	/*border: 1px solid #f5f5f5;*/
	border: 1px solid #eee;
	-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
			-o-border-radius: 5px;
				border-radius: 5px;
	/*-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
		-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
			-o-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
				box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);*/
	opacity: 1;
}
.project a::after {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: auto;
	left: auto;
	z-index: 2;
	display: block;
	background-color: #ad8c4a;
	width: 40px;
	height: 40px;
	content: "+";
	-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
			border-radius: 20px;
	font-size: 25px;
	color: #000;
	text-align: center;
	line-height: 38px;
	opacity: 0.7;
}
.project a.author::after,
.project a.open-pdf::after {
	display: none;
}
.project a:hover::after {
	opacity: 0.9;
}
.projects .content a img {
	/*border: none;*/
}
.projects .none {
	display: none;
	visibility: hidden;
}
.content a img.no-border {
	border: none;
}
.content a:hover img {
	opacity: 0.7;
}
.content a:focus img {
	/*opacity: 0.5;*/
}
.content a.author {
	border: 2px solid #eee;
	-moz-border-radius: 5px;
		-webkit-border-radius: 50px;
			-o-border-radius: 50px;
				border-radius: 50px;
	padding: 20px;
	text-align: center;
}
.content a.author span {
	font-weight: 700;
}
.content a.author:hover span {
	border-bottom: 1px solid #ad8c4a;
}
.content a.similar-projects {
	background-color: #000;
	-moz-border-radius: 5px;
		-webkit-border-radius: 50px;
			-o-border-radius: 50px;
				border-radius: 50px;
	padding: 20px 30px;
	font-size: 11px;
	color: #ad8c4a;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 3px;
	font-weight: 700;
}
.content a.similar-projects::after {
	background: none;
	content: "";
}
.content a.similar-projects:hover {
	background-color: #ad8c4a;
	color: #fff;
}
.content a.similar-projects.inside {
	margin-top: 20px;
}
.content a.open-pdf {
	margin-top: 10px;
	display: inline-block;
	background-color: #fff;
	width: auto;
	border: 1px solid #ad8c4a;
	-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
			-o-border-radius: 20px;
				border-radius: 20px;
	padding: 7px 15px;
	color: #000;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2px;
	font-weight: 700;
}
.content a.open-pdf:hover {
	background-color: #ad8c4a;
	color: #fff;
}
.title h1 {
	font-size: 20px;
	color: #ad8c4a;
	font-weight: 700;
	line-height: 40px;
}
.title h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
}
.title h2 span {
	color: #ad8c4a;
}
.title p {
	margin-top: 15px;
	/*display: none;*/
}
.title p a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	border: 3px solid #ad8c4a;
	border-radius: 30px;
	font-size: 0;
	color: #000;
	text-align: center;
	line-height: 34px;
}

.title p a span {
	display: block;
	top: 5px;
	right: auto;
	bottom: auto;
	left: 6px;
	z-index: 9;
	margin-top: 10px;
}
.title p a span,
.title p a span::before,
.title p a span::after {
	position: absolute;
	background-color: #000;
	width: 20px;
	height: 4px;
	border-radius: 4px;
}
.title p a span::before,
.title p a span::after {
	content: "";
	display: block;
}
.title p a span::before {
	top: -5px;
	transform: translate3d(-3px, 0, 0) rotate(-45deg) scale(0.8, 1);
}
.title p a span::after {
	bottom: -5px;
	transform: translate3d(-3px, 0, 0) rotate(45deg) scale(0.8, 1);
}

.content h3 {
	padding: 10px 0 3px;	
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.content a:hover h3 {
	color: #ad8c4a;
}
.content h6 {
	padding: 0;
	font-size: 13px;
	color: #ad8c4a;
	font-style: italic;
	font-weight: 400;
}
@media (max-width: 575.98px) {
	.content {
		margin-right: -15px;
		margin-left: -15px;
	}
	.content h3,
	.content h6 {
		text-align: center;
	}
	.title h2 {
		font-size: 30px;
		font-weight: 700;
		line-height: 30px;
	}
}
/* projects> */

.error {
	padding: 100px 0;
	text-align: center;
}
.error h1 {
	font-size: 80px;
	color: #000;
	line-height: 80px;
}
.error h1 sup {
	font-size: 55px;
	color: #ad8c4a;
	line-height: 70px;
}
.error h6 {
	padding-top: 10px;
	font-size: 15px;
	font-weight: 600;
	line-height: 15px;
}
.error a {
	margin-top: 40px;
	display: inline-block;
	background-color: #000;
	-moz-border-radius: 5px;
		-webkit-border-radius: 50px;
			-o-border-radius: 50px;
				border-radius: 50px;
	padding: 20px 30px;
	font-size: 11px;
	color: #ad8c4a;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 3px;
	font-weight: 700;
}
.error a:hover {
	background-color: #ad8c4a;
	color: #fff;
}
@media (max-width: 575.98px) {
	.error {
		padding: 40px 0 20px;
	}
	.error h1 {
		font-size: 70px;
		line-height: 70px;
	}
	.error h1 sup {
		font-size: 30px;
	}
}

/* <project */
.project-header {
	padding: 0 15px;
}
.project-header hr {
	margin: 10px auto 20px;
	background: none;
	padding: 0;
	border: none;
	border-top: 1px solid #ad8c4a;
	width: 100px;
	font-size: 0;
	line-height: 0;
}
.project-header h1 {
	margin: 20px 0 0;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
}
.project-header h2 {
	margin-bottom: 10px;
	font-size: 13px;
	color: #ad8c4a;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.project-content {
	padding: 0 15px;
}
.project-content img {
	display: block;
	width: auto;
	max-width: 100%;
	-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
			-o-border-radius: 5px;
				border-radius: 5px;
}

.grid.project {
	margin-top: 30px;
}
@media (max-width: 991.98px) {
	.grid.project {
		margin-top: 30px;
	}
	.project-header h1 {
		font-size: 30px;
	}
	.project-content {
		padding: 0;
	}
}
/* project> */

/* <contact */
.contact-header {
	padding: 0 15px;
}
.contact-header hr {
	margin: 10px auto 20px;
	background: none;
	padding: 0;
	border: none;
	border-top: 1px solid #ad8c4a;
	width: 100px;
	font-size: 0;
	line-height: 0;
}
.contact-header h1 {
	margin: 20px 0 0;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
}
.contact-header h2 {
	margin-bottom: 10px;
	font-size: 13px;
	color: #ad8c4a;
	font-weight: 700;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.contact-content {
	padding: 40px 0 50px;
	text-align: center;
}
.contact-content ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
}
.contact-content ul li {
	display: inline;
	padding: 0 0 0 10px;
	font-size: 16px;
	font-weight: 600;
}
.contact-content ul li::before {
	content: "/";
	padding: 0 10px 0 0;
	color: #ad8c4a;
	font-weight: 400;
}
.contact-content ul li:first-child::before {
	content: "";
	padding: 0;
}
.contact-content ul li a {
	color: #000;
}
.contact-content ul li a:hover,
.contact-content ul li a:focus {
	color: #ad8c4a;
}
.contact-content ul li span {
	color: #ad8c4a;
	font-weight: 400;
}
@media (max-width: 991.98px) {
	.contact-header h1 {
		font-size: 30px;
	}
}
@media (max-width: 575.98px) {
	.contact-content ul li {
		display: block;
		padding-left: 0;
		line-height: 40px;
	}
	.contact-content ul li::before {
		content: "";
		padding-right: 0;
	}
}
/* contact> */

/* <footer */
footer {
	margin: 30px 15px 0;
	border-top: 1px solid #ad8c4a;
	padding: 20px 30px;
	text-align: center;
}
footer ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
}
footer ul li {
	display: inline;
	padding: 0 0 0 10px;
	font-weight: 600;
}
footer ul li::before {
	content: "/";
	padding: 0 10px 0 0;
	color: #ad8c4a;
	font-weight: 400;
}
footer ul li:first-child::before {
	content: "";
	padding: 0;
}
footer ul li a {
	color: #000;
}
footer ul li a:hover,
footer ul li a:focus {
	color: #ad8c4a;
}
footer ul li span {
	color: #ad8c4a;
	font-weight: 400;
}
footer hr {
	margin: 20px auto 20px;
	background: none;
	padding: 0;
	border: none;
	border-top: 1px solid #ad8c4a;
	width: 100px;
	font-size: 0;
	line-height: 0;
}
footer p {
	font-size: 13px;
	color: #ad8c4a;
}
footer p img {
	width: 40px;
	height: auto;
}
footer p strong {
	color: #000;
	font-weight: 600;
}
@media (max-width: 575.98px) {
	footer ul li {
		display: block;
		padding-left: 0;
		line-height: 25px;
	}
	footer ul li::before {
		content: "";
		padding-right: 0;
	}
}
/* footer> */

/* <cookie */
.cc-color-override--164164010.cc-window {
	border-radius: 2px;
}
.cc-floating .cc-message {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
}
.cc-color-override--164164010 .cc-link {
	border-bottom: 1px dashed #ad8c4a;
	color: #fff;
}
.cc-color-override--164164010 .cc-link:hover {
	border-bottom-color: #fff;
	color: #ad8c4a;
}
.cc-floating .cc-compliance > .cc-btn {
	border-radius: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.cc-floating .cc-compliance > .cc-btn:hover {
	background-color: #fff;
	color: #000;
	text-decoration: none;
}
@media (max-width: 414.98px) {
	.cc-color-override--164164010.cc-window {
		border-radius: 0;
	}
}
/* cookie> */
