* {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Space Grotesk", sans-serif, Arial, Helvetica;
	font-size: 16px;
	line-height: 26px;
	color: #747474;
    font-optical-sizing: auto;
	font-weight: 400;
    font-style: normal;
	width: 100%;
	min-width: 1100px;
	background: #010f20;
	position: relative;
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-size: 52px;
	line-height: 55px;
	font-weight: 700;
	color: #042b40;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-size: 49px;
	line-height: 51px;
	font-weight: 700;
	color: #0b4c6f;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-size: 45px;
	line-height: 48px;
	font-weight: 700;
	color: #0f858c;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h4, .h4 {
	font-size: 41px;
	line-height: 44px;
	font-weight: 700;
	color: #0f8c53;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h5, .h5 {
	font-size: 37px;
	line-height: 40px;
	font-weight: 700;
	color: #5da125;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h6, .h6 {
	font-size: 34px;
	line-height: 37px;
	font-weight: 700;
	color: #939e19;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
a {
	color: #f6ba2b;
	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.webp);*/
}
ul.no-list-image, ul.no-list-image li {
	list-style: none;
	list-style-image: none;
}

p {
	margin: 0px 0px 24px 0px;
}
img {
	border: none;
	vertical-align: middle;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 16px;
	line-height: 16px;
    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;
	color: #042b40;
	background: #f6ba2b;
	font-size: 12px;
	line-height: 12px;
    font-weight: 900;
    text-transform: uppercase;
	border: 0px;
	padding: 32px 70px 32px 70px;
    border-radius: 3px;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 16px;
	line-height: 26px;
}
.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 input[type=number], .form input[type=date], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 16px;
	line-height: 16px;
	padding: 10px 10px 10px 10px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.webp) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 9px 10px 9px 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 2px 0px 2px;
	margin: 0px;
}
#scode_block #scode {
	width: 105px;
}
#scode_block input[type=text] {
	margin: 0px;
}
#scode_block #img_code {
}

/* 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: #000;
}
.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.webp) top repeat-x;
	border: 0px;
}

.a_button {
	display: inline-block;
	color: #042b40;
	font-size: 12px;
	line-height: 12px;
	text-decoration: none; 
	font-weight: 700;
	outline: none;
	background: #f6ba2b;
	text-align: center;
    text-transform: uppercase;
	padding: 18px 24px 17px 24px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #fff;
	text-decoration: none;
	background: #042b40;
	transform: scale(1.1);
}

.columns {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	column-gap: 20px;
	-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 div {
	display: inline-block;
	padding-bottom: 10px;
	vertical-align: top;
}


/* columns_list
-----------------------------------------------------------------------------*/
ul.columns_list {
	width: 100%;
	list-style: none;
	list-style-image: none;
	text-align: center;
	padding: 0px;
	margin: 0px;
}
ul.columns_list li {
	width: auto;
	max-width: 94%;
	display: inline-block;
	padding: 0px 0px 0px 0px;
	margin: 0px 1% 15px 1%;
	vertical-align: top;
	text-align: left;
}
ul.columns_list.align_center li {
	text-align: center;
}
ul.columns_list > li {
}
ul.columns_list[data-columns-count="2"] > li {
	width: 46%;
}
ul.columns_list[data-columns-count="3"] > li {
	width: 29%;
}
ul.columns_list[data-columns-count="4"] > li {
	width: 21%;
}
ul.columns_list[data-columns-count="5"] > li {
	width: 16%;
}

ul.columns_list.valign_top li {
	vertical-align: top;
}
ul.columns_list.valign_middle li {
	vertical-align: middle;
}
ul.columns_list.valign_bottom li {
	vertical-align: bottom;
}


/* white-popup - magnific-popup style
-----------------------------------------------------------------------------*/
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width:auto;
  max-width: 700px;
  margin: 20px auto;
}


/* portfolio styles
-----------------------------------------------------------------------------*/
.sectionname, .imagepages {
	display: inline-block;
	color: #042b40;
	background: #f6ba2b;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #042b40;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #042b40;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.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: #042b40;
	font-size: 12px;
	line-height: 12px;
    font-weight: 700;
	text-decoration: none;
	outline: none;
	background: #f6ba2b;
	text-align: center;
	padding: 10px 15px 10px 15px;
	border-radius: 2px;
	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: #042b40;
}

/* 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-size: 20px;
	line-height: 20px;
	color: #000;
	font-weight: bold;
	padding: 0px 0px 5px 0px;
}
.portfolio_sections_list select {
	width: 100%;
	font-size: 16px;
	line-height: 16px;
	padding: 8px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.webp) 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-size: 27px;
	line-height: 30px;
	font-weight: 600;
	color: #7aa201;
	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;
	left: 0px;
	bottom: 0px;
	padding: 7px 4% 7px 4%;
	opacity: 0.5;
	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;
}
.portfolio_thumbnail_caption a {
	color: #FF0;
}
.portfolio_thumbnail_caption small {
	font-size: 11px;
	line-height: 12px;
}


/* portfolio_index
-----------------------------------------------------------------------------*/
.portfolio_index {
	padding: 0px 0px 10px 0px;
	text-align: center;
}
.portfolio_index_text {
	padding: 0px 0px 20px 0px;
	text-align: left;
}
.portfolio_index ul li {
	text-align: left;
	position: relative;
}

.portfolio_index_link {
	color: #FF0;
}
.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;
	transition: all 0.5s ease;
	z-index: 2;
	background: rgba(72,72,72,0.8);
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-size: 30px;
	line-height: 30px;
	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.webp) 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.webp) 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: #FF0;
}


/* 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: #FF0;
}
.mfp-title small {
	font-size: 13px;
	line-height: 14px;
	color: #fff;
}
.mfp-counter {
}


/* breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
	font-size: 15px;
	line-height: 15px;
	color: #747474;
	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: 11px;
}
.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: #f6ba2b;
}
.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.webp) top repeat-x;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-weight: 600;
	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: 75px;
}

.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_text {
	width: 100%;
	height: 54px;
	background: #f6ba2b url(images/header_text_bg.webp) center top no-repeat;
}
#header_slogan {
    width: 50%;
    float: left;
	font-size: 14px;
	line-height: 54px;
	color: #fff;
}
#header_social {
    width: 50%;
    float: left;
    text-align: right;
    padding-top: 13px;
}
#header_email,
#header_phone {
	display: inline-block;
	vertical-align: middle;
    font-size: 14px;
	line-height: 25px;
    font-weight: 500;    
	color: #001126;
    text-align: left;
}
#header_email:hover,
#header_phone:hover {
    text-decoration: none;
}
#header_email {
	padding: 0px 18px 0px 25px;
	background: url(images/icon_email.webp) left 9px no-repeat;
}
#header_phone {
	padding: 0px 10px 0px 22px;
	background: url(images/icon_phone.webp) left 5px no-repeat;
}
#header_social img {
    margin-left: 9px;
}
#menutop {
	width: 100%;
	height: 74px;
	background: #001126;
    border-bottom: 1px solid #d3a22a;
}
#menutop ul {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: left;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
	font-size: 15px;
	line-height: 15px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding: 32px 44px 27px 44px;
	margin: 0px;
	transition: color 250ms ease-in;
	-webkit-transition: color 250ms ease-in;    
}
#menutop li:first-child a {
	padding: 32px 44px 27px 0px;
}
#menutop li:last-child a {
	padding: 32px 0px 27px 44px;
}

#menutop ul li:hover a, 
#menutop li.selected a {
	text-decoration: none;
	color: #f6ba2b;
}
#slideshow {
	width: 100%;
	height: 868px;
	position: relative;
	z-index: 10;
	background: #001528;
	overflow: hidden;
}
.inside #slideshow {
	height: 418px;
}
#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;
	list-style: none;
	list-style-image: none;
}
#slideshow_bg {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 202;
    width: 100%;
    height: 100%;
    background: url(images/slideshow1_bg.webp) center bottom repeat-x, url(images/slideshow_bg.webp) center top repeat-x;
}
#slideshow_pager { 
	position: absolute;
	bottom: 37px;
	z-index: 205;
	width: 100%;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	text-align: center;
	font-size: 0px;
	line-height:0px;
}
#slideshow_pager span { 
	width: 30px;
	height: 4px; 
    display: inline-block;
	cursor: pointer;
	background: url(images/slide_icon.webp) center center no-repeat;
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.webp) center center no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}
#slideshow_content {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 16px;
	z-index: 204;
}
.inside #slideshow_content {
	top: 37px;
}
#slideshow_logo {
    width: 100%;
    text-align: center;
    padding-bottom: 68px;
}
#slideshow_slogans {
    padding-left: 22px;
    background: url(images/slideshow_slogans_bg.webp) left top repeat-y;
}
#slideshow_slogans div {
    width: 645px;
	font-size: 83px;
	line-height: 83px;
	color: #fff;
	font-weight: 700;
}
#slideshow_slogans span {
    display: block;
    padding-top: 4px;
    width: 540px;
	font-size: 17px;
	line-height: 26px;
	color: #fff;
	font-weight: 500;
}
#slideshow_content .a_button {
    margin-top: 39px;
	font-size: 15px;
	line-height: 15px;
	padding: 20px 26px 20px 26px;
}
#middle {
	width: 100%;
    padding: 111px 0px 70px 0px;
	min-height: 799px;
	background: url(images/middle1_bg.webp) center bottom no-repeat, #fff url(images/middle_bg.webp) center top no-repeat;
    position: relative;
}
.inside #middle {
    padding: 111px 0px 50px 0px;
	min-height: 600px;
	background: #fff;
    position: relative;
}
#box_middle {
	width: 100%;
    padding: 0px;
	background: #0ba8fc;
    color: #000;
    position: relative;    
}
#box_middle_left_photo {
    background: url(images/box_middle_left_photo.webp) left top no-repeat;
    width: 416px;
    height: 585px;
    position: absolute;
    top: 0px;
    left: -webkit-calc(50% - 960px);
    left: -moz-calc(50% - 960px);
    left: calc(50% - 960px);
}
#box_middle_right_photo {
    background: url(images/box_middle_right_photo.webp) left top no-repeat;
    width: 416px;
    height: 585px;
    position: absolute;
    top: -54px;
    right: -webkit-calc(50% - 960px);
    right: -moz-calc(50% - 960px);
    right: calc(50% - 960px);
}
#box_middle .a_button {
	font-size: 15px;
	line-height: 15px;
	padding: 20px 26px 20px 26px;
}
#box_middle_left {
    width: 50%;
    background: #f6ba2b url(images/box_middle_left_bg.webp) right top no-repeat;
    position: relative;
    min-height: 531px;
    height: 531px;
}
#box_middle_left .a_button {
	background: #0ba8fc url(images/icon_phone.webp) 17px 20px no-repeat;
	padding: 20px 26px 20px 36px;
}
#box_middle_left:before {
	content: "";
	display: block;
	width: 100%;
	height: 54px;
	position: absolute;
	top: -54px;
	left: 0px;
	background: url(images/box_middle_left_top_bg.webp) right top no-repeat;
}
#box_middle_left1 {
    width: 415px;
    margin-left: auto;
    padding: 54px 65px 20px 0px;
}
#box_middle_right {
    width: 50%;
    background: #0ba8fc url(images/box_middle_right_bg.webp) left bottom no-repeat;
    position: relative;
}
#box_middle_right:after {
	content: "";
	display: block;
	width: 100%;
	height: 54px;
	position: absolute;
	bottom: -54px;
	left: 0px;
	background: url(images/box_middle_right_bottom_bg.webp) left top no-repeat;
}
#box_middle_right1 {
    width: 430px;
    padding: 107px 0px 20px 65px;
}
#box_services {
	width: 100%;
    padding: 163px 0px 30px 0px;
	min-height: 1245px;
	background: #f3f1f1 url(images/box_services_bg.webp) center top repeat-y;
}
#box_services ul {
	display: table;
	margin: 0 auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 0px;
	line-height: 0px;
	text-align: center;
}
#box_services ul li {
	display: inline-block;
	width: 260px;
	vertical-align: top;
	padding: 0px;
	text-align: center;
	background: #fff;
	margin: 0px 20px 20px 0px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.02); 
}
#box_services ul li:nth-child(4),
#box_services ul li:nth-child(8),
#box_services ul li:nth-child(12) {
	margin: 0px 0px 20px 0px;
}
#box_services ul li a {
	display: table;
    width: 100%;
	position: relative;
    text-align: center;
	min-height: 328px;
}
#box_services ul li a:hover {
	text-decoration: none;
}
#box_services ul li a div {
	display: table-cell;
    vertical-align: top;
}
#box_services ul li a img {
    margin-top: 37px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_services ul li a:hover img {
	transform: scale(1.3);
}
#box_services ul li a div strong {
	display: block;
	font-size: 19px;
	line-height: 23px;
	font-weight: 700;
	color: #042b40;
    text-transform: uppercase;
	padding: 16px 20px 0px 20px;
}
#box_services ul li a div span {
	display: block;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: #747474;
	padding: 12px 25px 0px 25px;
}
#box_testimonials {
	width: 100%;
    padding: 110px 0px 40px 0px;
	min-height: 504px;
	background: #0b1e2e url(images/box_testimonials_bg.webp) center center no-repeat;
    background-size: cover;
}
#slideshow_testimonials {
	width: 760px;
	height: 172px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 10;
}
#slideshow_testimonials li {
	width: 100%;
	height: 100%;
	list-style: none;
	list-style-image: none;
	font-size: 19px;
	line-height: 30px;
	color: #fff;
	text-align: center;
}
#slideshow_testimonials li strong {
    font-weight: 600;
}
#slides_testimonials_pager { 
	width: 100%;
	padding-top: 0px;
	margin: 0px auto;
	font-size: 0px;
	line-height:0px;
	text-align: center;
}
#slides_testimonials_pager span { 
	width: 30px;
	height: 4px; 
    display: inline-block;
	cursor: pointer;
	background: url(images/slides_testimonials_icon.webp) center center no-repeat;
}
#slides_testimonials_pager span.cycle-pager-active {
	background: url(images/slides_testimonials_icon_on.webp) center center no-repeat;
}
#slides_testimonials_pager > * {
	cursor: pointer;
}
#box_testimonials .a_button {
    margin-top: 47px;
}
#box_gallery {
	width: 100%;
    padding: 110px 0px 40px 0px;
	min-height: 675px;
	background: #f6ba2b url(images/box_gallery_bg.webp) center top no-repeat;
    position: relative;
}
#box_portfolio_thumbs {
	width: 1350px!important;
	position: absolute;
	top: 250px;
	right: 0px;
	left: 50%;
	margin-left: -675px;
	overflow: hidden;
}
#box_portfolio_thumbs ul {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 0px;
	line-height: 0px;
}
#box_portfolio_thumbs ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
#box_portfolio_thumbs ul li a {
	display: block;
	float: left;
	margin: 0px;
	position: relative;
    overflow: hidden;
}
#box_portfolio_thumbs ul li:nth-child(2) a,
#box_portfolio_thumbs ul li:nth-child(4) a {
	margin-top: 45px;
}
#box_portfolio_thumbs ul li a div {
    box-sizing: border-box;
	margin: 0px;
	z-index: 10;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(11,168,252,0.8) url(images/icon_zoom.webp) 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_button {
	margin-top: 32px;
    background: #0ba8fc;
}
#box_contact {
	width: 100%;
    padding: 110px 0px 40px 0px;
	min-height: 537px;
	background: #0ba8fc url(images/box_contact_bg.webp) center top no-repeat;
}
#box_contact_area {
    width: 528px;
    float: left;
    padding-right: 44px;
}
#box_contact table {
	width: 100%;
	margin: 0px auto;
}
#box_contact_form .td_half {
	width: 50%;
}
#box_contact_form table tr {
	vertical-align: top;
}
#box_contact_form textarea {
	height: 112px;
	font-size: 16px;
	line-height: 16px;
	color: #606060;
	font-weight: 700;
	padding: 15px 10px 15px 20px;
	background: #fff;
	border: 1px solid #eeeeee;
}
#box_contact_form #name,
#box_contact_form #phone,
#box_contact_form #email,
#box_contact_form #scode {
	height: 46px;
	font-size: 16px;
	line-height: 16px;
	color: #606060;
	font-weight: 700;
	padding: 15px 10px 15px 20px;
	background: #fff;
	border: 1px solid #eeeeee;
	margin: 0px 0px 15px 0px;
}
#box_contact_form label {
	padding-right: 0px;
}
#box_contact_form label.withpadding {
	padding-right: 16px;
}


#box_contact_form input:required {
	background: #fff url(images/placeholder_req_bg.webp) 10px 15px 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 ::-webkit-input-placeholder {
	font-size: 16px;
	line-height: 16px;
	color: #606060 !important;
	font-weight: 700;
}
#box_contact_form ::-moz-placeholder {
	font-size: 16px;
	line-height: 16px;
	color: #606060 !important;
	font-weight: 700;
}
#box_contact_form :-moz-placeholder {
	font-size: 16px;
	line-height: 16px;
	color: #606060 !important;
	font-weight: 700;
}
#box_contact_form :-ms-input-placeholder {
	font-size: 16px;
	line-height: 16px;
	color: #606060 !important;
	font-weight: 700;
}
#box_contact_form #scode_block table {
	width: auto;
	margin: 0px auto;
	text-align: center;
}
#box_map {
    width: 528px;
    float: left;
}
#footer {
	width: 100%;
    padding: 37px 0px 30px 0px;
	min-height: 161px;
	background: url(images/footer_bg.webp) center top no-repeat;
    text-align: center;
}
#footer1 {
	width: 100%;
    padding: 36px 0px 20px 0px;
	min-height: 37px;
	font-size: 11px;
	line-height: 15px;
	color: #707d8d;
}
#footer1 a {
	color: #707d8d;
}
#footer_address {
    width: 50%;
    float: left;
}
#footer_links {
    width: 50%;
    float: left;
    text-align: right;
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	padding: 0px 0px 34px 0px;
	margin: 0px;
	font-size: 52px;
	line-height: 60px;
	font-weight: 700;
	color: #042b40;
}
.content_title_home {
    display: inline-block;
    width: 525px;
}
.content_title span {
    display: block;
	padding: 0px 0px 7px 0px;
	margin: 0px 0px 19px 0px;
	font-size: 15px;
	line-height: 15px;
	font-weight: 400;
	color: #737478;
    text-transform: uppercase;
	background: url(images/content_title_bg.webp) left bottom no-repeat;
    vertical-align: top;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	font-size: 52px;
	line-height: 60px;
	font-weight: 700;
	color: #042b40;
}
#box_services .content_title {
    text-align: center;
}
#box_services .content_title span {
	background: url(images/content_title_bg.webp) center bottom no-repeat;
}
#box_testimonials .content_title {
    text-align: center;
	color: #fff;
}
#box_testimonials .content_title span {
	color: #c9c9c9;
	background: url(images/content_title_bg.webp) center bottom no-repeat;
}
#box_gallery .content_title {
    text-align: center;
}
#box_gallery .content_title span {
	color: #fff;
	background: url(images/content_title1_bg.webp) center bottom no-repeat;
}
#box_contact .content_title {
    text-align: center;
}
#box_contact .content_title span {
	color: #fff;
	background: url(images/content_title_bg.webp) center bottom no-repeat;
}
/* Contact
-----------------------------------------------------------------------------*/
#contact_address {
	width: 300px;
	float: left;
}
#contact_form {
	width: 780px;
	float: right;
}

/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 64px;
	height: 64px;
	background: #f6ba2b url(images/scroll_top_bg.webp) center no-repeat;
	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: #d19300 url(images/scroll_top_bg.webp) center no-repeat;
	text-decoration: none;
	transform: scale(1.1);    
}
.img_left_home {
    margin-right: 45px; 
}
.callus {
	font-size: 22px;
    color: #f6ba2b;
}
.callus strong {
    font-weight: 600;
}
.table_container {
    display: table;
}
.table_cell {
    display: table-cell;
}
#service_area span {
    display: block;
	font-size: 25px;
	line-height: 28px;
	font-weight: 700;
	color: #5da125;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
#service_area strong {
    display: block;
	font-size: 22px;
	line-height: 25px;
	font-weight: 700;
	color: #939e19;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
#service_area ul {
	margin: 10px 0px 10px 20px;
	padding: 0px;

	-moz-column-count: 5;
	-webkit-column-count: 5;
	column-count: 5;
	
	-moz-column-gap: 32px;
	-webkit-column-gap: 32px;
	column-gap: 32px;
}
#service_area a[href="javascript:;"] {
	color: #747474;
	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;
}
