@import url('fonts/raleway/raleway.css');
body {
	font-family: "Open Sans";
}
* {
	word-break: break-word;
}
#header{
	position:fixed;
	z-index:12;
	left:0;
	top:0;
	width:100%;
	background:#fff;
	box-shadow:0 0 4px 0 rgba(0,0,0,.2);
}
.contact-header {
	background: #00275d;
	font-size: 12px;
	line-height: 16px;
	color: #d9d9d9;
	font-weight: 400;
	height: 25px;
	line-height: 25px;
	text-align: right;
}
.contact-header div * {
	margin-left: 15px;
}
.contact-header a:hover {
	text-decoration: underline;
}
.logo img {
	width: auto;
	height:100%;
	transition:height 0.2s;
}
a.logo {
	display: block;
	max-width: 217px;
	height:80px;
	transition:height 0.2s;
}
#header.active a.logo{
	height:42px;
}
.top-header {
	padding: 12px 0;
}
.top-header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-header > div:after {
	display: none
}
.content-box .flex-b {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.content-box .view-all-pr {
	white-space: nowrap;
	margin-left: 15px;
}
.content-box .title-content a {
	font-size: 13px;
	color: #ff9115;
	    font-family: Roboto;
	font-weight: 300;
	text-decoration: underline;
	transition: color 0.15s;
}
.content-box .title-content a:hover {
	color: #595959;
	text-decoration: none;
}
#search-form {
	cursor: pointer;
	position: relative;
	width: 40px;
	height: 35px;
	margin-left: 10px;
}
#search-form input {
	cursor: pointer;
	width: 0;
	position: absolute;
	z-index: 2;
	right: 0;
	height: 100%;
	padding: 0;
	border: 1px solid #fff;
	outline: none;
	margin: 0;
	padding-right: 33px;
	background: #fff url(/images/elements/search.svg) calc(100% - 10px) center no-repeat;
	transition: all 0.2s;
}
#search-form:hover input, #search-form.active input {
	background: #fff url(/images/elements/search.svg) calc(100% - 10px) center no-repeat;
}
#search-form.active input {
	margin: 0;
	border: 1px solid #d2d2d2;
	padding-left: 20px;
	border-radius: 25px;
	cursor: auto;
}
#search-form button {
	border: none;
	outline: none;
	cursor: pointer;
	background: none;
	z-index: -1;
	position: absolute;
	right: 0px;
}
#search-form.active button {
	z-index: 4;
	height: 35px;
	width: 40px;
}
.r-block {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.langs {
	font-size: 16px;
	line-height: 14px;
	color: #2c2c2c;
	    font-family: Roboto;
	font-weight: 400;
}
.langs a {
	display: inline-block;
	margin-left: 10px;
}
.langs a:hover {
	text-decoration: underline;
}
.langs .active {
	border-bottom: 1px solid #000;
}
/*верхнее меню*/
.main-menu ul:not([data-level="0"]) {
	display: none;
}
.main-menu a {
	font-size: 16px;
	line-height: 16px;
	color: #2c2c2c;
	    font-family: Roboto;
	font-weight: 400;
}
.main-menu {
	display: flex;
	margin: 0;
	padding: 0;
}
.main-menu li {
	display: block;
	margin: 0;
	margin-right: 25px;
}
.main-menu li a:hover, .main-menu li a.active {
	color: #3f679f;
}

/*слайдер*/
.slider .slick-arrow {
	opacity: 0;
	transition: 0.3s;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	border: 1px solid transparent;
}
.slider:hover .slick-arrow {
	opacity: 1;
}
.slick-slide img {
	min-width: 100%;
	width: 100%;
}
.slick-arrow {
	position: absolute;
	z-index: 9;
	top: calc(50% - 25px);
	margin-top: -20px;
	height: 101px;
	width: 46px;
	font-size: 0;
	border: none;
	-webkit-mask-size: contain !important;
	opacity: 1;
	transition: opacity 0.2s;
	cursor: pointer;
	background-size: auto !important;
}
.slick-next {
	right: 5px;
	background: none;
}
.slick-prev {
	left: 5px;
	background: none;
}
.slider .slick-arrow.slick-prev:before {
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	border: 1px solid #fff;
	transform: rotate(-135deg);
	border-left: none;
	border-bottom: none;
	top: calc(50% - 4px);
	position: absolute;
	right: calc(50% - 5px);
}

.slider .slick-arrow.slick-next:before {
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	border: 1px solid #fff;
	transform: rotate(45deg);
	border-left: none;
	border-bottom: none;
	top: calc(50% - 4px);
	position: absolute;
	right: calc(50% - 3px);
}
.slick-arrow:hover {
	opacity: 0.7;
}

.text-slide {
	position: absolute;
	top: 0;
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	padding: 5% 70px;
	width: 100%;
	max-width: 800px
}
.link-show-more {
	font-size: 13px;
	line-height: 54px;
	color: #ffffff;
	    font-family: Roboto;
	font-weight: 500;
	height: 54px;
	display: table;
	color: #fff;
	text-transform: uppercase;
	width: 230px;
	text-align: center;
	background: #ff9115;
	position: relative;
	transition: background 0.15s
}
.link-show-more:before {
	content: '';
	display: block;
	height: 5px;
	width: 5px;
	border: 1px solid #fff;
	transform: rotate(45deg);
	border-left: none;
	border-bottom: none;
	top: calc(50% - 3px);
	position: absolute;
	right: 15%;
}
.link-show-more:after {
	content: '';
	display: block;
	height: 1px;
	width: 10px;
	border: 1px solid #fff;
	border-left: none;
	border-bottom: none;
	top: calc(50% - 1px);
	position: absolute;
	right: 15%;
}
.text-slide h1, .text-slide h2 {
	font-size: 43px;
	line-height: 43px;
	color: #ffffff;
	    font-family: Roboto;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 40px;
}
.link-show-more:hover {
	background: #fba03a;
}

.item-owl img {
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: 100%;
}
.item-owl {
	display: flex;
	align-items: center;
	height: 100px;
	justify-content: center;
}
.item-owl a {
	display: block;
}
.owl-crsl {
	border-top: 1px solid #e3e3e8;
}

.left-sidebar .inside-box .title-sidebar, .right-sidebar .inside-box .title-sidebar {
	font-size: 20px;
	color: #2c2c2c;
	    font-family: Roboto;
	font-weight: 500;
	margin: 0;
	background: #efeff7;
	padding: 14px;
	border-bottom: 1px solid #e3e3e7;
}
.left-sidebar .inside-box .img-container img {
	width: 100%;
}
.left-sidebar .img-container, .right-sidebar .img-container {
	padding: 10px;
	display:block;
}
.left-sidebar .inside-box, .right-sidebar .inside-box {
	border: 1px solid #e3e3e7;
	margin-bottom: 15px;
}
.left-sidebar .title-news-j {
	font-size: 15px;
	line-height: 21px;
	color: #535353;
	    font-family: Roboto;
	font-weight: 400;
	display: block;
	margin: 5px 10px 0;
}
.left-sidebar .last-info-j {
	padding: 10px;
}
.left-sidebar .date-pub-j {
	font-size: 12px;
	line-height: 12px;
	color: #717171;
	font-family: "Open Sans";
	font-weight: 400;
	margin-right: 5px;
}
.left-sidebar .cat-title-j {
	font-size: 12px;
	line-height: 12px;
	color: #717171;
	    font-family: Roboto;
	font-weight: 300;
}
.left-sidebar .box-left {
	border-bottom: 1px solid #e3e3e7;
}
.left-sidebar .title-news-j:hover {
	color: #355788;
}
.left-sidebar .cat-title-j:hover {
	color: #355788;
}
.view-all a {
	font-size: 11px;
	line-height: 22px;
	color: #355788;
	    font-family: Roboto;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 10px;
	display: block;
	position: relative;
	padding-right: 32px;
	transition: 0.15s;
}
.view-all a:before {
	content: '';
	display: block;
	height: 5px;
	width: 5px;
	border: 1px solid #9dacc0;
	transform: rotate(45deg);
	border-left: none;
	border-bottom: none;
	top: calc(50% - 3px);
	position: absolute;
	right: 8%;
}
.view-all a:after {
	content: '';
	display: block;
	height: 1px;
	width: 10px;
	border: 1px solid #9dacc0;
	border-left: none;
	border-bottom: none;
	top: calc(50% - 1px);
	position: absolute;
	right: 8%;
}
.view-all a:hover {
	color: #000;
	background: #fbfbfb;
}

.title-content {
	font-size: 20px;
	line-height: 20px;
	color: #2c2c2c;
	    font-family: Roboto;
	font-weight: 500;
	border-top: 1px solid #e3e3e7;
	border-bottom: 1px solid #e3e3e7;
	padding: 12px 0;
	margin-bottom: 10px;
}
.mg-t {
	margin-top: 15px;
}
.pg-t {
	padding-top: 15px;
}
.content-box img {
	width: 100%;
	display: block;
}
.content-box > div {
	display: flex;
	flex-wrap: wrap;
}
.content-box > div > div {
	margin-bottom: 10px;
}
.content-box .inset-box {
	position: relative;
	height: 100%;
	background: #efeff7;
	display: flex;
	flex-direction: column;
}
.content-box .title-container {
	font-size: 15px;
	line-height: 15px;
	color: #1d1d1d;
	    font-family: Roboto;
	font-weight: 400;
	text-transform: uppercase;
	flex-grow: 1;
	padding: 20px 15px;
	transition: color 0.15s, background 0.15s;
}
.content-box .inset-box.proj .title-container {
	padding: 20px 15px 10px;
}
.content-box .serv-block:hover .title-container {
	background: #e2e2eb;
	color: #355788;
}
.inset-box.proj .title-container {
	font-size: 18px;
	line-height: 18px;
	color: #355788;
	font-weight: 600;
	text-transform: none;
	transition: color 0.15s;
}
.inset-box.proj .title-container:hover {
	color: #000;
}
.inset-box.proj .cat-link {
	font-size: 12px;
	line-height: 16px;
	color: #717171;
	    font-family: Roboto;
	font-weight: 400;
	padding: 10px 15px;
}
.inset-box.proj .cat-link:hover {
	color: #355788;
}
.content-box {
	margin-bottom: 30px;
}
.right-sidebar .inside-box {
	margin-bottom: 15px;
}
.right-sidebar .call-back {
	padding: 16px;
}
.right-sidebar .view-popup {
	font-size: 13px;
	line-height: 54px;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	line-height: 54px;
	background: #ff9115;
	cursor: pointer;
	transition: background 0.15s
}
.right-sidebar .text-blocks {
	text-align: center;
	font-size: 14px;
	line-height: 21px;
	color: #535353;
	font-weight: 500;
	text-align: center;
	margin-bottom: 15px;
}
.right-sidebar .view-popup:hover {
	background: #fba03a;
}

.ikonki-sot a {
	display: inline-block;
	height: 23px;
	width: 23px;
	transition: 0.25s;
	-webkit-transition: 0.25s;
	-moz-transition: 0.25s;
	-o-transition: 0.25s;
	-ie-transition: 0.25s;
	margin: 0px auto;
	background-size: contain !important;
	margin-right: 12px;
	position: relative;
}

.ikonki-sot a:before, .ikonki-sot a:after {
	content: '';
	padding-bottom: 100%;
	display: block;
	width: 100%;
	opacity: 1;
	top: 0;
	left: 0;
	transition: opacity 0.3s;
	background-size: contain !important;
}
.ikonki-sot a:after {
	opacity: 0;
	position: absolute;
}
.ikonki-sot a:hover:after {
	opacity: 1 !important;
}
.ikonki-sot a:hover:before {
	opacity: 0 !important;
}

.ikonki-sot.contact a:after {
	opacity: 0;
	position: absolute;
	width: 76%;
	padding-bottom: 76%;
	left: 12%;
	top: 12%;
}
.ikonki-sot a.icfb:before {
	background: url(/images/elements/fb.svg) center center no-repeat;
}
.ikonki-sot a.icyout:before {
	background: url(/images/elements/youtube.svg) center center no-repeat;
}
.ikonki-sot a.icfb:after {
	background: url(/images/elements/fb_act.svg) center center no-repeat;
}
.ikonki-sot a.icyout:after {
	background: url(/images/elements/youtube_act.svg) center center no-repeat;
}
#footer .bl-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer {
	padding: 30px 0;
	background: #e3e3e7;
	height: 86px !important;
	margin-top: -86px !important;
}
#footer .copyright {
	font-size: 12px;
	line-height: 16px;
	color: #717171;
	    font-family: Roboto;
	font-weight: 300;
}
#page {
	padding-bottom: 120px !important;
	padding-top: 128px;
}

body .accented {
	background: #fff1f3 !important;
	border-color: darkred !important;
}

.popup_layer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 1000;
	display: none;
	justify-content: center;
	align-items: center;
}
.bg-overlay {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
}
.entety-block {
	position: relative;
	background: #efeff7;
	padding: 40px 30px 20px;
	border-radius: 2px;
	max-width: 400px;
	width: 98%;
	z-index: 3;
}
.close_popup {
	position: absolute;
	right: 20px;
	height: 20px;
	width: 20px;
	top: 15px;
	cursor: pointer;
	z-index: 3;
}
.close_popup span {
	position: absolute;
	width: 100%;
	height: 2px;
	top: 13px;
	left: 0;
	background: #000;
	transform: rotateZ(45deg);
	transition: transform .5s ease;
}
.close_popup span:after {
	width: 100%;
	height: 2px;
	position: absolute;
	background: #000;
	transform: rotateZ(90deg);
	content: '';
	transition: transform .5s ease;
}
.close_popup:hover > span {
	transform: rotateZ(-45deg);
}
.close_popup:hover > span:after {
	transform: rotateZ(-90deg);
}
.entety-block p {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 5px;
}
.entety-block input {
	width: 100%;
	border-radius: 2px;
	padding: 10px 15px;
	border: 1px solid #e0e4e7;
}
.entety-block h3 {
	margin: 0;
	margin-bottom: 25px;
	margin-top: -20px;
}
.entety-block .btn_send {
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	background: #ffd900;
	color: #fff;
	font-size: 15px;
	border-radius: 2px;
	text-transform: uppercase;
	width: 200px;
	cursor: pointer;
	transition: background .15s ease;
	margin: 20px auto 0;
	display: block;
	font-weight: 600;
	padding: 10px 0;
	background: #ff9115;
	width: 100%;
}

.entety-block .btn_send:hover {
	background: #fba03a;
}
.entety-block textarea {
	max-height: 180px;
	min-height: 80px;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	padding: 10px 15px;
	border: 1px solid #e0e4e7;
	border-radius: 2px;
}
.breadcrumbs {
	font-size: 12px;
	line-height: 16px;
	color: #00275d;
	    font-family: Roboto;
	font-weight: 300;
	color: #355788;
}
.breadcrumbs .container {
	padding: 12px 0 0;
	border-top: 1px solid #e3e3e8;
}
.breadcrumbs .container i {
	padding: 0 5px;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs a:last-child {
	color: #00275d;
	text-decoration: none !important
}

.accord-menu {
	margin: 0;
	padding: 0;
}
.accord-menu li {
	display: block;
}
.accord-menu ul {
	margin: 0;
	padding: 0;
	display: none;
}
.accord-menu > li > span {
	font-size: 15px;
	color: #355788;
	    font-family: Roboto;
	font-weight: 400;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e3e3e7;
	position:relative;
}
.accord-menu li:last-child span {
	border: none;
}
.accord-menu > li > span a {
	padding: 0 15px;
	flex-grow: 1;
	position: relative;
	height: 100%;
	display: block;
	padding: 15px 15px;
	width: calc(100% - 50px);
	transition: background 0.15s;
}
.accord-menu > li > span:hover a {
	background: #fafafa;
}
.accord-menu > li > span i {
    width: 25px;
    display: block;
    position: relative;
    cursor: pointer;
    height: 25px;
    margin: 0 5px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    height: 100%;
}
.accord-menu > li > span i:before {
    content: '';
    height: 5px;
    width: 5px;
    border: 1px solid #00275d;
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    left: calc(50% - 2px);
}
.accord-menu li:not(.parent) i{
	display:none;
}
.dr-sub-menu a {
	background: #efeff7;
	display: block;
	padding: 15px;
	font-size: 15px;
	color: #355788;
	    font-family: Roboto;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e7;
	transition: background 0.15s;
}
.dr-sub-menu a:hover {
	background: #e5e5fa;
}

.content-box .serv-boxes .title-container{
padding: 15px 15px;
font-size: 18px;
line-height: 18px;
color: #355788;
    font-family: Roboto;
font-weight: 500;
text-transform:none;
}
.content-box .serv-boxes a{
transition:background 0.15s
}
.content-box .serv-boxes a:hover{
background:#e2e2f1;
}
.content-box .serv-boxes:hover .title-container{
color:#000;
}
.info-read{
margin:0 15px;
padding:15px 0;
border-top:1px solid #fff;
flex-grow:1;
}
.info-read > div{
display:flex;
font-size: 12px;
line-height: 16px;
padding-bottom:3px;
color: #717171;
    font-family: Roboto;
font-weight: 300;
justify-content:space-between;
}
.info-read > div span:first-child{
        font-family: Roboto;
    font-weight: 500;
    width: max-content;
    display: block;
    color: #3c3c3c;
    white-space: nowrap;
}
.info-read > div span:last-child{
text-align: right;
color: #3c3c3c;
width:max-content;
display:block;
}

.info-read > div.rs-txt{
font-size: 12px;
line-height: 16px;
font-family: "Open Sans";
font-weight: 400;
margin-top:5px;
}
.info-read > div.rs-txt span{
color: #717171;
font-weight: 500;
}
.page-box .main-img img{
width:100%;
}
.page-box .main-img{
position:relative;
}
.gallery{
	margin-top:25px;
	margin-bottom:25px;
}
.gallery img{
width:100%;
}
.gallery a{
	margin-bottom:10px!important;;
}
.desc-inset{
display: none;
background:#efeff7;
padding:10px 20px 15px;
position:absolute;
bottom:10px;
left:10px;
z-index:2;
width:250px;
}
.desc-inset p{
margin-bottom:0;
margin-top:10px;
}
.desc-inset b{
font-size: 15px;
color: #5e5e5e;
    font-family: Roboto;
display:block;
}
.desc-inset span{
font-size: 14px;
color: #5e5e5e;
    font-family: Roboto;
font-weight: 400;
display:block;
}
.date-pub{
font-size: 13px;
color: #9e9e9e;
font-weight: 500;
margin:10px 0;
}

.content-text{
    font-size: 15px;
    line-height: 22px;
    color: #141414;
        font-family: Roboto;
    font-weight: 400;
}
.page-box .cat-news{
    font-size: 13px;
    color: #9e9e9e;
    font-weight: 500;
    margin: 10px 0;
}
.news-boxes .inset-box{
display:flex;
margin-bottom:20px;
flex-wrap:wrap;
}
.news-boxes .inset-box .img-news{
width:40%;
width:210px;
}
.news-boxes .inset-box .img-news img{
width:100%;
}
.news-boxes .name-cat{
font-size: 12px;
line-height: 16px;
color: #717171;
    font-family: Roboto;
font-weight: 300;
margin:5px 0;
}
.news-boxes .content-news{
width:calc(100% - 225px);
border-bottom:1px solid #e3e3e8;
margin-left:15px;
display:flex;
flex-direction:column;
}
.news-boxes .title-container{
font-size: 18px;
line-height: 24px;
color: #00285e;
    font-family: Roboto;
font-weight: 500;
flex-grow:1;
}
.news-boxes .inset-box:hover .title-container{
color:#000;
}
.content-news .title-container{
margin-top:5px;
}
.link-channel{
font-size: 12px;
line-height: 26px;
color: #5882bc;
    font-family: Roboto;
font-weight: 300;
padding-right:30px;
display:flex;
}
.ico-yout{
display:inline-block;
height:24px;
width:25px;
background:url(/images/elements/youtube_channel.svg)  right center no-repeat;
vertical-align:middle;
margin-left:12px;
}
.link-channel:hover{
text-decoration:underline;
}
.accord-menu > li.active > span a{
	background: #efeffd;
}
.content-container{
font-size: 15px;
line-height: 22px;
color: #535353;
    font-family: Roboto;
font-weight: 300;
}
.pagination{
margin:0;
padding:0;
text-align:center;
padding-top:10px;
}
.pagination li{
display:inline-block;
margin:0 5px;
vertical-align:top;
}
.pagination li a{
font-size: 15px;
line-height: 24px;
color: #4f4f4f;
font-weight: 500;
display:block;
cursor:pointer;
min-width:20px;
}
.pagination li.link a{
font-size:0!important;
}
.backlink,
.forwardlink{
width:20px;
position:relative;
}
.forwardlink{
width:20px;
position:relative;
}
.backlink a:before,
.forwardlink a:before {
    content: '';
    display: block;
    height: 5px;
    width: 5px;
    border: 1px solid #000;
    transform: rotate(45deg);
    border-left: none;
    border-bottom: none;
    top: calc(50% - 2.5px);
    position: absolute;
    right: 21%;
}
.backlink a:before{
	transform: rotate(-135deg);
	right:auto;
	left:21%;
}
.backlink a:after,
.forwardlink a:after {
    content: '';
    display: block;
    height: 1px;
    width: 10px;
    border: 1px solid #000;
    border-left: none;
    border-bottom: none;
    top: calc(50% - .5px);
    position: absolute;
    right: 25%;
}
.pagination li.link a:hover:before,
.pagination li.link a:hover:after{
border-color:#ff9115;
}
.pagination li a:hover{
    color: #549aff;
}
.pagination li a.activepage{
color: #ff9115
}
.pagination li:first-child,
.pagination li:first-child{
border-bottom:1px solid #fff;
}
.content-box .super-boxes .info-read a {
background: none!important;
font-weight:600;
color:#3a6095;
}
.content-box .super-boxes .info-read a:hover {
text-decoration:underline;
}
.content-box .super-boxes img{
	width:calc(100% - 2px);
	margin:1px auto;
}
.content-box .super-boxes .title-container {
    text-transform: none;
    padding: 12px 15px;
}
.content-box .super-boxes .info-read{
	padding: 12px 0;
}
.logo-partner{
display:block;
text-align:center;
}
.logo-partner img{
max-width:85%;
transform:scale(1);
transition:transform .25s;
}
.logo-partner:hover img{
transform:scale(1.05);
}
.bl-flex{
display:flex;
flex-wrap:wrap;
align-items:center;
}
.bl-flex > div{
margin-bottom:20px;
}
.short-desc{
padding: 0 15px 10px;
font-size:14px;
    font-family: Roboto;
color:#535353;
}
.content-box .purch-boxes .title-container{
padding: 20px 15px 10px;
text-transform:none!important;;
font-family: "Open Sans";
font-weight:600;
color:#00275d;
}
.purch-boxes .info-read > div span:first-child {
    font-family: Roboto;
font-weight: 500;
width: 70%;
white-space: pre-wrap;
}
.purch-boxes .info-read > div span:last-child {
width: 30%;
}
.purch-boxes .info-read{
padding: 7px 0;
}
.purch-boxes .info-read > div {
padding-bottom: 5px;
}
.content-box .purch-boxes:hover .title-container{
color: #515151;
}
.content-box .purch-boxes:hover a{
background:#ededf1;
}

.last-form p{
    margin: 0;
    margin-top: 10px;
    margin-bottom: 5px;
	font-size:15px;
}
.last-form input {
    width: 100%;
    border-radius: 2px;
    padding: 10px 15px;
    border: 1px solid #e0e4e7;
	font-size:14px;
}
.last-form textarea {
    max-height: 180px;
    min-height: 80px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 10px 15px;
    border: 1px solid #e0e4e7;
    border-radius: 2px;
	font-size:14px;
}

.last-form .btn_send {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #ffd900;
    color: #fff;
    font-size: 15px;
    border-radius: 2px;
    text-transform: uppercase;
    min-width: 200px;
    cursor: pointer;
    transition: background .15s ease;
	margin-top:10px;
    display: block;
    font-weight: 600;
    padding: 10px 0;
    background: #ff9115;
	max-width:max-content;
}
.last-form .btn_send:hover {
    background: #fba03a;
}
.placement-desc{
	padding:5px 15px 5px 21px;
	font-size:13px;
	position:relative;
}
.placement-desc:before {
    content: '';
    display: block;
    height: 15px;
    width: 15px;
    background: #ffffff;
    border-radius: 50% 50% 0;
    transform: rotate(45deg);
    position: absolute;
    left: 0px;
    border: 4px solid #ff9115;
    top: 2px;
}
.purch-boxes.vacancy .info-read{
	display:flex;
}
.purch-boxes.vacancy .placement-desc{
	flex-grow:1;
}
.purch-boxes.vacancy .info-read > div span{
	width:auto!important;
}
.purch-boxes.vacancy .info-read  span:last-child{
	margin-left:10px;
}
.info-text {
font-size: 14px;
line-height: 25px;
color: #505050;
font-weight: 300;
margin: 30px 0;
}
.search-list{
padding-left:15px;
}
.search-list li {
margin-bottom: 15px;
float: none!important;
line-height: 18px;
padding-left: 5px;
font-weight: 700;
border-bottom: 1px dashed #f3f3f3;
padding-bottom: 5px;
font-family:Open Sans;
}
.search-list li:last-child{
border-bottom:none;
}
.search-list .text-title {
font-size: 15px;
font-weight: 500;
color: #656461;
    font-family: Roboto;
}
.search-list li a:hover {
    text-decoration: underline;
}

.button_mobile_wrapper {
    height: 35px;
    display: block;
    position: absolute;
    right: 15px;
    top: 40px;
    z-index: 3;
    cursor: pointer;
    width: 45px;
    top: 6px;
}
.button_mobile {
    position: absolute;
    width: 35px;
    height: 1px;
    background: #000;
    top: 18px;
    left: 5px;
    border-radius: 5px;
}
.button_mobile:before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    background: #000;
    top: -9px;
    border-radius: 5px;
}
.button_mobile:after {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    background: #000;
    top: 9px;
    border-radius: 5px;
}
.close-menu-btn{
	display:none;
}
.owl-carousel.owl-crsl2{
	display:block;
}


.delete-upload-file {
	color: #9f0000;
	font-size: 13px;
	margin-top: 4px;
	padding-left: 25px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.delete-upload-file:hover {
	text-decoration: underline;
}
.delete-upload-file:before, .delete-upload-file:after {
	content: '';
	display: block;
	height: 15px;
	width: 1px;
	position: absolute;
	background: #9f0000;
	top: 3px;
	left: 8px;
	transform: rotate(45deg);
}
.delete-upload-file:after {
	transform: rotate(-45deg);
}
#file-name{
	font-size:13px;
	margin-top:4px;
}
.form_box_plow input[type="file"]{
	display: none;
}
.form_box_plow [for="myFile"]{
	position: relative;
	overflow: hidden;
	display:block;
	width: max-content;
	height: 30px;
	line-height:30px;
	padding:0 20px;
	background: #00275d;
	border-radius: 3px;
	color: #fff;
	text-align: center;
	font-size:13px;
	cursor:pointer;
	font-weight:600;
}

@media (max-width:1199px){
	.top-header .m-top-menu {
		position: fixed;
		background: #fff;
		height: 100%;
		top: 0;
		left: -310px;
		z-index: 5;
		width: 300px;
		overflow: auto;
		transition:left 0.2s;
	}
	.top-header .m-top-menu.active {
	    left: 0;
	}
	.top-header .main-menu {
		display: block;
	}
	.top-header .main-menu li {
		display: block;
		margin-right: 0;
	}
	.top-header .main-menu li:not(.parent) > span i {
		display: none;
	}
	.top-header .main-menu li > span,
	.top-header .main-menu li > a {
		border-bottom: 1px solid #dedede;
		position: relative;
		display: flex;
	}
	.top-header .main-menu li span > a,
	.top-header .main-menu li > a {
		line-height: 18px;
		padding: 13px 0;
		display: block;
		font-size: 15px;
		padding-left: 10px;
		flex-grow: 1;
	}
	.top-header .main-menu li span i {
		min-width: 50px;
		position: relative;
	}
	.top-header .main-menu li span i:after {
		content: '';
		display: block;
		height: 7px;
		width: 7px;
		transform: rotate(45deg);
		border: 1px solid #000;
		top: 18px;
		right: 15px;
		position: absolute;
		border-left: none;
		border-bottom: none;
		transition: transform 0.2s;
	}
	.top-header .main-menu li span.visible > i:after {
		transform: rotate(135deg);
	}
	.top-header .main-menu .sub-menu {
		display: none;
		padding: 0;
		background: #f6f6f6;
		color: #282828;
	}
	.top-header .main-menu [data-level="1"] > li > span,
	.top-header .main-menu [data-level="1"] > li > a {
		border-bottom: 1px solid #fff;
	}

	.top-header .main-menu [data-level="2"] {
		background: #eaeaea;
		color: #000;
	}
	a.logo{
		height: 50px;
	}
	.logo img{
		width: auto;
	    height: 100%;
	    display: block;
	}
	.top-header {
	    padding: 3px 0;
	}
	.top-header .r-block{
		margin-right: 55px;
	}
	.langs {
    	font-size: 15px;
	}
	#search-form{
		height: 30px;
	}
	#search-form.active input{
		font-size: 14px;
	}
	.text-slide h1,
	.text-slide h2 {
	    font-size: 34px;
	    line-height: 37px;
	    margin-bottom: 18px;
	}
	.breadcrumbs .container{
		padding: 12px 15px 0;
	}
	.close-menu-btn {
		position: fixed;
		height: 40px;
		width: 40px;
		right: 10px;
		top: 15px;
		border-radius: 3px;
		z-index: 18;
		display: none;
	}
	.close-menu-btn span {
		display: block;
		height: 2px;
		width: 100%;
		background: #fff;
		transform: rotate(45deg);
		top: 50%;
		position: absolute;
		border-radius: 5px;
	}
	.close-menu-btn span:before {
		content: '';
		display: block;
		height: 2px;
		width: 100%;
		background: #fff;
		transform: rotate(90deg);
		top: calc(50% - 1px);
		position: absolute;
		border-radius: 5px;
	}
	.wrapper-overflow {
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0,0,0,.9);
		height: 100%;
		width: 100%;
		z-index: 2;
	}
	#page{
		padding-top: 82px;
	}
}

@media (max-width:959px){
	.text-slide {
	    padding: 1% 20px;
	}
	.text-slide h1,
	.text-slide h2 {
	    font-size: 24px;
	    line-height: 25px;
	    margin-bottom: 12px;
	}
	.link-show-more{
	    max-width: 230px;
	    padding-right: 45px;
	    padding-left: 30px;
	    width:auto;
	    height:44px;
	    line-height:44px;
	}
	.right-sidebar > div{
		width:calc(50% - 5px);
	}
	.right-sidebar > div:nth-child(1){
		margin-right:5px;
	}
	.right-sidebar > div:nth-child(2),
	.right-sidebar > div:nth-child(3){
		margin-left:5px;
	}
	.with-facevook iframe{
		width:auto!important;
		display:table;
		margin:0px auto;
		max-width:100%!important;
	}
	#footer{
		height:auto!important;
	}
	.right-sidebar{
		margin-top:30px;
	}
	.page-box{
		margin-top:25px;
	}
	.inside-box.back-from-s{
		clear:both;
		float:none!important;
		margin:0px auto 15px!important;
	}
}

@media (max-width:599px){
	.contact-header{
		font-size: 12px;
		height:auto;
    	line-height: 14px;
	}
	a.logo {
	    height: 36px;
	}
	.button_mobile_wrapper{
		top: 0px;
	}
	.langs {
	    font-size: 14px;
	}
	.search-block {
	    position: fixed;
	    top: 70px;
	    left: 0;
	    width: 100%;
	    background: white;
	    z-index: 2;
	    border-top: 1px solid #00275d;
	}
	#search-form {
		margin-left: 0;
		width: 100%;
		height: 36px;
	}
	#search-form.active input, #search-form input {
		width: 100% !important;
		padding: 0 20px;
		border: none !important;
		border-bottom: 1px solid #e3e3e8 !important;
		border-radius: 0 !important;
		font-size: 13px !important;
		background: #fffcf8 !important;
	}
	#search-form button {
		margin-right: 10px;
		background: url(/images/elements/search.svg) center center no-repeat !important;
		z-index: 4 !important;
		height: 35px !important;
		width: 40px !important;
		margin-right: 15px !important;
	}
	#header{
		position: fixed;
	    z-index: 18;
	    background: #fff;
	    width: 100%;
	    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
	    top: 0;
    	left: 0;
	}
	.top-header > .container{
		padding-left: 8px;
    	padding-right: 8px;
	}
	.button_mobile_wrapper{
		right:8px;
	}
	.top-header{
		background: #fff;
	}
	.btn-search{
		height:25px;
		width:25px;
		background:url(/images/elements/search.svg) center center no-repeat !important;
		transition:opacity: 0.2s;
	}
	.btn-search.show-search{
		opacity:0.7;
	}
	.search-block{
		top:0;
		z-index:-1;
		transition:top 0.2s, z-index 0.3s;
		transition-delay:0.2s,0s;
		box-shadow: 0 5px 4px -5px rgba(0,0,0,0.2);
		border-top: 1px solid #dfdfdf;
	}
	.search-block.show-search{
		top: 56px;
		z-index:2;
		transition:top 0.2s, z-index 0s;
		transition-delay:0s,0.3s;
	}
	.contact-header span{
		display:none;
	}
	#page{
		padding-top: 57px;
	}
	
	.text-slide {
	    padding: 1% 10px;
	}
	.text-slide h1,
	.text-slide h2 {
	    font-size: 20px;
	    line-height: 22px;
   	}
   	.right-sidebar > div{
   		width:100%;
		margin-right:0!important;
		margin-left:0!important;
	}
	.entety-block input{
		padding: 5px 15px;
	}
	.entety-block{
		padding: 40px 15px 20px;
	}
	.news-boxes .inset-box .img-news{
		width:100%;
	}
	.news-boxes .content-news{
		width: 100%;
    	margin-left: 0;
	}
	.purch-boxes.vacancy .info-read{
		flex-wrap: wrap;
	}
	.purch-boxes.vacancy .placement-desc{
		width:100%;
	}
	.purch-boxes.vacancy .info-read > div{
		width:100%;
	}
}



@media (max-width:350px){
	.top-header .m-top-menu{
		width:280px;
	}
	.close-menu-btn{
		height: 25px;
	    width: 25px;
	    right: 6px;
	    top: 10px
	}
}