@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
@font-face {
  font-family: "m4343";
  src: url("../fonts/m4343.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
}

.main {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.navbar {
  color: #343434;
}

.navbar_container {
  position: relative;
  max-width: 1470px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
  z-index: 5;
}

@media (max-width: 1440px) {
  .navbar_container {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .navbar_container {
    height: 60px;
  }
}
.navbar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar_wrapper_alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-family: "m4343";
  font-size: 32px;
  margin-right: 90px;
  color: #343434;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.logo b {
  font-weight: normal;
  color: #FFCD4D;
}

@media (max-width: 1000px) {
  .logo {
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .logo {
    font-size: 24px;
  }
}
.navbar_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 35px;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .navbar_menu {
    position: absolute;
    z-index: 100;
    top: 500%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: none;
  }
}
.navbar_menu.active_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.line {
  background-color: #D9D9D9;
  width: 1px;
  height: 26px;
}

.line.active_b {
  display: none;
}

.navbar_menu_item {
  color: #343434;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

.navbar_menu_item:hover {
  color: #FFC061;
}

.navbar_language {
  font-size: 20px;
  font-weight: 600;
  color: #343434;
}

.navbar_language_link {
  font-size: 20px;
  font-weight: 600;
  background-color: #ffffff;
  text-decoration: none;
}

.navbar_burger {
  position: relative;
  z-index: 5;
  display: none;
  width: 30px;
  height: 20px;
  margin-left: 20px;
}

.navbar_burger:hover {
  cursor: pointer;
}

@media (max-width: 1100px) {
  .navbar_burger {
    display: block;
  }
}
.navbar_burger::before {
  content: "";
  background-color: #343434;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar_burger::after {
  content: "";
  background-color: #343434;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar_burger.active_b::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}

.navbar_burger.active_b::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 9px;
}

.navbar_burger span {
  background-color: #343434;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 9px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar_burger.active_b span {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.navbar_burger_menu {
  position: fixed;
  background-color: rgba(238, 238, 238, 0.892);
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar_burger_menu.active_b {
  top: 0;
}

.br_top {
  width: 100%;
  height: 5px;
  background-color: #EDC356;
}

.header {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-height: 755px;
  min-height: 755px;
  background: url("../img/bg.jpg") center no-repeat;
  padding: 90px 0 107px 0;
  background-size: cover;
}

@media (max-width: 600px) {
  .header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 60px 0;
  }
}
.header_container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1470px;
  width: 100%;
}

@media (max-width: 600px) {
  .header_container {
    padding: 0 10px;
  }
}
.header_hero {
  position: absolute;
  background: url("../img/hero.png");
  width: 1156px;
  height: 831px;
  bottom: 0px;
  /* left: 39.8%; */
  right: 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 450px) {
  .header_hero {
    left: 12%;
  }
}
.header_animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.object1 {
  position: absolute;
  background: url("../img/cloud1.png") no-repeat;
  top: 400px;
  width: 663px;
  height: 391px;
  -webkit-animation: slide2 20s linear infinite both;
  animation: slide2 20s linear infinite both;
}

.object2 {
  position: absolute;
  background: url("../img/cloud2.png") no-repeat;
  width: 786px;
  height: 532px;
  left: -50px;
  top: -30px;
  -webkit-animation: slide 15s linear infinite both;
  animation: slide 15s linear infinite both;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(180%);
    transform: translateX(180%);
    opacity: 0;
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(180%);
    transform: translateX(180%);
    opacity: 0;
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}
.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 55px;
}

@media (max-width: 1440px) {
  .header_wrapper {
    margin-left: 30px;
  }
}
@media (max-width: 600px) {
  .header_wrapper {
    margin-left: 0;
  }
}
.header_block {
  position: relative;
  max-width: 572px;
  background-color: #494745;
  color: #ffffff;
  padding: 32px 0 0 30px;
  border-bottom: 6px solid #EDC356;
  z-index: 3;
}

@media (max-width: 480px) {
  .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 32px 0 0 0;
  }
}
.block_tabs {
  position: absolute;
  top: -14px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .block_tabs {
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.block_tabs_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding: 5px 15px;
  background-color: #FFC061;
  border: 1px solid #FFD9A0;
}

.about {
  position: absolute;
  background: url("../img/about.svg") center no-repeat;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about:hover {
  -webkit-box-shadow: 0px 0px 18px 0px rgba(255, 171, 46, 0.2);
  box-shadow: 0px 0px 18px 0px rgba(255, 171, 46, 0.2);
}

.block_title {
  text-transform: uppercase;
  font-family: "m4343";
  font-size: 48px;
  margin-bottom: 5px;
}

.block_subtitle {
  font-weight: 400;
  font-size: 20px;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 28px;
}

@media (max-width: 480px) {
  .block_subtitle {
    font-size: 16px;
    max-width: 420px;
  }
}
.block_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .block_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 14px 31px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}

.btn:hover {
  background-color: #FFAB2E;
}

@media (max-width: 600px) {
  .btn {
    font-size: 14px;
    white-space: nowrap;
  }
}
.primary {
  background-color: #FFC061;
}

.secondary {
  border: 2px solid #FFC061;
}

.content {
  background: url("../img/bg_body.jpg") center top no-repeat;
  background-size: cover;
  width: 100%;
}

@media (max-width: 1120px) {
  .content {
    background-size: cover;
  }
}
.content_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1470px;
  width: 100%;
  padding-top: 50px;
  gap: 30px;
  margin-bottom: 130px;
}

@media (max-width: 1440px) {
  .content_container {
    padding: 50px 30px 0 30px;
  }
}
@media (max-width: 1120px) {
  .content_container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.news_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@media (max-width: 1120px) {
  .news_wrapper {
    width: 100%;
  }
}
.news_block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 800px) {
  .news_block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news_block_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 39%;
  overflow: hidden;
}

@media (max-width: 800px) {
  .news_block_img {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news_content {
  display: inline-block;
  padding: 25px 0 0 30px;
}

@media (max-width: 800px) {
  .news_content {
    position: absolute;
    width: 95%;
    margin-left: 50px;
    background-color: #F6F6F6;
    padding: 25px 20px 0 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 45, 37, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(52, 45, 37, 0.15);
  }
}
@media (max-width: 450px) {
  .news_content {
    margin-left: 0;
    height: 130%;
    width: auto;
  }
}
.news_title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "m4343";
  color: #343434;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.news_title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #FFC061;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.news_subtitle {
  font-weight: 400;
  height: 120px;
  margin-bottom: 11px;
  max-width: 535px;
  font-size: 20px;
  line-height: 150%;
  /* or 24px */
  letter-spacing: -0.01em;
  color: #616161;
  overflow: hidden;
}

.content_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 800px) {
  .content_bottom {
    margin-bottom: 15px;
  }
}
.news_date {
  font-weight: 600;
  font-size: 20px;
  color: #616161;
}

@media (max-width: 600px) {
  .news_date {
    font-size: 16px;
    white-space: nowrap;
  }
}
.info_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 20px;
}

@media (max-width: 1120px) {
  .info_wrapper {
    width: 100%;
  }
}
.online_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #F6F6F6;
  max-height: 137px;
  height: 100%;
  padding-top: 22px;
}

@media (max-width: 1120px) {
  .online_block {
    padding-bottom: 22px;
  }
}
.status {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 20px;
  max-width: 96px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  right: 0;
  color: #ffffff;
}

.online {
  background-color: #AFE088;
}

.offline {
  background-color: #E09888;
}

.server {
  font-size: 24px;
  line-height: 29px;
}

.title {
  font-weight: 600;
  text-transform: uppercase;
  color: #343434;
  margin-bottom: 1px;
}

.players {
  font-weight: 400;
  color: #343434;
  margin-bottom: 5px;
}

.count {
  font-weight: 600;
  color: #FFC061;
}

.top_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F6F6F6;
  padding-top: 25px;
}

.top_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: #343434;
  margin-bottom: 20px;
}

.top_switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  width: 100%;
  padding: 0 92px;
  margin-bottom: 30px;
}

.top_switcher_item {
  cursor: pointer;
}

.active {
  position: relative;
  color: #FFC061;
}

.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #FFC061;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.disabled {
  color: #969696;
}

.top_players {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top_players_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #343434;
  background-color: #EEEEEE;
  height: 87px;
  padding: 0 28px;
}

.top_players_item:nth-child(even) {
  background-color: transparent;
}

.stat_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.player_pos {
  width: 48px;
  font-size: 24px;
  font-weight: 500;
  margin-right: 10px;
}

.player_class {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.player_name {
  max-width: 230px;
  max-height: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 420px) {
  .player_name {
    max-width: 120px;
  }
}
.player_lvl {
  width: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  background: rgba(218, 218, 218, 0.5);
}

.footer_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  max-width: 1470px;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 75px;
}

@media (max-width: 1440px) {
  .footer_container {
    padding: 45px 30px 75px 30px;
  }
}
@media (max-width: 1120px) {
  .footer_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 25px 30px 35px 30px;
  }
}
.footer_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1120px) {
  .footer_info {
    margin-bottom: 20px;
  }
}
.info_logo {
  text-transform: uppercase;
  font-family: "m4343";
  font-size: 32px;
  line-height: 35px;
  color: #898989;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info_text {
  max-width: 400px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #989898;
  margin-bottom: 10px;
}

.info_sign {
  font-weight: 500;
  font-size: 16px;
  color: #989898;
}

.sign_link {
  font-weight: 600;
  color: #898989;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

.sign_link:hover {
  color: #FFAB2E;
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
}

@media (max-width: 1120px) {
  .footer_menu {
    gap: 90px;
    margin-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .footer_menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
  }
}
.menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu_list_title {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #898989;
  margin-bottom: 20px;
}

.menu_list_title:after {
  content: "";
  position: absolute;
  width: 75px;
  height: 1px;
  bottom: -9px;
  left: 0;
  background-color: #898989;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

@media (max-width: 1120px) {
  .menu_list_title:after {
    content: "";
    width: 100%;
  }
}
.menu_list_item {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #989898;
  margin-bottom: 10px;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

@media (max-width: 450px) {
  .menu_list_item {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.menu_list_item:last-child {
  margin-bottom: 0;
}

.menu_list_item:hover {
  color: #343434;
}

.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.tg {
  width: 50px;
  height: 50px;
  background: url("../img/tg.png") center no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tg:hover {
  background: url("../img/tg_hover.png") center no-repeat;
}

.ds {
  width: 50px;
  height: 50px;
  background: url("../img/ds.png") center no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ds:hover {
  background: url("../img/ds_hover.png") center no-repeat;
}

.vk {
  width: 50px;
  height: 50px;
  background: url("../img/vk.png") center no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.vk:hover {
  background: url("../img/vk_hover.png") center no-repeat;
}
.disabled_top {
  display: none;
}
.active_top {
  display: flex;
}
.lng_switch {
  font-size: 20px;
  font-weight: 600;
  color: #343434;
  transition: 0.3s;
}
.lng_switch:hover {
  color: #FFAB2E;
}