@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Teko:300,400,600,700|Work+Sans:400,500,600,700,800');

html{
	-moz-osx-font-smoothing: grayscale;
    	font-size: 1em;
}
body{
	background:#fff;
	color:#333;
	font-family: 'Work Sans', Helvetica, sans-serif;
	font-size: 1em;	
	font-weight: 500;
}
a{
	color: #8c704f;
	transition: all 0.2s ease 0s
}
a:hover{
	color: #222;
	text-decoration: none;
}
p{
	margin-bottom: 20px;
}
#page{
	background-color:#fff;
	margin:0 auto;
	position:relative;
}
#hdr{
	background: #222;
	height: 70px;
	left:0;
	top:0;
	width:100%;
	z-index:99;
}
#hdr .hdr-wrap.container{
	width: auto !important;
	margin:0 auto;
	max-width: 1600px;
	padding: 0 2em;
}
#logo{
	border: 0 none;
    display: block;
	float: left;
	padding: 1.25em 0;
    position: relative;
    z-index: 9999;
}
#logo img{
	width: 125px;
}
nav{
	float: right;	
	padding: 1.5em 0;
}
nav a{
	color:#a5a5a5;
	border-bottom: 0;
	font-family: 'Teko', Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 600;
	letter-spacing: 1px;
	padding: 0 25px;
   	text-transform: uppercase;
}
.navbar{
	border: 0;
	margin: 0;
	min-height: inherit;
	top: 11px;
	z-index: 998;
}

.navbar-brand{ 
	height: 0;
	text-indent: -6000px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus{
	background: none;
	color:#fff;
}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus{
	background: none;
	color:#fff;
	padding-bottom:22px;
}
.nav .active a{
	color: #9f805c; 
}
.nav .active{
	color: #9f805c;
}
.navbar-collapse{
	padding:0;	
	z-index: 9998;
}
.bg-dark{
	background-color: #222 !important;
}
.navbar-dark .navbar-toggler{
	color: #9f805c;
	border-color: #9f805c;
	border-radius: 0;
}
.navbar-toggle{
	background: #9f805c none repeat scroll 0 0;
	border-radius: 0;
    float: right;
	height: 65px;
    margin: 0;
    padding: 0 20px;
    position: relative;
    right: 0;
    top: 0;
}
.navbar-toggle .icon-bar{
	background-color:#ccc;
	height:3px;
	width:26px;
}
.dropdown-menu{
	background-color:rgba(0, 0, 0, 0.75);
}
.dropdown-menu > li > a{
	color:#fff;
	padding:6px 20px;	
}
footer{
	background: #222 none repeat scroll 0 0;
	bottom: 0;
    color: #ccc;
	font-family: 'Work Sans';
    font-size: 0.8em;
    line-height: 1.5em;
    padding: 20px 60px;
	width:100%;
}
footer p{
	font-size: .9em;
	margin: 0;
}
footer img{
	width: 75px;
}
footer span{
	padding:0 5px;	
}
footer a{
	color:#ccc;	
}
footer a:hover{
	color:#ec2f26;
	text-decoration:none;
}

/* BOOTSTRAP NAV OVERRIDES -------------- */

.navbar-dark .navbar-nav .nav-link{ color: #a5a5a5; }
.navbar-dark .navbar-nav .nav-link:hover
.navbar-dark .navbar-nav .active > .nav-link { text-decoration: underline; }

@media screen and (max-width: 768px) {
	.navbar-dark .navbar-nav .nav-link{ color: #fff; }
}

/* MAIN ELEMENTS ------------------------ */

h1{
	color: #222;
	font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 6em;
    font-weight: 900;
	margin: 0;
    text-align: center;
	}
h2{
	color: #9f805c;
	font-family: 'Teko', sans-serif;
	font-size: 4em;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 1em;
	margin: 10px 0 20px 0;
	max-width: 100%;
	padding: 0;
	text-transform: uppercase;
}
h3{
	font-family: 'Teko', Helvetica, sans-serif;
    font-size: 1.8em;
	font-weight: 600;
	margin: 0;
    text-transform: none;
	}
img{
	max-width:100%;	
}


/* CUSTOM FORM STYLES -------------------------- */

form .row{
	margin-bottom: 10px;
}
.blue-bg .btn{
	background: #555555;
	border:none;
	border-radius:50px;
	color: #fff;
	padding: 10px 20px;
    text-transform: uppercase;
	}

input{margin-bottom: 5px;}

.form-group-lg .form-control{
	border-radius: 0;
	box-shadow: none;
}

#slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use webkit (Chrome, Opera, Safari, Edge) and moz (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #4CAF50; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #4CAF50; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

/* CUSTOM ELEMENT STYLE ------------------------ */

h1.smaller{
	font-size: 5em;
	line-height: 1;
}
h2.smaller{
	font-size: 3.2em;
	margin-top: 20px;
}
a.btn{
	background: transparent;
	border:2px solid #9f805c !important;
	border-radius: 50%;
	color:#9f805c;
	display:block;
	font-family: 'Teko', sans-serif;
	font-size: 1.2em;
	font-weight:bold;
	height: 85px;
	margin: 20px auto 0;
	padding: 29px 0;
	text-transform:uppercase;
	transition: background .25s;
	width: 85px;
}
a.btn:hover{
	background:#222;
	border:2px solid #222 !important;
	color:#fff !important;
}
a.btn-alt{
	background: #9f805c;
	border: 2px solid #9f805c;
	border-radius: 40px;
	color:#fff;
	display:inline-block;
	font-weight:bold;
	margin-top:20px;
	padding: 15px 25px;
	text-transform:uppercase;
	transition: background .25s;
}
a.btn-alt:hover{
	background:#fff;
	border:2px solid #9f805c;
	color:#9f805c;
	text-decoration: none;
}
.btn{
	background: transparent;
	border:2px solid #9f805c !important;
	border-radius: 0;
	color:#9f805c;
	display:block;
	font-family: 'Teko', sans-serif;
	font-size: 1.2em;
	font-weight:bold;
	margin: 0;
	padding: 18px 40px 15px;
	text-transform:uppercase;
	transition: background .25s;
}
.btn:hover{
	background:#222;
	border:2px solid #222 !important;
	color:#fff !important;
}
hr{
	margin: 50px 0;
}
.center{
	text-align:center;	
	}

.right{
	text-align:right;	
	}

.bigger{
	font-family: 'Teko';
    font-size: 18px;
    padding: 40px 0 20px;
	}
p.custom{
	background: #f1f1f1;
	color: #555;
	display: block;
	font-family: 'Teko', Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 15px 0;
	padding: 12px 10px 8px;
	text-transform: uppercase;
	}

/* SPECIFIC SECTION STYLES ------------------ */


#banner{
	background-size:cover;
	margin: 0;
	padding: 100px 0;
}
#banner .txt{
	color:#fff;
	margin:0 auto;
	max-width:1170px;
	padding:150px 20px 0;
	text-shadow:1px 1px 2px #333;
}	
#banner.abs{
	background: url(../img/backgrounds/bg-abs.jpg) no-repeat center center;
}	
.col-lg-6 .giant{
	font-size: 2.5em !important;
}
.giant{
	font-family: 'Work Sans', Helvetica, sans-serif;
	font-size: 3em;
	font-weight: 500;
}
.big{
	font-size: 2em;
	line-height: 1.25;
	margin:0 auto 50px;
}
.form-horizontal{
	margin-top: 30px;
}

/* HOME PAGE STYLES ------------------ */


.hp #banner{
	padding: 250px 0 200px;
}
.hp #banner .slide{
	background-position:center 0;
	background-size:cover;
	height:567px !important;
	width:100% !important;
}

.hp #banner .txt{
	margin:0 auto;
	max-width:800px;
	padding:200px 15px 0;
	text-align:center;
}
.hp #banner h1{
	color: #222;
	font-family: 'Work Sans', Helvetica, sans-serif;
	font-size: 7em;
	font-weight: 900;
	line-height: 1em;
	margin: 0 auto;
}
.hp #banner h1 > span{
	display: block;
	font-size: .4em;
	font-weight: 300;
	text-transform: none;
}
.hp .cta-btm{
	margin-top: 0;
}
h1 > span{
	color: #9f805c;
}
#notification{
	background: #9f805c;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	padding: 10px;
	text-align: center;
}
#notification a{
	color: #fff;
}
#notification a:hover{
	color: #000;
}
.hp-work{
	color: #fff;
	}

.hp-work h1{
	text-indent: -5000px;
	}

.hp-work hr{
	border-color: rgba(250, 250, 250, 0.3);
    margin: 30px 0;
    text-align: left;
	}

.panel-link a{
	border-bottom: 0;
	color: #fff;
    display: block;
    height: 400px;
    left: 0;
    margin: 0 auto;
    padding: 180px 100px 100px;
	text-align: center;
    text-decoration: none;
    top: 0;
	transition: all 1s ease .2s;
    width: 100%;
    z-index: 10;    
	}

.panel-link a:hover {
	/*box-shadow: inset 0 0 0 20px rgba(0,0,0,0.20);
	text-shadow: 2px 2px 3px rgba(0,0,0,0.30);*/
	background: rgba(0,0,0,.5);
	}

.panel-link h2{
	font-size: 3.5em;
	font-weight: 600;
	opacity: 0;
	-webkit-transition: all 1s ease .2s; /* Safari */
    transition: all 1s ease .2s;
	margin: 0;
}
.panel-link h2:hover{
	opacity: 1;
}
.panel-link h2 span{
	display: block;
	font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: .25em;
    font-weight: 300;
    letter-spacing: 2px;
}
#hp-services{
	margin: 0 auto;
	max-width: 1600px;
}
#hp-services .col-lg-4{
	padding: 100px 75px;
}
#hp-services h2{
	font-size: 3.5em;
}
.hp-work .sample{
	background-attachment: fixed !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	height: 400px;
	padding: 0;
	margin: 0;
	}

#w-1{background:url(../img/backgrounds/bg-phs-bwy-2016.jpg);}
#w-2{background:url(../img/backgrounds/bg-colo-2.jpg);}
#w-3{background:url(../img/backgrounds/bg-propoints-2016.jpg);}
#w-4{background:url(../img/backgrounds/bg-phs-ictf-2.jpg);}
#w-5{background:url(../img/backgrounds/bg-abs.jpg);}
#w-6{background:url(../img/backgrounds/bg-brewster.jpg);}
#w-7{background:url(../img/backgrounds/bg-gba.jpg);}
#w-8{background:url(../img/backgrounds/bg-phs-cs_2.jpg);}
#w-9{background:url(../img/backgrounds/bg-phs-bwy-2018.jpg);}
#w-10{background:url(../img/backgrounds/bg-perf.jpg);}
#w-11{background:url(../img/backgrounds/bg-barrio.jpg);}
#w-12{background:url(../img/backgrounds/bg-bgcwr.jpg);}

#slidenav {
    margin: -50px 0 60px;
    position: relative;
    text-align: center;
    z-index: 99;
	}
	
#slidenav a{
	background:#fff;
	border-radius:50%;
	display:inline-block;
	font-size:0;
	height:12px;
	margin:0 4px;
	width:12px;	
	}

.logos{
	list-style:none;
	margin:50px 0 40px;
	padding:0;	
	}
	
.logos li{
	display:inline;	
	}
	
#featured-work-btn{
	padding: 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	}

#featured-work-btn a:hover{
	border-bottom: none !important; 
	opacity: .8;
	text-decoration: none;
	}

#featured-work-btn img{
	max-width: 165px;
	}


/* CAREERS SUBPAGE STYLES ------------------------ */

.careers .container{
	margin-bottom: 100px;
}
.careers h2{
	margin-bottom: 30px;
}

.careers h3:first-of-type{
	margin: 0px 0 5px;
}

.careers h3{
	margin: 40px 0 5px;
}

/* MAIN WORK SUBPAGE STYLES ------------------------ */

.banner-sm{
	}
		
.work h2{
    color: #fff;
	display: block;
	font-family: 'Teko', Helvetica, sans-serif; 
    font-size: 3.5em;
    font-weight: 600;
	height: 450px;
	line-height: 1;
   	margin: 0 auto;
	opacity: 0;
	-webkit-transition: all .5s ease .1s; /* Safari */
    transition: all .5s ease .1s;
	padding: 200px 50px 0px;
 	position: relative;
   	text-align: center;
	width: 100%;
	}

.work h2:hover{
	opacity: 1;
}

.work h2 span{
	display: block;
	font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: .25em;
    font-weight: 300;
    letter-spacing: 2px;
}

.work h3{
	color: #fff;
    display: block;
    font-family: 'Work Sans', Helvetica, sans-serif;
    font-size: 2em;
    font-weight: 300;
    letter-spacing: 1px;
	opacity: 0;
    position: relative;
    text-align: center;
	text-shadow: 1px 1px 3px #999;
	text-transform: inherit;
    top: 40px;
	}

.work h3:hover{
	opacity: 1;
}
	
.work img{
	width: 100%;
	}

.work-link a{
	border: 0;
	color: #fff;
    display: block;
    left: 0;
    margin: 0;
	margin-bottom: 30px;
	min-height: 450px;
    padding: 0px;
    text-decoration: none;
    top: 0;
	transition: all 0.2s ease 0s;
    width: 100%;
    z-index: 10;    
	}

.work-link a:hover {
	box-shadow: inset 0 0 0 230px rgba(0,0,0,0.45);
	text-shadow: 2px 2px 3px rgba(0,0,0,0.30);
	transform: scale(1.02);/*
  	-moz-transform: scale(1.1);
  	-webkit-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	-ms-transform: scale(1.1);*/
	}

.wi-1{
	background: url("../img/backgrounds/bg-phs-bwy-2016.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-2{
	background: url("../img/backgrounds/bg-ebs-2.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-3{
	background: url("../img/work/work-phs-launch-2016.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-4{
	background: url("../img//work/work-voujo.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-5{
	background: url("../img/backgrounds/bg-colo-2.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-6{
	background: url("../img/backgrounds/bg-phs-cts-2.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-7{
	background: url("../img/work/work-propoints.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-8{
	background: url("../img/work/work-phs-holiday-2015.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-9{
	background: url("../img/work/work-phs-jbb-2016.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-10{
	background: url("../img/work/work-phs-jbb-2016.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-11{
	background: url("../img/backgrounds/bg-phs-ictf-2.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-12{
	background: url("../img/backgrounds/bg-abs.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-13{
	background: url("../img/backgrounds/bg-brewster.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-14{
	background: url("../img/backgrounds/bg-gba.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-15{
	background: url("../img/backgrounds/bg-wise.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-16{
	background: url("../img/backgrounds/bg-phs-holiday-2015.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-17{
	background: url("../img/backgrounds/bg-phs-cs_3.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-18{
	background: url("../img/backgrounds/bg-phs-jbb-2018.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-19{
	background: url("../img/backgrounds/bg-phs-bwy-2018.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-20 {
	background: url("../img/backgrounds/bg-perf-2.jpg") no-repeat center center #000;
	background-size: cover;
}
.wi-21 {
	background: url("../img/backgrounds/bg-phs-district.jpg") no-repeat center center #000;
	background-size: cover;
}
.wi-22{
	background: url("../img/backgrounds/bg-barrio.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-23{
	background: url("../img/backgrounds/bg-bgcwr.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-24{
	background: url("../img/backgrounds/bg-storm7.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-25{
	background: url("../img/backgrounds/bg-pricepug.jpg") no-repeat center center #000;
	background-size: cover;
	}
.wi-26{
	background: url("../img/backgrounds/bg-buckeye_2.jpg") no-repeat center center #000;
	background-size: cover;
	}

/* INDIVIDUAL WORK SUBPAGE STYLES ------------------------ */

.work-ind .cta-btm{
	margin-top: 0;
}
.work-ind hr{
	margin: 15px 0;
}
.overview-ind{
	font-weight: 300;
	line-height: 1.7em;
	margin-bottom: 50px;
	}

.work-ind{
	background-size: contain;
	margin: 0;
	padding: 0;
	}

.banner-ind h1{
	color: #fff;
	font-size: 4em;
	line-height: 1;
	margin: 0 auto;
	max-width: 1200px;
	padding: 1em 0 .25em;
	text-align: center;
	}

.banner-ind span {
    color: #fff;
    display: block;
	}

.banner-ind .services-ind,
.banner-ind .location-ind {
	color: #fff;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 1;
	margin: 20px 0;
	text-align: center;
	}
.banner-ind .services-ind{
	margin: 10px 0 0;
	}
.banner-ind .location-ind {
	margin: 10px 0 30px;
	}
.banner-ind .services-ind > strong,
.banner-ind .location-ind > strong{
	text-transform: uppercase;
	}

.work-location{
	color: #fff;
	font-weight: 400;
	letter-spacing: 2px;
	margin-bottom: 4em;
	text-align: center;
	}

.logo-ind{
	border-bottom: 1px solid rgba(255,255,255,.50);
	display: block;
	padding: 20px 0px;
	margin: 0 auto;
	}
	
.work-phs-bwy{
	background-image: url(../img/backgrounds/bg-phs-bwy-2018.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-colo{
	background-image: url(../img/backgrounds/bg-colo-2.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-cts{
	background-image: url(../img/backgrounds/bg-phs-cts.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-ebs{
	background-image: url(../img/backgrounds/bg-ebs-2.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-propoints{
	background-image: url(../img/backgrounds/bg-propoints-2016.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-launch-2016{
	background-image: url(../img/backgrounds/bg-phs-launch-2016.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-holiday-2015{
	background-image: url(../img/backgrounds/bg-phs-holiday-2015.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-ictf{
	background-image: url(../img/backgrounds/bg-phs-ictf-2.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-abs{
	background-image: url(../img/backgrounds/bg-abs.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-brewster{
	background-image: url(../img/backgrounds/bg-brewster.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-wise{
	background-image: url(../img/backgrounds/bg-wise.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-gba{
	background-image: url(../img/backgrounds/bg-gba.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-cs{
	background-image: url(../img/backgrounds/bg-phs-cs_2.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.work-phs-jbb{
	background-image: url(../img/backgrounds/bg-phs-jbb-2018.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-perf{
	background-image: url(../img/backgrounds/bg-perf-2.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-phs-district{
	background-image: url(../img/backgrounds/bg-phs-district.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-barrio{
	background-image: url(../img/backgrounds/bg-barrio.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-bgcwr{
	background-image: url(../img/backgrounds/bg-bgcwr.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-storm7{
	background-image: url(../img/backgrounds/bg-storm7.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-pricepug{
	background-image: url(../img/backgrounds/bg-pricepug.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}
.work-buckeye{
	background-image: url(../img/backgrounds/bg-buckeye.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	}

.logo-wrap{
	box-shadow: 1px 1px 10px rgba(0,0,0,.3);
	height: 514px;
	max-width: 1200px;
	margin: 0 auto 5em;
	}

.screenshot-wrap{
	box-shadow: 1px 1px 10px rgba(0,0,0,.3);
	height: 1200px;
	max-width: 1400px;
	margin: 0 auto 5em;
	overflow: scroll;
	overflow-x: auto;
	}

.screenshot{
	display: block;
	margin: 0 auto;
	width: 100%;
	}

.browser-bar{
	background: #222 url(../img/misc/browser-bar.jpg) no-repeat top left / cover;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
	font-size: .9em;
	font-weight: 600;
	max-width: 1400px;
	padding: 12px 105px 12px;
	position: absolute;
	width: 100%;
}

.browser-bar a{
	color: #ccc;
}

.browser-bar a:hover{
	color: #fff;
}

.video-wrap{
	box-shadow: 1px 1px 10px rgba(0,0,0,.3);
	height: 1200px;
	max-width: 1400px;
	margin: -370px auto 5em;
	overflow: scroll;
	overflow-x: auto;
	}

.video-wrap .embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	overflow: hidden; 
	max-width: 100%; 
	height: auto; 
} 

.portfolio-bottom{
	margin-top: 150px;
	padding: 0;
	position: inherit;
	}

.portfolio-bottom img, .portfolio-bottom iframe{width: 100%;}

.quote{
	font-size: 2em;
	font-weight: 300;
	margin: 50px auto 20px;
	max-width:850px;	
	}
	
.quote-name{
	color: #9f805c;
	font-weight: 300;
	font-size: 1.5em;
	font-family: 'Teko';
	text-transform: uppercase;
	}
.quote-name span{
	color: #888;
	display: block;
	font-family: 'Work Sans';
	font-size: .6em;
	text-transform: none;
}

.cta-btm{
	background: #f8f8f8;
	margin-top: 150px;
	padding: 100px 0;
	text-align: center;
	}

.cta-btm a{
	transition: all 0.2s ease 0s;
	}

.cta-btm a:hover{
	color: #000000;
	border-bottom: 3px dotted #000000;
	text-decoration: none;
	}

.cta-btm h2{
	color: #222;
    font-family: "Work Sans",Helvetica,sans-serif;
    font-size: 2.75em;
    font-weight: 800;
	letter-spacing: inherit;
	line-height: 1.25em;
    margin: 0 auto;
    max-width: 1200px;
    padding: 30px 15px;
	text-transform: none;
	}

.cta-btm h2 > span{
	display: block;
	font-size: .8em;
	font-weight: 400;
}
.clients {
	background: #f8f8f8;
	padding: 80px 25px 120px;
}
.clients h2{
	font-size: 3em;
	margin: 0;
	text-align: center;
}
.clients h3{
	color: #222;
    font-family: "Work Sans",Helvetica,sans-serif;
    font-size: 2.75em;
    font-weight: 800;
	letter-spacing: inherit;
	line-height: 1.25em;
    margin: 0 auto 25px;
    max-width: 1200px;
    padding: 0px 15px 30px;
	text-align: center;
	text-transform: none;
}
.clients > div {
	align-items:center;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-evenly;
}
.clients img{
	flex-grow: 1;
	display: block;
	max-width: 190px;
	padding: 20px 10px;
}
.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	overflow: hidden; 
	max-width: 100%; 
	height: auto; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

/* NEWS/BLOG ARTICLE STYLES -----------------*/

.news-header{
	display: block;
	margin: 0 auto;
}

.news h1{
	color: #333;
	margin: 50px auto;
	max-width: 900px;
}

.news-intro{
	display: block;
	font-size: 1.35em;
	margin: 50px auto;
	max-width: 900px;
	text-align: center;
}

.news-001{
	background: url(../img/backgrounds/bg-news-001.jpg) no-repeat top center;
	}


/* SUBPAGE STYLES ------------------------ */

.technology-logo{
	margin: 0 auto;
	max-width: 125px;
	opacity: .4;
	width: 100%;
	}
	
.map-responsive{
    overflow:hidden;
    padding-bottom:32.25%;
	margin-top: 5em;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
  
    width:100%;
    position:absolute;
}

.values{
	margin-bottom: 40px;
}
	
.values > div{
	padding: 0 50px;
}

.values p{
	font-family: 'Teko', Helvetica, sans-serif;
	font-size: 1.25em;
}

.custom-icon{
	width: 40%;
}

.top-buffer{
	margin-top: 30px;
}

.bottom-buffer{
	margin-bottom: 30px;
}
	
.block-clear{
	clear:both;
	display: block;
}
.services h2{
	margin-top: 0;
	padding-top: 0;
}

/* LOCATION PAGE STYLES ------------------------ */

.bg-gray{
	background: #f8f8f8;
	padding: 75px 0;
}
.location-page .carousel{
	margin: 0;
	padding: 50px 0;
}
.location-page .carousel .carousel-control{
	color: #9f805c;
	text-shadow: none;
}
.location-page .carousel-caption{
	padding-bottom: 0;
}
.location-page .carousel-caption h3{
	color: #888888;
	font-size: 1em;
	text-shadow: none;
	text-transform: uppercase;
}
.location-page .carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
	margin: 0 auto;
}
.location-page .carousel-control.right, .location-page .carousel-control.left{
	background-image: none;
} 
.location-page.carousel-control-next, .location-page .carousel-control-prev{
	opacity: 1;
}
.location-page .carousel-control-next-icon, .location-page .carousel-control-prev-icon{
	background-color: #9f805c;
	background-size: 60%;
	border-radius: 50px;
	padding: 25px;
}

/* RESPONSIVE STYLING ------------------------ */

@media screen and (max-width: 1600px) {
	.hp #banner{
		padding: 200px 0 150px;
	}
	#hp-services .col-lg-4{
		padding: 75px;
	}
	.work-ind{
		background-size: auto;
	}
	.screenshot-wrap{
		height: 800px;
		max-width: 1150px;
	}
	.browser-bar{
		max-width: 1150px;
	}
	.screenshot{
		padding-top: 8px;
	}
}

@media screen and (max-width: 1200px) {
	.container{
		width: 100%;
	}	
	.hp #banner h1{
		font-size: 6em;
	}
	.hp-work .sample{
		background-size: auto !important;
	}
	h2{
		font-size: 3em;
		line-height: 1em;
	}
	#hp-services .col-lg-4{
		padding: 50px 75px 25px;
	}
	.screenshot-wrap{
		border: none;
		box-shadow: none;
		height: auto;
		overflow: auto;
		padding: 0 2em;
	}
	.screenshot{
		border: 1px solid #fff;
		box-shadow: 2px 2px 10px rgba(0,0,0,.3);
		padding-top: 0;
	}
	.browser-bar{
		display: none;
	}
	.cta-btm{
		padding: 100px 0;
	}
	.cta-btm h2{
		padding: 10px 15px;
	}
}

@media screen and (min-width: 981px) and (max-width: 1200px) {
	.hp-work .sample, .panel-link a{
		height: 375px;
	}
	.giant{
		font-size: 2.5em;
	}
}

@media screen and (max-width: 991px){
	.hp-work .sample{
		display: table;
	}
	
	.work-link{
		background-attachment:inherit !important;
		background-size: cover !important;
		display: table;
	}
	.panel-link h2{
		display: table-cell;
		opacity: 1;
		vertical-align: middle;
	}
	.panel-link a{
		height: inherit;
		padding: 0;
	}
	.work h2{
		height: 250px;
		opacity: 1;
		vertical-align: middle;
	}
}

@media screen and (max-width: 980px) {
	.hp #banner{
		padding: 150px 0 100px;
	}
	.hp #banner h1{
		font-size: 4.5em;
	}
	.hp #banner h1 > span{
		font-size: .45em;
	}
	.clients {
		padding: 80px 25px;
	}
	.clients h3{
		font-size: 2.5em;
		line-height: 1;
	}
	.clients img{
		max-width: 150px;
	}
	.cta-btm{
		margin-top: 50px;
		padding: 100px 0;
	}
	footer{
		position: inherit !important;
	}
}

@media screen and (max-width: 767px) {
	nav{
		padding: 0;
	}
	nav a{
		color: #fff;	
		font-size: 2em;
		padding: 25px 0 !important;
	}
	nav a:hover{
		color: #222;	
	}
	.navbar{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}
	.navbar-nav {
		background: #9f805c;
		margin: 0;
		padding: 25px 0;
		text-align: center;
	}
	.navbar-toggle .icon-bar{
		background-color: #fff;
	}
	.bar-first{
		width: 20px !important;
	}
	.bar-last{
		width: 14px !important;
	}
	.nav .active{
		text-decoration: none;
	}
	.navbar-nav > li > a:hover,
	.navbar-nav > li > a:focus{
		background: #222;
		color:#fff;
	}
	.big{
		font-size: 1.5em;
	}
	.hp #banner h1 > span{
		font-weight: 600;
	}
	.hp-work .sample{
		background-attachment:inherit !important;
		background-size: cover !important;
		display: table;
		height: 250px;
	}
	#hp-services{
		padding: 50px 0;
	}
	#hp-services .col-lg-4{
		padding: 10px 50px;
	}
	.banner-ind{
		padding: 0 25px;
	}
	.banner-ind h1{
		font-size: 3.25em;
	}
	.screenshot-wrap{
		padding: 0 1em;
	}
	.page-work .container, .col-lg-12.work, .work .col-sm-12, .work .col-xs-12{
		padding: 0;
	}
	.work-link a{
		margin-bottom: 0;
	}
	.page-work .cta-btm{
		margin-top: 0;
	}
}

@media screen and (max-width: 600px) {	
	.hdr-wrap{
		padding: 0 0 0 2em;
	}
	.hp #banner {
    	padding: 60px 0;
	}
	.hp #banner h1{
		font-size: 3em;
	}	
	#banner h1{
		font-size: 3em;
	}	
	#banner .txt{
		padding-top: 95px; 
		text-align:center;
	}
	.panel-link h2 {
    	font-size: 2em;
	}
	.panel-link h2 span {
    	font-size: .45em;
	}
	#hp-services h2 {
		font-size: 2.75em;
		margin: 0 0 10px 0;
	}
	.giant{
		font-size: 5vw;
	}	
	.cta-btm{
		padding: 80px 0;
	}	
}

@media screen and (max-width: 500px) {
	#banner{
		padding: 50px 0;
	}
	.hp #banner h1{
		font-size: 2.5em;
	}
	h3{
		font-size: 1.5em;
	}
	.big{
		font-size: 1.25em;
		line-height: 1.2;
	}
	.subheading{
		font-size: 5vw;
	}
	.page-work .container{
		padding-left: 0;
		padding-right: 0;
	}
	.banner-ind h1 {
    	padding: 1em 0 0;
	}
	.banner-ind .services-ind,
	.banner-ind .location-ind {
		font-size: 14px;
	}
	.banner-ind .services-ind > strong,
	.banner-ind .location-ind > strong{
	}
	.banner-ind .location-ind {
		margin: 10px 0 30px;
	}
	.work-link a{
		min-height: 250px;
	}
	.work h2{
		font-size: 2em;
		padding: 100px 50px;
	}
	.panel-link h2{
		display: table-cell;
	}
	.work h3{
		font-size: 1em;
		font-weight: 500;
		top: 8px;
	}
	.red-bg{
		padding: 35px 0;
	}
	.cta-btm h2 {
		font-size: 6.5vw;
	}
	.featured-work img{
		max-width: 125px;
	}
}

/* BOOTSTRAP OVERRIDE ---------- */


.navbar-collapse.in {
    overflow-y: inherit !important;
}

.navbar-collapse{
	border: 0;
}

/*  .container .col-xs-1, .container .col-sm-1, .container .col-md-1, .container .col-lg-1, .container .col-xs-2, .container .col-sm-2, .container .col-md-2, .container .col-lg-2, .container .col-xs-3, .container .col-sm-3, .container .col-md-3, .container .col-lg-3, .container .col-xs-4, .container .col-sm-4, .container .col-md-4, .container .col-lg-4, .container .col-xs-5, .container .col-sm-5, .container .col-md-5, .container .col-lg-5, .container .col-xs-6, .container .col-sm-6, .container .col-md-6, .container .col-lg-6, .container .col-xs-7, .container .col-sm-7, .container .col-md-7, .container .col-lg-7, .container .col-xs-8, .container .col-sm-8, .container .col-md-8, .container .col-lg-8, .container .col-xs-9, .container .col-sm-9, .container .col-md-9, .container .col-lg-9, .container .col-xs-10, .container .col-sm-10, .container .col-md-10, .container .col-lg-10, .container .col-xs-11, .container .col-sm-11, .container .col-md-11, .container .col-lg-11, .container .col-xs-12, .container .col-sm-12, .container .col-md-12, .container .col-lg-12{
	padding-right: 50px;
	padding-left: 50px;
	} */
		
.page-work .container{
	max-width: 1600px !important;
	width: 100% !important;
}
.navbar-nav > li > a{
	border-bottom: 0;
	padding-bottom: 0;
	padding-top: 0;
}
.row {
    margin-left: 0px;
    margin-right: 0px;
}
.no-padding{
	padding-left: 0 !important; 
	padding-right: 0 !important;
}


