@charset "UTF-8";
/*---------------- Fonts ----------------*/
@font-face {
    font-family: ClearSans-Light;
    src:url('fonts/ClearSans-Light.eot');
	src:url('fonts/ClearSans-Light.ttf') format('truetype'),
        url('fonts/ClearSans-Light.woff') format('woff'),
        url('fonts/ClearSans-Light.svg#ClearSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: ClearSans-Regular;
    src:url('fonts/ClearSans-Regular.eot');
	src:url('fonts/ClearSans-Regular.ttf') format('truetype'),
        url('fonts/ClearSans-Regular.woff') format('woff'),
        url('fonts/ClearSans-Regular.svg#ClearSans-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: ClearSans-Medium;
    src:url('fonts/ClearSans-Medium.eot');
	src:url('fonts/ClearSans-Medium.ttf') format('truetype'),
        url('fonts/ClearSans-Medium.woff') format('woff'),
        url('fonts/ClearSans-Medium.svg#ClearSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: ClearSans-Bold;
    src:url('fonts/ClearSans-Bold.eot');
	src:url('fonts/ClearSans-Bold.ttf') format('truetype'),
        url('fonts/ClearSans-Bold.woff') format('woff'),
        url('fonts/ClearSans-Bold.svg#ClearSans-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}
/* Reset */
*{box-sizing:border-box;margin:0;padding:0;}
html,body{width:100%;margin:0;padding:0;overflow-x: hidden;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
body{font-family: ClearSans-Regular;font-weight: 400;background:#fff;color:#333;font-size:18px;line-height:120%;width:100%;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
table{border-collapse:collapse;border-spacing:0;width: 100%;border-collapse: separate;border-spacing: 6px;}
.anchor_list::-webkit-scrollbar-button{background-image:url();background-repeat:no-repeat;width:9px;height:0;}
::selection,::-moz-selection,::-webkit-selection{background:#000;color:#fff;}
input {outline:none;border:none;}
::-webkit-input-placeholder {color:#9d9d9d;}
::-moz-placeholder          {color:#9d9d9d;}
:-moz-placeholder           {color:#9d9d9d;}
:-ms-input-placeholder      {color:#9d9d9d;}
img {display:block;}
/* General */
.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.title_h4 {
	text-align: center;
	font-weight: 700;
    font-size: 30px;
    line-height: 40px;
	font-family: ClearSans-Bold;
	color: #333;
}
.title_h5 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: ClearSans-Light;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
	text-align: center;
	color: #333;
}
.title_h5:after {
	content: "";
    background-color: #eeba47;
    width: 90px;
    height: 2px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.title_h5 a {
    color: #e95500;
}
.title_h5 p {
	margin: 0 0 15px 0;
}
.frm_forms label span {
	display: none !important;
}
.btn_yellow {
	height: 30px;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: rgb(238, 186, 71);
	font-size: 11px;
	cursor: pointer;
	padding: 0 15px;
	width: fit-content;
	transition: all 0.15s ease-in;
}
.btn_yellow:hover {
	background: #000;
	color: #fff;
}
.btn_black {
	height: 30px;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: #000;
	font-size: 11px;
	cursor: pointer;
	padding: 0 15px;
	width: fit-content;
	transition: all 0.15s ease-in;
}
.btn_black:hover {
	background-color: rgb(238, 186, 71);
	color: #fff;
}
.with_frm_style .frm_message, .frm_success_style {
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;	
}
.with_frm_style .frm_message p {
	color: #333 !important;
	text-align: left !important;
}
.with_frm_style .frm_error_style, .with_frm_style .frm_message, .frm_success_style {
	padding: 0 !important;
}
/* Popup */
.popup {
	width: 100%;
	height: 100%;
	z-index: 999999;
	position: fixed;
	background-color: #eeba47e6;
	display: none;
    top: 0;
    left: 0;
}
.popup.active {
	display: block;
}
.popup__container {
	width: 500px;
	height: auto;
	background: #fff;
	z-index: 99;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
    box-shadow: 0 0 13px #0003;
}
.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	opacity: .2;
	transition: all 0.15s ease-in;
}
.popup__close:hover {
	opacity: 1;
}
.popup__title {
    font-size: 30px;
}
.popup__subtitle {
	margin-top: 14px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 300;
    line-height: 19px;
	font-family: ClearSans-Light;
}
.popup input {
	height: 50px !important;
	width: 100% !important;	
	padding: 0 0 0 15px !important;
}
.popup__phone a {
    color: #333;
    font-size: 30px;	
	text-decoration: none;
}
.popup__header {
	margin: 20px 0 0 0;
}
.popup__header > div:nth-child(1) {
	flex: 0 80px;
}
.popup__header > div:nth-child(2) {
	flex: 0 calc(100% - 80px);
	padding: 0 0 0 15px;
	font-size: 17px;
	line-height: 22px;
}
.popup__header > div:nth-child(1) img {
	width: 100%;
	height: auto;
}
.popup__container input {
    border: 1px solid #d2d2d2 !important;
    height: 45px !important;
    margin-bottom: 4px !important;
    font-size: 13px !important;
	border-radius: 0 !important;
}
.popup__container label {
	font-size: 14px !important;
	line-height: 18px !important;
}
.popup__container .frm_button_submit  {
	width: 138px !important;
	height: 43px !important;
	font-size: 15px !important;
	border-radius: 4px;
    border: 2px solid #000 !important;
	transition: all 0.15s ease-in-out;
}
.popup__container .frm_button_submit:hover {
	border: 2px solid #eeba47 !important;
	background-color: #eeba47 !important;
}
.popup__container .frm_forms {
    background-color: #f3f3f3;
    padding: 20px 45px;	
}
.popup__content {
	padding: 20px 45px;		
}
/* Header */
nav li a {
	text-decoration: none;
	color: #000;
	display: block;	
}
.btn__menu {
	width: 28px;
	height: 20px;
	display: none;
}
.btn__menu.active {
	background: #000;
}
.btn__menu span {
    display: block;
    position: relative;
    background: #fff;
    height: 2px;
    width: 16px;
    transition: 0.2s;
}
.btn__menu span:nth-child(1) {
	top: 13px;
	left: 12px;
}
.btn__menu span:nth-child(2) {
	top: 17px;
	left: 12px;
}
.btn__menu span:nth-child(3) {
	top: 21px;
	left: 12px;
}
.btn__menu.active span:nth-child(2) {
	display: none;
}
.btn__menu.active span:nth-child(1) {
	transform: rotate(45deg);
	transition: 0.2s;
	top: 18px;
}
.btn__menu.active span:nth-child(3) {
	transform: rotate(-45deg);
	transition: 0.2s;
	top: 16px;
}
/* Menu Mobile */
.menu__mobile {
	width: 100%;
	position: absolute;
	z-index: 9999;
	padding: 0;
	transition: 0.3s;
	display: none;
    background-color: #000;
}
.menu__mobile li {
	height: 51px;
	padding: 15px 30px;
	border-bottom: 1px solid #242424;
}
.menu__mobile li.active {
	height: auto;
}
.menu__mobile .menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu__mobile.active {
	display: block;
}
.menu__mobile a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 0;
    text-transform: uppercase;
    font-size: 13px;
}
/* Header */
.header__whatsapp {
	display: none;
}
.header__inner {
	height: 92px;
	align-items: center;
	justify-content: space-between;
}
.header__logo {
	height: 50px;
	width: auto;
}
.header__phone a {
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #004d59;
    background-image: url(images/arrow-icon.png), url(images/heart-icon.png);
    background-position: 116%, 15px;
    background-repeat: no-repeat, no-repeat;
    background-size: 15px 15px, 15px 15px;
    border-color: #004d59;
    height: 40px;	
    padding: 0 0 0 20px;
	width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
    font-family: ClearSans-Bold;
    font-size: 13px;
    font-weight: 700;
	font-style: italic;
	text-decoration: none;
	color: #fff;
    line-height: 29px;
    transition: border 0.2s, background-color 0.2s, color 0.2s, background-position 0.2s, padding 0.2s;
}
.header__phone a:hover {
    background-color: #dd7500;
    background-position: 91%, -26px;
    border-color: #dd7500;
	padding: 0;
}
nav {
	background-color: #eeba47;	
}
nav ul {
	display: flex;
	gap: 28px;
	align-items: center;
	height: 58px;
}
nav ul li a {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	transition: all 0.15s ease-in;
}
nav ul li a:hover {
	color: #000;
}
nav .sub-menu {
	display: none;
    background-color: #fff;
    box-shadow: 0 0 7px #0003;
    position: absolute;
    z-index: 10;
    height: auto;
    width: 140px;
	top: 40px;
}
nav .sub-menu.active {
	display: block;
}
nav .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: #000;
	transition: all 0.15s ease-in;
}
nav .sub-menu a:hover {
	background: #000;
	color: #fff;
}
.menu-item-has-children {
	position: relative;
}
.menu-item-has-children > a {
	position: relative;
	padding: 0 16px 0 0;
}
.menu-item-has-children > a:after {
	content: "";
	display: block;
	background: url(images/arrow-li.svg) no-repeat;
	width: 10px;
	height: 6px;
	background-size: cover !important;
	position: absolute;
	right: -3px;
    top: 7px;
	transition: all 0.15s ease-in;
}
.menu-item-has-children > a:hover:after {
	background: url(images/arrow-li-hover.svg) no-repeat;
}
/* Home */
.swiper_home {
	position: relative;
}
.swiper_home .swiper-slide {
	background-size: cover !important;
	height: 500px;
	background-position: center !important;
}
.swiper_home__subtitle {
	padding: 85px 0 0 0;
}
.swiper_home__subtitle h1,
.swiper_home__subtitle h2,
.swiper_home__subtitle h3,
.swiper_home__subtitle h4,
.swiper_home__subtitle h5,
.swiper_home__subtitle h6 {
    color: #fff;
    font-family: ClearSans-Light;
    font-size: 20px;
    font-weight: 300;
	margin: 0 0 10px 0;
}
.swiper_home__title h1,
.swiper_home__title h2,
.swiper_home__title h3,
.swiper_home__title h4,
.swiper_home__title h5,
.swiper_home__title h6 {
	color: #fff;
    text-transform: uppercase;
    margin-bottom: 26px;
    font-family: ClearSans-Light;
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
	max-width: 750px;
}
.swiper_home__text {
	color: #fff;
	font-size: 15px;
	line-height: 18px;
	max-width: 750px;
}
.swiper_home__text a {
	color: #fff;
}
.swiper_home__overlay {
	background-color: #0000;
    background-image: linear-gradient(to right, #0009 31%, #0000 71%);
    width: 100%;
    height: 100%;
}
.swiper_home__link {
	color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #0000;
    border: 2px solid #e95500;
    margin-top: 30px;
    font-size: 11px;
    line-height: 26px;
	width: fit-content;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0 15px;
	transition: all 0.15s ease-in;
}
.swiper_home__link:hover {
	background: #fff;
	color: #000;
}
.swiper_home .swiper-button-next,
.swiper_home .swiper-button-prev {
	height: 60px !important;
	width: 40px !important;	
	background-color: #0009;
	transition: width .2s, background-color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	top: calc(50% - 20px) !important;
}
.swiper_home .swiper-button-prev {
	left: 50px !important;
}
.swiper_home .swiper-button-next {
	right: 50px !important;
}
.swiper_home .swiper-button-next:hover,
.swiper_home .swiper-button-prev:hover {
    background-color: #000;
    width: 50px !important;	
}
.swiper_home .swiper-button-next:after {
    content: "";
	background: url(images/slider-next.svg) no-repeat !important;
	height: 15px !important;
	width: 10px !important;
}
.swiper_home .swiper-button-prev:after {
    content: "";
	background: url(images/slider-prev.svg) no-repeat !important;
	height: 15px !important;
	width: 10px !important;
}
.block_info__container {
	box-shadow: 0 0 13px #0003;
	max-width: 940px;
    z-index: 1;
    background-color: #fff;
    margin: -80px auto 0 auto;
    position: relative;
}
.block_info__inner > div {
	flex: 0 50%;
	height: 265px;
}
.block_info__inner > div:nth-child(1) {
	background-color: #eeba47;
}
.block_info__block_1 > div:nth-child(1) {
	flex: 0 150px;
}
.block_info__block_1 > div:nth-child(2) {
    flex: 0 calc(100% - 150px);
    position: relative;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.block_info__photo {
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.block_info__photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.block_info__tag {
    color: #fff;
    text-transform: uppercase;
    background-color: #000;
    padding-left: 15px;
    padding-right: 15px;
    font-family: Clearsans regular, sans-serif;
    font-size: 11px;
    line-height: 32px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;	
}
.block_info__text {
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    padding-top: 15px;
}
.block_info__name {
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
	font-style: italic;
	color: #fff;
}
.block_info__btn {
    background-color: #0000;
    border-color: #fff;
    line-height: 30px;	
	font-size: 11px;
	border: 2px solid #fff;
    margin-top: 11px;
    padding: 4px 15px;
	color: #fff;
    text-align: center;
    text-transform: uppercase;
	width: fit-content;
	transition: all 0.15s ease-in;
	cursor: pointer;
	font-weight: 700;
}
.block_info__btn:hover {
	background: #fff;
	color: #000;
}
.block_info__block_2_1,
.block_info__block_2_2 {
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s ease-in;
    position: absolute;
    top: 90px;
    left: 40px;
    width: calc(100% - 80px);
}
.block_info__block_2_1.active,
.block_info__block_2_2.active {
	opacity: 1;
	visibility: visible;
}
.block_info__block_2_title {
    font-size: 13px;
    color: #222;
    justify-content: center;
	margin: 0 0 22px 0;
}
.block_info__block_2_title > div {
	padding: 0 30px;
	cursor: pointer;
}
.block_info__block_2_title > div.active {
	color: #eeba47;
}
.block_info__block_2_title > div:nth-child(1) {
	border-right: 2px solid #000;
}
.block_info__block_2 label {
	display: none !important;
}
.block_info__block_2 input {
	background: #f5f5f5 !important;
	height: 45px !important;
	width: 100% !important;
	border: 1px solid #ddd !important;
    margin-bottom: 12px !important;
    transition: border .2s;
	border-radius: 0 !important;
}
.block_info__block_2 {
    padding: 50px 40px 30px 40px;
	position: relative;
}
.frm_html_container p {
	font-size: 13px !important;
	color: #000 !important;
	margin: 0 0 14px 0 !important;
	text-align: center;
}
.block_info__block_2 .frm_button_submit {
    background-color: #1ca6ac !important;
    border-color: #1ca6ac !important;
    margin: 6px auto 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 30px !important;	
	color: #fff !important;
	border: none !important;
	outline: none !important;
	width: 115px !important;
	height: 42px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-transform: uppercase !important;
	transition: all 0.15s ease-in;
}
.block_info__block_2 .frm_button_submit:hover {
    background-color: #000 !important;
    border-color: #000 !important;	
}
.block_info__block_2 ::-webkit-input-placeholder {text-align:center;}
.block_info__block_2 ::-moz-placeholder          {text-align:center;}
.block_info__block_2 :-moz-placeholder           {text-align:center;}
.block_info__block_2 :-ms-input-placeholder      {text-align:center;}
.block_video_link {
	margin: 50px 0 0 0;
}
.block_video_link h6 {
	text-align: center;
	color: #333;
	margin: 0 0 20px 0;
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
}
.block_video_link__list > a {
	flex: 0 50%;
}
.block_video_link__img {
	width: 100%;
	overflow: hidden;
	height: 265px;
}
.block_video_link__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block_types {
	margin: 40px 0 0 0;
}
.block_types__list {
	background-color: #eeba47;
}
.block_types__list > a {
	flex: 0 33.33%;
	height: 300px;
	background-size: cover !important;
	position: relative;
	padding: 15px;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
	text-decoration: none;
}
.block_types__list > a:after {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(#0000004d, #000000b3);
	position: absolute;
	display: block;
	top: 0;
    left: 0;
}
.block_types__list > a:hover:after {
	background: linear-gradient(#0000, #000000b3);
}
.block_types__list_title {
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    font-size: 26px;
    line-height: 30px;	
	font-family: ClearSans-Bold;
	font-weight: 700;
	margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}
.block_types__list_text {
    color: #eeba47;
    text-align: right;
	font-size: 14px;
	margin: 0 0 14px 0;
    position: relative;
    z-index: 1;
}
.block_types__list > div:last-of-type {
    background-image: linear-gradient(#00000080, #00000080) !important;
    background-position: 0 0;
    background-size: auto;	
}
.block_types__list > div:last-of-type a {
	text-decoration: none;
}
.block_concrete {
    margin: 100px 0 60px 0;
}
.block_concrete__list {
	max-width: 960px;
	margin: 30px auto 0 auto;
	gap: 20px;
}
.block_concrete__list > div {
	flex: 0 calc(25% - 16px);
	transition: all 0.15s ease-in;
}
.block_concrete__list > div:hover {
	opacity: 0.9;
}
.block_concrete__list_photo {
	height: 220px;
	overflow: hidden;
}
.block_concrete__list_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block_config {
	padding: 40px 0;
	background-color: #f6f6f6;
}
.block_config__list {
	gap: 20px;
}
.block_config__list > div {
	flex: 0 calc(33.33% - 16px);
    background-color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 0 8px #0000001a;
	position: relative;
	height: 410px;
}
.block_config__list_photo {
	height: 170px;
	overflow: hidden;
}
.block_config__list_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block_config__list_price {
    color: #fff;
    text-align: center;
    background-color: #e95500;
    font-size: 22px;
    text-decoration: none;
    display: flex;
	align-items: center;
	justify-content: center;
	height: 38px;
}
.block_config__list_subtitle {
    color: #000;
    text-align: left;
    background-color: #0000;
    padding: 10px 10px 10px 25px;
    font-size: 15px;
    display: block;	
}
.block_config__list_title {
	color: #000;
    margin-bottom: 12px;
    font-family: ClearSans-Bold;
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
    text-decoration: none;
    transition: color .2s;
    display: block;	
	padding: 25px 10px 0 10px;
	text-align: center;
	transition: all 0.15s ease-in;
}
.block_config__list_title:hover {
	color: #e95500;
}
.block_config__list_data {
	color: #333;
	font-size: 12px;
	gap: 12px;
    font-family: ClearSans-Light;
    font-weight: 300;
	justify-content: center;
}
.block_config__list_data > span:nth-child(1) {
    font-family: ClearSans-Bold;
    font-weight: 700;
}
.block_config__list_btns {
	justify-content: center;
	gap: 20px;
	position: absolute;
	bottom: -15px;
	width: 100%;
}
.block_config__list_btns > a,
.block_config__list_order {
	height: 30px;
	background-color: #eeba47;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	text-transform: uppercase;
    font-family: ClearSans-Bold;
    font-weight: 700;
	cursor: pointer;
}
.block_photo_process {
	background-color: #f6f6f6;
	padding: 30px 0 60px 0;
}
.block_photo_process__list {
	gap: 20px;
	margin: 40px 0 0 0;
}
.block_photo_process__list > div {
	flex: 0 calc(25% - 16px);
	box-shadow: 0 0 0 1px #00000026, 0 1px 10px #00000026;
}
.block_photo_process__list_photo {
	height: 220px;
}
.block_photo_process__list_photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.block_2_info {
	background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
	height: 527px;
}
.block_2_info__title {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 26px;
    font-family: ClearSans-Medium;
    font-size: 45px;
    font-weight: 500;
    line-height: 50px;
    position: sticky;	
    max-width: 700px;
}
.block_2_info__text {
	font-size: 14px;
	line-height: 18px;
    max-width: 700px;
	margin: 0 0 24px 0;
	color: #fff;
}
.block_2_info__btn {
	background-color: #eeba47;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	font-size: 11px;
	color: #fff;
	text-transform: uppercase;
	padding: 0 15px;
	transition: all 0.15s ease-in;
	width: fit-content;
	cursor: pointer;
}
.block_2_info__btn:hover {
	background: #000;
	color: #fff;
}
.block_2_info__overlay {
    color: #fff;
    background-color: #00000040;
    width: 100%;
    height: 100%;
    padding-top: 155px;
    padding-bottom: 155px;	
}
.block_what_stairs {
	padding: 20px 0;
}
.block_what_stairs__inner {
	gap: 70px;
}
.block_what_stairs__inner > div {
	flex: 0 calc(50% - 60px);
}
.block_what_stairs__inner h3 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 34px;
	color: #333;
	text-align: center;
}
.block_what_stairs__subtitle {
    margin-top: 22px;
    margin-bottom: 22px;
    padding-top: 0;
    font-size: 17px;
    line-height: 24px;	
}
.block_what_stairs__text {
	color: #333;
	font-size: 14px;
	line-height: 18px;
}
.block_what_stairs__text .btn__popup_1 {
	text-decoration: underline;
	cursor: pointer;
	transition: all 0.15s ease-in;
}
.block_what_stairs__text .btn__popup_1:hover {
    color: #e95500;
    text-decoration: none;	
}
.block_what_stairs__btn {
	text-decoration: underline;
}
.block_what_stairs__text a {
	display: block;
	margin-top: 14px;
	transition: all 0.15s ease-in;
}
.block_what_stairs__text a:hover {
	color: #e95500;
    text-decoration: none;	
}
.block_what_stairs__benefit {
	margin: 45px 0 0 0;
}
.block_what_stairs__benefit > div {
	flex: 0 50%;
}
.block_what_stairs__benefit_title {
    font-size: 16px;
    font-weight: 400;	
	line-height: 24px;
	margin: 0 0 10px 0;
}
.block_what_stairs__benefit_text {
    font-size: 14px;
	line-height: 18px;
}
.block_what_stairs__benefit_header {
    gap: 10px;
    align-items: center;
}
.block_what_stairs__info {
	color: #fff;
	text-decoration: none;	
}
.block_what_stairs__info_1 {
	height: 238px;
	background-size: cover !important;
	overflow: hidden;
	display: block;
	margin: 0 0 15px 0;
    background-position: center;
}
.block_what_stairs__info_2 {
	height: 196px;
	background-size: cover !important;
	overflow: hidden;
	display: block;
    background-position: center;
}
.block_what_stairs__info_title {
	font-size: 18px;
    line-height: 24px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
.block_what_stairs__info_subtitle {
	font-size: 14px;
	line-height: 18px;
	margin: 0 0 20px 0;
}
.block_what_stairs__info_btn {
	background-color: #eeba47;
	font-size: 11px;
	color: #fff;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	padding: 0 15px;
	width: fit-content;
	transition: all 0.15s ease-in;
}
.block_what_stairs__info_btn:hover {
	background: #000;
}
.block_what_stairs__info_overlay {
    background-color: #0000004d;
    width: 100%;
    height: 100%;
    padding: 35px 20% 35px 35px;
    transition: background-color .2s;	
	padding: 35px;
}
.block_what_stairs__info_overlay:hover {
	background-color: #00000080;
}
.block_benefits {
	margin: 40px 0 0 0;
	height: 705px;   
	background-size: cover !important;
	background-position: center;
}
.block_benefits .container {
	position: relative;
	height: calc(100% - 50px);
}
.block_benefits__list > div {
	margin: 0 0 60px 0;
}
.block_benefits__img {
    position: absolute;
    bottom: 0;
    right: -170px;
}
.block_benefits__overlay {
    background-color: #ffffffb3;
    padding-top: 50px;
    height: 100%;
}
.block_benefits__list { 
	max-width: 540px;
	margin: 50px 0 0 0;
}
.block_benefits__list_inner > div:nth-child(1) {
	flex: 0 60px;
}
.block_benefits__list_inner > div:nth-child(2) {
	flex: 0 calc(100% - 60px);
	padding: 0 0 0 20px;
}
.block_benefits__list_icon {
    background-color: #eeba47;
    width: 60px;
    height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.block_benefits__list_icon img {
	height: 30px;
	width: auto;
}
.block_benefits__list_title {
	text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;	
	margin: 0 0 15px 0;
}
.block_benefits__list_text {
    font-size: 14px;
	font-family: ClearSans-Light;
    font-weight: 300;
    line-height: 20px;	
}
.block_benefits__name {
	font-style: italic;
	font-size: 14px;
	line-height: 20px;
	max-width: 540px;
	text-align: center;
}
.block_steps {
    color: #fff;
    background-color: #212121;	
	padding: 60px 0;
}
.block_steps__phone a {
	text-align: center;
	color: #fff;
	font-size: 30px;
	padding: 0 0 10px 0;
	text-decoration: none;
	display: block;
}
.block_steps__title {
	text-align: center;
	padding: 20px 0;
	font-size: 16px;
	line-height: 21px;
	position: relative;
    font-weight: 300;	
	font-family: ClearSans-Light;
}
.block_steps__title:after {
    content: "";
    background-color: #eeba47;
    width: 90px;
    height: 2px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.block_steps__list {
	gap: 30px;
}
.block_steps__list > div {
	flex: 0 calc(25% - 25px);
}
.block_steps__list_icon {
	background-color: #eeba47;
	height: 70px;
	width: 70px;
	border-radius: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px auto;
}
.block_steps__list_icon img {
	height: 30px;
	width: auto;
}
.block_steps__list_title {
    font-size: 16px;
    font-weight: 400;	
	padding: 0 0 10px 0;
}
.block_steps__list_text {
    font-size: 14px;
	line-height: 18px;
    font-weight: 300;	
	font-family: ClearSans-Light;
}
.block_our_cases__inner {
	gap: 50px;
}
.block_our_cases__inner > div:nth-child(2) {
	flex: 0 330px;
}
.block_our_cases__inner > div:nth-child(1) {
	flex: 0 calc(100% - 380px);
}
.block_our_cases {
	background-size: cover !important;
}
.block_our_cases__overlay {
    background-color: #f5f5f5b3;
    background-image: none;
	padding: 100px 0;
}
.block_our_cases__list {
	gap: 20px;
}
.block_our_cases__list > div {
	flex: 0 calc(50% - 16px);
	background: #fff;
	padding: 0 0 25px 0;
	box-shadow: 0 0 8px #0000001a;
}
.block_our_cases__list_img {
	height: 300px;
	overflow: hidden;
	position: relative;
}
.block_our_cases__list_img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.block_our_cases__list_price {
    color: #fff;
    text-transform: uppercase;
    background-color: #eeba47;
    padding-left: 11px;
    padding-right: 11px;
    line-height: 29px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 13px;
    height: 29px;
    align-items: center;
    z-index: 22;
}
.block_our_cases__list_title {
	text-align: center;
}
.block_our_cases__list_title a {
    padding: 25px 15px 0 15px;
    text-align: center;
	font-size: 17px;
    font-weight: 400;
    line-height: 20px;
	text-decoration: none;
	color: #333;
	display: block;
	margin: 0 0 12px 0;
}
.block_our_cases__list_text {
	padding: 0 15px;
	color: #000;
	font-size: 13px;
	line-height: 19px;
	text-align: center;
}
.block_our_cases__list_link {
	background-color: #000;
	height: 30px;
	width: 100px;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	text-decoration: none;
	margin: 12px auto 0 auto;
	transition: all 0.15s ease-in;
}
.block_our_cases__list_link:hover {
	background: #000;
	color: #fff;
}
.block_our_cases__title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 34px;	
	text-align: center;
}
.block_our_cases__text p {
	font-size: 14px;
	line-height: 18px;
	margin: 0 0 22px 0;
}
.block_our_cases__text a {
	color: #1ca6ac;
}
.block_info_2 {
	padding: 20px 0;
}
.block_info_2__inner > div:nth-child(1) {
	flex: 0 380px;
}
.block_info_2__inner > div:nth-child(2) {
	flex: 0 calc(100% - 380px);
	padding: 0 0 0 50px;
}
.block_info_2_1 {
	color: #fff;
    background-color: #1ca6ac;
    height: 425px;
    padding: 40px 40px 70px 65px;
    position: relative;	
}
.block_what_stairs__info_2_title {
	text-transform: uppercase;
	font-family: ClearSans-Bold;
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 15px 0;
	position: relative;
	z-index: 1;
}
.block_what_stairs__info_2_subtitle {
	font-family: ClearSans-Bold;
	font-weight: 700;
	font-size: 18px;	
	line-height: 24px;
	position: relative;
	z-index: 1;
}
.block_what_stairs__info_2_call {
	font-family: ClearSans-Bold;
	font-weight: 700;
	font-size: 18px;	
	line-height: 24px;	
	margin: 20px 0 10px 0;
	position: relative;
	z-index: 1;
	gap: 10px;
}
.block_what_stairs__info_2_call a {
	color: #fff;
	text-decoration: none;
}
.block_what_stairs__info_2_text {
	font-size: 14px;
	line-height: 18px;
	margin: 0 0 14px 0;
	position: relative;
	z-index: 1;
}
.block_what_stairs__info_2_btn {
	background-color: rgb(238, 186, 71);
	height: 30px;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	padding: 0 15px;
	transition: all 0.15s ease-in;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	margin: 25px 0 0 0;
	cursor: pointer;
}
.block_what_stairs__info_2_btn:hover {
	background: #000;
	color: #fff;
}
.block_info_2__icon {
	position: absolute;
    bottom: 20px;
    right: 20px;
	opacity: 0.2;
}
.block_what_stairs__info_2_2_title {
	text-align: center;
    margin-top: 0;
    font-size: 30px;
    line-height: 40px;
	font-family: ClearSans-Bold;
	font-weight: 700;
}
.block_what_stairs__info_2_2_subtitle {
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 300;	
	font-family: ClearSans-Light;
    font-size: 16px;
    line-height: 21px;	
	text-align: center;
}
.block_info_2_2__blog {
	gap: 30px;
}
.block_info_2_2__blog > div:nth-child(1) {
	flex: 0 150px;
}
.block_info_2_2__blog > div:nth-child(2) {
	flex: 0 calc(100% - 180px);
}
.block_info_2_2__blog > div:nth-child(1) img {
	width: 100%;
	height: auto;
}
.block_info_2_2__title_2 {
	color: rgb(0, 0, 0);
    margin-top: 9px;
    transition: color 0.2s;	
	font-size: 18px;
	line-height: 24px;
	font-family: ClearSans-Bold;
	font-weight: 700;
	text-decoration: none;
}
.block_info_2_2__title_2:hover {
	color: rgb(233, 85, 0);
}
.block_info_2_2__link {
	background-color: rgb(238, 186, 71);
	height: 30px;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	padding: 0 15px;
	transition: all 0.15s ease-in;
	text-decoration: none;
	margin: 11px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}
.block_info_2_2__link:hover {
	background: #000;
	color: #fff;
}
.block_info_2_2__data {
	color: rgb(150, 150, 150);
    margin-top: 0px;
    margin-bottom: 1px;
    font-size: 12px;
    line-height: 18px;
    display: block;	
	position: relative;
	padding: 0 0 0 22px;
	margin: 10px 0 15px 0;
}
.block_info_2_2__data:before {
	content: "";
	display: block;
	background: url(images/icon-11.png) no-repeat;
	position: absolute;
	left: 0;
	top: 3px;
	height: 15px;
	width: 15px;
	background-size: cover !important;
}
.block_info_2_2__blog {
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid rgb(222, 222, 222);
}
/* Наши проекты */
.page_projects__block_start {
	height: 500px;
	background-size: cover !important;
	background-position: 50% 75%;
}
.page_projects__block_start_overlay {
    background-color: rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 100%;
}
.page_projects__block_start h1 {
	color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 35px;	
	padding: 45px 0 0 0;
}
.page_projects__block_start h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;	
	font-family: ClearSans-Light;
	color: #fff;
}
.page_projects__projects {
	padding: 50px 0;
}
.page_projects__projects_list > div {
	background-size: cover !important;
	background-position: center;
	margin: 0 0 40px 0;	
}
.page_projects__projects_overlay {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: linear-gradient(to right, rgb(0, 0, 0) -2%, rgb(0, 0, 0) -2%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0) 59%);
    width: 100%;
    height: 100%;	
	padding: 150px 55px 55px;
}
.page_projects__projects_title {
	color: #fff;
    font-size: 30px;
    line-height: 40px;
	margin: 0 0 15px 0;
	font-family: ClearSans-Bold;
	font-weight: 700;
	max-width: 395px;
}
.page_projects__projects_subtitle {
    font-size: 16px;
    font-weight: 200;
    line-height: 21px;
	color: #fff;
    font-weight: 300;	
	font-family: ClearSans-Light;
	max-width: 395px;
}
.page_projects__projects_text {
    font-size: 14px;
    font-weight: 200;
    line-height: 18px;
    color: #fff;
    margin: 20px 0 30px 0;
    max-width: 385px;
}
.page_gallery__list {
	padding: 50px 0;
}
.page_gallery__list h2 {
    font-size: 30px;
    line-height: 40px;
	font-family: ClearSans-Bold;
	font-weight: 700;
	padding: 0 0 30px 0;
	text-align: center;
}
.page_gallery .page_projects__block_start {
	background-position: 50%;
}
.page_gallery__list_container {
	gap: 20px;
	margin: 0 0 40px 0;
}
.page_gallery__list_container > div {
	flex: 0 calc(25% - 16px);
	box-shadow: 0 0 0 1px #00000026, 0 1px 10px #00000026;
	transition: all 0.15s ease-in;
}
.page_gallery__list_container > div:hover {
	opacity: 0.9;
}
.page_gallery__list_photo {
	overflow: hidden;
    height: 100%;
}
.page_gallery__list_container > div img {
    width: 100%;
	height:  100%;
    object-fit: cover;    
}
/* Технологии */
.block_screen_1_2 h1 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 35px;
    padding: 45px 0 0 0;	
	font-weight: 400;
}
.block_screen_1_2 h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    font-family: ClearSans-Light;
    color: #fff;	
}
.block_screen_1_2 {
	height: 1000px;
	background-size: cover !important;
	background-position: center;
	position: relative;
}
.block_screen_1_2__benefits {
    max-width: 460px;
    margin: 350px 0 0 0;
}
.block_screen_1_2__benefits_inner {
	margin: 0 0 22px 0;
}
.block_screen_1_2__benefits_inner > div:nth-child(1) {
	flex: 0 60px;
}
.block_screen_1_2__benefits_inner > div:nth-child(2) {
	flex: 0 calc(100% - 60px);
	padding: 0 0 0 15px;
}
.block_screen_1_2__benefits_icon {
	width: 60px;
	height: 60px;
	background-color: #eeba47;
	display: flex;
	align-items: center;
	justify-content: center;
}
.block_screen_1_2__benefits_icon img {
	height: 30px;
	width: auto;
}
.block_screen_1_2__benefits_inner h4 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    margin: 0 0 8px 0;
	font-family: ClearSans-Regular;
	font-weight: 400;
}
.block_screen_1_2__benefits_inner p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    font-family: ClearSans-Light;
	color: #fff;
}
.block_screen_1_2__benefits_inner p a {
	color: #fff;
}
.block_technology_2 {
	padding: 50px 0;
	background-color: #f6f6f6;
}
.page_stairs .block_technology_2 {
	padding: 50px 0 0 0;
}
.block_technology__list_container {
	margin: 30px 0 0 0;
}
.page_technology .block_technology__list_container > .block_technology__list:nth-child(odd) > div:nth-child(1) {
	order: 1;
}
.page_technology .block_technology__list_container > .block_technology__list:nth-child(odd) > div:nth-child(2) {
	order: 2;
	padding: 0 0 0 20px;
}
.page_technology .block_technology__list_container > .block_technology__list:nth-child(even) > div:nth-child(1) {
	order: 2;
}
.page_technology .block_technology__list_container > .block_technology__list:nth-child(even) > div:nth-child(2) {
	order: 1;
	padding: 0 20px 0 0;
}
.block_technology__list_container > .block_technology__list:nth-child(odd) > div:nth-child(1) {
	order: 2;
}
.block_technology__list_container > .block_technology__list:nth-child(odd) > div:nth-child(2) {
	order: 1;
	padding: 0 20px 0 0;
}
.block_technology__list_container tr {    
    height: 44px;
}
.block_technology__list_container td {
	border-bottom: 1px #000 solid;
}
.block_technology__list_container tr:last-of-type td {
	border-bottom: none;
}
.block_technology__list_container td:nth-child(1) {
	border-right: 1px #000 solid;
}
.block_technology__list {
	padding: 30px 0;
}
.block_technology__list > div:nth-child(1) {
	flex: 0 380px;
}
.block_technology__list > div:nth-child(2) {
	flex: 0 calc(100% - 380px);
	padding: 0 0 0 20px;
}
.block_technology__list_img {
	width: 100%;
	height: auto;
}
.block_technology__list_text p {
	font-size: 14px;
	line-height: 18px;
	padding: 0 0 15px 0;
}
.block_technology__list_texteditor p,
.block_technology__list_texteditor div {
	font-size: 16px;
	line-height: 21px;
	font-weight: 400;
	margin: 0 0 20px 0;
}
.block_technology__list_texteditor h2 {
	text-align: left;
	font-size: 21px;
    font-family: ClearSans-Bold;
	font-weight: 700;
	margin: 25px 0 20px 0;
}
.block_technology__list_texteditor h1 {
	font-size: 30px;
    line-height: 40px;
	text-align: center;
}
.block_technology__list_texteditor a {
	color: #e95500;
	transition: all 0.15s ease-in;
}
.block_technology__list_texteditor a:hover {
	color: #eeba47;
    text-decoration: none;
}
.block_technology__list_texteditor img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
}
.block_technology__list_texteditor ul {
	padding: 0 0 0 15px;
	margin: 20px 0;
}
.block_technology__list_texteditor li {
	padding: 0 0 8px 20px;
	font-size: 16px;
	line-height: 18px;
	position: relative;
}
.block_technology__list_texteditor li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 20px;
	background: #333;
	position: absolute;
	left: 0;
	top: 7px;
}
.block_technology_2 .btn_yellow {
    margin: 20px 0;
}
.block_technology__photos_list {
	gap: 20px;
}
.block_technology__photos_list > div {
	flex: 0 calc(25% - 15px);
}
.block_technology__photos_list > div:hover {
	opacity: 0.9;
}
.block_technology__photos_photo {
	height: 220px;
	overflow: hidden;
    box-shadow: 0 0 0 1px #00000026, 0 1px 10px #00000026;
}
.block_technology__photos_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page_contacts__screen_2 {
	padding: 40px 0;
}
.page_contacts__screen_2_inner > div {
	flex: 0 50%;
}
.page_contacts__screen_2_inner > div:nth-child(1) {
	overflow: hidden;
}
.page_contacts__screen_2_podpis {
	position: absolute;
    color: #afafaf;
    background-color: #0009;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 12px;
    line-height: 30px;
    bottom: 0;
    right: 20px;
	z-index: 1;
}
.page_contacts__screen_2_photo {
	position: relative;
	overflow: hidden;
}
.page_contacts__screen_2_photo img {
	width: auto;
	height: 580px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.page_contacts__screen_2_inner > div:nth-child(2) {
	background-color: #eaeaea;
	padding: 30px 55px;
}
.page_contacts__screen_2_text p {
	font-size: 17px;
	line-height: 140%;
	margin: 0 0 20px 0;
}
.page_contacts__screen_2_text a {
	color: #e95500;
	text-decoration: none;
}
.page_contacts__screen_2_text a:hover {
    color: #eeba47;
    text-decoration: none;	
}
.page_contacts__screen_2_phone {
    color: #333;
    font-size: 30px;	
	line-height: 100%;
	display: block;
	margin: 0 0 25px 0;
	text-decoration: none;
}
.page_contacts input {
	height: 45px !important;
	max-width: 360px !important;
	border-radius: 0 !important;
}
.page_contacts input:hover,
.page_contacts textarea:hover {
    border-color: #9d9d9d !important;
}
.page_contacts textarea {
	height: 100px !important;
	max-width: 360px !important;
	resize: none;
	border-radius: 0 !important;
}
.frm_button_submit {
	background: #000 !important;
	width: 138px !important;
	height: 30px !important;
	color: #fff !important;
	font-size: 11px !important;
	text-transform: uppercase !important;
	margin: 12px 0 0 0 !important;
	padding: 0 !important;
	transition: all 0.15s ease-in;
	outline: none !important;
	border: none !important;
}
.frm_button_submit:hover {
	background-color: #eeba47 !important;
}
.page_projects_single .page_projects__block_start {
    background-position: center;
}
.page_projects_single .page_projects__block_start h2 {
	text-transform: uppercase;
	font-size: 20px;
	font-family: ClearSans-Medium;
	font-weight: 500;
	display: flex;
	gap: 12px;
	margin: 20px 0 0 0;
}
.page_projects_single .page_projects__block_start h2 > span:nth-child(1) {
	font-weight: 700;
}
.page_projects_single .page_projects__block_start h2 > span:last-of-type {
	opacity: .5;
}
.page_projects_single__content h1 {
	font-size: 38px;
    line-height: 42px;
	margin: 0 0 10px 0;
	font-weight: 700;
}
.page_projects_single__content > div:nth-child(1) {
	flex: 0 calc(100% - 380px);
	padding: 30px 50px 30px 0;
}
.page_projects_single__content > div:nth-child(2) {
	flex: 0 380px;
}
.page_projects_single__photos_list img {
	width: 100%;
	height: auto;
	margin: 0 0 15px 0;
}
.page_projects_single__texteditor p {
	font-size: 14px;
	line-height: 18px;
	margin: 0 0 15px 0;
}
.page_projects_single__texteditor h2,
.page_projects_single__texteditor h3,
.page_projects_single__texteditor h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 23px;	
}
.page_projects_single__texteditor img {
	max-width: 100%;
	height: auto;
}
.page_projects_single__right_container {
	box-shadow: 0 0 12px #00000026;
	background: #fff;
}
.page_projects_single__right_1 {
	position: relative;
	height: 380px;
	overflow: hidden;
}
.page_projects_single__right_photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page_projects_single__right_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page_projects_single__right_price {
    color: #fff;
    text-transform: uppercase;
    background-color: #eeba47;
    padding-left: 11px;
    padding-right: 11px;
    line-height: 29px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 13px;
	z-index: 2;
}
.page_projects_single__right_2 {
    background-color: #fff;    
    padding: 0 0 11px 0;
    position: relative;
}
.page_projects_single__right_2_inner {
	border-bottom: 1px solid #eaeaea;
	padding: 35px 35px 25px;
}
.page_projects_single__right_2_inner > div:nth-child(1) {
	flex: 0 90px;
}
.page_projects_single__right_2_inner > div:nth-child(2) {
	flex: 0 calc(100% - 90px);
	padding: 0 0 0 15px;
}
.page_projects_single__right_2_inner > div:nth-child(1) img {
	width: 100%;
	height: auto;
	border-radius: 100px;
}
.page_projects_single__right_title {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 700;	
	font-family: ClearSans-Bold;
}
.page_projects_single__right_subtitle {
    color: #eeba47;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 16px;	
	text-transform: uppercase;
    font-weight: 700;	
	font-family: ClearSans-Bold;
}
.page_projects_single__right_text {
    font-size: 14px;
    line-height: 18px;	
}
.page_projects_single__right_2 .btn_black {
	margin: 11px auto 0 auto;
}
.page_projects_single__texteditor blockquote {
    border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;	
}
.page_projects_single__texteditor blockquote p {
	margin: 0;
	padding: 0;
}
.page_calc__content {
	padding: 50px 0;
}
.page_calc__form {
	margin: 0 auto;
	max-width: 772px;
}
.form_calc__item_radio {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
}
.form_calc__radio_bg {
    background-color: rgba(255, 187, 25, 0);
    border: 1px solid #eceff1;
    transition: opacity .3s ease;
	cursor: pointer;
}
.form_calc__radio_bg.active {
	background-color: rgba(255, 187, 25, 0.35);
	border: 1px solid #ffbb19;
}
.form_calc__item_radio > div {
    flex: 0 calc(25% - 12px);
    border: 1px solid #eceff1;
    height: 328px;
	cursor: pointer;
}
.form_calc__item_radio_img {
	width: 100%;
	height: auto;
}
.form_calc__item_radio_title {
	color: #37474f;
	font-size: 18px;
    font-weight: 700;	
	font-family: ClearSans-Bold;
	padding: 0 12px;
}
.form_calc__item_radio_subtitle {
    color: #37474f;
    font-size: 14px;
    line-height: 15px;
    padding: 0 12px;
}
.form_calc__item_radio_price {
	color: rgb(233, 85, 0);
	font-size: 14px;
	position: absolute;
	bottom: 16px;
	width: calc(100% - 24px);
	left: 12px;
}
.form_calc__radio {
	position: relative;
}
.form_calc__item_radio input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}
.form_calc__item_radio_check {
	position: absolute;
	right: 10px;
	top: 15px;
}
.form_calc__item_title {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 5px 0;
}
.form_calc__item_title span {
	color: red;
}
.form_calc__item_subtitle {
	font-size: 16px;
	line-height: 22px;
}
.form_calc__item_radio_subtitle.orange {
    color: #e95500 !important;
    padding-left: 35px;
    margin: 5px 0 0 0;
}
.form_calc__radio_custom {
	margin: 20px 0 0 0;
}
.form_calc__item_half {
	gap: 40px;
	margin: 40px 0 0 0;
}
.form_calc__item_half > div {
	flex: 0 calc(50% - 30px);
}
.form_calc__item {
	margin: 40px 0 0 0;
}
.form_calc__checkbox_custom {
	position: relative;
	margin: 20px 0 0 0;
}
/* Скрываем стандартную радиокнопку и убираем ее из потока */
.form_calc__radio_custom input[type="radio"] {
	position: absolute;
	z-index: 4;
	opacity: 0;
	width: 100%;
	height: 100%;
}
/* Стилизация метки радиокнопки */
.form_calc__radio_custom input[type="radio"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
	z-index: 1;
	color: #37474f;
    font-size: 16px;
    line-height: 18px;
	transition: all 0.1s ease-in;
}
/* Кастомная радиокнопка */
.form_calc__radio_custom input[type="radio"] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(55, 71, 79, 0.6);
    border-radius: 50%;
	transition: all 0.1s ease-in;
}
/* Состояние выбранной радиокнопки */
.form_calc__radio_custom input[type="radio"]:checked + label::before {
    background-color: #fff;
	border: 6px solid #ffbb19;
    width: 12px;
    height: 12px;
	transition: all 0.1s ease-in;
}
/* Скрываем стандартную радиокнопку и убираем ее из потока */
.form_calc__checkbox_custom input[type="checkbox"] {
	position: absolute;
	z-index: 4;
	opacity: 0;
	width: 100%;
	height: 100%;
}
/* Стилизация метки радиокнопки */
.form_calc__checkbox_custom input[type="checkbox"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    z-index: 1;
    color: #37474f;
    font-size: 16px;
    line-height: 18px;
    transition: all 0.1s ease-in;
	display: block;
}
/* Кастомная радиокнопка */
.form_calc__checkbox_custom input[type="checkbox"] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(55, 71, 79, 0.6);
    border-radius: 4px;
	transition: all 0.1s ease-in;
	background-size: 60% !important;
    background-repeat: no-repeat;
    background-position: 5px 6px;
}
/* Состояние выбранной радиокнопки */
.form_calc__checkbox_custom input[type="checkbox"]:checked + label::before {
    background: #ffbb19 url(images/form-check.svg);
	border: 2px solid #ffbb19;
    width: 20px;
    height: 20px;
	transition: all 0.1s ease-in;
	background-size: 50% !important;
	background-repeat: no-repeat !important;
	background-position: center; 
}

      .range {
        --range-track-top: 90px;
        --range-output-left: calc(var(--value) * 1%);

        --tickmarks-w: calc(100% - 18px);
        --option-after-h: 30px;
        --option-after-top: -30px;

        --range-output-offset-xy: calc(var(--value) * -0.95%), 0;
        --range-output-margin: calc(6 / (var(--value) + 1) * 1px);

        position: relative;
        display: grid;
        width: 100%;
      }
      .range-label {
        margin-block-end: 50px;
        font-size: 24px;
        font-weight: 500;
      }
      .range-input {
        width: 100%;
        height: 30px;
        border-radius: 10px;
        appearance: none;
        background: none;
      }

      .range-input::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 50%;
        background-color: #f9b921;
        transition: 300ms;
      }
      .range-input::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 50%;
		background-color: #f9b921;
        transition: 300ms;
      }
      .range-input:focus-visible {
        outline-offset: 7px;
        outline: 1px solid #c56fff;
      }
      .range-input:focus-visible::-webkit-slider-thumb {
        outline: 3px solid #41e847;
      }
      .range-input:focus-visible::-moz-range-thumb {
        outline: 3px solid #41e847;
      }
      .track {
			position: absolute;
			top: var(--range-track-top);
			width: 100%;
			height: 3px;
			border-radius: 4px;
			background-color: #ebeef1;
			z-index: -1;
      }
      .progress {
        position: absolute;
        top: var(--range-track-top);
        width: calc(var(--value) * 14%);
        height: 3px;
        border-radius: 10px;
        background-color: #f9b921;
        z-index: -1;
      }
      .range-output {
        position: absolute;
        top: 22px;
        left: calc(var(--value) * 1%);
        margin-left: calc(var(--value) * 13%);
        padding: 0 4px;
        background: transparent;
        border-radius: 10px;
        font-size: 18px;
        text-align: end;
        transform: translate(var(--range-output-offset-xy));
        user-select: none;
        transition: 300ms;
      }
      .range-input:hover + .range-output,
      .range-input:focus-visible + .range-output {
        background-color: #f9b921;
        transition: 0ms;
      }

	.tickmarks {
		width: var(--tickmarks-w);
		height: 6px;
		padding-inline: 4px 0;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		color: white;
		position: relative;
		top: 20px;
	}
      option {
        position: relative;
        padding-top: 10px;
        padding-left: 4px;
        width: 10px;
        font-size: 14px;
		color: #969696;
      }

	option::after {
		content: "";
		display: initial;
		position: absolute;
		top: -1px;
		left: 6px;
		width: 3px;
		height: 5px;
		margin: 0 auto;
		background: #f9b921;
		z-index: -1;
	}
      .range_2 {
        --range-track-top: 90px;
        --range-output-left: calc(var(--value) * 1%);

        --tickmarks-w: calc(100% - 18px);
        --option-after-h: 30px;
        --option-after-top: -30px;

        --range-output-offset-xy: calc(var(--value) * -0.95%), 0;
        --range-output-margin: calc(6 / (var(--value) + 1) * 1px);

        position: relative;
        display: grid;
        width: 100%;
      }
      .range-label-2 {
        margin-block-end: 50px;
        font-size: 24px;
        font-weight: 500;
      }
      .range-input-2 {
        width: 100%;
        height: 30px;
        border-radius: 10px;
        appearance: none;
        background: none;
      }

      .range-input-2::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 50%;
        background-color: #f9b921;
        transition: 300ms;
      }
      .range-input-2::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 50%;
		background-color: #f9b921;
        transition: 300ms;
      }
      .range-input-2:focus-visible {
        outline-offset: 7px;
        outline: 1px solid #c56fff;
      }
      .range-input-2:focus-visible::-webkit-slider-thumb {
        outline: 3px solid #41e847;
      }
      .range-input-2:focus-visible::-moz-range-thumb {
        outline: 3px solid #41e847;
      }
      .track_2 {
			position: absolute;
			top: var(--range-track-top);
			width: 100%;
			height: 3px;
			border-radius: 4px;
			background-color: #ebeef1;
			z-index: -1;
      }
      .progress_2 {
        position: absolute;
        top: var(--range-track-top);
        width: calc(var(--value) * 33%);
        height: 3px;
        border-radius: 10px;
        background-color: #f9b921;
        z-index: -1;
      }
      .range-output-2 {
        position: absolute;
        top: 22px;
        left: calc(var(--value) * 1%);
        margin-left: calc(var(--value) * 31.5%);
        padding: 0 4px;
        background: transparent;
        border-radius: 10px;
        font-size: 18px;
        text-align: end;
        transform: translate(var(--range-output-offset-xy));
        user-select: none;
        transition: 300ms;
      }
      .range-input-2:hover + .range-output-2,
      .range-input-2:focus-visible + .range-output-2 {
        background-color: #f9b921;
        transition: 0ms;
      }

	.tickmarks_2 {
		width: var(--tickmarks-w);
		height: 6px;
		padding-inline: 4px 0;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		color: white;
		position: relative;
		top: 20px;
	}
.form_calc__item_range_2 {
	margin: 80px 0 0 0;
}
.page_calc__form input[type="tel"] {
    border-radius: 6px;
    padding: 8px 11px;
    min-height: 44px;
    background-color: #eceff1;
    border: 2px solid #eceff1;
    color: #37474f;
    width: 100%;
    margin: 20px 0 30px 0;
}
.page_calc__form input[type="submit"] {
	color: #fff;
    border: 2px solid #ffbb19;
    background-color: #ffbb19;	
	border-radius: 4px;
	height: 40px;
	width: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	cursor: pointer;
}
.block_calc__col_3 {
	gap: 30px;
	margin: 40px 0 0 0;
}
.block_calc__col_3 > div {
	flex: 0 calc(33.33% - 20px);
}
.block_calc__col_3_text {
	font-size: 16px;
    font-weight: 400;	
}
.block_calc__col_3_img {
	width: 100%;
	height: auto;
	margin: 20px 0 0 0;
}
.block_calc__col_2 {
	gap: 30px;
	margin: 40px 0 0 0;
}
.block_calc__col_2 > div {
	flex: 0 calc(50% - 20px);
}
.block_calc__col_2_text {
	font-size: 16px;
    font-weight: 400;	
}
.block_calc__col_2_img {
	width: 100%;
	height: auto;
	margin: 20px 0 0 0;
}
.block_calc__list_texteditor h2 {
	text-align: center;
	font-size: 30px;
    line-height: 40px;
	margin: 30px 0 20px 0;
}
.block_calc__list_texteditor p {
    margin-top: 30px;
    font-family: ClearSans-Light;
    font-weight: 300;
}
.page-template-page-calc .block_photo_process {
    background-color: #fff;
}
.page_blog .page_projects__block_start h2 {
	color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 35px;	
	padding: 110px 0 0 0;
	max-width: 700px;
}
.page_blog__content {
	background-color: #f6f6f6;
	padding: 60px 0;
}
.page_blog__content h2,
.page_blog__content h3,
.page_blog__content h4,
.page_blog__content h5,
.page_blog__content h6 {
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 23px;	
}
.page_blog__content p {
    font-size: 14px;
    line-height: 18px;	
}
.page_blog__content p {
	margin: 0 0 10px 0;
}
.page_blog__content img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
}
.page_blog__header {
    object-fit: fill;
    background-color: #fff;
    background-clip: border-box;
    margin-bottom: 45px;
    padding: 25px 35px;
    transition: opacity .2s, opacity .2s;
    position: static;
    overflow: visible;
    box-shadow: 0 0 11px #0003;	
}
.page_blog__header {
    gap: 20px;
    align-items: center;
}
.page_blog__header > div:nth-child(1) {
	flex: 0 90px;
}
.page_blog__header > div:nth-child(2) {
	flex: 0 calc(100% - 236px);
}
.page_blog__header > div:nth-child(3) {
	flex: 0 106px;
}
.page_blog__header_avatar {
	width: 90px!important;
	height: 90px!important;
	border-radius: 100px;
	margin: 0 !important;
}
.page_blog__header_name {
    color: #eeba47;
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 700;
	font-family: ClearSans-Bold;
}
.page_blog__header_subtitle {
	font-size: 14px;
    line-height: 18px;
}
.page_blog__header_date {
	color: #969696;
    font-size: 12px !important;
    line-height: 18px !important;
	position: relative;
	padding: 0 0 0 20px;
    font-weight: 400;
	font-family: ClearSans-Regular;
}
.page_blog__header_date:before {
	content: "";
	display: block;
	background: url(images/icon-11.png) no-repeat;
	position: absolute;
	left: 0;
	top: 3px;
	height: 15px;
	width: 15px;
	background-size: cover !important;
}
.page_blog__header_btn {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background-color: #000;
    border: 2px solid #000;
    font-size: 11px;
	width: 106px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
    text-decoration: none;
    transition: border .2s, background-color .2s, color
}
.page_blog__header_btn:hover {
    background-color: #eeba47;
    border-color: #eeba47;
}
.page_blog__content blockquote {
	border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;	
}
.page_blog__content blockquote p {
	padding: 0;
	margin: 0;
}
.page-id-56 .block_screen_1_2,
.page-id-908 .block_screen_1_2{
    height: 600px;
}
.page-id-56 .block_screen_1_2__benefits,
.page-id-908 .block_screen_1_2__benefits {
    margin: 100px 0 0 0;
}
.block_technology__photos_list_3 {
	gap: 30px;
	margin: 30px 0;
}
.block_technology__photos_list_3 > div {
	flex: 0 calc(33.33% - 20px);
}
.block_technology__photos_list_2 {
	gap: 30px;
	margin: 30px 0;
}
.block_technology__photos_list_2 > div {
	flex: 0 calc(50% - 20px);
}
.block_technology__photos_list_2 .block_technology__photos_photo {
    height: 100%;
}
.block_technology__photos_title {
	margin: 0 0 10px 0;
	font-size: 14px;
}
.block_technology__form h3 {
	text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
	font-family: ClearSans-Light;
	margin: 0 0 20px 0;
}
.block_technology__form label {
	margin: 10px 0 0 0 !important;
	font-weight: 700 !important;
	font-family: ClearSans-Bold !important;
}
.block_technology__form label span {
	color: red;
}
.block_technology__form .frm_fields_container {
	display: flex !important;
	flex-wrap: wrap !important;
}
.block_technology__form .frm_fields_container > div {
	flex: 0 100%;
}
.block_technology__form .frm_button_submit {
    width: fit-content !important;
    padding: 0 15px !important;
}
.block_technology__form input {
	border-radius: 0 !important;
	height: 38px !important;
}
.page-id-911 .block_screen_1_2, .page-id-937 .block_screen_1_2 {
    height: auto;
}
.page-id-911 .block_screen_1_2 h2,
.page-id-937 .block_screen_1_2 h2 {
	padding: 0 0 45px 0;
}
.block_technology__list_texteditor .alignleft {
	float: left;
	max-width: 460px;
	height: auto;
}
.block_screen_1_2__video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.page-id-78 .block_screen_1_2,
.page-id-963 .block_screen_1_2 {
	height: 500px;
}
.page-id-963 .block_technology_2 {
	display: none;
}
.block_fixed_btn {
    z-index: 3001;
    cursor: pointer;
    background-image: linear-gradient(#e95500, #e95500);
    width: 100px;
    height: 100px;
    display: block;
    position: fixed;
    top: 200px;
    right: 0;
}
.block_fixed_btn img {
    filter: invert();
    background-color: #0000;
    margin: 20px auto 5px;
    display: block;	
}
.block_fixed_btn p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;	
}
.page_stairs .block_screen_1_2 {
	height: 400px;
}
.page_stairs .block_screen_1_2__benefits {
    max-width: 460px;
    margin: 0;
}
.page_stairs .block_screen_1_2__benefits_icon {
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_stairs .block_screen_1_2__inner > div:nth-child(1) {
	flex: 0 calc(100% - 460px);
}
.page_stairs .block_screen_1_2__inner > div:nth-child(2) {
	flex: 0 460px;
}
.page_stairs .block_screen_1_2 h1 {
    font-weight: 400;
	padding: 35px 0 0 0;
}
.page_stairs .block_screen_1_2__benefits_inner > div:nth-child(1) {
    flex: 0 30px;
}
.page_stairs .block_screen_1_2__benefits_inner > div:nth-child(2) {
    flex: 0 calc(100% - 30px);
    padding: 0 0 0 10px;
}
.page_stairs .block_screen_1_2__inner input {
	border-radius: 0 !important;
	height: 45px !important;
	margin-bottom: 12px !important;
}
.page_stairs .block_screen_1_2__inner label {
	display: none !important;
}
.page_stairs .block_screen_1_2__inner {
    margin: 40px 0 0 0;
    padding: 0 0 0 60px;
}
.page_stairs .block_screen_1_2__inner .frm_button_submit {
	background-color: #1ca6ac !important;
    border-color: #1ca6ac !important;
    width: 113px !important;
    height: 40px !important;
	margin: 0 !important;
}
.page_stairs .block_screen_1_2__inner .frm_button_submit:hover {
	background-color: #000 !important;
}
.page_stairs .block_screen_1_2__benefits_inner p {
    font-size: 18px;
    line-height: 20px;
}
.page_stairs .block_screen_1_2__benefits_icon img {
    position: relative;
    top: -4px;
}
.page_stairs .block_screen_1_2__benefits_inner {
    margin: 0 0 10px 0;
}
.swiper_photos_slider {
	overflow: hidden;
	position: relative;
	margin: 10px 0 30px 0;
}
.block_technology__photos_slider h3 {
	text-align: center;
    font-size: 30px;
    line-height: 40px;
	margin-bottom: 10px;
}
.block_technology__photos_slider_photo {
	height: 500px;
	overflow: hidden;
}
.block_technology__photos_slider_photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.block_technology__photos_slider .swiper-pagination-bullet {
	background: #fff6 !important;
	height: 14px !important;
	width: 14px !important;
}
.block_technology__photos_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #fff !important;
}
.page_technology .block_technology__list_texteditor h4 {
	font-size: 18px;
    line-height: 24px;
	margin-bottom: 10px;
	text-align: left;
}
.block_technology__list_texteditor h4 {
	font-size: 30px;
    line-height: 40px;
	margin-bottom: 10px;
	text-align: center;
}
.block_technology__list_container_title {
    position: relative;
    margin: 60px 0 0 0;
}
.block_technology__list_container_title h1,
.block_technology__list_container_title h2,
.block_technology__list_container_title h3,
.block_technology__list_container_title h4,
.block_technology__list_container_title h5,
.block_technology__list_container_title h6 {
	font-size: 30px;
    line-height: 40px;
	text-align: center;
	font-weight: 700;
	color: #333;
}
.block_technology__list_container_title:before {
	content: "";
    background-color: #eeba47;
    width: 90px;
    height: 2px;
    top: -20px;
    display: block;
	position: absolute;
	left: calc(50% - 45px);
}
.block_technology__list_text ol {
	list-style-type: none; 
	counter-reset: num;
	margin: 0 0 0 45px;
	padding: 0px 0 5px 0;
	font-size: 16px;
}
.block_technology__list_text ol li {
	position: relative;	
	margin: 0 0 0 0;
	padding: 0 0 10px 0;
}
.block_technology__list_text ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	text-align: right;
}
.block_technology__list_text ul {
	margin: 0 0 0 45px;
	padding: 0px 0 5px 0;
	font-size: 16px;
}
.block_technology__list_text ul li {
	position: relative;
}
.block_technology__list_text ul li:before {
	content: "";
	display: block;
	border-radius: 10px;
	width: 5px;
	height: 5px;
	background: #000;
	position: absolute;
	left: -16px;
	top: 9px;
}
.block_technology__list_text blockquote {
	border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 22px;	
}
.block_technology__list_text blockquote p {
	margin: 0;
	padding: 0;
}
.block_technology__title_line,
.block_technology__photos_list_3_title {
    position: relative;
    margin: 60px 0 0 0;
}
.block_technology__title_line h1,
.block_technology__title_line h2,
.block_technology__title_line h3,
.block_technology__title_line h4,
.block_technology__title_line h5,
.block_technology__title_line h6,
.block_technology__photos_list_3_title h1,
.block_technology__photos_list_3_title h2,
.block_technology__photos_list_3_title h3,
.block_technology__photos_list_3_title h4,
.block_technology__photos_list_3_title h5,
.block_technology__photos_list_3_title h6 {
	font-size: 30px;
    line-height: 40px;
	text-align: center;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
}
.block_technology__photos_list_3_title:before,
.block_technology__title_line:before {
	content: "";
    background-color: #eeba47;
    width: 90px;
    height: 2px;
    top: -20px;
    display: block;
	position: absolute;
	left: calc(50% - 45px);
}
.block_technology__photos_list_3_subtitle {
	text-align: center;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 30px;
}
.block_technology__list_texteditor_bottom {
	padding: 20px 0;
	background: #fff;
}
.block_technology__list_texteditor_bottom p {
	font-size: 14px;
	line-height: 18px;
	color: #333;	
}
.swiper_photos_slider .swiper-button-next,
.swiper_photos_slider .swiper-button-prev {
	width: 18px !important;
	height: 32px !important;	
	top: calc(50% - 11px) !important;
}
.swiper_photos_slider .swiper-button-next:after {
	content: "" !important;
	background: url(images/photo-slider-next.svg) no-repeat;
	width: 18px !important;
	height: 32px !important;
}
.swiper_photos_slider .swiper-button-prev:after {
	content: "" !important;
	background: url(images/photo-slider-prev.svg) no-repeat;
	width: 18px !important;
	height: 32px !important;
}
.swiper_photos_slider .swiper-button-prev {
    left: 22px !important;
}
.swiper_photos_slider .swiper-button-next {
    right: 22px !important;
}
.swiper_photos_slider .swiper-button-prev.swiper-button-disabled,
.swiper_photos_slider .swiper-button-next.swiper-button-disabled {
    opacity: 1 !important;
}
.block_technology__list_texteditor_bottom h2 {
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 23px;	
}
.block_technology__list_texteditor_bottom p {
    margin-bottom: 14px;
}
.block_technology__list_texteditor_bottom p:last-of-type {
	margin-bottom: 0;
}
.block_technology__photos_video {
    height: 300px;
    background-size: contain !important;
    background-repeat: no-repeat;
}
.block_technology__photos_title {
	text-align: center;
    margin-top: 20px;
    font-size: 31px;
    font-weight: 500;
	font-family: ClearSans-Medium;
	margin: 0 0 20px 0;
}
.block_technology__photos_video iframe {
	width: 100%;
	height: 100%;
}
.contact-map {
    width: 100%;
    height: 300px;
    margin: 0 0 30px 0;
}
.privacy-policy .block_screen_1_2 {
	display: none;
}
/* Footer */
footer {
    background-color: rgb(238, 186, 71);
    padding: 80px 0 60px 0;
    font-size: 13px;	
}
.footer__inner {
	gap: 30px;
}
.footer__inner > div {
	flex: 0 calc(33.33% - 20px);
}
.footer__title {
	text-transform: uppercase;
	color: #fff;
	font-size: 19px;
    font-weight: 300;	
	font-family: ClearSans-Light;
	padding: 0 0 15px 0;
}
.footer__text p {
	font-size: 13px;
	line-height: 18px;
	padding: 0 0 15px 0;
}
footer a {
	color: #000;
}
.footer__text_2 > div:nth-child(1) {
	flex: 0 15px;
}
.footer__text_2 > div:nth-child(2) {
	flex: 0 calc(100% - 30px);
	padding: 0 0 0 15px;
}
.footer__text_2 {
	font-size: 16px;
	line-height: 18px;
	margin: 0 0 14px 0;
}
.footer__text_2 a {
	font-size: 16px;
	display: block;
	margin: 0 0 15px 0;
}
.footer__text_2 img {
    position: relative;
    top: 4px;	
}
footer .frm_forms {
	margin: 10px 0 0 0 !important;
}
footer input {
	height: 40px !important;
	width: 209px !important;
	border-radius: 0 !important;
	border: none !important;
	outline: none !important;
}
footer .frm_button_submit {
    height: 40px !important;
    width: 75px !important;
    color: #fff !important;
    font-size: 13px !important;
    background: #000 !important;
    margin: 5px 0 0 0 !important;
}
footer .frm_fields_container {
	display: flex !important;
	flex-wrap: wrap;
}
.footer__form_text {
	font-size: 13px;
	line-height: 18px;
}
.footer__bottom {
	background-color: rgb(0, 0, 0);
    padding-top: 25px;
    padding-bottom: 25px;	
	color: #6d6d6d;
	font-size: 16px;
	line-height: 18px;
}
.footer__bottom_inner > div {
	flex: 0 50%;
}
.footer__bottom p {
	text-align: right;
}
.footer__bottom a {
	color: rgb(28, 166, 172);
}
.footer__social a {
	background-color: #000;
    width: 40px;
    height: 40px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__social a img {
	height: 18px;
	width: auto;
}
#cookie_note {
    width: 100%;
    max-width: 900px;
    background-color: rgba(47, 59, 66, .9);
    position: fixed;
    z-index: 10999;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    padding: 15px 20px;
	display: none;
    color: #c9c9c3;
    font-size: 14px;
}
#cookie_note a {
	color: #fff;
	text-decoration: underline;
}
#cookie_note.show {
	display: flex;
}
.cookie_accept {
    width: auto;
    flex: none;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #e95500;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
}
#cookie_note > div:nth-child(2) {
	flex: 0 120px;
	position: relative;
	z-index: 3;
}
#cookie_note > div:nth-child(1) {
	flex: 0 calc(100% - 120px);
	position: relative;
	z-index: 3;
	padding: 0 15px;
}