	.thumb-container {
		visibility: hidden;
		height:100vh;
		width: 100%;
		left:0px;
		position: fixed;
		top:0;
		z-index:100;
		opacity:1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05);	
		background-color:#161717;
	}
	
	
	.thumb-page {
		cursor: pointer;
		position: absolute;
		height:100vh;
		width:100%;
		top:0;
		left:0px;
		position: fixed;
		visibility:hidden;
		background-position:center center;
		background-size:cover;
		background-repeat:no-repeat;
	}
	
	.thumb-page::after {
		content: "";
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		left: 0;
		pointer-events: none;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
	}
	
/*--------------------------------------------------
	02. Filters
---------------------------------------------------*/		
	
	.filters-info {
		font-weight: 600;
		font-family: "Spectral", Sans-serif !important;
		font-size: 12px;
		line-height:30px;
		margin:25px 0;
		margin-left:0px;
		overflow: hidden;
		width:140px;
		color:#000;
		float:left;
		opacity:0;
		-webkit-transition:translateY(30px);
		transform: translateY(30px);
	}
	
	.light-content .filters-info {
		color:#fff;
	}
	
	#show-filters {
		opacity:0;
		display:inline-block;
		position:relative;
		cursor:pointer;
		-webkit-transition:translateY(55px);
		transform: translateY(55px);
	}
	
	#show-filters::before {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100%;
		height: 1px;
		background: rgba(255,255,255,1);
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .2s ease-out;
	}
  
    #show-filters:hover::before {
		transform: scaleX(0);
		transform-origin: right;
	}
	
	#filters-overlay {
		position:fixed;
		z-index:15;
		height:100vh;
		width:100%;
		top:0;
		left:0;
		right:0;
		bottom:0;
		opacity:0;
		visibility:hidden;
	    box-sizing: border-box;
		-webkit-transition: all 0.1s ease-in-out 0.6s;
		transition: all 0.1s ease-in-out 0.6s;
	}
	
	#filters-overlay.active {
		opacity:1;
		visibility:visible;
		-webkit-transition: all 0.3s ease-in-out 0.2s;
		transition: all 0.3s ease-in-out 0.2s;
	}
	
	#close-filters {
		position: fixed !important;
		height:100vh;
		width:100vw;
		top:0;
		left:0;
		right:0;
		bottom:0;
	}
	
	.magic-cursor-disabled #close-filters {
		position: fixed;
		height: 100vh;
		width: 100vw;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		cursor: url("../images/close.png"), e-resize;
	}
	
	#filters-overlay .outer {
		width: 100%;
		margin: 0 auto;
		padding: 80px;
		padding-top:160px;
		box-sizing: border-box;
	}
	
	#filters-overlay .inner {
		vertical-align: bottom;
		position: relative;
		pointer-events: none;
		text-align: left;
	}
	
	.filters-wrap {
		position: relative;
		width: 100%;
		max-height: 0px;
		opacity:0;
		margin-top: 100px;
		transition: all 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.2s;
		-webkit-transition: all 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.2s;
	}
	
	.filters-wrap.active {
		opacity: 1;
		max-height: 100px;
		transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
		-webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	
	#filters {
		height: auto;
		z-index: 15;
		position: relative;
		width: auto;
		display: inline-block;
		padding: 0;
		pointer-events: initial;
		margin: 0;
	}
	
	
	
	#filters li {
		display: block;
		opacity: 1;
		position: relative;
		margin: 5px 0;
		opacity: 0;
		text-align: left;
	}
	
	#filters li a {
		display: inline-block;
		color: #000;
		font-weight: 500;
		font-size: 36px;
		line-height: 50px;
		z-index: 15;
		position: relative;
		-webkit-transition: all 0.15s ease-in-out;
		transition: all 0.15s ease-in-out;
	}
	
	.light-content #filters li a {
		color: #FFF;
	}
	
	#filters li a::before {
		content: '';
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(255,255,255,1);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
  
    #filters li a:hover::before, #filters li a.active::before {
		transform: scaleX(1);
		transform-origin: left;
	}
/*--------------------------------------------------
	09. Portfolio Isotope Transitions
---------------------------------------------------*/

	.isotope, .isotope .isotope-item {
		-webkit-transition-duration: 1.8s;
		-moz-transition-duration: 1.8s;
		-ms-transition-duration: 1.8s;
		-o-transition-duration: 1.8s;
		transition-duration: 1.8s;
	}
	
	.isotope {
		-webkit-transition-property: height, width;
		-moz-transition-property: height, width;
		-ms-transition-property: height, width;
		-o-transition-property: height, width;
		transition-property: height, width;
	}
	
	.isotope .isotope-item {
		-webkit-transition-property: -webkit-transform, opacity;
		-moz-transition-property: -moz-transform, opacity;
		-ms-transition-property: -ms-transform, opacity;
		-o-transition-property: -o-transform, opacity;
		transition-property: transform, opacity;
	}
	
/*--------------------------------------------------
	03. Portfolio Layout
---------------------------------------------------*/	
	
	
	.portfolio-wrap {		
		position:relative;
		margin:0 auto;
		width: 100%;
		padding:0;
		box-sizing:border-box;
		margin-top:80px;
		min-height:50vh;
		
	}
	
	.portfolio-wrap.spaced {
		padding:0 30px;
	}
	
	.portfolio {
		position: relative;
		margin: 0 auto;
		padding: 0;
		box-sizing: border-box;
		-webkit-transition: height 0.5s ease-out;
		transition: height 0.5s ease-out;
	}
	
	.portfolio:after {
		content:""; 
		display:table; 
		clear:both;
	}
	
	.item {
		display: block;
		position: relative;
		box-sizing: border-box;
		z-index: 0;
		margin: 0px;
		width: 50%;
		height: 30vw;
		overflow:hidden;
	}
	
	.item.wide {
		margin: 0px;
		width: 100%;
		height: 45vw;
	}
	
	.spaced .item {
		width: calc(50% - 100px);
		margin: 50px;
		height: 27vw;
	}
	
	.spaced .item.wide {
		width: calc(100% - 100px);
		margin: 50px;
		height: 42vw;
	}
	
	.spaced.below-caption .item {
		margin-bottom:20px;
		height: 30vw;
	}
	
	.spaced.below-caption .item.wide {
		margin-bottom:20px;
		height: 45vw;
	}
	
	.below-caption .item {
		margin-bottom:20px;
		height: 35vw;
	}
	
	.below-caption .item.wide {
		margin-bottom:20px;
		height: 50vw;
	}
	
	.item.floating {
		display: block;
		position: relative;
		box-sizing: border-box;
		z-index: 0;
		margin:0!important;
		width: 100%!important;
		height: auto!important;
		overflow:visible;
		cursor:pointer;
		-webkit-transition: opacity 0.1s ease-in-out;
		transition: opacity 0.1s ease-in-out;	
	}
	
	.item.floating.first {
		margin-top:140px!important;
	}
	
	.below-caption .item.floating.first {
		margin-top:40px!important;
	}
	
	.below-caption.spaced .item.floating.first {
		margin-top:140px!important;
	}
	
	.item.floating.disable {
		opacity:0.2;
	}
	
	.item-appear {
		display: block;
		position: absolute;
		box-sizing: border-box;
		z-index: 0;
		width: 100%;
		height: 100%;				
	}
	
	.floating .item-appear {
		position: relative;
		padding:0 80px;
		max-width:1280px;
		margin:auto;
		left:0;
		right:0;
		opacity: 1;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	
	.below-caption .floating .item-appear {
		padding-bottom:0;
	}
	
	.item.above .item-content {
		opacity: 1!important;
	}
	
	.item-image::after {
		content: "";
		opacity:0;
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		left: 0;
		pointer-events: none;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
		-webkit-transition: all 0.6s ease-in-out;
		transition: all 0.6s ease-in-out;
	}
	
	.load-project-thumb .item-image::after {
		content: "";
		opacity:1;
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		left: 0;
		pointer-events: none;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
		-webkit-transition: all 0.6s ease-in-out;
		transition: all 0.6s ease-in-out;
	}

	.item-content {
		width: 100%;
		height: 100%;
		position:relative;
		opacity: 0;
		-webkit-transform:scale(1.2);
		transform: scale(1.2);
		-webkit-transition: all 2s cubic-bezier(.165,.84,.44,1) 0.2s;	
		transition: all 2s cubic-bezier(.165,.84,.44,1) 0.2s;				
	}
	
	.floating .item-content {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	.item.active .item-content {
		opacity: 1;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);	
	}
	
	.show-loader .item.active .item-content {
		-webkit-transition: all 0.5s cubic-bezier(.165,.84,.44,1) 0.2s;	
		transition: all 0.5s cubic-bezier(.165,.84,.44,1) 0.2s;
	}
	
	.item-wrap {
		width: 100%;
		height: 100%;
		position:absolute;  				
	}
	
	.floating .item-wrap {
		height: 0;				
	}
	
	.spaced-wrap-image {
		width: 100%;
		height: 100%;
		position:relative;
		overflow:hidden;
	}
	
	.floating .spaced-wrap-image {
		overflow:visible;
	}
	
	.item-wrap-image {
		width: 100%;
		height: 100%;
		position:relative;
		z-index:0;
		overflow:hidden;
		-webkit-transform:scale(1.05);
		transform: scale(1.05);
		-webkit-transition: all 1s cubic-bezier(.165,.84,.44,1) 0s;	
		transition: all 1s cubic-bezier(.165,.84,.44,1) 0s;			
	}
	
	.floating .item-wrap-image {
		overflow:visible;
		-webkit-transform:scale(1);
		transform: scale(1);
	}
	
	.item:hover .item-appear .item-wrap-image, .above .item-wrap-image {		
		-webkit-transform:scale(1);
		transform: scale(1);			
	}
	
	.item-image {
		background-size:cover;
		background-position:center center;
		background-repeat:no-repeat;
		width:100%;
		height: 100%;
		position:relative;
		display:block;
		z-index:100;
		cursor:pointer;
		background-color:#000;		
		overflow:hidden;
	}
	
	.thumb-no-ajax .item-image {
		pointer-events:none;
	}
	
	.floating .item-image {
		position: absolute;
		height: 100vh;
		width: 100vw;
		background-size:cover;
		background-position:center center;
		background-color:#222;
		z-index: 0;
		opacity: 0;
		pointer-events:none;
		visibility:visible;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transition: opacity 0.3s ease-in-out;
		transition: opacity 0.3s ease-in-out;				
	}
	
	.floating.show-image .item-image, .above.floating .item-image {
		opacity: 1!important;
		visibility:visible!important;
	}
	
	.floating .item-caption-wrap {
		padding:0;
		max-width:1280px;
		margin:auto;
		left:0;
		right:0;
	}
	
	.item-caption {
		z-index: 10;
		position: absolute;
		bottom: 0px;
		height: auto;
		padding:80px;
		box-sizing: border-box;
		width: 100%;
		cursor:default;
		pointer-events: none;
		text-align:left;
		-webkit-transition: all 0.3s ease-in-out 0.2s;
		transition: all 0.3s ease-in-out 0.2s;
		opacity:0;
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
	}
	
	.active .item-caption {
		opacity:1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}
	
	.floating .item-caption {
		position: relative;
		height: auto;
		padding:15px 0;		
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		opacity:0;
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
	}
	
	.active.floating .item-caption {
		opacity:1;
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}
	
	.item-title {		
		margin: 0;
		font-weight: 500;
		font-size:36px;
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
		display: block;
		position:relative;
		color:#000;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;		
	}
	
	.light-content .item-title {
		color:#fff;
	}
	
	.item:hover .item-title, .item.floating .item-title {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.item-cat {
		display:block;
		font-size: 12px;
		font-weight: 600;
		opacity: 1;
		margin-left:2px;
		line-height: 20px;
		overflow:hidden;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
		opacity:0;
		color:#000;
		-webkit-transition: all 0.1s ease-out;
		transition: all 0.1s ease-out;		
	}
	
	.light-content .item-cat {
		color:#fff;
	}
	
	.item:hover .item-cat, .item.floating .item-cat {
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
		opacity:1;
		-webkit-transition: all 0.1s ease-out 0.1s;
		transition: all 0.1s ease-out 0.1s;
	}
	
	.below-caption .item {
		overflow:visible;
	}
	
	.below-caption .item-appear {
		overflow:hidden;
		padding-bottom:150px;
	}
	
	.spaced.below-caption .item-appear {
		overflow:hidden;
		padding-bottom:100px;
	}
	
	.below-caption .item.floating .item-appear {
		overflow:visible;
	}
	
	.below-caption .item-caption {
		bottom: -80px;
		padding:40px 80px;
	}
	
	.spaced.below-caption .item-caption {
		bottom: -80px;
		padding:40px;
	}
	
	.spaced.below-caption .floating .item-appear {
		padding-bottom: 0px;
	}
	
	.below-caption .item-title {
		font-size: 24px;
		line-height:30px;
		transform: translateY(30px);
		-webkit-transform: translateY(30px);
	}
	
	.below-caption .item:hover .item-title{
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	.below-caption .item-cat {
		-webkit-transform: translateY(110px);
		transform: translateY(110px);	
	}
	
	.below-caption .item:hover .item-cat {
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	
	.spaced .item.floating.first, .spaced.below-caption .item.floating.first{
		margin-top:80px!important;
	}
	
	.spaced.below-caption .item.floating {
		margin: 0;
	}
	
	.below-caption .item.floating .item-caption {
		bottom:0!important;
		padding:15px 0px!important;
	}
	
	.spaced.below-caption .item.floating .item-caption {
		bottom:0!important;
		padding:15px 0px!important;
	}
	
	.item.floating .item-title {
		-webkit-transform: translateY(0px)!important;
		transform: translateY(0px)!important;
	}
	
	.item.floating .item-cat {
		-webkit-transform: translateY(15px)!important;
		transform: translateY(15px)!important;
		opacity:1;
	}
	
	.below-caption .item.floating .item-title {
		font-size: 36px;
		line-height:48px;
	}
	
	
	
	#hover-projects {
		position:relative;
		display:block;
		margin:0;
		height:auto;
	}
	
	#hover-projects.no-hero-above {
		margin-top: 200px;
		margin-bottom: 100px;
	}
	
	#hover-projects:hover li, .load-project-hover #hover-projects li{
		opacity:0.2;
	}
	
	#hover-projects li {
		list-style: none;
		position: relative;
		display: block;
		margin:0;
		padding: 40px 0;
		line-height: normal;
		-webkit-transition: all 0.1s ease-out 0s;
		transition: all 0.1s ease-out 0s;
	}
	
	#hover-projects:hover li:hover, #hover-projects li.above {
		opacity:1;
	}
	
	#hover-projects li a {
		opacity:0;
		position:relative;
		display:block;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
		-webkit-transition: all 0.3s ease-out 0s;
		transition: all 0.3s ease-out 0s;
	}
	
	#hover-projects li a.active {
		opacity:1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-transition: all 0.3s ease-out 0s;
		transition: all 0.3s ease-out 0s;
	}
	
	.hover-list-title .hl-title {
		font-size:48px;
		font-weight: 500;
		margin-left:-3px;
	}
	
	.hover-list-title .hl-cat {
		font-size:12px;
		font-weight: 600;
	}
	
	#image-slider {
		width:100%;
		height:100vh;
		position:fixed;
		top:0;
		right:0;
		overflow:hidden;
		opacity:0;
		border-radius:0px;		
	}
	
	.image-slider-wrapper {
		position: absolute;
		height: 100%;
		width: 100%;
	}
	
	#image-slider::after {
		content: "";
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		left: 0;
		pointer-events: none;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
	}
	
	#image-slider .slider-img {
		position: absolute;
		height:100%;
		width:100%;
		background-size:cover;
		background-position:center center;
		background-color:#222;
		visibility:hidden;
		top: 0;
		left: 0;
		z-index: 0;
		opacity: 0;
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;		
	}
	
	#image-slider .slider-img.active {
	  opacity: 1;
	  visibility: visible;
	  -webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	
	#main-content.transparent {
		background-color:transparent!important;
	}
	
	


/*--------------------------------------------------
	Project Page Navigation
---------------------------------------------------*/	
	
	#project-nav {
		height: 100vh;
		width: 100%;
		color: #000;
		position: absolute;
		margin-bottom: 0;
		bottom: -100vh;
	}
	
	.light-content #project-nav {
		color: #fff;
	}
	
	.next-project-wrap {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		z-index: 3;
	}
	
	.next-project-image {
		position: fixed;
		top:50%;
		opacity:0;
		left: 0;
		height: 100vh;
		width: 100%;
		overflow:hidden;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	
	.next-project-image-bg {
		position: absolute;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
		background-size: cover;
		background-position:center center;
		background-repeat: no-repeat;
		opacity:1;
		-webkit-transform: scale(1.05) translateY(0%);
		transform: scale(1.05) translateY(0%);
	}
	
	.next-project-image::after {
		content: "";
		width: 100%;
		height: 60%;
		position: absolute;
		bottom: 0;
		left: 0;
		pointer-events: none;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
	}
	
	.next-project-title {
		display: table;
		width: 100%;
		padding: 80px 80px 240px 80px;
		margin: 0 auto;
		height: 100%;
		position: relative;
		box-sizing: border-box;
		top:-40%;
		opacity:0;
	}
	
	.next-project-title .inner {
		vertical-align: bottom;
	}

	.main-title {
		display:table;
		width:auto;
		font-size:48px;
		line-height:70px;
		font-weight: 500;
		z-index:10;
		color:#000;		
		position:relative;
		margin-top: 30px;
	}
	
	.light-content .main-title {
		color:#FFF;		
	}
	
	.main-title span {
		background-image: linear-gradient(transparent calc(100% - 3px), #000 1px);
		background-size: 0;
		background-repeat: no-repeat;
		display: inline;
		transition: 0.5s ease;
	}
	
	.light-content .main-title span {
		background-image: linear-gradient(transparent calc(100% - 3px), #fff 1px);
	}
  
  	.main-title:hover span {    
      	background-size: 100%;
    }
	
	.page-is-changing .main-title span {
		background-size: 0;
		transition: 0.3s ease;
	}
	
	.next-title {
		margin-bottom: 0;
		line-height: 20px;
		height:20px;
		overflow:hidden;
		position: relative;
		left: 0;
		display: block;
		font-size:16px;
		font-weight: 600;
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
	}
	
	.light-content .next-title {
		color:#FFF;		
	}
	
	.next-subtitle-name {
		margin-bottom: 0;
		opacity: 1;
		line-height: 20px;
		height:20px;
		overflow:hidden;
		position: relative;
		left: 0;
		display: block;
		font-size:16px;
		font-weight: 600;
		font-family: "Spectral", Sans-serif !important;
		color: #000;
	}
	
	.next-subtitle-name {
		transform: translateY(50px);
		-webkit-transform: translateY(50px);
		opacity:0;
	}
	
	.light-content .next-subtitle-name {
		color: #fff;
	}
	
/*--------------------------------------------------
	Responsive
---------------------------------------------------*/	

@media only screen and (max-width: 1466px) {
	
	#filters-overlay .outer {
		padding: 60px;
	}
	
	.item-caption {
		padding: 60px;
	}
	
	.floating .item-appear, .floating .item-caption-wrap {
    	padding-left:30px;
		padding-right:30px;
		box-sizing:border-box;
	}
	
	.spaced .floating .item-appear, .spaced .floating .item-caption-wrap {
    	padding-left:30px;
		padding-right:30px;
		box-sizing:border-box;
	}
	
	.floating .item-caption {
		padding-left:0px;
		padding-right:0px;
		box-sizing:border-box;
	}
	
	.next-project-title {
		padding: 60px 30px 220px 60px;
	}
	
	.floating .item-image {
		height: 65vw;
		width: 100vw;
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	
	.portfolio-wrap.spaced {
		padding:0 10px;
	}
	
	.spaced .item {
		height: 27vw;
	}
	
	.spaced .item.wide {
		height:47vw;
	}
	
	.below-caption .item {
		height: 40vw;
	}
	
	.below-caption .item.wide {
		height:55vw;
	}
	
	.spaced.below-caption .item {
		margin-bottom:20px;
		height: 33vw;
	}
	
	.spaced.below-caption .item.wide {
		margin-bottom:20px;
		height: 50vw;
	}
	
	.spaced.below-caption .item-caption {
		bottom: -80px;
		padding: 40px 30px;
	}
	
	.below-caption .item-caption {
		bottom: -80px;
		padding:40px 60px;
	}
	
	.below-caption .item.floating .item-caption {
		padding: 15px 0px !important;
	}
	
	.below-caption .floating .item-appear, .below-caption .floating .item-caption-wrap {
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
	.below-caption.spaced .floating .item-appear, .below-caption.spaced .floating .item-caption-wrap {
		padding-left: 30px;
		padding-right: 30px;
		box-sizing: border-box;
	}
	
}

@media only screen and (max-width: 1280px) {
	
	
	.spaced .floating .item-appear, .spaced .floating .item-caption-wrap {
    	padding-left:25px;
		padding-right:25px;
		box-sizing:border-box;
	}
	
	.below-caption.spaced .floating .item-appear, .below-caption.spaced .floating .item-caption-wrap {
		padding-left: 25px;
		padding-right: 25px;
		box-sizing: border-box;
	}
	
}

@media only screen and (max-width: 1024px) {	
	
	#filters-overlay .outer {
		padding: 40px;
		padding-bottom:80px;
	}
	
	#filters li a {
		font-size: 24px;
		line-height: 40px;
	}
	
	.item-caption {
		padding: 40px;
	}
	
	.item-title {
    	font-size: 32px;
	}
	
	.floating .item-appear, .floating .item-caption-wrap, .floating .item-caption {
    	padding-left:14px;
		padding-right:14px;
		box-sizing:border-box;
	}
	
	.spaced .floating .item-appear, .spaced .floating .item-caption-wrap {
    	padding-left:7px;
		padding-right:7px;
		box-sizing:border-box;
	}
	
	.below-caption .floating .item-appear, .below-caption .floating .item-caption-wrap {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
	
	.below-caption.spaced .floating .item-appear, .below-caption.spaced .floating .item-caption-wrap {
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
	}
	
	.next-project-title {
		padding: 80px 40px 220px 40px;
	}
	
	.main-title span, .light-content .main-title span {
		background-image: none;
	}
	
	.hover-list-title .hl-title {
		font-size: 36px;
	}
	
	.portfolio-wrap.spaced {
		padding:0 10px;
	}
	
	.spaced .item {
		width: calc(50% - 60px);
		margin: 30px;
		height: 27vw;
	}
	
	.spaced .item.wide {
		width: calc(100% - 60px);
		margin: 30px;
		height:50vw;
	}
	
	.below-caption .item {
		height: 45vw;
	}
	
	.below-caption .item.wide {
		height:65vw;
	}
	
	.spaced .item.floating {
		width: 100%;
		height: auto;
		margin: 0px;
	}
	
	.spaced.below-caption .item {
		margin-bottom:20px;
		height: 37vw;
	}
	
	.spaced.below-caption .item.wide {
		margin-bottom:20px;
		height: 60vw;
	}
	
	.below-caption .item-appear {
		overflow: hidden;
		padding-bottom: 130px;	
	}
	
	.below-caption .item-caption {
		bottom: -80px;
		padding: 40px 40px;
	}
	
	.spaced.below-caption .item-caption {
		bottom: -40px;
		padding:20px;
	}
	
	.below-caption .item.floating .item-caption {
		padding: 15px 0px !important;
	}
	
	.spaced.below-caption .item.floating .item-caption {
		padding: 15px 10px !important;
	}
	
	.below-caption .item-title {
		font-size: 20px;
		line-height:24px;
		transform: translateY(30px);
		-webkit-transform: translateY(30px);
	}
	
	.below-caption .item:hover .item-title{
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	
	.below-caption .item-cat {
		-webkit-transform: translateY(110px);
		transform: translateY(110px);	
	}
	
	.below-caption .item:hover .item-cat {
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	
	.below-caption .item.floating .item-title {
		font-size: 32px;
	}
	
}

@media only screen and (max-width: 767px) {
	
	#filters-overlay .outer {
		padding: 30px;
		padding-bottom:80px;
	}
	
	.item, .item.wide {
		margin: 0px;
		width: 100%;
		height: 65vw;
	}
	
	.item.floating, .item.wide.floating {
		height: auto;
	}
	
	.item-caption {
		padding: 40px 30px;
	}
	
	.item-title {
    	font-size: 24px;
	}
	
	.floating .item-appear, .floating .item-caption-wrap, .floating .item-caption {
    	padding-left:10px;
		padding-right:10px;
	}
	
	.spaced .floating .item-appear, .spaced .floating .item-caption-wrap {
    	padding-left:10px;
		padding-right:10px;
		box-sizing:border-box;
	}
	
	.below-caption .floating .item-appear, .below-caption .floating .item-caption-wrap {
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;	
	}
	
	.next-project-title {
		padding: 80px 30px 220px 30px;
	}
	
	.main-title {
		font-size: 32px;
		line-height: 40px;
		margin-top: 20px;
	}
	
	#hover-projects.no-hero-above {
		margin-top: 100px;
		margin-bottom: 50px;
	}
	
	.hover-list-title .hl-title {
		font-size: 30px;
	}
	
	.portfolio-wrap.spaced {
		padding:0px;
	}
	
	.below-caption .item, .below-caption .item.wide {
		height:70vw;
	}
		
	.spaced .item, .spaced .item.wide {
		width: calc(100% - 60px);
		margin: 30px;
		height:55vw;
	}
	
	.spaced.below-caption .item {
		margin-bottom:20px;
		height: 65vw;
	}
	
	.spaced.below-caption .item.wide {
		margin-bottom:20px;
		height: 65vw;
	}
	
	.below-caption .item.floating .item-title {
		font-size: 24px;
	}
	
	.below-caption .item-caption {
		bottom: -80px;
		padding: 40px 30px;
	}
	
	.spaced.below-caption .item-caption {
		bottom: -80px;
		padding: 40px 40px;
	}
	
	
}

@media only screen and (max-width: 479px) {
	
	#filters-overlay .outer {
		padding: 20px;
		padding-bottom:80px;
	}
	
	.portfolio {
		overflow:hidden;
	}
	
	.item-caption {
		padding: 40px 20px;
	}
	
	.floating .item-appear, .floating .item-caption-wrap, .floating .item-caption {
    	padding-left:7px;
		padding-right:7px;
	}
	
	.spaced .floating .item-appear, .spaced .floating .item-caption-wrap {
    	padding-left:5px;
		padding-right:5px;
		box-sizing:border-box;
	}
	
	.below-caption .floating .item-appear, .below-caption .floating .item-caption-wrap {
    	padding-left:10px;
		padding-right:10px;
		box-sizing:border-box;
	}
	
	.below-caption.spaced .floating .item-appear, .below-caption.spaced .floating .item-caption-wrap {
		padding-left: 5px;
		padding-right: 5px;
		box-sizing: border-box;
	}
	
	.next-project-title {
		padding: 80px 20px 220px 20px;
	}
	
	.main-title {
		font-size: 32px;
		line-height: 40px;
		margin-top: 20px;
	}
	
	.below-caption .item, .below-caption .item.wide {
		height:90vw;
	}
	
	.spaced .item, .spaced .item.wide {
		width: calc(100% - 40px);
		margin: 20px;
		height:55vw;
	}
	
	.spaced.below-caption .item {
		margin-bottom:20px;
		height: 80vw;
	}
	
	.spaced.below-caption .item.wide {
		margin-bottom:20px;
		height: 80vw;
	}
	
	.below-caption .item.floating .item-caption {
		padding: 15px 0px !important;
	}
	
	.below-caption .item-caption {
		bottom: -80px;
		padding: 40px 20px;
	}
		
}