:root {
  --margin-main: 24px;
  --margin-min: 8px;
  --margin-small: 12px;
  --margin-medium: 36px;
  --margin-big: 48px;
}

@media screen and (max-height: 780px) {
  :root {
    --margin-main: 16px;
    --margin-min: 6px;
    --margin-small: 8px;
    --margin-medium: 24px;
    --margin-big: 36px;
  }
}
@media screen and (max-height: 680px) {
  :root {
    --margin-main: 24px;
    --margin-min: 8px;
    --margin-small: 12px;
    --margin-medium: 36px;
    --margin-big: 48px;
  }
}
@font-face {
  font-family: "Crimson";
  src: url("../fonts/crimson-text/CrimsonText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson";
  src: url("../fonts/crimson-text/CrimsonText-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson";
  src: url("../fonts/crimson-text/CrimsonText-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crimson";
  src: url("../fonts/crimson-text/CrimsonText-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans Nova";
  src: url("../fonts/GillSans-Nova/gillsansnova_book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.f-a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
}

.f-b {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.f-c {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.f-s {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
}

.f-e {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}

.f-ai {
  align-items: center;
}

.f-dr {
  flex-direction: column;
}

.f-w {
  flex-wrap: wrap;
}

.wrapper {
  max-width: 90%;
  margin: 0 auto;
}

.btn-primary {
  padding: 3px;
  box-sizing: border-box;
  border: 2px solid rgba(239, 232, 227, 0.3);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  color: #efe8e3;
  background-color: #0a0707;
  box-shadow: 0px 4px 12px 0px rgba(3, 2, 2, 0.4);
  transition: 0.3s;
  font-family: "Crimson", serif;
  font-weight: 600;
}
.btn-primary span {
  display: flex;
  padding: 2px 12px;
  box-sizing: border-box;
  border: 1px solid rgba(239, 232, 227, 0.1);
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: 0.3s;
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0, -50%);
  background: url("../img/btn_decor.png");
  width: 6px;
  height: 12px;
  transition: 0.3s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%) rotate(-180deg);
  background: url("../img/btn_decor.png");
  width: 6px;
  height: 12px;
  transition: 0.3s;
}
.btn-primary:hover {
  border: 2px solid rgba(239, 232, 227, 0.4);
  color: #b02114;
}
.btn-primary:hover span {
  border: 1px solid #b02114;
  background: rgba(176, 33, 20, 0.05);
}
.btn-primary:hover::after {
  transform: rotate(180deg) translate(8px, 50%);
}
.btn-primary:hover::before {
  transform: rotate(0deg) translate(8px, -50%);
}

.btn-main {
  position: relative;
  padding: 8px 14px;
  color: #efe8e3;
  border-radius: 8px;
  text-transform: uppercase;
  background: linear-gradient(0deg, #b02114 50%, rgba(3, 2, 2, 0.1)), linear-gradient(0deg, rgba(3, 2, 2, 0.1), rgba(176, 33, 20, 0.8));
  z-index: 0;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0px 4px 12px 0px rgba(3, 2, 2, 0.4);
  font-family: "Crimson", serif;
  font-weight: 600;
}
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(360deg, rgba(174, 33, 21, 0.2) 0%, rgba(217, 84, 73, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}
.btn-main:hover {
  filter: saturate(1.2);
  color: #030202;
  box-shadow: 0px 4px 12px 0px rgba(3, 2, 2, 0.4), inset 0px 2px 0px 0px #b02114;
}

.btn-game {
  background: url("../img/btn_important.png");
  width: 263px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #efe8e3;
  background-size: 100% 100%;
  box-shadow: 0 0 10px rgba(3, 2, 2, 0.8);
}
.btn-game:hover {
  filter: saturate(1.4);
  letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
  .btn-game {
    background: url("../img/btn_important-m.png");
    width: 100%;
    height: 70px;
    background-size: 100% 100%;
  }
}
@keyframes slide-in-elliptic-top-fwd {
  0% {
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotateX(0) scale(1);
    transform-origin: 50% 1400px;
    opacity: 1;
  }
}
@keyframes slide-out-elliptic-top-bck {
  0% {
    transform: translateY(0) rotateX(0) scale(1);
    transform-origin: 50% 1400px;
    opacity: 1;
  }
  100% {
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform-origin: 50% 100%;
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1000px);
    opacity: 0;
  }
}
@keyframes puff-in-center {
  0% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-out-center {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes outbg {
  from {
    background: rgba(3, 2, 2, 0.96);
  }
  to {
    background: rgba(3, 2, 2, 0);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Crimson", serif;
  font-weight: 400;
  background: #030202;
  color: #e6d7cc;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  vertical-align: baseline;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #efe8e3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0px;
  font-family: "Crimson", serif;
  font-weight: 700;
}

i {
  font-family: "Crimson", serif;
  font-style: italic;
}

div,
section {
  transition: 0.3s ease;
}

.wrapper {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 64px;
}

#home {
  height: 100vh;
  overflow: hidden;
}

#mainpage {
  height: 100%;
  background-image: url("../img/mainpage_bg.png");
  background-size: auto 100%;
  background-position: -30px 0px;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.6s;
}
#mainpage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(90% 70.74% at 50.82% 50.3%, rgba(20, 15, 15, 0) 0%, #140f0f 100%), radial-gradient(39.73% 82.05% at 26.86% 31.69%, rgba(14, 10, 10, 0) 0%, rgba(14, 10, 10, 0.7) 100%), linear-gradient(0deg, rgba(10, 7, 7, 0) 66.03%, rgba(10, 7, 7, 0.8) 100%), linear-gradient(90deg, rgba(10, 7, 7, 0) 77.5%, #0a0707 100%);
}

.mainpage_container {
  position: relative;
  z-index: 1;
  height: calc(100% - 90px);
  padding-top: 90px;
}

#header {
  height: 68px;
  position: absolute;
  z-index: 19;
  width: calc(100% - 128px);
  padding: 0px 64px;
  top: 0;
}
#header.unfixed {
  background: transparent;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: puff-in-center 0.3s ease;
  background: rgba(3, 2, 2, 0.96);
  padding: 4px 64px;
  z-index: 19;
  height: auto;
}

.menu {
  position: relative;
}

.header_menu_mob {
  margin: 0 var(--margin-big);
  background: rgba(239, 232, 227, 0.1);
  background: url(../img/lang_icon.png);
  border-radius: 50%;
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
.header_menu_mob:hover {
  transform: rotate(360deg);
}
.header_menu_mob:hover span:first-child {
  width: 10px;
}
.header_menu_mob:hover span {
  transform: rotate(-360deg);
}
.header_menu_mob span {
  width: 16px;
  height: 3px;
  background: #efe8e3;
  display: block;
  margin: 2px 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header_logo {
  width: 130px;
  display: flex;
  margin-top: var(--margin-min);
  position: relative;
  transition: 0.3s;
}
.header_logo::after {
  position: absolute;
  content: "";
  left: -11px;
  right: 0;
  top: -17px;
  width: 182px;
  height: 89px;
  background: url(../img/logo-full.png);
  z-index: 1;
  background-size: contain;
  background-position: -18px;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s;
  animation: fade-out 0.3s ease;
}
.header_logo:hover::after {
  opacity: 1;
  animation: puff-in-center 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
.header_logo img {
  width: 100%;
}

.header_menu {
  margin-left: var(--margin-big);
}
.header_menu.mobmenu {
  margin-left: 0;
  display: none;
  position: absolute;
  top: 58px;
  right: 0px;
  padding: 12px;
  background: rgba(3, 2, 2, 0.96);
  border-radius: 8px;
  border: 2px solid rgba(239, 232, 227, 0.4);
  z-index: 6;
  animation: slide-in-elliptic-top-fwd 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.header_menu.mobmenu::after {
  position: absolute;
  right: 0;
  top: -15px;
  width: 20px;
  transform: translate(-62px, 0);
  opacity: 0.4;
  z-index: -1;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23efe8e3' d='m11 7l-4 6h8z'/%3E%3C/svg%3E");
}
.header_menu.mobmenu .header_menu_link {
  margin: var(--margin-main);
  height: auto;
}
.header_menu.mobmenu .header_menu_link:hover {
  transform: none;
  letter-spacing: 0;
}

.header_menu_link {
  text-transform: uppercase;
  margin-left: var(--margin-main);
  color: #efe8e3;
  transition: 0.3s;
  height: 60px;
  display: flex;
  align-items: center;
}
.header_menu_link:first-child {
  margin-left: 0;
}
.header_menu_link:hover {
  transform: rotate(-8deg);
  letter-spacing: 4px;
  color: #b02114;
}

.header_lang {
  margin-right: var(--margin-main);
  position: relative;
}

.lang_item {
  background: url("../img/lang_icon.png");
  width: 52px;
  height: 52px;
  color: #efe8e3;
  font-family: "Crimson", serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.lang_item span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.lang_item:hover {
  color: #b02114;
  transform: rotate(360deg);
  filter: brightness(1.5);
}
.lang_item:hover span {
  transform: rotate(-360deg);
}

.lang_panel {
  display: none;
  position: absolute;
  top: 50px;
  left: -14px;
  padding: 12px;
  z-index: 14;
}
.lang_panel.opened {
  display: block;
  animation: slide-in-elliptic-top-fwd 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.lang_panel.closed {
  animation: slide-out-elliptic-top-bck 0.4s ease-in both;
}

.header_btns a {
  margin-left: var(--margin-small);
}
.header_btns a:first-child {
  margin-left: 0;
}

#maincontent {
  height: 100%;
  flex-wrap: wrap;
}

.maininformer {
  max-width: 780px;
  display: none;
}
.maininformer.active {
  display: flex;
  animation: fade-in 0.4s ease-in;
}

.maininformer_title {
  font-family: "Crimson", serif;
  font-weight: 700;
  display: inline-block;
  font-size: 64px;
  line-height: 80px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.maininformer_title span {
  background: linear-gradient(180deg, #d6c399, #e4e2d8 50%, #e9cfb9, #f7cca4 60%, #e4e2d8 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.maininformer_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(3, 2, 2, 0.2);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
  transform: translate(0, -50%);
}

.maininformer_desc {
  font-size: 20px;
  color: rgba(230, 215, 204, 0.6);
  margin-top: var(--margin-min);
  margin-bottom: var(--margin-main);
  display: block;
}

.maininformer_content {
  font-size: 24px;
  margin-top: var(--margin-main);
  line-height: 36px;
  letter-spacing: 0.01em;
}

.maininformer_preim {
  margin-top: var(--margin-medium);
}

.maininformer_preim-item {
  width: 160px;
  height: 160px;
  box-sizing: border-box;
  padding: 24px 12px;
  margin-right: var(--margin-main);
}
.maininformer_preim-item span {
  display: block;
  margin-top: var(--margin-small);
  font-size: 20px;
}

.maininformer_btns {
  margin-top: var(--margin-medium);
}
.maininformer_btns a {
  margin-left: var(--margin-small);
  font-size: 24px;
}
.maininformer_btns a:first-child {
  margin-left: 0;
}
.maininformer_btns .btn-primary {
  width: 265px;
  height: 70px;
}
.maininformer_btns .btn-primary span {
  width: 100%;
  height: 100%;
}

.selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: var(--margin-min) 0px;
  height: 101px;
}
.selector.active .selector_desc, .selector:hover .selector_desc {
  opacity: 1;
}
.selector.active .selector_item, .selector:hover .selector_item {
  width: 100px;
  height: 101px;
  background: transparent;
  background-size: 100px 101px;
}
.selector.active .selector_item .selector_item-img, .selector:hover .selector_item .selector_item-img {
  opacity: 1;
}
.selector.active .selector_item::after, .selector:hover .selector_item::after {
  opacity: 1;
}
.selector.active .selector_item::before, .selector:hover .selector_item::before {
  opacity: 1;
}

.selector_desc {
  margin-right: var(--margin-main);
  color: #efe8e3;
  text-align: right;
  opacity: 0.6;
  transition: 0.3s;
}

.selector_desc-name {
  font-family: "Crimson", serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 4px;
}

.selector_desc-chronic {
  font-size: 20px;
}

.selector_item {
  background: url("../img/selectors/block.png");
  width: 100px;
  height: 101px;
  background-size: 80px 81px;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3s;
  background-position: 50% 50%;
}
.selector_item::after {
  content: "";
  background: url("../img/selectors/active-block.png");
  width: 100px;
  height: 101px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
}
.selector_item::before {
  content: "";
  background: url("../img/selectors/active-selector.png");
  width: 103px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 7px), -50%);
  transition: 0.3s;
  opacity: 0;
}

.maininformer_selectors.secondpage {
  position: relative;
  background: #0a0707;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(239, 232, 227, 0.3);
  width: 208px;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  margin: 0;
}
.maininformer_selectors.secondpage:hover {
  border: 1px solid rgba(176, 33, 20, 0.4);
  cursor: pointer;
}
.maininformer_selectors.secondpage:hover::after {
  transform: translate(0, -50%) scale(1.4);
}
.maininformer_selectors.secondpage .block-servers {
  width: 100%;
  position: absolute;
  bottom: 58px;
  top: auto;
  background: rgba(3, 2, 2, 0.96);
  border-radius: 8px;
  z-index: 4;
}
.maininformer_selectors.secondpage .block-servers.active {
  animation: slide-in-elliptic-top-fwd 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.maininformer_selectors.secondpage .block-servers.active::after {
  position: absolute;
  right: 0%;
  bottom: -13px;
  width: 20px;
  transform: translate(-12px, 0) rotate(180deg);
  vertical-align: -0.125em;
  opacity: 0.4;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23efe8e3' d='m11 7l-4 6h8z'/%3E%3C/svg%3E");
}
.maininformer_selectors.secondpage .block-servers.active .selector {
  display: flex;
  transition: 0.3s;
  max-width: 100%;
  width: auto;
  justify-content: flex-start;
  background: rgba(10, 7, 7, 0.09);
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  margin-top: 1px;
  padding: 16px;
}
.maininformer_selectors.secondpage .block-servers.active .selector:hover {
  background: rgba(239, 232, 227, 0.1);
}
.maininformer_selectors.secondpage .block-servers.active .selector .selector_item {
  display: flex;
}
.maininformer_selectors.secondpage .block-servers.active .selector .selector_item-lable {
  position: relative;
  bottom: 16px;
  transform: translate(16px, 0);
  font-size: 10px;
  padding: 0px 8px 0px;
  line-height: 17px;
  height: 16px;
}
.maininformer_selectors.secondpage .block-servers.active .selector {
  display: flex;
}
.maininformer_selectors.secondpage .block-servers.closed {
  animation: slide-out-elliptic-top-bck 0.4s ease-in both;
}
.maininformer_selectors.secondpage .selector {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: auto;
  padding: 12px 18px 12px 0px;
  display: none;
  max-width: 320px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px var(--margin-small);
}
.maininformer_selectors.secondpage .selector .selector_item {
  width: 21px;
  height: 21px;
  background-size: auto;
}
.maininformer_selectors.secondpage .selector .selector_item img {
  width: 21px;
}
.maininformer_selectors.secondpage .selector .selector_item::after, .maininformer_selectors.secondpage .selector .selector_item::before {
  display: none;
}
.maininformer_selectors.secondpage .selector .selector_desc {
  order: 2;
  margin: 0;
  margin-left: var(--margin-min);
  text-transform: uppercase;
}
.maininformer_selectors.secondpage .selector .selector_desc-name {
  font-size: 18px;
  margin-bottom: 0;
}
.maininformer_selectors.secondpage .selector .selector_desc-chronic {
  display: none;
}
.maininformer_selectors.secondpage .selector .desc {
  order: 2;
  margin: 0;
  margin-left: var(--margin-min);
  text-transform: uppercase;
}
.maininformer_selectors.secondpage .selector .desc.active, .maininformer_selectors.secondpage .selector .desc:hover {
  opacity: 1;
}
.maininformer_selectors.secondpage .selector.active {
  display: flex;
  height: auto;
}
.maininformer_selectors.secondpage::after {
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  content: "";
  position: absolute;
  background: url("../img/arrow-dots.svg");
  width: 12px;
  height: 6px;
  transition: 0.3s;
}

.block-servers {
  width: 100%;
  position: absolute;
  top: 80px;
  background: rgba(3, 2, 2, 0.96);
  border-radius: 8px;
  z-index: 3;
}

.block-selector {
  width: 100%;
}

.selector_item-img {
  position: absolute;
  display: flex;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: 0.3s;
}
.selector_item-img img {
  width: 100%;
}

.selector_item-lable {
  background: linear-gradient(180deg, #7bc03f 0%, #4b7e1f 100%);
  text-transform: uppercase;
  font-size: 12px;
  color: #efe8e3;
  padding: 4px 8px 0px;
  border-radius: 2em;
  font-family: "Crimson", serif;
  font-weight: 700;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 0);
  z-index: 1;
  line-height: 18px;
}

.mainsocials {
  width: 100%;
  margin: var(--margin-small) 0px 0px 0px;
}

.mainsocials_item {
  width: 52px;
  height: 52px;
  margin: 0px var(--margin-small);
  border-radius: 0.5em;
  border: 2px solid transparent;
}
.mainsocials_item:hover .mainsocials_item-icon, .mainsocials_item:active .mainsocials_item-icon {
  transform: rotate(360deg) scale(1.4);
}

.mainsocials_item-icon {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

#footer {
  display: none;
  background-color: #030202;
  padding: 64px 0px;
  font-family: "Gill Sans Nova", serif;
  font-weight: 400;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(230, 215, 204, 0.2);
}
#footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/block-bg.png");
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}
#footer.opened {
  padding: var(--margin-main);
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  animation: slide-in-bottom 0.4s ease;
}
#footer.opened .footer_copyrights {
  margin-bottom: 36px;
}
#footer.closed {
  position: absolute;
  width: 100%;
  animation: slide-out-bottom 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.footer_menu_item {
  margin: 0px var(--margin-small);
  color: #efe8e3;
  text-transform: uppercase;
  font-size: 14px;
}
.footer_menu_item:hover {
  color: #b02114;
}

.footer_copyrights {
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  opacity: 0.6;
  margin-top: var(--margin-main);
}

.modal {
  width: 100%;
  height: 100%;
  background: rgba(3, 2, 2, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  display: none;
}
.modal.active {
  animation: fade-in 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.modal.active .modal_block {
  animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.modal.closed {
  animation: fade-out 0.4s ease;
}
.modal.active {
  display: block;
  opacity: 1;
}

.modal_block {
  max-width: 700px;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px;
  background: #030202;
  border-radius: 8px;
  border: 2px solid rgba(239, 232, 227, 0.4);
  position: relative;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal_block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/block-bg.png");
  z-index: 1;
  opacity: 0.2;
}

.modal_title {
  text-align: center;
  font-family: "Crimson", serif;
  font-weight: 700;
  font-size: 40px;
  position: relative;
  z-index: 2;
}

.modal_container {
  margin-top: var(--margin-big);
  position: relative;
  z-index: 2;
}

.modal_item {
  border-bottom: 1px solid rgba(239, 232, 227, 0.1);
}
.modal_item:last-child {
  border-bottom: 1px solid transparent;
}

.modal_item_info {
  margin: var(--margin-main) 0;
}
.modal_item_info img {
  filter: drop-shadow(0px 0px 24px rgba(176, 33, 20, 0.4));
  margin-right: var(--margin-main);
}

.modal_info_content h3 {
  font-size: 32px;
  font-family: "Crimson", serif;
  font-weight: 700;
  margin-bottom: var(--margin-small);
}
.modal_info_content span {
  font-size: 20px;
  opacity: 0.6;
}

.modal_item_btns {
  margin-left: var(--margin-min);
}
.modal_item_btns a {
  margin: 2px 0;
}

.modal_btn-main {
  width: auto;
  display: flex;
  justify-content: center;
  margin: var(--margin-main) 0 0 0;
  text-align: center;
  align-items: center;
  height: 38px;
  font-size: 24px;
}

.modal_close {
  position: absolute;
  right: -24px;
  top: -24px;
  font-size: 24px;
  width: 20px;
  height: 18px;
  z-index: 2;
  background: #030202;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  border: 2px solid #4e4a48;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.modal_close:hover {
  transform: rotate(360deg);
  border: 2px solid rgba(176, 33, 20, 0.4);
}

#page #footer {
  display: block;
}

.maininformer-page .maininformer_title {
  font-size: 80px;
}
.maininformer-page .maininformer_content {
  text-align: center;
  margin: 0;
  max-width: 560px;
}
.maininformer-page .maininformer_btns {
  margin-top: var(--margin-medium);
}

#infopage {
  height: calc(100vh - 75px);
  width: 100%;
  background-image: url("../img/interlude-bg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.6s;
  z-index: 8;
}
#infopage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 16, 16, 0) 60.45%, #151010 100.9%), linear-gradient(0deg, rgba(10, 7, 7, 0) 66.03%, #0a0707 100%), radial-gradient(33.98% 110.59% at 51.02% 97.97%, rgba(10, 7, 7, 0.8) 0%, rgba(10, 7, 7, 0) 100%);
}

.infopage_container {
  position: relative;
  z-index: 1;
  height: 100%;
}

#infoline {
  border-top: 1px solid rgba(239, 232, 227, 0.2);
  border-bottom: 1px solid rgba(239, 232, 227, 0.2);
  background: #030202;
  position: relative;
  z-index: 3;
  padding: var(--margin-small) 0;
}
#infoline.fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 11;
  top: 80px;
  width: 100%;
  padding: 2px 0;
}
#infoline.fixed .maininformer_selectors {
  border: none;
}
#infoline.fixed .maininformer_selectors.secondpage .block-servers {
  top: 58px;
  bottom: auto;
}
#infoline.fixed .maininformer_selectors.secondpage .block-servers.active::after {
  top: -13px;
  bottom: auto;
  transform: translate(-12px, 0) rotate(0deg);
}
#infoline.fixed .maininformer_selectors.secondpage .selector_item-lable {
  display: none;
}
#infoline.fixed .maininformer_selectors.secondpage .selector {
  padding: 12px 6px;
}
#infoline.fixed .online_info {
  font-size: 16px;
}
#infoline.fixed .second_nav_item {
  font-size: 16px;
  text-transform: none;
}
#infoline.fixed .second_nav_item.active::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #b02114;
  height: 3px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}
#infoline.unfixed {
  transition: top 0.3s ease;
}
#infoline::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/block-bg.png");
  z-index: 1;
  opacity: 0.2;
}

#about {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.about_tabs {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}

.about_container {
  height: 900px;
  display: none;
  padding-bottom: 36px;
  background-size: cover;
  background-position: center;
}
.about_container .wrapper {
  width: 100%;
}
.about_container .wrapper.left {
  justify-content: flex-start;
  display: flex;
}
.about_container .wrapper.right {
  justify-content: flex-end;
  display: flex;
}
.about_container.active {
  display: flex;
  animation: fade-in 0.6s ease;
}

.about_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_content .maininformer_content {
  width: 82%;
}

.about_nav {
  box-sizing: border-box;
  height: 70px;
  border: 2px solid rgba(239, 232, 227, 0.3);
  box-shadow: 0px 4px 12px 0px rgba(3, 2, 2, 0.4);
  border-radius: 8px;
  background: #0a0707;
}

.about_nav-link {
  font-size: 24px;
  text-align: center;
  position: relative;
  color: rgba(239, 232, 227, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  width: -webkit-fill-available;
  justify-content: center;
  border-left: 1px solid rgba(239, 232, 227, 0.3);
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Crimson", serif;
  font-weight: 600;
}
.about_nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: radial-gradient(173.21% 320.42% at 49.89% 192.25%, #c9b09a 0%, rgba(201, 176, 154, 0) 47.85%);
  opacity: 0;
  transition: 0.3s;
}
.about_nav-link:hover {
  letter-spacing: 2px;
}
.about_nav-link.active {
  letter-spacing: 0px;
}
.about_nav-link.active, .about_nav-link:hover {
  color: #efe8e3;
}
.about_nav-link.active::before, .about_nav-link:hover::before {
  opacity: 1;
}

.about_rates {
  margin-top: var(--margin-big);
}

.about_rates_item {
  width: 206px;
  text-align: center;
  letter-spacing: 0.01em;
  margin-left: var(--margin-main);
}
.about_rates_item:first-child {
  margin-left: 0;
}

.about_rates-num {
  background: url("../img/info/rates-bg.png");
  width: 80px;
  height: 80px;
  background-size: cover;
  font-size: 24px;
  font-family: "Crimson", serif;
  font-weight: 700;
  margin: 0 auto;
}

.about_rates-name {
  font-family: "Crimson", serif;
  font-weight: 700;
  font-size: 24px;
  margin: var(--margin-main) 0 var(--margin-small) 0;
  color: #efe8e3;
}

.about_rates-desc {
  color: rgba(239, 232, 227, 0.6);
  line-height: 24px;
  margin: 0 16px;
}

.about_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: var(--margin-big);
}
.about_btn span {
  padding: var(--margin-small) var(--margin-main);
}

.about_list {
  margin: 0;
  padding: 0;
  margin-left: var(--margin-main);
  margin-top: var(--margin-main);
  font-size: 24px;
}
.about_list li {
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 36px;
}

.informer_block {
  height: calc(700px - 2 * var(--margin-main) * 2);
  background-size: cover;
  padding: calc(2 * var(--margin-main)) var(--margin-main);
  position: relative;
  border: 1px solid rgb(43, 38, 37);
  border-right: none;
  width: calc(100% - 2px);
  color: #efe8e3;
  background-position: bottom;
}
.informer_block:hover {
  filter: brightness(1.2);
}
.informer_block:hover .informer_block_title {
  transform: scale(0.8);
  z-index: 1;
  padding-bottom: var(--margin-min);
  text-shadow: 0px 0px 10px #030202;
}
.informer_block:last-child {
  border-right: 1px solid rgb(43, 38, 37);
}
.informer_block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 15, 15, 0) 28.62%, #0c0808 96.75%);
}
.informer_block p {
  font-size: 20px;
  letter-spacing: 0.01em;
  text-align: center;
  z-index: 1;
  padding: 0 var(--margin-main);
}

.informer_block_label {
  background: linear-gradient(180deg, #df613b 0%, #9d2111 100%);
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Crimson", serif;
  font-weight: 700;
  color: #efe8e3;
  padding: 4px 8px 0px;
  border-radius: 2em;
  z-index: 1;
  line-height: 18px;
  margin-bottom: var(--margin-small);
}

.informer_block_title {
  font-family: "Crimson", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  z-index: 1;
  transition: 0.3s;
}

.informer_block_date {
  font-size: 20px;
  letter-spacing: 0.01em;
  color: rgba(239, 232, 227, 0.6);
  z-index: 1;
}

#streams {
  text-align: center;
  margin-top: 100px;
  margin-bottom: var(--margin-main);
}

.devider {
  width: 100%;
}
.devider img {
  width: 100%;
}
.devider img.devider_rotated {
  transform: rotate(-180deg);
}

.stream_nav_items {
  text-align: center;
  text-transform: uppercase;
  margin: var(--margin-main) 0;
}
.stream_nav_items span {
  margin-left: var(--margin-main);
  font-family: "Crimson", serif;
  font-weight: 700;
  color: rgba(239, 232, 227, 0.4);
  cursor: pointer;
  transition: 0.3s;
}
.stream_nav_items span:last-child {
  margin-right: var(--margin-main);
}
.stream_nav_items span:hover, .stream_nav_items span.active {
  color: #efe8e3;
}

.streams_container {
  width: 100%;
  position: relative;
}

.streams_blocks {
  margin-top: var(--margin-big);
  margin-bottom: calc(2 * var(--margin-big));
  gap: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.streams_item {
  width: 340px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0707;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(239, 232, 227, 0.05);
}
.streams_item:after {
  position: absolute;
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  background: linear-gradient(360deg, rgba(174, 33, 21, 0.2) 0%, rgba(217, 84, 73, 0.2) 100%), linear-gradient(180deg, rgba(255, 214, 78, 0.2) 0%, rgba(236, 217, 154, 0.6) 100%);
  z-index: -1;
  border-radius: 8px;
  opacity: 0;
  transition: 0.3s;
}
.streams_item:hover:after {
  opacity: 1;
}
.streams_item iframe {
  border-radius: 8px;
  width: 100% !important;
  height: 100% !important;
}

.sliders_arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 4;
}
.sliders_arrows .arrows__left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translate(0, -75%);
  z-index: 4;
  cursor: pointer;
  transition: 0.3s;
}
.sliders_arrows .arrows__left img {
  width: 60px;
}
.sliders_arrows .arrows__left:hover {
  filter: brightness(1.4);
}
.sliders_arrows .arrows__right {
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 4;
  transform: translate(0, -75%);
  cursor: pointer;
  transition: 0.3s;
}
.sliders_arrows .arrows__right img {
  width: 60px;
}
.sliders_arrows .arrows__right:hover {
  filter: brightness(1.4);
}

.slider_navs {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}
.slider_navs .dot {
  width: 24px;
  height: 12px;
  background: rgba(239, 232, 227, 0.1);
  border-radius: 8px;
  margin: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.slider_navs .dot.active {
  background: #b02114;
}
.slider_navs .dot:hover {
  background: rgba(176, 33, 20, 0.4);
}

.streams_overlay {
  position: relative;
  display: none;
}
.streams_overlay.active {
  display: block;
}

.streams_item_add {
  width: 100%;
  height: 100%;
  background: url("../img/non-iframe.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.streams_item_add a {
  background: rgba(3, 2, 2, 0.8);
  padding: 12px;
  border-radius: 8px;
  text-transform: uppercase;
  font-family: "Gill Sans Nova", serif;
  font-weight: 400;
}
.streams_item_add a:hover {
  color: #b02114;
}

.second_nav {
  position: relative;
  z-index: 3;
  margin-left: var(--margin-big);
}

.second_nav_item {
  text-transform: uppercase;
  font-family: "Crimson", serif;
  font-weight: 700;
  margin-right: var(--margin-main);
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.second_nav_item:last-child {
  margin-right: 0;
}
.second_nav_item:hover {
  color: #b02114;
}
.second_nav_item.active::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #b02114;
  height: 4px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.infoline_online {
  position: relative;
  z-index: 1;
}

.online_lamp {
  width: 31px;
  height: 31px;
  display: block;
}
.online_lamp.online {
  background: url("../img/lamp.png");
}
.online_lamp.offline {
  background: url("../img/lamp.png");
  filter: hue-rotate(255deg);
}

.online_info {
  text-transform: uppercase;
  font-family: "Crimson", serif;
  font-weight: 700;
}

@media screen and (max-height: 740px) {
  #header {
    height: 70px;
  }
  .maininformer_title {
    font-size: 58px;
    line-height: 68px;
  }
  .maininformer_content {
    font-size: 20px;
    line-height: 28px;
  }
  .maininformer_preim-item {
    width: 140px;
    height: 140px;
    padding: 12px 12px;
  }
  .selector {
    height: 96px;
  }
}
@media screen and (max-height: 680px) {
  #home {
    height: 100%;
    overflow: auto;
  }
  #header {
    height: 90px;
  }
  .maininformer_preim-item {
    width: 160px;
    height: 160px;
    padding: 24px 12px;
  }
  .maininformer_content {
    font-size: 24px;
    line-height: 36px;
  }
  #maincontent {
    min-height: 960px;
  }
}
@media screen and (max-width: 1440px) {
  .maininformer {
    max-width: 640px;
  }
  #mainpage {
    background-position: 30%;
  }
  .informer_container {
    flex-wrap: wrap;
  }
  .informer_block {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 1280px) {
  #home {
    height: 100%;
    overflow: auto;
  }
  .mainsocials {
    width: 100%;
    margin: var(--margin-main);
  }
  #mainpage {
    background-position: 40%;
  }
  #mainpage #maincontent {
    height: auto;
    padding-top: calc(var(--margin-big) * 2);
    margin: 0;
  }
  #footer {
    display: block;
  }
  .mainsocials {
    margin-top: calc(var(--margin-big) * 2);
  }
  .about_content img {
    display: none;
  }
  .about_nav {
    flex-wrap: wrap;
    height: auto;
  }
  .about_nav-link {
    width: calc(33% + 2px);
    height: auto;
    padding: 12px 0px;
    border: 1px solid rgba(239, 232, 227, 0.2);
    box-sizing: border-box;
  }
  .maininformer_content {
    margin-top: 0;
  }
  .informer_block {
    height: calc(500px - 2 * var(--margin-main) * 2);
  }
  #streams {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1080px) {
  .wrapper {
    padding: 0px 24px;
  }
  .header_menu {
    display: none;
  }
  #maincontent {
    width: 100%;
    margin-top: var(--margin-big);
  }
  .maininformer_selectors {
    order: 1;
    flex-direction: row;
    margin: 0 auto;
    position: relative;
  }
  .maininformer {
    max-width: 100%;
    order: 2;
    margin-top: var(--margin-main);
  }
  .mainsocials {
    order: 3;
  }
  .selector {
    flex-direction: column;
    height: auto;
    margin: 0px var(--margin-small);
  }
  .selector_item::before {
    transform: translate(-50%, -58%) rotate(90deg);
    transition: 0.3s;
    z-index: 1;
  }
  .selector_desc {
    margin-right: 0;
    text-align: center;
    margin-bottom: var(--margin-main);
  }
  .maininformer_preim {
    justify-content: center;
  }
  .maininformer_btns {
    justify-content: center;
  }
  .modal_block {
    max-width: none;
    width: calc(100% - 100px);
  }
  .about_rates {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about_rates_item {
    margin: var(--margin-main);
    margin-left: 0;
    width: calc(36% - 2 * var(--margin-min));
  }
  .about_content {
    align-items: center;
    text-align: center;
  }
  .about_content img {
    display: block;
    width: 100%;
  }
  .maininformer_content {
    margin-top: var(--margin-main);
  }
  .about_container {
    height: calc(100% + 100px);
    padding-top: 140px;
  }
  .about_btn {
    margin-bottom: 200px;
  }
  #about {
    height: auto;
  }
  .about_nav {
    margin-top: var(--margin-main);
  }
  .about_content {
    width: 100%;
  }
  .about_list li {
    text-align: left;
  }
  .about_btn {
    width: 100%;
  }
  .about_btn span {
    width: 100%;
  }
  .infoline_online {
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translate(-50%, 0);
  }
  .maininformer_selectors.secondpage {
    order: 0;
  }
  .header_menu.mobmenu {
    display: block;
  }
  .header_menu_mob {
    display: flex;
  }
  .header_menu_mob.active {
    background: rgba(239, 232, 227, 0.2);
    width: 30px;
    height: 30px;
    padding: 10px;
  }
  #header.fixed {
    padding: 4px 24px;
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 780px) {
  .selector {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: auto;
    padding: 24px 18px;
    display: none;
    max-width: 320px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .selector.active, .selector:hover {
    display: flex;
    height: auto;
  }
  .selector.active .selector_item, .selector:hover .selector_item {
    width: 21px;
    height: 21px;
    background-size: auto;
  }
  .selector_item {
    width: 21px;
    height: 21px;
  }
  .selector_item img {
    width: 21px;
  }
  .selector_desc {
    order: 2;
    margin: 0;
    margin-left: var(--margin-min);
    text-transform: uppercase;
  }
  .maininformer_selectors {
    background: #0a0707;
    box-sizing: border-box;
    border-radius: 8px;
    border: 2px solid rgba(239, 232, 227, 0.3);
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    transition: 0.3s;
  }
  .maininformer_selectors::after {
    right: 24px;
    top: 50%;
    transform: translate(0, -50%);
    content: "";
    position: absolute;
    background: url("../img/arrow-dots.svg");
    width: 12px;
    height: 6px;
    transition: 0.3s;
  }
  .maininformer_selectors:hover {
    border: 2px solid rgba(176, 33, 20, 0.4);
    cursor: pointer;
  }
  .maininformer_selectors:hover::after {
    transform: translate(0, -50%) scale(1.4);
  }
  .selector_desc-name {
    font-size: 18px;
    margin-bottom: 0;
  }
  .selector_desc-chronic {
    display: none;
  }
  .selector_item {
    background: transparent;
  }
  .selector_item::after, .selector_item::before {
    display: none;
  }
  .block-servers {
    width: 100%;
    position: absolute;
    top: 80px;
    background: rgba(3, 2, 2, 0.96);
    border-radius: 8px;
    z-index: 3;
  }
  .block-servers.active {
    animation: slide-in-elliptic-top-fwd 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .block-servers.closed {
    animation: slide-out-elliptic-top-bck 0.4s ease-in both;
  }
  .block-servers.active::after {
    position: absolute;
    right: 0%;
    top: -15px;
    width: 20px;
    transform: translate(-24px, 0);
    vertical-align: -0.125em;
    opacity: 0.4;
    z-index: -1;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23efe8e3' d='m11 7l-4 6h8z'/%3E%3C/svg%3E");
  }
  .block-servers.active .selector {
    display: flex;
    transition: 0.3s;
    max-width: 100%;
    width: auto;
    justify-content: flex-start;
    background: rgba(239, 232, 227, 0.05);
    margin: 0;
    padding: 24px;
    border-top: 1px solid rgba(239, 232, 227, 0.1);
  }
  .block-servers.active .selector:first-child {
    border-top: none;
    border-radius: 8px 8px 0px 0px;
  }
  .block-servers.active .selector:first-child {
    border-bottom: none;
    border-radius: 0px 0px 8px 8px;
  }
  .block-servers.active .selector:hover {
    background: rgba(239, 232, 227, 0.1);
  }
  .block-servers.active .selector .selector_item {
    display: flex;
  }
  .block-servers.active .selector .selector_item-lable {
    position: relative;
    bottom: 16px;
    transform: translate(16px, 0);
    font-size: 10px;
    padding: 0px 8px 0px;
    line-height: 17px;
    height: 16px;
  }
  .modal_item_info img {
    width: 32px;
  }
  .informer_block {
    width: 100%;
  }
  .about_nav-link {
    width: 50%;
  }
  #header {
    width: calc(100% - 48px);
    padding: 0px 24px;
  }
  #header.fixed {
    padding: 4px 24px;
  }
}
@media screen and (max-width: 640px) {
  #header {
    flex-wrap: wrap;
    height: auto;
  }
  .header_leftside {
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
  }
  .header_leftside .header_menu_mob {
    margin: 0px 0;
  }
  .header_rightside {
    width: 100%;
    justify-content: center;
    margin-top: var(--margin-main);
    flex-wrap: wrap;
  }
  .header_btns {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .header_btns a {
    width: 100%;
    margin: var(--margin-min) 0;
    text-align: center;
  }
  .header_btns a span {
    width: 100%;
    padding: 4px;
  }
  .maininformer_btns {
    flex-direction: column;
  }
  .maininformer_btns a {
    margin: var(--margin-min) 0;
    width: 100% !important;
  }
  .maininformer_preim-item {
    width: auto;
    margin: 0px var(--margin-min);
  }
  .maininformer_preim-item span {
    text-align: center;
  }
  .mainsocials {
    margin: var(--margin-small) 0;
    flex-wrap: wrap;
  }
  .mainsocials_item {
    width: 36px;
  }
  .selector {
    padding: 12px;
  }
  .block-servers {
    top: 60px;
  }
  .maininformer_title {
    font-size: 48px;
  }
  #maincontent {
    margin-top: var(--margin-main);
  }
  .header_lang {
    margin: 0;
    margin-bottom: var(--margin-small);
  }
  #footer {
    padding: 24px 0 64px;
  }
  #footer nav {
    flex-wrap: wrap;
  }
  #footer nav a {
    width: 100%;
    text-align: center;
    margin: var(--margin-min);
  }
  .maininformer_content {
    font-size: 20px;
    line-height: 32px;
  }
  .maininformer_desc {
    margin-top: 0;
  }
  .modal_item_info img {
    display: none;
  }
  .modal_close {
    position: absolute;
    right: 2px;
    top: 2px;
  }
  .modal_item {
    flex-wrap: wrap;
  }
  .modal_item_info {
    margin: var(--margin-small) 0;
  }
  .modal_item_btns {
    margin-left: 0;
    width: 100%;
  }
  .modal_item_btns a {
    width: 100% !important;
  }
  .modal_item_btns a span {
    width: 100%;
  }
  .modal_btn-main {
    height: 24px;
    font-size: 21px;
  }
  .modal_container {
    margin-top: var(--margin-main);
  }
  .modal_info_content h3 {
    font-size: 24px;
  }
  .second_nav {
    margin-top: 10px;
    margin-left: 0;
    height: auto;
  }
  .second_nav_item {
    margin: var(--margin-min);
  }
  .infoline_navigation {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .maininformer_btns {
    width: 100%;
  }
  .infoline_online {
    width: 100%;
  }
  .about_rates_item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .about_nav-link {
    width: 100%;
  }
  .streams_blocks {
    gap: 0;
  }
  .maininformer_title.maininformer_title {
    font-size: 40px;
  }
  .header_menu.mobmenu::after {
    right: 0;
    transform: translate(-12px, 0);
  }
  .about_btn {
    margin-bottom: 360px;
  }
  .mainpage_container {
    padding: 200px 24px 24px;
  }
  #infoline {
    height: 92px;
  }
}
@media screen and (max-height: 680px) {
  #infopage {
    height: 700px;
  }
}
.rubicon_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(239, 232, 227, 0.05);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.rubicon_copy:hover {
  background: rgba(239, 232, 227, 0.1);
}
.rubicon_copy:hover .rubicon_logo {
  transform: scale(0.8);
}
.rubicon_copy span {
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 12px;
}
.rubicon_copy span b {
  color: #efe8e3;
  font-weight: 400;
}

.rubicon_logo {
  transition: 0.3s;
  width: 21px;
  display: flex;
  padding: 4px 6px;
  background: #b02114;
}