* {
	margin: 0;
	padding: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #231f20;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #4d4d4d url(images/body_bg.png) center repeat-y;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
    font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 26px;
	line-height: 29px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 25px;
	line-height: 28px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 24px;
	line-height: 27px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h4, .h4 {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 23px;
	line-height: 26px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h5, .h5 {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 22px;
	line-height: 25px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h6, .h6 {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 21px;
	line-height: 24px;
	font-weight: 700;
	color: #231f20;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
a {
	color: #ff6900;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}

table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	padding: 0px;
	margin: 0px;
}

ul, ol {
	margin: 0px 0px 10px 20px;
	padding: 0px 0px 0px 0px;
/*	list-style-position: inside;*/
}
ul {
/*	list-style-image: url(images/icon_bullet.png);*/
}
ul.no-list-image, ul.no-list-image li {
	list-style: none;
	list-style-image: none;
}

p {
	margin: 15px 0px 15px 0px;
}
img {
	border: none;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 15px;
	line-height: 15px;
    box-sizing: border-box;
}
label {
	box-sizing: border-box;
}
input {
	vertical-align: middle;
}

.form_standard {
	width: 700px !important;
	display: table;
	margin: 0 auto;
}
.form_standard_half {
	width: 350px !important;
	display: table;
	margin: 0 auto;
}

.form {
	width: 100%;
}
.form input.submit, input.button {
	width: auto;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	color: #fff;
    font-weight: 700;
	background: #ff6900;
	font-size: 18px;
	line-height: 19px;
	text-transform: uppercase;
	border: 0px;
	padding: 13px 17px 13px 17px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 15px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 15px;
	line-height: 25px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}

.form input[type=text], .form input[type=email], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 15px;
	line-height: 15px;
	padding: 13px 10px 13px 10px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 12px 10px 12px 10px;
}

.form textarea {
	height: 150px;
}

.required {
	color: #f00;
}

/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
	text-align: center;
}
#scode_block table {
	border: 0px;
	border-spacing: 0px;
    border-collapse: separate;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
#scode_block table tr {
    vertical-align: top;
}
#scode_block table td {
	width: auto;
}
#scode_block table td {
	padding: 0px 6px 0px 7px;
	margin: 0px;
}
#scode_block #scode {
	width: 107px;
}
#scode_block input[type=text] {
	margin: 0px;
}

/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #231f20 !important;
	font-weight: normal;
	text-overflow: ellipsis;
}

/* standard styles
-----------------------------------------------------------------------------*/

.uppercase {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline
}

.align_center {
	text-align: center;
	margin: auto;
}
.align_right {
	text-align: right;
}
.align_left {
	text-align: left;
}
.align_justify {
	text-align: justify;
}

.valign_top {
	vertical-align: top;
}
.valign_middle {
	vertical-align: middle;
}
.valign_bottom {
	vertical-align: bottom;
}

.position_center {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.position_middle:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.box_center {
	display: table;
	margin: 0 auto !important;
}

.clear {
	height:0;
	font-size: 1px;
	line-height: 0px;
	clear: both;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
} 
.clearfix:after {
	clear: both;
}

.hidden {
	display: none;
}

.desktop_only {
}
.mobile_only {
	display: none;
}

.img_left {
	width: auto;
	float: left;
	margin: 0px 15px 10px 0px;
}
.img_right {
	width: auto;
	float: right;
	margin: 0px 0px 10px 15px;
}

.images, .images_left, .images_right {
	background: #979797;
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 25px 15px 0px;
}
.images_right {
	width: auto;
	float: right;
	margin: 0px 0px 15px 25px;
}

hr, .hr {
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	background: url(images/hr_bg.png) top repeat-x;
	border: 0px;
}

.a_button {
	display: inline-block;
	color: #fff;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	outline: none;
	background: #ff6900;
	text-align: center;
	padding: 14px 20px 14px 20px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #fff;
	text-decoration: none;
	background: #00cd00;
	transform: scale(1.1);	
}

.columns {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
}

.columns[data-columns-count="2"] {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}
.columns[data-columns-count="3"] {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}
.columns[data-columns-count="4"] {
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
}
.columns[data-columns-count="5"] {
	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
}
.columns[data-columns-count="6"] {
	-moz-column-count: 6;
	-webkit-column-count: 6;
	column-count: 6;
}

.res_list div {
	display: inline-block;
	padding-bottom: 10px;
}


/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	list-style: none;
}
ul.columns_list > li {
	list-style: none;
	list-style-image: none;
	display: inline-block;
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	vertical-align: top;
}
ul.columns_list > li, ul.columns_list[data-columns-count="2"] > li {
	width: 47%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="3"] > li {
	width: 30%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="4"] > li {
	width: 22%;
	margin-right: 3%;
}
ul.columns_list[data-columns-count="5"] > li {
	width: 17%;
	margin-right: 3%;
}


/* portfolio styles
-----------------------------------------------------------------------------*/
.sectionname, .imagepages {
	display: inline-block;
	color: #fff;
	background: #ff6900;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #00cd00;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #00cd00;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
}
.sectionnameselected:hover, .imagepageselected:hover {
	text-decoration: none;
}

.sectionname_divider {
	display: none;
}

.imagesmallname {
	color: #000;
}

.imagemediumname {
	color: #000; 
	font-weight: bold;
}

.image_delimiter {
	font-size: 1px;
	line-height: 1px;
	height: 3px;
	padding: 0px;
	margin: 0px;
}


/* portfolio
-----------------------------------------------------------------------------*/
.portfolio {
}
.portfolio ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.portfolio ul li {
	display: inline-block;
	margin: 0px 5px 20px 5px;
	padding: 0px;
	vertical-align: top;
}
.portfolio ul li:first-child {
}
.portfolio ul li:last-child {
}
a.portfolio_button {
	display: inline-block;
	position: relative;
	color: #fff;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 18px;
	line-height: 18px;
    font-weight: 700;
	text-decoration: none;
	outline: none;
	background: #ff6900;
	text-align: center;
	padding: 10px 15px 10px 15px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
a.portfolio_button:hover, .portfolio ul li:hover a.portfolio_button, .portfolio li.selected a.portfolio_button {
	color: #fff;
	text-decoration: none;
	background: #00cd00;
}


/* portfolio_sections_list
-----------------------------------------------------------------------------*/
.portfolio_sections_list {
	padding: 0px 0px 15px 0px;
	text-align: center;
	border-bottom: 1px solid #eae9e9;
	margin-bottom: 15px;
}
.portfolio_sections_list_caption {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 20px;
	line-height: 23px;
	color: #000;
	font-weight: 700;
	padding: 0px 0px 5px 0px;
}
.portfolio_sections_list select {
	width: 100%;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 16px;
	line-height: 16px;
    font-weight: 700;
	padding: 8px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #ccc;
}
.portfolio_sections_list ul li {
	margin: 0px 4px 10px 4px;
	padding: 0px;
	vertical-align: top;
}

.portfolio_section_name {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 27px;
	line-height: 30px;
	font-weight: 700;
	color: #ff6900;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	text-transform: uppercase;
	text-align: center;
}
.portfolio_section_text {
	padding: 0px 0px 20px 0px;
	text-align: left;
}


/* portfolio_navigation
-----------------------------------------------------------------------------*/
.portfolio_navigation {
	padding: 0px 0px 10px 0px;
}
.portfolio_navigation_last {
	width: 100px;
	float: left;
}
.portfolio_navigation_next {
	width: 100px;
	float: right;
	text-align: right;
}
.portfolio_navigation_pages {
	width: -webkit-calc(100% - 200px);
	width: -moz-calc(100% - 200px);
	width: calc(100% - 200px);
	float: left;
	text-align: center;
}


/* portfolio_thumbnails
-----------------------------------------------------------------------------*/
.portfolio_thumbnails {
	padding: 0px 0px 10px 0px;
	text-align: center;
}
.portfolio_thumbnails_caption {
	padding: 0px 0px 20px 0px;
}
.portfolio_thumbnails ul li {
	text-align: left;
	position: relative;
}

.portfolio_thumbnail_link {
}
.portfolio_thumbnail_image {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}
.portfolio_thumbnail_image img {
	vertical-align: bottom;
}

.portfolio_thumbnail_caption {
	width: 92%;
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	line-height: 14px;
	position: absolute;
	bottom: -10px;
	left: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 0;
	background: rgba(72,72,72,0.8);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_thumbnails ul li:hover .portfolio_thumbnail_caption {
	opacity: 1;
	bottom: 0px;
}
.portfolio_thumbnail_caption a {
	color: #ff6900;
}


/* portfolio_index
-----------------------------------------------------------------------------*/
.portfolio_index {
	padding: 0px 0px 10px 0px;
	text-align: center;
}
.portfolio_index ul li {
	text-align: left;
	position: relative;
}

.portfolio_index_link {
	color: #ff6900;
}
.portfolio_index_image {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}
.portfolio_index_image img {
	vertical-align: bottom;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index ul li:hover .portfolio_index_image img {
	transform: scale(1.1);
}

.portfolio_index_caption {
	width: 80%;
	position: absolute;
	left: 5%;
	top: 50%;
	margin-top: -15%;
	opacity: 0.8;
	z-index: 2;
	background: rgba(72,72,72,0.8);
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	color: #fff;
	font-size: 30px;
	line-height: 30px;
    font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	padding: 5%;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index ul li:hover .portfolio_index_caption {
	opacity: 1;
}


/* portfolio_slider
-----------------------------------------------------------------------------*/
.portfolio_slider {
}

.portfolio_slider_previews_area {
	position: relative;
}
.portfolio_slider_previews {
	vertical-align: middle;
	height: 500px;
	overflow: hidden;
	margin-bottom: 10px;
}

.portfolio_slider_preview {
	width: auto;
	height: 500px;
	text-align: center;
}
.portfolio_slider_preview_link {
	width: auto;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.portfolio_slider_preview_image {
	width: 100%;
	height: auto;
}
.portfolio_slider_preview_image img {
	width: 100%;
	height: auto;
}
.portfolio_slider_preview_caption {
	width: 94%;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	line-height: 15px;
	text-align: left;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 10px 3% 10px 3%;
	opacity: 1;
	background: rgba(72,72,72,0.7);
}
.portfolio_slider_preview_caption small {
	color: #CCC;
}

.portfolio_slider_previews_last, .portfolio_slider_thumbnails_last {
	position: absolute !important;
	top: 50%;
	margin-top: -20px;
	left: 20px;
}
.portfolio_slider_previews_last:after, .portfolio_slider_thumbnails_last:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/portfolio_slider_last.png) center center no-repeat;
}

.portfolio_slider_previews_next, .portfolio_slider_thumbnails_next {
	position: absolute !important;
	top: 50%;
	margin-top: -20px;
	right: 20px;
}
.portfolio_slider_previews_next:after, .portfolio_slider_thumbnails_next:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: url(images/portfolio_slider_next.png) center center no-repeat;
}

.portfolio_slider_navigation {
	display: table;
	margin: 0 auto;
	margin-bottom: 15px;
}

.portfolio_slider_slideshow {
	position: relative;
}

.portfolio_slider_thumbnails_area {
	position: relative;
}
.portfolio_slider_thumbnails {
	margin-bottom: 10px;
}

.portfolio_slider_thumbnail {
	text-align: center;
}

.portfolio_slider_thumbnail_link {
	text-align: left;
	position: relative;
	width: auto;
	display: inline-block;
}

.portfolio_slider_thumbnail_image img {
	opacity: 0.7;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_slider_thumbnail_image:hover img, .portfolio_slider_thumbnails .slick-current img {
	opacity: 1 !important;
}

.portfolio_slider_thumbnail_caption {
	width: 92%;
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	line-height: 14px;
	position: absolute;
	bottom: -10px;
	left: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 0;
	background: rgba(72,72,72,0.7);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_slider_thumbnail_link:hover .portfolio_slider_thumbnail_caption {
	opacity: 1;
	bottom: 0px;
}
.portfolio_slider_thumbnail_caption a {
	color: #ff6900;
}


/* portfolio magnific-popup styles
-----------------------------------------------------------------------------*/
.mfp-figure {
}
.mfp-close {
}
.mfp-img {
}
.mfp-bottom-bar {
}
.mfp-title {
	font-size: 14px;
	line-height: 16px;
}
.mfp-title a {
	color: #ff6900;
}
.mfp-title small {
	font-size: 13px;
	line-height: 14px;
	color: #fff;
}
.mfp-counter {
}


/* breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
	font-size: 14px;
	line-height: 14px;
	color: #000;
	padding: 0px 0px 13px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #CCC;
}
.breadcrumbs ol {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.breadcrumbs ol li {
	position: relative;
	display: inline-block;
	padding: 0px 15px 0px 0px;
	margin: 0px 5px 0px 0px;
}
.breadcrumbs ol li:after {
	content: " >";
	display: block;
	width: 20px;
	height: 100%;
	position: absolute;
	top: 3px;
	right: 0px;
	text-align: right;
	font-size: 12px;
	line-height: 12px;
}
.breadcrumbs ol li:last-child {
	margin: 0px 0px 0px 0px;
}
.breadcrumbs ol li:last-child:after {
	content: "";
	display: block;
	width: 0px;
}

.breadcrumbs ol li a {
	color: #ff6900;
}
.breadcrumbs ol li:hover a {
	text-decoration: underline;
}


/* Table
-----------------------------------------------------------------------------*/
.table {
	width: 100%;
	border-top: 1px solid #bdb6a3;
	border-left: 1px solid #bdb6a3;
}
.table tr {
	vertical-align: middle;
}
.table th, .table td {
	padding: 5px;
	border-bottom: 1px solid #bdb6a3; 
	border-right: 1px solid #bdb6a3; 
	color: #64534c;
}
.table thead td, .table tfoot td {
	background: #efae40 url(images/table_header_bg.png) top repeat-x;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	color: #fff;
    font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
    font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	background: #ada48c;
}
.table tr:nth-child(odd) {
	background: #efede8;
}
.table tr:nth-child(even) {
	background: #f5f3ee;
}


/* belgard
-----------------------------------------------------------------------------*/
table.belgard td {
	padding: 0px 20px 20px 0px;
}

/* main styles
-----------------------------------------------------------------------------*/
.animatedParent {
/*	overflow: hidden;*/
}

.page_wrapper {
	width: 1100px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 0px;
}

.body_wrapper {
	max-width: 1920px !important;
	margin: 0 auto !important;
	float: none !important;
}

.box_fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	z-index: 1000 !important;
	width: 100% !important;
	max-width: 1920px !important;
	float: none !important;
}
#menutop {
	width: 100%;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 250px;
    height: 49px;
    z-index: 999;
}
#menutop ul {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 1px;
	line-height: 1px;
}
#menutop li {
	float: left;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
	color: #231f20;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 18px;
	line-height: 19px;
    font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	padding: 15px 44px 15px 44px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop li:first-child a {
	padding: 15px 44px 15px 0px;
}
#menutop li:last-child a {
	padding: 15px 0px 15px 44px;
}
#menutop ul li:hover a, 
#menutop li.selected a {
	color: #ff6900;
	text-decoration: none;
	transform: scale(1.1);
}
#header_social {
	width: 100%;
	position: relative;
	height: 68px;
	background: #009500 url(images/header_social_bg.jpg) center top no-repeat;
	z-index: 10;	
}
#header_social ul {
	display: table;
	margin: 0;
	margin-left: auto;
	padding: 15px 0px 0px 0px;
	list-style: none;
	list-style-image: none;
	font-size: 1px;
	line-height: 1px;
}
#header_social li {
	float: left;
	margin: 0px;
	padding: 0px 0px 0px 5px;
}
#header_social li span {
	display: inline-block;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 26px;
	line-height: 34px;
	color: #fff;
    font-weight: 700;
	padding: 0px 12px 0px 30px;
	background: url(images/icon_phone.png) left center no-repeat;
}
#header_slogan {
    position: absolute;
    top: 0px;
    left: 0px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 16px;
	line-height: 64px;
	color: #fff;
    font-weight: 700;    
}
#header {
	width: 100%;
	position: relative;
	height: 245px;
	background: #fff;
	z-index: 11;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#header:before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: -8px;
	left: 0px;
	background: url(images/header_top_bg.png) center top no-repeat;
	z-index: 2;
}
#header:after {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: -8px;
	left: 0px;
	background: url(images/header_bottom_bg.png) center top no-repeat;
	z-index: 2;
}
#header_logo {
	float: left;
	width: 442px;
	padding-top: 23px;
	font-size: 1px;
	line-height: 1px;
}
#header_side {
	float: left;
	width: 658px;
	padding-top: 51px;
}
#header_licenses {
	width: 100%;
	height: 137px;
}
#header_licenses ul {
	display: table;
	margin: 0;
	margin-left: auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 0px;
	line-height: 0px;
}
#header_licenses ul li {
	width: 140px;
	display: inline-block;
	vertical-align: top;
	padding: 0px 0px 0px 24px;
	text-align: center;
}
#header_licenses ul li span {
	padding-top: 9px;
	display: block;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 10px;
	line-height: 12px;
	color: #000;
    font-weight: 700;
	text-transform: uppercase;
}
#slideshow {
	width: 100%;
	height: 627px;
	position: relative;
	overflow: hidden;
	z-index: 10;
	background: #231f20;
}
.inside #slideshow {
	height: 327px;
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	list-style: none;
	list-style-image: none;
}
#slideshow_bg {
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	background: url(images/slideshow_bg.png) center top no-repeat;
	z-index: 202;	
}
#slides_arrow_next, 
#slides_arrow_prev {
	width: 28px;
	height: 172px;
	position: absolute;
	top: 50%;
	margin-top: -86px;
	z-index: 204;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#slides_arrow_prev {
	left: 40px;
	background: url(images/slides_arrow_prev.png) center center no-repeat;
}
#slides_arrow_next {
	right: 40px;
	background: url(images/slides_arrow_next.png) center center no-repeat;	
}
#slides_arrow_next:hover, #slides_arrow_prev:hover {
	transform: scale(1.1);
}
#slides_arrow_next:hover {
	transform-origin: 100% 50%;
}
#slides_arrow_prev:hover {
	transform-origin: 0% 50%;
}
#slideshow_pager { 
	position: absolute;
	bottom: 55px;
	z-index: 204;
	width: 100%;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	text-align: center;
	font-size: 0px;
	line-height:0px;	
}
#slideshow_pager span { 
	width: 15px;
	height: 12px; 
    display: inline-block;
	cursor: pointer;
	background: url(images/slide_icon.png) center center no-repeat;
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.png) center center no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}
#slide_content {
	position: absolute;
	top: 211px;
	z-index: 202;
	width: 100%;
	left: 0px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 24px;
	line-height: 18px;
    font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}
.inside #slide_content {
	top: 78px;
}
#slide_content span {
	font-size: 64px;
	line-height: 54px;
}
.inside #slide_content span {
	display: block;
	padding: 0px 0px 13px 0px;
}
#slide_content div {
	padding: 21px 0px 27px 0px;
}
#box_services {
	width: 100%;
	padding: 40px 0px 40px 0px;
	min-height: 851px;
	background: #009500 url(images/box_services_bg.jpg) center top no-repeat;
	background-size: cover;
}
#box_services_title {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 36px;
	line-height: 36px;
    font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 34px;
}
#box_services .table_container {
	width: 100%;
}
#box_services .table_cell {
	width: 254px;
	text-align: center;
	padding-top: 204px;
	min-height: 427px;
	height: 427px;	
}
#box_services .table_cell_delim {
	width: 28px;
}
#box_services_landscapes {
	background: url(images/box_services_landscapes_bg.webp) center top no-repeat, #f1eee9 url(images/box_services_table_cell_bg.jpg) center top repeat-y;
}
#box_services_maintenance {
	background: url(images/box_services_maintenance_bg.webp) center top no-repeat, #f1eee9 url(images/box_services_table_cell_bg.jpg) center top repeat-y;
}
#box_services_hardscapes {
	background: url(images/box_services_hardscapes_bg.webp) center top no-repeat, #f1eee9 url(images/box_services_table_cell_bg.jpg) center top repeat-y;
}
#box_services_waterscapes {
	background: url(images/box_services_waterscapes_bg.webp) center top no-repeat, #f1eee9 url(images/box_services_table_cell_bg.jpg) center top repeat-y;
}
.box_services_table_title {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 30px;
	line-height: 31px;
    font-weight: 700;
	text-transform: uppercase;
	padding: 134px 0px 19px 0px;
}
#box_services_landscapes .box_services_table_title {
	background: url(images/box_services_landscapes_title_bg.webp) center top no-repeat;
	color: #7a3c1a;
}
#box_services_maintenance .box_services_table_title {
	background: url(images/box_services_maintenance_title_bg.webp) center top no-repeat;
	color: #00cd00;
}
#box_services_hardscapes .box_services_table_title {
	background: url(images/box_services_hardscapes_title_bg.png) center top no-repeat;
	color: #ff6900;
}
#box_services_waterscapes .box_services_table_title {
	background: url(images/box_services_waterscapes_title_bg.png) center top no-repeat;
	color: #2492eb;
}
#box_services .table_cell ul {
	margin: 0px;
	padding: 0px;
	width: 100%;
	list-style: none;
	list-style-image: none;
}
#box_services .table_cell ul li {
	font-size: 1px;
	line-height: 1px;
	padding: 0px;
}
#box_services .table_cell li a {
	display: block;
	position: relative;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 24px;
	color: #231f20;
    font-weight: 700;
	text-transform: uppercase;
	padding: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	transform: scale(1);	
}
#box_services .table_cell ul li:hover a {
	color: #ff6900;
	text-decoration: none;
	transform: scale(1.05);
}
#box_services_title1 {
	padding-top: 33px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 27px;
	line-height: 31px;
    font-weight: 700;
	color: #fff;
	text-align: center;
}

#middle {
	width: 100%;
	padding: 42px 0px 30px 0px;
	min-height: 348px;
	background: #fff;
	position: relative;
	z-index: 11;
}
.inside #middle {
	min-height: 500px;
}
#middle:before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: -8px;
	left: 0px;
	background: url(images/middle_top_bg.png) center top no-repeat;
	z-index: 2;
}
#middle:after {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: -8px;
	left: 0px;
	background: url(images/middle_bottom_bg.png) center top no-repeat;
	z-index: 2;
}
#box_design_build {
	width: 100%;
	padding: 60px 0px 40px 0px;
	min-height: 775px;
	background: #f4f2ee url(images/box_design_build_bg.jpg) center center no-repeat;
	background-size: cover;
}
#box_design_build .table_container {
	width: 100%;
	margin-bottom: 20px;	
	background: #fff;
}
#box_design_build .table_cellphoto {
	width: 350px;
	background-size: cover;
}
#box_design_build .table_cell_content {
	width: 650px;
	padding: 40px 50px 50px 50px;
	min-height: 272px;
	height: 272px;
}
#box_design_build .box_design_build_title {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 35px;
	line-height: 35px;
    font-weight: 700;
	color: #231f20;
	padding: 26px 0px 19px 98px;
	margin-bottom: 22px;
}
#box_design .table_cellphoto {
	background: #779b3b url(images/box_design_bg.webp) center center no-repeat;
}
#box_design .box_design_build_title {
	background:  url(images/box_design_title_bg.png) left center no-repeat;
}
#box_build .table_cellphoto {
	background: #779b3b url(images/box_build_bg.webp) center center no-repeat;
}
#box_build .box_design_build_title {
	background:  url(images/box_build_title_bg.png) left center no-repeat;
}
#box_maintenance .table_cellphoto {
	background: #779b3b url(images/box_maintenance_bg.webp) center center no-repeat;
}
#box_maintenance .box_design_build_title {
	background:  url(images/box_maintenance_title_bg.webp) left center no-repeat;
}
#box_portfolio {
	width: 100%;
	padding: 41px 0px 30px 0px;
	min-height: 659px;
	background: #fff;
	position: relative;
	z-index: 11;
}
#box_portfolio:before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: -8px;
	left: 0px;
	background: url(images/box_portfolio_top_bg.png) center top no-repeat;
	z-index: 2;
}
#box_portfolio:after {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: -8px;
	left: 0px;
	background: url(images/box_portfolio_bottom_bg.png) center top no-repeat;
	z-index: 2;
}
#box_portfolio_thumbs {
	width: 1920px!important;
	position: absolute;
	top: 228px;
	right: 0px;
	left: 50%;
	margin-left: -960px;;
	text-align: center;
	overflow: hidden;
}
#box_portfolio_thumbs ul {
	display: table;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#box_portfolio_thumbs ul li {
	display: table-cell;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	font-size: 0px;
	line-height: 0px;
}
#box_portfolio_thumbs ul li a {
	display: block;
	float: left;
	margin: 0px;
	position: relative;	
}
#box_portfolio_thumbs ul li a div {
	margin: 0px;
	display: block;
	z-index: 10;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(0,205,0,0.8) url(images/icon_zoom.png) center center no-repeat;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_portfolio_thumbs ul li a:hover div {
	opacity: 1;
}
#box_portfolio_thumbs a.a_button {
	margin-top: 40px;
}
#box_contact {
	width: 100%;
	padding: 50px 0px 40px 0px;
	min-height: 510px;
	background: #7ea132 url(images/box_contact_bg.webp) center center no-repeat;
	background-size: cover;
	color: #fff;
}
#box_contact_form .td_half {
	width: 50%;
}
#box_contact_form table tr {
	vertical-align: top;
}
#box_contact_form textarea {
	height: 159px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20;
	text-transform: uppercase;
	padding: 16px 10px 15px 21px;
	background: #fff;
	border: none;
}
#box_contact_form #name,
#box_contact_form #phone,
#box_contact_form #email,
#box_contact_form #scode {
	height: 45px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20;
	text-transform: uppercase;
	padding: 16px 10px 15px 21px;
	background: #fff;
	border: none;
	margin: 0px 0px 12px 0px;
}
#box_contact_form input:required {
	background: #fff url(images/placeholder_req_bg.png) 15px 17px no-repeat !important;
}
#box_contact_form input:required:active,
#box_contact_form input:required:focus,
#box_contact_form input:required:valid {
	background: #fff !important;
}
#box_contact_form label {
	padding-right: 18px;
}
#box_contact_form td:nth-child(2) label {
	padding-right:0px;
}
#box_contact_form ::-webkit-input-placeholder {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20 !important;
	text-transform: uppercase;
}
#box_contact_form ::-moz-placeholder {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20 !important;
	text-transform: uppercase;
}
#box_contact_form :-moz-placeholder {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20 !important;
	text-transform: uppercase;
}
#box_contact_form :-ms-input-placeholder {
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 14px;
	line-height: 14px;
    font-weight: 700;
	color: #231f20 !important;
	text-transform: uppercase;
}
#box_contact_form #scode_block span {
	display: inline-block;
	padding: 4px 10px 4px 10px;
	color: #fff;
}
#footer {
	width: 100%;
	padding: 0px 0px 0px 0px;
	min-height: 268px;
	background: #68543a url(images/footer_bg.jpg) center top no-repeat;
	background-size: cover;
	position: relative;
	z-index: 11;
	color: #fff;
}
#footer a {
	color: #fff;
}
#footer:before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: -8px;
	left: 0px;
	background: url(images/footer_top_bg.png) center top no-repeat;
	z-index: 2;
}
#footer_logo {
	padding: 56px 0px 0px 0px;
	width: 615px;
	float: left;
}
#footer_address {
	padding-top: 86px;
	width: 485px;
	float: left;
}

/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 770px;
	float: right;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	background: url(images/content_title_bg.png) center top no-repeat;
	padding: 122px 0px 31px 0px;
	margin: 0px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 29px;
	line-height: 29px;
    font-weight: 700;
	color: #231f20;
	text-align: center;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 29px;
	line-height: 29px;
    font-weight: 700;
	color: #231f20;
	text-align: center;
}
#box_portfolio .content_title {
	background: url(images/box_portfolio_content_title_bg.png) center top no-repeat;
}
#box_contact .content_title {
	color: #fff;
	background: url(images/box_contact_content_title_bg.png) center top no-repeat;
}

/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 54px;
	height: 54px;
	background: #ff6900 url(images/scroll_top_bg.png) center no-repeat;
	-webkit-border-radius: 27px;
	-moz-border-radius: 27px;
	border-radius: 27px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	background: #00cd00 url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
	transform: scale(1.1);	
}
.table_container {
	display: table;
}
.table_cell {
	display: table-cell;
}
#service_area span {
    display: block;
	font-family: "Barlow", sans-serif, Arial, Helvetica;
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	color: #231f20;
    text-transform: uppercase;
}
#service_area ul {
	margin: 20px 0px 0px 20px;
	padding: 0px;

	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}
#service_area a[href="javascript:;"] {
	color: #231f20;
	text-decoration: none;
	cursor: text;
}

.reviews_5_stars {
    display: inline-block;
    width: 120px;
    height: 24px;
    background: url(images/rating-5-stars.webp) left center repeat-x;
    margin-right: 15px;
}
