/*
*   Boden (HTML)
*   Copyright 2015, Limitless
*   www.limitless.company
*/

/* Table of Content
==================================================
	# Header
	# Footer
	# Landing
	# About
	# Quotes
	# Services
	# Team
	# Facts
	# Portfolio
	# Blog
	# Article
	# Contact
	# Start
	# Call to Action */


/* Header
================================================== */
	
	header.header {
		background-color: transparent;
		height: 110px;
		padding: 29px 100px;
		position: absolute;
		text-align: center;
		width: 100%;
		z-index: 100;
	}	

	header.header .logo {
		line-height: 0px;
		text-align: left;
		width: 20%;
	}

	header.header .logo a {
		cursor: pointer;
		display: inline-block;
		opacity: 1;
		-webkit-transition: opacity 0.6s ease 0s;
		-moz-transition: opacity 0.6s ease 0s;
		-ms-transition: opacity 0.6s ease 0s;
		-o-transition: opacity 0.6s ease 0s;
		transition: opacity 0.6s ease 0s;
	}

	header.header .logo a:hover {
		opacity: 0.75;
	}

	header.header .logo img {
		max-height: 80px;
	}

	header.header .navigation {
		text-align: center;
		width: 60%;
		transition: opacity 0.3s ease 0s;
	}

	header.header .navigation ul {
		margin-bottom: 0px;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
	}

	header.header .navigation ul > li {
		cursor: pointer;
		display: inline-block;
		font-weight: 400;
		letter-spacing: 0.2em;
		margin-bottom: 0px;
		margin-right: 5.454545454545455%;
		vertical-align: top;
	}


	header.header .navigation ul > li:last-child {
		margin-right: 0px;
	}

	header.header .navigation ul li span {
		-webkit-transition: color 0.6s ease 0s;
		-moz-transition: color 0.6s ease 0s;
		-ms-transition: color 0.6s ease 0s;
		-o-transition: color 0.6s ease 0s;
		transition: color 0.6s ease 0s;
	}

	header.header .navigation ul li:hover span, 
	header.header .navigation ul li.active span {
		color: #000000;
	}

	header.header.light .navigation ul li span {
		color: #ffffff;
	}

	header.header.light .navigation ul li:hover span, 
	header.header.light .navigation ul li.active span {
		color: rgba(255,255,255,0.5);
	}

	header.header .cta {
		text-align: right;
		width: 20%;
	}

	header.header .menu {
		display: none;
		height: 20px;
		text-align: right;
		width: 50%;
	}

	header.header .menu button {
		background-color: #000000;
		height: 2px;
		width: 20px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	header.header.light .menu button {
		background-color: #ffffff;
	}

	header.header .menu button:before, 
	header.header .menu button:after {
		background-color: #000000;
		content: " ";
		display: block;
		height: 2px;
		width: 20px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	header.header.light .menu button:before, 
	header.header.light .menu button:after {
		background-color: #ffffff;
	}

	header.header .menu button:before {    
		transform: translate(-6px, -6px);
	}

	header.header .menu button:after {
		transform: translate(-6px, 2px);
	}

	header.header.active button {
		background-color: transparent !important;
	}

	header.header.active .menu button:before {
		background-color: #222222;
   		-webkit-transform: rotate(-45deg) translate(-6px, -5px);
		-moz-transform: rotate(-45deg) translate(-6px, -5px);
		-ms-transform: rotate(-45deg) translate(-6px, -5px);
		-o-transform: rotate(-45deg) translate(-6px, -5px);
    	transform: rotate(-45deg) translate(-6px, -5px);
	}

	header.header.active .menu button:after {
		background-color: #222222;
   		-webkit-transform: rotate(45deg) translate(-6px,5px);
		-moz-transform: rotate(45deg) translate(-6px,5px);
		-ms-transform: rotate(45deg) translate(-6px,5px);
		-o-transform: rotate(45deg) translate(-6px,5px);
    	transform: rotate(45deg) translate(-6px,5px);
	}

	header.header.active .cta .button {
		background-color: #222222;
		color: #ffffff;
	}

	header.header.active .cta .button:hover {
		background-color: #000000;
	}


/* Footer
================================================== */

	footer.footer {
		background-color: #222222;
		height: 240px;
		padding-top: 74px;
	}	

	footer.footer .copyrights .text {
		color: #ffffff;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	footer.footer .copyrights .text.hover {
		color: #9e9e9e;
	}

	footer.footer .copyrights .text a span, 
	footer.footer .copyrights .text a:hover span {
		border-bottom-color: #ffffff;
		color: #ffffff;
		opacity: 1;
	}

	footer.footer .social-links {
		margin-bottom: 26px;
	}

	footer.footer .social-links li {
		display: inline-block;
		margin-right: 36px;
	}

	footer.footer .social-links li:last-child {
		margin-right: 0px;
	}

	footer.footer .social-links li .button.apple:before {
		background-image: url("../images/icons/icon-apple-dark.png");
	}

	footer.footer .social-links li .button.behance:before {
		background-image: url("../images/icons/icon-behance-dark.png");
	}

	footer.footer .social-links li .button.dribbble:before {
		background-image: url("../images/icons/icon-dribbble-dark.png");
	}

	footer.footer .social-links li .button.facebook:before {
		background-image: url("../images/icons/icon-facebook-dark.png");
	}

	footer.footer .social-links li .button.flickr:before {
		background-image: url("../images/icons/icon-flickr-dark.png");
	}

	footer.footer .social-links li .button.github:before {
		background-image: url("../images/icons/icon-github-dark.png");
	}

	footer.footer .social-links li .button.google:before {
		background-image: url("../images/icons/icon-google-dark.png");
	}

	footer.footer .social-links li .button.instagram:before {
		background-image: url("../images/icons/icon-instagram-dark.png");
	}

	footer.footer .social-links li .button.linkedin:before {
		background-image: url("../images/icons/icon-linkedin-dark.png");
	}

	footer.footer .social-links li .button.pinterest:before {
		background-image: url("../images/icons/icon-pinterest-dark.png");
	}

	footer.footer .social-links li .button.twitter:before {
		background-image: url("../images/icons/icon-twitter-dark.png");
	}

	footer.footer .social-links li .button.youtube:before {
		background-image: url("../images/icons/icon-youtube-dark.png");
	}

	footer.footer .social-links li .button.vimeo:before {
		background-image: url("../images/icons/icon-vimeo-dark.png");
	}

	footer.footer .back {

	}

	footer.footer .back .back-button {
		background-image: url("../images/icons/footer-back-arrow.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 24px 11px;
		cursor: pointer;
		float: right;
		height: 11px;
		margin-top: 10px;
		opacity: 0.47;
		width: 24px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	footer.footer .back .back-button:hover {
		opacity: 1;
	}


/* Landing
================================================== */

	section.landing {

	}

	section.landing.image .background {
		-webkit-animation-duration: 7s;
		animation-duration: 7s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: kenburns;
		animation-name: kenburns;
	}

	@-webkit-keyframes kenburns {
		0% {
			-webkit-transform: translate(2%, -3%) scale(1.1, 1.1);
			-moz-transform: translate(2%, -3%) scale(1.1, 1.1);
			-ms-transform: translate(2%, -3%) scale(1.1, 1.1);
			-o-transform: translate(2%, -3%) scale(1.1, 1.1);
			transform: translate(2%, -3%) scale(1.1, 1.1);
		}

		100% {
		    -webkit-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -moz-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -ms-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -o-transform: translate(0%, 0%) scale(1.15, 1.15);
		    transform: translate(0%, 0%) scale(1.15, 1.15);
		}
	}

	@keyframes kenburns {
		0% {
			-webkit-transform: translate(2%, -3%) scale(1.1, 1.1);
			-moz-transform: translate(2%, -3%) scale(1.1, 1.1);
			-ms-transform: translate(2%, -3%) scale(1.1, 1.1);
			-o-transform: translate(2%, -3%) scale(1.1, 1.1);
			transform: translate(2%, -3%) scale(1.1, 1.1);
		}

		100% {
		    -webkit-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -moz-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -ms-transform: translate(0%, 0%) scale(1.15, 1.15);
		    -o-transform: translate(0%, 0%) scale(1.15, 1.15);
		    transform: translate(0%, 0%) scale(1.15, 1.15);
		}
	}

	section.landing .item-media .video,
	section.landing .item-media .overlay {
		bottom: 0px;
		left: 0px;
		padding: 0px;
		position: absolute !important;
		right: 0px;
		top: 0px;
	}

	section.landing .item-media iframe {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}

	section.landing .item-content .main {
	    position: absolute;
	    top: 50%;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}

	section.landing .item-content .main .title {
		color: #ffffff;
		font-size: 60px;
		font-weight: 100;
		letter-spacing: 0em;
		margin-bottom: 20px;
	}

	section.landing .item-content .main .text {
		color: #ffffff;
		font-size: 24px;
		font-weight: 300;
		letter-spacing: 0.025em;
		margin-bottom: 40px;
		opacity: 0.5;
	}

	section.landing .item-content .button.icon:after {
		background-image: url("../images/icons/icon-arrow-dark.png");
		opacity: 0.47;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	section.landing .slider-controls {
		bottom: 50px;
		left: 50%;
	    -webkit-transform: translateX(-50%);
	    -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	    -o-transform: translateX(-50%);
	    transform: translateX(-50%);
	}

	section.landing .slider-controls ul {
		align-items: stretch;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox; 
		display: -webkit-flex;
		display: flex; 
		flex-flow: row wrap;
	}

	section.landing .slider-controls ul li {
		background-color: rgba(255,255,255,0.5);
		border-radius: 5px;
		height: 5px;
		margin-right: 30px;
		text-indent: -9999px;
		width: 5px;
	}

	section.landing .slider-controls ul li:last-child {
		margin-right: 0px;
	}

	section.landing .slider-controls ul li.current {
		background-color: rgba(255,255,255,1);
	}


/* About
================================================== */

	section.about .offset {
		padding-top: 250px;
	}

	section.about .section-header {
		margin-bottom: 40px;
	}

	section.about .section-content {
		padding-right: 28%;
	}

	section.about .item-content .text {
		margin-bottom: 45px;
	}

	section.about .item-content .button.icon:after {
		background-image: url("../images/icons/icon-arrow-light.png");
		opacity: 0.5;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}


/* Quotes
================================================== */

	section.quotes {
		height: 450px;
		position: relative;
	}

	section.quotes .item {
		padding: 110px 0px;
	}

	section.quotes .item-media {

	}

	section.quotes .item-content {
		padding-left: 100px;
		padding-right: 29.09090909090909%;
		position: relative;
	}

	section.quotes .item-content .title {
		color: rgba(255,255,255,0.5);
		display: inline-block;
		font-size: 11.5px;
		vertical-align: middle;
	}

	section.quotes .item-content .title:before {
		background-color: rgba(255,255,255,0.5);
		content: " ";
		display: inline-block;
		height: 2px;
		margin-right: 15px;
		vertical-align: middle;
		width: 20px;
	}

	section.quotes .item-content .text {
		color: #ffffff;
		letter-spacing: 0.01em;
	}

	section.quotes .slider-navigation {
		bottom: 120px;
		height: 58px;
		left: 100px;
		position: absolute;
		width: 100%;
		z-index: 10;
	}

	section.quotes .slider-navigation:hover {
		border-color: rgba(255,255,255,0.5);
	}

	section.quotes .slider-navigation .prev,
	section.quotes .slider-navigation .next {
		background-color: transparent;
		border-color: rgba(238,238,238,0.5);
		border-style: solid;
		border-width: 2px;
		display: inline-block;
		height: 54px;
		width: 67px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}	

	section.quotes .slider-navigation .prev {
		border-right-color: rgba(238,238,238,0.25);
		border-right-style: solid;
		border-right-width: 2px;
	}

	section.quotes .slider-navigation .next {
		border-left-color: rgba(238,238,238,0.25);
		border-left-style: solid;
		border-left-width: 2px;
		margin-left: -2px;
	}	

	section.quotes .slider-navigation .prev:hover,
	section.quotes .slider-navigation .next:hover {
		background-color: rgba(238,238,238,0.5);
		border-color: rgba(238,238,238,0);
	}	

	section.quotes .slider-navigation .prev:active,
	section.quotes .slider-navigation .next:active {
		background-color: rgba(255,255,255,1);
	}

	section.quotes .slider-navigation .prev:before,
	section.quotes .slider-navigation .next:before {
		background-image: url("../images/icons/icon-arrow-light.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 16px;
		content: " ";
		display: block;
		height: 16px;
		margin-left: 24px;
		margin-top: 17px;
		opacity: 0.5;
		width: 16px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}	

	section.quotes .slider-navigation .prev:hover:before,
	section.quotes .slider-navigation .next:hover:before,
	section.quotes .slider-navigation .prev:active:before,
	section.quotes .slider-navigation .next:active:before {
		background-image: url("../images/icons/icon-arrow-dark.png");
		opacity: 1;
	}	

	section.quotes .slider-navigation .prev:before {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	section.quotes .slider-navigation .next:before {
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}


/* Services
================================================== */

	section.services .section-header {
		margin-bottom: 73px;
	}

	section.services .item {
		margin-bottom: 65px;
	}	

	section.services .item .section-header {
		margin-bottom: 70px;
	}

	section.services .item .item-media {
		margin-bottom: 20px;
	}

	section.services .item .item-content .title {
		margin-bottom: 20px;
	}


/* Team
================================================== */

	section.team .section-header {
		margin-bottom: 70px;
	}

	section.team .item {
		margin-bottom: 65px;
	}

	section.team .item .item-media {
		margin-bottom: 15px;
	}

	section.team .item .item-media img {
		width: 100%;
	}

	section.team .item .item-content .title {
		font-size: 17px;
		font-weight: 300;
		letter-spacing: 0.025em;
		margin-bottom: 15px;
	}

	section.team .item .item-content .text {
		font-size: 10px;
		font-weight: 400;
		letter-spacing: 0.2em;
		line-height: 1.1;
	}


/* Devider
================================================== */

	section.devider {
		background-color: #cccccc;
		height: 1px;
		margin: 0px 75px;
	}


/* Facts
================================================== */

	section.facts .item {    
		margin-bottom: 30px;
	}

	section.facts .item-content .title {
		font-size: 50px;
		font-weight: 200;
		letter-spacing: 0.01em;
	}

	section.facts .item-content .text {
		font-size: 17px;
		letter-spacing: 0.025em;
	}


/* Portfolio
================================================== */

	section.portfolio .section-header {
		height: 520px;
		position: relative;
	}

	section.portfolio.with-filtermenu .section-header {
		height: 520px;
	}

	section.portfolio.with-filtermenu .section-header .item-content {
		left: 0px;
		margin-top: 30px;
  		position: absolute;
  		text-align: center;
  		right: 0px;
	    top: 50%;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}

	section.portfolio.with-filtermenu .section-header .item-content .headline {
		margin: 0px auto;
		max-width: 600px;
	}

	section.portfolio.with-filtermenu .section-header .item-content .title {
		font-size: 60px;
		margin-bottom: 15px;
	}

	section.portfolio.with-filtermenu .section-header .item-content .text {
		font-size: 17px;
		line-height: 43px;
		margin-bottom: 18px;
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter {
		border-bottom-color: transparent;
		border-bottom-style: solid;
		border-bottom-width: 2px;
		display: inline-block;
		padding: 0px 15px 17px 54px;
		-webkit-transition: border 0.3s ease 0s;
		-moz-transition: border 0.3s ease 0s;
		-ms-transition: border 0.3s ease 0s;
		-o-transition: border 0.3s ease 0s;
		transition: border 0.3s ease 0s;
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button {
		background-color: transparent;
		color: #666666;
		cursor: pointer;
		font-size: 11px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0.2em;
		position: relative;
		text-transform: uppercase;
		-webkit-transition: color 0.3s ease 0s;
		-moz-transition: color 0.3s ease 0s;
		-ms-transition: color 0.3s ease 0s;
		-o-transition: color 0.3s ease 0s;
		transition: color 0.3s ease 0s;
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:hover {
		color: #000000;
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:before, 
	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:after {
		background-color: #888888;
		content: " ";
		display: block;
		height: 2px;
		left: -42px;
		opacity: 0.47;
		position: absolute;
		width: 22px;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:before {
		-webkit-transform: translate(0px, 8px);
		-moz-transform: translate(0px, 8px);
		-ms-transform: translate(0px, 8px);
		-o-transform: translate(0px, 8px);
		transform: translate(0px, 8px);
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:after {
		-webkit-transform: translate(0px, -10px);
		-moz-transform: translate(0px, -10px);
		-ms-transform: translate(0px, -10px);
		-o-transform: translate(0px, -10px);
		transform: translate(0px, -10px);
	}

	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:hover:before, 
	section.portfolio.with-filtermenu .section-header .item-content .filter .filter-button:hover:after {
		background-color: #000000;
	}

	section.portfolio.with-filtermenu.active .section-header .item-content .filter .filter-button:before {
    	-webkit-transform: rotate(-45deg) translate(-8px, 9px);
    	-moz-transform: rotate(-45deg) translate(-8px, 9px);
    	-ms-transform: rotate(-45deg) translate(-8px, 9px);
    	-o-transform: rotate(-45deg) translate(-8px, 9px);
    	transform: rotate(-45deg) translate(-8px, 9px);
	}

	section.portfolio.with-filtermenu.active .section-header .item-content .filter .filter-button:after {
    	-webkit-transform: rotate(45deg) translate(-8px, -9px);
    	-moz-transform: rotate(45deg) translate(-8px, -9px);
    	-ms-transform: rotate(45deg) translate(-8px, -9px);
    	-o-transform: rotate(45deg) translate(-8px, -9px);
    	transform: rotate(45deg) translate(-8px, -9px);
	}

	/* Filter Bar */
	section.portfolio.with-filterbar .section-header {
		height: 405px;
	}

	section.portfolio.with-filterbar .section-header .item-media {
		bottom: 13px !important;
	}

	section.portfolio.with-filterbar .section-header .item-content {
		bottom: 0px;
		left: 0px;
		position: absolute;
		right: 0px;
		top: 0px;
	}

	section.portfolio.with-filterbar .section-header .item-content .headline {
		left: 50%;
    	position: absolute;
    	top: 45%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar {
		background-color: #222222;
		bottom: 0px;
		height: 90px;
		left: 75px;
		position: absolute;
		right: 75px;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar ul {
		align-items: stretch;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox; 
		display: -webkit-flex;
		display: flex; 
		flex-flow: row wrap;
		justify-content: center;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar ul li {
		cursor: pointer;
		margin: 0px 40px;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar ul li span {
		color: #888888;
		-webkit-transition: color 0.3s ease 0s;
		-moz-transition: color 0.3s ease 0s;
		-ms-transition: color 0.3s ease 0s;
		-o-transition: color 0.3s ease 0s;
		transition: color 0.3s ease 0s;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar ul li:hover span, 
	section.portfolio.with-filterbar .section-header .item-content .filterbar .bar ul li.active span {
		color: #ffffff;
	}

	section.portfolio.with-filterbar .section-header .item-content .headline img {	
		max-height: 100%;
		max-width: 100%;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar select {	
		background-color: transparent;
	    border: none;
	    color: #ffffff;
    	display: none;
	}

	section.portfolio.with-filterbar .section-header .item-content .filterbar select > option {	
	    color: #000000;
	}

	section.portfolio .portfolio-filter {
		bottom: 0px;
	    height: 0px;
		left: 0px;
		margin-top: 110px;
		position: absolute;
		right: 0px;
		top: 0px;
		z-index: 3;
	}

	section.portfolio .portfolio-filter ul {
	    left: 50%;
		opacity: 0;
	    position: absolute;
	    text-align: left;
	    -webkit-transform: scale(1, 0) translateX(-50%);
	    -moz-transform: scale(1, 0) translateX(-50%);
	    -ms-transform: scale(1, 0) translateX(-50%);
	    -o-transform: scale(1, 0) translateX(-50%);
	    transform: scale(1, 0) translateX(-50%);
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.portfolio .portfolio-filter li {
		cursor: pointer;
		height: 24px;
		margin-bottom: 25px;
		margin-left: 6px;
	}

	section.portfolio .portfolio-filter li:before {
		/*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='24px' height='24px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E %3Cg%3E %3Cpath style='fill:%23BBBBBB;' d='M12,2c5.514,0,10,4.486,10,10c0,5.514-4.486,10-10,10C6.486,22,2,17.514,2,12C2,6.486,6.486,2,12,2 M12,0C5.373,0,0,5.373,0,12c0,6.627,5.373,12,12,12c6.627,0,12-5.373,12-12C24,5.373,18.627,0,12,0L12,0z'/%3E %3C/g%3E %3C/svg%3E");*/
		background-image: url("../images/icons/icon-filter-unchecked.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 24px;
		content: " ";
		display: inline-block;
    	float: left;
		height: 24px;
		margin-right: 22px;
		opacity: 0.47;
		width: 24px;
		-webkit-transition: opacity 0.2s ease 0s;
		-moz-transition: opacity 0.2s ease 0s;
		-ms-transition: opacity 0.2s ease 0s;
		-o-transition: opacity 0.2s ease 0s;
		transition: opacity 0.2s ease 0s;
	}

	section.portfolio .portfolio-filter li span {
		color: #888888;
		float: left;
		line-height: 24px;
		-webkit-transition: color 0.2s ease 0s;
		-moz-transition: color 0.2s ease 0s;
		-ms-transition: color 0.2s ease 0s;
		-o-transition: color 0.2s ease 0s;
		transition: color 0.2s ease 0s;
	}

	section.portfolio .portfolio-filter li:hover:before {
		opacity: 1;
	}

	section.portfolio .portfolio-filter li.active:before {
		/*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='24px' height='24px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;' xml:space='preserve'%3E %3Cg%3E %3Ccircle style='fill:%23222222;' cx='12' cy='12' r='12'/%3E %3C/g%3E %3Cpolygon style='fill-rule:evenodd;clip-rule:evenodd;fill:%23EEEEEE;' points='16.836,7.493 17.997,8.669 10.259,16.507 9.099,15.331 '/%3E %3Cpolygon style='fill-rule:evenodd;clip-rule:evenodd;fill:%23EEEEEE;' points='6.003,12.196 7.164,11.021 11.42,15.331 10.259,16.507 '/%3E %3C/svg%3E");*/
		background-image: url("../images/icons/icon-filter-checked.png");
		opacity: 1;
	}

	section.portfolio .portfolio-filter li:hover span, 
	section.portfolio .portfolio-filter li.active span {
		color: #000000;
	}

	section.portfolio.active .section-header .item-content .filter {
		border-bottom-color: #cccccc;
	}

	section.portfolio.active .portfolio-filter {
		height: auto;
	}

	section.portfolio.active .portfolio-filter ul {
		opacity: 1;
	    -webkit-transform: scale(1, 1) translateX(-50%);
	    -moz-transform: scale(1, 1) translateX(-50%);
	    -ms-transform: scale(1, 1) translateX(-50%);
	    -o-transform: scale(1, 1) translateX(-50%);
	    transform: scale(1, 1) translateX(-50%);
		-webkit-transition: opacity 0.6s ease 0.3s;
		-moz-transition: opacity 0.6s ease 0.3s;
		-ms-transition: opacity 0.6s ease 0.3s;
		-o-transition: opacity 0.6s ease 0.3s;
		transition: opacity 0.6s ease 0.3s;
	}

	section.portfolio .section-header .item-media,
	section.portfolio .section-header .item-content .title,
	section.portfolio .section-header .item-content .text,
	section.portfolio .section-content,
	section.portfolio .section-filtered {
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.portfolio.active .section-header .item-media,
	section.portfolio.active .section-header .item-content .title,
	section.portfolio.active .section-header .item-content .text,
	section.portfolio.active .section-content,
	section.portfolio.active .section-filtered {
		opacity: 0.02;
	}

	section.portfolio .section-content {
		display: none;
	}

	section.portfolio .section-content, 
	section.portfolio .section-filtered {
		padding-bottom: 45px;
		padding-top: 100px;
	}

	section.portfolio .section-content .item,
	section.portfolio .section-filtered .item {
		margin-bottom: 55px;
		opacity: 1;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.portfolio .section-filtered .item:hover {
		opacity: 0.75;
	}

	section.portfolio .section-content .item .item-media a,
	section.portfolio .section-filtered .item .item-media a {
		line-height: 0px;
		margin-bottom: 20px;
	}

	section.portfolio .section-content .item .item-media img,
	section.portfolio .section-filtered .item .item-media img {
		width: 100%;
	}

	section.portfolio .section-content .item .item-content,
	section.portfolio .section-filtered .item .item-content {
		text-align: center;
	}


/* Project
================================================== */

	section.project {

	}

	section.project .section-header {
		margin-bottom: 120px;
		padding-right: 27%;
	}

	section.project .section-header .entry-title {
		margin-bottom: 40px;
	}

	section.project .section-header .entry-title .title {
		font-size: 14px;
		letter-spacing: 0.01em;
		text-transform: uppercase;
	}

	section.project .section-header .entry-content {
		margin-bottom: 50px;
	}

	section.project .section-header .entry-content p {
		font-size: 18px;
	}

	section.project .section-header .entry-extra {

	}

	section.project .section-header .entry-extra .button.icon:after {
		background-image: url("../images/icons/icon-arrow-light.png");
		opacity: 0.5;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	section.project .section-content {
		margin-bottom: 50px;
	}

	section.project .section-content .item .item-media {
		line-height: 0px;
		margin-bottom: 2%;
	}

	section.project .section-content .item:last-child .item-media {
		margin-bottom: 0px;
	}

	section.project .section-content .one-image {

	}

	section.project .section-content .one-image img {
		width: 100%;
	}

	section.project .section-content .two-images img {
		display: inline-block;
		width: 49%;
	}

	section.project .section-content .two-images img:last-child {
		float: right;
	}

	section.project .section-content.full-width .item {
		height: 540px;
		text-align: center;
	}

	section.project .section-content.full-width .item-media {
		margin-bottom: 0px;
	}

	section.project .section-content.full-width .item-media.dimmed {
		background-image: none !important
	}

	section.project .section-content.full-width .item-content {
		bottom: 0px;
		left: 0px;
		position: absolute;
		right: 0px;
		top: 0px;
	}

	section.project .section-content.full-width .item-content .video {
		background-color: #111111;
		bottom: 0px;
		left: 0px;
		position: absolute;
		right: 0px;
		top: 0px;
	}

	section.project .section-content.full-width .item-content .video video {
    	height: 100%;
		width: 100%;
	}

	section.project .section-content.full-width .item-content iframe {
    	height: 100%;
		width: 100%;
	}

	section.project .section-content .item-content .button.circle {
		left: 50%;
		position: absolute;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		
	}

	section.project .section-content .item-content .button.circle:before {
		background-color: #ffffff;
		background-image: url("../images/icons/icon-play-dark.png");
	}

	section.project .section-content .item-content .button.circle span {
		color: #ffffff;
		font-size: 20px;
		font-weight: 300;
		letter-spacing: 0.025em;
		text-transform: capitalize;
	}

	section.project .section-footer {
		
	}

	section.project .section-footer .social {
		text-align: right;
	}

	section.project .section-footer .social div {
		color: #000000;
		cursor: pointer;
		display: inline-block;
		font-size: 17px;
		font-weight: 300;
		letter-spacing: 0.025em;
		margin-left: 60px;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.project .section-footer .social div:hover {
		opacity: 0.75;
	}

	section.project .section-footer .social div:before {
		background-size: 16px;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
		display: inline-block;
		height: 16px;
		margin-right: 15px;
		width: 16px;
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}

	section.project .section-footer .social .facebook:before {
		background-image: url("../images/icons/icon-facebook-dark.png");
	}

	section.project .section-footer .social .twitter:before {
		background-image: url("../images/icons/icon-twitter-dark.png");
	}


/* Blog
================================================== */

	section.blog {
    	text-align: center;
	}

	section.blog .section-header {
  		height: 380px;
  		position: relative;
	}

	section.blog .section-header .item-content {
		left: 25%;
  		position: absolute;
  		text-align: center;
	    top: 50%;
	    right: 25%;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}

	section.blog .section-header .item-content .title {
		font-size: 60px;
	}

	section.blog .section-content {
		padding-top: 100px;
  		text-align: left;
	}

	section.blog .item {
		margin-bottom: 50px;
	}

	section.blog article.post {
		text-align: left;
		-webkit-transition: all 0.6s ease 0s;
		-moz-transition: all 0.6s ease 0s;
		-ms-transition: all 0.6s ease 0s;
		-o-transition: all 0.6s ease 0s;
		transition: all 0.6s ease 0s;
	}

	section.blog .item.active article.post {

	}

	section.blog .item.unactive article.post {
		opacity: 0.5;
	}

	section.blog article.post .entry-header .entry-thumbnail {
		cursor: pointer;
		margin-bottom: 15px;
		position: relative;
	}

	section.blog article.post .entry-header .entry-thumbnail img  {
		width: 100%;
	}

	section.blog article.post .entry-header .entry-title {
		color: #000000;
		cursor: pointer;
    	letter-spacing: 0.2em;
    	line-height: 30px;
		margin-bottom: 5px;
		text-transform: uppercase;
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	section.blog article.post .entry-content {
		margin-bottom: 30px;
	}	
	
	section.blog article.post .entry-content p {
		font-size: 14px;
		line-height: 30px;
	}	

	section.blog article.post .entry-meta {
		border-top-color: #cccccc;
		border-top-style: solid;
		border-top-width: 2px;
		margin-bottom: 0px;
		padding: 5px 0px;
	}

	section.blog article.post .entry-meta span {
		display: inline-block;
		font-size: 10.5px;
		letter-spacing: 0.2em;
		text-transform: uppercase;
	}

	section.blog article.post .entry-meta .categories-links {
		color: #000000;
	}

	section.blog article.post .entry-meta .categories-links:after {
		content: "/";
		display: inline-block;
		font-size: 11.5px;
		font-weight: 400;
		letter-spacing: 0.1em;
		margin-left: 4px;
		margin-right: 8px;
	}


/* Article
================================================== */

	section.article {
		
	}

	section.article .container {
		padding-left: 0px;
		padding-right: 0px;
		max-width: 960px;
		width: 100%;
	}

	section.article .section-header {
		margin-bottom: 15px;
	}

	section.article .section-header .entry-thumbnail {
		margin-bottom: 50px;
	}

	section.article .section-header .entry-thumbnail img {
		max-width: 100%;
   		max-height: 100%;
	}

	section.article .section-header .entry-title {
		padding-right: 160px;
	}

	section.article .section-header .entry-title .title {
		font-size: 24px;
		font-weight: 300;
		letter-spacing: 0.025em;
	}

	section.article .section-header .entry-meta {
		margin-bottom: 10px;
		padding-right: 160px;
	}

	section.article .section-header .entry-meta span {
		display: inline-block;
		font-size: 10.5px;
		letter-spacing: 0.2em;
		text-transform: uppercase;
	}

	section.article .section-header .entry-meta .categories-links {
		color: #000000;
	}

	section.article .section-header .entry-meta .categories-links:after {
		content: "/";
		display: inline-block;
		font-size: 11.5px;
		font-weight: 400;
		letter-spacing: 0.1em;
		margin-left: 4px;
		margin-right: 8px;
	}

	section.article .section-content {
		margin-bottom: 25px;
		padding-right: 160px;
	}

	section.article .section-content p {
		font-size: 16px;
		line-height: 32px;
		margin-bottom: 30px;
	}

	section.article .section-footer {
		
	}

	section.article .section-footer .social {
		text-align: right;
	}

	section.article .section-footer .social div {
		color: #000000;
		cursor: pointer;
		display: inline-block;
		font-size: 17px;
		font-weight: 300;
		letter-spacing: 0.025em;
		margin-left: 60px;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.article .section-footer .social div:hover {
		opacity: 0.75;
	}

	section.article .section-footer .social div:before {
		background-size: 16px;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
		display: inline-block;
		height: 16px;
		margin-right: 15px;
		width: 16px;
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}

	section.article .section-footer .social .facebook:before {
		background-image: url("../images/icons/icon-facebook-dark.png");
	}

	section.article .section-footer .social .twitter:before {
		background-image: url("../images/icons/icon-twitter-dark.png");
	}


/* Contact
================================================== */

	section.contact .offset {
		padding-bottom: 80px;
		padding-top: 200px;
	}

	section.contact .section-header {
		margin-bottom: 40px;
		margin-top: -19px;
	}

	section.contact .section-header .title {
		font-size: 60px;
		font-weight: 100;
		letter-spacing: 0.01em;
		text-transform: none;
	}

	section.contact .section-content a {
		border-bottom-color: #888888;
		line-height: 24px;
		margin-bottom: 20px;
		-webkit-transition: border 0.3s ease 0s;
		-moz-transition: border 0.3s ease 0s;
		-ms-transition: border 0.3s ease 0s;
		-o-transition: border 0.3s ease 0s;
		transition: border 0.3s ease 0s;
	}

	section.contact .section-content a span {
		color: #888888;
		font-size: 12.5px;
		line-height: 24px;
		-webkit-transition: color 0.3s ease 0s;
		-moz-transition: color 0.3s ease 0s;
		-ms-transition: color 0.3s ease 0s;
		-o-transition: color 0.3s ease 0s;
		transition: color 0.3s ease 0s;
	}

	section.contact .section-content a:after {
		background-image: url("../images/icons/icon-arrow-dark.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 16px;
		content: " ";
		display: inline-block;
		height: 16px;
		margin-left: 10px;
		opacity: 0;
		width: 16px;
		-webkit-transform: rotate(-90deg) translateX(-4px);
		-moz-transform: rotate(-90deg) translateX(-4px);
		-ms-transform: rotate(-90deg) translateX(-4px);
		-o-transform: rotate(-90deg) translateX(-4px);
		transform: rotate(-90deg) translateX(-4px);
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.contact .section-content a:hover:after {
		opacity: 0.27;
	}

	section.contact .section-content a:active span {
		color: #000000;
	}

	section.contact .section-content a:active:after {
		opacity: 1;
	}

	section.contact .section-content a.underline span {
		border-bottom-color: #888888;
	}

	section.contact .section-content a.underline:active {
		border-bottom-color: #000000;
	}

	section.contact .section-content a.underline:active span {
		border-bottom-color: #000000;
		color: #000000;
	}


/* Start
================================================== */

	section.start {
		text-align: center;
	}

	section.start.sent .section-header, 
	section.start.sent .section-content {
		opacity: 0.02;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.start .offset {
		padding-top: 200px;
	}

	section.start form {
		width: 100%;
	}

	section.start .section-header {
		margin-bottom: 75px;
		text-align: center;
	}

	section.start .section-header .title {
		font-size: 60px;
		font-weight: 200;
		letter-spacing: 0.01em;
	}

	section.start .section-content .item {
		margin-bottom: 48px;
	}

	section.start .section-content .item.one-half {
		margin-bottom: 0px;
	}

	section.start .section-content .item-content {
		padding-left: 0px;
		padding-right: 0px;
	}

	section.start .section-content .item-content span {
		color: #888888;
		float: left;
		margin-left: 20px;
	}

	section.start .section-content .item-content input, 
	section.start .section-content .item-content textarea {
		width: 100%;
	}

	section.start .section-content .item-content input.input-error {
		border-bottom-color: #cc181e;
	}

	section.start .section-content .item-content textarea.input-error {
		border-color: #cc181e;
	}

	section.start .section-content .item-content .input-error {
	   color: #cc181e;
	}

	section.start .section-content .item-content .input-error::-webkit-input-placeholder {
	   color: #cc181e;
	}

	section.start .section-content .item-content .input-error::-webkit-input-placeholder {
	   color: #cc181e;
	}

	section.start .section-content .item-content .input-error:-moz-placeholder { 
	   color: #cc181e;
	}

	section.start .section-content .item-content .input-error::-moz-placeholder {
	   color: #cc181e;
	}

	section.start .section-content .item-content .input-error:-ms-input-placeholder {  
	   color: #cc181e;
	}

	section.start .section-content .item-content .button.icon {
    	padding-right: 135px;
	}

	section.start .section-content .item-content .button.icon:after {
		background-image: url("../images/icons/icon-arrow-light.png");
		opacity: 0.5;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	section.start .section-footer .item {
		margin: 0px auto;
	}

	section.start .section-footer .title {
		font-size: 50px;
		font-weight: 200;
		line-height: 70px;
		letter-spacing: 0.01em;
		margin-bottom: 45px;
	}

	section.start .section-footer .action {
		cursor: pointer;
	}

	section.start .section-footer .action span {
		color: #888888;
		-webkit-transition: color 0.3s ease 0s;
		-moz-transition: color 0.3s ease 0s;
		-ms-transition: color 0.3s ease 0s;
		-o-transition: color 0.3s ease 0s;
		transition: color 0.3s ease 0s;
	}

	section.start .section-footer .action:hover span {
		color: #000000;
	}

	section.start .section-footer .action:before {
		background-image: url("../images/icons/icon-sent.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 32px;
		content: " ";
		display: block; 
		height: 32px;
		margin-bottom: 5px;
		margin-left: auto;
		margin-right: auto;
		opacity: 0.33;
		width: 32px;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}

	section.start .section-footer .action:hover:before {
		opacity: 1;
	}


/* Call to Action
================================================== */

	section.cta {

	}

	section.cta .item-content .button.icon:after {
		background-image: url("../images/icons/icon-arrow-light.png");
		opacity: 0.5;
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}