::selection {
	background: #ff8000;
	color: #fff;
}

html,
body {
	min-width: 320px;
}

body.body_overflow {
	overflow: hidden;
}

#wrap {
	min-width: 320px !important;
	position: relative;
	overflow: visible;
}

.dp {
	min-width: 320px !important;
	width: 100%;
}
@media screen and (max-width: 767px) {
    body.body_overflow_mobile {
		overflow: hidden;
	}
}
@media screen and (max-width: 479px) {
	.dp {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media screen and (max-width: 1199px) {
    .visible_desktop {
        display: none !important;
    }
}
@media screen and (min-width: 1200px) {
    .hidden_desktop {
        display: none !important;
    }
}

#sitemenu {
    position: relative;
    z-index: 101;
}
#sitemenu > .dp {
    display: flex;
}

#sitemenu a {
    margin: 0;
    white-space: nowrap;
}
#sitemenu a:before {
    content: none;
}
#sitemenu a:not(:last-child) {
    margin-right: 15px;
}
#sitemenu a:not(:first-child) {
    margin-left: 15px;
}
#sitemenu a:not(:last-child):before {
    content: "";
    right: -15px;
    top: 50%;
    transform: translate(0,-50%);
}
@media screen and (max-width: 767px) {
    #sitemenu a {
        font-size: 12px;
        line-height: 24px;
    }
}
@media screen and (max-width: 479px) {
    #sitemenu a:not(:last-child) {
        margin-right: 5px;
    }
    #sitemenu a:not(:first-child) {
        margin-left: 5px;
    }
    #sitemenu a:not(:last-child):before {
        right: -5px;
    }
}
@media screen and (max-width: 420px) {
	#sitemenu a:last-child {
		margin-left: 0;
	}
    #sitemenu a {
        letter-spacing: -0.02em;
    }
}

#header #mainmenu .header__menu ul li ul li a {
	color: #000 !important;
}

body {
	font-size: 13px;
	font-display: swap;
}
#header {
	background: #28283e;
	height: 60px;
}
#header.header_index {
	height: 250px;
/*	background: url(images/bg.jpg) center center no-repeat; */
	background-size: cover;
}
.headerline {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.headerline__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: relative;
    transition: background 0.2s ease;
}
#header #logo {
    top: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 101;
}
#header #logo img { width: 140px; }
#header #sublogo {
    margin: 0;
}
@media screen and (max-width: 1099px) {
    #header #logo {
        flex-direction: column;
        gap: 2px;
    }
    #sublogo {
        padding: 1px 9px;
        font-size: 8px;
        line-height: 1.2;
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    #header .headerline__group {
        position: absolute !important;
		/*top: 45px;*/
    }
    #header.header_fixed .headerline__group {
		background: #141414 !important;
		position: fixed !important;
		top: 0;
		z-index: 1100;
	}
}
@media screen and (min-width: 768px) {
    #header {
    	height: 80px;
    }
    #header.header_index {
    	height: 400px;
    }
    .headerline__group {
        min-height: 80px;
    }
}
@media screen and (min-width: 992px) {
    #header.header_index {
    	height: 500px;
    }
}



#header #mainmenu {
    position: relative;
    top: 0;
    right: 0;
}
#header #mainmenu .header__menu a {
    color: #fff !important;
}
#header #mainmenu .header__menu {
    float: none;
    display: block;
}
#header #mainmenu .header__menu > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header #mainmenu .header__menu > ul > li > a {
    border-bottom: 1px solid transparent;
}
#header #mainmenu .header__menu > ul > li:hover > a {
    border-color: #ff6800;
}

.mainmenu__toggle {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translate(0,-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	padding: 15px 12px;
	z-index: 101;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.mainmenu__toggle__line {
	width: 100%;
	height: 2px;
	background-color: #FFF;
	position: relative;
	-webkit-transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.mainmenu__toggle__line + .mainmenu__toggle__line {
	margin-top: 4px;
}
.mainmenu__toggle_active .mainmenu__toggle__line:first-child {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 6px;
}
.mainmenu__toggle_active .mainmenu__toggle__line:last-child {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: -6px;
}
.mainmenu__toggle_active .mainmenu__toggle__line:nth-child(2) {
	opacity: 0;
	-webkit-transition: opacity 0s ease, background-color 0.3s ease;
	-o-transition: opacity 0s ease, background-color 0.3s ease;
	transition: opacity 0s ease, background-color 0.3s ease;
}

@media screen and (max-width: 1199px) {
    .header__menu {
        font-size: 14px;
    }
}
@media screen and (max-width: 991px) {
    .header__menu {
        font-size: 13px;
    }
    .header__menu > ul > li {
        padding: 20px 5px;
    }
}
@media screen and (max-width: 849px) {
    .header__menu > ul > li {
        font-size: 12px;
    }
    .header__menu > ul > li > a {
        letter-spacing: -0.04em;
    }
}
@media screen and (max-width: 767px) {
    #mainmenu {
		display: none;
		position: fixed !important;
		top: 84px !important;
		left: 0;
		right: 0 !important;
		bottom: 0;
		background: #141414;
		transform: none !important;
		transition: none !important;
		overflow-x: hidden;
		overflow-y: auto;
		z-index: 100;
	}
	#header.header_fixed #mainmenu {
    	top: 60px !important;
	}
	#mainmenu:before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 84px;
		background: #141414;
		z-index: -1;
	}
	.header__menu ul {
		z-index: 99;
	}
	#header #mainmenu .header__menu > ul {
    	flex-direction: column;
        align-items: stretch;
	}
	.header__menu > ul > li {
		display: block;
		float: none;
		padding: 0 !important;
		font-size: 15px;
	}
	.header__menu > ul > li:nth-child(9) {
		display: none;
	}
	.header__menu > ul > li ul {
		display: none;
		position: relative;
		opacity: 1;
		visibility: visible;
		left: 0;
		margin-top: 5px;
		transition: none;
		padding: 0 20px;
	}
	.header__menu > ul > li ul li {
		margin: 0;
	}
	.header__menu > ul > li ul li:last-child a {
		border: none;
	}
	.header__menu > ul > li ul li a {
		line-height: 1.3;
		padding: 13px 0;
		white-space: normal;
	}
	.header__menu > ul > li:hover ul {
		display: none;
	}
	.header__menu > ul > li > a {
		letter-spacing: 0;
		padding: 13px 0;
		display: block;
		border: none !important;
		color: #fff !important;
	}
	.header__menu > ul > li > a:hover {

	}
	.header__menu {
		font-size: 15px;
		padding: 15px;
		float: none;
		display: block;
	}
}
@media screen and (min-width: 768px) {
	.mainmenu__toggle {
		display: none !important;
	}
	#mainmenu {
		display: block !important;
	}
	.header__menu > ul > li ul {
		display: block !important;
	}
}



#header .iBlock {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 20px;
}
#header #iTitle {
	color: #fff;
	display: block;
	text-align: center;
}
#header #iTitle h1 {
	display: inline-block;
	font-weight: 100;
	line-height: 1.2;
	font-size: 26px;
	font-family: 'Roboto', sans-serif;
	margin-top: 0;
}
#header #iSearch {
	margin: 0 auto;
	width: 600px;
	max-width: 100%;
	position: relative;
}
#header #iSearch .search_form input[type="text"] {
    font-size: 14px;
}
#header #iSearch div#sCont {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
}
@media screen and (max-width: 767px) {
    #header #iTitle h1 {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    #header #iTitle h1 {
    	font-size: 34px;
    }
    #header #iSearch .search_form input[type="text"] {
        font-size: 18px;
    }
}
@media screen and (min-width: 992px) {
    #header .iBlock {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    #header #iTitle h1 {
    	font-size: 48px;
    }
    #header #iSearch .search_form input[type="text"] {
        font-size: 22px;
    }
}

h1, .h1 {
	font-size: 26px;
	line-height: 1.1;
	margin-top: 10px;
	margin-bottom: 20px;
}
h2, .h2 {
	font-size: 22px;
	line-height: 1.1;
	margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
    h1, .h1 {
    	font-size: 36px;
    	margin-top: 20px;
    	margin-bottom: 30px;
    }
    h2, .h2 {
    	font-size: 30px;
    	margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .bx-breadcrumb {
    	margin: 15px 0 10px;
    }
}




#iCatalog  {
	padding: 10px 0 30px;
}
#newsLine {
	margin-top: 50px;
	background: #efefef;
	position: relative;
	padding: 25px;
}
@media screen and (min-width: 768px) {
    #iCatalog  {
    	padding: 55px 0;
    }
}

#content { padding-bottom: 30px; }
body.body_index #content { padding-bottom: 0 !important; }
.download-block {
    display: table;
    width: 100%;
    height: 200px;
  /*  background: url("images/download-block/bg.jpg") no-repeat center center; */
    background-size: cover;
    margin-bottom: 70px;
}
.download-block__inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    position: relative;
    padding-left: 50%;
}
.download-block__img {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0,-50%);
    margin-top: 10px;
    max-height: 125%;
    max-width: 50%;
}
.download-block__desc {}
.download-block__title {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.16;
    color: #FFFFFF;
    margin: 0 0 10px;
}
.download-block__text {
    font-weight: normal;
    font-size: 13px;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.download-block__btn {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 25px;
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #FD8024;
    border-radius: 50px;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .download-block__title {
        font-size: 24px;
    }
}
@media screen and (max-width: 479px) {
    .download-block {
        height: auto;
    }
    .download-block__inner {
        padding: 20px 20px 20px 50%;
    }
    .download-block__title {
        font-size: 16px;
    }
}


.catalog-tile {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}
.catalog-tile__item {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    position: relative;
    text-decoration: none !important;
    min-height: 244px;
    background: #F7F7F7;
}
.catalog-tile__item:nth-child(2n+2) {
    background: linear-gradient(180deg, #F5F5F5 0%, #D0D0D0 100%), #F6F6F6;
}
.catalog-tile__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.catalog-tile__bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.2s ease;
    transform-origin: 100% 100%;
}
.catalog-tile__content {
    position: relative;
    z-index: 3;
    padding: 24px 30px;
}
.catalog-tile__name {
    font-weight: 300;
    font-size: 26px;
    line-height: 1.15;
    color: #000000;
    max-width: 220px;
}
.catalog-tile__item:hover .catalog-tile__bg-img {
    transform: scale(1.1,1.1);
}

.subscribe_form__content_max_width {
    max-width: 500px;
}
.subscribe-block {
    text-align: left;
}
.subscribe_form__themes label {
    display: block;
}
.subscribe_form__input {
    display: flex;
    margin-top: 20px;
}
.subscribe_form__control_wrapper {
    flex: 1 1 auto;
    margin-right: 20px;
}
.subscribe_form__themes .invalid-feedback,
.subscribe_form__control_wrapper .invalid-feedback {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 300;
    color: red;
    margin-top: 4px;
}
.subscribe_form__control {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    box-shadow: none;
    font-size: 11pt;
    font-weight: 300;
    box-shadow: none;
    outline: none;
    min-width: 220px;
}
.subscribe_form__control:read-only {
    background-color: #eee;
}
.subscribe_form__btn {
    border: none;
    width: 100%;
    display: block;
    background-image: linear-gradient(180deg, #ffa40e 0%, #ff8506 100%);
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 12pt;
    cursor: pointer;
    transition: 0.2s all;
    height: 50px;
    padding: 0 25px;
}
.subscribe_form__helper {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 300;
    color: #555;
    margin-top: 15px;
}
.subscribe_form__helper a {
    color: #ff8600;
}
.subscribe-block__wrap {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.subscribe-block__wrap #crocobox-form {
	max-width: 500px;
	z-index: 1;
}
@media screen and (max-width: 479px) {
    .subscribe_form__control_wrapper {
        margin-right: 8px;
    }
    .subscribe_form__control {
        min-width: 100px;
    }
    .subscribe_form__btn {
        padding: 0 15px;
    }
}

@media screen and (max-width: 991px) {
	.subscribe-block__wrap {
		flex-direction: column;
	}
}

.checkbox-default {
    position: relative;
    padding-left: 20px;
}
.checkbox-default input {
    position: absolute;
    top: 0;
    left: 0px;
    margin: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    z-index: 1;
}
.checkbox-default input:checked + label:after {
    opacity: 1;
}
.checkbox-default label {
    position: relative;
    padding-left: 15px;
    z-index: 5;
    cursor: pointer;
    margin: 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.2;
    color: #000;
}
.checkbox-default label:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    left: -20px;
    top: -3px;
    transition: border-color 0.3s ease;
}
.checkbox-default label:after {
    content: "";
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    left: -13px;
    top: 0px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #FF740D;
    border-bottom: 2px solid #FF740D;
    transform: rotate(45deg);
}
.checkbox-default {
    margin-bottom: 8px;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.rc_price_request {
  display: none !important;
}


@media screen and (max-width: 767px) {
    #footer {
		padding: 40px 0;
	}
    .footer-nav {
		display: none;
	}
	#footer .footer_lastline {
		border: none;
		float: none;
		width: 100% !important;
		text-align: center !important;
		padding: 0;
	}
	#footer .footer_lastline a.copyright {
    	display: inline-block;
	}
	#footer .footer_lastline_made {
		margin-top: 15px;
	}
}

@media screen and (max-width: 767px) {
    #crocobox {
        max-width: calc(100vw - 40px);
        margin: 0 !important;
        transform: translateX(-50%);
        padding-left: 20px;
        padding-right: 20px;
    }
    #crocobox .form_block {
        margin-bottom: 20px;
    }
    #crocobox .form_block .block_text {
        height: auto;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    #crocobox .form_block input[type="text"],
    #crocobox .form_block textarea {
        width: 100%;
    }
    #crocobox input.vacancySend {
        margin: 0 auto;
    }
}

.image_area_link_container {
	position: relative;
}
.image_area_link_items a {
	display: block;
	position: absolute;
	border-radius: 10px;
	background: #fff;
	opacity: 0;
-webkit-box-shadow: 0px 0px 25px 11px rgba(255, 255, 255, 0.2);
-moz-box-shadow: 0px 0px 25px 11px rgba(255, 255, 255, 0.2);
box-shadow: 0px 0px 25px 11px rgba(255, 255, 255, 0.2);
	transition: 0.2s all;
}
.image_area_link_items a:hover {
	opacity: 0.4;
}


.project-main__wrap {
	display: flex;
	gap: 40px;
}
.project-main__text {
	max-width: 700px;
}
.project-main__form {
	height: max-content;
}
.project-main .callback {
	margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.project-main__form {
		display: none;
	}
}

table.title-search-result td:first-child {
    padding-top: 8px !important;
}

table.title-search-result .srchImg {
    height: 40px;
}

#iSearch #sCont::-webkit-scrollbar { width: 10px; height: 10px;}