/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
@font-face {
  font-family: 'TT Norms';
  src: url('../fonts/Norms/TTNorms-Regular.eot');
  src: url('../fonts/Norms/TTNorms-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Norms/TTNorms-Regular.woff') format('woff'), url('../fonts/Norms/TTNorms-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'TT Norms';
  src: url('../fonts/Norms/TTNorms-Medium.eot');
  src: url('../fonts/Norms/TTNorms-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Norms/TTNorms-Medium.woff') format('woff'), url('../fonts/Norms/TTNorms-Medium.ttf') format('truetype');
  font-weight: medium;
  font-style: normal;
}
@font-face {
  font-family: 'TT Norms';
  src: url('../fonts/Norms/TTNorms-Bold.eot');
  src: url('../fonts/Norms/TTNorms-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Norms/TTNorms-Bold.woff') format('woff'), url('../fonts/Norms/TTNorms-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Spirit';
  src: url('../fonts/Spirit/spirit.eot');
  src: url('../fonts/Spirit/spirit.eot?#iefix') format('embedded-opentype'), url('../fonts/Spirit/spirit.woff') format('woff'), url('../fonts/Spirit/spirit.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
html {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  height: -webkit-fill-available;
}
body {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: 'TT Norms', 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 12px;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-backface-visibility: hidden;
  font-variant-ligatures: none !important;
  backface-visibility: hidden;
  background-attachment: fixed;
  color: #000;
  -webkit-font-smoothing: antialiased;
  /* background-image: url(../images/global-bg.png); */
}
ul,
ol {
  list-style-type: none;
}
textarea,
button,
input {
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-variant-ligatures: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  word-wrap: break-word;
}
a {
  display: inline-block;
  text-decoration: none;
}
img {
  max-width: 100%;
}
input[type="checkbox"] {
  display: inline-block;
  margin: initial;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  margin: 3px 0.5ex;
}
.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.layout__header {
  position: fixed;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) and (min-height: 660px) {
  .layout__header {
    height: 100vh;
    pointer-events: none;
  }
}
.layout__footer {
  flex: none;
}
@media (min-width: 768px) and (min-height: 660px) {
  .layout__footer {
    width: 100%;
    bottom: 0;
    z-index: 2;
  }
}
@media (min-width: 768px) and (min-height: 660px) and (min-width: 1700px) {
  .layout__footer {
    position: fixed;
  }
}
.layout__content {
  padding-top: 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (min-height: 660px) {
  .layout__content {
    padding-top: 0;
  }
}
.layout_index {
  background: url(../images/bg.png) center;
  background-size: cover;
}
.layout_index .layout__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (min-height: 660px) {
  .layout_team .layout__footer {
    position: fixed;
  }
}
.layout__popup {
  display: none;
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .layout__popup {
    padding-top: 64px;
  }
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .layout_show-popup .layout__content {
    display: none;
  }
}
.layout_show-popup .layout__popup {
  display: block;
}
.wrapper {
  max-width: 992px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .wrapper {
    padding: 0 80px 0 134px;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .wrapper_content {
    padding: 0;
  }
}
@media (min-width: 1260px) {
  .wrapper_content {
    padding: 0 30px;
  }
}
.header {
  position: relative;
  z-index: 9;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    padding-left: 32px;
  }
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  background: #000;
  color: #fff;
  padding: 0 20px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__container {
    background: #fff;
    justify-content: space-between;
    width: 80vh;
    top: 50%;
    left: 0;
    transform: translateY(-100%) translateX(-50%) translateY(50%) rotate(90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: visible;
  }
}
.header__bars {
  position: relative;
  width: 16px;
  height: 10px;
  z-index: 2;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__bars {
    display: none;
  }
}
.header__bars:before,
.header__bars:after {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: .2s ease;
}
.header__bars:before {
  top: 0;
}
.header__bars:after {
  bottom: 0;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  will-change: transform;
  height: 100%;
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: .2s ease;
    background: #fff;
  }
}
.header__logo {
  position: relative;
  margin-top: -2px;
  margin-left: 15px;
  z-index: 2;
  transition: .2s ease;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__logo {
    filter: invert(1);
    transform: rotate(-90deg);
  }
}
.header__lang-shop {
  position: absolute;
  top: 20px;
  right: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 2;
  will-change: transform;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__lang-shop {
    position: absolute;
    pointer-events: visible;
    right: 25px;
    top: 25px;
  }
}
@media (min-width: 1260px) and (min-height: 660px) {
  .header__lang-shop {
    top: 40px;
    right: 40px;
  }
}
.header__shop-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-left: 25px;
  z-index: 1;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__shop-link {
    padding: 14px 17px 14px 20px;
    background: #fff;
    color: #000;
    margin-left: 5px;
  }
}
.header__shop-link:before,
.header__shop-link:after {
  display: block;
  content: '';
}
.header__shop-link:after {
  position: relative;
  width: 9px;
  height: 9px;
  background: url(../images/shop-link.svg) center no-repeat;
  margin-left: 6px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__shop-link:after {
    filter: invert(1);
  }
}
.header__shop-link:before {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  top: 0;
  left: 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: .2s ease;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__shop-link:hover:before {
    opacity: 1;
    transform: translate(4px, 4px);
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .header__shop-link_no-icon {
    padding: 14px 20px;
  }
}
.header__shop-link_no-icon:after {
  display: none;
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .header_nav-opened .header__nav {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .header_nav-opened .header__bars:before,
  .header_nav-opened .header__bars:after {
    background: #000;
    left: 4px;
  }
  .header_nav-opened .header__bars:before {
    transform: rotate(45deg) translate(0, 5.5px);
  }
  .header_nav-opened .header__bars:after {
    transform: rotate(-45deg) translate(0, -5.5px);
  }
  .header_nav-opened .header__logo {
    filter: invert(1);
  }
  .header_nav-opened .header__lang-shop {
    filter: invert(1);
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .header_candidates .header__container {
    background: transparent;
    transform: none;
  }
}
.header_candidates .header__logo {
  display: flex;
  align-items: center;
  margin-left: 0;
}
@media (min-width: 768px) and (min-height: 660px) {
  .header_candidates .header__logo {
    filter: none;
    transform: none;
    top: 30px;
    left: 30px;
    position: fixed;
  }
}
@media (min-width: 1100px) and (min-height: 767px) and (orientation: landscape) {
  .header_candidates .header__logo {
    left: 40px;
  }
}
.header_candidates .header__logo:before {
  display: block;
  content: '';
  position: relative;
  width: 20px;
  height: 10px;
  margin-right: 10px;
  background: url(../images/back-arrow.svg);
}
.header_candidates .header__logo-text {
  display: none;
}
@media (min-width: 1100px) and (min-height: 767px) and (orientation: landscape) {
  .header_candidates .header__logo-text {
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 20px;
    color: #FFFFFF;
  }
}
.header_candidates .header__lang-shop {
  top: 25px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav {
    height: 100%;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__list {
    flex-direction: row;
    height: 100%;
  }
}
.nav__item {
  display: block;
  margin-bottom: 50px;
}
@media (orientation: landscape) {
  .nav__item {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__item {
    margin-right: 25px;
    margin-bottom: 0;
    height: 100%;
  }
}
.nav__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__item:nth-last-child(1) {
    margin-right: 0;
  }
}
.nav__link {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__link {
    position: relative;
    font-size: 13px;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__link:after {
    display: block;
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #000;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
  }
}
.nav__link:hover:after {
  opacity: .5;
}
@media (min-width: 768px) and (min-height: 660px) {
  .nav__link_active:after {
    opacity: 1 !important;
  }
}
.logo {
  display: block;
  width: 32px;
  height: 36px;
  background: url(../images/logo.svg) center no-repeat;
}
.lang {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
  position: relative;
  height: 25px;
  width: 45px;
  overflow: hidden;
}
@media (min-width: 768px) and (min-height: 660px) {
  .lang {
    padding: 0;
    color: #000;
    background: #fff;
    width: 70px;
    height: 43px;
  }
}
.lang:after {
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 5px;
  background: url(../images/lang.svg) center no-repeat;
  right: 7px;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 768px) and (min-height: 660px) {
  .lang:after {
    filter: invert(1);
    margin-top: 0;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.lang__items {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lang__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 100%;
  height: 100%;
  padding-right: 15px;
  order: 2;
  cursor: pointer;
}
@media (min-width: 768px) and (min-height: 660px) {
  .lang__item {
    background: #fff;
  }
  .lang__item:hover {
    background: #f3f3f3;
  }
}
.lang__item_selected {
  order: 1;
}
.lang_opened {
  overflow: visible;
}
.lang_opened:after {
  transform: rotate(180deg);
  margin-top: -2px;
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .lang_opened .lang__item {
    border-bottom: 1px solid #ffffff05;
    background: #1d1d1d;
  }
}
.footer {
  display: flex;
  justify-content: center;
  color: #ffffff78;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 0 27px 25px;
}
@media (min-width: 768px) {
  .footer {
    justify-content: flex-end;
    font-size: 11px;
  }
}
@media (min-width: 1260px) {
  .footer {
    padding: 0 40px 40px;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  width: 100%;
  max-width: 360px;
}
@media (min-width: 768px) {
  .footer__nav {
    max-width: 320px;
  }
}
@media (min-width: 1260px) {
  .footer__nav {
    max-width: 360px;
  }
}
.footer__link {
  color: #ffffff78;
  transition: .2s ease color;
}
.footer__link:hover {
  color: #fff;
}
.index-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  min-width: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 30px;
}
.index-page__heading {
  font-family: 'Spirit', sans-serif;
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .index-page__heading {
    margin-bottom: 0;
    font-size: 52px;
    line-height: 72px;
  }
}
.index-page__text {
  font-weight: bold;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  margin: 0 0 25px;
}
@media (min-width: 768px) {
  .index-page__text {
    font-size: 13px;
    line-height: 15px;
    margin: 5px 0 25px;
  }
}
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  background: #fff;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  z-index: 1;
}
.btn:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  top: 0;
  left: 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: .2s ease;
}
.btn:hover:before {
  opacity: 1;
  transform: translate(4px, 4px);
}
.btn_mobile-full {
  width: 100%;
  text-align: center;
}
@media (min-width: 767px) and (min-height: 660px) {
  .btn_mobile-full {
    width: auto;
  }
}
.about-page {
  flex: 1 1 0;
}
.about-page__content {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .about-page__content {
    padding-top: 100px;
  }
}
.about-page__img {
  height: 250px;
  overflow: hidden;
  background: url('../images/about-bg.jpg') center;
  background-size: cover;
}
@media (min-width: 768px) and (min-height: 660px) and (orientation: portrait) {
  .about-page__img {
    height: 350px;
  }
}
@media (min-width: 1260px) {
  .about-page__img {
    height: 380px;
    height: 40vh;
  }
}
.heading {
  font-family: 'Spirit', sans-serif;
  font-size: 48px;
  line-height: 50px;
  text-transform: uppercase;
  color: #fff;
}
p {
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  margin: 10px 0 30px;
}
.teams-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-family: 'Spirit', sans-serif;
  padding: 30px 0;
}
.teams-page__link {
  color: #fff;
  font-size: 48px;
  line-height: 66px;
  text-transform: uppercase;
  padding: 5px 20px 0;
}
@media (min-width: 768px) {
  .teams-page__link {
    font-size: 62px;
    line-height: 86px;
  }
  .teams-page__link:hover {
    background: #fff;
    color: #000;
  }
}
.team-page {
  width: 100%;
  min-height: 100%;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-page {
    padding-right: 50%;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-page:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(../images/team-bg.jpg) center;
    background-size: cover;
  }
}
.team-page__content {
  text-align: center;
  padding: 30px 30px 50px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-page__content {
    padding: 10vh 0 10vh 95px;
  }
}
@media (min-width: 1260px) and (min-height: 660px) {
  .team-page__content {
    padding: 10vh 0 10vh 40%;
  }
}
.team-page__back {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-page__back {
    padding-left: 22px;
    display: flex;
    justify-content: flex-start;
  }
}
.team-page_show-player .team-page__back {
  display: none;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-page_show-player .team-page__back {
    display: flex;
  }
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .team-page_show-player .team-page__content {
    padding-top: 0;
  }
}
.team-player {
  color: #fff;
  cursor: pointer;
  padding: 10px 0 20px;
  text-align: center;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player {
    text-align: left;
    padding: 10px 50px 20px 22px;
  }
}
@media (min-width: 1260px) and (min-height: 660px) {
  .team-player {
    padding: 10px 70px 20px 22px;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player:hover:not(.team-player_active) {
    background: #fff;
    color: #000;
    opacity: 1;
  }
}
.team-player__img {
  display: none;
  margin: -10px -30px 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player__img {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    margin: 0;
  }
}
.team-player__img img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player__img img {
    display: none;
  }
}
.team-player__body {
  display: none;
  padding-bottom: 30px;
}
.team-player__nick {
  font-family: 'Spirit', sans-serif;
  font-size: 48px;
  line-height: 66px;
  text-transform: uppercase;
}
.team-player__name {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-player__info-item {
  margin: 30px 0 0;
}
.team-player__info-label {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff70;
  margin-bottom: 10px;
}
.team-player__info-value {
  font-size: 15px;
  line-height: 28px;
}
.team-player__back {
  display: none;
  padding: 0 0 30px;
}
.team-player__socials {
  margin-top: 20px;
}
.team-player_active {
  cursor: default;
  text-align: left;
}
.team-player_active .team-player__img {
  display: block;
}
.team-player_active .team-player__body {
  display: block;
}
.team-player_active .team-player__back {
  display: block;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player_active .team-player__back {
    display: none;
  }
}
.team-player_hidden {
  display: none;
}
@media (min-width: 768px) and (min-height: 660px) {
  .team-player_hidden {
    display: block;
    opacity: .4;
  }
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}
.back-link:before {
  display: block;
  content: '';
  position: relative;
  width: 20px;
  height: 10px;
  margin-right: 10px;
  background: url(../images/back-arrow.svg) center no-repeat;
}
.socials {
  display: flex;
  margin: 0 -11px;
}
.socials__item {
  width: 24px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 11px;
  cursor: pointer;
}
.socials__item_vk {
  background-image: url(../images/vk.svg);
}
.socials__item_twitter {
  background-image: url(../images/twitter.svg);
}
.socials__item_twitch {
  background-image: url(../images/twitch.svg);
}
.socials__item_instagram {
  background-image: url(../images/instagram.svg);
}
.partners-page__items {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .partners-page__items {
    margin: -8px;
  }
}
.partners-page__item {
  flex: 50%;
  padding: 2.5px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .partners-page__item {
    flex: 33.3%;
    padding: 8px;
  }
}
.partners-page__link {
  background: #fff;
  transition: .2s ease;
}
.partners-page__link:hover {
  transform: scale(1.05);
}
.presskit-page {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-page {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
.presskit-page__items {
  display: flex;
  flex-wrap: wrap;
  margin: -15px -2.5px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-page__items {
    margin: -8px;
  }
}
.presskit-page__item {
  flex: 50%;
  padding: 15px 2.5px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-page__item {
    flex: 33.3%;
    padding: 8px;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-page__item:nth-last-child(2) {
    flex: 33.3%;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-page__item:nth-last-child(1) {
    flex: 66.6%;
  }
}
.presskit-page__text {
  margin: 15px 0 30px;
  font-size: 15px;
  line-height: 28px;
  color: #ffffff70;
}
.presskit-page__text a {
  color: #ffffff;
}
.presskit-item__links {
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
}
.presskit-item__link {
  color: #ffffff70;
  display: flex;
  align-items: center;
  font-weight: medium;
  transition: .2s ease;
}
.presskit-item__link:hover {
  color: #fff;
}
.presskit-item__link:after {
  display: block;
  position: relative;
  content: '';
  width: 10px;
  height: 12px;
  margin: 0 10px;
  background: url('../images/download.svg') center no-repeat;
  pointer-events: none;
}
.presskit-item__link:nth-last-child(1):after {
  display: none;
}
.presskit-item__img {
  border: 1px solid #292929;
}
.presskit-item__img img {
  display: block;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-item_full {
    height: 100%;
    padding-bottom: 30px;
  }
}
.presskit-item_full .presskit-item__links {
  margin: 0;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-item_full .presskit-item__links {
    height: 100%;
  }
}
.presskit-item_full .presskit-item__link {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 155px;
  border: 1px solid #292929;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 768px) and (min-height: 660px) {
  .presskit-item_full .presskit-item__link {
    height: 100%;
  }
}
.presskit-item_full .presskit-item__link:after {
  display: block;
  width: 32px;
  height: 42px;
  background-image: url('../images/download-big.svg');
  margin: 0 0 20px;
}
.contacts-page {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .contacts-page {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
.contacts-page__form-content {
  margin: 30px 0 0;
}
.contacts-page__text {
  font-size: 15px;
  line-height: 22px;
  color: #ffffff70;
  margin: 15px 0 30px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-page__mails {
    display: flex;
  }
}
.contacts-page__mail {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-page__mail {
    display: block;
    margin-bottom: 0;
  }
}
.contacts-page__mail-label {
  text-transform: uppercase;
  color: #ffffff70;
  font-weight: bold;
  font-size: 11px;
  line-height: 13px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-page__mail-label {
    margin-bottom: 6px;
  }
}
.contacts-page__mail-value {
  color: #fff;
  font-size: 16px;
  line-height: 19px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-page__mail-value {
    font-size: 16px;
    line-height: 28px;
  }
}
.contacts-page__form {
  margin-top: 50px;
}
.contacts-page__socials {
  margin: 30px 0;
}
.form__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
@media (min-width: 768px) {
  .form__row {
    flex-wrap: nowrap;
  }
}
.form__item {
  flex: 100%;
  padding: 0 8px;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .form__item {
    flex: 1 1 0;
  }
}
.form__submit {
  position: relative;
  margin-top: 14px;
  cursor: pointer;
}
.form__submit:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  top: 0;
  left: 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: .2s ease;
}
.form__submit:hover:before {
  opacity: 1;
  transform: translate(4px, 4px);
}
input,
textarea {
  width: 100%;
  border: 2px solid #ffffff70;
  background: #000;
  padding: 0 20px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}
input:hover,
textarea:hover {
  border-color: #ffffff90;
}
input:focus,
textarea:focus {
  border-color: #ffffff;
}
input {
  height: 48px;
}
textarea {
  padding: 13px 20px;
  height: 120px;
}
input[type=submit] {
  background: #fff;
  color: #000;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-socials {
    flex-wrap: nowrap;
  }
}
.contacts-socials__item {
  flex: 25% 0 0;
  padding: .5px;
  height: 50px;
}
@media (min-width: 768px) and (min-width: 660px) {
  .contacts-socials__item {
    height: 64px;
    flex: 1 1 0;
  }
}
.contacts-socials__link {
  width: 100%;
  height: 100%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  transition: .2s ease;
}
.contacts-socials__link:hover {
  height: 120%;
}
.contacts-socials__link_vk {
  background-image: url(../images/vk-dark.svg);
}
.contacts-socials__link_twitter {
  background-image: url(../images/twitter-dark.svg);
}
.contacts-socials__link_facebook {
  background-image: url(../images/facebook-dark.svg);
}
.contacts-socials__link_instagram {
  background-image: url(../images/instagram-dark.svg);
}
.contacts-socials__link_telegram {
  background-image: url(../images/telegram-dark.svg);
}
.contacts-socials__link_youtube {
  background-image: url(../images/youtube-dark.svg);
}
.contacts-socials__link_discord {
  background-image: url(../images/discord-dark.svg);
}
.blog-page {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
.blog-page__item {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page__item:nth-child(1) {
    margin-bottom: 50px;
  }
}
.blog-page-item {
  color: #ffffff70;
}
.blog-page-item__img {
  margin-bottom: 15px;
  flex: none;
}
.blog-page-item__title {
  font-weight: bold;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
}
.blog-page-item__text {
  font-size: 15px;
  line-height: 22px;
  margin: 5px 0 15px;
}
.blog-page-item__date {
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page-item_main .blog-page-item__content {
    padding-right: 150px;
    position: relative;
  }
}
.blog-page-item_main .blog-page-item__btn {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page-item:not(.blog-page-item_main) {
    display: flex;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page-item:not(.blog-page-item_main) .blog-page-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .blog-page-item:not(.blog-page-item_main) .blog-page-item__img {
    width: 33%;
    max-width: 300px;
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.article-page {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
@media (min-width: 768px) and (min-height: 660px) {
  .article-page {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}
.article-page__title {
  font-family: 'Spirit', sans-serif;
  font-size: 32px;
  line-height: 32px;
  margin: 25px 0 15px;
  text-transform: uppercase;
}
@media (min-width: 768px) and (min-height: 660px) {
  .article-page__title {
    font-size: 52px;
    line-height: 72px;
    margin: 20px 0 5px;
  }
}
.article-page__date {
  margin-bottom: 30px;
}
.article-page__img {
  margin-bottom: 30px;
}
.candidate-page {
  width: 100%;
  min-height: 100%;
}
@media (min-width: 768px) and (min-height: 660px) {
  .candidate-page {
    padding-right: 40%;
  }
}
@media (min-width: 1460px) and (min-height: 660px) {
  .candidate-page {
    padding-right: 45%;
  }
}
.candidate-page__content {
  padding: 30px 30px 50px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .candidate-page__content {
    padding: 10vh 95px 10vh 123px;
  }
}
@media (min-width: 1460px) and (min-height: 660px) {
  .candidate-page__content {
    padding: 10vh 15% 10vh 30%;
  }
}
.candidate-page__img {
  margin: -30px -30px 30px;
}
@media (min-width: 768px) and (min-height: 660px) {
  .candidate-page__img {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    margin: 0;
  }
}
@media (min-width: 1460px) and (min-height: 660px) {
  .candidate-page__img {
    width: 45%;
  }
}
.candidate-page__img img {
  display: block;
  width: 100%;
}
@media (min-width: 768px) and (min-height: 660px) {
  .candidate-page__img img {
    display: none;
  }
}
.candidate-page__heading {
  font-family: 'Spirit', sans-serif;
  font-size: 48px;
  line-height: 66px;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 768px) and (min-height: 660px) {
  .candidate-page__text p {
    margin-top: 15px;
  }
}
.candidate-page__content_secondary {
  display: none;
}
.candidate-page_show-secondary .candidate-page__content_main {
  display: none;
}
.candidate-page_show-secondary .candidate-page__content_secondary {
  display: block;
}
.popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) and (min-height: 660px) {
  .popup {
    position: fixed;
    z-index: 9;
  }
}
.popup__box {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 700px;
  overflow: auto;
  background: #fff;
  padding: 30px;
}
.popup__close {
  position: absolute;
  cursor: pointer;
  width: 17px;
  height: 17px;
  top: 20px;
  right: 20px;
  background: url(../images/close.svg) no-repeat;
  transition: .2s ease;
}
.popup__close:hover {
  transform: rotate(90deg);
}
.popup__content-success {
  display: none;
}
.popup__content-apply {
  display: block;
}
.popup_show-success .popup__content-success {
  display: block;
}
.popup_show-success .popup__content-apply {
  display: none;
}
.popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media not screen and (min-width: 768px) and (min-height: 660px) {
  .popup-success {
    min-height: calc(100vh - 128px);
  }
}
@media (min-width: 768px) and (min-height: 660px) {
  .popup-success {
    padding: 40px 60px;
  }
}
.popup-success:before {
  position: relative;
  display: block;
  content: '';
  width: 64px;
  height: 64px;
  background: url(../images/success.png) no-repeat;
  background-size: 100%;
}
.popup-success__title {
  margin: 40px 0 10px;
  font-family: 'Spirit', sans-serif;
  font-size: 42px;
  line-height: 58px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.popup-success__text {
  font-size: 15px;
  line-height: 22px;
  color: #4B4B4B;
}
.candidate-apply__title {
  font-family: 'Spirit', sans-serif;
  font-size: 42px;
  line-height: 58px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.candidate-apply__text {
  font-size: 15px;
  line-height: 22px;
  color: #4B4B4B;
}
.candidate-apply__text-line {
  margin: 5px 0 22px;
}
.candidate-apply__form {
  margin: 50px 0 0;
  counter-reset: lineCount;
}
.candidate-apply__line {
  margin: 0 0 30px;
  counter-increment: lineCount;
}
.candidate-apply__line:nth-last-child(1) {
  margin: 60px 0 0;
}
.candidate-apply__label {
  display: flex;
  align-items: center;
  margin: 0 -30px 23px;
  padding: 0 30px 0 0;
  font-size: 16px;
  line-height: 22px;
}
.candidate-apply__label:before {
  box-sizing: border-box;
  display: block;
  flex: none;
  text-align: right;
  padding-right: 9px;
  width: 44px;
  height: 24px;
  background: #000;
  color: #fff;
  content: counter(lineCount);
  margin-right: 15px;
  font-family: 'Spirit', sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.candidate-apply__textarea {
  background: #fff;
  border: 2px solid #D9D9D9;
  color: #878787;
}
.candidate-apply__textarea:hover {
  border-color: #c0c0c0;
}
.candidate-apply__textarea:focus {
  border-color: #a6a6a6;
}
.candidate-apply__submit {
  background: #000;
  color: #fff;
  padding: 20px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.ul {
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 15px 0 50px;
}
.ul .li {
  margin: 0 0 15px;
}
.ul .li:before {
  content: '- ';
}

.errorSpan {
  display: none;
  color: red;
  padding-top: 5px;
  padding-bottom: 5px;
}

.showError {
  display: block;
}

.boxError {
  box-shadow: 0 0 7px 2px rgb(211, 46, 31);
}

.links input {
  margin-top: 10px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  display: block;
  background: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 1);
  border-radius: 5px;
}