/*
Theme Name: cleantheme8
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleantheme8
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 cleantheme3 is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

/* @import must be at top of file, otherwise CSS will not work */
@import url("//hello.myfonts.net/count/2c6ccd");
  
@font-face {font-family: 'HelveticaNeueLTStd';src: url('webfonts/2C6CCD_2_0.eot');src: url('webfonts/2C6CCD_2_0.eot?#iefix') format('embedded-opentype'),url('webfonts/2C6CCD_2_0.woff2') format('woff2'),url('webfonts/2C6CCD_2_0.woff') format('woff'),url('webfonts/2C6CCD_2_0.ttf') format('truetype'); font-weight: 100;
	font-style: normal;}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    height:100%; width:100%;
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
    height:100%; width:100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  /* change if the mask should have another color then white */
  z-index: 99;
  /* makes sure it stays on top */
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-image: url(images/status.gif);
  /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  /* is width and height divided by two */
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body {
  font-family: Helvetica;
  color: #000;
  font-size: 16px;
    line-height: 30px;
  height:100% !important;
  margin:0 !important; padding:0 !important;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: 700;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	max-width: 740px;
    padding: 40px 40px 5px;
    margin: 0 auto;
    font-weight: bold;
    font-size: 18px;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: 700;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */

}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {

}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a{
	color:#000;
	text-decoration:underline;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
a:hover {text-decoration:none;}
a:visited {color:#000;}

#masthead {
	    /* height: 48px; */
    display: block;
    width: 100%;
    position: fixed;
    background-color: #fff;
    /* top: 0; */
    z-index: 99;
    /* padding: 15px 0 0 20px; */
    margin: 0;
	float:left;
 }
.site-branding{width: 30%;
    float: left;}
 
.logo {font-weight:700; color:#000; font-size:30px; margin:36px 0 0 40px;}
.logo .plus {font-family: 'HelveticaNeueLTStd', Helvetica, Arial, sans-serif; font-weight:100;position:relative; top: -.5em;}
.logo a{color:#000; text-decoration:none;}
.logo a:hover{color:#000; text-decoration:none;}
.logo a:visited{color:#000; text-decoration:none;}

.home .logo a{color:#fff; text-decoration:none;}
.home .logo a:hover{color:#fff; text-decoration:none;}
.home .logo a:visited{color:#fff; text-decoration:none;}


.single-projects #masthead{display:none;}
.home #masthead {background:none;}
/** --------------------------------

HOMEPAGE SLIDER

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

main, #page, #primary, #content {height:100%; position: relative;
    scroll-snap-align: start; 
   }

.home main{overflow:auto;  scroll-snap-type: y mandatory;}

	/* Style for our header texts
	* --------------------------------------- */
	.section h2{
		font-size: 36px;
		color: #fff;
		margin:0 0 0 22px;
		padding:0;
		position:absolute; bottom: 100px;
		opacity: 0;
		font-weight:700;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
-webkit-transform: translateX(-50px);
-moz-transform: translateX(-50px);
-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	}

	.slide-location {font-size:18px; font-weight:200; line-height:14px; color: #fff;
		margin:0 0 0 22px;
		padding:0;
		position:absolute; bottom: 76px;
		opacity: 0;
-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
-webkit-transform: translateX(-50px);
-moz-transform: translateX(-50px);
-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	
	}
	/* Centered texts in each section
	* --------------------------------------- */
	.section{
		text-align:left; 
	margin:0;
	background-size: cover;
		background-position:center;
		position:relative;
	}
	
 
	/* Backgrounds will cover all the section
	* --------------------------------------- */
	#section0,
	#section1,
	#section2,
	#section3{
		background-size: cover;
		background-position:center;
	}

	/* Defining each sectino background and styles
	* --------------------------------------- */

#fullpage {position:relative; width:100%; height:100%;}
#fullpage .section{position:absolute; width:100%; height:100%;z-index:1}
#fullpage .section.active1{z-index:3}

   .active h2 {
	opacity: 1;
    -webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
-ms-transform: translateX(0px);
	transform: translateX(0px);
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	transition-delay: 0.5s;
		z-index:2;

	   }
	.active .slide-location {
	opacity: 1;
   -webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
-ms-transform: translateX(0px);
	transform: translateX(0px);
	-webkit-transition-delay: 0.7s;
	-moz-transition-delay: 0.7s;
	-ms-transition-delay: 0.7s;
	transition-delay: 0.7s;
	z-index:2;
	   }

.overlayer {position:absolute; width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image:url(images/overlayer.png); z-index:1;}

.social a{
	-moz-transition: none;
		-webkit-transition: none;
		transition: none;}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
float: right;
    width: 70%;
    text-align: right;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	display:none;
}



/* Small menu */
.menu-toggle {
	display: none;
}

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

NAV 

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

#menu-main-menu {
	display: block;
	text-align: left;
	margin-top: 0px;
    text-align: right;
    margin-right: 40px;
}

#menu-main-menu li {
  display: inline-block;
	cursor: pointer;

	margin:43px 60px 0 0;
}

#menu-main-menu li:last-child {
  margin-right: 0;
}

#menu-main-menu li a {
 text-decoration:none;
	color:#000;
	font-size:27px;
	font-weight:700;
	outline:0;
    padding-bottom: 25px;
}
#menu-main-menu li a:hover {
	color:#000;
	
}

.home #menu-main-menu li a, .home #menu-main-menu li a:hover {
	color:#fff;
}

#menu-main-menu li a:after, #menu-main-menu li a:visited:after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0%;
	margin:0 0 -3px 0;
  background: #000;
  transition: 0.2s;
}

.home #menu-main-menu li a:after, .home #menu-main-menu li a:visited:after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0%;
	margin:0 0 -3px 0;
  background: #fff;
  transition: 0.2s;
}
#menu-main-menu li a:hover:after, #menu-main-menu li a:visited:hover:after {
  width: 100%;
}
#menu-main-menu li.current-menu-item a:after{
  width: 100%;	
 }

#menu-main-menu li.current-menu-item a{
 
   
 }
#menu-main-menu li.current-menu-item a:hover:after, #menu-main-menu li.current-menu-item a:visited:hover:after {
  width: 100%;
}
#menu-main-menu li.current-menu-parent a:after{
 }

#menu-main-menu li.current-menu-parent a{

 }
#menu-main-menu li.current-menu-parent a:hover:after, #menu-main-menu li.current-menu-parent a:visited:hover:after {
  width: 100%;
}



#menu-main-menu li ul.sub-menu{    font-size: 15px;
    color: #000;
    margin: -10px 0 0 -24px;
    position: absolute;
    font-weight: 700;
    background: #000;
    text-align: left;
    padding: 24px 24px 7px 24px; display:none;
    min-width: 200px;

}
#menu-main-menu li ul.sub-menu li {margin:0; display:block;}
#menu-main-menu li ul.sub-menu li a {font-size:15px; color:#fff; line-height: 1; font-weight:700; padding-bottom: 17px; -webkit-transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;}
#menu-main-menu li ul.sub-menu li a:after {height:0; width:0%; content:none;}
#menu-main-menu li ul.sub-menu li a:hover { color:#cccccc;}

.current-menu-item.menu-item-has-children .sub-menu{display:block;}
.current-menu-parent.menu-item-has-children .sub-menu{display:block;}

#menu-main-menu li ul.sub-menu li.current-menu-item a{color:#fff; text-decoration: underline;}


#menu-main-menu li:hover > ul.sub-menu {display:block;}
.home #menu-main-menu li:hover > ul.sub-menu {display:none;}

#assembledge-social {
  width: 107px;
  margin-right: 19px;
  float:left;
  display: inline-block;
}

#assembledge-social .social-link {
  display: inline-block;
  margin: 0 3px;
}



/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0;
	background: rgba(0,0,0,1);
		z-index: 1000000;
overflow: auto;
}

/* Overlay closing cross */
.overlay .overlay-close {
	    /* width: 36px; */
    /* height: 36px; */
    position: fixed;
    right: 15px;
    top: 30px;
    /* overflow: hidden; */
    border: none;
    /* background: url(images/cross.png) no-repeat center center; */
    /* background-size: 20px 20px; */
    /* text-indent: 200%; */
    color: #fff;
    outline: none;
	text-align: right;
    z-index: 1000001;
    background: none;
    font-size: 24px;
	padding:0;
}

/* Menu style */
.overlay nav {
	text-align: left;
	position: relative;
	top: 10px;
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 0 0 15px;
	display: inline-block;
	height: 100%;
	position: relative;
    width: 100%;
}

.overlay ul li {
	display: block;
	
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay ul li a {
	font-size: 24px;
	font-weight: 700;
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	text-decoration:none;
	margin: 1em 0 0 0;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #999;
}
.overlay ul li ul li a {
	font-size: 15px;
	font-weight: 300;
	display: block;
	color: #999;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	text-decoration:none;
	margin: 1em 0 0 0;
}

/* Effects */
.overlay-slidedown {
	visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out, visibility 0s 0.3s;
	transition: transform 0.3s ease-in-out, visibility 0s 0.3s;
}

.overlay-slidedown.open {
	visibility: visible;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}



.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 21px 0 0 0; padding:0;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}





/** 

page structure 

**/

#w {
  display: block;
  width: 100%;
  min-width: 280px;
  padding: 0;
  margin: 0; 
}
.column-left {
        position: relative;
    float: left;
    width: 30%;
    /* min-width: 300px; */
    min-height: 1px;
    margin: 0;
   
    padding: 0;
}
.column-right{
	width: 70%;
    /* max-width: 1440px; */
    margin: 0;
    position: relative;
    float: right;
}

.column-left-wrap{        width: 100%;
    min-width: 300px;
    min-height: 1px;
    display: block;
    font-size:15px; line-height: 1.5;
    }

.column-right-wrap{        width: 100%;
    display: block;
    position: relative;
   }


.bio-left{width:35%; margin:0; float:left;}
.bio-right{width:65%; margin:0; position: relative; display: block; float:right;}
.bio-right-wrapper{padding:0 40px;}

.bio-featured-image {position:relative;margin:0 !important;}
.bio-image-wrap {width:100%; height:100%; position: relative;margin: 0;}
.bio-image-wrap:before {content:'';width:100%; height:100%; background:rgba(0,0,0,0.04);position: absolute; z-index: 1;}
.bio-title{    background: #000;
    padding: 30px 20px;
    margin: -12px 0 0 0;
    margin: -12px 0 0 0;
    color: #fff;}

.bio-title h2, .bio-right h2 {font-size: 30px; font-weight: 700; margin-bottom: 24px;}
.bio-title h2 span{    display: block;
    color: #8d8d8d; font-size:15px; font-weight: 300; line-height: 21px;
    margin-top: 12px;}


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

Portfolio 

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

#portfolio {
	display: block;
  width: 100%;
  padding: 0;
  margin:0 0 0 0;
	text-align: left;
}

#portfolio .item {

	opacity: 1;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	float: right;
	overflow: hidden;
	width: 30%; /* Fallback */
	width: calc(33.3333% - 40px);
    margin: 20px;
	padding-bottom:0px; 

}

#portfolio .item--width2 {width: calc(66.6666% - 40px); -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}

#portfolio .pLeft {float:left;}


#portfolio .item--width2 img{-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}

.post-type-archive-people #portfolio .item {
    float:left;
	width: 22%; /* Fallback */
	width: calc(25% - 40px);
}

#portfolio .item a, #portfolio .item a img {
  display: block;
	width: 100%;
	cursor: pointer;
background:#000;
}
#portfolio .item img {
 	max-width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
/* Flexbox is used for centering the heading */
#portfolio .item a div {
	    position: absolute;
    left: 0; 
    right: 0; 
    bottom: 0; 
	margin-bottom: -30px;
    background: none;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2));
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    /* align-items: center; */
    text-align: left;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    display: block;
}

#portfolio .item a:hover div {
	margin-bottom: -14px;
	/*background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0));*/

}

#portfolio .item a div h3 {
	font-size: 21px;
    color: #fff;
    font-weight: 700;
    padding:60px 0 20px 20px;
    opacity: 1;
    position: relative;
    display:block;
}
#portfolio .item a div h3:after{
    font-family: 'HelveticaNeueLTStd';
    content:'+';
    position:absolute;
    font-weight: 200;
    top: 49px;
}
#portfolio .item a div div {display:block; position: relative; margin:-18px 0 0 20px; color:#fff; opacity:0; padding-bottom:42px;  font-weight: 300; font-size:15px;   max-height: 1em;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;}

#portfolio .item a:hover img { 
-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity:.6;
} 

#portfolio .item a:hover div div{  opacity: 1;     max-height: 5em;}

#portfolio.service-grid .item a div {
    left: 0;
    right: 0;
    top: 0;
    height: calc(100%);
    background: none;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2));
}

.service-grid .item a {
 display: block;
    position: relative;  
}

.service-grid .item a div h3{
    text-align: center;
    font-size: 21px;
    line-height: 1.3;
    padding:20px !important;
    position: relative !important;
    display: block;
    top: 50%;
    width: fit-content !important;
    margin: 0 auto;
    transform: translateY(-50%);
}
.service-grid .item a div h3:after{
    font-family: 'HelveticaNeueLTStd';
    content:'+';
    font-weight: 200;
    top: -11px !important;
    position: relative !important;
    margin-top: -10px !important;
}

#portfolio.service-grid .item, #portfolio.design-values .item  {
    float: left;
    cursor: default;
}

.design-values-wrap {
    width:100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    line-height: 0px;
}
.design-values-wrap:hover img { 
-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
    transform: scale(1.05);
    
} 

.service-grid .item:hover img { 
-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
    transform: scale(1.05);
    
} 


.value-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
}

.post-type-archive-people #portfolio .item .bio {}
.post-type-archive-people #portfolio .item .bio:before {content:'';width:100%; height:100%; background:rgba(0,0,0,0.04);position: absolute; z-index: 1;}
/**

.post-type-archive-press #portfolio .item {

	opacity: 1;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	float: right;
	overflow: hidden;
	width: 20%; 
	width: calc(25% - 60px);
    margin: 20px;
	padding-bottom:0px; 

}
.post-type-archive-press #portfolio .item a {
    display:flex;
}

.post-type-archive-press #portfolio .item a div {
    right:auto;
    bottom: auto;
    align-self: center;
    display: block;
    background-image: none;
}

.post-type-archive-press #portfolio .item .pressBox:before {content:'';width:100%; height:100%; background:rgba(0,0,0,0.04);position: absolute; z-index: 1;}
.post-type-archive-press #portfolio .item a div h3 {
	font-size: 21px;
    color: #fff;
    font-weight: 700;
    padding:0px 20px ;
    position: relative;
    display:block;
    opacity:0;
    line-height: 1.3;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.post-type-archive-press #portfolio .item a div h3:after{
    content:'';
}
.post-type-archive-press #portfolio .item:hover a div h3{
	opacity:1;

}
.post-type-archive-press #portfolio .item:hover a div {
    margin-bottom: 0;
}

.post-type-archive-press #portfolio .item a div div {
    line-height: 1.3;
    padding-bottom: 0;
    padding-right: 20px;    
    margin-top: 10px;
}
.post-type-archive-press #portfolio .item:hover img { 

    opacity:.2;
} 
 **/

.post-type-archive-press #portfolio .item {

	opacity: 1;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	float: right;
	overflow: hidden;
	width: 33.3%; 
	width: calc(33.3% - 120px);
    margin: 0px;
	padding-bottom:0px; 

}

.post-type-archive-press #portfolio .item .pressBox:before {content:'';width:100%; height:100%; background:rgba(0,0,0,0.04);position: absolute; z-index: 1;}
.post-type-archive-press #portfolio .item a div h3 {
	font-size: 21`px;
    color: #fff;
    font-weight: 700;
    padding:60px 20px 20px 20px;
    position: relative;
    display:block;
    opacity:0;
    line-height: 1.3;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.post-type-archive-press #portfolio .item a div h3:after{
    content:'';
}
.post-type-archive-press #portfolio .item:hover a div h3{
	opacity:1;

}
.post-type-archive-press #portfolio .item:hover a div {
    margin-bottom: 0;
}

.post-type-archive-press #portfolio .item a div div {
    line-height: 1.3;
    padding-bottom: 20px;
    padding-right: 20px;    
    margin-top: -13px;
}
.post-type-archive-press #portfolio .item:hover img { 

    opacity:.2;
} 
.post-type-archive-press #portfolio .item a div {background-image:none;}

/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }



 .hero {
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
	     background-position: center;
  height: 100vh;
  width: 100vw;
}

.vimeo-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   overflow: hidden;
}
.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
} 
 .content-wrapper {
  position: absolute;
  z-index: 2;
  top: 100vh;
     
  background: #fff;
  width: 100%;
 
}
.project-title {    position: absolute;
    top: -100px;
    width: 100%;     background: rgba(0,0,0,0.65)}
.project-close {color:#000; font-size:36px; position: fixed; top:40px; right:30px;display: block; z-index:3; outline:0;}
.close-link {text-decoration: none; -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; outline:0;}
.close-link:hover {color:#f0f0f0;}

.project-title h1 {    height: 100px;
    padding: 32px 0 0 40px;
    width: 100%;
    display: block;
  
    color: #fff;
    font-weight: 700;
    font-size: 30px; line-height: 36px;}
.project-text {margin:40px 0; line-height: 30px; width:100%; text-align: left;}
.blog .project-text {width:100%; padding:0 20px;} 
.bio-text {margin:115px 0; line-height: 30px; text-align: left; display:flex;}

.standard-page {margin-top:150px; padding-right: 20px; text-align: left;}
.page-featured-image {margin-bottom:40px;}

.owl-carousel .owl-stage-outer {margin: 40px 0 40px 30px; }
.owl-carousel .item{height:280px;}

.owl-nav{
	position: absolute;
    top: 50%;
    margin: -25px 0;
    font-size: 45px;
	font-family:'icomoon';
	    width: 100%;
    color: #000;
}
.owl-next{height:50px; right: 30px;
    position: absolute;}
.owl-prev{height:50px;     position: absolute;
    left: 50px;}
.owl-next:before{content:'\e902';-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}
.owl-prev:before{content:'\e901';-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;}
.owl-next:hover:before {color:#fff;}
.owl-prev:hover:before {color:#fff;}
button:focus {outline:0;}
.owl-next span, .owl-prev span, .owl-dots, .owl-nav .disabled{display:none;}

.project-footer{width:100%; text-align:center; margin:40px auto 10px;}

.news-left {width:50%; float:left; position:relative; display:block;}
.news-right {width:50%;float:left; margin-top: 20px;  position:relative;  display:block;}
.news-right-wrapper{padding:10px 40px;}
.news-left .page-featured-image {margin-bottom: 0;}
.news-item {padding:40px 0; border-top:1px solid #000;   display:block;   position: relative;
    clear: both;
    float: left;
    width: 100%;}


h3.post-title {font-weight:700; margin-bottom: 1.5em; font-size:19px;}
/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 15px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0;
        clear: both;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


.pinit {position: absolute;
    bottom: 38px;
    /* left: 30px; */
    right: 30px;
    /* opacity: 1; */
    filter: alpha(opacity=0);
    z-index: 1000000;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;}
.pinit a{-webkit-transition: none;
	-moz-transition: none;
	transition: none;}
.pinit img {cursor:pointer; width:75px; height:auto;}

.showing {opacity:1; filter:alpha(opacity=100);}






/**

FOOTER 

**/


.footer-text {display:none;
    line-height: 1.2;
    float:left;
    padding:70px 35px;
    font-size: 32px;
    width: calc(66.6666% - 40px);
}
.footer-socials {    position: relative;
    bottom: 30px;
    left: 35px;
    font-size: 18px; clear:both; display: block;}

.home .footer-socials {
position: absolute;
    /* width: 200px; */
    top: 70px;
    left: unset !important;
    right: 35px;
    font-size: 18px;
    clear: none;
    float: right;
}

.home .footer-text {display:block;}

.home .site-footer {display: block;     position: relative;    scroll-snap-align: start;}

.footer-socials ul.social-links {margin:0; list-style:none;}

.footer-socials ul.social-links li {display:inline-block; margin-right:12px;}

.footer-socials ul.social-links li a {color:#000; opacity:1; text-decoration: none;}
.footer-socials ul.social-links li a:hover {color:#000; opacity:.5;}
.footer-socials ul.social-links li a:visited {color:#000; opacity:1; text-decoration: none;}
/*.home .footer-socials ul.social-links li a{color:#fff; opacity:0.5;}
.home .footer-socials ul.social-links li a:hover {color:#fff; opacity:1;}
.home .footer-socials ul.social-links li a:visited {color:#fff; opacity:0.5;}*/
.project-socials {bottom: 0;
    top: 40px;
    padding-bottom: 40px;}
.project-socials ul.social-links li {
      margin-left: 12px;
}
.overlay nav .footer-socials ul.social-links li a{color:#fff;}
.overlay nav .footer-socials ul.social-links li a:visited{color:#fff;}
.overlay nav .footer-socials {    position: relative; display: block;
    margin:2em 0; left:0;}
.overlay nav .footer-socials ul.social-links {margin:0 0 0 30px; list-style:none; font-size: 16px;}


.transition-fade {
    transition: .4s;
    opacity: 1;
}
html.is-animating .transition-fade{
    opacity: 0;
}

/** media queries **/


.lity-content {width:100%; margin:0 auto}
.lity-container {

  
    overflow: auto;
}
.lity-content:after {
  
    -webkit-box-shadow:none; 
    box-shadow: none; 
}
.lity {
  
	background: rgba(245,245,245,0.95);}
.lity-active,
.lity-active body {
    overflow: hidden;
}

.lity-close, .lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {

    text-indent: -999px;
    overflow: hidden;    right: 30px;
    top: 30px; text-shadow: none;
}
.lity-close:after{font-family:'icomoon';
	   text-indent:0;
    color: #000; position: absolute; top:0; right:0; content:'\e903'; text-shadow: none;}

.sl-overlay {
    background: #000;
}
.sl-wrapper .sl-close, .sl-wrapper .sl-navigation button {color:#fff;}


.content-area, .project-text-container {
    margin: 0 auto;
    max-width: 1640px;
}
.single-projects .content-area, .home .content-area {
    max-width: none;
}

.single-project-text {padding: 10px 0 0 0;}
.mgl-tiles-container {padding:  0; margin: 0 40px;}

/* ---------

CONSTANT CONTACT FORM

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

div.ctct-form-embed div.ctct-form-defaults {padding:0;}
div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header {font-size:15px !important;}
#gdpr_text {display:none;}
#email_address_field_0 label{display:none ;}
div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
height: 30px !important;
padding: 5px 10px  !important;
border: 1px solid #ddd  !important;
background-color: #ffffff  !important;
box-shadow: none  !important;
border-radius: 0  !important;
font-size: 12px  !important;

}

div.ctct-form-embed div.ctct-form-defaults p.ctct-form-text {font-size:12px !important;}
.ctct-form-field {width:180px  !important; float:left  !important;}
div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
height:30px  !important;
border-radius:0  !important;
width:40px  !important; float:left  !important; padding:5px  !important; margin-left:8px  !important;}
.ctct-form-footer {display:none;}
div.ctct-form-embed div.ctct-form-defaults {
    color: #000 !important;
    background-color: #ffffff;
    border-radius: 0px !important;
    padding: 0px !important;
    font-family: inherit !important;
    line-height: 1.5;
    -webkit-font-smoothing: none !important;
}
.ctct-form-embed.form_0 .ctct-form-defaults .ctct-form-header {
    color: #000  !important;
    text-transform: uppercase;
    font-family: Helvetica;
}

.main-headline{
    margin: 0 20px;
    float: right;
    font-size: 18px;
    padding-bottom: 50px;
    line-height: 1.2;

}
.home .main-headline {display: none;}

.project-text-container .size-full{    padding: 10px 40px;
    margin-bottom: -1.5em;}



.mgl-tiles .mgl-row {
    justify-content: center;
}

.project-text-container p iframe {text-align: center; margin:0 auto; display: block;}

.footer-address {display:none;}
.home .footer-address {display:block;}


.news-page {padding:0;}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}
}


@media screen and (min-width: 200px) {
            .vimeo-wrapper {
            height: 50%;
            }
            .menu-toggle {
            display: block;
            float: right;
            position: fixed;
            right: 18px;
            text-align: right;
            background: none;
            font-size: 28px;
            top: 20px;
            padding: 14px 5px 8px 40px;
            color: #000;	}

            .home .menu-toggle{color: #fff;}	

            .main-navigation #menu-main-menu {
                display: none;
            }

            #masthead{margin-top:0; margin-left:0; height:84px;}

            #portfolio {margin-left: 20px;}
    .post-type-archive-press #portfolio {margin-left: 0;}
            .post-type-archive-people #portfolio, .post-type-archive-services #portfolio, .post-type-archive-design-values #portfolio {margin-left: -20px;}
            #portfolio .item {
                    width: calc(100%);
                opacity: 1;
              display: block;
            }
            #portfolio .pLeft {
            float: right; 
            }
            #portfolio .item--width2 {width: calc(100%);}
            .post-type-archive-press #portfolio .item {
                    width: calc(100% - 30px);

            } 
            .column-right-wrap {padding: 0 25px;}
            .column-right {width:100%;}

            .site-footer .footer-socials {text-align: center;}
            .mobile-menu-cover{display:block;position: fixed; height:80px; background:#fff; width:100%; top:0; left:0; z-index:2;}
            .home .mobile-menu-cover{display:none;}
            .single-projects .mobile-menu-cover{display:none;}
            .project-text {line-height: 30px; width:calc(100% - 0px); padding:0;}
            .mCheck {width:1px; height:1px; display: block; position: absolute; top:-1px; visibility: visible;}
            .owl-carousel{
            display:block;
            }
            .owl-carousel .item {
            height: auto;

            }
            .hero {
             height:40vh;
            }

             .content-wrapper {
              top: 39vh; 
            }
            .project-title {   
            top: -87px;
           }
            .project-title h1 {
            height: 87px;
            padding: 32px 15px;
            font-size: 18px;
            line-height: 21px;
            }	
            .project-close {
           font-size: 28px;
            position: fixed;
            top: 0;
            right: 0px;
            background: #fff;
            padding: 20px 15px 15px;
            }
            .people .project-close{display:none;}
            .bio-left{width:100%; margin:40px 0; float:none;}
            .bio-right{width:100%; margin:0; position: relative; display: block; float: none;}
            .bio-right-wrapper{padding:30px 15px;}
            .bio-right h2 {
            font-size: 24px; line-height: 28px;
            }
            .standard-page {
            margin-top: 0px;
        }
            #fp-nav {z-index: 1;}

            .bio-wrap {display: block; position: relative; padding:0; background:#fff;}
            .lity {

            background: rgba(245,245,245,1);}
            .bio-text {
            margin: 80px 0; display: block;
            }
            .news-left {
            width: 100%;
            }
            .news-right {
            width: 100%;
            }
            .news-right-wrapper{padding:0 0 40px 0;}
            .single-post #masthead{display:none;}
            .lity-container {
            max-width: 100%;
            }
            .page-title{position: relative; margin: 120px 0 24px 0px;}
            .blog .page-title{margin-left:0;}
            .blog .project-text {padding:0; font-size: .9em;} 

            .page-title h2{font-size: 24px;font-weight: bold;}
            .column-left {
                margin-top:100px;
                margin-bottom:40px;
            }
            .single-projects .column-left {
                margin-top:0px;
            }
            .column-left h1{
            font-size: 24px;font-weight: bold;
            }
            h3.post-title {font-weight:700; margin-bottom: 1.5em; font-size:17px;}
            .logo {margin-left:25px;}
            .mobile_off{display: none;}
            .border_top {border-top:1px solid #eee; margin: 0px 45px 0 15px;}
            .column-left-wrap {
            padding: 40px 25px 0;
            }
            .column-left-wrap p{
            margin-bottom:0; 
            }

            .main-headline {
            padding-top: 130px;
            font-size: 28px;
            width: calc(100%);
            display: block;
            padding-bottom: 0;
            display: block;
            margin-bottom: -50px;
            float: none;
                margin-left: 0;
            }
            .about-headline {
            padding-top: 120px;
            margin-bottom: -120px;
            padding-left: 5px;
            padding-right: 5px;
                width: calc(100% - 40px);
            margin-left: 20px;
            }
            .project-text-container .size-full {
            padding: 10px 20px;
            width: 100%;
            }
            .mgl-tiles-container {
            padding: 0;
            margin: 0 20px 10px;
            clear: both;
            }
            .standard-page .mgl-tiles-container {
            padding: 0;
            margin: 0 0;
            }

            .size-medium {max-width: none;}
            .mgl-tiles .mgl-row {
            display: block !important;
            }
            .mgl-tiles .mgl-row .mgl-box .mgl-item .mgl-icon img {
            position: relative;
            display: block;
            width: 100%;
            height: auto !important;
            }
            .mgl-tiles .mgl-row .mgl-box {
            height: auto;
            }
            .footer-socials {
            left:0;
            }
            .contact-headline {    
            width: calc(100% - 50px);
            margin-top: 0px;
            margin-bottom: -120px;
            margin-left: 25px;
            }
        
.footer-text {display:none;
    line-height: 1.2;
    font-size: 18px;
    width: calc(100% - 40px);
}

.home .footer-socials {
position: relative;
    top: unset;
    left: 35px !important;
    right: unset;
    font-size: 18px;
    clear: none;
    float: left;
    text-align: left;
}

    .home .overlay nav .footer-socials {
        left:0 !important;
    }   
    
    .home-bottom-link {font-weight: bold; font-size: 16px;      margin-top: 24px;
    display: block;}  
    
    .page-id-216 table{font-size: .85em; line-height: 20px;}
    .page-id-216 table td {padding-right: 10px;}
    .post-type-archive-people #portfolio .item {
	width: 100%; /* Fallback */
	width: calc(100%);
    }
   .post-type-archive-people #portfolio {
        text-align: left;
    }
    .three_people {float:left;}
    .fourth_person {clear:none;}
}

@media screen and (min-width: 768px) {
        .page-id-216 table{font-size: 1em; line-height: 30px;}
        .page-id-216 table td {padding-right: 30px;}

    .site-footer .footer-socials {text-align: left;display:block;left:unset; float:right; 
            right: 28px;
        }
        .home .site-footer .footer-socials {
            right: 40px;
        }

        .mgl-tiles .mgl-row .mgl-box {
        height: 100%;
        }
        .post-type-archive-people #portfolio, .post-type-archive-services #portfolio, .post-type-archive-design-values #portfolio  {margin-left: 0px;}
        .mgl-tiles .mgl-row .mgl-box .mgl-item .mgl-icon img {
        position: absolute;
        display: block;
        width: 100%;
        height: 100% !important;
        }
        .mgl-tiles .mgl-row {
        display: grid !important;
        }
        .vimeo-wrapper {
        height: 100%;
        }
        .size-medium {max-width: 300px;}
        .project-text-container .size-full {
        padding: 10px 40px;
        }
        .mgl-tiles-container {
        padding: 0;
        margin: 0 40px;
        }
        .standard-page .mgl-tiles-container {
        padding: 0;
        margin: 0;
        }
        .odd {clear:both;}

        .main-headline{
        padding-top: 20px;
        font-size: 28px;
        width: calc(66.6666% - 40px);
        display: block;
        padding-bottom: 35px;
        padding-left: 0px; 
        float: right;
        }
        .about-headline{
        padding-top: 140px;
        margin: 0 40px -140px 40px;
        padding-bottom: 15px;
        width: 70%;
        padding-left: 60px;
        }
        .about-left {margin-top: 0;}
            .logo {margin-left:40px;}
            .border_top {border-top:1px solid #eee; margin: 0 40px 0 40px;}
        .column-left-wrap {
        padding: 30px 15px;
        }
        .column-left-wrap p{
        margin-bottom:1.5em; 
        }
           #portfolio .item {
                    width: calc(50% - 40px);
           opacity: 0;
          display: none; 
            }

            .post-type-archive-press #portfolio .item {
                width: calc(50% - 120px);

        } 
         .post-type-archive-people #portfolio .item {
        width: 48%; /* Fallback */
        width: calc(50% - 40px);
        }
        #portfolio .item--width2 {width: calc(100% - 40px);}

            .menu-toggle {
            display: none;
           }

            #masthead{margin-top:0;margin-left:0; height:100px;}
            .main-navigation #menu-main-menu {
                display: block;
            }
        .mobile-menu-cover{display: none;}
                #portfolio {margin-left: 0px;}
        .column-right {width:70%;}
            .post-type-archive .column-right, .category .column-right, .blog .column-right, .single-people .column-right  {width:100%;}
            .post-type-archive .column-right, .category .column-right, .blog .column-right, .single-people .column-right  {width:100%;}
        .column-left {
        margin-top:110px;
        }
        .single-projects .column-left {
            margin-top:0px;
        }
        .column-left h1{
        font-size: 27px;font-weight: bold;
        }
            .column-right-wrap {padding: 0 20px;}
        .column-left-wrap{    padding: 40px 60px 40px 40px;}
        .single-projects .site-footer .footer-socials {z-index:-1;}
        .project-text { width:100%; padding:0 20px 0 0;}
        .blog .project-text {width:100%; padding:0 20px; font-size: 1em;} 
        .mCheck {width:1px; height:1px; display: none; position: absolute; top:-1px; visibility: hidden;}
        .owl-carousel{
        display:none;
        }
        .owl-carousel .item {
            height:280px;
        }
        .hero {
         height:100vh;
        }

         .content-wrapper {
          top: 100vh;
        }
         .project-title {   
        top: -100px;
       }
        .project-title h1 {
            height: 100px;
            padding: 32px 30px 0 40px;  
            font-size: 30px;
            line-height: 36px;
        }
        .project-close {
        font-size: 36px;
        position: fixed;
        top: 40px;
        right: 30px;
        background:none;
        }
        .people .project-close{display:block;}
        .bio-left{width:35%; margin:0; float:left;}
        .bio-right{width:65%; margin:0; position: relative; display: block; float:right;}
        .bio-right-wrapper{padding:0 40px;}
        .bio-title h2 {
        font-size: 30px;line-height: 36px;
        }
        .standard-page {
        margin-top: 150px;
    }
        #menu-main-menu li a {font-size:16px;}

        .logo {font-size:30px;}
        #menu-main-menu li {
            margin-right: 40px;
        }
        .bio-wrap {display: block; position: relative; padding:40px; background:#fff;}
        .lity {

        background: rgba(245,245,245,0.95);}
        .bio-text {
        margin: 115px 0;
        line-height: 30px; display: flex;
        }
        .news-left {
        width: 50%;
        }
        .news-right {
        width: 50%;
        }
        .news-right-wrapper{padding:10px 40px;}
        .single-post #masthead{display:block;}
        .lity-container {
        max-width: 85%;
        }
        h3.post-title {font-weight:700; margin-bottom: 1.5em; font-size:19px;}
        .mobile_off{display: block;}
         #portfolio .pLeft {
        float: left; 
        }
        .news-headline {padding-top:0;}
        .news-page {margin-top:0;}
        .contact-headline {    
            width: calc(70% - 40px);
            margin-top: 120px;
            margin-bottom: -150px;
            margin-left: 20px;}
    .footer-text {
        font-size: 24px;
    }
    

}
@media screen and (min-width: 1000px) {
    .footer-text {display:none;
    line-height: 1.2;
    font-size: 32px;
    width: calc(66.66666% - 40px);
}

.home .footer-socials {
position: absolute;
    /* width: 200px; */
    top: 70px;
    left: unset !important;
    right: 35px;
    float: right;
}
            .home-bottom-link {font-size: 21px;}
    .odd {clear:none;}
    .chk-1 {clear:both;}
    
        .main-headline{
            padding-top: 110px;
            font-size: 32px;
            width: calc(66.6666% - 40px);
            padding-bottom: 30px;
        margin-bottom: 0;
        padding-left: 0;   
    }
    
    .about-headline{
         width: 70%;
    padding-top: 160px;
    margin: 0 40px -140px 40px;
                padding-left: 60px;

    }
    .news-headline {
            padding-top: 10px;
            width: calc(70% - 40px);
            padding-left: 27px;
        }
    .news-page {margin-top:150px;}
    .contact-headline {    
            width: calc(70% - 40px);
            margin-top: 50px;
            margin-bottom: -150px;
    }
    .about-left {margin-top: 0;}
	#masthead{margin-top:0;margin-left:0;}
	.logo {font-size:40px;}
    #menu-main-menu li a {font-size:21px;}
    #menu-main-menu li {
        margin-right: 63px;
    }
	#portfolio {}
        .post-type-archive-press #portfolio .item {
		    width: calc(33.3333% - 120px);
		
	}    
	/*.site-footer .footer-socials {display:block;left:35px;}*/
 .news-left {
    width: 30%;
    }
    .news-right {
    width: 70%;
    }
    .page-title{position: relative; margin: 50px 0 24px 20px;}
    .press-title{    padding-top: 100px;
    padding-bottom: 20px;}
    .page-title h2{font-size: 24px;font-weight: bold;}
    
}
@media screen and (min-width: 1060px) {
    #portfolio .item {
		    width: calc(33.3333% - 40px);
		
	}

    #portfolio .item--width2 {width: calc(66.6666% - 40px);}
    .post-type-archive-people #portfolio {
        text-align: center;
    }
    .post-type-archive-people #portfolio .item {
	width: 30%; /* Fallback */
	width: calc(33.33333% - 40px);
    }
.project-text {width:100%;
}
.blog .project-text {width:100%; padding:0 20px;
}    
}

@media screen and (min-width: 1260px) {
     .post-type-archive-press #portfolio .item {
		    width: calc(33.3333% - 120px);
		
	}  
 .post-type-archive-people #portfolio .item {
	width: 22%; /* Fallback */
	width: calc(25% - 40px);
    }
     .post-type-archive-people #portfolio .item.three_people {float:none;}
    .fourth_person {clear:both;}
}

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

.pinterest-pin:before {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: block;
 
}
