/****************************************************************************
GENERAL STYLE
****************************************************************************/
body {
	font-family: 'Muli', 'Helvetica Neue', sans-serif;
	color: #222;
	font-size: 16px;
	line-height: 30px;
}
body * {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a {
	color: #000;
}
a:hover {
	color: #555;
	text-decoration: none;
}
/****************************************************************************
PAGE LOADING
****************************************************************************/
#loading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8000;
	background-color: #fff;
	opacity: 1;
	bottom: 0;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}
.loaded #loading {
	opacity: 0;
}
.spinner {
  position: absolute;
  top: 80px;
  left: 50%;
  margin-left: -15px;
  -webkit-animation: spin 1.4s infinite linear;
  animation: spin 1.4s infinite linear;
  height: 30px;
  width: 30px;
  border: 8px solid #eee;
  border-right-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}
@-webkit-keyframes spin {
    0%   {-webkit-transform: rotate(0deg)}
    100% {-webkit-transform: rotate(360deg)}
}
@keyframes spin {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}
/****************************************************************************
PAGE LAYAOUT
****************************************************************************/
.site-wrapper {
	width: 100%;
	overflow: hidden;
}
.site-menu,
.site-content {
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
}
.site-menu {
	width: 100%;
	max-width: 340px;
	min-height: 100%;
	position: fixed;
	z-index: 500;
	top: 0;
	right: 0;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 31px 30px;
	-webkit-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	-o-transform: translate(100%, 0);
	transform: translate(100%, 0);
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	opacity: 0;
}
.site-content {
	width: 100%;
	max-width: 1400px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	z-index: 100;
}
.opened .site-menu {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-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);
	opacity: 1;
}
.opened .site-menu .site-brand {
	margin-top: 31px;
}
.opened .site-content {
	-webkit-transform: translate(-340px, 0);
	-moz-transform: translate(-340px, 0);
	-ms-transform: translate(-340px, 0);
	-o-transform: translate(-340px, 0);
	transform: translate(-340px, 0);
	-webkit-transform: translate3d(-340px, 0, 0);
	-moz-transform: translate3d(-340px, 0, 0);
	-ms-transform: translate3d(-340px, 0, 0);
	-o-transform: translate3d(-340px, 0, 0);
	transform: translate3d(-340px, 0, 0);
}
/****************************************************************************
MENU & HEADER
****************************************************************************/
.menu {
	display: block;
	width: 33px;
	height: 21px;
	position: relative;
	top: 4px;
	float: right;
	opacity: 1;
}
.menu span {
	display: block;
	width: 33px;
	height: 3px;
	background-color: #000;
}
.menu span + span {
	margin-top: 6px;
}
.menu:hover span {
	background-color: #555;
}
.site-menu .menu {
	float: none;
}
.site-menu .menu span.first-line {
	opacity: 0;
}
.site-menu .menu span.second-line {
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.site-menu .menu span.third-line {
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -3px;
}
.content-header {
	padding-top: 30px;
	padding-bottom: 30px;
}
.site-brand {
	color: #000;
	font-size: 36px;
	text-align: center;
	margin-top: 30px;
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 8100;
}
.site-brand span {
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 7px;
	padding-left: 8px;
}
.opened .site-content .menu {
	opacity: 0;
}
/****************************************************************************
HOME
****************************************************************************/
@media screen and (max-width: 767px) {
	.home-container .row {
		margin-left: -30px;
		margin-right: -30px;
	}
	.slides-wrapper {
		margin-left: -15px;
		margin-right: -15px;
	}
}
/****************************************************************************
PICTURE LIST
****************************************************************************/
.pictures-list article {
	margin-bottom: 30px;
}
.pictures-list article a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.pictures-list article a .caption-bakcground {
	display: block;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 1010;
	left: 0;
	right: 0;
	bottom: 0;
}
.pictures-list article a .caption-bakcground .caption {
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	-moz-transform: translateX(0px) translateY(0px);
	-webkit-transform: translateX(0px) translateY(0px);
	-o-transform: translateX(0px) translateY(0px);
	-ms-transform: translateX(0px) translateY(0px);
	transform: translateX(0px) translateY(0px);
}
.pictures-list article a .caption-bakcground .caption h2 {
	display: inline-block;
	padding-bottom: 3px;
	font-size: 18px;
	color: #000;
}
/****************************************************************************
SINGLE PROGECT
****************************************************************************/
.breadcrumb {
  padding: 0;
  margin-bottom: 14px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
}
.project-title {
	margin-top: 0;
	margin-bottom: 28px;
	padding-top: 10px;
	text-align: center;
	border-top: 2px solid #eee;
}
.project-year,
.project-body {
  padding-left: 15px;
  padding-right: 15px;
}
.project-body {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.icon-keyboard {
  zoom: 50%;
  position: relative;
  top: -3px;
}
.slides-nav {
	position: relative;
	width: 100%;
	height: 40px;
}
.slides-nav a {
	display: block;
	position: absolute;
	top: 0;
	color: #555;
	font-size: 24px;
	color: #777;
}
.slides-nav a#next {
	right: 0;
}
.slides-nav a#prev {
	left: 0;
}
.photos-1 .slides-label,
.photos-1 .slides-nav {
	display: none;
}
@media (min-width: 768px) {
	.project-title {
		padding-top: 0;
		border-top: 0;
		padding-bottom: 4px;
		border-bottom: 2px solid #eee;
		text-align: left;
	}
    .project-year,
    .project-body {
      padding-left: 0;
      padding-right: 0;
    }
}
/****************************************************************************
SLIDESHOW
****************************************************************************/
#slides.owl-theme .owl-controls .owl-page span {
  opacity: 1;
  background-color: #eee;
}
#slides.owl-theme .owl-controls .owl-page.active span, 
#slides.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #e8846b;
}
/****************************************************************************
NAV
****************************************************************************/
.site-nav ul {
	display: block;
	width: 179px;
	margin: 30px auto;
	padding-left: 0;
	border-top: 2px solid #ddd;
}
.site-nav ul li {
	display: block;
	list-style: none;
	line-height: 40px;
    border-bottom: 2px solid #ddd;
}
.site-nav ul li.last {
	border-bottom: 0;
}
.site-nav ul li a {
	display: block;
	color: #555;
	font-weight: 300;
}
.site-nav ul li a:hover, .site-nav ul li a.current {
	color: #e8846b;
}
.site-nav ul li a.current {
	font-weight: 400;
}
.site-nav ul li > ul {
  margin-top: 0;
  margin-bottom: 0;
  border-top-width: 1px;
}
.site-nav ul li > ul li {
  padding-left: 10px;
  border-bottom-width: 1px;
}
/****************************************************************************
ABOUT
****************************************************************************/
.about-image {
  margin-bottom: 30px;
}
.about-body {
  padding: 0 15px;
}
.about-more {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1199px) {
  .about {
    width: 100%;
    position: relative
  }
  .about .project-title {
  	border-bottom: 0;
  }
  .about-image {
  	display: none;
  }
  .about-body {
    width: 100%;
    padding-top: 0;
    padding-right: 40%;
    padding-bottom: 0;
    padding-left: 0;
    background-image: url('/photos/ABOUT-GR.jpg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    border-top: 15px solid #444;
    border-bottom: 15px solid #444;
  }
  .about-body p:first-child {
  	margin-top: 20px;
  }
  .about-body p:last-child {
  	margin-bottom: 20px;
  }
  .about-more {
  	padding-left: 0;
  	padding-right: 0;
  	padding-top: 20px;
  }
}
/****************************************************************************
CONTACT
****************************************************************************/
@media screen and (max-width: 767px) {
	.contact p {
		margin-left: 10px;
	}
}
/****************************************************************************
FOOTER
****************************************************************************/
.site-footer {
	margin-top: 30px;
	margin-bottom: 60px;
	padding-top: 20px;
	color: #999;
	border-top: 2px solid #ddd;
}
.site-footer strong {
	font-weight: 400;
	color: #222;
}
/****************************************************************************
EMBEDDING
****************************************************************************/
.embed {
	position: relative;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 56.25%;
	overflow: hidden;
	min-height: 400px;	
}
.embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/****************************************************************************
RESPONSIVE
****************************************************************************/
@media screen and (min-width: 800px) {
	.site-menu {
		opacity: 1;
		background-color: #fff;
		-webkit-transform: translate(0%, 0);
		-moz-transform: translate(0%, 0);
		-ms-transform: translate(0%, 0);
		-o-transform: translate(0%, 0);
		transform: translate(0%, 0);
		-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);
		right: auto;
		left: 0;
		padding-top: 40px;
	}
	.site-content {
		padding-left: 340px;
		padding-top: 70px;
	}
	.content-header, .menu {
		display: none;
	}
}
@media screen and (min-width: 801px) {
	.site-content {
		padding-right: 30px;
	}
}
@media screen and (min-width: 1199px) {
	.pictures-list article a:hover .caption-bakcground {
		background-color: rgba(255, 255, 255, 1);
	}
	.pictures-list article a .caption-bakcground .caption {
		padding-bottom: 0;
	}
	.pictures-list article a:hover .caption-bakcground .caption {
		padding-bottom: 10px;
	}
}
/****************************************************************************
PAGINA 404
****************************************************************************/
body.error {
	padding-top: 80px;
	padding-bottom: 400px;
	min-height: 100%;
	text-align: center;
}
.error-message-title {
	font-size: 60px;
	line-height: 70px;
	font-weight: 300;
}
.error-message-content {
	font-size: 18px;
	color: #555;
}
.error-message-content a {
	display: inline-block;
	margin-top: 30px;
	padding: 12px 40px;
	border: 2px solid #ddd;
}
.error-message-content a:hover {
	border-color: #000;
}
/****************************************************************************
RESPONSIVE VIDEO
****************************************************************************/
.responsive-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 60px; 
	overflow: hidden;
	margin-top: 20px;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	.responsive-video {
		margin-left: 10px;
		margin-right: 10px;
	}
}