@media (max-width:1400px){
    html[lang="ru-RU"] #top-menu > li{
        padding: 0 5px; 
    }
    html[lang="ru-RU"] .bottom-nav > li{
        padding-right: 9px;
    }
}
/* @media (max-width:1200px){
    html[lang="ru-RU"] .footer_image{
        display: table;
        float: none;
        margin: auto;
    }
} */
@media (max-width:991px){
    html[lang="ru-RU"] #logo {
        max-width: 220px;
       
    }
}
@media (max-width:1144px){
    html[lang="ru-RU"] #logo {
        max-width: 280px!important;
    }
}

.sitemap-section {
	display: flex;
	flex-direction: row;
}

@media only screen and (max-width: 980px) {
	.sitemap-section {
	  flex-direction: column;
	}
  }


  body.lang-active {
	overflow: hidden;
}

.language-prompt-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.language-prompt-overlay.lang-active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 999999;
	opacity: 1;
}
.language-prompt {
	width: 600px;
	max-width: 90%;
	background-color: #fff;
	position: absolute;
	padding: 40px;
	border-radius: 5px;
	text-align: center;
	top: 50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
	opacity: 0;
	transition: all 0.3s ease-out;
}

@media only screen and (max-width: 980px) {
	.language-prompt {
	  padding: 30px 20px;
	}
}

.language-prompt.lang-active {
	opacity: 1;
	z-index: 9999999;
}

.language-prompt__buttons {
	margin-top: 20px;
}

.language-prompt__button {
	background-color: #fa6400;
	color: #fff;
	padding: 5px 15px;
	border-radius: 5px;
	display: inline-block;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
	font-family: 'KnowledgeMedium',Helvetica,Arial,Lucida,sans-serif;
	font-size: 15px;
	border: 1px solid #fa6400;
	min-width: 200px;
	text-align: center;
	max-width: 100%;
}

.language-prompt__button:hover {
	background-color: #FF5900;
}

.language-prompt__button--border {
	background-color: transparent;
	border: 1px solid #4d4d4d;
	color: #4d4d4d;
}

.language-prompt__button--border:hover {
	background-color: #4d4d4d;
	border: 1px solid #4d4d4d;
	color: #ffffff;
}

.language-prompt__title {
	 margin-top: 20px;
	 line-height: 1.5;
}

@media only screen and (max-width: 980px) {
	.language-prompt__title {
	  font-size: 16px;
	}
}

.language-prompt__small {
	font-size: 14px;
	margin-top: 20px;
	line-height: 1.5;
}