* {
	margin: 0;
	padding: 0;
}
body {
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #231f20;
	width: 100%;
	min-width: 1100px;
	font-weight: normal;
	background: #515151 url(images/body_bg.png) center repeat-y;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: 'Khand', sans-serif;
	font-size:30px;
	line-height:33px;
	font-weight:500;
	color:#484042;
	padding:0 0 10px 0;
	margin:0;
}
h2, .h2 {
	font-family: 'Khand', sans-serif;
	font-size:28px;
	line-height:31px;
	font-weight:500;
	color:#405c05;
	padding:0 0 10px 0;
	margin:0;
}
h3, .h3 {
	font-family: 'Khand', sans-serif;
	font-size:26px;
	line-height:29px;
	font-weight:500;
	color:#405c05;
	padding:0 0 10px 0;
	margin:0;
}

h4, .h4 {
	font-family: 'Khand', sans-serif;
	font-size:24px;
	line-height:27px;
	font-weight:500;
	color:#405c05;
	padding:0 0 10px 0;
	margin:0;
}

a {
	color: #069abc;
	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 0;
	padding: 0px 0px 0px 20px;
	list-style-position: outside;
}
/*ol,.ul_outside_style {
	list-style-position:outside;
	padding: 0px 0px 0px 20px;
}
*/
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:0 0 15px 0;
}
img {
	border: none;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 15px;
	line-height: 15px;
    box-sizing: border-box;
}
input[type="image"] {
	background:none !important;
	border:none !important;
	outline:0 !important;
}
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;
	height:40px;
	font-family: 'Khand', sans-serif;
	color: #fff;
	background:#598200;
	font-size:24px;
	font-weight:500;
	line-height:40px;
	border:0;
	border-radius:0;
	padding: 0 15px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 17px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding:0 2px 0 0;
	margin:0;
	color:#000;
	font-size:16px;
	line-height:16px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}
.form label.edit_third {
	width: 33%;
}

.form label.no_float {
	float:none !important;
}

.form input[type=text], .form input[type=email],.form input[type=number],.form input[type=date], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size:15px;
	line-height:15px;
	padding: 9px;
	margin:0 0 10px 0;
	background: #fff url(images/input_bg.png) top repeat-x;
	border: 1px solid #bfbfbf;
	border-radius:0px;
}
.form select {
	padding: 8px;
}

.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:0 2px;
	margin:0;
}
#scode_block #scode {
	width:90px;
	height:40px;
}
#scode_block input[type=text] {
	margin:0;
}
#scode_block #img_code {
	border-radius: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 {
	border:0px solid #b7b7b7;
}
.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;
}

.hr1 {
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	background: url(images/hr1_bg.png) top repeat-x;
	border: 0px;
}

.a_button {
	display: inline-block;
	color: #fff;
	font-family: 'Khand', sans-serif;
	font-size:22px;
	line-height:22px;
	text-decoration: none;
	font-weight:500;
	outline: none;
	background: #069abc;
	text-align: center;
	padding:10px 16px 7px 16px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	text-decoration: none;
	background: #598200;
}

.columns {
	-moz-column-gap: 50px;
	-webkit-column-gap: 50px;
	column-gap: 50px;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}

.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 {
}
.res_list div {
	display: inline-block;
	padding-bottom: 10px;
}

.res_list1 {
}

.res_list1 div {
	display:inline-block;
	padding:0 10px 10px 10px;
	vertical-align:top;
}

.res_list2 {
}

.res_list2 div {
	display:inline-block;
	padding:0 10px 30px 10px;
	vertical-align:top;
	font-weight:700;
}

.res_list2 div span {
	text-transform:uppercase;
}

/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	list-style: none;
}
ul.columns_list > li {
	list-style: none;
	list-style-image: none;
	display: inline-block;
	padding:0 0 15px 0;
	margin:0;
	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: #069abc;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius:0px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #598200;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #598200;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: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_slides
-----------------------------------------------------------------------------*/
.portfolio_slides {
	position: relative;
}
.portfolio_slides ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.portfolio_slides li {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	text-align: center;
}
.portfolio_slides .images {
	/*max-width: -webkit-calc(100% - 8px);
	max-width: -moz-calc(100% - 8px);
	max-width: calc(100% - 8px);*/
	max-width: 100%;
	height: auto;
}

.portfolio_slides_pager {
	position: relative;
	display: table;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.portfolio_slides_pager span {
	width: 15px;
	height: 15px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 40px;
	color: #4d1658;
}
.portfolio_slides_pager span.cycle-pager-active {
	color: #d1b26d;
}
.portfolio_slides_pager > * {
	cursor: pointer;
}

/* breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
	font-family: 'Khand', sans-serif;
	font-size: 16px;
	line-height: 16px;
	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: "\2192";
	display: block;
	width: 20px;
	height: 100%;
	position: absolute;
	top:0;
	right: -4px;
	text-align: right;
	font-size: 14px;
	line-height: 14px;
}
.breadcrumbs ol li:last-child {
	margin:0;
}
.breadcrumbs ol li:last-child:after {
	content: "";
	display: block;
	width: 0px;
}

.breadcrumbs ol li a {
	color: #069abc;
}
.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: 'Khand', sans-serif;
	color: #fff;
	font-weight: normal;
	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: 'Khand', sans-serif;
	font-weight: normal;
	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: 47px;
}

.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;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Header
-----------------------------------------------------------------------------*/
#header {
	position: relative;
	width: 100%;
	height: 172px;
	font-family: 'Khand', sans-serif;
	font-weight:500;
	background: #fff;
}

#header_logo {
	position: absolute;
	width:144px;
	left:0;
	top:12px;
}

#header_phone {
	color:#598200;
	font-size:19px;
	line-height:20px;
	text-align: right;
}
#header_phone span {
	font-size:20px;
}

#header_social {
	position:absolute;
	top:99px;
	right:0;
}

#header_social ul {
	display:table;
	margin:0 auto;
	padding:0;
	list-style: none;
	list-style-image: none;
}
#header_social ul li {
	float:left;
	display:table;
	margin:0 2px 0 3px;
	list-style: none;
	list-style-image: none;
}
#header_social ul li:first-child {
	margin:8px 12px 0 0;
}
#header_social ul li:last-child {
	margin-right:0;
}
#header_social a img {
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	opacity:1;
}
#header_social li:nth-child(3) img {
	border-radius:16px;
}
#header_social a:hover img {
	opacity:.7;
}

#header_social a {
	color:#598200;
}

#header_social a:hover {
	text-decoration:none;
}

#header_slogan {
	position:absolute;
	right:0;
	top:49px;
	text-align: right;
	color: #069abc;
	font-size:36px;
	line-height:36px;
}

#header_free_consultation {
	position:absolute;
	top:45px;
	left:300px;
	color: #069abc;
	font-size:17px;
	line-height:21px;
	text-transform:uppercase;
}

#header_free_consultation .a_button {
	display:table;
	font-size:15px;
	line-height:15px;
	padding:10px 16px 7px 16px;
	/*padding:0;*/
	margin:5px auto 0 0;
}

/* menutop
-----------------------------------------------------------------------------*/
#menutop {
	height:50px;
	background:#598200;
}
#menutop ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding:0 6px;
	margin:0;
}
#menutop ul li a {
	display: block;
	color: #fff;
	font-family: 'Khand', sans-serif;
	font-size:19px;
	line-height:19px;
	font-weight:500;
	height:33px;
	text-align: center;
	padding:17px 19px 0 19px;
	margin:0 0 1px 0;
	transition: all 150ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#menutop ul li:hover a, #menutop li.selected a {
	color:#fff;
	text-decoration: none;
	background:#069abc;
}

/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	position:relative;
	width:100%;
	height:650px;
	z-index:0;
}
.inside #slideshow {
	height:330px;
}

#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}

#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	list-style: none;
	list-style-image: none;
}

#slides_arrow_next {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -86px;
	right: 45px;
	z-index: 101;
}
#slides_arrow_prev {
	width: auto;
	position: absolute;
	top: 50%;
	margin-top: -86px;
	left: 45px;
	z-index: 101;
}

#slideshow_slogan {
	position: absolute;
	width: 1100px;
	top:240px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-transform:capitalize;
	font-family: 'Khand', sans-serif;
	color: #fff;
	font-size:85px;
	line-height:82px;
	font-weight:500;
	z-index: 201;
	/*text-shadow: 1px 2px 0px rgba(6, 154, 188, 1);*/
	text-shadow: 1px 2px 0px rgba(0, 0, 0, .8),
	             1px 1px 0px rgba(0, 0, 0, .8),
				 1px -1px 0px rgba(0, 0, 0, .8),
				 1px -2px 0px rgba(0, 0, 0, .8),
	             -1px 2px 0px rgba(0, 0, 0, .8),
				 -1px 1px 0px rgba(0, 0, 0, .8),
				 -1px -2px 0px rgba(0, 0, 0, .8),
				 -1px -1px 0px rgba(0, 0, 0, .8),
				 -1px -1px 0px rgba(0, 0, 0, .8);
}

.inside #slideshow_slogan {
	top:87px;
}

/* slideshow_pager
-----------------------------------------------------------------------------*/
#slideshow_pager { 
    text-align: center; 
	width: 100%; 
	z-index: 101 !important; 
	position: absolute; 
	left: 0px;
	bottom:32px; 
	overflow: hidden;
}

#slideshow_pager span { 
    width:12px;
	height:12px; 
    display: inline-block;
	cursor: pointer;
	background: url(images/slide_icon.png) left top no-repeat;
	padding:0 2px 0 1px;
	font-family: arial; font-size:0px; 
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.png) left top no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}
#slideshow_btn { 
	width: 239px;
	z-index: 102 !important; 
	position: absolute; 
	right: 0px;
	left: 0px;
	margin: 0 auto;
	bottom: 70px; 
}
/* box_slogan
-----------------------------------------------------------------------------*/
#box_slogan {
	width:100%;
	background:#598200;
	padding:31px 0 25px 0;
}

.inside #box_slogan {
	background:#598200 url(images/box_slogan_bottom_bg.jpg) center bottom no-repeat;
}

#box_slogan1 {
	font-family: 'Khand', sans-serif;
	color:#fff;
	font-size:22px;
	line-height:22px;
	font-weight:500;
}

#box_slogan1 div {
	display:inline-block;
	/*width:49%;*/
	width:100%;
	text-align:center;
}

#box_slogan1 span,
#box_slogan1 a {
	color:#eecb60;
}

/* middle
-----------------------------------------------------------------------------*/
#middle {
	position:relative;
	padding:29px 0 50px 0;
	background:#fff url(images/middle_bottom_bg.jpg) center bottom no-repeat;
	z-index:2;
}

.inside #middle {
	background:#fff url(images/middle_top_bg.jpg) center top no-repeat;
	min-height:450px;
	height:auto !important;
	height:450px;
	padding:29px 0 40px 0;
}

/* content
-----------------------------------------------------------------------------*/
#content {
	width:1100px;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	width: 100%;
	background:url(images/content_title_icon.png) center bottom no-repeat;
	color: #231f20;
	font-family: 'Khand', sans-serif;
	font-size:48px;
	line-height:48px;
	font-weight:500;
	text-align:center;
	padding: 17px 0 21px 0;
	margin-bottom: 15px;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	width: 100%;
	color: #231f20;
	font-family: 'Khand', sans-serif;
	font-size:48px;
	line-height:48px;
	font-weight:500;
	text-align:center;
}

#box_areas_we_service .content_title {
	font-size:30px;
	padding: 17px 0 17px 0;
	margin-bottom:34px;
}

#box_portfolio .content_title {
	color:#fff;
	margin-bottom:40px;
}

#box_testimonials .content_title {
	margin-bottom:25px;
}

#box_our_process .content_title {
	margin-bottom:26px;
}

#box_contact .content_title {
	background:url(images/content_title_icon1.png) center bottom no-repeat;
	/*color: #fff;*/
	margin-bottom:20px;
}

/* service_area
----------------------------------------------------------------------------*/
#service_area {
}
#service_area ul {
	margin:0 0 0 20px;
	padding:0;

	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
	list-style: none;
	list-style-image: none;
}
#service_area ul li {
	position:relative;
	display:table;
	margin:0 auto;
	padding:0;
	-webkit-column-break-inside:avoid;
	break-inside:avoid-column;
	white-space:nowrap;
	font-size:15px;
	line-height:24px;
}
#service_area ul li:before {
	position:absolute;
	content:"";
	width:4px;
	height:4px;
	background: url(images/icon_bullet.png) center top no-repeat;
	top:10px;
	left:-9px;
}
#service_area span {
	font-size: 16px;
	line-height: 17px;
	font-weight: bold;
}
#service_area a[href="javascript:;"] {
	color: #231f20;
	text-decoration: none;
	cursor: text;
}

/* box_video
-----------------------------------------------------------------------------*/
#box_video {
	position:relative;
	height:564px;
	background: url(images/box_video_bg.jpg) center top no-repeat;
	padding:50px 0 53px 0;
	z-index:1;
}

/* box_areas_we_service
-----------------------------------------------------------------------------*/
#box_areas_we_service {
	position:relative;
	background:#fff;
	padding:21px 0 53px 0;
	border-bottom:1px #f5f5f5 solid;
	border-top:1px #f5f5f5 solid;
}

.inside #box_areas_we_service {
	background:#fff url(images/box_our_process_bg.jpg) center bottom no-repeat;
	border-bottom:none;
}

/* box_portfolio
-----------------------------------------------------------------------------*/
#box_portfolio {
	position:relative;
	height:528px;
	background:url(images/box_portfolio_bg.jpg) center top no-repeat;
	padding:29px 0 0 0;
}
#box_portfolio ul {
	display:table;
	margin:0 auto;
	padding:0 0 40px 0;
	list-style: none;
	list-style-image: none;
}
#box_portfolio ul li {
	float:left;
	width:342px;
	padding:0;
	margin:0 22px 0 0;
	border:5px solid #fff;
}
#box_portfolio li:last-child {
	margin-right:0;
}

#box_portfolio ul li a {
	display: block;
	width:342px;
	height:251px;
	overflow: hidden;
	z-index: 1;
	position: relative;
}
#box_portfolio ul li a img {
	transition: all 0.5s ease;
}
#box_portfolio ul li a:hover img {
	opacity: 1;
	transform: scale(1.1);
}

#box_portfolio a div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	background:url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
	z-index: 2;
}
#box_portfolio a:hover div {
	opacity: 1;
	background:url(images/icon_zoom.png) center center no-repeat;
	transition: all 0.5s ease;
}

#box_portfolio .a_button:hover {
	background: #069abc;
}

/* box_testimonials
-----------------------------------------------------------------------------*/
#box_testimonials {
	position:relative;
	background:#fff;
	padding:29px 0 36px 0;
	text-align:center;
}

#box_testimonials1 {
	float:left;
	width:49%;
}

#box_testimonials2 {
	float:right;
	width:49%;
}

#box_testimonials .a_button {
	margin-top:33px;
}

/* box_call_and_download
-----------------------------------------------------------------------------*/
#box_call_and_download {
	position:relative;
	background: #d2d9df;
	background: -moz-linear-gradient(top,  #d2d9df 1%, #f2f3f5 51%, #d2d9df 100%);
	background: -webkit-linear-gradient(top,  #d2d9df 1%,#f2f3f5 51%,#d2d9df 100%);
	background: linear-gradient(to bottom,  #d2d9df 1%,#f2f3f5 51%,#d2d9df 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d9df', endColorstr='#d2d9df',GradientType=0 );
	padding:53px 0;
	font-family: 'Khand', sans-serif;
	font-weight:500;
}

#call_and_ask {
	float:left;
	width:303px;
	height:44px;
	background:url(images/call_and_ask_bg.png) center center no-repeat;
	padding:28px 0 0 50px;
	margin:0 7px 0 31px;
}

#download_price_list {
	float:left;
	width:269px;
	height:38px;
	background:url(images/download_price_list_bg.png) center center no-repeat;
	margin:7px 7px 0 0;
	padding:21px 0 0 60px;
}

#download_brochure {
	float:left;
	width:267px;
	height:38px;
	background:url(images/download_brochure_bg.png) center center no-repeat;
	margin:7px 7px 0 0;
	padding:21px 0 0 68px;
}

#box_call_and_download a {
	display:block;
	color:#fff;
	width:100%;
	height:100%;
	font-size:25px;
}

#box_call_and_download a:hover {
	text-decoration:none;
}

/* box_our_process
-----------------------------------------------------------------------------*/
#box_our_process {
	position: relative;
	background:#fff url(images/box_our_process_bg.jpg) center bottom no-repeat;
	padding:66px 0 10px 0;
}

#box_our_process ul {
	display: table;
	margin: 0 auto;
	padding:0;
	list-style: none;
	list-style-image: none;
}
#box_our_process ul li {
	/*display: inline-block;*/
	display: block;
	/*vertical-align: top;*/
	vertical-align:middle;
	/*height:136px;
	width:248px;
	width:448px;*/
	height:137px;
	/*margin-right:1px;*/
	background:url(images/box_our_process_li_bg.png) left top 29px no-repeat;
	/*padding-top:12px;*/
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
}

#box_our_process ul li a {
	display: block;
	width:100%;
	height:100%;
	font-family: 'Khand', sans-serif;
	color:#231f20;
	font-size: 25px;
	font-weight:500;
	line-height: 30px;
	text-align: center;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
}
#box_our_process ul li a em {
	display:table;
	width:78px;
	height:66px;
	padding-top:12px;
	float:left;
	text-align:center;
	font-style:normal;
	margin-top:29px;
}
#box_our_process ul li a strong {
	display: block;
	color:#069abc;
	font-size:30px;
	font-weight:500;
}
#box_our_process ul li a:hover {
	text-decoration: none;
}
#box_our_process ul li a div {
	display:block;
	float:left;
	width: 104px;
	height: 104px;
	line-height: 104px;
	margin-top:16px;
	margin-left:34px;
	background: #069abc;
	/*margin-left: auto;
	margin-right: auto;*/
	-webkit-border-radius: 52px;
	-moz-border-radius: 52px;
	border-radius: 52px;
	transition: all 500ms ease-in;
	-webkit-transition: all 500ms ease-in;
}
#box_our_process ul li:nth-child(1) a div img {
	padding-top:26px;
}
#box_our_process ul li:nth-child(2) a div img {
	padding-top:21px;
}
#box_our_process ul li:nth-child(3) a div img {
	padding-top:24px;
}
#box_our_process ul li:nth-child(4) a div img {
	padding-top:30px;
}
#box_our_process ul li:nth-child(5) a div img {
	padding-top:20px;
}
#box_our_process ul li a:hover div {
	background:#598200;
}

#box_our_process ul li a span {
	float:left;
	display:table;
	font-family: 'Khand', sans-serif;
	color:#231f20;
	font-size: 25px;
	font-weight:500;
	line-height: 25px;
	margin-left:44px;
	margin-top:55px;
	/*text-align:right;
	margin-top:98px;
	-webkit-transform: rotate(-90deg);   
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);*/
}

/* box_contact
-----------------------------------------------------------------------------*/
#box_contact {
	position:relative;
	width:100%;
	min-height:671px;
	padding: 29px 0 15px 0;
	background: url(images/box_contact1_bg.png) center top no-repeat, url(images/box_contact_bg.png) center center repeat;
	background-size: auto, auto;
	z-index:1;
}

/* form_contact
-----------------------------------------------------------------------------*/
#form_contact {
	position:relative;
	width:100%;
	padding-top:5px;
}

#form_contact fieldset {
	border: none;
	padding: 0px;
	margin: 0px;
}
#form_contact input[type=text], #form_contact input[type=email], #form_contact select, #form_contact textarea {
	margin: 8px 0 9px 0;
	height:45px;
	padding:5px 10px;
	background:#fff;
	border:0px #60585f solid;
	color:#231f20;
	font-size:15px;
	line-height:15px;
	font-weight:600;
}

#form_contact textarea {
	padding:10px;
	height:199px;
}

#form_contact label {
	color: #fff;
	font-size: 15px;
	line-height: 15px;
}

#form_contact table.table_form {
	width:100%;
}

#form_contact table.table_form td {
	width:48%;
	padding-right:3.2%;
	vertical-align:top;
}

#form_contact table.table_form td:last-child {
	padding-right:0;
}

#form_contact #scode_block {
	width:1100px;
	color:#fff;
	padding-top:3px;
}

#form_contact #scode_block table {
	padding:17px 0 0 0;
}
#form_contact #scode_block table td {
	padding:0 !important;
}
#form_contact #scode_block #scode {
	width:107px;
	height:45px;
	font-size:22px;
	margin:0 10px !important;
	padding:0 !important;
}

#form_contact input.submit {
	height:45px;
	line-height:45px;
	padding: 0 44px;
}

#form_contact #scode_block #img_code {
	border:none;
}

#form_contact .required {
	color: #fff;
}

/* Footer
----------------------------------------------------------------------------*/
#footer {
	color: #231f20;
	background:#fff;
	position: relative;
	padding:40px 0 43px 0;
	font-size: 15px;
	line-height: 24px;
	text-align:center;
}

.inside #footer {
	border-top:1px #f5f5f5 solid;
}

#footer_logos {
	margin-bottom:5px;
	width:80%;
}
#footer_logos div {
	display: inline-block;
	padding:0 20px 20px 20px;
	vertical-align:middle;
}
#footer span {
}

#footer a {
	color: #231f20;
}

/* Contact
-----------------------------------------------------------------------------*/

#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 750px;
	float: right;
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 52px;
	height: 52px;
	background: #069abc url(images/scroll_top_bg.png) center no-repeat;
	-webkit-border-radius: 26px;
	-moz-border-radius: 26px;
	border-radius: 26px;
	text-decoration: none;
	cursor: pointer;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	z-index: 1000;
}
#scroll_top:hover {
	background: #276c7c url(images/scroll_top_bg.png) center no-repeat;
	text-decoration: none;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
html {
        /*margin-left: 1px;*/
    }
    /*html.evenWidth {
        margin-left: 0px;
    }*/
}
/****************************************/
#welcome_text {
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	text-align:center;
	margin-bottom:18px;
}

.small_font {
	font-size:small;
}
/****************************************/
span.dollar {
	position:relative;
}
span.dollar:before {
	position:absolute;
	content:"$";
	top:-2px;
	left:5px;
	color:#000;
}
span.dollar input {
	padding-left:15px !important;
}
.prices_ul {
	float:left;
	width:450px;
	margin:0;
	padding:0 0 0 17px;
}

.read_more_links {
}

.read_more_links a {
	color:#231f20;
	font-weight:700;
}

.read_more_links a span {
	color:#688b24;
}
/**********************************************/
iframe#infFormIframe_0 {
    width:700px !important;
    display: table !important;
    margin: 0 auto !important;
}

