/**RESET**/

* {margin: 0px; padding: 0px; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -ms-text-size-adjust: 100%; text-size-adjust: 100%; -moz-osx-font-smoothing: grayscale;}
.clear {clear: both; width: 100%; display: block;}
.bold {font-weight: 700;}
.italic {font-weight: italic;}
a, img, button {background: none; outline: none; border: 0px; text-decoration: none;}
button {-webkit-transition: all .125s ease-in-out; -moz-transition: all .125s ease-in-out; transition: all .125s ease-in-out;}
img {max-width: 100%;}
ul, li {list-style-type: none;}
html, body {position: absolute; width: auto; min-width: 100%; max-width: 100%; min-height: 100%; overflow: auto; overflow-x: hidden !important;}
html {-ms-content-zooming: none;}
@-ms-viewport {width: device-width;}
.fade {opacity: 1.0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; transition: opacity .125s ease-in-out; -moz-transition: opacity .125s ease-in-out; -webkit-transition: opacity .125s ease-in-out; -webkit-backface-visibility: hidden;}
.fade:hover, .fade:active {opacity: .75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";}


/**PRELOADER**/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	background: #fff;
	}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../images/loading.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	margin: -100px 0 0 -100px;
	}

/****BASIC STYLES****/

body {
	font-size: 24px;
	line-height: 1.6;
	color: #000;
	background: #fff;
	font-family: 'europa', sans-serif;
   font-weight: 400;
	box-sizing: border-box;
	}

.block {
	margin: 0;
	width: auto;
	min-width: 100%;
	display: block;
	position: relative;
	box-sizing: border-box;
}

.contain {
	position: relative;
	margin: 0px auto;
	display: block;
	padding: 0 70px;
	box-sizing: border-box;
	width: 100%;
	}

.visible-md {display: none !important;}
.visible-sm {display: none !important;}
.visible-xs {display: none !important;}


@media screen and (max-width: 1199px) {

	.contain {padding: 0 60px;}
	.hidden-md {display: none !important;}
	.visible-md {display: block !important;}

}

@media screen and (max-width: 991px) {

	.contain {padding: 0 50px;}
	.hidden-sm {display: none !important;}
	.visible-sm {display: block !important;}

}

@media screen and (max-width: 767px) {

	.hidden-xs {display: none !important;}
	.visible-xs {display: block !important;}
	.contain {padding: 0 30px;}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

}

@media screen and (max-width: 349px) {

	.contain {padding: 0 20px;}

}


/****BASIC TYPOGRAPHY****/

a:link {
	color: #fff;
	text-decoration: none;
	position: relative;
	}

a:not(.grid-item) {
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

a:active {
	color: #fff;
	text-decoration: none;
	}

a:visited {
	color: #fff;
	text-decoration: none;
	}

a:hover {
	color: #fff;
	text-decoration: none;
	}

a:before, a:after {
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

a[href^="tel:"] {
  color: #000;
  text-decoration: none;
}

h1, h2 {
	font-size: 42px;
	line-height: 1.25;
	font-weight: 300;
}

h3 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .125em;
	line-height: 1.4;
}

input,
textarea,
button {font-family: 'europa', sans-serif;}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 1199px) {

	body {font-size: 21px;}
	h1 {font-size: 38px;}
	h2 {font-size: 34px;}
	h3 {font-size: 13px;}

}

@media screen and (max-width: 767px) {

	body {font-size: 16px;}
	h1 {font-size: 34px;}
	h2 {font-size: 24px;}

}

@media screen and (max-width: 349px) {

	body {font-size: 15px;}
	h1 {font-size: 30px;}

}



/****HEADER****/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 10000;
}

header .flex {
	height: 70px;
}

header a.logo {
	width: 214px;
}

header a.logo img {
	width: 100%;
	display: block;
}

header #navBtn {
	width: 30px;
	height: 19px;
	background: none;
	border: 0;
	outline: none;
	cursor: pointer;
	text-indent: -9999px;
	position: relative;
}

header #navBtn span {
	height: 3px;
	width: 100%;
	display: block;
	background: #003d22;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

header #navBtn:before,
header #navBtn:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
		background: #003d22;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

header #navBtn:before {
	top: 0;
}

header #navBtn:after {
	bottom: 0;
}

header #navBtn:hover {
}

header #navBtn:hover span,
header #navBtn:hover:before,
header #navBtn:hover:after {
	background: #63a857;
}

@media screen and (max-width: 1199px) {

	header .flex {height: 60px;}

}


/****NAV****/

#sideNav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10002;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

#sideNav.open {
	opacity: 1;
	visibility: visible;
}

#sideNav #overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.65);
}

#sideNav #nav {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 490px;
	padding: 20px 70px 70px;
	box-sizing: border-box;
	background: #fff;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);
}

#sideNav.open #nav {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

#sideNav #close {
	width: 30px;
	height: 30px;
	background: none;
	border: 0;
	outline: none;
	cursor: pointer;
	float: right;
	position: relative;
	text-indent: -9999px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

#sideNav #close:before,
#sideNav #close:after {
	content: '';
	position: absolute;
	background: #003d22;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#sideNav #close:before {
	width: 100%;
	height: 2px;
	left: 0;
	top: calc(50% - 1px);
}

#sideNav #close:after {
	width: 2px;
	height: 100%;
	top: 0;
	left: calc(50% - 1px);
}

#sideNav #close:hover:before,
#sideNav #close:hover:after {
	background: #63a857;
}

#sideNav ul {
	display: block;
	margin: 80px 0 0;
}

#sideNav ul li {
	display: block;
}

#sideNav ul li a {
	font-size: 42px;
	line-height: 1.5;
	display: table;
	position: relative;
	font-weight: 300;
}

#sideNav a:link,
#sideNav a:visited {
	color: #63a857;
}

#sideNav a:active,
#sideNav a:hover {
	color: #003d22;
}

#sideNav ul li.on a {
	color: #003d22 !important;
}

#sideNav .cont,
.contact {
	font-size: 16px;
	line-height: 1.25;
}

#sideNav .cont {
	position: absolute;
	bottom: 70px;
}

#sideNav .cont p,
#sideNav .cont :not(p) a,
.contact p,
.contact :not(p) a {
	display: block;
}
#sideNav .cont p a,
.contact p a {
	display: inline-block;
	color: #003d22;
}

#sideNav .cont span,
.contact span {
	font-size: 11px;
	font-weight: 700;
	color: #63a857;
	width: 15px;
	display: inline-block;
}

#sideNav .cont .email,
#sideNav .cont .phone,
.contact .email,
.contact .phone {
	margin-top: 17px;
	display: block;
}

#sideNav .cont .dir,
.contact .dir {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 8px;
}

#sideNav .cont .social a {
	display: inline-block;
	margin-right: 10px;
	margin-top: 25px;
	font-size: 18px;
}

@media screen and (max-width: 1199px) {

	#sideNav .cont {bottom: 60px;}
	#sideNav #nav {padding: 15px 60px 60px;}
	#sideNav ul {margin: 70px 0 0;}
	#sideNav ul li a {font-size: 40px;}

}

@media screen and (pointer: coarse) and (max-width: 1199px) {

	#sideNav .cont {bottom: 90px;}

}

@media screen and (min-width: 768px) and (max-height: 699px) {

	#sideNav ul {margin: 50px 0 0;}
	#sideNav .cont {bottom: 40px;}
	#sideNav ul li a {font-size: 32px;}
	#sideNav .cont {font-size: 14px;}

}

@media screen and (min-width: 768px) and (max-height: 549px) {
	#sideNav .cont {display: none;}

}

@media screen and (max-width: 991px) {

	#sideNav #nav {padding: 15px 50px 50px;}

}

@media screen and (max-width: 767px) {

	#sideNav .cont {font-size: 13px;}

	#sideNav #nav {
		padding: 15px 30px 30px;
		width: calc(100% - 65px);
	}

	#sideNav ul {margin-top: 30px;}

	#sideNav ul li a {font-size: 30px;}

	#sideNav .cont span,
	#sideNav .cont .dir,
	.contact span,
	.contact .dir {
		font-size: 10px;
	}

	#sideNav .cont .dir {
		font-size: 12px;
	}

	#sideNav .cont .email,
	#sideNav .cont .phone,
	.contact .email,
	.contact .phone {
		margin-top: 15px;
	}

	#sideNav .cont p:first-of-type {
		display: none;
	}

	#sideNav .cont .social a {
		margin-top: 20px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#sideNav .cont {bottom: 100px;}

}

@media screen and (max-width: 767px) and (orientation: landscape) {

		#sideNav ul {margin-top: 20px;}

		#sideNav ul li a {font-size: 30px;}

		#sideNav .cont {
			right: 30px;
			text-align: right;
			font-size: 12px;
			bottom: 30px;
		}

}

@media screen and (max-width: 349px) {

	#sideNav .cont {bottom: 80px;}

	#sideNav #nav {
		padding: 10px 20px 20px;
		width: calc(100% - 50px);
	}

	#sideNav ul li a {font-size: 30px;}

	#sideNav .cont {font-size: 13px;}

}


/****HOME PAGE****/

#landing,
#hero {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

#landing {
	background: url(../images/home/landing.jpg) no-repeat center center;
	background-size: cover;
	z-index: 10001;
}

#landing div {
	position: relative;
	top: calc(50% - 30px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
}

#landing img {
	display: block;
	margin: 0 auto;
	width: 85%;
	max-width: 470px;
}

#landing span {
	display: block;
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: .15em;
	margin: 25px auto 0;
	font-weight: 700;
}

#hero .cycle-slideshow {
	width: 100%;
	height: 100%;
}

#hero .slide {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	border: 70px solid #fff;
	box-sizing: border-box;
}

#hero .slide .wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#hero .slide .detail {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: url(../images/bg-fade.png) repeat-x left bottom;
	background-size: auto 300px;
	padding: 0 30px 30px;
	box-sizing: border-box;
	color: #fff;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#hero .slide .detail * {
	opacity: 0;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
	transition-delay: .5s;
}

#hero .cycle-slide-active .detail * {
	opacity: 1;
}

#hero .slide .detail h1 {
	width: 100%;
	-ms-flex-align: end;
	align-items: flex-end;
	height: calc(100% - 36px);
}

#hero .slide .detail .loc,
.grid-item .cat {
	font-size: 16px;
	line-height: 1;
	width: 80%;
	display: block;
}

#hero .slide .detail .info,
.grid-item .info {
	position: relative;
	text-indent: -9999px;
	width: 26px;
	height: 26px;
	background: url(../images/icons/info.svg) no-repeat center center;
	background-size: 100%;
	display: block;
	overflow: hidden;
	float: right;
}

#hero .slide .detail .info:before,
.grid-item .info:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 26px;
	height: 26px;
	background: url(../images/icons/info-hov.svg) no-repeat center center;
	background-size: 100%;
	opacity: 0;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#hero  .slide .detail .info:hover:before,
.grid-item .info:hover:before {
	opacity: 1;
}

#hero .slide #more {
	position: absolute;
	bottom: -48px;
	left: 50%;
	font-weight: 700;
	font-size: 14px;
	line-height: 2;
	color: #003d22;
	letter-spacing: .15em;
	text-transform: uppercase;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
}

#hero .cycle-slide-active #more {
	opacity: 1;
}

#hero .slide #more:hover,
#hero .slide #more:active {
	color: #63a857;
}

#hero .slide .next {
	width: 17px;
	height: 65px;
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	transform: translateY(50%);
	margin-left: -8.5px;
	background: url(../images/icons/arrow-down.svg) no-repeat center center;
	background-size: 100%;
	cursor: pointer;
}

#hero .slide .next:before {
	width: 17px;
	height: 65px;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: url(../images/icons/arrow-down-hov.svg) no-repeat center center;
	background-size: 100%;
	opacity: 0;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#hero .slide .next:hover:before {
	opacity: 1;
}

@media screen and (max-width: 1199px) {

	#hero .slide {border-width: 60px;}
	#hero .slide #more {bottom: -43px;}

}

@media screen and (pointer: coarse) and (max-width: 1199px) {

	#hero .slide {border-width: 60px 50px 80px;}

}

@media screen and (max-width: 767px) {

	#landing span {
		font-size: 14px;
		letter-spacing: .1em;
	}

	#hero .slide .detail .info,
	#hero .slide .detail .info:before,
	.grid-item .info,
	.grid-item .info:before {
		width: 20px;
		height: 20px;
	}

	#hero .slide .detail .loc,
	.grid-item .cat {
		font-size: 15px;
	}

	#hero .slide .next,
	#hero .slide .next:before {
		width: 13px;
		height: 48px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#hero .slide {border-width: 60px 0 120px;}

	#hero .slide .detail {
		padding-bottom: 40px;
	}

	#hero .slide #more {bottom: -40px;}

}

@media screen and (max-width: 767px) and (orientation: landscape) {

	#landing div {
		top: 50%;
	}

	#hero .slide {border-width: 60px 30px 30px;}

	#hero .slide .detail {
		padding-bottom: 30px;
	}
	#hero .slide #more {
		bottom: -28px;
		font-size: 13px;
	}

}



/****PORTFOLIO****/

#sub-top {
	padding-top: 155px;
}


#sub-top .flex {
	-ms-flex-align: baseline;
	align-items: baseline;
}

#sub-top #filters {
	width: auto;
	text-align: right;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#sub-top #filters h3 {
	display: inline-block;
	float: left;
	margin: 0;
	cursor: pointer;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
	position: relative;
	padding: 0 9px;
}

#sub-top #filters h3:before {
	content: ':';
	position: absolute;
	right: -2px;
	bottom: 0;
}

#sub-top #filters h3:last-of-type {
	padding-right: 0;
}

#sub-top #filters h3:last-of-type:before {
	display: none;
}

#sub-top #filters h3.active {
	color: #63a857;
}

@media screen and (min-width: 992px) and (pointer: fine) {

	#sub-top #filters h3:hover {
		color: #63a857;
	}

}

#filterMob h3 {
	color: #63a857;
}

#filterMob.active {
	opacity: .5;
}

.grid {
	width: calc(100% + 30px);
	margin-left: -15px;
}

#work-grid {
	padding-top: 45px;
	padding-bottom: 40px;
}

.grid-sizer,
.grid-item {
	width: calc(50% - 30px);
	position: relative;
	float: left;
	margin: 0 15px 30px;
}

.grid-item .bg {
	position: relative;
	display: block;
	width: 100%;
	height: 28.875vw;
	background-position: center center;
	background-size: cover;
}

.grid-item .hov {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 30px 40px;
	box-sizing: border-box;
	background: rgba(0, 61, 34, .7);
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

.grid-item:hover .hov {
	opacity: 1;
	visibility: visible;
}

.grid-item h2 {
	width: 80%;
	-ms-flex-align: end;
	align-items: flex-end;
	height: calc(100% - 36px);
}

.grid-item h2 .cat {
	font-size: 16px;
	line-height: 1;
}

@media screen and (max-width: 1199px) {

	.grid-item .hov {
		padding: 30px;
	}

	#work-grid {
		padding-bottom: 30px;
	}

}

@media all and (pointer: coarse) {

	.grid-item .hov {
		position: relative;
		height: auto;
		top: auto;
		left: auto;
		padding: 10px 0 0;
		background: none;
		display: block;
		opacity: 1;
		visibility: visible;
		color: #003d22;
	}

	.grid-item h2 {
		width: 90%;
		display: block;
		height: auto;
		color: #003d22;
	}

	.grid-item .info {
		display: none;
	}

}

@media screen and (min-width: 768px) and (max-width: 991px),
screen and (max-width: 767px) and (orientation: portrait),
screen and (max-width: 599px) and (orientation: landscape) {

	.grid {
		width: 100%;
		margin-left: 0;
	}

	.grid-sizer,
	.grid-item {
		width: 100%;
		margin: 0 0 30px;
	}

	.grid-item .bg {
		height: 60vw;
	}

}

@media screen and (max-width: 991px) {

	#sub-top #filters {
		width: 100vw;
		position: absolute;
		right: 0;
		bottom: -5px;
		transform: translateY(100%);
		padding: 10px 50px 80px;
		background: #fff;
		z-index: 1;
		opacity: 0;
		visibility: hidden;
	}

	#sub-top #filters.active {
		opacity: 1;
		visibility: visible;
	}

	#sub-top #filters:before {
		content: '';
		position: absolute;
		top: 0;
		right: 50px;
		height: 2px;
		width: 25px;
		background: #003d22;
	}

	#sub-top #filters h3 {
		display: block;
		float: none;
		margin: 0;
		padding: 5px 0;
	}

	#sub-top #filters h3:before {
		display: none;
	}

	#work-grid {
		padding-bottom: 20px;
	}

}

@media screen and (max-width: 767px) {

	#sub-top {
		padding-top: 115px;
	}

	#sub-top #filters {
		padding: 10px 30px 80px;
	}

	#sub-top #filters:before {
		right: 30px;
	}

	#work-grid {
		padding-top: 25px;
	}

}

@media screen and (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {

	.grid {
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	.grid-sizer,
	.grid-item {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	.grid-sizer,
	.grid-item {
		margin: 0 0 20px;
	}

}



/****RE-IMAGINE****/

.hideme {
	opacity: 0;
	-webkit-transition: opacity 1s ease .75s;
	-moz-transition: opacity 1s ease .75s;
	transition: opacity 1s ease .75s;
}

#ba {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 45px;
	padding-bottom: 40px;
}

#ba img {
	width: calc(50% - 15px);
	margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {

	#ba {
		padding-bottom: 30px;
	}

}

@media screen and (max-width: 991px) {

	.hideme {
		opacity: 1 !important;
	}

	#ba {
		padding-bottom: 20px;
	}

}

@media screen and (max-width: 767px) {

	#rei #sub-top .flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#rei #sub-top h3 {
		width: 100%;
		text-align: left;
		margin: 15px 0 0;
	}

	#ba img {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}

	#ba {
		padding-top: 25px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#ba img {
		width: calc(50% - 3px);
	}

}


/****PRESS****/

#pub {
	padding-top: 45px;
	padding-bottom: 40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#pub a {
	width: calc(33.333% - 20px);
	margin: 0 0 30px;
	display: block;
	position: relative;
	margin-right: 30px;
}

#pub a:nth-child(3n) {
	margin-right: 0;
}

#pub a img {
	width: 100%;
	display: block;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
}

@media screen and (pointer: fine) {

	#pub a img {
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}

	#pub a img:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

}

@media screen and (min-width: 1400px) {

	#pub a {
		width: calc(25% - calc(90px / 4));
	}

	#pub a:nth-child(3n) {
		margin-right: 30px;
	}

	#pub a:nth-child(4n) {
		margin-right: 0;
	}

}

@media screen and (max-width: 1199px) {

	#pub {
		padding-bottom: 30px;
	}

}

@media screen and (max-width: 991px) {

	#pub {
		padding-bottom: 20px;
	}

	#pub a {
		width: calc(50% - 15px);
		margin-right: 30px !important;
	}

	#pub a:nth-child(even) {
		margin-right: 0 !important;
	}

}

@media screen and (max-width: 767px) {

	#pub {
		padding-top: 25px;
	}

	#pub a {
		width: calc(50% - 10px);
		margin-bottom: 20px;
		margin-right: 20px !important;
	}

	#pub a:nth-child(even) {
		margin-right: 0 !important;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#pub a {
		width: 100%;
		margin-right: 0 !important;
	}

}


/****ABOUT****/

#about h1 {
	line-height: 1.6;
	width: 100%;
}

#about .brief {
	-ms-flex-align: start;
	align-items: flex-start;
	margin-top: 60px;
}

#about .brief p {
	width: calc(66.666% - 20px);
	font-weight: 300;
	font-size: 24px;
	box-sizing: border-box;
}

#about .brief p a {
	display: inline-block;
	position: relative;
}

#about .brief p a:after {
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
	background: #63a857;
	content: '';
	position: absolute;
}

#about .brief p a:link,
#about .brief p a:visited {
	color: #003d22;
}

#about .brief p a:active,
#about .brief p a:hover {
	color: #63a857;
}

#about .brief h3 {
	width: calc(33.3333% - 20px);
	padding-top: 10px;
}

#about .awards,
#about .contact {
	margin: 60px auto 0;
}

#about .awards p {
	font-weight: 700;
	margin: 15px 0 0;
}

#about .awards ul {
	margin: 20px 0 0;
	display: block;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 30px;
   -moz-column-gap: 30px;
   column-gap: 30px;
	font-size: 17px;
	line-height: 1.3;
}

#about .awards ul li {
	padding-top: 20px;
}

#about .contact {
	padding-bottom: 70px;
}

#about .contact p:first-of-type {
	margin-top: 30px;
}

#about .contact a:link,
#about .contact a:visited {
	color: #63a857;
}

#about .contact a:active,
#about .contact a:hover {
	color: #003d22;
}

#instafeed {
	margin-top: 80px;
}

#instafeed a {
	width: calc(33.3333% - 20px);
	overflow: hidden;
	position: relative;
}

#instafeed a img {
	display: block;
	width: 100%;
}

#instafeed a .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(255,255,255,.8);
	color: #003d22;
	font-size: 17px;
	line-height: 1.3;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

#instafeed a:hover .overlay {
	opacity: 1;
	visibility: visible;
}

#instafeed a .overlay p {
	max-width: 340px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

#instafeed a .overlay i {
	display: block;
	margin: 0 auto;
	font-size: 36px;
	margin-bottom: 10px;
}

@media all and (pointer: coarse) {

	#instafeed a .overlay {
		background: rgba(0,0,0,.1);
		opacity: 1;
		visibility: visible;
		}

	#instafeed a .overlay p i {
		color: #fff;
	}

	#instafeed a .overlay p span {
		display: none;
	}

}

@media screen and (max-width: 1199px) {

	#about .brief p a:after {
		height: 1px;
	}

	#about .awards ul {
		margin: 15px 0 0;
		font-size: 15px;
	}

	#about .contact {
		padding-bottom: 60px;
	}

	#instafeed a .overlay i {
		font-size: 32px;
	}

}

@media screen and (max-width: 991px) {

	#about .brief p a:after {
		height: 1px;
	}

	#about .awards ul {
		margin: 15px 0 0;
		font-size: 15px;
	}

	#about .brief {
		display: block;
	}

	#about .brief p {
		width: 100%;
	}

	#about .brief h3 {
		display: block;
		width: 100%;
		padding-top: 50px;
	}

	#about .awards ul {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 0;
	   -moz-column-gap: 0;
	   column-gap: 0;
	}

	#about .contact {
		padding-bottom: 50px;
	}

	#instafeed a .overlay {
		background: rgba(0,0,0,.1);
		opacity: 1;
		visibility: visible;
	}

	#instafeed a .overlay p i {
		color: #fff;
		font-size: 30px;
	}

	#instafeed a .overlay p span {
		display: none;
	}

}

@media screen and (max-width: 767px) {

	#about h1 {
		font-size: 28px;
	}

	#about .brief {
		margin-top: 30px;
	}

	#about .brief p {
		font-size: 21px;
	}

	#about .brief h3 {
		padding-top: 35px;
	}
	#about .awards,
	#about .contact {
		margin-top: 40px;
	}

	#about .awards ul {
		margin: 15px 0 0;
		font-size: 14px;
	}

	#about .awards ul li {
		padding-top: 15px;
	}

	#about .contact {
		padding-bottom: 30px;
	}

	#about .contact p:first-of-type {
		margin-top: 20px;
	}

	#instafeed {
		margin-top: 50px;
	}

	#instafeed a {
		width: calc(33.3333% - calc(40px / 3));
	}

	#instafeed a .overlay p i {
		font-size: 28px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#about .awards ul {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}

	#instafeed a {
		width: calc(50% - 10px);
	}

	#instafeed a:nth-of-type(3) {
		display: none;
	}

}


/****NEWS****/

#news-grid {
	padding-top: 45px;
	padding-bottom: 70px;
}

#news-grid div:not(:nth-of-type(-n+3)) {
	margin-top: 75px;
}

#news-grid .grid-sizer,
#news-grid .grid-item {
	margin-bottom: 0;
}

#news-grid .grid-item img {
	display: block;
	width: 100%;
}

#news-grid a:link,
#news-grid a:visited {
	color: #003d22;
}

#news-grid a:active,
#news-grid a:hover {
	color: #003d22;
}

#news-grid a {
	display: block;
	margin: 15px 0 0;
	width: calc(100% - 50px);
}

#news-grid .title {
	font-weight: 300;
	display: block;
	font-size: 24px;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#news-grid a:hover .title {
	color: #63a857;
}

#news-grid h3 {
	display: block;
	position: relative;
	padding: 5px 0 5px 35px;
}

#news-grid h3:before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	width: 25px;
	height: 2px;
	background: #003d22;
}

#news-grid .snippet {
	font-size: 17px;
	display: block;
}

@media screen and (max-width: 1199px) {

	#news-grid {
		padding-bottom: 60px;
	}

	#news-grid .snippet {
		font-size: 16px;
	}

}

@media screen and (max-width: 991px) {

	#news-grid {
		padding-bottom: 50px;
	}

}

@media screen and (min-width: 768px) and (max-width: 991px),
screen and (max-width: 767px) and (orientation: portrait),
screen and (max-width: 599x) and (orientation: landscape) {

	#news-grid .grid-item {
		margin-bottom: 0;
	}

	#news-grid div:not(:nth-of-type(-n+2)) {
		margin-top: 50px !important;
	}

}

@media screen and (max-width: 767px) {

	#news-grid {
		padding-top: 25px;
		padding-bottom: 30px;
	}

	#news-grid a {
		width: calc(100% - 25px);
	}

	#news-grid .title {
		font-size: 21px;
	}

	#news-grid .snippet {
		font-size: 15px;
	}

}

@media screen and (max-width: 767px) and (orientation: landscape) {

	#news-grid div:not(:nth-of-type(-n+3)) {
		margin-top: 40px;
	}

}

@media screen and (max-width: 349px) {

	#news-grid div:not(:nth-of-type(-n+2)) {
		margin-top: 30px !important;
	}

}


/****SINGLE POST****/

#single-post #sub-top a h3 {
	position: relative;
	padding-top: 30px;
	color: #003d22;
	padding-left: 80px;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
	background: url(../images/icons/arrow-lt.svg) no-repeat left bottom;
	background-size: 65px 17px;
}

#single-post #sub-top a:active h3,
#single-post #sub-top a:hover h3 {
	color: #63a857;
}

#single-post #sub-top a h3:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 65px;
	height: 17px;
	content: '';
	background: url(../images/icons/arrow-lt-hov.svg) no-repeat left bottom;
	background-size: 100%;
	opacity: 0;
	-webkit-transition: all .125s ease-in-out;
	-moz-transition: all .125s ease-in-out;
	transition: all .125s ease-in-out;
}

#single-post #sub-top a:hover h3:before {
	opacity: 1;
}

#single-post #news-grid .flex {
	-ms-flex-align: start;
	align-items: flex-start;
}

#single-post #news-grid .imgs {
	width: calc(50% - 15px);
}

#single-post #news-grid .cont {
	width: calc(50% - 60px);
	padding-right: 25px;
	box-sizing: border-box;
}

#single-post #news-grid .imgs img {
	display: block;
	margin: 30px 0 0;
}

#single-post #news-grid .imgs img:first-of-type {
	margin-top: 0;
}

#single-post #news-grid .title {
	font-weight: 700;
}

#single-post #news-grid .cont p {
	margin: 40px 0 0;
	font-weight: 300;
}

#single-post #news-grid .cont p:not(:first-of-type) {
	margin: 30px 0 0;
	font-size: 19px;
}

@media screen and (max-width: 1199px) {

	#single-post #news-grid .imgs {
		width: calc(50% - 45px);
	}

	#single-post #news-grid .cont {
		width: 50%;
		padding-right: 15px;
	}

	#single-post #news-grid .cont p {
		margin: 30px 0 0;
	}

	#single-post #news-grid .cont p:not(:first-of-type) {
		font-size: 18px;
	}

}

@media screen and (max-width: 991px) {

	#single-post #sub-top a h3 {
		padding-top: 20px;
		padding-left: 60px;
		background-size: 48px 13px;
		background-position: left bottom 3px;
	}

	#single-post #sub-top a h3:before {
		display: none;
	}

	#single-post #sub-top a:active h3,
	#single-post #sub-top a:hover h3 {
		color: #003d22;
	}

	#single-post #news-grid .flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#single-post #news-grid .imgs {
		width: 100%;
		order: 2;
		margin: 50px 0 0;
	}

	#single-post #news-grid .cont {
		width: 100%;
		padding-right: 50px;
		order: 1;
	}

}

@media screen and (max-width: 767px) {

	#single-post #news-grid .cont p {
		margin: 15px 0 0 !important;
		font-size: 16px !important;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#single-post #sub-top a h3 {
		padding-left: 0;
		background: none;
	}

	#single-post #news-grid .imgs {
		margin: 30px 0 0;
	}

	#single-post #news-grid .cont {
		padding-right: 0px;
	}

}


/****PROJECTS****/

#project #sub-top p {
	width: calc(50% - 15px);
	font-weight: 300;
}

#project #sub-top h1 span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 12px 0 0 35px;
	position: relative;
}

#project #sub-top h1 span:before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% + 6px);
	width: 25px;
	height: 2px;
	background: #003d22;
}

#feed > .flex {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	padding-top: 100px;
	padding-bottom: 55px;
}

#feed .flex img {
	width: 100%;
	margin: 15px 0;
}

#feed .flex .half {
	width: calc(50% - 15px);
	position: relative;
}

#feed .group {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	margin: 15px auto;
}

#feed .group img {
	margin: 0;
}

#feed .group .text.half {
	left: 0;
}

#feed .group .text.rt {
	left: calc(50% + 15px);
}

#feed .group img.rt {
	margin-left: calc(50% + 15px);
}

#feed .flex .half .img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(50% - 15px);
	background-position: center center;
	background-size: cover;
}

#feed .flex .half .img.top {
	bottom: auto;
	top: 0;
}

#feed .flex .half.text {
	position: absolute;
	height: 100%;
	top: 0;
}

#feed .flex .half .cont {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: calc(50% - 15px);
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
	max-width: 360px;
	font-size: 17px;
}

#feed .flex .half .cont.bot {
	top: auto;
	bottom: 0;
}

#feed .flex .half .cont.full {
	height: 100%;
}

#feed .flex .half .cont h3,
#feed .flex .half .cont ul {
	width: 100%;
}

#feed .flex .half .cont h3 {
	padding-left: 35px;
	position: relative;
	margin-bottom: 10px;
}

#feed .flex .half .cont h3:not(:first-of-type) {
	margin-top: 25px;
}

#feed .flex .half .cont h3:before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	width: 25px;
	height: 2px;
	background: #003d22;
}

#feed .flex .half .cont ul li {
	display: block;
	line-height: 1.3;
}

#feed .flex .half .cont ul li:not(:first-child) {
	padding-top: 10px;
}

#feed .flex .half .cont ul li a {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .125em;
	color: #63a857;
	padding-top: 5px;
}

@media screen and (max-width: 1199px) {

	#project #sub-top h1 span {
		font-size: 13px;
	}

	#project #sub-top h1 span:before {
		top: calc(50% + 5px);
	}

	#feed > .flex {
		padding-top: 80px;
		padding-bottom: 45px;
	}


	#feed .flex .half .cont {
		font-size: 16px;
	}

}

@media screen and (max-width: 991px) {

	#project #sub-top .flex {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#project #sub-top p {
		width: 100%;
		margin-top: 50px;
	}

	#feed > .flex {
		padding-top: 60px;
		padding-bottom: 35px;
	}

	#feed .flex .half .img {
		display: none;
	}

	.vintage #feed .flex .half .img {
		display: block;
	}

	#feed .flex .half .cont {
		padding: 0 30px;
		box-sizing: border-box;
		height: 100%;
	}

}

@media screen and (max-width: 767px) {

	#project #sub-top p {
		margin-top: 40px;
	}

	#feed > .flex {
		padding-top: 30px;
		padding-bottom: 20px;
	}

	#feed .flex img {
		margin: 10px 0;
	}

	#feed .flex .half {
		width: calc(50% - 10px);
	}

	#feed .group {
		margin: 10px auto;
	}

	#feed .group img {
		margin: 0;
	}

	#feed .group .text.rt {
		left: calc(50% + 15px);
	}

	#feed .group img.rt {
		margin-left: calc(50% + 15px);
	}

	#feed .flex .half .cont {
		font-size: 15px;
	}

	#feed .flex .half .cont h3:not(first-of-type) {
		margin-top: 20px;
	}

}

@media screen and (max-width: 767px) and (orientation: portrait) {

	#feed .flex .half {
		width: 100%;
	}

	#feed .group {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 auto;
	}

	#feed .group img,
	#feed .group .img {
		margin: 10px auto !important;
	}

	#feed .group .img.top {
		margin-bottom: 20px !important;
	}

	#feed .group .text.rt,
	#feed .group img.rt {
		left: auto !important;
		margin-left: 0 !important;
		width: 100%;
	}

	#feed .flex .half .img {
		position: relative;
		bottom: auto;
		left: auto;
		height: 60vw;
		display: block;
		width: 100%;
	}

	#feed .flex .half.text {
		position: relative;
		height: auto;
		width: 100%;
	}

	#feed .flex .half .cont {
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
		width: 100%;
		padding-top: 25px;
		padding-bottom: 40px;
		height: auto !important;
		margin: 0 auto;
	}

	#feed .flex .half .cont.bot {
		bottom: auto;
	}

}

@media screen and (max-width: 599px) and (orientation: landscape) {

	#feed .flex .half .cont {
		padding: 0 15px;
		font-size: 14px;
	}

}
