@font-face {
  font-family: "beaufortforlol-bold";
  src: url("../fonts/beaufortforlol-bold.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "beaufortforlol-regular";
  src: url("../fonts/beaufortforlol-regular.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "beaufortforlol-medium";
  src: url("../fonts/beaufortforlol-medium.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "beaufortforlol-italic";
  src: url("../fonts/beaufortforlol-italic.otf");
  font-style: normal;
  font-weight: normal;
}
body {
  font-family: "beaufortforlol-regular";
  background: #0d1212;
  margin: 0;
  padding: 0;
  color: #9FBCA3;
  font-size: 16px;
}

i {
  font-family: "beaufortforlol-italic";
}

a {
  text-decoration: none;
  color: #27A700;
}

a:hover {
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "beaufortforlol-bold";
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

.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-w {
  flex-wrap: wrap;
}

.f-dr {
  flex-direction: column;
  align-items: center;
}

.ai {
  align-items: center;
}

.wrap {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0px 10px;
  transition: 0.2s;
}

.btn_main {
  background: linear-gradient(90deg, #2d4525, #27a700, #2d4525);
  padding: 15px 50px;
  color: #fff;
  text-transform: uppercase;
  font-family: "beaufortforlol-bold";
  text-align: center;
  border-radius: 2em;
  border-left: 4px solid #27A700;
  border-right: 4px solid #27A700;
  height: -moz-min-content;
  height: min-content;
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.2s;
  justify-content: center;
}
.btn_main .iconify {
  font-size: 20px;
  margin-right: 10px;
  transition: 0.2s;
}
.btn_main:hover {
  border-left: 4px solid #0d1212;
  border-right: 4px solid #0d1212;
  animation: borders 1.2s infinite;
  color: #0d1212;
  filter: saturate(2);
}
.btn_main:hover .iconify {
  transition: 0.2s;
}

@keyframes borders {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.btn_secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 25px;
  position: relative;
  border-radius: 2em;
  text-transform: uppercase;
  font-family: "beaufortforlol-bold";
  z-index: 1;
  transition: 0.2s;
}
.btn_secondary::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -48%);
  top: 50%;
  width: calc(100% + 6px);
  height: calc(100% + 4px);
  border-radius: 2em;
  border-left: 4px solid #2d4525;
  border-right: 4px solid #2d4525;
  transition: 0.2s;
}
.btn_secondary .iconify {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  transition: 0.2s;
}
.btn_secondary:hover {
  background: rgba(255, 255, 255, 0);
}
.btn_secondary:hover .iconify {
  color: #27A700;
}
.btn_secondary:hover::before {
  border-left: 4px solid #27a700;
  border-right: 4px solid #27a700;
}

.section_title {
  color: #fff;
  font-family: "beaufortforlol-regular";
  font-weight: 400;
  font-size: 40px;
}
.section_title span {
  font-family: "beaufortforlol-bold";
  color: #27A700;
  font-weight: 600;
}

#main {
  background: url("../img/bg.png") top;
  width: 100%;
  height: 1103px;
}

#header {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
  height: 86px;
  position: relative;
}
#header:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 2px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(90deg, transparent, #27a700, transparent);
}

.header_left {
  width: 100%;
}

.logo {
  transition: 0.2s;
}
.logo:hover {
  filter: saturate(2.2);
}

.declines {
  margin: 0px 40px;
}
.declines span {
  display: block;
  height: 50px;
  width: 1px;
  margin: 0px 1px;
  background: rgba(39, 167, 0, 0.2);
}

.header_navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.header_navigation img {
  opacity: 0.5;
  transition: 0.2s;
}
.header_navigation li:hover img {
  opacity: 1;
}
.header_navigation li:hover a {
  background: rgba(45, 69, 37, 0.5);
  border-bottom: 4px solid #27A700;
}
.header_navigation.mob {
  display: flex;
  background: rgba(13, 18, 18, 0.95);
  position: fixed;
  z-index: 3;
  flex-direction: column;
  height: 100vh;
  align-items: start;
  width: 100%;
  left: 0;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
  padding-top: 100px;
}
.header_navigation.mob::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 150px;
  content: "Navigation";
  z-index: 3;
  font-size: 36px;
  text-transform: uppercase;
  opacity: 0.1;
}
.header_navigation.mob li {
  width: calc(100% - 40px);
  display: block;
  margin: 2px 20px;
}
.header_navigation.mob .header_navigation_link {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  display: block;
  padding: 20px;
  border-radius: 1em;
}
.header_navigation.mob .header_navigation_link:hover {
  background: rgba(159, 188, 163, 0.1);
}

.header_navigation_link {
  font-family: "beaufortforlol-bold";
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  height: 100%;
  padding: 0px 15px;
  box-sizing: border-box;
  border-bottom: 4px solid transparent;
  transition: 0.2s;
}
.header_navigation_link img {
  margin-right: 10px;
}

.header_mobmenu {
  margin-left: 10px;
  background: rgba(20, 23, 19, 0.8);
  padding: 5px 10px;
  border-radius: 1em;
  display: none;
  cursor: pointer;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
  transition: 0.2s;
}
.header_mobmenu span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 4px 0px;
  border-radius: 1em;
  background: #fff;
  transition: 0.2s;
}
.header_mobmenu .header_mobmenu_lable {
  text-transform: uppercase;
  margin-left: 10px;
  font-family: "beaufortforlol-bold";
}
.header_mobmenu.active {
  display: flex;
}
.header_mobmenu:hover {
  background: rgba(13, 18, 18, 0.4);
}
.header_mobmenu:hover span:nth-child(2) {
  width: 15px;
}
.header_mobmenu.slide_menupanel {
  display: flex;
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.header_lang {
  padding: 4px;
  border-radius: 1em;
  background: rgba(45, 69, 37, 0.5);
  color: #fff;
  font-size: 16px;
  position: relative;
  transition: 0.2s;
  margin-right: 50px;
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.header_lang:hover {
  background: #2d4525;
  transition: 0.2s;
}

.lang_panel {
  background: rgba(45, 69, 37, 0.3);
  border-radius: 1em;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 8px 15px;
  display: none;
  cursor: auto;
}
.lang_panel::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -10px;
  width: 16px;
  height: 16px;
  font-size: 20px;
  background-color: #9FBCA3;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='m11 7l-4 6h8z' /%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='m11 7l-4 6h8z' /%3E%3C/svg%3E");
}
.lang_panel.active {
  display: block;
}

.lang_icon {
  margin-left: 5px;
}

.lang_item {
  display: block;
  background: #2D4525;
  padding: 4px;
  border-radius: 1em;
  margin: 2px 0px;
}
.lang_item img {
  display: block;
}
.lang_item:hover {
  background: #27a700;
  transition: 0.2s;
}

.header_btn {
  z-index: 3;
}

.menu_close {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 20px;
  width: 50px;
  height: 50px;
  color: #fff;
  cursor: pointer;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Ccircle cx='12' cy='12' r='9' fill='%23000' opacity='0.16'/%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 10l-4 4m0-4l4 4'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transition: 0.2s;
}
.menu_close:hover {
  transform: rotate(180deg);
  color: #9FBCA3;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#informer {
  height: calc(100vh - 86px);
}

.server {
  background: rgba(20, 23, 19, 0.5);
  position: absolute;
  min-height: 180px;
  left: 0;
  z-index: 1;
}

.server_container {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.server_container.active {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}
.server_container.inactive {
  width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.server_button {
  background: #27A700;
  width: 50px;
  height: 100%;
  position: absolute;
  right: -50px;
  border-radius: 0px 2em 2em 0px;
  transition: 0.2s;
  cursor: pointer;
}
.server_button:hover {
  background: #2D4525;
}
.server_button:hover .server_button_over .iconify {
  background: #27A700;
  transform: scale(1.2);
}

.server_button_over {
  position: absolute;
  height: 50px;
  top: 50%;
  transform: rotate(90deg) translate(-20%, 0px);
  color: #fff;
}
.server_button_over .iconify {
  background: #2D4525;
  padding: 2px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  margin-right: 10px;
  transition: 0.2s;
}

.server_button_name {
  letter-spacing: 1px;
  font-size: 24px;
  color: #fff;
  font-family: "beaufortforlol-bold";
}

.server_block {
  background: rgba(45, 69, 37, 0.5);
  border-radius: 2em 0.2em 0.2em 2em;
  font-family: "beaufortforlol-bold";
  width: 250px;
  height: 60px;
  position: relative;
  margin: 10px 0px;
}

.server_img {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  padding: 0px 8px;
  border-radius: 2em 0em 0em 2em;
}
.server_img img {
  height: 36px;
  border-radius: inherit;
  display: block;
}

.server_info {
  padding: 0px 10px;
}

.server_name {
  color: #fff;
  font-size: 16px;
}

.server_online {
  color: #E5FEBE;
  margin-top: 5px;
}

.server_online_count {
  margin-left: 5px;
  font-size: 14px;
}

.server_status {
  position: absolute;
  right: -25px;
  text-align: center;
  width: 60px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 1em;
  transform: rotate(90deg);
  font-family: "beaufortforlol-bold";
}
.server_status.online {
  background: #093A0A;
  color: #00F541;
}
.server_status.offline {
  background: #3A2109;
  color: #F50000;
}

.server_login {
  color: #fff;
  font-family: "beaufortforlol-bold";
  margin-bottom: 20px;
}
.server_login .login {
  position: relative;
  transform: rotate(0deg);
  top: 2px;
}

.maininfo {
  max-width: 630px;
  text-align: right;
  margin-right: 80px;
}
.maininfo h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.maininfo_content {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.maininfo_btn {
  text-align: center;
  margin-top: 30px;
  width: 270px;
  float: right;
  position: relative;
  padding: 20px 60px;
}
.maininfo_btn::after {
  content: "";
  position: absolute;
  left: auto;
  transform: translate(0, 0);
  display: inline-block;
  right: 40px;
  bottom: -2px;
  width: 50px;
  height: 50px;
  opacity: 0.1;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M101.938 19.938c-8.837 0-15.813 6.978-15.813 15.812c0 7.358 4.84 13.427 11.563 15.25l23.134 55.4c-12.618 7.364-23.065 19.85-30.17 37.528L64.22 163.75l11.218 14.938l8.177-6.135c31.722-21.112 72.4-39.987 110.12-49.975l27.327-4.078l-2.78-18.5l-33.294 4.982c-13.01-4.957-25.152-7.096-36.113-6.607c-3.67.164-7.202.62-10.6 1.334l-23.088-55.304a15.87 15.87 0 0 0 2.532-8.656c0-8.837-6.945-15.813-15.782-15.813zM178.81 147c-17.714 6.11-35.908 13.923-52.875 22.656l68.407 165.03l14.625-7.842l28.28-38.75L178.812 147zm169.094 111.53l-68.125 3.033l-56.967 78l-1.25 1.718l-1.875 1.033l-65.313 35.03l-28.47 117.188h345.25l-15-63.686l-165.56-54.688l5.874-17.75l89.905 29.688l-38.47-129.563z'/%3E%3C/svg%3E");
}

#preim {
  position: relative;
  margin-top: -250px;
  width: 100%;
}

.preim_slider {
  height: auto;
}

.preim_item {
  width: 750px;
  height: 320px;
  border-radius: 3em;
  background: #141713;
  position: relative;
  border-top: 4px solid #2D4525;
  display: flex;
  justify-content: center;
  overflow: hidden;
  -webkit-clip-path: view-box;
          clip-path: view-box;
}
.preim_item img {
  border-radius: inherit;
}
.preim_item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(0, 0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2em;
  background: linear-gradient(180deg, transparent, #141713);
}
.preim_item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  border-radius: inherit;
  z-index: 1;
}

.preim_container {
  position: relative;
}

.preim_over {
  position: absolute;
  height: 160px;
  width: calc(100% - 80px);
  bottom: 30px;
  text-align: center;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
}
.preim_over h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.preim_decorate {
  background: linear-gradient(90deg, transparent, #27a700, transparent);
  width: 50%;
  height: 2px;
  display: block;
  margin: 20px auto;
}

.preim_text {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preim_navigation {
  position: relative;
}

.preim_dots {
  margin-top: 30px;
  margin-left: 20px;
}
.preim_dots span {
  background: rgba(39, 167, 0, 0.4);
  width: 25px;
  height: 12px;
  border-radius: 1em;
  margin-right: 10px;
  transition: 0.2s;
  cursor: pointer;
}
.preim_dots span:hover {
  background: rgba(39, 167, 0, 0.4);
}
.preim_dots .active {
  background: #27a700;
}
.preim_dots .swiper-pagination-bullet-active {
  background: #27a700;
}

.preim_arrows {
  margin-right: 20px;
  margin-top: 22px;
}
.preim_arrows .iconify {
  font-size: 28px;
  margin-left: 50px;
  transition: 0.2s;
  cursor: pointer;
}
.preim_arrows .iconify:hover {
  color: #27A700;
}

.preim_label {
  position: absolute;
  top: 40px;
  right: 15px;
  width: 100px;
  height: 25px;
  border-radius: 1em;
  font-family: "beaufortforlol-bold";
  text-align: center;
  z-index: 1;
  transform: rotate(30deg);
  font-size: 14px;
  align-content: center;
  animation: vibrate-2-normal 2s ease-in 0s infinite normal none;
}
.preim_label.action {
  color: #F9FF58;
  background: #141713;
}
.preim_label.event {
  color: #BC58FF;
  background: #141713;
}

@keyframes vibrate-2-normal {
  0% {
    transform: scale(1) rotate(30deg);
  }
  50% {
    transform: scale(0.9) rotate(30deg);
  }
  100% {
    transform: scale(1) rotate(30deg);
  }
}
#news {
  margin-top: 50px;
}

.news_container {
  position: relative;
  background: #141713;
  height: 600;
  -webkit-clip-path: fill-box;
          clip-path: fill-box;
}
.news_container::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  background-image: url(../img/main_news.png);
  background-position: top;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}

.news_over {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-items: end;
  padding: 40px 0px;
}

.news_informer {
  text-align: left;
  width: 100%;
}
.news_informer img {
  opacity: 0.5;
  margin-right: 10px;
}
.news_informer h4 {
  margin: 0;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}

.news_block {
  height: 150px;
  padding: 30px;
  border-radius: 3.5em;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  width: -webkit-fill-available;
  margin: 10px 0px;
}
.news_block:first-child {
  width: 860px;
  height: 500px;
  padding: 0;
  grid-area: 1/1/4/2;
  margin-right: 20px;
}
.news_block:first-child .news_date {
  font-size: 14px;
}
.news_block:first-child .news_image {
  height: 100%;
  width: 100%;
  margin: 0;
  border-radius: 3.5em;
}
.news_block:first-child .news_image::after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.news_block:first-child .news_image::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  top: 50%;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent, rgba(20, 23, 19, 0.9));
}
.news_block:first-child .news_informer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0%);
  font-size: 18px;
  z-index: 1;
  width: calc(100% - 80px);
}
.news_block:first-child .news_informer h4 {
  font-size: 24px;
  margin: 0;
  margin-bottom: 15px;
}
.news_block:first-child .btn_secondary {
  padding: 10px 35px;
}
.news_block:nth-child(2) {
  grid-area: 1/2/2/3;
}
.news_block:last-child {
  grid-area: 2/2/3/3;
}

.news_image {
  background: #141713;
  border-radius: 3em;
  height: 150px;
  min-width: 200px;
  background-size: auto 100%;
  background-position: center;
  position: relative;
  margin-right: 30px;
}
.news_image::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 3.5em;
  border: 3px solid rgba(255, 255, 255, 0.05);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.news_content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_bottom {
  min-height: 60px;
}

.news_date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.news_date .iconify {
  margin-right: 5px;
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.news_readmore {
  grid-area: 3/2/4/3;
  position: relative;
  border-radius: 2em;
  width: -webkit-fill-available;
}

.news_decorate {
  background: linear-gradient(90deg, transparent, #27a700, transparent);
  width: 70%;
  height: 5px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news_decorate.top {
  top: 3px;
}
.news_decorate.bottom {
  bottom: 0;
}

#rating {
  margin-top: 50px;
  margin-bottom: 80px;
}

.rating_container {
  margin-top: 20px;
}

.rating_btn {
  padding: 10px 50px;
}

.rating_block {
  background: #141713;
  padding: 30px;
  position: relative;
  border-radius: 3em;
  width: calc(50% - 70px);
}
.rating_block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 4px solid rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  border-radius: inherit;
}

.rating_block_name .iconify {
  font-size: 24px;
  color: #2D4525;
  margin-right: 20px;
}

.rating_informer {
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.rating_names {
  color: #27A700;
  padding: 6px 25px;
  text-align: center;
  font-size: 14px;
}

.rating_item {
  color: #9FBCA3;
  border-radius: 2em;
  padding: 6px 25px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
  transition: 0.2s;
}
.rating_item:hover {
  background: rgba(159, 188, 163, 0.1) !important;
}
.rating_item span {
  text-align: center;
}
.rating_item .rating__score {
  background: rgba(159, 188, 163, 0.1);
  color: #fff;
  padding: 5px 0px;
  border-radius: 2em;
  font-family: "beaufortforlol-bold";
}
.rating_item .rating__number {
  color: #fff;
}

.place_gold .rating__number {
  color: #ffc300;
  position: relative;
}
.place_gold .rating__number::after {
  content: "";
  position: absolute;
  left: auto;
  transform: translate(-50%, -50%);
  background: url(../img/star_gold.svg);
  width: 10px;
  height: 10px;
  top: 50%;
  right: -8px;
}

.place_silver .rating__number {
  color: #9e9e9e;
  position: relative;
}
.place_silver .rating__number::after {
  content: "";
  position: absolute;
  left: auto;
  transform: translate(-50%, -50%);
  background: url(../img/star_silver.svg);
  width: 10px;
  height: 10px;
  top: 50%;
  right: -8px;
}

.place_bronse .rating__number {
  color: #cb6e11;
  position: relative;
}
.place_bronse .rating__number::after {
  content: "";
  position: absolute;
  left: auto;
  transform: translate(-50%, -50%);
  background: url(../img/star_bronse.svg);
  width: 10px;
  height: 10px;
  top: 50%;
  right: -8px;
}

.rating__number {
  width: 40px;
  font-family: "beaufortforlol-bold";
}

.rating__user {
  width: 30%;
  overflow: hidden;
  font-family: "beaufortforlol-bold";
}

.rating__fraction {
  width: 20%;
}

.rating__class {
  width: 20%;
}

.rating__score {
  width: calc(30% - 40px);
}

#footer {
  padding: 20px 0px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}
#footer::after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  background: linear-gradient(90deg, transparent, #27a700, transparent);
}

.footer_logo {
  text-align: right;
  display: block;
}
.footer_logo img {
  width: 120px;
  margin-right: -10px;
}

.footer_copy {
  font-size: 16px;
}
.footer_copy .iconify {
  margin-right: 5px;
  color: #2D4525;
  font-size: 18px;
}

.footer_navigation {
  list-style: none;
  padding: 0;
  margin-right: 80px;
}

.footer_navigation_link {
  font-size: 18px;
  color: #9FBCA3;
  margin: 10px 0px;
  transition: 0.2s;
}
.footer_navigation_link img {
  margin-right: 10px;
  opacity: 0.5;
  transition: 0.2s;
}
.footer_navigation_link:hover img {
  opacity: 1;
}

.footer_links a {
  color: #9FBCA3;
  transition: 0.2s;
  margin-right: 40px;
  font-size: 18px;
}
.footer_links a:hover {
  color: #27A700;
}

.site_bg {
  background: url(../img/bg_site.png) bottom;
  width: 100%;
  height: 1080px;
  position: absolute;
  bottom: 0px;
  z-index: -1;
  opacity: 1;
}

.socials {
  height: 500px;
  width: 2px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #27A700, transparent, #27A700);
}
.socials::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  width: 10px;
  height: 10px;
  background: #27A700;
  border-radius: 50%;
}
.socials::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 10px;
  height: 10px;
  background: #27A700;
  border-radius: 50%;
}

.socials_items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.socials_items .iconify {
  font-size: 32px;
  color: #fff;
}
.socials_items a {
  display: block;
  margin: 20px 0;
  transition: 0.2s;
}
.socials_items a:hover {
  transform: rotate(360deg) scale(1.2);
}
.socials_items a:hover .iconify {
  color: #27A700;
}

.studio {
  transition: 0.2s;
}
.studio:hover {
  transform: rotate(360deg) scale(1.1);
}

#page {
  width: -webkit-fill-available;
  margin-top: -250px;
  position: relative;
  padding-bottom: 50px;
}

.page_container {
  width: -webkit-fill-available;
  background: #141713;
  padding: 30px;
  position: relative;
  border-radius: 3em;
}
.page_container::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  border-radius: inherit;
}
.page_container .news_block {
  width: auto;
  height: auto;
  margin-right: 0;
  padding: 20px;
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}
.page_container .news_block .btn_secondary {
  padding: 10px 35px;
}
.page_container .news_block .news_image {
  height: 200px;
  width: 250px;
  min-width: 200px;
  position: relative;
  border-radius: 3em;
  margin-right: 40px;
}
.page_container .news_block .news_image::after {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.page_container .news_block .news_image::before {
  display: none;
}
.page_container .news_block .news_informer {
  position: relative;
  left: auto;
  bottom: auto;
  transform: translate(0, 0);
  font-size: 18px;
  z-index: 1;
  width: calc(100% - 300px);
  font-size: 16px;
}
.page_container .news_block .news_informer h4 {
  font-size: 21px;
}
.page_container .news_block .news_content {
  margin-bottom: 10px;
}
.page_container .news_block:first-child {
  width: auto;
  height: auto;
  margin-right: 0;
  padding: 20px;
}
.page_container .news_block:first-child .news_image {
  height: 200px;
  width: 250px;
  min-width: 200px;
  position: relative;
  border-radius: 3em;
  margin-right: 40px;
}
.page_container .news_block:first-child .news_image::after {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.page_container .news_block:first-child .news_image::before {
  display: none;
}
.page_container .news_block:first-child .news_informer {
  position: relative;
  left: auto;
  bottom: auto;
  transform: translate(0, 0);
  font-size: 18px;
  z-index: 1;
  width: calc(100% - 300px);
  font-size: 16px;
}
.page_container .news_block:first-child .news_content {
  margin-bottom: 10px;
}
.page_container .news_block .news_date {
  margin-bottom: 20px;
}
.page_container .news_block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg, transparent, #27a700, transparent);
  top: 0;
  width: 60%;
  height: 1px;
}
.page_container .news_block::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg, transparent, #27a700, transparent);
  bottom: 0;
  width: 60%;
  height: 1px;
}

.single_news {
  padding: 20px;
  position: relative;
  z-index: 1;
  font-size: 18px;
}
.single_news img {
  border-radius: 0.5em;
}

.single_title {
  font-size: 24px;
}
.single_title img {
  margin-right: 10px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.spoiler {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1em;
}

.spoiler_name {
  padding: 8px 20px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-family: "beaufortforlol-bold";
  transition: 0.2s;
  cursor: pointer;
}
.spoiler_name .iconify {
  font-size: 12px;
  transform: rotate(90deg);
  color: #27A700;
  transition: 0.2s;
}
.spoiler_name:hover {
  background: rgba(255, 255, 255, 0.08);
}

.spoiler_content {
  padding: 0px 20px;
  font-size: 16px;
  overflow: hidden;
  height: 0;
}
.spoiler_content.active {
  height: auto;
}

.rating_page {
  position: relative;
  z-index: 1;
}
.rating_page .rating__class img {
  width: 21px;
  height: 21px;
}
.rating_page .stats {
  width: 30%;
}
.rating_page .stats span {
  width: 90px;
  padding: 5px 5px;
  margin: 0px 5px;
}
.rating_page .rating__score {
  width: 10%;
}
.rating_page .rating_item:nth-child(odd) {
  background: rgba(0, 0, 0, 0.1);
}
.rating_page .rating_item .stats .rating_wins {
  border-radius: 1em;
  color: #0084FF;
  background: #1D232B;
}
.rating_page .rating_item .stats .rating_loose {
  border-radius: 1em;
  color: #FF5900;
  background: #2B281D;
}

.pagination {
  margin: 40px 0px 20px 0px;
  font-size: 16px;
  font-family: "beaufortforlol-bold";
}
.pagination .iconify {
  color: #fff;
  font-size: 24px;
  margin: 0px 10px;
  transition: 0.2s;
}
.pagination .iconify:hover {
  color: #27A700;
}
.pagination .pagination_nopage {
  opacity: 0.2;
}
.pagination .pagination_nav {
  display: inline-block;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2em;
  color: #fff;
  margin: 0px 2px;
  transition: 0.2s;
}
.pagination .pagination_nav:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #27A700;
}
.pagination .pagination_nav.active {
  background: #27A700;
  color: #fff;
}
.pagination .dots {
  margin: 5px;
}
.pagination .dots span {
  display: inline-block;
  background: #2D4525;
  width: 6px;
  height: 6px;
  margin: 2px;
  border-radius: 2em;
}

.rating_select .rating_select_btn {
  padding: 8px 30px;
  margin: 0px 10px;
}
.rating_select .rating_select_btn.active {
  background: #27A700;
}