/*
.barlow-regular {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.barlow-bold {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.gilda-display-regular {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
}
*/

* {
	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: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.66;
	color: #202b23;
	width: 100%;
	min-width: 1800px;
	background: #222321 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: 2rem;
	color: #069458;
}
h2, .h2 {
	font-size: 1.94rem;
	color: #03814b;
}
h3, .h3 {
	font-size: 1.88rem;
	color: #006037;
}
h4, .h4 {
	font-size: 1.83rem;
	color: #314c38;
}
h5, .h5 {
	font-size: 1.77rem;
	color: #2e4033;
}
h6, .h6 {
	font-size: 1.72rem;
	color: #202b23;
}


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: #edede4;
	background: #b34325;
	font-size: 0.88rem;
	line-height: 1;
	border-radius: 32px;
	box-sizing: border-box;
	padding: 26px 41px 26px 41px;
	cursor: pointer;
    font-weight: 600;
    letter-spacing: 2px;
	border: 3px solid transparent;
    text-transform: uppercase;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
.form input.submit:hover, input.button:hover {
	text-decoration: none;
	background: none;
    border: 3px solid #b34325;
    color: #b34325;
}
.form fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
.form fieldset legend {
	color: #000;
	font-size: 1.1rem;
	font-weight: bold;
	padding: 0px;
}

.form label {
	float: left;
	padding: 0px 36px 0px 0px;
	margin: 0px 0px 0px 0px;
	color: #202b23;
	font-size: 1rem;
    font-weight: 600;
}
.form label.edit {
	width: 50%;
}
.form label.edit_full {
	width: 100%;
}
.form label.edit_half {
	width: 25%;
}
.form label.edit_third {
	width: 33.33%;
}

.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-family: "Montserrat", sans-serif;
	font-size: 1rem;
	line-height: 1;
	padding: 20px 30px 20px 30px;
	margin: 0px 0px 20px 0px;
	background: #fff url(images/input_bg.webp) top repeat-x;
	border: 1px solid #bfbfbf;
    border-radius: 6px;
}
.form select {
	padding: 19px 30px 19px 30px;
}
.form textarea {
	height: 150px;
}
.form h3 {
    color: #202b23;
    font-size: 2rem;
    line-height: 2.22;
    margin-top: 20px;
}
.required {
	color: #b34325;
}

@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;
}
.form h3 {
    font-size: 1.87rem;
    line-height: 1;
}
}

@media screen and (max-width: 540px) {
.form label {
	float: none !important;
	width: 100% !important;
}
}

@media screen and (max-width: 350px) {
.form input.submit, input.button {
	width: 200px;
}
}

/* scode_block
-----------------------------------------------------------------------------*/
#scode_block {
	width: 100%;
    text-align: left;
}
#testimonials_form #scode_block {
    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 20px 0px 0px;
	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: 38px 0px 0px 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#testimonials_form #scode_block ul,
#estimate #scode_block ul {
    margin: 38px auto 0px auto;
}
#scode_block ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px 20px 0px 0px;
}
@media screen and (max-width: 1840px) {
#scode_block ul li:last-child {
	margin: 0px 0px 0px 0px;
}
}
@media screen and (max-width: 1140px) {
#scode_block ul {
	margin: 10px auto 0px auto;
}
#scode_block ul li {
	margin: 0px 5px 10px 5px;
}
#scode_block ul li:first-child {
	margin: 0px 5px 10px 0px;
}
#scode_block ul li:last-child {
	margin: 0px 0px 10px 5px;
}
}
@media screen and (max-width: 659px) {
#scode_block ul {
    text-align: center;
}
#scode_block ul li:first-child {
	margin: 0px 5px 10px 5px;
}
#scode_block ul li:last-child {
	margin: 0px 5px 10px 5px;
}
}

.captcha {
	text-align: left;
}
.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;
	color: #edede4;
	font-size: 0.72rem;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	outline: none;
	background: #b34325;
	text-align: center;
    border-radius: 25px;
    border: 3px solid transparent;
	padding: 16px 41px 16px 41px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
    box-sizing: border-box;
}
.a_button:hover {
	text-decoration: none;
	background: none;
    border: 3px solid #b34325;
}

.a_button1 {
	background: none;
    border: 3px solid #b34325;
}
.a_button1:hover {
    border: 3px solid transparent;
	background: #b34325;
}

.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: #878787;
	padding: 3px 6px 3px 6px;
	margin: 0px 3px 5px 0px;
	border-radius: 2px;
}
.sectionname:hover, .imagepages:hover {
	text-decoration: none;
	color: #fff;
	background: #1d8917;
}

.sectionnameselected, .imagepageselected {
	display: inline-block;
	color: #fff;
	background: #1d8917;
	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: #186d13;
	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-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-family: "Montserrat", sans-serif;
	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-family: "Montserrat", sans-serif;
	font-weight: 400;
	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: bold;
	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-family: "Montserrat", sans-serif;
	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.8rem;
	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-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.table tr th {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-weight: 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: 0px;
}

.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_contacts
-----------------------------------------------------------------------------*/
#header_contacts {
	width: 100%;
    position: relative;
	background: #222321;
    z-index: 999;
}
#header_contacts a,
#header_contacts span {
	font-size: 1rem;
	line-height: 1;
	color: #b1b2aa;
}
#header_contacts a:hover {
	text-decoration: none;
}
#header_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
#header_hours {
    padding: 0px 0px 0px 24px;
	background: url(images/icon_hours.webp) left center no-repeat;
}
#header_email {
    padding: 0px 0px 0px 25px;
	background: url(images/icon_email.webp) left center no-repeat;
}
#header_location {
    padding: 0px 0px 0px 19px;
	background: url(images/icon_location.webp) left center no-repeat;
}
#header_social {
    display: flex;
    align-items: center;
}
#header_phone {
	font-size: 1rem!important;
    line-height: 1!important;
    font-family: "Montserrat", sans-serif;
	color: #edede4!important;
    font-weight: 600;
	padding: 0px 14px 0px 21px;
	background: url(images/icon_phone.webp) left center no-repeat;
}
#header_icons {
    display: flex;
    align-items: center;
}
#header_social img {
    margin-left: 7px;
}
@media screen and (max-width: 940px) {
#header_email {
    display: none;
}
}
@media screen and (max-width: 675px) {
#header_location {
    display: none;
}
}
@media screen and (max-width: 592px) {
#header_hours {
    display: none;
}
}
@media screen and (max-width: 450px) {
#header_text {
    display: none;
}
#header_info {
    justify-content: center;
}
}
/* header
-----------------------------------------------------------------------------*/
#header {
	width: 100%;
	background: url(images/header_bg.webp) center center no-repeat;
    position: relative;
    text-align: center;
    z-index: 555;
    background-size: cover;
}
#header1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 165px;
}
#header .a_button {
	padding: 19px 36px 19px 37px;
}
@media screen and (max-width: 1840px) {
#header1 {
    flex-wrap: wrap;
    height: 200px;
}
#header_logo {
    order: 1;
}
#header1 > .a_button {
    order: 2;
}
}
@media screen and (max-width: 1140px) {
#header .a_button {
	display: none;
}  
#header1 {
    justify-content: center;
    height: 116px;
}
#header_logo img {
    width: 278px;
    height: auto;
}
}
/*menutop
-----------------------------------------------------------------------------*/
#menutop {
    width: auto;
    height: auto;
    padding: 0px;
    z-index: 666;
}
#menutop.box_fixed {
    background: rgba(32, 48, 39, 0.8);
    padding: 10px 0px;
}
#menutop ul {
	display: flex;
    justify-content: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
	list-style-image: none;
}
#menutop li {
	float: none;
	padding: 0px;
	margin: 0px;
}
#menutop ul li a {
	display: block;
    font-family: "Montserrat", sans-serif;
	font-size: 0.77rem;
	line-height: 1;
	font-weight: 600;
	color: #edede4;
	text-align: center;
	text-transform: uppercase;
	padding: 6px 27px 6px 27px;
	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;
	color: #beb287;
}
@media screen and (max-width: 1840px) {
#menutop {
    order: 3;
    width: 100%;
    top: auto;
}
#menutop.box_fixed ul {
    margin: 0px 30px;
}
#menutop ul {
    justify-content: flex-start;
}
#menutop li:first-child a {
    padding: 6px 27px 6px 0px;
}
}
@media screen and (max-width: 1140px) {
#menutop {
    display: none;
}
}
/* .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: right;
	display: inline-block;
	vertical-align: middle;
}
.menu_icons ul li:first-child {
	float: left;
}
.menu_icons a {
	display: block;
	text-align: center;
	color: #bebeb6;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
	line-height: 32px;
	font-weight: 600;
	height: 35px;
	padding: 3px 20px 0px 20px;
	text-transform: uppercase;
}
#mobile_show_menu {
    color: #988f6e;
}
.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, #a84125 0px, #b34325 100%);
}
#menumobile a {
	display: block;
	text-align: center;
	color: #dfdfd7;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	padding: 11px 0px 8px 0px;
	text-transform: uppercase;
}
#menumobile a:hover {
	text-decoration: none;
}
#menumobile li.selected > a {
	color: #262823;
}
#menumobile li.closed > ul {
	display: none;
}
#menumobile li.open > ul {
	display: block;
	/* border on open dropdown menu */
	border-top: 1px solid #ebe7e1;
	border-bottom: 1px 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: 1175px;
	position: relative;
	z-index: 10;
	background: #222321;
}
.inside #slideshow {
	height: 743px;
}
@media screen and (max-width: 1140px) {
#slideshow {
    height: 253px!important;
	background: url(images/mobile_slideshow_bg.webp) center center no-repeat;
    background-size: cover;
}   
}
#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;
	width: 100%;
	left: 0px;
	top: 320px;
	z-index: 235;
    text-align: left;
}
.inside #slideshow_content {
	top: 130px;
}
#slideshow_slogan1 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.66rem;
	line-height: 1;
	color: #d0411a;
    font-weight: 600;
    padding: 0px;
    text-transform: uppercase;
}
#slideshow_slogan2 {
	font-family: "Montserrat", sans-serif;
    font-weight: 700;
	font-size: 5.55rem;
	line-height: 1.22;
	color: #edede4;
    padding: 26px 360px 23px 0px;
}
#slideshow_text {
	font-size: 1.11rem;
	line-height: 1.5;
	color: #edede4;
    width: 38%;
}
#slideshow_content .a_button {
    margin: 51px 19px 0px 0px;
}
.inside #slideshow_text {
    display: none;
}
.inside #slideshow_content .a_button {
    margin: 10px 19px 0px 0px;
}
@media screen and (max-width: 1840px) {
#slideshow {
	height: 896px;
}
.inside #slideshow {
	height: 656px;
}
#slideshow_content {
	top: 190px;
    left: 25px;
}
#slideshow_slogan2 {
	font-size: 4.23rem;
	line-height: 1.22;
    padding: 26px 0px 23px 0px;
    max-width: 1100px;
}
#slideshow_text {
    width: 65%;
}
.inside #slideshow_content {
	top: 131px;
}
}
@media screen and (max-width: 1140px) {
#slideshow_content {
	top: 45px;
    left: 0px;
}
.inside #slideshow_content {
	top: 25%;
}
#slideshow_slogan1 {
    width: auto;
	font-size: 1rem;
	line-height: 1;
}
#slideshow_slogan2 {
    width: auto;
	font-size: 1.68rem;
	line-height: 1.48;
    padding: 22px 0px 0px 0px;
}
.inside #slideshow_slogan2 {
    padding: 7px 0px 0px 0px;
    line-height: 1.2;
}
#slideshow_text,
#slideshow_content .a_button {
    display: none;
}
}
#slides_arrow_next, 
#slides_arrow_prev {
	width: 28px;
	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: 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: 270px;
	z-index: 240;
	left: 0px;
    right: 0px;
	margin: 0px auto;
	text-align: left;
}
#slideshow_pager span { 
	width: 14px;
	height: 10px; 
    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 { 
    margin: 0px 30px;
    bottom: 160px;
    left: 25px;
}
}
.inside #slideshow_pager { 
	bottom: 112px;
}
@media screen and (max-width: 1140px) {
#slideshow_pager {
	display: none;
}
}
/* box_map
-----------------------------------------------------------------------------*/
#box_map {
    width: 100%;
    height: 836px;
    background: #fff;
}
#box_map a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/pic_map.webp) center center no-repeat;
}
@media screen and (max-width: 1140px) {
#box_map {
	height: 250px;
}
}
/* box_free_estimate
-----------------------------------------------------------------------------*/
#box_free_estimate {
    position: relative;
    background: #eeeee5;
    padding: 118px 0px 240px 0px;
}
.inside #box_free_estimate {
    padding: 118px 0px 110px 0px;
}
#decorative_item {
    position: absolute;
    width: 948px;
    height: 760px;
    right: -webkit-calc(50% - 1280px);
    right: -moz-calc(50% - 1280px);
    right: calc(50% - 1280px);
    top: 0px;
    background: url("images/decorative_item.webp") no-repeat;
}
#free_estimate_text {
    max-width: 1250px;
}
@media screen and (max-width: 1840px) {
#decorative_item {
    background-size: auto 487px;
    width: 422px;
    height: 487px;
    right: -webkit-calc(50% - 960px);
    right: -moz-calc(50% - 960px);
    right: calc(50% - 960px);
} 
}
@media screen and (max-width: 1140px) {
#box_free_estimate {
    padding: 40px 0px 100px 0px;
}
.inside #box_free_estimate {
    padding: 40px 0px 40px 0px;
}
#decorative_item {
    background-size: auto 220px;
    width: 272px;
    height: 220px;
    background-position: right top;
    right: 0px;
    top: 0px;
} 
}
/* box_products
-----------------------------------------------------------------------------*/
#box_products {
    position: relative;
	width: 100%;
	background: url(images/box_products_bg.webp) center top no-repeat;
    background-size: cover;
    padding: 0px 0px 120px 0px;
}
#box_products_decorative_item {
    position: absolute;
    width: 1432px;
    height: 973px;
    right: -webkit-calc(50% - 1280px);
    right: -moz-calc(50% - 1280px);
    right: calc(50% - 1280px);
    top: 0px;
    background: url("images/box_products_decorative_item.webp") no-repeat;
    opacity: 0.8;
}
#box_products ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 36px;
    margin: -150px 0px 117px;
    padding: 0px;
    list-style: none;
}
#box_products ul li {
    flex: 1 1 calc(50% - 36px);
    min-width: 0px;
}
#box_products ul li a {
    display: grid;
    overflow: hidden;
    border-radius: 22px;
    text-decoration: none;
}
#box_products ul li a img {
    display: block;
    width: 100%;
    height: auto;
    grid-area: 1 / 1;
    transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_products ul li a:hover img {
    transform: scale(1.05);
}
#box_products ul li a .product_content {
    grid-area: 1 / 1;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 58px 71px;
    z-index: 3;
}
#box_products ul li a .product_content span {
    color: #d0411a;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
#box_products ul li a .product_content div {
    max-width: 550px;
    margin-top: 20px;
    color: #edede4;
    font-size: clamp(2.2rem, 2.9vw, 3.33rem);
    line-height: 1;
    font-weight: 700;
}
#box_products ul li a .product_content strong {
    margin-top: 26px;
}
#box_products ul li a:hover .a_button {
    background: #edede4;
    color: #d0411a;
}
#box_products_text {
    max-width: 940px;
    color: #edede4;
    margin-bottom: 50px;
}
@media screen and (max-width: 1140px) {
#box_products {
    padding: 0px 0px 40px 0px;
}
#box_products ul {
    gap: 0px 15px;
    margin: -50px 0px 30px;
}
#box_products ul li {
    flex: 1 1 calc(50% - 15px);
}
#box_products ul li a .product_content {
    padding: 25px 25px 0px 25px;
}
#box_products ul li a .product_content span {
    font-size: 0.75rem;
}
#box_products ul li a .product_content div {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.05;
    margin-top: 10px;
}
#box_products ul li a .product_content strong {
    margin-top: 10px;
}
#box_products ul li a .product_content .a_button {
    padding: 10px 15px;
}
}
@media screen and (max-width: 528px) {
#box_products ul {
    gap: 15px;
}
#box_products ul li {
    flex: 1 1 100%;
}
}
/* middle
-----------------------------------------------------------------------------*/
#middle {
    position: relative;
    background: #fff url(images/middle_bg.webp) center right no-repeat;
    padding: 119px 0px 120px 0px;
}
.images_home {
    position: relative;
    float: left;
    margin: 0px 80px 0px 0px;
    z-index: 10;
    border-radius: 23px;
}
#middle_text {
    position: relative;
    z-index: 2;
}
#box_about .a_button {
    margin-top: 10px;
}
@media screen and (max-width: 1140px) {
#middle {
    padding: 40px 0px 40px 0px;
}
.images_home {
    margin: 0px 20px 20px 0px;
}
}
/* middle inside
-----------------------------------------------------------------------------*/
.inside #middle {
	min-height: 600px;
	background: #fff;
    padding: 98px 0px 120px 0px;
}
@media screen and (max-width: 1140px) {
.inside #middle {
	min-height: 370px;
    padding: 40px 0px 40px 0px;
}
}
.inside #middle:has(#box_page_about) {
    padding: 40px 0px 0px 0px;
}
/* box_adventages
-----------------------------------------------------------------------------*/
#box_adventages {
	width: 100%;
	padding: 90px 0px 97px 0px;
	background: #eeeee5;
	position: relative;
}
#box_adventages ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 108px;
    margin: 0px;
}
#box_adventages ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 0;
}
#box_adventages ul li img {
	display: block;
}
#box_adventages ul li span {
    display: block;
    max-width: 520px;
	margin-top: 24px;
    font-size: clamp(1.5rem, 1.75vw, 2rem);
    line-height: 1;
    font-weight: 600;
    color: #202b23;
}
#box_adventages ul li p {
    max-width: 520px;
	margin: 30px 0px 0px;
    color: #202b23;
}
@media screen and (max-width: 1140px) {
#box_adventages {
	padding: 40px 0px 40px 0px;
}
#box_adventages ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
#box_adventages ul li img {
	height: 90px;
    width: auto;
}
#box_adventages ul li {
    width: calc(50% - 30px);
}
#box_adventages ul li p {
	margin-top: 15px;
    font-size: 1rem;
}
}
@media screen and (max-width: 700px) {
#box_adventages ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
#box_adventages ul li {
    width: 100%;
    flex: 0 0 100%;
}
}
/* box_reviews_google
-----------------------------------------------------------------------------*/
#box_reviews_google {
    width: 100%;
    padding: 40px 20px 40px 20px;
	box-sizing: border-box;
    background: #fff;
}

/* box_gallery
-----------------------------------------------------------------------------*/
#box_gallery {
	position: relative;
	padding: 120px 0px 120px 0px;
	background: #222321 url(images/box_gallery_bg.webp) center center no-repeat;
}
#box_gallery_text {
	color: #fff;
    max-width: 1200px;
}
#box_gallery ul {
    display: flex;
	flex-wrap: wrap;      
	justify-content: center;
    margin: 60px auto 0px;
	gap: 30px; 
    overflow: hidden;
}
#box_gallery ul li {
    flex: 0 0 calc(33.333% - 30px);
	position: relative;
    aspect-ratio: 812 / 524;
	overflow: hidden;
    border-radius: 21px;
}
#box_gallery ul li a,
#box_gallery ul li a img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
#box_gallery ul li a img {
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
}
#box_gallery a:hover img {
	transform: scale(1.05);
}
#box_gallery .a_button {
    margin-top: 60px;
}
@media screen and (max-width: 1840px) {
#box_gallery ul {
	gap: 28px; 
}
#box_gallery ul li {
    flex: 0 0 calc(33.333% - 28px);
}
}
@media screen and (max-width: 1140px) {
#box_gallery {
	padding: 30px 0px 30px 0px;
}
#box_gallery ul {
	margin: 20px auto 0px;
}
.btn_mob{
    display: block;
    text-align: center;
}
#box_gallery .section_button {
    position: relative;
    margin-top: 15px;
    text-align: center;
}
.btn_mob .a_button {
    display: inline-block;
}
.btn_desktop{
    display: none;
}
}
@media screen and (max-width: 692px) {
#box_gallery ul {
    gap: 14px;
    padding: 0px 20px;
    box-sizing: border-box;
}
#box_gallery ul li {
    flex: 0 0 calc(50% - 7px);
}
#box_gallery ul li:nth-child(3) {
    display: none;
}
}
@media screen and (max-width: 464px) {
#box_gallery ul li {
    flex: 0 0 100%;
}
#box_gallery ul li:nth-child(2) {
    display: none;
}
}
/* box_footer
-----------------------------------------------------------------------------*/
#box_footer {
	position: relative;
	padding: 136px 0px 140px 0px;
	background: url(images/box_footer_bg.webp) center center no-repeat;
}
#box_footer1 {
    display: flex;
    justify-content: flex-end; 
    align-items: baseline;
    gap: 160px;                  
    color: #eeeee5;
    font-size: 1rem;
	line-height: 1.66;
}
#box_footer1 strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 35px;
}
#footer_logo {
    position: absolute;
    top: 7px;
    left: 0px;
}
#footer_contacts a,
#footer_contacts span {
	display: block;
	color: #b1b2aa;
    line-height: 1.33;
    margin-top: 19px;
}
#footer_contacts a:hover {
	text-decoration: none;
}
#footer_hours {
	background: url(images/icon_hours.webp) left 3px center no-repeat;
    padding-left: 27px;
}
#footer_email {
	background: url(images/icon_email.webp) left 1px center no-repeat;
    padding-left: 28px;
}
#footer_location {
	background: url(images/icon_location.webp) left 5px center no-repeat;
    padding-left: 25px;
}
#footer_phone {
    margin: 0px;
	font-weight: 600;
	font-style: normal;
	font-size: 1.33rem;
    line-height: 1;
    background: url(images/icon_phone.webp) left 5px center no-repeat;
    padding-left: 25px;
}
#footer_phone,
#footer_phone a {
    color: #edede4 !important;
}
#footer_icons {
    display: inline-block;
    vertical-align: top;
}
#footer_icons img {
    vertical-align: top;
}
#footer_links {
	position: relative;
    top: -17px;
}
#footer_links a,
#footer_links span {
	color: #eeeee5;
}
@media screen and (max-width: 1840px) {
#box_footer1 {
    gap: 100px;
    justify-content: center; 
}
#footer_logo {
    display: none;
} 
}
@media screen and (max-width: 1140px) {
#box_footer {
	padding: 50px 0px 40px 0px;
}
#box_footer1 {
    background: none;
    display: block;
    text-align: center;  
	line-height: 24px;
}
#footer_icons,
#footer_contacts {
    display: none;
}
}

/* content_title
-----------------------------------------------------------------------------*/
.content_title {
	color: #202b23;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.33rem;
	line-height: 1.33;
	text-align: left;
	padding: 0px 0px 33px 0px;
}
.content_title h1 {
	padding: 0px;
	margin: 0px;
	color: #202b23;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.33rem;
	line-height: 1.33;
	text-align: left;
}
.content_title span {
	display: block;
	color: #b34325;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
    text-transform: uppercase;
	font-style: normal;
	font-size: 1rem;
	line-height: 1;
	margin-bottom: 9px;
}
.content_title_center {
	text-align: center;
}
.content_title1 {
	color: #edede4;
}
@media screen and (max-width: 1840px) {
}

@media screen and (max-width: 1140px) {
.content_title {
	font-size: 1.87rem;
	line-height: 1.33;
}
.content_title h1 {
	font-size: 1.87rem;
	line-height: 1.33;
}
.content_title span {
	font-size: 0.87rem;
	line-height: 1;
}
}


/* Contact
-----------------------------------------------------------------------------*/
#contact_address {
	width: 30%;
	float: left;
}
#contact_address a {
	color: #1d1f20;
    text-decoration: none;
}
#contact_location {
    display: inline-block;
    margin-bottom: 20px;
    padding-left: 28px;
    background: url(images/icon_location_red.webp) left center no-repeat;
}
#contact_phone {
    padding-left: 30px;
    background: url(images/icon_phone_red.webp) left center no-repeat;
}
#contact_email {
    padding-left: 31px;
    background: url(images/icon_email_red.webp) left center no-repeat;
}
#contact_form {
	width: 65%;
	float: right;
}
#contact_form .form input[type=text],
#contact_form .form input[type=email],
#contact_form .form textarea {
    background: #eeeee5;
    padding: 20px 20px;
}
#contact_form .form input::placeholder,
#contact_form .form textarea::placeholder {
    font-size: 1.12rem!important;
    color: #202b23!important;
}
#contact_form input:required {
	background: #eeeee5 url(images/placeholder_req_bg.webp) 14px 22px no-repeat !important;
}
#contact_address strong,
#contact_form strong {
    display: block;
	color: #202b23;
    font-size: 2.66rem;
    line-height: 1;
    margin: 27px 0px;
}
@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: 67px;
	height: 67px;
	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: #2c4135;
	text-decoration: none;
}

@media screen and (max-width: 1840px) {
#scroll_top {
	width: 60px;
	height: 60px;
}
}

@media screen and (max-width: 1140px) {
#scroll_top {
	width: 40px;
	height: 40px;
	background-size: 15px auto;
}
}

/* =========================================================
   DOOR CALCULATOR
========================================================= */

#door-calculator {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

#door-calculator *,
#door-calculator *::before,
#door-calculator *::after {
    box-sizing: border-box;
}


/* =========================================================
   FIELDSETS
========================================================= */

#door-calculator fieldset {
    border: 1px solid #ccc;
    padding: 16px;
    margin: 0 0 24px;
    min-width: 0;
    border-radius: 4px;
}

#door-calculator legend {
    font-weight: bold;
    padding: 0 8px;
}


/* =========================================================
   INPUTS
========================================================= */

#door-calculator label {
    cursor: pointer;
}

#door-calculator input[type="text"],
#door-calculator input[type="number"],
#door-calculator select {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    font: inherit;
    line-height: 1.4;
}

#door-calculator input:focus,
#door-calculator select:focus {
    outline: none;
    border-color: #777;
}


/* =========================================================
   RADIO BUTTONS
========================================================= */

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.radio-row label {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   STYLE / WOOD
========================================================= */

#style-wood-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

#style-wood-selection legend {
    grid-column: 1 / -1;
}

.input-wrapper label {
    display: block;
    margin-bottom: 6px;
}


/* =========================================================
   DOOR CONFIGURATION
========================================================= */

#door-configuration-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.config-left-col {
    flex: 1 1 250px;
    min-width: 200px;
}

.config-right-col {
    flex: 2 1 450px;
    min-width: 300px;
}

.config-left-col fieldset {
    height: 100%;
    margin-bottom: 0;
    text-align: center;
}


/* =========================================================
   VISUAL GUIDE
========================================================= */

#door-diagram-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}


/* =========================================================
   ACCORDION
========================================================= */

.accordion-item {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #fff;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item summary {
    padding: 12px;
    font-weight: bold;
    background-color: #f7f7f7;
    cursor: pointer;
    outline: none;
    border-bottom: 1px solid #ccc;
    list-style: none;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::marker {
    display: none;
}

.accordion-item summary::after {
    content: "+";
    float: right;
    font-size: 18px;
    line-height: 1;
}

.accordion-item[open] summary::after {
    content: "−";
}

.accordion-content {
    padding: 16px;
}


/* =========================================================
   EDGE / FRAME / BORDER / PANEL
========================================================= */

.edge-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.edge-option {
    text-align: center;
}

.edge-option input[type="radio"] {
    display: none;
}

.edge-option label {
    cursor: pointer;
    display: block;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.edge-option label:hover {
    border-color: #999;
}

.edge-option input[type="radio"]:checked + label {
    border-color: #222;
    background-color: #f7f7f7;
    box-shadow: 0 0 0 1px #222;
}

.edge-option img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.edge-option span {
    font-size: 11px;
    font-weight: bold;
    display: block;
}


/* =========================================================
   DIMENSIONS
========================================================= */

#dimensions-selection {
    display: block;
}

.quantity-wrapper {
    margin-bottom: 20px;
}

.stepper {
    display: flex;
    align-items: stretch;
    width: 160px;
    margin-top: 6px;
}

.quantity-button {
    width: 42px;
    min-width: 42px;
    padding: 0;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.quantity-button:hover {
    background: #eaeaea;
}

.quantity-input {
    width: 76px !important;
    text-align: center;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}


/* =========================================================
   MEASUREMENTS
========================================================= */

.fractional-input {
    margin-bottom: 20px;
}

.fractional-input:last-child {
    margin-bottom: 0;
}

.fractional-input > label {
    display: block;
    margin-bottom: 6px;
}

.measure-input {
    display: flex;
    align-items: stretch;
}

.measure-input input {
    flex: 1;
    min-width: 0;
}

.measure-input select {
    width: 130px;
    flex: 0 0 130px;
    margin-left: 8px;
}


/* =========================================================
   CALCULATOR RESULT
========================================================= */

.calculator-result {
    margin-top: 30px;
    padding: 24px;
    border-radius: 4px;
    background: #f7f7f7;
    border: 1px solid #ddd;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.result-item:last-of-type {
    border-bottom: 0;
}

.result-item strong {
    font-size: 18px;
}

.result-total {
    margin-top: 8px;
    padding-top: 18px;
}

.result-total strong {
    font-size: 26px;
}

.price-message {
    margin: 15px 0 0;
    font-size: 14px;
    color: #666;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #style-wood-selection {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }

    #style-wood-selection legend {
        grid-column: auto;
    }

    #door-configuration-container {
        flex-direction: column;
        gap: 20px;
    }

    .config-left-col,
    .config-right-col {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .config-left-col fieldset {
        height: auto;
    }

    .edge-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .radio-row {
        gap: 12px 18px;
    }

}


@media (max-width: 480px) {

    #door-calculator fieldset {
        padding: 12px;
    }

    .accordion-content {
        padding: 12px;
    }

    .edge-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .edge-option label {
        padding: 6px;
    }

    .edge-option span {
        font-size: 10px;
    }

    .measure-input {
        flex-direction: column;
        gap: 8px;
    }

    .measure-input select {
        width: 100%;
        flex: none;
        margin-left: 0;
    }

    .stepper {
        width: 150px;
    }

    .calculator-result {
        padding: 18px;
    }

    .result-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

}


@media (max-width: 360px) {

    .edge-grid-container {
        grid-template-columns: 1fr 1fr;
    }

}


#box_page_about {
    position: relative;
}
.page_about_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.page_about_left {
    position: relative;
}
.page_about_left::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((1800px - 100vw) / 2);
    right: 0;
    background-image: url("images/page_about_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
@media screen and (max-width: 1840px) {
.page_about_left::before {
    left: -30px;
}
}
.page_about_features {
    position: absolute;
    right: 115px;
    bottom: 0px;
    background-color: #b34325;
    z-index: 1;
    padding: 78px 109px 59px 115px;
    color: #fff;
    border-radius: 21px 21px 0px 0px;
}
.about_feature_item {
    position: relative;
    padding-left: 78px;
    margin-bottom: 26px;
}
.about_feature_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 49px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about_feature_item:nth-child(1)::before {
    background-image: url("images/icon-skilled-craftsmen-experience.webp");
}
.about_feature_item:nth-child(2)::before {
    background-image: url("images/icon-building-practices.webp");
}
.about_feature_item:nth-child(3)::before {
    background-image: url("images/icon-transparent-communication.webp");
}
.about_feature_item span {
    display: block;
    margin-bottom: 3px;
    font-size: 1.33rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.page_about_right {
    position: relative;
    z-index: 1;
    padding: 0px 0px clamp(40px, 5vw, 80px) clamp(30px, 5vw, 95px);
    box-sizing: border-box;
}
.page_about_list {
    margin-top: 64px;
}
.about_list_item {
    position: relative;
    padding-left: 78px;
    margin-bottom: 26px;
}
.about_list_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 49px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.about_list_item:nth-child(1)::before {
    background-image: url("images/icon-licensed-insured.webp");
}
.about_list_item:nth-child(2)::before {
    background-image: url("images/icon-full-service-construction-management.webp");
}
.about_list_item:nth-child(3)::before {
    background-image: url("images/icon-on-time-on-budget-delivery.webp");
}
.about_list_item span {
    display: block;
    margin-bottom: 3px;
    font-size: 1.33rem;
    font-weight: 700;
    text-transform: uppercase;
}
@media screen and (max-width: 1840px) {
.page_about_features { 
    right: 40px; 
    padding: 60px 60px 48px 65px; 
}
.about_feature_item, .about_list_item { 
    padding-left: 68px; 
}
.about_feature_item::before, 
.about_list_item::before { 
    width: 45px; 
    height: 44px; 
} 
.about_feature_item span, 
.about_list_item span { 
    font-size: 1.2rem; 
} 
.page_about_right { 
    padding-left: 50px; 
} 
.page_about_list { 
    margin-top: 50px; 
} 
}
@media screen and (max-width: 1140px) {
.page_about_grid { 
    display: flex; 
    flex-direction: column; 
} 
.page_about_left::before { 
    display: none; 
} 
.page_about_left { 
    display: contents; 
} 
.page_about_right { 
    display: contents; 
}  
.page_about_right p { 
    order: 1; 
} 
.page_about_features { 
    position: relative; 
    right: auto; 
    bottom: auto; 
    order: 2; 
    padding: 45px 0 0; 
    background: none; 
    color: inherit; 
    border-radius: 0; 
} 
.about_feature_item { 
    padding-left: 65px; 
    margin-bottom: 30px; 
} 
.about_feature_item::before { 
    width: 45px; 
    height: 44px; 
    top: 2px; 
} 
.about_feature_item span { 
    font-size: 1.15rem; 
    line-height: 1.2; 
} 
.page_about_list { 
    order: 3; 
    margin-top: 45px; 
    padding-bottom: 50px; 
} 
.about_list_item { 
    padding-left: 65px; 
    margin-bottom: 30px; 
} 
.about_list_item::before { 
    width: 45px; 
    height: 44px; 
    top: 2px; 
} 
.about_list_item span { 
    font-size: 1.15rem; 
    line-height: 1.2; 
}
}

ul.two_nice_columns {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin: 0px auto;
    padding: 0;
    list-style: none;
}
ul.two_nice_columns li {
    flex: 0 0 calc(50% - 36px);
}
ul.two_nice_columns li div,
ul.two_nice_columns li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #202b23;
    text-align: left;
    box-sizing: border-box;
    padding: 0px 40px 40px 40px;
    border-radius: 22px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;   
}
ul.two_nice_columns li a:hover {
    text-decoration: none;
}
ul.two_nice_columns li span {
    display: block;
    position: relative;
}
ul.two_nice_columns li span h3 {
    position: absolute;
    left: 68px;
    top: 57px;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    color: #edede4;
    font-size: clamp(1.8rem, 3.33vw, 3.33rem);
    padding-right: 100px;
}
ul.two_nice_columns li span h3 strong {
    display: block;
    color: #d0411a;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}
ul.two_nice_columns li p {
    padding: 0px 40px;
}
ul.two_nice_columns li img {
    border-radius: 22px;
    margin-bottom: 54px;
    max-width: 100%;
    height: auto;
}
ul.img_stretch li img {
    width: 100%;
    height: auto;
}
ul.two_nice_columns li a:hover .a_button {
    text-decoration: none;
    background: none;
    border: 3px solid #b34325;
    color: #b34325;
}
@media screen and (max-width: 1140px) {
ul.two_nice_columns li span h3 {
    left: 20px;
    top: 20px;
}
}
@media screen and (max-width: 720px) {
ul.two_nice_columns li span h3 {
    padding-right: 20px;
}
ul.two_nice_columns {
    gap: 0px;
}
ul.two_nice_columns li {
    flex: 0 0 100%;
    margin-bottom: 30px;    
}
ul.two_nice_columns li:last-child {
    margin-bottom: 0px;

}
}
#page_products_title {
    padding: 0px;
	margin: 30px 0px 0px;
	color: #202b23;
	font-size: 3.33rem;
	line-height: 1.33;
	text-align: left;
}
#page_products_title span {
    display: block;
	color: #b34325;
    text-transform: uppercase;
	font-size: 1rem;
	line-height: 1;
	margin-bottom: 9px;
}

.two_nice_columns {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 2vw, 36px);
    margin: 30px auto 0px;
    padding: 0;
}
.two_nice_columns .box_question {
    flex: 0 0 calc(50% - clamp(10px, 1.25vw, 18px));
    box-sizing: border-box;
    background-color: #eeeee5;
    padding: clamp(30px, 4vw, 64px) clamp(30px, 4vw, 70px);
    border-radius: 21px;
}
.two_nice_columns .box_question span {
    display: block;
    color: #b34325;
    font-size: clamp(1.2rem, 1.66vw, 1.66rem);
    line-height: 1;
    margin-bottom: clamp(20px, 2.5vw, 34px);
    font-weight: 700;
}
@media screen and (max-width: 720px) {
    .two_nice_columns .box_question {
        flex: 0 0 100%;
    }
}
#sub_products_feature {
    background: #fff;
    padding: 0px 0px 80px;
}
.products_sub_images {
    float: right;
    display: flex;
    gap: 36px;
    margin: 0 0 20px 40px;
    padding: 0;
    list-style: none;
    width: 50%;
}
.products_sub_images li {
    flex: 1 1 0;
    min-width: 0;
}
.products_sub_images img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
@media (max-width: 1141px) {
.products_sub_images {
    float: none;
    width: 100%;
    justify-content: center;
    margin: 20px auto;
}
.products_sub_images li {
    flex: 1 1 0;
}
.products_sub_images img {
    width: 100%;
}
}
.products_sub_text {
    margin-top: 41px;
}
.two_nice_columns h2 {
    color: #b34325;
    font-size: 2rem;
    line-height: 1;
    padding: 0px 0px 35px 0px;
}
.products_sub_description {
    padding: 0px!important;
}