* {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Barlow", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 35px;
	color: #4b4b4b;
	width: 100%;
	min-width: 1800px;
	font-weight: 400;
	background: #000 url(images/body_bg.webp) center repeat-y;
	position: relative;
}

@media screen and (max-width: 1840px) {
body {
	min-width: 1100px;
}
}

@media screen and (max-width: 1140px) {
body {
	width: 100%;
	min-width: auto;
	max-width: auto;
    font-size: 13px;
	line-height: 20px;
}
}

/* text styles
-----------------------------------------------------------------------------*/

h1, .h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 60px;
	line-height: 63px;
	font-weight: 800;
	color: #3d424c;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h2, .h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 57px;
	line-height: 60px;
	font-weight: 800;
	color: #3a5359;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h3, .h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 54px;
	line-height: 57px;
	font-weight: 800;
	color: #3a594c;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h4, .h4 {
	font-family: "Montserrat", sans-serif;
	font-size: 51px;
	line-height: 54px;
	font-weight: 800;
	color: #4c593a;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h5, .h5 {
	font-family: "Montserrat", sans-serif;
	font-size: 48px;
	line-height: 51px;
	font-weight: 800;
	color: #59573a;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h6, .h6 {
	font-family: "Montserrat", sans-serif;
	font-size: 45px;
	line-height: 48px;
	font-weight: 800;
	color: #594b3a;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
@media screen and (max-width: 1140px) {
h1, .h1 {
	font-size: 20px;
	line-height: 23px;
}
h2, .h2 {
	font-size: 19px;
	line-height: 22px;
}
h3, .h3 {
	font-size: 18px;
	line-height: 21px;
}
h4, .h4 {
	font-size: 17px;
	line-height: 20px;
}
h5, .h5 {
	font-size: 16px;
	line-height: 19px;
}
h6, .h6 {
	font-size: 15px;
	line-height: 18px;
}
}
a {
	color: #d0992e;
	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:0 0 24px 0;
}
img {
	border: none;
	vertical-align: middle;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 18px;
	line-height: 18px;
    box-sizing: border-box;
}
label {
	box-sizing: border-box;
}
input {
	vertical-align: middle;
}

.form_standard {
	width: 1000px !important;
	display: table;
	margin: 0 auto;
}
.form_standard_half {
	width: 500px !important;
	display: table;
	margin: 0 auto;
}

@media screen and (max-width: 1840px) {
.form_standard {
	width: 700px !important;
}
.form_standard_half {
	width: 350px !important;
}
}

@media screen and (max-width: 1140px) {
.form_standard {
	width: 100%!important;
}
.form_standard_half {
	width: 100% !important;
}
}
.form {
	width: 100%;
}
.form input.submit, input.button {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
	width: auto;
	color: #fff;
	background: #d0992e;
	font-size: 14px;
	line-height: 14px;
	border: 0px;
	padding: 31px 119px 31px 119px;
	cursor: pointer;
    text-transform: uppercase;
    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: 20px;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}
.form label.edit_third {
	width: 33.333333333333333333333333333333333%;
}
.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: 14px;
	line-height: 18px;
	padding: 12px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.webp) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 13px;
}
.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 {
	border-radius: 2px;
}
#scode_block ul {
	display: table;
	margin: 0px auto;
	padding: 20px 0px 0px 0px;
	list-style: none;
	list-style-image: none;
    text-align: center;
}
#scode_block ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px 18px 0px 18px;
}
@media screen and (max-width: 1140px) {
#scode_block ul li {
	margin: 0px 5px 10px 5px;
}
#scode_block ul li:first-child {
	margin: 0px 5px 10px 12px;
}
#scode_block ul li:last-child {
	margin: 0px 0px 10px 5px;
}
}

.captcha {
	text-align: left;
}
.g-recaptcha {
	display: inline-block;
	vertical-align: top;
	transform: scale(1);
}

@media screen and (max-width: 350px) {
.captcha {
	text-align: center !important;
}
.g-recaptcha {
	display: block;
	width: 200px !important;
	overflow: hidden !important;
	border-radius: 4px;
	margin: 0 auto;
}
.form input.submit, input.button {
	font-size: 25px;
	line-height: 25px;
	padding: 15px 30px 15px 30px;
}
}


/* 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;
}

@media screen and (min-width: 1141px) {
.mobile_only {
	display: none !important;
}
}

@media screen and (max-width: 1140px) {
.desktop_only {
	display: none !important;
}
}


.img_left {
	width: auto;
	float: left;
	margin: 0px 60px 30px 0px;
}
.img_right {
	width: auto;
	float: right;
	margin: 0px 0px 30px 60px;
}

.images, .images_left, .images_right {
	border: 0px;
}
.images_left {
	width: auto;
	float: left;
	margin: 0px 60px 30px 0px;
}
.images_right {
	width: auto;
	float: right;
	margin: 0px 0px 30px 60px;
}

.img_full, .images_full {
	width: 100%;
	height: auto;
}

.img, .img_left, .img_right {
	max-width: 100%;
	height: auto;
}
.images, .images_left, .images_right {
	max-width: 100%;
	height: auto;
}
.img_left, .img_right, .images_left, .images_right {
	display: block;
	margin-bottom: 30px;
}

@media screen and (max-width: 1840px) {
.images, .images_left, .images_right, .img, .img_left, .img_right {
	width: 400px;
	height: auto;
}
.images_left, .img_left {
	margin: 0px 45px 25px 0px;
}
.images_right, .img_right {
	margin: 0px 0px 25px 45px;
}
}

@media screen and (max-width: 1140px) {
.images_left, .img_left {
	margin: 0px 30px 15px 0px;
}
.images_right, .img_right {
	margin: 0px 0px 15px 30px;
}
.images, .images_left, .images_right, .img, .img_left, .img_right {
	width: 300px;
	height: auto;
}
}

@media screen and (max-width: 800px) {
.images, .images_left, .images_right, .img, .img_left, .img_right {
	width: 250px;
	height: auto;
}
}

@media screen and (max-width: 500px) {
.images, .images_left, .images_right, .img, .img_left, .img_right {
	width: 100%;
	height: auto;
}
.images_left, .img_left {
	margin-right: 0px;
}
.images_right, .img_right {
	margin-left: 0px;
}
}


hr, .hr {
	line-height: 1px;
	height: 1px;
	font-size: 1px;
	background: #ccc;
	border: 0px;
}

.a_button {
	display: inline-block;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 14px;
	text-decoration: none;
	font-weight: 400;
	outline: none;
	background: #d0992e;
	text-align: center;
    text-transform: uppercase;
	padding: 19px 41px 19px 41px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	color: #fff;
	text-decoration: none;
	background: #3d424c;
}
@media screen and (max-width: 1140px) {
.a_button {
	font-size: 10px;
	line-height: 10px;
	padding: 14px 22px 13px 22px;
}
}
.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 2% 15px 2%;
	vertical-align: top;
	text-align: left;
}
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;
}

@media only screen and (min-width: 320px) and (max-width: 640px) {
	ul.columns_list > li {
		width: 97% !important;
	}
}
@media only screen and (min-width: 640px) and (max-width: 960px) {
	ul.columns_list > li {
		width: 47% !important;
	}
}
@media only screen and (min-width: 960px) and (max-width: 1280px) {
	ul.columns_list[data-columns-count="2"] > li {
		width: 47% !important;
	}
	ul.columns_list[data-columns-count="3"] > li,
	ul.columns_list[data-columns-count="4"] > li,
	ul.columns_list[data-columns-count="5"] > li {
		width: 30% !important;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1600px) {
	ul.columns_list[data-columns-count="2"] > li {
		width: 47% !important;
	}
	ul.columns_list[data-columns-count="3"] > li {
		width: 30% !important;
	}
	ul.columns_list[data-columns-count="4"] > li,
	ul.columns_list[data-columns-count="5"] > li {
		width: 22% !important;
	}
}
@media only screen and (min-width: 1600px) {
	ul.columns_list[data-columns-count="2"] > li {
		width: 47% !important;
	}
	ul.columns_list[data-columns-count="3"] > li {
		width: 30% !important;
	}
	ul.columns_list[data-columns-count="4"] > li {
		width: 22% !important;
	}
	ul.columns_list[data-columns-count="5"] > li {
		width: 17% !important;
	}
}


/* 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: #fff;
	background: #3d424c;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #d0992e;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #d0992e;
	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: #fff;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	text-decoration: none;
	outline: none;
	background: #d0992e;
	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 {
	text-decoration: none;
	background: #231f20;
}

@media screen and (max-width: 1840px) {
a.portfolio_button {
	padding: 7px 10px 7px 10px;
}
}

@media screen and (max-width: 1140px) {
a.portfolio_button {
	font-size: 16px;
	line-height: 16px;
}
}


/* portfolio_sections_list
-----------------------------------------------------------------------------*/
.portfolio_sections_list {
	padding: 0px 0px 15px 0px;
	text-align: left;
	border-bottom: 1px solid #ececec;
	margin-bottom: 15px;
}
.portfolio_sections_list_caption {
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 23px;
	padding: 0px 0px 5px 0px;
	text-transform: uppercase;
}
.portfolio_sections_list select {
	width: 100%;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	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 {
	margin: 0px;
	padding: 0px;
	width: 100%;
	text-align: left;
}
.portfolio_sections_list ul li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
	padding: 0px;
	vertical-align: top;
}

.portfolio_section_name {
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 23px;
	line-height: 33px;
	font-weight: normal;
	color: #445766;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	text-transform: uppercase;
	text-align: left;
}
.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 {
}
.portfolio_thumbnails_caption {
	padding: 0px 0px 20px 0px;
	text-align: left;
}

.portfolio_thumbnails ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	display: grid;
	gap: 10px 20px;
	grid-template-columns: repeat(4, 1fr);
}

.portfolio_thumbnails li {
	position: relative;
	padding: 0px;
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_thumbnails .portfolio_thumbnail_link {
	display: block;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_thumbnails .portfolio_thumbnail_link:hover {
	text-decoration: none;
	color: #e4af3b;
}
.portfolio_thumbnails .portfolio_thumbnail_image {
	width: 100%;
}
.portfolio_thumbnails .portfolio_thumbnail_image img {
	width: 100%;
	height: auto;
}

.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_thumbnail_caption {
	display: block;
	color: #4b6071;
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 22px;
	text-transform: uppercase;
	padding-top: 10px;
}
.portfolio_thumbnails .portfolio_thumbnail_link:hover .portfolio_thumbnail_caption {
	color: #e4af3b;
}
*/

@media screen and (max-width: 1840px) {
.portfolio_thumbnails ul {
	gap: 10px 20px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 1140px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 900px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
}
.portfolio_thumbnails ul li a span {
	font-size: 16px;
	line-height: 18px;
	padding-top: 10px;
}
.portfolio_thumbnail_caption {
	font-size: 14px;
	line-height: 15px;
}
}

@media screen and (max-width: 700px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
}
.portfolio_thumbnails ul li a span {
	font-size: 15px;
	line-height: 17px;
	padding-top: 5px;
}
}

@media screen and (max-width: 500px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
	grid-template-columns: 1fr;
}
.portfolio_thumbnails ul li a span {
	padding-top: 10px;
}
}


/* portfolio_index
-----------------------------------------------------------------------------*/
.portfolio_index {
	margin-bottom: 30px;
}
.portfolio_index_text {
	padding: 0px 0px 20px 0px;
	text-align: left;
}

.portfolio_index ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	display: grid;
	gap: 10px 20px;
	grid-template-columns: repeat(4, 1fr);
}
.portfolio_index li {
	position: relative;
	padding: 0px;
	margin: 0px 0px 0px 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index .portfolio_index_link {
	display: block;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.portfolio_index .portfolio_index_link:hover {
	text-decoration: none;
	color: #e4af3b;
}
.portfolio_index .portfolio_index_image {
	width: 100%;
}
.portfolio_index .portfolio_index_image img {
	width: 100%;
	height: auto;
}

.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);
	color: #fff;
	font-size: 20px;
	line-height: 23px;
	font-weight: bold;
	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_index_caption {
	display: block;
	color: #4b6071;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	line-height: 23px;
	text-transform: uppercase;
	padding-top: 15px;
}
.portfolio_index .portfolio_index_link:hover .portfolio_index_caption {
	color: #e4af3b;
}
*/

@media screen and (max-width: 1840px) {
.portfolio_index ul {
	gap: 10px 20px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 1140px) {
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 900px) {
.portfolio_index ul {
	gap: 5px 10px;
}
.portfolio_index_caption {
	font-size: 17px;
	line-height: 18px;
	padding-top: 10px;
}
}

@media screen and (max-width: 700px) {
.portfolio_index ul {
	gap: 5px 10px;
}
.portfolio_index_caption {
	font-size: 14px;
	line-height: 15px;
	padding-top: 5px;
}
}

@media screen and (max-width: 500px) {
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: 1fr;
}
.portfolio_index_caption {
	font-size: 18px;
	line-height: 20px;
	padding-top: 10px;
}
}


/* 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-family: "Barlow", sans-serif;
	font-size: 16px;
	line-height: 22px;
	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: 14px;
	line-height: 14px;
}
.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: #d0992e;
}
.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;
	font-family: "Barlow", sans-serif;
	color: #fff;
	font-weight: 400;
	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;
	font-weight: 400;
	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: 1800px;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.page_wrapper:before,
.page_wrapper:after {
	content: "";
	display: table;
} 
.page_wrapper:after {
	clear: both;
}

@media screen and (max-width: 1840px) {
.page_wrapper {
	width: 1100px;
}
}

@media screen and (max-width: 1140px) {
.page_wrapper {
	width: auto;
	margin: 0px 20px 0px 20px;
}
}

#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 0px;
}

.body_wrapper {
	max-width: 2560px !important;
	margin: 0 auto !important;
	float: none !important;
}
@media screen and (max-width: 1840px) {
.body_wrapper {
	max-width: 1920px !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: 2560px !important;
	float: none !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1840px) {
.box_fixed {
	max-width: 1920px !important;
}
}
/* header_social
-----------------------------------------------------------------------------*/
#header_social {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 2;
}
#header_icons {
    position: absolute;
    right: 0px;
    top: 24px;
    display: inline-block;
    vertical-align: middle;
}
#header_icons img {
    vertical-align: middle;
}
#header_social img {
    margin-left: 6px;
}
#header_phone {
    position: absolute;
    right: 0px;
    top: 131px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
	font-size: 17px!important;
    line-height: 17px!important;
	color: #fff;
	padding: 18px 39px 17px 59px;
	background: #d0992e url(images/icon_phone.webp) left 35px top 19px no-repeat;
    text-decoration: none;
}
@media screen and (max-width: 1140px) {
#header_social {
    position: relative;
    background: linear-gradient(to bottom, #525864 0px, #3d424c 100%);
    height: 40px;
    text-align: center;
}
#header_phone,
#header_icons {
    position: static;
    display: inline-block;
}
#header_phone {
	font-size: 12px!important;
    line-height: 40px!important;
	color: #fff;
	padding: 0px 23px 0px 17px;
	background: url(images/icon_phone_mobile.webp) left center no-repeat;
    text-decoration: none;
}
}
/* header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
    height: 289px;
	background: #000;
    position: relative;
    text-align: center;
    z-index: 1;
}
#header_logo {
    padding-top: 39px;
    text-align: center;
}
@media screen and (max-width: 1140px) {
#header {
    height: 144px;
}
#header_logo {
    padding-top: 13px;
}
#header_logo img {
    width: 189px;
    height: auto;
}
}
/*menutop
-----------------------------------------------------------------------------*/
#menutop {
    width: 100%;
    position: relative;
    text-align: center;
    height: 66px;
    background: #3d424c;
    border-bottom: 1px solid #d0992e;
    box-sizing: border-box;
}
#menutop ul {
	display: flex;
    justify-content: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
    position: relative;
	float: none;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
    font-family: "Montserrat", sans-serif;
	font-size: 17px;
	line-height: 17px;
	font-weight: 800;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding: 24px 52px 25px 52px;
	margin: 0px;
	transition: color 250ms ease-in;
	-webkit-transition: color 250ms ease-in;    
}
#menutop ul li:hover a, 
#menutop li.selected a {
	text-decoration: none;
	background: #d0992e;
}
@media screen and (max-width: 1840px) {
#menutop ul li a {
	font-size: 16px;
	line-height: 16px;
	padding: 24px 20px 25px 20px;
}
}
@media screen and (max-width: 1140px) {
#menutop {
    display: none;
}
}
/* .menu_icons
-----------------------------------------------------------------------------*/
.menu_icons {
	width: 100%;
	background: linear-gradient(to bottom, #525864 0px, #3d424c 100%);
	display: none;
}
.menu_icons:after {
    content:"";
    display:block;
    clear: both;
}
.menu_icons ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
.menu_icons ul li {
	width: auto;
	list-style: none;
	list-style-image: none;
	float: right;
	display: inline-block;
	vertical-align: middle;
}
.menu_icons ul li:first-child {
	float: left;
}
.menu_icons a {
	display: block;
	text-align: center;
	color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
	line-height: 32px;
	font-weight: 700;
	height: 35px;
	padding: 3px 20px 0px 20px;
	text-transform: uppercase;
}
#mobile_show_menu {
    color: #fff;
}
.menu_icons a:hover {
	text-decoration: none;
}
.menu_icons a img {
	vertical-align: middle;
	margin: 0px 5px 0px 0px;
}
@media screen and (max-width: 1140px) {
.menu_icons {
	display: block;
}
}
/* .menumobile
-----------------------------------------------------------------------------*/
#menumobile {
	width: 100%;
	display: none;
}
#menumobile ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menumobile ul li {
	width: 100%;
	list-style: none;
	list-style-image: none;
	position: relative;
	background: linear-gradient(to bottom, #e1aa3e 0px, #d0992e 100%);
}
#menumobile a {
	display: block;
	text-align: center;
	color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	padding: 11px 0px 8px 0px;
	text-transform: uppercase;
}
#menumobile a:hover {
	text-decoration: none;
}
#menumobile li.selected > a {
	color: #3d424c;
}
#menumobile li.closed > ul {
	display: none;
}
#menumobile li.open > ul {
	display: block;
	/* border on open dropdown menu */
	border-top: 2px solid #ebe7e1;
	border-bottom: 2px solid #ebe7e1;
}
/* clicking area to expand/collapse */
#menumobile li.closed a {
	margin-right: 40px;
	padding-left: 40px;
}
#menumobile li.closed {
	cursor: cell;
}
#menumobile li.closed:after {
	content: "";
	display: block;
	width: 40px;
	height: 100%;
	background: url(images/mobile_arrow_close.webp) center 13px no-repeat;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 1;
}
#menumobile li li.closed:after {
	z-index: 2;
}
#menumobile li li li.closed:after {
	z-index: 3;
}
#menumobile li li li li.closed:after {
	z-index: 4;
}
#menumobile li li li li li.closed:after {
	z-index: 5;
}
#menumobile li.open a {
	margin-right: 40px;
	padding-left: 40px;
}
#menumobile li.open {
	cursor: cell;
}
#menumobile li.open:after {
	content: "";
	display: block;
	width: 40px;
	height: 100%;
	background: url(images/mobile_arrow_open.webp) center 13px no-repeat;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 1;
}
#menumobile li li.open:after {
	z-index: 2;
}
#menumobile li li li.open:after {
	z-index: 3;
}
#menumobile li li li li.open:after {
	z-index: 4;
}
#menumobile li li li li li.open:after {
	z-index: 5;
}
@media screen and (min-width: 1140px) {
#menumobile {
	display: none !important;
}
}
/* slideshow
-----------------------------------------------------------------------------*/
#slideshow {
	width: 100%;
	height: 1141px;
	position: relative;
	z-index: 10;
	background: #131417;
}
.inside #slideshow {
	height: 640px;
}
@media screen and (max-width: 1140px) {
#slideshow {
    height: 334px!important;
	background: #020b17 url(images/mobile_slideshow_bg.webp) center center no-repeat;
    background-size: cover;
}
.inside #slideshow {
	height: 184px!important;
}    
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 100%;
	list-style: none;
	list-style-image: none;
}
@media screen and (min-width: 1141px) {
#slide1 {
	background: url(images/slides_01.webp) center center no-repeat;
}
#slide2 {
	background: url(images/slides_02.webp) center center no-repeat;
}
#slide3 {
	background: url(images/slides_03.webp) center center no-repeat;
}
}
#slideshow_content {
	position: absolute;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
	width: 100%;
	left: 0px;
	top: 301px;
	z-index: 235;
    text-align: left;
}
#slideshow_slogan {
	font-size: 150px;
	line-height: 150px;
	color: #fff;
    padding: 0px 0px 26px 0px;
    text-transform: uppercase;
}
#slideshow_text {
	font-size: 25px;
	line-height: 25px;
	color: #d0992e;
    padding: 0px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#slideshow_content .a_button {
    margin: 54px 0px 0px 0px;
}
.inside #slideshow_slogan,
.inside #slideshow_text,
.inside #slideshow_content .a_button {
    display: none;
}
#slideshow_overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 355px; 
  background: url(images/slideshow_overlay.webp) center bottom no-repeat;
  background-size: contain; 
  z-index: 236; 
}
@media screen and (max-width: 1840px) {
#slideshow {
	height: 991px;
}
.inside #slideshow {
	height: 491px;
}
#slideshow_content {
	top: 268px;
}
#slideshow_slogan {
    font-size: 120px;
	line-height: 120px;
}
#slideshow_content .a_button {
    margin: 55px 0px 0px 0px;
}
}
@media screen and (max-width: 1190px) {
#slideshow_content {
	left: 20px;
}
}
@media screen and (max-width: 1140px) {
#slideshow_content {
	top: 110px;
}
#slideshow_slogan {
    width: auto;
	font-size: 30px;
	line-height: 30px;
    padding: 0px 0px 15px 0px;
}
#slideshow_text {
    font-size: 12px;
	line-height: 12px;
}
#slideshow_overlay {
  display: none;
}
#slideshow_content .a_button {
    margin: 19px 0px 0px 0px;
}
}
@media screen and (max-width: 450px) {
#slideshow_content {
	top: 90px;
}
.inside #slideshow_content {
	top: 35px;
}
#slideshow_slogan1,
#slideshow_slogan2 {
    padding-left: 15px;
    padding-right: 15px;
}
}
#slides_arrow_next, 
#slides_arrow_prev {
	width: 28px;
	height: 172px;
	position: absolute;
	top: 50%;
    margin-top: -130px;
	z-index: 237;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#slides_arrow_prev {
	left: 170px;
	background: url(images/slides_arrow_prev.webp) center center no-repeat;
}
#slides_arrow_next {
	right: 170px;
	background: url(images/slides_arrow_next.webp) center center no-repeat;	
}
@media screen and (max-width: 2210px) {
#slides_arrow_prev {
	left: 10px;
}
#slides_arrow_next {
	right: 10px;
}
}
@media screen and (max-width: 1140px) {
#slides_arrow_prev {
	display: none;
}
#slides_arrow_next {
	display: none;
}
}
#slides_arrow_next:hover, #slides_arrow_prev:hover {
	transform: scale(1.1);
}
#slideshow_pager { 
	position: absolute;
    width: 1800px!important;
	bottom: 172px;
	z-index: 240;
	left: 0px;
    right: 0px;
	margin: 0px auto;
	text-align: left;
}
#slideshow_pager span { 
	width: 50px;
	height: 5px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 0px;
	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;
}
.inside #slideshow_pager { 
	bottom: 130px;
}
@media screen and (max-width: 1840px) {
#slideshow_pager { 
    width: 1100px!important;
	bottom: 142px;
}
}
.inside #slideshow_pager { 
	bottom: 100px;
}
@media screen and (max-width: 1140px) {
#slideshow_pager {
	display: none;
}
}
/* middle
-----------------------------------------------------------------------------*/
#middle {
	min-height: 800px;
	background: #fff url(images/box_about_bg.webp) right bottom no-repeat;
    padding: 98px 0px 120px 0px;
}
@media screen and (max-width: 1840px) {
#middle {
    padding: 60px 0px 70px 0px;
}
}
@media screen and (max-width: 1140px) {
#middle {
	min-height: 500px;
    background: #fff url(images/box_about_bg_mob.webp) right bottom no-repeat;
    padding: 40px 0px 40px 0px;
}
}
/* box_about
-----------------------------------------------------------------------------*/
#box_about {
    position: relative;
    background: url(images/box_about_bottom_bg.webp) center bottom no-repeat, url(images/box_about_bg.webp) right 132px bottom no-repeat, #fff;
    padding: 139px 0px 242px 0px;
}
#box_about b {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 15px;
}
#box_about ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding-left: 0px;
}
#box_about ul li {
    position: relative;
    padding-left: 14px;
}
#box_about ul li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 15px;
    width: 8px;
    height: 6px;
    background: url("images/box_about_bullet.webp") center center no-repeat;
    background-size: contain;
}
#box_about_text_left {
    float: left;
    width: 46%;
    padding-right: 115px;
}
#box_about_text_right {
    float: right;
    width: 47%;
}
#box_about .a_button {
    margin-right: 20px;
}
#about_phone {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
	font-size: 17px!important;
    line-height: 17px!important;
	color: #fff;
	padding: 14px 39px 17px 59px;
	background: #3d424c url(images/icon_phone_yellow.webp) left 35px top 19px no-repeat;
    text-decoration: none;
}
#box_about .a_button,
#about_phone {
    margin-top: 15px;
}
@media screen and (max-width: 1840px) {
#box_about {
    background: url(images/box_about_bottom_bg.webp) center bottom no-repeat, url(images/box_about_bg.webp) right -150px bottom no-repeat, #fff;
    padding: 94px 0px 197px 0px;
}
#box_about_text_left,
#box_about_text_right {
    float: none;
    width: 100%;
    padding: 0px;
}
}
@media screen and (max-width: 1140px) {
#box_about {
    background: #fff url(images/box_about_bg_mob.webp) right bottom no-repeat;
    padding: 30px 0px 40px 0px;
}
#box_about ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
}
#box_about ul li::before {
    left: 1px;
    top: 8px;
}
#about_phone {
    display: none;
}
#box_about .a_button {
    margin: 5px 0px 0px 0px;
}
#about_button {
    text-align: center;
}
}
/* box_services
-----------------------------------------------------------------------------*/
#box_services {
	width: 100%;
	padding: 86px 0px 254px 0px;
	background: url(images/box_services_bottom_bg.webp) center bottom no-repeat, url(images/box_services_bg.webp) center center repeat;
}
.service_section {
    color: #fff;
    font-size: 35px;
    line-height: 35px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin-bottom: 35px;
}
#ul_services {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 0px;
	line-height: 0px;
	text-align: center;
}
#ul_services li {
	display: inline-block;
	vertical-align: top;
	margin: 0px 32px 32px 0px;
}
#ul_services li:nth-child(4n+0),
#ul_services li:last-child {
	margin: 0px 0px 32px 0px;
}
#ul_services li a {
    position: relative;
	display: block;
    box-sizing: border-box;
    width: 426px;
    height: 314px;
	padding: 148px 70px 0px 70px;
	text-decoration: none;
    transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#ul_services li a:hover .a_button{
	color: #d0992e;
    background: #fff;
}
#ul_services li span {
	display: table;
    width: 100%;
	margin: 0px;
    text-align: center;    
}
#ul_services li span b {
	display: table-cell;
	font-family: "Montserrat", sans-serif;
	font-size: 25px;
	line-height: 25px;
	font-weight: 800;
	color: #3d424c;
    vertical-align: middle;
    text-transform: uppercase;
}
#ul_services li strong {
	position: absolute;
	bottom: 43px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0px;
}
#services_driveways {
	background: #fff url(images/icon_services_driveways.webp) center 39px no-repeat;
}
#services_hardscaping {
	background: #fff url(images/icon_services_hardscaping.webp) center 43px no-repeat;
}
#services_brick_stone_veneers {
	background: #fff url(images/icon_services_brick_stone_veneers.webp) center 43px no-repeat;
}
#services_poolscapes {
	background: #fff url(images/icon_services_poolscapes.webp) center 43px no-repeat;
}
#services_landscape_lighting {
	background: #fff url(images/icon_services_landscape_lighting.webp) center 41px no-repeat;
}
#services_outdoor_design {
	background: #fff url(images/icon_services_outdoor_design.webp) center 44px no-repeat;
}
#services_parking_lots {
	background: #fff url(images/icon_services_parking_lots.webp) center 40px no-repeat;
}
#services_paving_repairs {
	background: #fff url(images/icon_services_paving_repairs.webp) center 41px no-repeat;
}
#services_parking_lot_maintenance {
	background: #fff url(images/icon_services_parking_lot_maintenance.webp) center 45px no-repeat;
}
#services_concrete_flatwork {
	background: #fff url(images/icon_services_concrete_flatwork.webp) center 48px no-repeat;
}
#services_curb_sidewalk_pressure_washing {
	background: #fff url(images/icon_services_curb_sidewalk_pressure_washing.webp) center 42px no-repeat;
}
#services_24_7_emergency_services {
	background: #fff url(images/icon_services_24_7_emergency_services.webp) center 42px no-repeat;
}
#services_emergency_asphalt_repair {
	background: #fff url(images/icon_services_emergency_asphalt_repair.webp) center 44px no-repeat;
}
#services_emergency_concrete_repair {
	background: #fff url(images/icon_services_emergency_concrete_repair.webp) center 44px no-repeat;
}
#services_driveways:hover {
	background: #d0992e url(images/icon_hover_services_driveways.webp) center 39px no-repeat;
}
#services_hardscaping:hover {
	background: #d0992e url(images/icon_hover_services_hardscaping.webp) center 43px no-repeat;
}
#services_brick_stone_veneers:hover {
	background: #d0992e url(images/icon_hover_services_brick_stone_veneers.webp) center 43px no-repeat;
}
#services_poolscapes:hover {
	background: #d0992e url(images/icon_hover_services_poolscapes.webp) center 43px no-repeat;
}
#services_landscape_lighting:hover {
	background: #d0992e url(images/icon_hover_services_landscape_lighting.webp) center 41px no-repeat;
}
#services_outdoor_design:hover {
	background: #d0992e url(images/icon_hover_services_outdoor_design.webp) center 44px no-repeat;
}
#services_parking_lots:hover {
	background: #d0992e url(images/icon_hover_services_parking_lots.webp) center 40px no-repeat;
}
#services_paving_repairs:hover {
	background: #d0992e url(images/icon_hover_services_paving_repairs.webp) center 41px no-repeat;
}
#services_parking_lot_maintenance:hover {
	background: #d0992e url(images/icon_hover_services_parking_lot_maintenance.webp) center 45px no-repeat;
}
#services_concrete_flatwork:hover {
	background: #d0992e url(images/icon_hover_services_concrete_flatwork.webp) center 48px no-repeat;
}
#services_curb_sidewalk_pressure_washing:hover {
	background: #d0992e url(images/icon_hover_services_curb_sidewalk_pressure_washing.webp) center 42px no-repeat;
}
#services_24_7_emergency_services:hover {
	background: #d0992e url(images/icon_hover_services_24_7_emergency_services.webp) center 42px no-repeat;
}
#services_emergency_asphalt_repair:hover {
	background: #d0992e url(images/icon_hover_services_emergency_asphalt_repair.webp) center 44px no-repeat;
}
#services_emergency_concrete_repair:hover {
	background: #d0992e url(images/icon_hover_services_emergency_concrete_repair.webp) center 44px no-repeat;
}
@media screen and (max-width: 1840px) {
#box_services {
	padding: 86px 0px 215px 0px;
}
#ul_services li {
	margin: 0px 20px 20px 0px;
}
#ul_services li:nth-child(4n+0),
#ul_services li:last-child {
	margin: 0px 0px 20px 0px;
}
#ul_services li a {
    width: 260px;
    height: 192px;
	padding: 90px 32px 0px 32px;
}
#ul_services li span b {
	font-size: 17px;
	line-height: 17px;
}
#ul_services li strong {
	bottom: 26px;
}
#box_services .a_button {
	font-size: 10px;
    line-height: 10px;
    padding: 11px 20px 11px 20px;
}
#services_driveways,
#services_hardscaping,
#services_brick_stone_veneers,
#services_poolscapes,
#services_landscape_lighting,
#services_outdoor_design,
#services_parking_lots,
#services_paving_repairs,
#services_parking_lot_maintenance,
#services_concrete_flatwork,
#services_curb_sidewalk_pressure_washing,
#services_24_7_emergency_services,
#services_emergency_asphalt_repair,
#services_emergency_concrete_repair,
#services_driveways:hover,
#services_hardscaping:hover,
#services_brick_stone_veneers:hover,
#services_poolscapes:hover,
#services_landscape_lighting:hover,
#services_outdoor_design:hover,
#services_parking_lots:hover,
#services_paving_repairs:hover,
#services_parking_lot_maintenance:hover,
#services_concrete_flatwork:hover,
#services_curb_sidewalk_pressure_washing:hover,
#services_24_7_emergency_services:hover,
#services_emergency_asphalt_repair:hover,
#services_emergency_concrete_repair:hover {
	background-size: 50px auto;
    background-position: center top 24px;
}
}
@media screen and (max-width: 1140px) {
#box_services {
	padding: 40px 0px 40px 0px;
	background: url(images/box_services_bg.webp) center center repeat;
}
.service_section {
    font-size: 14px;
    line-height: 14px;
    margin: 8px 0px;
}
#ul_services li {
	margin: 0px 5px 10px 5px;
}
#ul_services li:nth-child(4n+0),
#ul_services li:last-child {
	margin: 0px 5px 10px 5px;
}
#ul_services li a {
    width: 176px;
    height: 112px;
	padding: 71px 13px 0px 13px;
}
#ul_services li span b {
	font-size: 12px;
	line-height: 12px;
}
#ul_services li strong {
	display: none;
}
#services_driveways,
#services_hardscaping,
#services_brick_stone_veneers,
#services_poolscapes,
#services_landscape_lighting,
#services_outdoor_design,
#services_parking_lots,
#services_paving_repairs,
#services_parking_lot_maintenance,
#services_concrete_flatwork,
#services_curb_sidewalk_pressure_washing,
#services_24_7_emergency_services,
#services_emergency_asphalt_repair,
#services_emergency_concrete_repair,
#services_driveways:hover,
#services_hardscaping:hover,
#services_brick_stone_veneers:hover,
#services_poolscapes:hover,
#services_landscape_lighting:hover,
#services_outdoor_design:hover,
#services_parking_lots:hover,
#services_paving_repairs:hover,
#services_parking_lot_maintenance:hover,
#services_concrete_flatwork:hover,
#services_curb_sidewalk_pressure_washing:hover,
#services_24_7_emergency_services:hover,
#services_emergency_asphalt_repair:hover,
#services_emergency_concrete_repair:hover {
	background-size: 40px auto;
    background-position: center top 19px;
}
}
/* box_portfolio
-----------------------------------------------------------------------------*/
#box_portfolio {
	background: #fff url(images/box_portfolio_bg.webp) center bottom no-repeat;
	position: relative;
	padding: 122px 0px 209px 0px;
}
#box_portfolio ul {
	display: table;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	font-size: 1px;
	line-height: 1px;
	text-align: center;
}
#box_portfolio ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px 36px 36px 0px;
}
#box_portfolio ul li:nth-child(2),
#box_portfolio ul li:nth-child(5) {
	margin: 0px 0px 36px 0px;
}
#box_portfolio ul li a {
	display: block;
	overflow: hidden;
	z-index: 1;
	position: relative;
}
#box_portfolio a div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	background: rgba(208, 153, 46, 0.8) url(images/icon_zoom.webp) center center no-repeat;
	z-index: 2;
	text-align: center;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_portfolio a:hover div {
	opacity: 1;
}
#box_portfolio ul li a img {
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_portfolio a img:hover {
	opacity: 1;
}
@media screen and (max-width: 1840px) {
#box_portfolio {
	padding: 100px 0px 209px 0px;
}
#box_portfolio ul li {
	margin: 0px 20px 20px 0px;
}
#box_portfolio ul li:nth-child(2),
#box_portfolio ul li:nth-child(5) {
	margin: 0px 0px 20px 0px;
}
#box_portfolio ul li a img {
    width: 540px;
    height: auto;
}
#box_portfolio ul li:nth-child(3) img,
#box_portfolio ul li:nth-child(4) img,
#box_portfolio ul li:nth-child(5) img {
    width: 353px;
    height: auto;		
}
}
@media screen and (max-width: 1140px) {
#box_portfolio {
	background: #fff;
	padding: 40px 0px 40px 0px;
}
#box_portfolio ul li,
#box_portfolio ul li:nth-child(2){
	margin: 0px 10px 20px 10px;
}
#box_portfolio ul li a img,
#box_portfolio ul li:nth-child(3) img {
    width: 280px;
    height: 214px;
    object-fit: cover;
}
#box_portfolio ul li:nth-child(1),
#box_portfolio ul li:nth-child(4),
#box_portfolio ul li:nth-child(5) {
    display: none; 
}
}
@media screen and (max-width: 640px) {
#box_portfolio ul li:nth-child(2) {
    display: none; 
}
}
/* box_reviews
-----------------------------------------------------------------------------*/
#box_reviews {
	width: 100%;
	padding: 83px 0px 187px 0px;
	background: url(images/box_reviews_bottom_bg.webp) center bottom no-repeat, url(images/box_reviews_bg.webp) center top no-repeat;
	position: relative;
}
#testimonials {
	width: 100%;
	height: auto;
	margin: 0px auto;
    padding: 49px 0px 49px 0px;
    text-align: center;
	position: relative;
	z-index: 10;    
}
#testimonials ul {
    padding: 0px;
    margin: 0 auto;
	list-style: none;
	font-size: 0px;
	line-height: 0px;
}
#testimonials li {
    height: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
#testimonials li div {
    position: relative;
	width: 884px;
    height: auto;
	display: inline-block;
	vertical-align: top;
	margin-right: 32px;
	text-align: left;
	background: rgba(53, 58, 67, 0.85);
}
#testimonials li div::before {
	content: "";
	position: absolute;
	top: -49px;
	left: 86px;
	width: 144px; 
	height: 69px;
	background: url(images/testimonials_quote.webp) center center no-repeat;
	background-size: contain;
}
#testimonials li div::after {
	content: "";
	position: absolute;
	bottom: -39px;
	left: 40px;
	width: 39px; 
	height: 39px;
	background: url(images/testimonials_review.webp) center center no-repeat;
	background-size: contain;
}
#testimonials li div.last {
	margin-right: 0px;
}
#testimonials li div span {
	display: block;
	padding: 79px 93px 79px 85px;
	font-size: 18px;
	line-height: 35px;
	font-weight: 400;
	color: #fff;
	text-align: left;
}
#testimonials li div span strong {
	display: block;
    margin-top: 14px;
	color: #d0992e;
    font-weight: 700;
}
#box_reviews .a_button {
	margin-top: 51px;
}
@media screen and (max-width: 1840px) {
#testimonials li div {
	width: 534px;
}
#testimonials li div span {
	padding: 50px 46px 50px 36px;
	line-height: 30px;
}
#box_reviews .a_button {
	margin-top: 41px;
}
}
@media screen and (max-width: 1140px) {
#box_reviews {
	padding: 40px 0px 40px 0px;
	background: #292f39;
}
#testimonials {
	width: 100%;
	height: auto;
    padding: 0px;
}
#testimonials li div {
	width: 90%;
    height: auto;
	margin-right: 0px;
	text-align: center;
}
#testimonials li div::before {
	display: none;
}
#testimonials li div.last {
	display: none;
}
#testimonials li div span {
	display: block;
	padding: 38px 10px 33px 10px;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
}
#testimonials li div span strong {
    margin-top: 7px;
}
#testimonials li div::after {
	bottom: -28px;
	left: 40px;
	width: 37px; 
	height: 28px;
	background: url(images/testimonials_review_mob.webp) center center no-repeat;
}
#box_reviews .a_button {
	margin-top: 30px;
}
}
/* box_contact
-----------------------------------------------------------------------------*/
#box_contact {
	width: 100%;
    padding: 122px 0px 231px 0px;  
	background: #fff url(images/box_contact_bottom_bg.webp) center bottom no-repeat;    
}
#box_contact_form label {
	padding-right: 36px;
}
#box_contact_form label.last {
	padding-right: 0px;
}
#box_contact_form textarea {
	height: 154px;
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	color: #4b4b4b;
	padding: 18px 10px 18px 28px;
	background: #f7f7f7;
	border: none;
}
#box_contact_form #name,
#box_contact_form #email,
#box_contact_form #phone,
#box_contact_form #scode {
	height: 57px;
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	font-weight: 400;
	color: #4b4b4b;
	padding: 18px 10px 18px 28px;
	background: #f7f7f7;
	border: none;
	margin: 0px 0px 41px 0px;
}
#box_contact_form input:required {
	background: #f7f7f7 url(images/placeholder_req_bg.webp) 23px 22px no-repeat !important;
}
#box_contact_form input:required:active,
#box_contact_form input:required:focus,
#box_contact_form input:required:valid {
	background: #f7f7f7 !important;
}
#box_contact_form ::-webkit-input-placeholder {
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	color: #4b4b4b!important;
	font-weight: 400;
    text-transform: uppercase;
}
#box_contact_form ::-moz-placeholder {
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	color: #4b4b4b!important;
	font-weight: 400;
    text-transform: uppercase;
}
#box_contact_form :-moz-placeholder {
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	color: #4b4b4b!important;
	font-weight: 400;
    text-transform: uppercase;
}
#box_contact_form :-ms-input-placeholder {
	font-family: "Barlow", sans-serif;
	font-size: 18px;
	line-height: 18px;
	color: #4b4b4b!important;
	font-weight: 400;
    text-transform: uppercase;
}
@media screen and (max-width: 1840px) {
#box_contact {
    padding: 120px 0px 143px 0px;  
}
}
@media screen and (max-width: 1140px) {
#box_contact {
    padding: 30px 0px 30px 0px;
	background: #fff; 
	background-size: cover;
}
#box_contact_form label {
	padding-right: 0px;
}
#box_contact .form label.edit_third {
	width: 100%;
}
#box_contact_form #name,
#box_contact_form #email,
#box_contact_form #phone,
#box_contact_form #scode {
	margin: 0px 0px 12px 0px;
}
}
/* box_map
-----------------------------------------------------------------------------*/
#box_map {
    width: 100%;
    height: 491px;
}
#box_map a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/pic_map.webp) center top no-repeat;
}
@media screen and (max-width: 1140px) {
#box_map {
    display: none;
}
}
/* footer
-----------------------------------------------------------------------------*/
#footer {
	width: 100%;
	padding: 110px 0px 106px 0px;
	position: relative;
	background: #000;
    color: #c9c9c9;
	font-size: 15px;
	line-height: 25px;
    border-top: 3px solid #d0992e;
    box-sizing: border-box;
}
#footer_address {
    float: left;
	width: 761px;
	padding-top: 71px;
}
#footer_logo {
	float: left;
	width: 277px;
	text-align: center;
}
#footer_links {
    float: left;
	width: 761px;
	padding-top: 71px;
	text-align: right;
}
#footer a {
	color: #c9c9c9;
}
@media screen and (max-width: 1840px) {
#footer {
	padding: 71px 0px 91px 0px;
}
#footer_address {
	width: 311px;
	padding-top: 67px;
}
#footer_logo {
	width: 206px;
	padding-left: 136px;
}
#footer_links {
	width: 447px;
	padding-top: 67px;
}
}
@media screen and (max-width: 1140px) { 
#footer {
	padding: 30px 0px 30px 0px;
    font-size: 11px;
	line-height: 15px;
    border-top: none;
}
#footer_address {
    float: none;
	width: auto;
	text-align: center;
	padding-top: 0px;
}
#footer_logo {
    display: none;
}
#footer_links {
    float: none;
	width: auto;
    text-align: center;
	padding-top: 0px;
}
}

/* Contact
-----------------------------------------------------------------------------*/
#contact_address {
	width: 350px;
	float: left;
}
#contact_form {
	width: 1410px;
	float: right;
}
#contact_address a {
	color: #000;
    text-decoration: none;
}
@media screen and (max-width: 1840px) {
#contact_address {
	width: 300px;
}
#contact_form {
	width: 700px;
}
}
@media screen and (max-width: 1140px) {
#contact_address {
	width: 100%;
	float: none;
}
#contact_form {
	width: 100%;
	float: none;
}
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	color: #3d424c;
	font-family: "Montserrat", sans-serif;
	font-size: 60px;
	line-height: 60px;
	font-weight: 400;
	text-align: left;
	padding: 17px 0px 35px 0px;
	margin-bottom: 28px;
    background: url(images/content_title_line.webp) left bottom no-repeat;
    text-transform: uppercase;
}
.content_title h1 {
	width: 1486px;
	color: #3d424c;
	font-family: "Montserrat", sans-serif;
	font-size: 60px;
	line-height: 60px;
	font-weight: 400;
	text-align: left;
}
#box_services .content_title {
	color: #fff;
    margin-bottom: 42px;
}
#box_reviews .content_title {
	color: #fff;
    margin-bottom: 61px;
}
#box_contact .content_title {
    margin-bottom: 40px;
}
@media screen and (max-width: 1840px) {
.content_title {
}
.content_title h1 {
width: 100%;
}
}

@media screen and (max-width: 1140px) {
.content_title {
    font-size: 20px;
	line-height: 20px;
	margin-bottom: 14px;
    background-size: 59px 3px;
    padding: 17px 0px 17px 0px;
}
.content_title h1 {
    font-size: 20px;
	line-height: 20px;
}
#box_reviews .content_title,
#box_services .content_title {
    margin-bottom: 10px;
}
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 55px;
	height: 55px;
	background: #d0992e 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: #3d424c url(images/scroll_top_bg.webp) center no-repeat;
	text-decoration: none;
}


.google_five_stars {
	display: inline-block;
	width: 88px;
	height: 15px;
    background: url("images/5stars.webp") left center no-repeat;
}