/* 1.0 GENERAL */
html {
    -webkit-text-size-adjust: 100%;
}
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;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html,body{
	height:100%;
	position:relative;
}
* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}
header,footer,section{
	width:1266px;
	padding:0px;
	margin:auto;
	position:relative;
	z-index:1;
}
header{
	z-index:2;
}

main,footer,#mobile-slide-container{
/*-webkit-transition-duration: 140ms;
transition-duration: 140ms;	*/
position:relative;
z-index:1;
}
.hide{
	display:none!important;
}
.clear{
	clear:both;
}
.loading{
opacity: 0;
-webkit-transition: opacity 200ms 400ms ease-out;
-moz-transition: opacity 200ms 400ms ease-out;
-ms-transition: opacity 200ms 400ms ease-out;
-o-transition: opacity 200ms 400ms ease-out;
transition: opacity 200ms 400ms ease-out;
}
.loaded{
	opacity: 1;
}
header,h2,h3,h4{
	font-family:Syncopate,Arial,Sans-serif;
}
main p,main ul,main table{
	font-family:Lora,Times New Roman,serif;
}
h1{
	font-family:Lora,Times New Roman,serif;
	font-size:30px;
	font-weight:normal;
}
.lead-in{
	font-family:Syncopate,Arial,Sans-serif;
	color:#334499;
	font-weight:bold;
	text-transform:uppercase;
}
section.content p,section.content ul{
	font-size:20px;
	line-height:1.6em;
	margin-bottom:1em;
	list-style-position:outside;
	color:#222;
}
section ul{
	margin-left:50px;
}

p.last-paragraph{
	margin-bottom:0px;
}
section.content p.first-para::first-letter{
	font-size:150%;
}
section.content{
	width:966px;
	padding:40px 0px 0px;
}


section.content h1{
	text-align:center;
	font-size:40px;
	background-image: linear-gradient(90deg, #334499, #225544);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
section.content h2{
	text-align:center;
	font-family:Lora,Times New Roman,serif;
	font-weight:normal;
	margin-bottom:1.24em;
	font-size:26px;
	background-image: linear-gradient(90deg, #334499, #225544);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
section.content h3{
	text-align:center;
	font-family:Lora,Times New Roman,serif;
	font-weight:normal;
	margin-bottom:.3em;
	font-size:22px;
	color:#222;
	font-style:italic;
}

/* 2.0 HEADER */
header{
	padding:40px 0px;
	background-image:url('/img/header-bg.webp');
	background-size:cover;
	width:100%;
}
header .container{
	width:1266px;
	margin:auto;
}
body.home header{
	background:none;
	position:absolute;
}
body.home header .container{
	position:relative;
	margin:auto;
}
#logo{
	width:216px;
	height:auto;
	float:left;
}
#header-mobile-container,nav .mobile-close{
	display:none;
}
@media(min-width:1025px)
{
	#header-mobile-container,nav .mobile-close{
		display:none!important;
	}	
}
.show-mobile-menu .mobile-close{
	display: block;
	margin-right: 15px;
	margin-top: 28px;
	background:none;
	border:none;
	float:right;
	cursor:pointer;
}
.icon-mobile-menu{
	stroke-width:2;
	stroke:#FFFFFF;
	width:30px;
	height:22px;
}
nav{
	float:right;
	position:relative;
	z-index:2;
}
nav ul{
	list-style:none;
	float:right;
}
nav ul.main-menu li{
	display:inline-block;
	padding:0px 15px;
}
nav ul.main-menu li:last-child{
	padding-right:0px;
}
nav ul.main-menu li a{
	font-size:20px;
	color:#FFF;
	line-height:54px;
	font-weight:bold;
	text-decoration:none;
	position:relative;
}
nav ul li a:hover{
	/*text-decoration:underline;*/
}

nav ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  transition: all 0.15s ease-in-out;
}

/*nav ul li.no-sub-menu a:hover:before,nav ul li a.active:before{*/
nav ul li.no-sub-menu a:hover:before,nav ul li a.active:before,nav ul li.has-sub-menu:hover > a:before{
  visibility: visible;
  width: 100%;
}
nav ul.sub-menu{
	max-height:0;
	overflow:hidden;
	position:absolute;
	/*margin-top:-12px;*/
	margin-top:-17px;
   -webkit-transition:max-height 200ms ease-in-out 200ms;
   -moz-transition:max-height 200ms ease-in-out 200ms;
   -o-transition:max-height 200ms ease-in-out 200ms;
   -ms-transition:max-height 200ms ease-in-out 200ms;
   transition:max-height 200ms ease-in-out 200ms;
}

nav ul.sub-menu li.sub-active{
	font-weight:bold;
}
nav ul.sub-menu:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
/*nav ul li.has-sub-menu:hover .sub-menu:before{*/
nav ul li.has-sub-menu .sub-menu.open:before{
	visibility: visible;
	width:100%;
}
/*nav ul li.has-sub-menu:hover ul.sub-menu{*/
nav ul li.has-sub-menu ul.sub-menu.open{
	max-height:300px;
	margin-left:-10px;
	margin-right:-5px;
	padding-left:10px;
	/*background:rgba(0,0,0,.6);*/
	background:black;
	padding:5px 0px 0px 10px;
   -webkit-transition:max-height 200ms ease-in-out 200ms;
   -moz-transition:max-height 200ms ease-in-out 200ms;
   -o-transition:max-height 200ms ease-in-out 200ms;
   -ms-transition:max-height 200ms ease-in-out 200ms;
   transition:max-height 200ms ease-in-out 200ms;
}
/*body.home nav ul li.has-sub-menu:hover ul.sub-menu{*/
body.home nav ul li.has-sub-menu ul.sub-menu.open{
	background:rgba(0,0,0,.6);
}
nav ul li.has-sub-menu ul.sub-menu a{
	opacity:0;
}
/*nav ul li.has-sub-menu:hover ul.sub-menu a{*/
nav ul li.has-sub-menu ul.sub-menu.open a{
	opacity:1;
}
nav ul.sub-menu li{
	padding:0px;
}
nav ul.sub-menu li a{
	font-size:15px;
	line-height:32px;
	font-weight:normal;
}
nav ul.sub-menu li:hover a,nav ul.sub-menu li.sub-active a{
	font-weight:bold;
}
/*
nav ul.sub-menu li#overflow a{
	background:#000;
	margin-left:-10px;
	padding-left:10px;
	padding-bottom:5px;
	width:calc(100% + 10px);
	display:block;
}*/
body.home nav ul.sub-menu li#overflow a{
	background:none;
}

nav ul.sub-menu li#overflow{
	width:100%;
}
/*
.home nav ul.sub-menu li#overflow a{
	color:#FFF;
	font-weight:normal;
}
.home nav ul.sub-menu li#overflow a:hover{
	font-weight:bold;
}*/
@media(max-width:1024px)
{
	header,body.home header{
		position:fixed;
	}
	body.home header .container{
		position:initial;
	}
	
	#mobile-slide-container{
		padding-top:64px;
	}
	#header-mobile-container{
		display:block;
	}
	nav{
		display:none;
	}
	.mobile-nav{
		position: absolute;
		top: 50%;
		right:20px;
		margin-top: -8px;
		padding:0px;
		line-height: 22px;
		text-align: right;
		cursor: pointer;
		user-select: none;
		color: rgba(255,255,255,.9);
		width: 30px;
		height: 22px;
	}
	.menu-container{
		right: 0px;
		background-color: rgba(0,0,0,.9);
		position: fixed;
		top: 0;
		bottom: 0;
		z-index: 0;
		width: 0px;
		-webkit-transition: width 140ms;
		-moz-transition: width 140ms;
		-ms-transition: width 140ms;
		-o-transition: width 140ms;
		transition: width 140ms;	
	}
	.menu-container.show-mobile-menu{
		width:260px;
		-webkit-transition: width 140ms;
		-moz-transition: width 140ms;
		-ms-transition: width 140ms;
		-o-transition: width 140ms;
		transition: width 140ms;
		/*display:block!important;*/
	}
	.menu-container.show-mobile-menu nav{
		display:block;
	}
	nav ul.main-menu li{
		
	}
	main.mobile-open,footer.mobile-open,#mobile-slide-container.mobile-open{
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1;
		cursor: e-resize;
		-webkit-transform: translatex(-260px) translatez(0);
		-moz-transform: translatex(-260px) translatez(0);
		-ms-transform: translatex(-260px) translatez(0);
		-o-transform: translatex(-260px) translatez(0);
		transform: translatex(-260px) translatez(0);
		-webkit-transition-duration: 140ms;
		transition-duration: 140ms;
	}
	nav ul li.has-sub-menu ul.sub-menu{
		width:230px;
	}
	nav ul li.has-sub-menu ul.sub-menu.open{
		margin:0px;
		padding:0px;
		background:none;
		position:relative;
		margin-top:-16px;
		margin-bottom:-16px;
	}
	nav ul li.has-sub-menu ul.sub-menu.open li{
		padding:5px;
		width:220px;
	}
	nav ul li.has-sub-menu ul.sub-menu.open a{
		font-size:12px;
		line-height:1.1em;
	}
	nav ul li.has-sub-menu .sub-menu.open:before{
		width:0;
		visibility:hidden;
	}
	nav ul li.has-sub-menu .sub-menu #overflow{
		padding-right:20px;
	}

}
/* 3.0 FOOTER */
footer{
	width:100%;
	margin-top:100px;
	background-image:url('/img/footer-bg.webp');
	background-size:cover;
	padding:65px 0px;
}
footer .contact-data-mobile{
	display:none;
	font-size:20px;
	color:#FFF;
	text-align:center;
	margin-bottom:40px;
}
footer .contact-data-mobile a{
	color:#FFF;
	text-decoration:none;
}
footer .contact-data-mobile a:hover{
	text-decoration:underline;
}

footer img{
	width:100%;
	height:auto;
	display:block;
}
.footer-container{
	width:1266px;
	margin:auto;
}
footer #contact{
	float:left;
	width:100%;
}

footer #contact label{
	width:110px;
	display:inline-block;
	font-size:20px;
	font-family:Lora,Times New Roman,serif;
	color:#FFF;
}
footer #contact label[for="newsletter"]{
	width:initial;
	margin-left:5px;
}
footer #contact input,footer #contact textarea{
	font-family:Lora,Times New Roman,serif;
}
footer .form-group{
	margin:15px 0px;
	position:relative;
}
footer #contact input[type="text"],input[type="email"],footer #contact textarea{
	width:510px;
	display:inline-block;
	border:none;
	height:56px;
	font-size:20px;
	padding-left:10px;
}
footer #contact label.error{
	margin-left:-240px;
	padding:5px 15px;
	background:#8b0000;
	width:initial;
	-webkit-box-shadow: 3px 3px 2px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 3px 3px 2px 0px rgba(0,0,0,0.75);
	box-shadow: 3px 3px 2px 0px rgba(0,0,0,0.75);
}
footer #contact textarea{
	height:200px;
	font-size:20px;
	vertical-align:middle;
	padding-top:10px;
}
footer #contact input[type="checkbox"]{
	width:20px;
	height:20px;
	border:2px solid #FFF;
	background:none;
	margin-left:113px;
}
footer #contact input[type="submit"]{
	width:186px;
	background:#000;
	color:#FFF;
	border:0;
	margin-left:113px;
	height:56px;
	font-size:20px;
	cursor:pointer;
}
footer #contact #form-submit-msg{
	margin-left:113px;
	font-family:Lora,Times New Roman,serif;
	font-size:20px;
	color:#FFF;
	margin-bottom:15px;
	padding:10px;
	background:#225544;
	font-weight:bold;
	cursor:pointer;
	display:none;
	float:left;
}
.submit-msg-display{
		display:block!important;
}
.contact-data{
	float:right;
	text-align:right;
	font-size:20px;
	color:#FFF;
	font-family:Lora,Times New Roman,serif;
	line-height:30px;
}
.contact-data p{
	color:#FFF;
}
.contact-data .referral{
	margin-top:20px;
	font-style:italic;
}
.contact-data a{
	text-decoration:none;
	letter-spacing:1px;
	color:#FFF;
}
.contact-data .referral a{
	font-weight:bold;
}
.contact-data a:hover{
	text-decoration:underline;
}
sup{
	vertical-align:super;
	font-size:.7em;
	padding-left:3px;
	padding-right:3px;
}
@media(max-width:1300px)
{
	.footer-container{
		width:100%;
		padding:0px 20px;
	}
}
/* 4.0 HOME */
	#hero{
		position:relative;
		width:100%;
		top:0;
		left:0;
		z-index:0;
		padding:0;
		background:#FFF;
	}
	#hero-bg{
		width:100%;
		height:auto;
		position:relative;
	}

	#hero h1{
		color:#FFF;
		text-align:center;
		position:absolute;
		top:calc(50% - 147px);
		padding:0px 15%;
		line-height:1.4em;
	}
	body.home #services{
		margin-top:-110px;
	}

	.service-box{
		width:calc(33.333% - 20px );
		margin:0px 15px;
		padding:30px;
		background:#FFF;
		float:left;
		display:block;
	}
	.service-box h2{
		text-transform:uppercase;
		font-size:20px;
		margin-bottom:.5em;
	}
	.service-box p{
		font-size:20px;
		margin-bottom:1em;
		color:#222;
	}
	.service-box a{
		font-size:20px;
		font-style:italic;
		text-decoration:none;
	}
	.swatch{
		height:10px;
		width:100%;
		margin-bottom:1.1em;
		display:block;
	}
	.ppc-box{
		margin-left:0px;
	}
	.ppc-box .swatch{
		background-color:#334499;
	}
	.ppc-box h2{
		color:#334499;
	}
	.ppc-box a{
		color:#334499;
	}
	.bpc-box .swatch{
		/*background-color:#225566;*/
	background-image: linear-gradient(90deg, #334499, #225544);
    background-size: 100%;
	}
	.bpc-box a{
		background-image: linear-gradient(90deg, #334499, #225544);
		background-size: 100%;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		-webkit-text-fill-color: transparent; 
		-moz-text-fill-color: transparent;
	}
	.bpc-box h2{
		background-image: linear-gradient(90deg, #334499, #225544);
		background-size: 100%;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		-webkit-text-fill-color: transparent; 
		-moz-text-fill-color: transparent;
	}
	.os-box{
		margin-right:0px;
	}
	.os-box .swatch{
		background-color:#225544;
	}
	.os-box h2{
		color:#225544;
	}
	.os-box a{
		color:#225544;
	}
	
/* HOME TESTIMONIALS SLIDER */
body.home #home-testimonials{
	margin-top:80px;
}
body.home #home-testimonials .flexslider{
	width:900px;
	margin:auto;
	display:block;
}
body.home #home-testimonials .flexslider p{
	color:#444444;
	font-size:30px;
	text-align:center;
	line-height:1.6em;
	margin-bottom:20px;
}
body.home #home-testimonials p.client{
	margin-top:.4em;
	font-weight:bold;
	font-size:26px!important;
	margin-bottom:50px!important;
}
body.home #home-testimonials #testimonials-link{
	font-size:30px;
	font-style:italic;
	background-image: linear-gradient(90deg, #334499, #225544);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent; 
	-moz-text-fill-color: transparent;
	text-align:center;
	text-decoration:none;
	display:block;
}
	
/* ABOUT */
#headshot-wrapper{
	width:100%;
	margin:1.7em auto;
	padding-top:.3em;
}
#whatsupdoc{
	display:block;
	width:100%;
	/*margin:1.7em auto;
	padding-top:.3em;*/
}
.photo-credit{
	font-size:12px;
	font-style:italic;
	text-align:left;
	margin-top:3px;
	display:block;
}
#about.content p,#about.content ul{
	padding:0px 20px;	
}
#about.content h2{
	margin-bottom:0px;
}

/* SERVICES */
.service-divider{
	height:10px;
	margin:20px 0px 5px 0px;
}
#services.content h1{
	margin-bottom:.6em;
}
#services.content h2{
	/*margin-bottom:.7em;*/
	margin-bottom:.4em;
	font-weight:bold;
}
#services.content h3{
	margin-bottom:0px;
}
.service-top{
	margin-bottom:1.6em;
}
.service{
	margin-top:.6em;
}
#services p.contact-byline{
	margin-top:1em;
	text-align:center;
	cursor:pointer;
	font-style:italic;
}
.contact-swatch.swatch{
	background-image: linear-gradient(90deg, #334499, #225544);
	background-size: 100%;
	width:30%;
	margin:auto;
	margin-top:3em;
}

.service.ppc h2{
	color:#334499;
}
.service-divider.ppc{
	background:#334499;
	width:115px;
}
.service.bpc h2{
	color:#334499;
}
.service-divider.bpc{
	background:#225566;
	width:144px;
}
.service.osc h2{
	color:#225544;
}
.service-divider.osc{
	background:#225544;
	width:254px;
}
.third{
	width:33.333%;
	float:left;
	padding:0px 10px;
}
.two-thirds{
	width:66.666%;
	margin:auto;
}
.half{
	width:50%;
	float:left;
	padding:0px 10px;
}
.content .third p::first-letter,.content .half p::first-letter{
	font-size:100%;
}
.third p,.half p{
	text-align:center;
}

#organizational_solutions h3{
		background-image: linear-gradient(90deg, #334499, #225544);
		background-size: 100%;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		-webkit-text-fill-color: transparent; 
		-moz-text-fill-color: transparent;
}
#organizational_solutions h2{
	font-weight:bold;
}

#organizational_solutions .service{
	text-align:center;
	width:80%;
	margin:auto;
}
.content #organizational_solutions p::first-letter{
	font-size:100%;
}
.content #organizational_solutions p.first-para::first-letter{
	font-size:150%;
}
#organizational_solutions .org-service{
	margin-bottom:1.6em;
}

/* TESTIMONIALS */
/*#testimonials.content{
	margin-top:0px;
}*/

#testimonials .testimonial{
	margin-bottom:2.5em;
}
#testimonials.content p.client{
	margin-left:40px;
	font-size:26px;
	font-style:italic;
	font-weight:bold;
	background-image: linear-gradient(90deg, #334499, #225544);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

/* NEWS */
section.content h2.news-headline{
	text-align:left;
	margin-top:1em;
	margin-bottom:.3em;
	font-weight:bold;
}
section.content h3.author-byline{
	text-align:left;
	margin-bottom:1.5em;
}
section#news.content p, section.content ul{
	text-align:justify;
}
#news.content .contact-swatch.swatch{
	margin-bottom:3em;
}
.end-notes{
	margin-top:2em;
}
.end-notes span{
	display:block;
	font-size:.9em;
	font-family:Lora,Times New Roman,serif;
	font-style:italic;
	margin:.3em 0px;
	color:#222;
}
@media(max-width:1300px)
{
	header{
		width:100%;
		padding:40px 20px;
	}
	header .container{
		width:100%;
		margin:initial;
	}
	.home section{
		width:100%;
		padding:0px 20px;
	}
	#hero h1{
		font-size:26px;
		padding:0px 5%;
		top:calc(50% - 91px);
	}
	body.home #services{
		margin-top:-80px;
	}
	.home .service-box{
		width: calc(33.333% - 13.333px );
		padding:20px;
	}
	.swatch{
		height:6.667px;
	}
	.service-box h2,.service-box p{
		font-size:18px;
	}
	.ppc-box{
		margin-right:10px;
	}
	.bpc-box{
		margin:0px 10px;
	}
	.os-box{
		margin-left:10px;
	}
	body.home #home-testimonials{
		margin-top:60px;
	}
	body.home #home-testimonials p.client{
		font-size:20px!important;
		margin-bottom:30px!important;
	}
	body.home #home-testimonials .flexslider p,body.home #home-testimonials #testimonials-link{
		font-size:24px;
	}
}
@media(max-width:1260px){

	section.content{
		width:100%;
		padding:40px 100px 0px;
	}
	nav ul li a{
		font-size:18px;
	}
}
@media(max-width:1024px){
	header{
		padding:10px 40px;
	}
	nav ul{
		margin-top:70px;
		float:none;
		display:block;
	}
	body.home header{
		background:rgba(0,0,0,.9);
	}
	.home #mobile-slide-container{
		padding-top:0px!important;
	}
	#mobile-slide-container{
		padding-top:74px;
	}
	#hero{
		overflow:hidden;
	}
	#hero h1{
		font-size:24px;
		padding:0px 30px;
		top:calc(50% - 84px);
	}
	body.home #services{
		margin-top:-40px;
	}
	section.content{
		width:100%;
		padding:30px 60px 0px;
	}
	section.content h1{
		font-size:36px;
	}
	section.content h2{
		font-size:22px;
	}
	section.content h3{ 
		font-size:20px;
	}
	section.content h4{
		font-size:18px;
	}
	section.content ul,section.content p{
		font-size:18px;
	}
	body.home #home-testimonials{
		margin-top:30px;
		padding:0px 20px;
	}
	body.home #home-testimonials .flexslider{
		width:100%;
	}
	body.home #home-testimonials .flexslider p{
		font-size:20px;
	}
	body.home #home-testimonials #testimonials-link{
		font-size:20px;
	}
	
	#testimonials.content p.client{
		font-size:22px;
		margin-left:30px;
	}
	#testimonials .testimonial{
		margin-bottom:2em;
	}
	.contact-swatch.swatch{
		margin-top:2em;
	}
	#news.content .contact-swatch.swatch{
		margin-bottom:2em;
	}
	section.content h2.news-headline{
		text-align:center;
	}
	section.content h3.author-byline{
		text-align:center;
	}
	section.content ul{
		margin-left:40px;
	}
	.contact-data{
		display:none;
	}
	
	section#services .half p,section#services .third p{
		font-size:16px;
	}
	footer #contact{
		width:708px;
		float:none;
		margin:auto;
		display:block;
	}
	footer #contact label{
		/*font-size:16px;*/
		margin-left:2px;
		margin-bottom:1px;
	}
	footer #contact input[type="text"], input[type="email"], footer #contact textarea, footer #contact input[type="submit"]{
		width:100%;
		margin-left:0px;
	}
	footer #contact input[type="text"], input[type="email"], footer #contact textarea{
		/*font-size:16px;*/
	}
	footer #contact input[type="text"], input[type="email"]
	{
		/*height:36px;*/
	}
	footer #contact input[type="checkbox"]{
		margin-left:0px;
	}
	footer .contact-data{
		display:none;
	}
	label.error{
		position:absolute;
		right:10px;
	}
	footer .contact-data-mobile{
		/*display:block;*/
	}
	footer #contact #form-submit-msg{
		margin-left:0px;
		float:none;
		text-align:center;
	}
}
@media(max-width:900px)
{
	#hero h1{
		font-size:22px;
		top:calc(50% - 77px);
	}
}
@media(max-width:800px)
{
	#hero h1{
		font-size:20px;
		top:calc(50% - 70px)
	}
}
@media(max-width:768px){
	header{
		padding:10px 20px;
	}
	nav ul {
	  margin-top: 63px;
	}
	.show-mobile-menu .mobile-close{
		margin-top:22px;
	}
	#mobile-slide-container{
		padding-top:64px;
	}
	#logo{
		width:175px;
	}
	#hero{
		height:400px;
	}
	#hero-bg{
		width:855px;
		height:400px;
		left:50%;
		margin-left:-50%;
	}
	body.home #services{
		margin-top:0px;
	}
	.home .service-box{
		width: 100%;
		padding:20px;
		float:none;
		margin:0px;
		text-align:center;
	}
	.home section{
		padding:0px;
	}
	.swatch{
		height:10px;
	}
	.ppc-box{
		margin-right:0px;
	}
	.bpc-box{
		margin:0px;
	}
	.os-box{
		margin-left:0px;
	}
	body.home #home-testimonials .flexslider p{
		font-size:18px;
	}
	body.home #home-testimonials #testimonials-link{
		font-size:18px;
	}
	section.content{
		padding:20px 0px;
	}
	section.content h1{
		font-size:30px;
		padding:0px 30px;
		}
	section.content h2{
		font-size:20px;
		padding:0px 30px;
		/*margin-bottom:1.4em;*/
		}
	section.content h3{ 
		font-size:18px;
		padding:0px 30px;
		}
	section.content h4{
		font-size:18px;
		padding:0px 30px;
		}
	section.content ul,section.content p{
		font-size:16px;
		padding:0px 30px;
	}
	.end-notes{
		padding:0px 30px;
	}
	section.content ul{
		margin-left:30px;
	}
	#testimonials .testimonial{
		/*margin-bottom:1.6em;*/
	}
	#testimonials .testimonial p{
		margin-bottom:.4em;
	}
	#testimonials.content p.client{
		font-size:18px;
		margin-left:20px;
		line-height:1.4em;
	}
	.third,.half,.two-thirds{
		width:100%;
		float:none;
	}
	.service{
		margin-top:2em;
	}
	#headshot-wrapper{
		margin:1em auto;
	}
	.photo-credit{
		margin-left:20px;
		font-size:10px;
	}
	/*
	#whatsupdoc{
		margin:1em auto;
	}*/
	/*
	#whatsupdoc{
		margin-bottom:20px;
	}
	*/
	section.content ul,section.content p,section.content h2{
		/*margin-bottom:20px;*/
	}
	footer{
		margin-top:40px;
		padding:20px 0px;
	}
	footer #contact{
		width:100%;
		float:none;
		display:block;
	}
	footer #contact label{
		font-size:16px;
		margin-left:2px;
		margin-bottom:1px;
	}
	footer #contact input[type="text"], input[type="email"], footer #contact textarea, footer #contact input[type="submit"]{
		width:100%;
		margin-left:0px;
	}
	footer #contact input[type="text"], input[type="email"], footer #contact textarea{
		font-size:16px;
	}
	footer #contact input[type="text"], input[type="email"]
	{
		height:36px;
	}
	footer #contact input[type="checkbox"]{
		margin-left:0px;
	}
	footer .contact-data{
		display:none;
	}
	label.error{
		position:absolute;
		right:10px;
	}
	footer #contact #form-submit-msg{
		font-size:16px;
	}
}
@media(max-width:640px){
	#logo{
		width:150px;
	}
	nav ul {
	  margin-top: 57px;
	}
	.show-mobile-menu .mobile-close{
		margin-top:19px;
	}
	#hero h1{
		font-size:18px;
	}
	#mobile-slide-container{
		padding-top:57px;
	}
	section.content{
		padding:0px 0px;
	}
	section.content h1{
		font-size:26px;
		padding:20px 20px 0px;
	}
	section.content h2{
		font-size:20px;
		padding:0px 20px;
	}
	section.content h3{ 
		font-size:18px;
		padding:0px 20px;
	}
	section.content h4{
		font-size:18px;
		padding:0px 20px;
	}
	section.content ul,section.content p{
		font-size:16px;
		padding:0px 20px;
	}
	section.content ul{
		margin-left:20px;
		padding:0px 20px;
	}
	footer #contact label{
		font-size:14px;
	}
	footer #contact input[type="text"], input[type="email"], footer #contact textarea{
		font-size:14px;
	}
	footer #contact #form-submit-msg{
		font-size:14px;
	}
}