#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 {
	/*background: url(images/bg.jpg) center center no-repeat; */
	background-size: cover;
	/*padding: 0 2%;*/
	transition: 0.2s all;
    height: 250px;
    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: auto;
    }
    #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 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;
    }
}

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

/*body {*/
/*	font-size: 13px;*/
/*	line-height: 15pt;*/

/*}*/

/*.title {*/
/*	font-size: 26pt;*/
/*	font-weight: 300;*/
/*	line-height: 30pt;*/
/*	margin-top: 20px;*/
/*	margin-bottom: 30px;*/
/*}*/

/*#header {*/
/*	background: #28283e;*/
/*	height: 80px;*/
/*}*/

/*#header.header_index {*/
/*	background: url(images/bg.jpg) center center no-repeat;*/
/*	background-size: cover;*/
/*	padding: 0 2%;*/
/*	transition: 0.2s all;*/
/*}*/

/*#header #logo { top: 20px; }*/
/*#header #logo img { width: 140px; }*/
/*#header #mainmenu { top: 10px; }*/
/*#header #mainmenu .header__menu a { color: #fff !important; }*/


/*#header.header_index {*/
/*	height: 500px;*/
/*}*/
/*#header .dp.headerline {*/
/*	height: 80px;*/
/*}*/

/*#header .iBlock { padding-top: 160px; }*/
/*#header #iTitle {*/
/*	color: #fff;*/
/*	display: block;*/
/*	text-align: center;*/
/*}*/
/*#header #iTitle h1 {*/
/*	display: inline-block;*/
/*	font-weight: 100;*/
/*	line-height: 50pt;*/
/*	font-size: 48px;*/
/*	font-family: 'Roboto', sans-serif;*/
/*}*/

#importLine .importLine__item {
	padding: 50px 25px 50px;
	background: url(images/flag.jpg) 850px bottom no-repeat;
}
#importLine .importLine__item:before {
	content: "";
	position: absolute;
	left: 20px;
	top: 0;
	width: 1160px;
	height: 25px;
	z-index: 2;
	background: -moz-linear-gradient(top, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,.1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
}

#importLine .importLine__item h2 { }
#importLine .importLine__item div { width: 800px; opacity: 0.8; }

#importLine .importLine__item a {
	background: #ff8000;
}

.mainContent {
	padding-bottom: 50px;
}
a.banner {
	margin-top: 25px;
	display: block;
	position: relative;
	height: 270px;
	width: 100%;
	background: url(/bitrix/templates/device/images/banner.jpg) center center no-repeat;
}
a.banner div {
	font-size: 25px;
	line-height:26px;
	font-weight: 500;
	left: 45px;
	position: absolute;
	top: 115px;
	color: #ff8000;
	max-width:370px;
}

.feedback-btn {
    position: fixed!important;
    right: 40px;
    bottom: 40px;
    display: block;
    width: 90px;
    height: 90px;
    padding: 20px 0 0 20px !important;
    z-index: 5;
}
.feedback-btn svg {
	width: 50px;
}
.feedback-btn:before {
    display: none;
}
@media screen and (max-width: 479px) {
    .feedback-btn {
        width: 50px;
        height: 50px;
        padding: 0 0 0 10px !important;
    }
    .feedback-btn svg {
        width: 30px;
    }
}
.bootstrap-select {
    position: relative;
    width: 100% !important;
}
.bootstrap-select .select-default__btn {
    background: none;
    border: none;
    width: 100%;
    font-weight: normal;
    font-size: 15px;
    color: #212121;
    line-height: 50px;
    height: 50px;
    padding: 0 35px 0 20px;
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    box-sizing: border-box;
    border-radius: 4px;
}
.bootstrap-select .select-default__btn + .dropdown-menu {
    padding: 0px;
    left: 0 !important;
    top: 100% !important;
    transform: none !important;
    max-height: 350px !important;
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(221, 221, 221, 0.5);
    margin-top: -1px;
}
.bootstrap-select .select-default__btn + .dropdown-menu > .dropdown-menu.inner {
    max-height: 350px !important;
}
.bootstrap-select .select-default__btn + .dropdown-menu a {
    font-weight: normal;
    font-size: 15px;
    color: #212121;
    line-height: 1.2;
    padding: 10px 20px;
    display: block;
    outline: none !important;
    text-decoration: none !important;
    border: none;
}
.bootstrap-select .select-default__btn + .dropdown-menu li > .text {
    padding: 10px 20px;
    opacity: 0.6;
    display: block
}
.bootstrap-select .select-default__btn + .dropdown-menu a:hover {
    color: #FD8023;
}
.bootstrap-select .select-default__btn + .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.bootstrap-select .select-default__btn + .dropdown-menu li.selected a {
    color: #FD8023;
}
.bootstrap-select .select-default__btn + .dropdown-menu li.disabled {
    display: none;
}
.bootstrap-select .select-default__btn + .dropdown-menu li.divider {
    list-style-type: none;
}
.bootstrap-select .select-default__btn .bs-caret {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}
.bootstrap-select .select-default__btn .filter-option {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    width: auto;
    position: relative;
}
.bootstrap-select .select-search__btn {
    border-radius: 4px 0 0 4px;
    font-weight: 300;
}
.bootstrap-select .select-search__btn + .dropdown-menu {
    text-align: left;
    padding: 8px 0;
    width: 100%;
}
.bootstrap-select .select-search__btn + .dropdown-menu a {
    font-size: 14px;
    line-height: 1.15;
    padding: 8px 20px;
    color: #7D7D7D;
}
.bootstrap-select .select-search__btn + .dropdown-menu li {
    border: none !important;
}
.bootstrap-select .select-multiple__btn {
    background: none;
    border: none;
    width: 100%;
    font-weight: normal;
    font-size: 15px;
    color: #212121;
    line-height: 50px;
    height: 50px;
    padding: 0 35px 0 20px;
    background: #FFFFFF;
    border: 1px solid rgba(221, 221, 221, 0.5);
    box-sizing: border-box;
    border-radius: 4px;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    min-width: 100% !important;
    max-height: none !important;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu a {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.6;
    color: #7D7D7D;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu a:after {
    content: "\e909";
    font-family: "milandr-icons";
    position: absolute;
    top: 6px;
    left: 6px;
    color: #FD8023;
    font-weight: normal;
    font-size: 8px;
    line-height: 1;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu a:hover {
    color: #000;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .text-muted {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(33, 33, 33, 0.5);
    margin-top: 3px;
    padding: 0;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu li:not(:first-child) {
    margin-top: 10px;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu li.selected a:after {
    opacity: 1;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu li.disabled {
    display: none;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu li.divider {
    height: 1px;
    background: #e5e5e5;
    margin-top: 15px;
    margin-bottom: 15px;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .dropdown-menu.inner {
    max-height: 180px !important;
    overflow: hidden;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .bs-searchbox {
    padding: 0;
    margin-bottom: 15px;
    position: relative;
    max-width: 100%;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .bs-searchbox:after {
    content: "\e908";
    font-family: "milandr-icons";
    font-size: 16px;
    line-height: 1;
    color: #ccc;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    pointer-events: none;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .bs-searchbox .form-control {
    height: 40px;
    padding: 12px 48px 12px 20px;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .no-results {
    white-space: normal;
    word-break: break-word;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .dropdown-header {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.15;
    color: #000000;
}
.bootstrap-select .select-multiple__btn + .dropdown-menu .bs-ok-default {
    display: none !important;
}
.bootstrap-select .select-multiple__btn .filter-option {
    text-align: center;
    display: inline-block;
    width: auto;
    float: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bootstrap-select .select-multiple__btn .bs-caret {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}
.bootstrap-select > .dropdown-toggle {
    cursor: pointer;
    position: relative;
}
.bootstrap-select > .dropdown-toggle:focus {
    outline: none !important;
}
.bootstrap-select > .dropdown-menu {
    display: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
}
.bootstrap-select > .dropdown-menu.show {
    display: block;
}
.bootstrap-select .bs-caret {
    position: relative;
}
.bootstrap-select .bs-caret:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    transition: transform 0.2s ease, color 0.3s ease;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3.5px 0 3.5px;
    border-color: #000000 transparent transparent transparent;
}
.bootstrap-select.show .bs-caret:before {
    transform: translate(0, -50%) rotate(-180deg);
}
.bootstrap-select.show .select-default__btn {
    border-radius: 4px 4px 0 0;
}
.bootstrap-select.show .select-search__btn {
    border-radius: 4px 0 0 0;
}
.bootstrap-select:hover .bs-caret:before, .bootstrap-select.show .bs-caret:before {
    color: #B7964E;
}
@media screen and (max-width: 767px) {
    .bootstrap-select .select-default__btn, .bootstrap-select .select-multiple__btn {
        font-size: 14px;
    }
}

.feedback_answer {
    text-align: center;
}
.feedback_answer a {
    text-decoration: none;
}