
   /* -------------------------- Custom Fonts -------------------------- */
   
   @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap');

   /* -------------------------- Main Website Styles -------------------------- */

body {
	background-color : #383b3f;
	margin-left : 0px;
	margin-right : 0px;
	margin-top : 0px;
	margin-bottom: 0px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
	color: #4b4949;
}
img, a img {	
	border: 0 none;
	max-width: 100%;
}
*,
*::after, 
*::before {
	 -webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
				box-sizing: border-box;
}
a[href^=tel] { color: inherit!important;}
a {
	outline: none;
}
H1 {
	font-size : 48px;
	margin-bottom : 10px;
	margin-top: 0px;
	font-weight: 700;
	color: #4b4949;
	line-height: 54px;
}
H2 {
	font-size : 24px;
	line-height: 36px;
	font-weight: 700;
	color: #4b4949;
	text-transform: uppercase;
	background-image: url(../site-media/gray-line-short.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 0px;	
}
H3 {
	font-size : 18px;
	line-height: 24px;
	margin-bottom : 0px;
	margin-top: 0px;
	font-weight: 700;
	color: #4b4949;
	text-transform: uppercase;
}
H4 {
	font-size : 12px;
	margin-bottom : 0px;
	margin-top: 0px;
	font-weight: 700;
	color: #4b4949;
}
hr /* Make sure you upate all the color hexes when changing, different browsers read this tag differently. */
	{
	border: 0px solid #cccccc;
	color: #cccccc;
	height: 1px;
	background-color: #cccccc;
}
A, A:Link, A:Visited {
	color: #c1509e;
	text-decoration: none;
	font-weight: 700;
}
A:Hover {
	color: #cf79b4;
	text-decoration: underline;
}
.font-white,
.font-white h1,
.font-white h2,
.font-white h3,
.font-white h4,
.font-white a,
.font-white a:link,
.font-white a:visited {
	color: #fff;
}
.font-black,
.font-black h1,
.font-black h2,
.font-black h3,
.font-black h4,
.font-black a,
.font-black a:link,
.font-black a:visited {
	color: #000;
}
b, strong {
	font-weight: 700;
}

/* ------ Grid Column Classes ------ */

/* Example Layout:
*  
*
*	<div class="section group">
*		<div class="col span_6">
*			Content Goes Here.
*		</div>
*		<div class="col span_6">
*			Content Goes Here.
*		</div>
*	</div>
*
*
*/

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/* GROUPING */


.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/* Grid-Style Div Classes */

.col {
	display: block;
	float: left;
}
.col_padding {
	padding: 5px;
}

/* 
Span classes are all out of 12 columns.
i.e .span_6 = length of 6 columns out of 12, or half width. 
*/

.span_12 {
	width: 100%;
}

.span_11 {
	width: 91.66%;
}

.span_10 {
	width: 83.33%;
}

.span_9 {
	width: 75%;
}

.span_8 {
	width: 66.66%;
}

.span_7 {
	width: 58.33%; 
}

.span_6 {
	width: 50%;
}

.span_5 {
	width: 41.66%; 
}

.span_4 {
	width: 33.33%; 
}

.span_3 {
	width: 25%;
}

.span_2 {
	width: 16.66%; 
}

.span_1 {
	width: 8.33%; 
}

/* -------------------------- Button Style Classes Go Here -------------------------- */
.btn {
	background-color: #c1509e;
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 16px;
	margin-top: 10px;
	border: none; 
	line-height: normal!important;
	font-style: normal;
	-webkit-appearance: none;
	display: inline-block;
	font-weight: 600;
}
.btn:hover {
	background-color: #cf79b4;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: background-color 0.1s ease;
	-moz-transition: background-color 0.1s ease;
	-o-transition: background-color 0.1s linear;
	transition: background-color 0.1s linear;
}
.btn1, 
.btn1:link, 
.btn1:visited,
.btn2, 
.btn2:link, 
.btn2:visited
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
	display: inline-block;
	padding: 15px;
	min-width: 200px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	margin-top: 10px;
}
.btn1, 
.btn1:link, 
.btn1:visited {
	background-color: #c1509e;
	color:#fff;
}
.btn1:hover {
	text-decoration: none;
	background-color: #cf79b4;
}
.btn2, 
.btn2:link, 
.btn2:visited {
	background-color: #9ca647;
	color: white;
}

.btn2:hover {
	text-decoration: none;
	background-color: #4b4b4b;
}
.btn-outline {
	background-color: transparent;
	border: 1px solid #c1509e;
	color: #c1509e;
}
.btn-outline:hover {
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
}
.font-white .btn-outline {
	border: 1px solid #fff;
	color: #fff;
}
.font-white .btn-outline:hover {
	background-color: rgba(255,255,255,0.3);
}


/* -------------------------- Social Media Style Classes Go Here -------------------------- */

.box-social {
	
}   
.box-social a{
	display: inline-block;
	width: 35px;
	height: 35px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #00457c;
}
.icon-facebook:link, .icon-facebook:visited {
	background-image: url(../site-media/icons/facebook.png);
}
.icon-facebook:hover {
	background-color: #3b579d;
}
.icon-twitter:link, .icon-twitter:visited {
	background-image: url(../site-media/icons/twitter.png);
}
.icon-twitter:hover {
	background-color: #33ccff;
}
.icon-google-plus:link, .icon-google-plus:visited {
	background-image: url(../site-media/icons/google-plus.png);
}
.icon-google-plus:hover {
	background-color: #dc4a38;
}
.icon-youtube:link, .icon-youtube:visited {
	background-image: url(../site-media/icons/youtube.png);
}
.icon-youtube:hover {
	background-color: #cd201f;
}



   /* -------------------------- Specialty Website Styles -------------------------- */

.hiddenPic {
   display:none;
}
@media print {
      .noprint { display: none; }
}
.over img:hover { 
filter : alpha(opacity=70); 
-moz-opacity: 0.7; 
opacity:0.7; /* FX/Opera/Safari/Chrome */
}
.clearer {
	clear: both;
}
.categories-text {
	line-height: 18px;
	font-size: 12px;
}
.box-categories a:link, 
.box-categories a:visited {
	font-size: 14px;
}

   /* -------------------------- Structure Style Classes Go Here -------------------------- */

.main-container  {
	width: 100%; 
   position: relative;
	text-align: left;
}
.boxed {
	width: 1200px;
	margin: 0 auto;
}
.padding {
	padding: 25px;
}
.padding10 {
	padding: 10px;
}
.padding15 {
	padding: 15px;
}
.padding20 {
	padding: 20px;
}
.padding25 {
	padding: 25px;
}
.padding35 {
	padding: 35px;
}
.padding50 {
	padding: 50px;
}
.padding100 {
	padding: 100px;
}
.padding2 {
	padding: 10px;
}
.padding-center {
	padding-top: 25px;
	padding-bottom: 25px;
}
.padding-left {
	padding-top: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
}
.padding-right {
	padding-top: 25px;
	padding-left: 25px;
	padding-bottom: 25px;
}
.bg-body {
	background-color: #fff;
}
.box-body {
	position: relative;
}
.box-left {
	width: 30%;
	float: left;
}
.box-right {
	width: 30%;
	float: right;
}
.box-main-2-column {
	width: 69%;
	float: left;
	height: 100%;
}
.box-main-3-column {
	width: 39%;
	float: left;
	height: 100%;
}

/* -------------------------- Header Style Classes Go Here -------------------------- */

.slicknav_menu,
.js #menu {
display: none;
}   
   
.bg-top {
	position: relative;
	z-index: 9999;
	background-color: #383b3f;
	padding: 10px 0;
	position: fixed; 
	width: 100%;
}
.box-top {
	
}
.bg-header {

}
.box-header {  
	position: relative;
}
.box-logo {

}
.box-logo img {
	width: auto;
}
.bg-menu {

	
}
.box-menu {
	float: right;
	position: relative;
}


/* -------------------------- Parallax & Slideshow Styles -------------------------- */
   
.parallax {
	padding: 0; 
	margin: 0; 
	width: 100%; 
	margin: 0 auto; 
	background-size: 100% auto;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	z-index: 99;
}
.bg-main-banner {
	position: relative;
	width: 100%;
	background-color: #fff;
	background-image: url(../site-media/bg-green-brian-gretchen-colleran-icon.jpg);
	padding-top: 80px;
}
.bg-page-hdr {	
	text-align: left;
	padding: 20px 0;
}
.bg-page-hdr h1 {
	color: #fff;
	font-size: 32px;
	line-height: 38px;
	text-transform: uppercase;

}

/* -------------------------- Footer Style Classes Go Here -------------------------- */
   
.bg-footer-top {
	background-color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #e6e6e6;
}
.bg-footer {
	padding-top: 20px;
	padding-bottom: 20px;
}
.box-footer-top h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 20px;
}
.box-footer-top,
.box-footer-top a:link, 
.box-footer-top a:visited  {
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
}
.box-footer-top .footer-logos {
	text-align: center;
}
.box-footer-top .footer-logos img {
	margin: 15px 10px; 
}
.box-footer,
.box-footer a:link, 
.box-footer a:visited  {
	font-size: 12px;
	color: #a1a1a1;
}

.footer-left {
	width: 50%;
	float: left;
}
.footer-right {
	width: 50%;
	float: right;
	text-align: right;
}
.box-footer {

}
.box-footer .column {
	width: 25%;
	float: left;
}
.box-footer h3 {
	margin-bottom: 20px;
}
.box-footer a:link {
	font-weight: 700;
}


/* -------------------------- Home Classes Go Here -------------------------- */

.bg-home-banner {
	position: relative;
	background-image: url(../site-media/hopewell-summer-solstice.jpg);
	background-repeat: no-repeat;
	background-position: center;
	min-height: 650px;
	background-size: cover;
	background-attachment: fixed;
}
.bg-home-intro,
.bg-home-process,
.bg-home-projects,
.bg-home-news,
.bg-home-contact {
	padding: 60px 0;
}
.box-home-process h2 {
	text-align: center;
	background-position: bottom center;
	color: #fff;
}
.box-home-contact h2 {
	background-position: bottom center;
}
.box-home-contact {
	text-align: center;
}
.box-contact-form {
	text-align: left;
}
.box-contact-form .fld {
	padding: 5px 0;
}
.bg-trans-pink {
	background-color: rgba(193,80,158,0.85);
}
.col-home-banner {
	padding: 100px 10px 20px 10px;
}
.col-home-banner h3 {
	background-color: #f15e63;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 300;
	display: inline-block;
	margin-left: -50px;
}
.col-home-banner h1 {
	font-size: 32px;
	line-height: 42px;
	text-transform: uppercase;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
	margin-bottom: 15px;
}
.col-home-banner-content {
	text-align: center;
	font-weight: 300;
}
.box-home-process {
	color: #8d8d8d;
}
.box-home-process h3 {
	color: #d7d7d7;
	font-size: 18px;
	line-height: 28px;
}
.box-home-process h4 {
	color: #9ca647;
	font-size: 15px;
	line-height: 26px;
	font-weight: 400;
}
.box-home-process .col-left {
	text-align: right;
}
.box-home-process .col-center {
	text-align: center;
	background-image: url(../site-media/gray-square.png);
	background-position: center;
	background-repeat: repeat-y;
	min-height: 100px;
}
.box-home-process .col-right {
	text-align: left;
}

/* -------------------------- Forms -------------------------- */

.box-form .col {
	padding-top: 5px;
	padding-bottom: 5px;
}
.box-form .lbl {
	text-align: right;
	padding-right: 15px;
	font-weight: bold;
}
.box-form .fld input,
.box-form .fld textarea,
.box-home-form .fld input,
.box-home-form .fld textarea {
	padding: 10px!important;
	box-sizing: border-box;
	font-size: 16px!important;
}
.box-home-form .lbl {
	padding-top: 10px;
}

.tbl-form td {
	padding: 5px;
}

/* -------------------------- Custom Style Classes Go Here -------------------------- */

.bg-triangles {
	background-image: url(../site-media/bg-process.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #2c3135;
	background-attachment: fixed;
}
.bg-gray {
	background-color: #f2f2f2;
}
.bg-gray2 {
	background-color: #ababab;
}

/* -------------------------- Featured Images -------------------------- */

.featured-image {
	float: left;
}
.featured-image img {
	width: 200px;
	height: auto;
	margin-right: 15px;
	margin-bottom: 15px;
}
.box-right .featured-image img,
.box-left .featured-image img {
	width: 100px;
	height: auto;
	margin-right: 10px;
	margin-bottom: 10px;
}
.box-home-location-left img {
	width: 150px;
	height: auto;
	margin-right: 10px;
	margin-bottom: 10px;
}
.box-right .categories-text a {
	color: #c1509e;
}
.box-right .categories-text a:hover {
	color: #cf79b4;
}

   /* -------------------------- Testimonials -------------------------- */
.box-testimonials {
	-moz-column-count: 3;
    -moz-column-gap: 25px;
    -webkit-column-count: 3;
    -webkit-column-gap: 25px;
    column-count: 3;
    column-gap: 25px;
}
.box-testimonials .box-story-content {
	display: inline-block;
	line-height: 24px;
	font-size: 16px;
	padding: 25px;
	color: #777777;
	border-bottom: 2px solid #cccccc;
	font-style: italic;
}
.box-testimonials .box-story-content h3 { 
	font-style: normal;
}

/* -------------------------- Home Projects -------------------------- */

.box-home-projects .box-categories .dxgvTable tbody {
    display: block;
    width: 100%;
    vertical-align: top;
}
.box-home-projects .box-categories .dxgvDataRow {
	display: inline-block;
	padding-right: 20px;
	width: 33%;
}
.box-home-projects hr {
	display: none;
}
.box-home-projects .box-categories .featured-image {
	width: 100%;
	height: auto;
	float: none;
	display: block;
	overflow-x: hidden;
	max-width: 350px;
}
.box-home-projects .box-categories .featured-image img {
	width: 100%;
	margin: 0;
}
.box-home-projects .box-categories h3 { 
	font-style: normal;
}
.box-home-projects .box-categories .categories-text {
	line-height: 24px;
	font-size: 16px;
}
.box-home-projects .box-categories .categories-text a {
	line-height: 26px;
	font-size: 18px;
	background-color: #f4f4f4;
	display: block;
	padding: 20px;
	color: #383b3f;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}
.box-home-projects .box-categories .categories-text a:hover {
	background-color: #383b3f;
	color: #f4f4f4;
	text-decoration: none;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}
.box-home-projects .hide {

}
.box-home-projects .story-category-read-more {
	display: block;
}
.box-home-projects .story-category-read-more a,
.box-home-projects .story-category-read-more a:link,
.box-home-projects .story-category-read-more a:visited {
	display: inline-block;
	padding: 5px;
	min-width: 120px;
	text-align: center;
	font-size: 14px;
	background-color: #012f64;
	color: white;
	border: 1px solid #012f64;
	margin-bottom: 10px;
}
.box-home-projects .story-category-read-more a:hover {
	text-decoration: none;
	background-color: #1a5793;
}

   /* -------------------------- Tool Tips -------------------------- */
a.tooltip {
	text-decoration: none;
	color: #3C3C3C;
 }
 
a.tooltip span {
	display: none;
	padding: 2px 3px;
	margin-left: 8px;
	width: 250px;
	text-decoration: none;
	font-style: normal;
	text-align: left;
 }
 
a.tooltip:hover span{
	display: inline;
	position: absolute;
	background: #FFFFC1;
	border: 1px solid #cccccc;
	color: #535353;
	text-decoration: none;
	font-style: normal;
	text-align: left;
 }
 
 a.tooltip_img {
	text-decoration: none;
 }
 
a.tooltip_img span {
	display: none;
	padding: 2px 3px;
	margin-left: 8px;
	width: 250px;
	text-decoration: none;
	font-style: normal;
	text-align: left;
 }
 
a.tooltip_img:hover span{
	display: inline;
	position: absolute;
	font-style: normal;
	text-align: left;
 }
 


/* -------------------------- Resize photogallery images -------------------------- */

.tn_resize{
max-width: 100px;
max-height: 80px;
}
.tn_resize_grid{
max-width: 150px;
max-height: 100px;
}

.img_resize{
max-width: 500px;
max-height: 400px;
}




   /* -------------------------- TopAdminBar -------------------------- */

table.admin_hdr_bar 
{
	width: 100%;
	background-color: #1d4f98;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
}
table.admin_hdr_bar td {
	color: #dcdcdc;
	padding: 3px;
}

table.admin_hdr_bar td a {
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}
table.admin_hdr_bar td a:hover {
	font-weight: 700;
	text-decoration: underline;
}