* {
	margin: 0;
	padding: 0;
}

html {
  font-size: 18px;
}

@media screen and (max-width: 1840px) {
html {
	font-size: 17px;
}
}

@media screen and (max-width: 1140px) {
html {
	font-size: 16px;
}
}

@media screen and (max-width: 840px) {
html {
	font-size: 15px;
}
}

body {
	font-family: "Sen", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.67;
	color: #202b23;
	width: 100%;
	min-width: 1800px;
	background: #202b23 url(images/body_bg.webp) center repeat-y;
	position: relative;
}

@media screen and (max-width: 1840px) {
body {
	width: 100%;
	min-width: auto;
	max-width: auto;
}
}


/* text styles
-----------------------------------------------------------------------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-weight: 700;
	line-height: 1.2;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}
h1, .h1 {
	font-size: 2.333rem;
	color: #b34325;
}
h2, .h2 {
	font-size: 2.222rem;
	color: #9a3c22;
}
h3, .h3 {
	font-size: 2.111rem;
	color: #70301e;
}
h4, .h4 {
	font-size: 2rem;
	color: #265432;
}
h5, .h5 {
	font-size: 1.89rem;
	color: #26422e;
}
h6, .h6 {
	font-size: 1.78rem;
	color: #202b23;
}

@media screen and (max-width: 1140px) {
h1, .h1 {
	font-size: 1.7rem;
}
h2, .h2 {
	font-size: 1.6rem;
}
h3, .h3 {
	font-size: 1.5rem;
}
h4, .h4 {
	font-size: 1.4rem;
}
h5, .h5 {
	font-size: 1.3rem;
}
h6, .h6 {
	font-size: 1.2rem;
}
}

a {
	color: #b34325;
	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: 15px 0px 20px 20px;
	padding: 0px 0px 0px 0px;
}
p {
	margin: 0px 0px 20px 0px;
}
img {
	border: none;
	vertical-align: middle;
}

/* forms styles
-----------------------------------------------------------------------------*/
input, textarea, select {
	color: #000;
	font-size: 1rem;
	line-height: 1;
    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 {
	width: auto;
	color: #fff;
	background: #b34325;
	font-size: 0.78rem;
	line-height: 1.07;
	text-transform: uppercase;
    letter-spacing: 3px;
	border: 0px;
	min-width: 229px;
	min-height: 62px;
	box-sizing: border-box;
	padding: 30px 85px 31px 85px;
	cursor: pointer;
	border-radius: 35px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.form input.submit:hover, input.button:hover {
	background: #242c26;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 1.1rem;
	font-weight: 700;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0;
	color: #000;
	font-size: 1.1rem;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}

.form input[type=text], .form input[type=password], .form input[type=file], .form input[type=email], .form input[type=number], .form input[type=date], .form select, .form textarea {
	width: 100%;
	color: #000;
	font-size: 1rem;
	line-height: 1;
    font-weight: 600;
	padding: 20px 30px 20px 30px;
	margin: 0px 0px 10px 0px;
	background: #fff url(images/input_bg.webp) top repeat-x;
	border: 1px solid #bfbfbf;
}
.form select {
	padding: 19px 30px 19px 30px;
}
.form textarea {
	height: 150px;
}

.required {
	color: #f00;
}

@media screen and (max-width: 1840px) {
.form input[type=text], .form input[type=password], .form input[type=file], .form input[type=email], .form input[type=number], .form input[type=date], .form select, .form textarea {
	padding: 15px 25px 15px 25px;
}
.form select {
	padding: 14px 25px 14px 25px;
}
}

@media screen and (max-width: 1140px) {
.form input[type=text], .form input[type=password], .form input[type=file], .form input[type=email], .form input[type=number], .form input[type=date], .form select, .form textarea {
	padding: 10px 15px 10px 15px;
}
.form select {
	padding: 9px 15px 9px 15px;
}
}

@media screen and (max-width: 350px) {
.form input.submit, input.button {
	width: 200px;
}
}

.captcha {
	text-align: center;
}
.g-recaptcha {
	display: inline-block;
	vertical-align: top;
	transform: scale(1);
	padding-right: 10px;
}

@media screen and (max-width: 1140px) {
.g-recaptcha {
	padding-right: 10px;
}
}

@media screen and (max-width: 670px) {
.captcha {
	text-align: center;
}
.g-recaptcha {
	padding-right: 0px;
	padding-bottom: 5px;
}
}

@media screen and (max-width: 350px) {
.captcha {
	text-align: center !important;
}
.g-recaptcha {
	display: block;
	width: 270px !important;
	overflow: hidden !important;
	border-radius: 4px;
	margin: 0 auto;
}
.form input.submit, input.button {
	min-width: 270px;
}
}


/* placeholder
-----------------------------------------------------------------------------*/
::-webkit-input-placeholder {
	color: #717171 !important;
	font-weight: bold;
	text-transform: uppercase;
	text-overflow: ellipsis;
}
::-moz-placeholder {
	color: #717171 !important;
	font-weight: bold;
	text-transform: uppercase;
	text-overflow: ellipsis;
}
:-moz-placeholder {
	color: #717171 !important;
	font-weight: bold;
	text-transform: uppercase;
	text-overflow: ellipsis;
}
:-ms-input-placeholder {
	color: #717171 !important;
	font-weight: bold;
	text-transform: uppercase;
	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;
    border-radius: 23px;
}
.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 {
	max-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;
    box-sizing: border-box;
    border: 2px solid transparent;
	color: #fff;
	font-size: 0.78rem;
	line-height: 1.07;
	text-decoration: none;
	text-transform: uppercase;
	outline: none;
	background-color: #b34325;
	text-align: center;
    border-radius: 25px;
	padding: 16px 42px 16px 42px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button:hover {
	text-decoration: none;
	background-color: #2da831;
    transform: scale(1.1);
}

.a_button1 {
	background-color: transparent;
    border: 2px solid #b34325;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.a_button1:hover {
	background-color: #2da831;
    border: 2px solid transparent;
    transform: scale(1.1);
}

.res_list div {
	display: inline-block;
	padding-bottom: 10px;
	vertical-align: top;
}


/* ul_no_dots
-----------------------------------------------------------------------------*/
.ul_no_dots, .ul_no_dots > li {
	list-style: none;
	list-style-image: none;
	padding: 0px;
	margin: 0px;
}

/* ul_no_dots
-----------------------------------------------------------------------------*/
.ul_no_dots, .ul_no_dots > li {
	list-style: none;
	list-style-image: none;
	padding: 0px;
	margin: 0px;
}


/* columns
-----------------------------------------------------------------------------*/
.columns {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.columns_inline {
	display: inline-flex;
}
.columns.align_center {
	justify-content: center
}

.columns li {
	min-width: 240px;
}
.columns[data-columns-count="2"] li {
	flex-basis: calc(50% - 20px);
}
.columns[data-columns-count="3"] li {
	flex-basis: calc(33.333% - 20px);
}
.columns[data-columns-count="4"] li {
	flex-basis: calc(25% - 20px);
}
.columns[data-columns-count="5"] li {
	flex-basis: calc(20% - 20px);
}
.columns[data-columns-count="6"] li {
	flex-basis: calc(16.666% - 20px);
}

/* 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: #b34325;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #202a23;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #202a23;
	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: 0.9rem;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	outline: none;
	background: #b34325;
	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: #202a23;
}

@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-style: normal;
	font-size: 1.2rem;
	padding: 0px;
	margin: 0px 0px 5px 0px;
}
.portfolio_sections_list select {
	width: 100%;
	font-optical-sizing: auto;
	padding: 10px;
	margin: 0px 0px 10px 0px;
    font-size: 600;
	color: #666;
	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-weight: 700;
	font-style: normal;
	font-size: 2.4rem;
	color: #3c2f26;
	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: 0.8rem;
	line-height: 1.1;
	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: 0.7rem;
	line-height: 1.2;
}

@media screen and (max-width: 1840px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
}
}

@media screen and (max-width: 1300px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
	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: 800px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
	grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 700px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
}
}

@media screen and (max-width: 500px) {
.portfolio_thumbnails ul {
	gap: 5px 10px;
	grid-template-columns: 1fr;
}
}


/* 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: 1.5rem;
	font-weight: 700;
	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;
}


@media screen and (max-width: 1840px) {
.portfolio_index ul {
	gap: 5px 10px;
}
}

@media screen and (max-width: 1300px) {
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 1140px) {
.portfolio_index_caption {
	font-size: 1.3rem;
}
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 800px) {
.portfolio_index_caption {
	font-size: 1.2rem;
}
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 700px) {
.portfolio_index ul {
	gap: 5px 10px;
}
}

@media screen and (max-width: 500px) {
.portfolio_index ul {
	gap: 5px 10px;
	grid-template-columns: 1fr;
}
}

/* 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: 0.8rem;
	line-height: 1;
	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: 0.7rem;
	line-height: 1.2;
	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-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.2;
	color: #202b23;
	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: 0.78rem;
	line-height: 1;
}
.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: #b34325;
}
.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-weight: 700;
	font-style: normal;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
    font-weight: 700;
	font-style: normal;
	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: auto;
	margin: 0px 30px 0px 30px;
}
}


@media screen and (max-width: 1140px) {
.page_wrapper {
	margin: 0px 20px 0px 20px;
}
}


#main_wrapper {
	overflow: hidden;
}

.body_offset {
	padding-top: 123px;
}

.body_wrapper {
	max-width: 2560px !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: 2560px !important;
	float: none !important;
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
}
#header_top {
	width: 100%;
	position: relative;
	color: #b1b2aa;
	font-weight: 400;
	font-size: 0.72rem;
	line-height: 1.31;
	background: #222321;
}
#header_top a {
	color: #b1b2aa;
}
#header_top a:hover {
	text-decoration: none;
}
#header_top_content {
	height: 60px;
	display: flex;
	gap: 0px;
	justify-content: center;
	align-items: center; 
}
#header_top_content > div {
	flex: 1 1 0;
    text-align: center;
}
#header_top_content > div:first-child {
	text-align: left;
}
#header_top_content > div:last-child {
	text-align: right;
}
#header_top_content > div > span {
	display: inline-block;
}
#header_top_hours span {
    padding-left: 24px;
	background: url(images/icon-hours.webp) left center no-repeat;
}
#header_top_location span {
    padding-left: 19px;
	background: url(images/icon-location.webp) left center no-repeat;
}
#header_top_email span {
    padding-left: 24px;
	background: url(images/icon-email.webp) left center no-repeat;
}
#header_top_social {
	width: auto;
	padding-top: 0px;
	white-space: nowrap;
}
#header_top_social ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#header_top_social ul li {
	display: inline-block;
	margin: 0px;
	padding: 0px 0px 0px 7px;
	vertical-align: middle;
}
#header_top_phone {
    padding-left: 21px;
    padding-right: 23px;
	background: url(images/icon-phone.webp) left center no-repeat;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}
#header_top_social a img {
	margin: 0px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	opacity: 1;
}
#header_top_social a:hover img {
	opacity: 0.7;
}
@media screen and (max-width: 700px) {
#header_top_slogan {
    display: none;
}
}
@media screen and (max-width: 620px) {
#header_top_hours {
    display: none;
}
}
@media screen and (max-width: 540px) {
#header_top_location {
    display: none;
}
}
@media screen and (max-width: 420px) {
#header_top_email {
    display: none;
}
}
#header {
	width: 100%;
    height: 165px;
	background: #202a23 url(images/header_bg.webp) center center no-repeat;
    z-index: 12;
    position: relative;
}
#header.box_fixed {
    height: 81px;
}

#btn_free_estimate {
    width: auto;
    position: absolute;
    top: 57px;
    right: 0px;
}
#header.box_fixed #btn_free_estimate {
    top: 15px;
}
#header_logo {
    padding-top: 58px;
}
#header.box_fixed #header_logo {
    padding-top: 17px;
}

#menutop {
    width: auto;
	position: absolute;
	right: 373px;
	top: 61px;
	z-index: 11;
}
#header.box_fixed #menutop {
	top: 19px;
}
#menutop ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	flex: 0;
    flex-shrink: 1;
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
	color: #edede4;
	font-size: 0.78rem;
	line-height: 1.07;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	padding: 15px 28px 15px 28px;
	min-height: 45px;
	box-sizing: border-box;
	margin: 0px;
    white-space: nowrap;
	transition: all 150ms ease-in;
	-webkit-transition: all 150ms ease-in;
}
#menutop ul li:hover a, 
#menutop li.selected a {
	color: #beb287;
	text-decoration: none;
}
@media screen and (max-width: 1600px) {
#menutop {
	right: 220px;
}
}
@media screen and (max-width: 1440px) {
#menutop {
	right: 0px;
}
#btn_free_estimate {
    display: none;
}
#menutop ul li:first-child a {
	padding: 15px 28px 15px 0px;
}
#menutop ul li:last-child a {
	padding: 15px 0px 15px 28px;
}
}
@media screen and (max-width: 1220px) {
#menutop ul li a {
	padding: 15px 18px 15px 18px;
}
}
@media screen and (max-width: 1140px) {
.body_offset {
	padding-top: 0px;
}
.box_fixed {
	position: relative!important;
	top: auto;
	left: auto;
	right: auto;
	max-width: 100% !important;
}
#header.box_fixed {
    height: 165px;
}
#menutop {
	display: none;
}
#btn_free_estimate {
    display: inline-block;
}
}
@media screen and (max-width: 640px) {
#btn_free_estimate {
    display: none;
}
#header_logo {
    text-align: center;
}
#header_logo img {
    max-width: 100%;
    height: auto;
}

#header.box_fixed #header_logo {
    padding-top: 58px;
}
}
/* .menu_icons
-----------------------------------------------------------------------------*/
.menu_icons {
	width: 100%;
	background: linear-gradient(to bottom, #222321 0px, #262823 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: left;
	display: inline-block;
	vertical-align: middle;
}
.menu_icons ul li:last-child {
	float: right;
}
.menu_icons a {
	display: block;
	text-align: center;
	color: #bebeb6;
	font-size: 0.875rem;
	line-height: 2.6;
	font-weight: 700;
	height: 34px;
	padding: 3px 20px 0px 20px;
	text-transform: uppercase;
}
#menu_icons_home {
    color: #988f6e;
}
.menu_icons a:hover {
	text-decoration: none;
}
.menu_icons a img {
	vertical-align: middle;
	margin: -4px 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, #a74125 0px, #b34325 100%);
}
#menumobile a {
	display: block;
	text-align: center;
	color: #dfdfd7;
	font-size: 0.75rem;
	line-height: 1.1;
	font-weight: 600;
	padding: 11px 0px 9px 0px;
	text-transform: uppercase;
}
#menumobile a:hover {
	text-decoration: none;
}

#menumobile li.selected > a {
	color: #2da831;
}

#menumobile li.closed > ul {
	display: none;
}

#menumobile li.open > ul {
	display: block;
	/* border on open dropdown menu */
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
}


/* 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_area {
	width: 100%;
	height: 1175px;
	position: relative;
}
.inside #slideshow_area {
	height: 815px;
}
#slideshow {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
#slideshow ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#slideshow li {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	list-style: none;
	list-style-image: none;
}
@media screen and (min-width: 1100px) {
#slide_1 {
	background-image: url(images/slides_01.webp);
}
#slide_2 {
	background-image: url(images/slides_02.webp);
}
#slide_3 {
	background-image: url(images/slides_03.webp);
}
}
#slideshow_slogan {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 315px;
	z-index: 235;
}
.inside #slideshow_slogan {
	top: 185px;
}
#slideshow_slogan span {
    display: block;
	font-weight: 600;
	font-style: normal;
	font-size: 1.67rem;
	line-height: 1;
	color: #edede4;
    text-transform: uppercase;
}
#slideshow_slogan .page_wrapper div {
    display: block;
    padding-top: 33px;
    width: 72%;
	font-weight: 700;
	font-style: normal;
	font-size: 5.56rem;
	line-height: 1.2;
	color: #edede4;
}
#slideshow_slogan p {
    display: block;
    width: 42%;
    padding: 21px 0px 50px 0px;
	font-style: normal;
	font-size: 1.11rem;
	line-height: 1.5;
	color: #edede4;
}
.inside #slideshow_slogan p {
    display: none;
}
#slideshow_slogan .a_button {
    margin-right: 19px;
}
#slides_arrow_prev,
#slides_arrow_next {
	width: 29px;
	height: 172px;
	position: absolute;
	top: 50%;
    margin-top: -86px;
	z-index: 237;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#slides_arrow_prev {
	left: 195px;
	background: url(images/slides_arrow_prev.webp) center center no-repeat;
}
#slides_arrow_next {
	right: 195px;
	background: url(images/slides_arrow_next.webp) center center no-repeat;	
}
@media screen and (max-width: 2180px) {
#slides_arrow_prev {
	left: 20px;
}
#slides_arrow_next {
	right: 20px;
}
}    
@media screen and (max-width: 1950px) {
#slides_arrow_prev {
	left: 0px;
}
#slides_arrow_next {
	right: 0px;
}
}
@media screen and (max-width: 1300px) {
#slides_arrow_next {
	display: none;
}
#slides_arrow_prev {
	display: none;
}
}
#slideshow_pager_wrap {
	position: absolute;
	bottom: 275px;
	z-index: 237;
	width: 100%;
	left: 0px;
	right: 0px;
	margin: 0px;
}
.inside #slideshow_pager_wrap {
	bottom: 179px;
}
#slideshow_pager span { 
	width: 14px;
	height: 10px; 
    display: inline-block;
	cursor: pointer;
    font-family: arial;
	font-size: 0px;
	background: url(images/slide_icon.webp) left top no-repeat;
}
#slideshow_pager span.cycle-pager-active {
	background: url(images/slide_icon_on.webp) left top no-repeat;
}
#slideshow_pager > * {
	cursor: pointer;
}
@media screen and (max-width: 1840px) {
#slideshow_area {
	height: 896px;
}
#slideshow_slogan {
	top: 173px;
}
#slideshow_slogan .page_wrapper div {
    width: 100%;
	font-size: 5rem;    
}
#slideshow_slogan p {
    width: 69%;
}
#slideshow_pager_wrap {
	bottom: 138px;
}
}
@media screen and (max-width: 1140px) {
#slideshow_area {
	height: 205px;
	background: #646763 url(images/mobile_slideshow_bg.webp) center center no-repeat;
}
.inside #slideshow_area {
	height: 155px;
}
#slideshow_slogan,
.inside #slideshow_slogan {
    height: 100%;
	left: 0px;
	top: 0px;
    display: table;
    text-align: center;
}
#slideshow_slogan .page_wrapper {
    width: 240px;
    display: table-cell;
    vertical-align: middle;
}
#slideshow_slogan .page_wrapper div {
    width: 100%;
	font-size: 2rem;
	line-height: 1.125;
    padding: 0px;
}
#slideshow_slogan span,
#slideshow_slogan p,
#slideshow_slogan .a_button,
#slideshow_pager_wrap {
    display: none;
}

}
#middle {
    width: 100%;
	padding: 117px 0px 139px 0px;
	background: #fff;
}
.inside #middle {
    min-height: 600px;
}
.middle_home {
    width: 100%;
}
.middle_home #content {
    width: 918px;
    float: left;    
}
.middle_home #welcome_photo1 {
    width: 764px;
    margin-right: 118px;
    float: left;
    position: relative;
}
#btn_16_years_exp {
    position: absolute;
    bottom: 50px;
    right: -54px;
    width: 182px;
    height: 182px;
    border-radius: 50%;
    background: #c7b98d;
    text-align: center;
    vertical-align: middle;
	transition: all 150ms ease-in;
	-webkit-transition: all 150ms ease-in;
}
#btn_16_years_exp:hover {
    text-decoration: none;
    transform: scale(1.1);
}
#btn_16_years_exp div {
    font-size: 4.44rem;
    line-height: 0.925;
    padding-top: 31px;
}
#btn_16_years_exp div {
    font-size: 4.44rem;
    line-height: 0.925;
    color: #fff;
    padding-top: 31px;
}
#btn_16_years_exp span {
    display: block;
    font-size: 0.89rem;
    line-height: 1;
    color: #b34325;
    text-transform: uppercase;
}
.middle_home #welcome_photo2 {
    padding-top: 78px;
    padding-right: 54px;
    float: left;
}
.middle_home #welcome_photo3 {
    padding-top: 78px;
    float: left;
}
@media screen and (max-width: 1840px) {
#middle {
	padding: 100px 0px 100px 0px;
}
.middle_home {
	display: flex;
	justify-content: center;
    align-content: center;
	flex-wrap: wrap;
    gap: 54px;
}
.middle_home #content {
    width: 100%;
    float: none;
    order: 1;
    flex-grow: 1;
    align-items: center;
}
.middle_home #welcome_photo1 {
    order: 2;
    flex: 1;
    margin-right: 0px;
    float: none;
    height: 337px;
    flex-grow: 1;
}
#btn_16_years_exp {
    zoom: 0.5;
    bottom: 20px;
    right: 150px;
}
.middle_home #welcome_photo1 img {
    /*display: block;
    box-sizing: border-box;*/
    height: 337px;
    /*padding-left: 764px;  Pushes original image out of view */
    
    /* Set the new image 
    background-image: url('images/pic-welcome-1-small.webp');
    background-size: cover;*/
}    
.middle_home #welcome_photo2 {
    padding-top: 0px;
    padding-right: 0px;
    float: none;
    height: 337px;
    flex: 1;
    order: 3;
    flex-grow: 1;
}
.middle_home #welcome_photo2 img  {
    height: 337px;
}
.middle_home #welcome_photo3 {
    padding-top: 0px;
    float: none;
    height: 337px;
    flex: 1;
    order: 4;
    flex-grow: 1;
}
.middle_home #welcome_photo3 img {
    height: 337px;
}
}
@media screen and (max-width: 1140px) {
#middle {
	padding: 30px 0px;
}    
.middle_home #welcome_photo1,
.middle_home #welcome_photo2,
.middle_home #welcome_photo3 {
    display: none;
}
}
#box_benefits {
    width: 100%;
    padding-top: 80px;
}
#box_benefits ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
	display: flex;
	justify-content: center;
	align-items: stretch; 
	flex-wrap: wrap;
	gap: 35px 35px;
	position: relative;
	z-index: 10;
    text-align: center;
}
#box_benefits ul li {
  	flex-basis: calc(25% - 35px);
	box-sizing: border-box;
	align-items: center;
}
#box_benefits ul li span {
  	display: block;
    padding: 138px 0px 30px 0px;
    font-size: 1.78rem;
    line-height: 1.125;
    font-weight: 700;
}
#box_benefits ul li:nth-child(1) {
	background: url(images/icon-sustainable-forestry.webp) center 16px no-repeat;
}
#box_benefits ul li:nth-child(2) {
	background: url(images/icon-quality-control.webp) center top no-repeat;
}
#box_benefits ul li:nth-child(3) {
	background: url(images/icon-expert-team.webp) center 4px no-repeat;
}
#box_benefits ul li:nth-child(4) {
	background: url(images/icon-custom-processing.webp) center 14px no-repeat;
}
@media screen and (max-width: 920px) {
#box_benefits {
    padding-top: 20px;
}
#box_benefits ul {
	gap: 10px 10px;
}
#box_benefits ul li {
  	flex-basis: calc(50% - 10px);
}
}
@media screen and (max-width: 390px) {
#box_benefits ul {
	gap: 10px;
}
#box_benefits ul li {
  	flex-basis: 100%;
}
}
#box_services {
    width: 100%;
	padding: 117px 0px 82px 0px;
	background: #2a3f33 url(images/box_services_bg.webp) center top repeat;
}
#box_services ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin: 0px auto;
    padding: 0;
    list-style: none;
}
#box_services ul li {
    flex: 0 0 calc(25% - 36px);
}
#box_services ul li a {
    position: relative;
	display: block;
    width: 100%;
	height: 100%;
}
#box_services ul li a div {
    position: absolute;
    width: 60%;
    left: 50px;
    bottom: 50px;
}
#box_services ul li a div span {
    display: block;
	font-size: 2.67rem;
	line-height: 1;
	color: #fff;
	font-weight: 700;
	font-style: normal;
    padding-bottom: 18px;
}
#box_services ul li a div strong {
    font-weight: 400;
}
#box_services ul li a:hover strong {
    background: #2da831;
}
#box_services ul li a img {
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 1840px) {
#box_services {
	padding: 100px 0px 100px 0px;
}
#box_services ul {
    gap: 25px;
}
#box_services ul li {
    flex: 0 0 calc(33.3333333% - 25px);
}
#box_services ul li a div span {
	font-size: 2rem;
}
}
@media screen and (max-width: 1140px) {
#box_services {
	padding: 30px 0px;
	background: #2a3f33;
}
}
@media screen and (max-width: 900px) {
#box_services ul {
    gap: 15px;
}
#box_services ul li {
    flex: 0 0 calc(33.3333333% - 15px);
}
#box_services ul li a div {
    position: absolute;
    width: 90%;
    left: 10px;
    bottom: 10px;
}    
#box_services ul li a div span {
	font-size: 1.5rem;
}
}
@media screen and (max-width: 700px) {
#box_services ul li {
    flex: 0 0 calc(50% - 15px);
}
#box_services ul li a div span {
    width: 70%;    
	font-size: 1.2rem;
}
}
@media screen and (max-width: 480px) {
#box_services ul li {
    flex: 0 0 calc(100% - 5px);
}
#box_services ul li a div span {
	font-size: 2rem;
}
}
#box_testimonials {
    width: 100%;
	padding: 117px 0px 117px 0px;
	background: #fff;
}
#box_testimonials ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin: 0px auto;
    padding: 0;
    list-style: none;
}
#box_testimonials ul li {
    flex: 0 0 calc(33.33333333333333% - 36px);
}
#box_testimonials ul li a {
    position: relative;
    box-sizing: border-box;
    padding: 142px 40px 130px 40px;
    text-align: center;
	display: block;
    width: 100%;
	height: 100%;
    color: #202b23;
    background: url(images/5stars.webp) center bottom 71px no-repeat, #fff url(images/quote.webp) center top 73px no-repeat;
    border-radius: 22px;
	transition: all 150ms ease-in;
	-webkit-transition: all 150ms ease-in;
}
#box_testimonials ul li a:hover {
    text-decoration: none;
    background: url(images/5stars.webp) center bottom 71px no-repeat, #eeeee5 url(images/quote.webp) center top 73px no-repeat;
}
#box_testimonials ul li a strong {
    font-weight: 400;
    text-transform: uppercase;
}
#box_testimonials .a_button {
    margin-top: 60px;
}
@media screen and (max-width: 1840px) {
#box_testimonials {
	padding: 100px 0px 100px 0px;
}
#box_testimonials ul li {
    flex: 0 0 calc(50% - 36px);
}
#box_testimonials ul li:first-child {
    display: none;
}
}
@media screen and (max-width: 700px) {
#box_testimonials {
	padding: 30px 0px;
}
#box_testimonials ul {
    gap: 0px;
}
#box_testimonials ul li {
    flex: 0 0 100%;
}
#box_testimonials ul li:nth-child(2) {
    display: none;
}
#box_testimonials .a_button {
    margin-top: 20px;
}
}
#box_contact {
    width: 100%;
	padding: 184px 0px 184px 0px;
	background: #fff url(images/box_contact_bg.webp) center center no-repeat;
    background-size: cover;
}
#box_contact1 {
    width: 57.556%;
    margin: 0px auto;
    background: #eeeee5;
    padding: 77px 126px 74px 126px;
    box-sizing: border-box;
    position: relative;
    border-radius: 22px;
}
#box_contact_form textarea {
	height: 157px;
	font-family: "Sen", sans-serif;
	font-size: 1rem;
	line-height: 1;
	color: #202b23;
	padding: 16px 10px 17px 26px;
	background: #fff;
	border: none;
    border-radius: 4px;
}
#box_contact_form #name,
#box_contact_form #phone,
#box_contact_form #email,
#box_contact_form #scode {
	height: 51px;
	font-size: 1rem;
	line-height: 1;
	color: #202b23;
    text-transform: none;
	padding: 16px 10px 17px 26px;
	background: #fff;
	border: none;
    border-radius: 4px;
	margin: 0px 0px 15px 0px;
}
#box_contact_form input:required {
	background: #fff url(images/placeholder_req_bg.webp) 18px 18px 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: 1rem;
	line-height: 1;
	color: #202b23!important;
	font-weight: 400;
    text-transform: none;
}
#box_contact_form ::-moz-placeholder {
	font-size: 1rem;
	line-height: 1;
	color: #202b23!important;
	font-weight: 400;
    text-transform: none;
}
#box_contact_form :-moz-placeholder {
	font-size: 1rem;
	line-height: 1;
	color: #202b23!important;
	font-weight: 400;
    text-transform: none;
}
#box_contact_form :-ms-input-placeholder {
	font-size: 1rem;
	line-height: 1;
	color: #202b23!important;
	font-weight: 400;
    text-transform: none;
}
@media screen and (max-width: 1840px) {
#box_contact1 {
    width: 85%;
}
}
@media screen and (max-width: 1140px) {
#box_contact {
    width: 100%;
	padding: 30px 0px;
	background: #eeeee5;
    background-size: auto;
}
#box_contact1 {
    width: 100%;
    background: none;
    padding: 0px;
    border-radius: 0px;
}
}
#footer {
    width: 100%;
	padding: 135px 0px 133px 0px;
	background: #202b23 url(images/footer_bg.webp) center top repeat;
    position: relative;
    color: #eeeee5;
}
#footer a {
    color: #eeeee5;
}
#footer_logo {
    position: absolute;
    top: 5px;
    left: 0px
}
#footer_data {
    width: 67.5%;
    float: right;
    display: flex;
    flex-wrap: nowrap;
    gap: 48px;
}
#footer_data > * {
    flex: 0 0 calc(33.33333333333333% - 48px);
}
#footer_address {
    color: #b1b2aa;
    line-height: 2.44;
}
#footer_address a {
    color: #b1b2aa;
}
#footer_address a:hover {
    text-decoration: none;
}
#footer_address span {
    display: inline-block;
}
#footer_phone span {
    padding-left: 26px;
	background: url(images/icon-phone.webp) left center no-repeat;
}
#footer_phone span a {
    font-size: 1.33rem;
    color: #edede4;
    font-weight: 700;
}
#footer_hours span {
    padding-left: 26px;
	background: url(images/icon-hours.webp) left center no-repeat;
}
#footer_location span {
    padding-left: 26px;
	background: url(images/icon-location.webp) left center no-repeat;
}
#footer_email span {
    padding-left: 26px;
	background: url(images/icon-email.webp) left center no-repeat;
}
#footer_social ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#footer_social ul li {
	display: inline-block;
	margin: 0px;
	padding: 0px 7px 0px 0px;
	vertical-align: middle;
}
#footer_links {
    white-space: nowrap;
}
@media screen and (max-width: 1840px) {
#footer {
	padding: 222px 0px 100px 0px;
}
#footer_logo {
    top: -122px;
}
#footer_data {
    width: 100%;
    float: none;
    gap: 48px;
}
}
@media screen and (max-width: 930px) {
#footer {
	padding: 30px 0px;
	background: #202b23;
}
#footer_data {
    display: block;
    gap: 0px;
}

#footer_logo,
#footer_address,
#footer_social {
    display: none;
}
#footer_links {
    width: 100%;
    text-align: center;
}
}
/* Contact
-----------------------------------------------------------------------------*/
#contact_address {
	width: 30%;
	float: left;
}
#contact_form {
	width: 65%;
	float: right;
}

@media screen and (max-width: 1840px) {
}

@media screen and (max-width: 700px) {
#contact_address {
	width: 100%;
	float: none;
	padding-bottom: 20px;
}
#contact_form {
	width: 100%;
	float: none;
}
}

@media screen and (max-width: 450px) {
#contact_form label.edit {
	width: 100%;
}
#contact_form label.edit_half {
	width: 50%;
}
}


/* styles
-----------------------------------------------------------------------------*/
#scroll_top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 68px;
	height: 68px;
	background: #b34325 url(images/scroll_top_bg.webp) center no-repeat;
	border-radius: 50%;
	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-color: #2da831;
	text-decoration: none;
    transform: scale(1.1);
}

@media screen and (max-width: 1840px) {
#scroll_top {
	width: 70px;
	height: 70px;
}
}

@media screen and (max-width: 1140px) {
#scroll_top {
	width: 40px;
	height: 40px;
	background-size: 15px auto;
}
}


@media screen and (max-width: 1140px) {
.res_youtube_video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.res_youtube_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
}

.content_title {
	font-size: 4.444rem;
	color: #202b23;
	font-weight: 800;
	font-style: normal;
	line-height: 1;
	padding: 0px 0px 32px 0px;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	font-size: 4.444rem;
	color: #202b23;
	font-weight: 800;
	font-style: normal;
	line-height: 1;
}
.content_title span {
	display: block;
	font-size: 1rem;
	line-height: 1;
	color: #b34325;
	font-weight: 400;
	font-style: normal;
    text-transform: uppercase;
	margin-bottom: 20px;
}
#box_services .content_title {
    text-align: center;
	color: #fff;
}
#box_testimonials .content_title,
#box_contact .content_title {
    text-align: center;
}
#footer .content_title {
	font-size: 2rem;
	color: #eeeee5;
}
@media screen and (max-width: 1140px) {
.content_title {
	font-size: 1.875rem;
	padding: 0px 0px 20px 0px;
}
.content_title h1 {
	font-size: 1.875rem;
}
}
.reviews_5_stars {
    display: inline-block;
    width: 120px;
    height: 17px;
    background: url(images/5stars.webp) left center repeat-x;
    margin-right: 15px;
}
