/*
 layout.css
*/

/* Remove Default Styling
------------------------------------------------------------------------------------------------- */
	
* { 
	margin: 0; 
	padding: 0; 
	font-style: normal; 
}

img { 
	border: 0; 
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	font-size: 100%;
	font-family: 'Century Gothic', sans-serif;
	color: #7a7979;
}

button:focus {
	outline: none;
}

.anchor{
	padding-top: 150px;
	margin-top: -150px !important;
	display: inline-block;
	width: 100%;
}

/* Typography
------------------------------------------------------------------------------------------------- */

body{
	background: #FFF;
}

a {
	text-decoration:none;
	color: #747373;
}

a:hover{
    text-decoration:underline;
}
h1 {
	color: #747373;
	font-family: 'Century Gothic', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}

h2,h3,h4,h5 {
	color: #747373;
	font-family: 'Century Gothic', sans-serif;
	font-weight: 700;
}

.inner{
	max-width: 1200px; 
	width: 96%;
	margin: 0 auto;
}

body, button, input, select, textarea, p{
	font-family: 'Century Gothic', sans-serif;
}

/* Header
------------------------------------------------------------------------------------------------- */

header.main {
	width: 100%;
	padding: 0;
	float: left;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	transition: all 0.5s ease;
	background:#FFF;
	border-bottom: 4px #91b92e solid;
	box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

body.nottop header.main {
	
}

body.admin-bar header.main {
	margin-top: 31px;
}

#logo {
	float: left;
	width: 260px;
	margin: 15px 0 0;
}
#logo a{
	width: 260px;
	height: 82px;
	outline: none;
	background: transparent url(../img/logo.png) no-repeat top left;
	background-size: contain;
	text-indent: -30000px;
	display: block;
}

#mobile-header{
	clear: both;
}

nav#access {
	display: none;
}

#menu{
	
}

.mm-menu{
	background: #7c7b7b!important;
}

.mm-list a{
	font-size: 15px;
	text-transform: uppercase;
}

.mm-list .mm-selected a{
	color: #d6e087;
}

#mm-0 .textwidget strong{
	color: #d6e087;
	font-size: 26px;
	font-weight: 500;
}

#mm-0 .textwidget a{
	color: #EEE;
}

#mobilemenu {
	color: #d6e087;
	float: right;
	font-size: 30px;
	margin-right: 5px;
	margin-top: 26px;
}
#mobilemenu:hover {
  	text-decoration: none;
}


@media all and (min-width: 768px) {
	#menu{ display: none; }
	#mobilemenu{ display: none; }
	#mobile-header{	display: none; }
	
	#logo, #logo a {
		width: 350px;
		margin: 5px 0;
	}
	
	nav#access {
		display: block;
		margin-top: 35px;
		display: block;
		clear: both;
		background: #7c7b7b;
	}
	nav#access ul {
		list-style: none;
		float: right;
	}
	nav#access ul li {
		float: left;
		margin-left: 25px;
		position: relative;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	nav#access ul li a {
		font-size: 14px;
		text-transform: uppercase;
		color: #FFF;
	}
	
	.current-menu-item a{ color: #d6e087; }
	
}

@media all and (min-width: 1024px) {
	nav#access ul li {
		margin-left: 30px;
	}
	nav#access ul li a {
		font-size: 17px;
	}
}


@media all and (min-width: 1180px) {
	
	nav#access ul li {
		margin-left: 35px;
	}
	nav#access ul li a {
		font-size: 17px;
	}
}



#contacts-header{
	display: none;
}

@media all and (min-width: 768px) {

	#contacts-header{
		display: block;
		float: right;
		text-align: right;
		margin-right: 0;
		/* margin-top: 44px; */
		margin-top: 14px;
		line-height: 20px;
	}

	#contacts-header strong{
		color: #c69512;
		font-size: 26px;
		font-weight: 500;
	}
	#contacts-header .textwidget{
		float: left;
	}
	#contacts-header .widget_sp_image-image-link{
		float: right;
	}
	
}

/* Banner
------------------------------------------------------------------------------------------------- */

#banner {
	width: 100%;
	overflow: hidden;
	height: calc(45vh);
	min-height: 220px;
	position: relative;
	color: #FFF;
	background: #CCC;
	margin-top: 80px;
}


#banner *{
	transition: none;
}

.banner_bg{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 45vh;
	min-height: 300px;
	position: relative;
}

#banner h2{
	font-size: 46px;
	color: #FFF;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.8);
	position: absolute;
	bottom: 12%;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 38px;
}



.carousel {
  position: relative;
  z-index: 2;
}

.carousel-cell {
  width: 300px;
  height: 550px;
  margin-right: 10px;
  background: #FFF;
  opacity: 0.7;
  transition: opacity 0.5s ease;
  position: relative;
}


p em strong{ 
    color: #999;
    font-size: 1.2em;
    font-weight: 300;
    margin-top: -10px;
    display: block;
    margin-bottom: -10px; 
}

@media only screen and (min-width: 768px) {
	#banner h2{
		font-size: 64px;
		line-height: 54px;
	}
}


/* Overall
------------------------------------------------------------------------------------------------- */

@media all and (min-width: 768px) {

}

#container{
	background: #FFF;
	width: 100%;
	float: left;
	position: relative;
	padding-bottom: 100px;
}

.sue-section.fadedbg .su-button{ margin-bottom: 5px; }

.su-button span{ text-transform: uppercase; }
.su-expand-link-more a{ background: #7c7b7b!important; text-transform: uppercase; }
.su-expand-content{ color: #7a7979!important; }

.related_list{
	margin-left: 0;
	padding-left: 20px!important;
}

.entry-content a{
	text-decoration: underline;
}

@media only screen and (max-width: 768px) {
	.su-row.column_list .su-column{
		margin-bottom: 2px!important;
	}
}



/* Staff
------------------------------------------------------------------------------------------------- */

ul#staff_profiles{
	list-style: none;
	text-align: center;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	font-size: 0.8em;
}

ul#staff_profiles li{
	display: inline-block;
	display: inline-table;
	padding: 5px 10px;
	margin-bottom: 10px;
	width: 160px;
}

ul#staff_profiles li img{
	height: 140px;
	width: 140px;
}

ul#staff_profiles li span{
	display: block;
	height: 36px;
}

.staff-profile .wp-post-image{
	float: right;
	margin: 10px;
	max-width: 40%!important;
}

@media only screen and (min-width: 768px) {
	ul#staff_profiles{ max-width: 80%; }
}



/* Logos
------------------------------------------------------------------------------------------------- */

#logos ul{
	list-style: none;
	text-align: center;
	margin: 20px 0 0 0;
	padding: 0;
}

#logos ul li{
	display: inline-block;
	padding: 5px 10px;
}

#logos ul li img{
	height: 50px;
	width: auto;
}


/* Services Slider
------------------------------------------------------------------------------------------------- */

ul#services_slider{
	list-style: none;
	margin: 0 0 60px 0;
	padding: 0;
}

ul#services_slider li.carousel-cell{
	opacity: 0.6;
	height: 335px;
}

ul#services_slider li.carousel-cell figure{
	overflow: hidden;
}

ul#services_slider li.carousel-cell.is-selected{
	opacity: 1;
}

ul#services_slider ul{
	padding: 0 0 0 14px;
	font-size: 0.8em;
}

.slider_content{
	background: #7c7b7b;
	color: #FFF;
	padding: 10px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 74px;
	overflow: hidden;
	-webkit-transition: height 0.5s; /* Safari */
    	transition: height 0.5s;
	opacity: 0.95;
	pointer-events: none;
	z-index: 10;
}

.slider_content h3{
	font-size: 1em;
	line-height: 1.2em;
	color: #FFF;
	padding: 0 0 5px;
	height: 60px;
}

.slider_content a{
	color: #FFF;
	pointer-events: auto;
    	text-decoration: underline;
}

li.carousel-cell:hover .slider_content{
	height: 285px;
}


/* Case Studies
------------------------------------------------------------------------------------------------- */

.case-study-details{
	margin-bottom: 15px;
}

.case-study-details p{
	margin-bottom: 0;
	font-weight: 600;
}

#images{
	width: 100%;
	margin-bottom: 50px;
	margin-top: 20px;
	min-height: 400px;
}

#image_slider{
	min-height: 380px;
}

#images img{
	opacity: 0.4;
	-webkit-transition: opacity 0.4s; /* Safari */
    	transition: opacity 0.4s;
}
#images img.is-selected{
	opacity: 1;
}

@media only screen and (min-width: 768px) {
	#images{
		float: right;
		width: 400px;
		margin-left: 30px;
		padding-left: 30px;
		border-left: 3px #666 solid;
	}

}

/* Footer
------------------------------------------------------------------------------------------------- */

footer{
	background: #acacac;
	z-index: 10;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 10px;
	width: 100%;
}


.site-footer {
	overflow: hidden;
	font-size: 12px;
	float: left;
 	width: 100%;
	color: #FFF;
	text-align: center;
}

.site-footer a{
	color: #FFF;
}

.site-footer i.fa{
	font-size: 30px;
	border-radius: 5px;
	padding: 5px;
	color: #FFF;
	display: -moz-inline-stack;
}

i.fa-twitter{
	background: #3da9de;
}

i.fa-linkedin{
	background: #1178b3;
}

@media only screen and (min-width: 768px) {
	footer{	position: fixed; }
}

/*------------------ Helper Styles----------------------- */	

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.highlight {
	font-weight: bold;
	color: #c90033;
}
	
.hide { display: none; }
	
.clear {
	clear: both;
}

.clearleft{
	clear: left;
}
	
.bold {
	font-weight: bold;
}
	
em { 
	font-style: italic;
}



/* Responsive */

@media only screen and (max-width: 41.250em) {
	#container {
		width: 100%;
	}
	#imagelightbox-close {
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#imagelightbox-nav {
		bottom: 1.25em; /* 20 */
	}
	.imagelightbox-arrow {
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.imagelightbox-arrow-left {
		left: 1.25em; /* 20 */
	}
	.imagelightbox-arrow-right {
		right: 1.25em; /* 20 */
	}
}



/* ============== Image Lightbox ===================*/

/* IMAGE LIGHTBOX SELECTOR */

#imagelightbox
{
	cursor: pointer;
	position: fixed;
	z-index: 10000;

	-ms-touch-action: none;
	touch-action: none;

	-webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); /* 50 */
	box-shadow: 0 0 3.125em rgba( 0, 0, 0, .75 ); /* 50 */
}


/* ACTIVITY INDICATION */

#imagelightbox-loading,
#imagelightbox-loading div
{
	border-radius: 50%;
}
#imagelightbox-loading
{
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	background-color: #444;
	background-color: rgba( 0, 0, 0, .5 );
	position: fixed;
	z-index: 10003;
	top: 50%;
	left: 50%;
	padding: 0.625em; /* 10 */
	margin: -1.25em 0 0 -1.25em; /* 20 */

	-webkit-box-shadow: 0 0 2.5em rgba( 0, 0, 0, .75 ); /* 40 */
	box-shadow: 0 0 2.5em rgba( 0, 0, 0, .75 ); /* 40 */
}
#imagelightbox-loading div
{
	width: 1.25em; /* 20 */
	height: 1.25em; /* 20 */
	background-color: #fff;

	-webkit-animation: imagelightbox-loading .5s ease infinite;
	animation: imagelightbox-loading .5s ease infinite;
}

@-webkit-keyframes imagelightbox-loading
{
	from { opacity: .5;	-webkit-transform: scale( .75 ); }
	50%	 { opacity: 1;	-webkit-transform: scale( 1 ); }
	to	 { opacity: .5;	-webkit-transform: scale( .75 ); }
}
@keyframes imagelightbox-loading
{
	from { opacity: .5;	transform: scale( .75 ); }
	50%	 { opacity: 1;	transform: scale( 1 ); }
	to	 { opacity: .5;	transform: scale( .75 ); }
}


/* OVERLAY */

#imagelightbox-overlay
{
	background-color: #000;
	background-color: rgba( 0, 0, 0, .9 );
	position: fixed;
	z-index: 9998;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}


/* "CLOSE" BUTTON */

#imagelightbox-close
{
	width: 2.5em; /* 40 */
	height: 2.5em; /* 40 */
	text-align: left;
	background-color: #666;
	border-radius: 50%;
	position: fixed;
	z-index: 10002;
	top: 2.5em; /* 40 */
	right: 2.5em; /* 40 */

	-webkit-transition: color .3s ease;
	transition: color .3s ease;
}
#imagelightbox-close:hover,
#imagelightbox-close:focus { background-color: #111; }

	#imagelightbox-close:before,
	#imagelightbox-close:after
	{
		width: 2px;
		background-color: #fff;
		content: '';
		position: absolute;
		top: 20%;
		bottom: 20%;
		left: 50%;
		margin-left: -1px;
	}
	#imagelightbox-close:before
	{
		-webkit-transform: rotate( 45deg );
		-ms-transform: rotate( 45deg );
		transform: rotate( 45deg );
	}
	#imagelightbox-close:after
	{
		-webkit-transform: rotate( -45deg );
		-ms-transform: rotate( -45deg );
		transform: rotate( -45deg );
	}


/* CAPTION */

#imagelightbox-caption
{
	text-align: center;
	color: #fff;
	background-color: #666;
	position: fixed;
	z-index: 10001;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.625em; /* 10 */
}


/* NAVIGATION */

#imagelightbox-nav
{
	background-color: #444;
	background-color: rgba( 0, 0, 0, .5 );
	border-radius: 20px;
	position: fixed;
	z-index: 10001;
	left: 50%;
	bottom: 3.75em; /* 60 */
	padding: 0.313em; /* 5 */

	-webkit-transform: translateX( -50% );
	-ms-transform: translateX( -50% );
	transform: translateX( -50% );
}
	#imagelightbox-nav button
	{
		width: 1em; /* 20 */
		height: 1em; /* 20 */
		background-color: transparent;
		border: 1px solid #fff;
		border-radius: 50%;
		display: inline-block;
		margin: 0 0.313em; /* 5 */
	}
	#imagelightbox-nav button.active
	{
		background-color: #fff;
	}


/* ARROWS */

.imagelightbox-arrow
{
	width: 3.75em; /* 60 */
	height: 7.5em; /* 120 */
	background-color: #444;
	background-color: rgba( 0, 0, 0, .5 );
	vertical-align: middle;
	display: none;
	position: fixed;
	z-index: 10001;
	top: 50%;
	margin-top: -3.75em; /* 60 */
}
.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus	{ background-color: rgba( 0, 0, 0, .75 ); }
.imagelightbox-arrow:active { background-color: #111; }

	.imagelightbox-arrow-left	{ left: 2.5em; /* 40 */ }
	.imagelightbox-arrow-right	{ right: 2.5em; /* 40 */ }

	.imagelightbox-arrow:before
	{
		width: 0;
		height: 0;
		border: 1em solid transparent;
		content: '';
		display: inline-block;
		margin-bottom: -0.125em; /* 2 */
	}
		.imagelightbox-arrow-left:before
		{
			border-left: none;
			border-right-color: #fff;
			margin-left: -0.313em; /* 5 */
		}
		.imagelightbox-arrow-right:before
		{
			border-right: none;
			border-left-color: #fff;
			margin-right: -0.313em; /* 5 */
		}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow
{
	-webkit-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}
	@-webkit-keyframes fade-in
	{
		from	{ opacity: 0; }
		to		{ opacity: 1; }
	}
	@keyframes fade-in
	{
		from	{ opacity: 0; }
		to		{ opacity: 1; }
	}

@media only screen and (max-width: 41.250em) /* 660 */
{
	#container
	{
		width: 100%;
	}
	#imagelightbox-close
	{
		top: 1.25em; /* 20 */
		right: 1.25em; /* 20 */
	}
	#imagelightbox-nav
	{
		bottom: 1.25em; /* 20 */
	}

	.imagelightbox-arrow
	{
		width: 2.5em; /* 40 */
		height: 3.75em; /* 60 */
		margin-top: -2.75em; /* 30 */
	}
	.imagelightbox-arrow-left	{ left: 1.25em; /* 20 */ }
	.imagelightbox-arrow-right	{ right: 1.25em; /* 20 */ }
}

@media only screen and (max-width: 20em) /* 320 */
{
	.imagelightbox-arrow-left	{ left: 0; }
	.imagelightbox-arrow-right	{ right: 0; }
}




/* LOADER */

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  top: 20%;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}



