@import url('https://fonts.googleapis.com/css?family=Montserrat:500,700|Roboto:400,500,700');
/* 

This website was proudly designed and built by
       __ _                                           __     _            
      / /(_)_   __ __  __ ____ _ _____ ____ _ ____   / /_   (_)_____ _____
 __  / // /| | / // / / // __ `// ___// __ `// __ \ / __ \ / // ___// ___/
/ /_/ // / | |/ // /_/ // /_/ // /   / /_/ // /_/ // / / // // /__ (__  ) 
\____//_/  |___/ \__, / \__, //_/    \__,_// .___//_/ /_//_/ \___//____/  
                /____/ /____/             /_/                             

*/

/* ===================================================================== */
/* =============================== Style =============================== */
/* ===================================================================== */
/*

/* ==================== 
	- HTML5 Reset
	- Layout
	- Navigation
	- General
	- Forms & Buttons
	- Fonts
	- Hides & Fixes
	- Media:Mobile
	- Media:Print
   ====================
*/


/* ========================================== 

    HTML5 Reset 

========================================== */

*,*:before,*:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 100%; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
figure { margin: 0; }
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
a { outline: none; text-decoration: none; color: inherit;}


/* ========================================== 

    Layout 

========================================== */

html { font-size: 62.5%;}
body {
	font-size: 14px;
	font-size: 1.4rem;
	background: #ffffff;
	color: #000000;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	overflow-x: hidden;
}

::selection {
    background: #000;
    color: #fff;
}
::-moz-selection {
    background: #000;
    color: #fff;
}

.row {
/* Rows are the main wrapping element above ANY column-type NEVER put a .row inside a column */
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	*zoom: 1;
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap; 
}
.row:before,
.row:after { content: normal; display: table; }
.row:after { clear: both; }
.row.full { max-width: 100% !important; padding: 0;}

.col, /*col (columns) should break between 768 - 640*/
.mcol, /*mcol (mobile columns) should break between 568 - 320*/
.scol /*scol (small columns) should never break*/ {
	position: relative;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	flex-wrap: wrap;
}

.inner { width: 100%;}
img { max-width: 100%;}

.one	{ width: 8.3333%;} /* 1/12 of container */
.two	{ width: 16.6667%;} /* 1/6 of container */
.three	{ width: 25%;} /* 1/4 of container */
.four	{ width: 33.3333%;} /* 1/3 of container */
.five	{ width: 41.6667%;} /* 5/12 of container */
.six	{ width: 50%;} /* 1/2 of container */
.seven	{ width: 58.3333%;} /* 7/12 of container */
.eight	{ width: 66.6667%;} /* 2/3 of container */
.nine	{ width: 75%;} /* 3/4 of container */
.ten	{ width: 83.3333%;} /* 5/6 of container */
.eleven	{ width: 91.6667%;} /* 11/12 of container */
.twelve	{ width: 100%;} /* Full Width */


/* ========================================== 

    Header 

========================================== */

header#site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9001;
	padding: 27px 40px 10px;
	background: transparent;
	transition: all .5s;
}

header#site-header.sticky {
	background-color: rgba(49,112,90,.75);
	padding: 15px 20px 10px;
}

#logo img {
	width: 219px;
	transition: all .5s;
}

header#site-header.sticky #logo img {
	width: 150px;
}

/* ========================================== 

    General 

========================================== */

#home-feature,
#page-feature {
	height: 750px;
	position: relative;
	z-index: 1;
	background: #000000;
	overflow: hidden;
}
#page-feature {	height: 600px;}
#page-feature.work-feature { height: 450px;}
#home-feature > .row,
#page-feature > .row {
	position: relative;
	z-index: 10;
	text-align: center;
	padding-top: 300px;
}
#page-feature > .row { padding-top: 200px;}
#page-feature.work-feature > .row { padding-top: 200px;}
#home-feature video,
#page-feature video {
	position: absolute;
  top: -330px;
  right: 0px;
  height: auto;
  z-index: 1;
  opacity: .6;
}
.wave-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

#home-feature h1 span.large,
#page-feature h1 span.large {
	left: -5px;
	text-transform: uppercase;
}
#home-feature h1 span.large,
#home-feature h1 small,
#home-feature .btn {
	top: 60px;
	opacity: 0;
	position: relative;
}
#page-feature .icon-play {
	color: #ffffff;
	font-size: 100px;
	font-size: 10rem;
}

/* ========================================== 

    Navigation 

========================================== */

nav#main-nav {
	position: absolute;
  top: 25px;
  right: 75px;
  pointer-events: none;
  opacity: 0;
  transition: all .5s;
}
header#site-header.sticky nav#main-nav { top: 15px;}
nav#main-nav.show {
	right: 150px;
	opacity: 1;
	pointer-events: inherit;
}
header#site-header.sticky nav#main-nav.show { right: 120px;}
nav#main-nav ul {
	display: flex;
	position: relative;
	top: 15px;
}
nav#main-nav ul li { margin-left: 50px;}
nav#main-nav ul li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	display: block;
	color: #ffffff;
	text-shadow: 0 0 0 rgba(0,0,0,0);
	transition: all .5s;
}
nav#main-nav ul li:hover a {
	text-shadow: 0 5px 12px rgba(0,0,0,.8);
}

/* ------------------------------------------ 

    Nav Trigger

------------------------------------------ */

#nav-trigger {
  position: relative;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 23px;
  z-index: 9999;
  float: right;
  top: 15px;
  margin-right: 20px;
}
#nav-trigger #hamburger-top,
#nav-trigger #hamburger-mid,
#nav-trigger #hamburger-btm {
  height: 4px;
  background-color: #ffffff;
  width: 35px;
  display: block;
  position: absolute;
  border-radius: 0;
  left: 0;
  transition: all .3s;
}
#site-header.sticky #nav-trigger #hamburger-top,
#site-header.sticky #nav-trigger #hamburger-mid,
#site-header.sticky #nav-trigger #hamburger-btm {
  background-color: #ffffff;
}
#nav-trigger #hamburger-top { top: 0;}
#nav-trigger #hamburger-mid {top: 9px;}
#nav-trigger #hamburger-btm {top: 18px;}
#nav-trigger.triggered #hamburger-top,
#nav-trigger.triggered #hamburger-mid,
#nav-trigger.triggered #hamburger-btm,
#site-header.sticky #nav-trigger.triggered #hamburger-top,
#site-header.sticky #nav-trigger.triggered #hamburger-mid,
#site-header.sticky #nav-trigger.triggered #hamburger-btm  {
  background-color: #ffffff;
}
html.csstransforms #nav-trigger.triggered #hamburger-top {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  top: 8px;
}
html.csstransforms #nav-trigger.triggered #hamburger-btm {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  top: 8px;
}
html.csstransforms #nav-trigger.triggered #hamburger-mid { opacity: 0;}

/* ========================================== 

    Mobile Nav 

========================================== */

#mnav-wrapper {display: none!important;}
#mobile-nav {
	display: none;
	color: #ffffff;
	padding: 135px 40px 50px;
	background-color: rgba(49,112,90,.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9000;
}
nav#mobile-nav > ul > li { text-align: left;}
nav#mobile-nav > ul > li > a {
  font-size: 20px;
  font-size: 2rem;
  display: block;
  padding: 15px 0 15px 5px;
  text-transform: uppercase;
  border-top: 1px solid #205b46;
}

/* ========================================== 

    Home Intro 

========================================== */

#home-intro .inner {
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
	padding-top: 140px;
	padding-bottom: 70px;
}

#home-intro p {
	font-size: 20px;
	font-size: 2rem;
	line-height: 30px;
	line-height: 3rem;
	margin-bottom: 16px;
}
.swoosh { margin-top: 30px;}

/* ========================================== 

    Home Bios 

========================================== */

#home-bios {
	background-image: url('images/waves-background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
#home-bios::before {
	content:"";
	top: 0;
	left: 0;
	width: 100%;
	height: 800px;
	position: absolute;
	z-index: 2;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
.bio-content {
	padding: 60px 0;
	position: relative;
	z-index: 10;
}
.bio-content h2 { margin-bottom: 0;}
.bio-content hr { border-top: 3px solid #31705a;}
.bio-content p {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 28px;
	line-height: 2.8rem;
	margin-bottom: 16px;
}
.bio-content.right .photo {
	padding-right: 60px;
}
.bio-content.right .photo,
.bio-content.right .content {
	position: relative;
	left: -50px;
	opacity: 0;
}
.bio-content.left .photo,
.bio-content.left .content {
	position: relative;
	right: -50px;
	opacity: 0;
}
.bio-content.left .photo { padding-left: 60px;}
.bio-content.left .content { text-align: right;}
.bio-content img { box-shadow: 0 10px 30px rgba(0,0,0,.3);}

/* ========================================== 

    Project Content 

========================================== */

#project-content {
	padding-top: 120px;
	padding-bottom: 100px;
}
#project-content h2 { margin-bottom: 10px;}
#project-content p {
	line-height: 26px;
	line-height: 2.6rem;
	margin-bottom: 20px;
}
#project-content .gallery { padding-left: 40px;}
.gallery-trigger { position: relative;}
#project-content .icon-gallery {
	font-size: 80px;
	font-size: 8rem;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	color: #ffffff;
}

/* ========================================== 

    Home Feed 

========================================== */

#home-feed,
#related-work,
#all-work { padding: 5px 2.5px 0;}

#home-feed .work-item,
#related-work .work-item,
#all-work .work-item {
	top: 50px;
	opacity: 0;
}
#related-work h2 {
	text-align: center;
	margin-bottom: 10px;
}
#related-work hr {
	border-top: 2px solid #31705a;
	margin-left: 2.5px;
	margin-right: 2.5px;
}
.work-item {
	width: 25%;
	border-bottom: 5px solid #ffffff;
	border-left: 2.5px solid #ffffff;
	border-right: 2.5px solid #ffffff;
	position: relative;
	overflow: hidden;
	display: block;
}
.work-item .work-content {
  font-size: 20px;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-weight: 700;
  background-color: rgba(49,112,90,.9);
  box-shadow: 0px 3px 23.5px 1.5px rgba(0, 0, 0, 0.5);
  padding: 20px 70px 20px 20px;
  position: absolute;
  left: 0;
  width: 100%;
  transition: bottom .5s;
}
.work-item .work-content .icon-toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	font-size: 30px;
	font-size: 3rem;
}
.work-item:hover .work-content { bottom: 0!important;}

.work-item img {
	max-width: 100%;
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
	-moz-filter: grayscale(100%); /* Firefox */
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
	opacity: .6;
}
.work-item:hover img {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: color; /* IE6-9 */
	opacity: 1;
}

/* ========================================== 

    Work Filters 

========================================== */

#work-filters { padding: 90px 0;}

#work-filters > form > ul {
	list-style: none;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#work-filters input { display: none;}
#work-filters > form > ul > li {
	background-color: #ffffff;
	color: #31705a;
	display: inline-block;
	padding: 15px 25px 13px;
  box-shadow: 0px 5px 14px 1px rgba(0,0,0,.25);
  font-size: 18px;
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  transition: all .5s;
  position: relative;
  border: 1px solid #31705a;
}
#work-filters > form > ul > li:hover,
#work-filters > form > ul > li.selected {
	background-color: #31705a;
	color: #ffffff;
}
#work-filters > form > ul > li > ul.subfilters {
	display: none;
	list-style: none;
	position: absolute;
	top: 50px;
	left: -1px;
	width: calc(100% + 2px);
	background-color: #31705a;
	padding: 0 25px 10px;
	border: 1px solid #31705a;
}

#work-filters > form > ul > li > ul.subfilters li {
	font-size: 14px;
	font-size: 1.4rem;
	text-transform: capitalize;
	margin-bottom: 5px;
}

#work-filters > form > ul > li > ul.subfilters li input {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 10px;
}

/* ========================================== 

    Footer 

========================================== */

#site-footer {
	padding: 180px 0 30px;
	background-image: url('images/footer-mountains.jpg');
	background-size: cover;
	background-attachment: fixed;
}
#site-footer::before {
	content:"";
	top: 0;
	left: 0;
	width: 100%;
	height: 800px;
	position: absolute;
	z-index: 2;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
#site-footer .footer-top { justify-content: center;}

.footer-form {
	max-width: 820px;
	width: 90%;
	background-color: rgba(255,255,255,.5);
	padding: 60px 70px 45px;
	text-align: center;
	margin-bottom: 140px;
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
	z-index: 20;
}
.footer-form ul { list-style: none;}
.footer-form ul li { margin-bottom: 20px;}
.footer-form input:not([type="submit"]) { padding: 20px;}
.footer-form input:not([type="submit"]),
.footer-form textarea {
	width: 100%;
	padding: 20px;
	border: 1px solid #31705a;
	font-size: 18px;
	font-size: 1.8rem;
}
.footer-form textarea { height: 155px;}
.footer-btm {
	color: #ffffff;
	justify-content: space-between;
}
#footer-nav ul { display: flex;}
#footer-nav ul li { margin-left: 20px;}
#footer-nav ul li a:hover { text-decoration: underline;} 
#footer-nav ul li a img {
	position: relative;
	top: -6px;
}

/* ========================================== 

    Forms & Buttons 

========================================== */

.btn,
.footer-form input[type="submit"] {
	background-color: #31705a;
	display: inline-block;
	padding: 15px 25px 13px;
  box-shadow: 0px 5px 14px 1px rgba(0,0,0,.25);
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  transition: all .5s;
  position: relative;
  border: 1px solid #31705a;
 }

.btn:hover,
.footer-form input[type="submit"]:hover {
	background-color: #ffffff;
	color: #31705a;
}

/* ========================================== 

    Fonts 

========================================== */

h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 70px;
	font-size: 7rem;
	line-height: 55px;
	line-height: 5.5rem;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 40px;
	letter-spacing: -4px;
}

h1 small {
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 10px;
}

#page-feature h1 small { letter-spacing: 1px;}

h2 {
	color: #31705a;
	font-size: 45px;
	font-size: 4.5rem;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 55px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}
h3 {
	color: #31705a;
	font-size: 35px;
	font-size: 3.5rem;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}

h4 {
	color: #626262;
	font-size: 20px;
	font-size: 2rem;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
}

p {
	color: #626262;
	font-family: 'Roboto', sans-serif;
}


/* ========================================== 

    Hides & Fixes 

========================================== */

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }


/* ========================================== 

    Media: Mobile 

========================================== */

/* Desktop less than 1336px */
@media screen
and (max-width: 1336px) { 
	.row.full,
	.footer-btm {
		padding-left: 20px;
		padding-right: 20px;
	}
	.bio-content.left .photo { padding-left: 30px;}
	.bio-content.right .photo { padding-right: 30px;}
}

/* Desktop less than 1024px */
@media screen
and (max-width: 1024px) {
	.work-item { width: 50%;}	
}

/* Desktop less than 768px */
@media screen
and (max-width: 768px) { 
  .col {
    width: 100%!important;
    margin-bottom: 20px!important;
  }
  header#site-header {
    position: absolute;
    padding: 27px 40px 10px;
	}
	#logo img { width: 150px;}
  #mnav-wrapper { display: block!important;}
  #home-feature { height: 540px;}
  #home-feature > .row { padding-top: 200px;}
  .bio-content { padding: 20px 0;}
	.bio-content .content { text-align: center!important;}
	.bio-content.left { flex-direction: column-reverse;}
	.bio-content img {
		width: 60%;
		margin: 0 20%;
	}
	.bio-content .photo {
    padding-left: 0!important;
    padding-right: 0!important;
	}
	h1 small {
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 4px;
	}
	h2 {
    font-size: 35px;
    font-size: 3.5rem;
    margin-bottom: 45px;
	}
	#home-intro .inner { padding-top: 90px;}
	.work-item .work-content {
		bottom: 0!important;
	}
	.work-item img {
    filter: url(data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter i…=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: color;
    opacity: 1;
	}
	#site-footer { padding-top: 60px;}
	#site-footer::before { height: 300px;}
	.footer-form {
		padding: 40px 30px 25px;
		margin-bottom: 40px;
	}
	.footer-btm { justify-content: center;}
	.footer-btm span {
		display: block;
		margin-bottom: 20px;
	}
}

/* Desktop less than 640px */
@media screen
and (max-width: 640px) { 
	.work-item,
	.work-item img { width: 100%;}
	#home-bios { background-image: none;);}
}

/* Desktop less than 568px */
@media screen
and (max-width: 568px) { 
	.mcol {
    width: 100%!important;
    margin-bottom: 20px!important;
	}
}

/* ========================================== 

    Media: Print 

========================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } 
  a, a:visited { text-decoration: underline; }
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } 
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}