/*
Theme Name: AECOM Burlington Portfolio
Theme URI: http://aecom-burlington.com
Author: Mark Petrovich Jr
Author URI: http://markpetrovich.com
Description: AECOM Burlington website redesign to portfolio layout. Showcases
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: white, blue, gray, two-column, responsive
Text Domain: aecom-burlington

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.
*/



@import url('http://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url(https://fonts.googleapis.com/css?family=Domine:400,700);
@import url('http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css');


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font: 12px/1 'Montserrat', sans-serif;
  color: #333;
  background: #333;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  min-height: 100%;
}

.sidebar {
  position: absolute;
  width: 220px;
}

.content {
  flex: 1;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,1);
  transform: translate3d(0,0,0);
  transition: transform .3s;
}

.content.isOpen {
  transform: translate3d(220px,0,0);
}

.branding{
  transform: translate3d(0,0,0);
  transition: transform .3s;
}

.showBranding{
  transform: translate3d(-220px,0,0);
}

.button {
  cursor: pointer;
  background: url("img/hamb.png") top center no-repeat;
  width: 32px;
  height: 24px;
  display: block;
  float:left;
}

/* Demo Navigation */

.title {
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 7px;
  color: #eee;
  border-bottom: 1px solid #222;
  background: #2a2a2a;
}


/* Demo Description */

h1 {
  margin: 25px 0 15px;
  font-size: 28px;
  font-weight: 400;
}

h2 {
  font-size: 18px;
  font-weight: 400;
  color: #999;
}

 a{
	text-decoration: none;
 }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.menu {
    list-style: none;
     *zoom: 1;
     background:#2F506D;
	transform: translate3d(0,0,0);
	transition: transform .3s;
}

.closeNav{
	transform: translate3d(-220px,0,0);
}

.menu:before,
.menu:after {
    content: " "; 
    display: table; 
}
.menu:after {
    clear: both;
}
.menu ul {
    list-style: none;
    width: 9em;
}
.menu a {
    padding: 10px 15px;
    color:#fff;
}
.menu li {
    position: relative;
}
.menu > li {
    border-top: 1px solid #28445D;
    float: none;
}


.menu > li > .parent {
    background-image: url("img/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.menu > li > a {
    display: block;
}
.menu li  ul {
    position: absolute;
    left: -9999px;
}
.menu > li.hover > ul {
    left: 0;
}
.menu li li.hover ul {
    left: 100%;
    top: 0;
}
.menu li li a{
    display: block;
    background-color: #44749D;
    position: relative;
    z-index:100;
    border-top: 1px solid #28445D;
}

.menu li li .parent{
    background-image: url("img/downArrow.png");
    background-repeat: no-repeat;
	background-position: 95% 50%;
}

.menu li li li a {
    background:#6A90B1;
    z-index:200;
    border-top: 1px solid #28445D;
}


    .active {
        display: block;
    }
    .menu > li {
        float: none;
    }
    .menu > li > .parent {
        background-position: 95% 50%;
    }
  
    .menu li .more {
        background-image: url("img/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
        float: right;
      	width: 20%;
    		border-left: 1px solid rgba(255,255,255,.3);
    		padding: 8px 15px;
    		margin: 2px 5px 2px 0px;
        cursor: pointer;
    		z-index: 200;
        position: relative;
    }
  .menu li .more:before {
  content: "";
  background: rgba(0,0,0,.3);
  width: 1px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2px;
  }
  
    .menu ul {
        display: block;
        width: 100%;
    }
   .menu > li.hover > ul , .menu li li.hover ul {
        position: static;
    }

	/*----------------------------HOME PAGE-------------------------------------------*/
	.contentWrapper{
		max-width: 900px;
		width: 100%;
		margin: 0 auto;
		clear: both;
	}

	a.tagline{
		color: #999;
	}

	a.tagline:hover{
		color: #000;
	}
	
	a.tagline{
		float: right;
	}
	
	a.logo{
		width: 220px;
		display: block;
		float: right;
		clear: both;
	}

	.logo img{
		width: 100%;
		height: auto;
	}
	
	.info{
		max-width: 900px;
		padding-bottom: 25px;
		display: inline-block;
	}
	
	.left{
		max-width: 65%;
		display:inline-block;
	}
	
	.left p{
		font-size: 18px;
		line-height: 26px;
	}
	
	span.emph{
		font-size: 34px;
	}
	
	.right{
		width: 35%;
		display: inline-block;
		vertical-align: top;
		float: right;
	}
	
	.contact{
		width: 314px;
		height: 204px;
		background-color: #c6d4e1;
		position: relative;
		float: none;
	}
	
	.contact .left{
		width: 125px;
		height: 176px;
		line-height: 204px;
	}
	
	.left img{
		vertical-align: middle;
		padding-left: 12px;
	}
	
	.contact .right{
		width: 140px;
		height: 176px;
		padding: 10px 0 0 10px;
		vertical-align: middle;
		line-height: 15px;
		float: none;
	}
	
	.contact .right h3{
		font-size: 18px;
	}
	
	.contact .right p{
		font-size: 12px;
		line-height: 15px;
	}
	
	.contact .right p+p{
		padding: 0;
	}
	
	.services{
		max-width: 900px;
		text-align: center;
		margin: 0 auto;
	}
	.services a{
		text-indent: -9999px;
	}
	.colL{
		width: 100%;
	}
	.colR{
		width: 100%;
	}
	.colL a{
		width: 440px;
		height: 186px;
		margin-bottom: 10px;
	}
	.colR a{
		width: 440px;
		height: 186px;
		margin-bottom: 10px;
	}
	.service{
		width: 220px;
		height: 225px;
		background-color: #000;
		display: inline-block;
		margin-bottom: 5px;
		margin-right: 1px;
		margin-left: 1px;
	}
	
	.service a{
		width: 220px;
		height: 225px;
	}
	#archaeology{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/archaeology_001.jpg');
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#archaeology:hover{
		background-position: 0 100%;
	}
	#architecturalHist{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/architecturalHistory_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#architecturalHist:hover{
		background-position: 0 100%;
	}
	#historicArch{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/historicArchitecture_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#historicArch:hover{
		background-position: 0 100%;
	}
	#publicOutreach{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/publicOutreach_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#publicOutreach:hover{
		background-position: 0 100%;
	}
	#archLaboratory{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/archaeologicalLab_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#archLaboratory:hover{
		background-position: 0 100%;
	}
	#historicPres{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/historicPreservation_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#historicPres:hover{
		background-position: 0 100%;
	}
	#gisData{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/gisDataVis_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#gisData:hover{
		background-position: 0 100%;
	}
	#section106{
		background-image: url('http://aecom-burlington.com/wordpress/wp-content/uploads/2015/12/section106_001.jpg'); 
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#section106:hover{
		background-position: 0 100%;
	}

	
	.divider{
		text-transform: uppercase;
		color: #537fa5;
		font-size: 18px;
		margin: 0 auto;
		text-align: center;
		margin-top: 30px;
	}
	
	.gradient{
	margin-top: -3px;
	margin-bottom: 25px;
    height: 2px;
    background: black;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(white), to(white), color-stop(50%, #537fa5));
	}
	
	.people{
		padding: 20px 0;
	}
	
	.circle{
		width: 175px;
		height: auto;
		border-radius: 50%;
	}
	
	.people1{
		width: 100%;
		text-align: center;
		padding-top: 10px;
	}
	
	.people1 a{
		vertical-align: top;
		display: inline-block;
		text-align: center;
		width: 175px;
		
	}
	
	.people1 span{
		display: block;
		padding-top: 5px;
	}
	
	.people2{
		width: 100%;
		text-align: center;
		padding-top: 20px;
	}
	
	.people2 a{
		vertical-align: top;
		display: inline-block;
		text-align: center;
		width: 175px;
		margin: 0 10px;
	}
	
	.people2 span{
		display: block;
		padding-top: 5px;
		padding-bottom: 8px;
	}
	
	#clientList{
		padding-top: 10px;
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	
	.client{
		max-width: 20%;
		height: auto;
		display: inline-block;
		padding: 3px;
	}
	
	.client img{
		max-width: 100%;
		height: auto;
	}
	
	/*----------------------------HOME PAGE END--------------------------------*/
	
	.twocolumn{
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
	-webkit-column-gap: 40px; /* Chrome, Safari, Opera */
	-moz-column-gap: 40px; /* Firefox */
	column-gap: 40px;
	padding-bottom: 25px;
	}
	
	.twocolumn img{
		width: 100%;
		height: auto;
	}
	
	.twocolumn p{
		font-size: 14px;
		line-height: 22px;
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		break-inside: avoid;
	}
	
	.twocolumn p+p{
		padding-top: 10px;
	}
	.body ul{
		list-style-type: disc;
	}
	
	.body ul li{
		padding-left: 5px;
		line-height: 16px;
	}
	
	.body ul li+li{
		padding-top: 5px;
	}
	
	body h3{
		font-size: 24px;
		padding-bottom: 10px;
		text-transform: none;
		color: #000;
		margin: 0;
		text-align: left;
	}
	
	body p{
		font-family: 'Montserrat', serif;
		font-size: 14px;
		line-height: 18px;
	}
	
	body p+p{
		padding: 10px 0 0 0;
	}
	
	.widgettitle{
		display: none;
	}
	
	.upw-posts.hfeed{
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
	}
	
	.upw-posts.hfeed article{
		padding-top: 8px;
	}
	
	.upw-posts.hfeed img{
		max-width: 100%;
		height: auto;
	}
	
	article{
		position: relative;
	}
	
	article .entry-summary{
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px;
		color: #FFF;
	}
	
	.entry-summary{
		background: rgba(83, 127, 165, .85);
		width: 100%;
		color: white;
		display: inline;
		height: 115px;
		left: 0;
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 100;
		padding: 10px;
		overflow: hidden;
		-webkit-transition: height 0.3s;
		-moz-transition: height 0.3s;
		transition: height 0.3s;
		pointer-events: none;
	}
	
	article:hover .entry-summary{
		opacity: 1;
	} 
	
	.contentWrapper .body img{
		width: 100%;
		height: auto;
		padding-bottom: 10px;
	}
	
	.category-spatial-analysis{
		margin-top: -8px;
	}
	
	.category-promotional-material{
		margin-top: -8px;
	}
	
	.twocolumn ul+p{
		margin-top: 10px;
	}
	
	.twocolumn table, th, td{
		/* border: 1px solid black; */
	}
	
	.twocolumn table{
		max-width: 450px;
		border-collapse: separate;
		border-spacing: 1em 2em;
	}
	.twocolumn table thead{
		font-size: 14px;
		margin: 0 auto;
		text-align: center;
		padding-bottom: 5px;
	}
	.twocolumn table p{
		font-size: 12px;
	}
	
	.twocolumn table p+p{
		padding: 0;
	}

        .bioSketchImg{
		float: left;
		max-width: 250px;
    		height: auto;
	}

	.bioSketch{
		float: left;
		width: 75%;
		padding-left: 20px;
		line-height: 22px;
	}

	.bioSketch p{
		line-height: 22px;
	}

	.bioSketch ul{
		padding: 20px 0;
	}

	.bioSketch ul li{
		list-style-type: none;
	}

h4.entry-title{
	display: none;
}
	
@media screen and (min-width: 768px) and (max-width: 1024px)  {


}

@media screen and (max-width: 768px)  {

}

@media screen and (max-width: 368px)  {


}