:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #fc0440;
    --color-cyan: #70e0e1;
  }
  html,
  body {
    width: 100%;
    background-color: var(--color-white);
  }
  body {
    font-family: "MV-WEEKEND";
    font-weight: normal;
    font-style: normal;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    line-height: 1;
    min-width: 360px;
    max-width: 2560px;
  }
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1;
    outline: 0 !important;
  }
  p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: "MV-WEEKEND";
    margin: 0;
    padding: 0;
  }
  h1 {
    font-size: 88px;
    font-weight: 400;
    line-height: 86%;
    text-transform: uppercase;
  }
  h2,
  .h2 {
    font-size: 96px;
    font-weight: 400;
    line-height: 86%;
    letter-spacing: -4.8px;
    text-transform: uppercase;
  }
  h3 {
    font-weight: normal;
    font-size: 32px;
  }
  ::-moz-selection {
    background: rgba(87, 87, 87, 0.67);
  }
  ::selection {
    background: rgba(87, 87, 87, 0.67);
  }
  ::-moz-selection {
    background: rgba(87, 87, 87, 0.67);
  }
  a {
    text-decoration: none;
    outline: none;
    color: var(--color-white);
    opacity: 1;
    will-change: transform;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  a.no-transition {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
  }
  a:hover {
    /* color: var(--color-gold-dark);
        */
    text-decoration: none;
  }
  a:active {
    text-decoration: none;
  }
  a.color-red {
    color: var(--color-red);
    border-bottom: 1px solid transparent;
  }
  a.color-red:hover {
    border-bottom: 1px solid;
  }
  ul {
    padding: 0;
    margin: 0;
  }
  li {
    list-style-type: none;
  }
  input,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  fieldset {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
  }
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px transparent;
    -webkit-box-shadow: inset 0 0 6px transparent;
    background-color: #f1ede6;
  }
  body::-webkit-scrollbar {
    width: 6px;
    background-color: #f1ede6;
    -webkit-transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
    transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
  }
  body::-webkit-scrollbar-thumb {
    background: #d4c5b5;
  }
  input,
  select,
  textarea {
    width: 100%;
    background: transparent;
    border: 0;
    font-style: normal;
    border: 0;
  }
  [data-aos] {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  [data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  [data-aos="fade-down"] {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  [data-aos="fade-left"] {
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  [data-aos="fade-right"] {
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  /* */
  .wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: var(--color-black);
    z-index: 1;
  }
  .bg-common {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url(../img/bg-common.jpg);
    background-size: 100%;
    background-repeat: repeat-y;
    z-index: -1;
    opacity: 0.4;
  }
  .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: -35px;
    left: 27px;
    z-index: 10;
    width: 270px;
    height: 278px;
  }
  .logo a {
    opacity: 1;
    display: block;
  }
  .logo a:hover {
    opacity: 0.7;
  }
  .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .burger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
    cursor: pointer;
    background: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    right: 22px;
    top: 20px;
    z-index: 11;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .burger-cont {
    position: absolute;
    width: 36px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    z-index: 2;
  }
  ._active.burger:hover .burger-cont {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .burger-cont span {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: var(--color-black);
  }
  .burger-cont span:nth-child(1) {
    -webkit-transform: translateY(-11px);
    -ms-transform: translateY(-11px);
    transform: translateY(-11px);
  }
  .burger-cont span:nth-child(2) {
  }
  .burger-cont span:nth-child(3) {
    -webkit-transform: translateY(11px);
    -ms-transform: translateY(11px);
    transform: translateY(11px);
  }
  ._active .burger-cont span {
    position: absolute;
    margin-bottom: 0;
    background: var(--color-black);
  }
  ._active .burger-cont span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  ._active .burger-cont span:nth-child(2) {
    /* width: 0;
        */
    opacity: 0;
  }
  ._active .burger-cont span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .burger-svg {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  ._active .burger-svg {
    opacity: 1;
  }
  .burger-svg svg {
    width: 86px;
    height: auto;
  }
  .burger:hover .burger-svg {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }
  ._active .burger-svg {
    opacity: 0;
  }
  .burger-svg svg path {
    fill: var(--color-white);
  }
  .pp {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .pp._show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .pp__bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    background: rgba(0, 0, 0, 0.24);
  }
  .pp__wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 440px;
    padding: 122px 30px 0;
    background: var(--color-white);
    overflow: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 2;
  }
  .pp__wrap._right {
    left: auto;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  ._show .pp__wrap {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .pp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
  }
  a.pp-menu__link {
    display: block;
    position: relative;
    line-height: 115%;
    font-size: 64px;
    letter-spacing: -3.2px;
    text-transform: uppercase;
    color: var(--color-black);
  }
  .pp-break {
    text-align: center;
    margin-bottom: 50px;
  }
  .pp-break svg {
    width: 114px;
  }
  .pp-hello {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 49px;
    text-align: center;
  }
  .pp-hello .hello-container__title {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .pp-hello a.hello-container__link {
    font-size: 36px;
    letter-spacing: -1.8px;
    margin-top: 8px;
  }
  .pp-hello .hello-container__socslist {
    gap: 16px;
    margin-top: 8px;
  }
  .pp-hello a.hello-container__soc {
    width: 54px;
    height: 54px;
  }
  a.pp-menu__link:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-black);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  a.pp-menu__link:hover:after {
    opacity: 1;
  }
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    /* height: 135px; */
    padding: 28px 40px;
  }
  .header__blur {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    z-index: -1;
    top: -100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .header._overlay .header__blur {
    top: 0;
  }
  .header__blur-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .header__blur-layer._1 {
    z-index: 1;
    backdrop-filter: blur(0.140625px);
    -webkit-backdrop-filter: blur(0.140625px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0)),
      color-stop(12.5%, rgba(0, 0, 0, 1)),
      color-stop(25%, rgba(0, 0, 0, 1)),
      color-stop(37.5%, rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 12.5%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0) 37.5%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0)),
      color-stop(12.5%, rgba(0, 0, 0, 1)),
      color-stop(25%, rgba(0, 0, 0, 1)),
      color-stop(37.5%, rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 12.5%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 0) 37.5%
    );
  }
  .header__blur-layer._2 {
    z-index: 2;
    backdrop-filter: blur(0.28125px);
    -webkit-backdrop-filter: blur(0.28125px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(12.5%, rgba(0, 0, 0, 0)),
      color-stop(25%, rgba(0, 0, 0, 1)),
      color-stop(37.5%, rgba(0, 0, 0, 1)),
      color-stop(50%, rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 12.5%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 37.5%,
      rgba(0, 0, 0, 0) 50%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(12.5%, rgba(0, 0, 0, 0)),
      color-stop(25%, rgba(0, 0, 0, 1)),
      color-stop(37.5%, rgba(0, 0, 0, 1)),
      color-stop(50%, rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 12.5%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 37.5%,
      rgba(0, 0, 0, 0) 50%
    );
  }
  .header__blur-layer._3 {
    z-index: 3;
    backdrop-filter: blur(0.5625px);
    -webkit-backdrop-filter: blur(0.5625px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(25%, rgba(0, 0, 0, 0)),
      color-stop(37.5%, rgba(0, 0, 0, 1)),
      color-stop(50%, rgba(0, 0, 0, 1)),
      color-stop(62.5%, rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 1) 37.5%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 62.5%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(25%, rgba(0, 0, 0, 0)),
      color-stop(37.5%, rgba(0, 0, 0, 1)),
      color-stop(50%, rgba(0, 0, 0, 1)),
      color-stop(62.5%, rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 1) 37.5%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 62.5%
    );
  }
  .header__blur-layer._4 {
    z-index: 4;
    backdrop-filter: blur(1.125px);
    -webkit-backdrop-filter: blur(1.125px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(37.5%, rgba(0, 0, 0, 0)),
      color-stop(50%, rgba(0, 0, 0, 1)),
      color-stop(62.5%, rgba(0, 0, 0, 1)),
      color-stop(75%, rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 37.5%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 1) 62.5%,
      rgba(0, 0, 0, 0) 75%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(37.5%, rgba(0, 0, 0, 0)),
      color-stop(50%, rgba(0, 0, 0, 1)),
      color-stop(62.5%, rgba(0, 0, 0, 1)),
      color-stop(75%, rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 37.5%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 1) 62.5%,
      rgba(0, 0, 0, 0) 75%
    );
  }
  .header__blur-layer._5 {
    z-index: 5;
    backdrop-filter: blur(2.25px);
    -webkit-backdrop-filter: blur(2.25px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(50%, rgba(0, 0, 0, 0)),
      color-stop(62.5%, rgba(0, 0, 0, 1)),
      color-stop(75%, rgba(0, 0, 0, 1)),
      color-stop(87.5%, rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 1) 62.5%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 0) 87.5%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(50%, rgba(0, 0, 0, 0)),
      color-stop(62.5%, rgba(0, 0, 0, 1)),
      color-stop(75%, rgba(0, 0, 0, 1)),
      color-stop(87.5%, rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 1) 62.5%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 0) 87.5%
    );
  }
  .header__blur-layer._6 {
    z-index: 6;
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(62.5%, rgba(0, 0, 0, 0)),
      color-stop(75%, rgba(0, 0, 0, 1)),
      color-stop(87.5%, rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 0))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 62.5%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 1) 87.5%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(62.5%, rgba(0, 0, 0, 0)),
      color-stop(75%, rgba(0, 0, 0, 1)),
      color-stop(87.5%, rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 0))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 62.5%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 1) 87.5%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .header__blur-layer._7 {
    z-index: 7;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(75%, rgba(0, 0, 0, 0)),
      color-stop(87.5%, rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 1))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 1) 87.5%,
      rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(75%, rgba(0, 0, 0, 0)),
      color-stop(87.5%, rgba(0, 0, 0, 1)),
      to(rgba(0, 0, 0, 1))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, 1) 87.5%,
      rgba(0, 0, 0, 1) 100%
    );
  }
  .header__blur-layer._8 {
    z-index: 8;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(87.5%, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 1))
    );
    mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 87.5%,
      rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(87.5%, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 1))
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0) 87.5%,
      rgba(0, 0, 0, 1) 100%
    );
  }
  .sections {
    position: relative;
    z-index: 1;
  }
  .fs {
    position: relative;
    z-index: 1;
    padding-top: 486px;
    margin-bottom: 250px;
  }
  .fs-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .fs-title__row {
    position: relative;
  }
  .fs-title__text {
    font-size: 217.07px;
    text-transform: uppercase;
    letter-spacing: -10.8535px;
    line-height: 86%;
  }
  .fs-title__inside {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  img.fs-title__inside-text {
    position: absolute;
    top: -105px;
    right: -334px;
    width: 576px;
  }
  img.fs-title__inside-line {
    position: absolute;
    top: 56px;
    right: -2px;
    width: 523px;
  }
  .fs-title__and {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    margin-top: -4px;
    margin-bottom: 2px;
  }
  .fs-title__and svg {
    width: 239px;
    height: auto;
  }
  .fs-title__and span {
    font-size: 62.9px;
    text-transform: uppercase;
    letter-spacing: 1.258px;
    line-height: 86%;
  }
  .fs-pic {
    position: absolute;
    top: -110px;
    left: -40px;
    right: 0;
    margin: auto;
    min-width: 2560px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
  }
  .fs-pic img {
    width: 100%;
  }
  .fs-crosses {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    z-index: -2;
  }
  .fs-crosses__item {
    position: absolute;
    margin: auto;
  }
  .fs-crosses__item img {
    width: 100%;
  }
  .fs-crosses__item:nth-child(1) {
    top: 12px;
    left: 0;
    right: 0;
    width: 585px;
  }
  .fs-crosses__item:nth-child(2) {
    top: 420px;
    left: 0;
    right: auto;
    width: 660px;
  }
  .fs-crosses__item:nth-child(3) {
    top: 510px;
    left: auto;
    right: 0;
    width: 660px;
  }
  .who {
    position: relative;
    text-align: center;
    z-index: 2;
    margin-bottom: 227px;
  }
  h2.who-title {
    margin-bottom: 35px;
  }
  .who-text {
    width: 990px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: -1.14px;
    margin-bottom: 60px;
  }
  .who-we {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .who-we-are {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 518px;
    padding: 0 60px;
  }
  .who-we-are__pic {
    width: 398px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .who-we-are__pic img {
    width: 100%;
  }
  h3.who-we-are__title {
    position: relative;
    font-size: 48.08px;
    line-height: 100%;
    letter-spacing: -2.404px;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  .who-we-are__title svg {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
  }
  .who-we-are__title._red {
    color: var(--color-red);
  }
  .who-we-are__title._cyan {
    color: var(--color-cyan);
  }
  .who-we-are__text {
    font-size: 38px;
    line-height: 100%;
    letter-spacing: -1.9px;
  }
  .who-we-are__line {
    position: absolute;
    top: 54px;
    right: -24px;
    height: 100%;
    pointer-events: none;
  }
  .who-we-are__line img {
    width: 100%;
    height: 100%;
  }
  .who-we-are:nth-child(3n) .who-we-are__line {
    display: none;
  }
  section.our {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
  }
  h2.our-title {
  }
  .our-pic-mob {
    display: none;
  }
  .our-pic {
    position: relative;
    margin-top: -32px;
    margin-bottom: -45px;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .our-pic img {
    width: 100%;
  }
  .our-text {
    position: relative;
    width: 987px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: -1.14px;
    margin-bottom: 157px;
    z-index: 1;
  }
  .our-add {
    position: relative;
  }
  .our-add__arrows {
    position: absolute;
    pointer-events: none;
  }
  .our-add__arrows img {
    width: 100%;
  }
  .our-add__arrows._left {
    top: -59px;
    left: -785px;
    right: 0;
    margin: auto;
    width: 299px;
  }
  .our-add__arrows._right {
    top: -78px;
    left: 0;
    right: -828px;
    margin: auto;
    width: 299px;
  }
  .our-add__button {
    text-align: center;
  }
  .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: none;
    border: 0;
    padding: 0;
    z-index: 1;
  }
  
  svg.button-bg {
    position: absolute;
    top: 52%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  svg.button-ico {
    width: 56px;
    margin-right: 14px;
  }
  span.button-text {
    display: block;
    font-size: 65.36px;
    line-height: 100%;
    letter-spacing: -3.268px;
    text-transform: uppercase;
    color: #000;
    z-index: 2;
  }
  
  ._s span.button-text {
    font-size: 50.54px;
  }
  
  .button:hover {
    -webkit-animation: shake 1s;
    animation: shake 1s;
    -webkit-animation-iteration-count: forwards;
    animation-iteration-count: forwards;
  }
  @-webkit-keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(0px, 0px) rotate(0deg);
      transform: translate(0px, 0px) rotate(0deg);
    }
  }
  @keyframes shake {
    0% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
      -webkit-transform: translate(-1px, -2px) rotate(-1deg);
      transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
      -webkit-transform: translate(-3px, 0px) rotate(1deg);
      transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
      -webkit-transform: translate(3px, 2px) rotate(0deg);
      transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
      -webkit-transform: translate(1px, -1px) rotate(1deg);
      transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
      -webkit-transform: translate(-1px, 2px) rotate(-1deg);
      transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
      -webkit-transform: translate(-3px, 1px) rotate(0deg);
      transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
      -webkit-transform: translate(3px, 1px) rotate(-1deg);
      transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
      -webkit-transform: translate(-1px, -1px) rotate(1deg);
      transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
      -webkit-transform: translate(1px, 1px) rotate(0deg);
      transform: translate(1px, 1px) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(0px, 0px) rotate(0deg);
      transform: translate(0px, 0px) rotate(0deg);
    }
  }
  section.hello {
    position: relative;
    margin-top: 100px;
  }
  .hello-wrap[data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 1;
  }
  .hello-pic {
    min-width: 2560px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: -4px;
  }
  .hello-pic img {
    width: 100%;
  }
  .hello-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 56px;
    position: absolute;
    top: 38.5%;
    left: 16px;
    right: 0;
    margin: auto;
    width: 633px;
    z-index: 2;
    -webkit-transform: rotate(-12.44deg);
    -ms-transform: rotate(-12.44deg);
    transform: rotate(-12.44deg);
  }
  .hello-container__row {
  }
  .hello-container__title {
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -3.2px;
  }
  .hello-container__title._red {
    color: var(--color-red);
  }
  .hello-container__title._cyan {
    color: var(--color-cyan);
  }
  a.hello-container__link {
    display: block;
    margin-top: 10px;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: -2.7px;
    color: var(--color-black);
  }
  a.hello-container__link span {
    display: inline-block;
    position: relative;
  }
  a.hello-container__link span:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-black);
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  a.hello-container__link:hover span:after {
    opacity: 1;
  }
  .hello-container__socslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 18px;
    margin-top: 18px;
  }
  a.hello-container__soc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
  }
  img.hello-container__soc-bg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .hello-container__soc:hover img.hello-container__soc-bg {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }
  img.hello-container__soc-ico {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  br._mob {
    display: none;
  }
  
  section.errorpage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
  }
  .errorpage-container {
    position: relative;
    text-align: center;
  }
  .errorpage-title {
    font-size: 308.5px;
    line-height: 86%;
    letter-spacing: -15.425px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .errorpage-pic {
    position: absolute;
    top: -182px;
    right: -208px;
    width: 571px;
  }
  .errorpage-text {
    width: 973px;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -1.2px;
    margin-bottom: 66px;
  }
  .errorpage-button {
    text-align: center;
  }
  section.subscribe {
    position: relative;
    text-align: center;
    margin-bottom: 238px;
  }
  
  h2.subscribe-title {
    margin-bottom: 66px;
  }
  
  .subscribe-form-wrap {
    position: relative;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  ._thanks .subscribe-form-wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .subscribe-form-thanks {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  
  ._thanks .subscribe-form-thanks {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  .subscribe-form-thanks__title {
    font-size: 112.251px;
    line-height: 86%;
    letter-spacing: -5.613px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .subscribe-form-thanks__text {
    width: 444px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -2.4px;
    text-transform: uppercase;
  }
  
  form.subscribe-form {
  }
  
  .subscribe-field {
    position: relative;
    width: 627px;
    margin: 0 auto;
    margin-bottom: 42px;
  }
  
  input.subscribe-field__input {
    text-align: center;
    height: 85px;
    font-size: 65.357px;
    line-height: 100%;
    letter-spacing: -3.268px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0.21;
  }
  
  input.subscribe-field__input::-webkit-input-placeholder {
    color: #fff;
  }
  
  input.subscribe-field__input::-moz-placeholder {
    color: #fff;
  }
  
  input.subscribe-field__input:-ms-input-placeholder {
    color: #fff;
  }
  
  input.subscribe-field__input::-ms-input-placeholder {
    color: #fff;
  }
  
  input.subscribe-field__input::placeholder {
    color: #fff;
  }
  
  img.subscribe-field__line {
    width: 100%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0.21;
    margin-top: -20px;
    pointer-events: none;
  }
  
  .val input.subscribe-field__input,
  .val .subscribe-field__line,
  input.subscribe-field__input:hover ~ .subscribe-field__line {
    opacity: 1;
  }
  
  .subscribe-field label.error {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--color-red);
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
  }
  
  /*  */
  
  section.common-section {
    width: 1354px;
    margin: 0 auto;
    text-align: center;
  }
  
  section.common-section._narrow {
    width: 1100px;
  }
  
  .common-section__title {
    margin-bottom: 52px;
  }
  
  .title-common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 39px;
  }
  
  .title-common._big {
    font-size: 140px;
  }
  
  h1.title-common._big {
    font-size: 128px;
  }
  
  .newslist {
    margin-top: 131px;
    margin-bottom: 102px;
  }
  
  .newslist-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: relative;
    margin-top: 106px;
    padding: 0 34px;
  }
  
  .newslist-item__line {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    height: 56px;
    pointer-events: none;
  }
  
  .newslist-item__line img {
    width: 100%;
    height: 100%;
  }
  
  .common-section__container {
  }
  
  .newslist-item__pic {
    position: relative;
    width: 534px;
    height: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .newslist-item:hover .newslist-item__pic {
    -webkit-animation: shake 1s;
    animation: shake 1s;
    -webkit-animation-iteration-count: forwards;
    animation-iteration-count: forwards;
  }
  
  .newslist-item__pic img {
    position: relative;
    width: calc(100% - 20px);
    height: calc(100% - 14px);
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .newslist-item__pic svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  
  .newslist-item__pic svg path {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .newslist-item:hover .newslist-item__pic svg path {
    fill: var(--color-red);
  }
  
  .newslist-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 534px);
    text-align: left;
    padding-left: 47px;
  }
  
  .newslist-item__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-cyan);
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 10px;
  }
  
  .newslist-item__date span {
    display: block;
    margin-right: 30px;
  }
  
  .newslist-item__date svg {
    width: 70px;
  }
  
  .newslist-item__title {
    font-size: 64px;
    line-height: 100%;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: auto;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .newslist-item__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
  
  .newslist-item__more-text {
    font-size: 36px;
    color: var(--color-red);
  }
  
  .newslist-item__more-ico {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .newslist-item:hover .newslist-item__more-ico {
    -webkit-transform: translateX(7px);
    -ms-transform: translateX(7px);
    transform: translateX(7px);
  }
  
  svg.button-arrow {
    width: 29px;
    height: auto;
    margin-left: 13px;
  }
  
  .morebutton {
    position: relative;
  }
  
  .morebutton-line {
    position: absolute;
  
    left: 0;
  
    top: 0;
  
    width: 100%;
  
    bottom: 0;
  
    margin: auto;
  
    height: 53px;
  
    z-index: -1;
  }
  
  .our-terms {
    font-size: 32px;
  
    letter-spacing: -0.96px;
  
    color: #717070;
  
    text-align: center;
  
    margin-top: 69px;
  }
  
  .our-terms a {
    color: #717070;
  
    border-bottom: 1px solid;
  }
  
  .our-terms a:hover {
    border-bottom: 1px solid transparent;
  }
  
  .common-wrap {
    position: relative;
    margin-top: 200px;
    margin-bottom: 200px;
    z-index: 1;
  }
  
  .common-crosses {
    position: absolute;
  
    top: 0;
  
    right: 0;
  
    width: 100%;
  
    height: 100%;
  
    pointer-events: none;
  
    z-index: -1;
  }
  
  .common-crosses__item {
    position: absolute;
  }
  
  .common-crosses__item:nth-child(1) {
    width: 470px;
    left: 0;
    top: 1190px;
  }
  
  .common-crosses__item:nth-child(2) {
    right: 0;
    top: 270px;
    width: 500px;
  }
  
  .common-crosses__item img {
    width: 100%;
  }
  
  .title-common-line {
    margin-top: 30px;
  }
  
  .title-common-line svg {
    width: 100%;
  }
  
  .contentblock {
    margin-top: 78px;
    text-align: left;
  }
  
  .contentblock p,
  .contentblock ul li {
    font-size: 30px;
    letter-spacing: -0.9px;
    line-height: 120%;
  }
  
  .contentblock h2,
  .contentblock .h2,
  .contentblock h3,
  .contentblock h4,
  .contentblock h5 {
    font-weight: initial;
    margin-bottom: 32px;
    margin-top: 64px;
    text-transform: uppercase;
  }
  
  .contentblock h2 {
  }
  
  .contentblock ul li {
    position: relative;
    padding-left: 40px;
  }
  
  .contentblock ul li:after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 12px;
    width: 7px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-white);
  }
  
  .contentblock h3 {
    font-size: 64px;
    letter-spacing: -3.2px;
  }
  
  .contentblock h4,
  .contentblock h5 {
    font-size: 56px;
    letter-spacing: -2.8px;
  }
  
  .contacts {
    margin-top: 82px;
  }
  
  .contacts__itemslist {
    width: 650px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 77px;
    margin-bottom: 151px;
  }
  
  .contacts-item {
  }
  
  .contacts-item__title {
    font-size: 48px;
    letter-spacing: -2.4px;
    color: var(--color-red);
    text-transform: lowercase;
    margin-bottom: 24px;
  }
  
  .contacts-item__link {
  }
  
  .contacts-item__link-self {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  a.contacts-item__link-self:hover {
    -webkit-animation: shake 1s;
    animation: shake 1s;
    -webkit-animation-iteration-count: forwards;
    animation-iteration-count: forwards;
  }
  
  .contacts-item__link-ico {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
    height: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    top: 0px;
  }
  
  .contacts-item__link-text {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 64px;
    letter-spacing: -1.92px;
    color: var(--color-white);
    text-transform: uppercase;
    padding-left: 24px;
  }
  
  .contacts-item__link-line {
    display: block;
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
  }
  
  .contacts__socs {
    text-align: left;
  }
  
  .contacts__socs a.hello-container__soc {
    width: 74px;
    height: 74px;
  }
  
  .contacts__socs .hello-container__title {
    font-size: 48px;
    letter-spacing: -2.4px;
  }
  
  .contacts__pic {
    position: absolute;
    top: 40px;
    right: 0;
    width: 1360px;
    right: -347px;
    z-index: -1;
  }
  
  .contacts__pic img {
    width: 100%;
  }
  
  a.contacts-item__link-self:hover .contacts-item__link-ico {
    top: 0;
  }
  
  .games {
  }
  
  .games__list {
    margin-bottom: 134px;
  }
  
  .game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-top: 94px;
  }
  
  .game__video {
    position: relative;
    width: 758px;
    height: 438px;
  }
  
  .vjs-tech.video-content {
    position: relative;
    width: 98%;
    top: 7px;
    cursor: pointer;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  svg.video-button {
    position: absolute;
    top: 9px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 106px;
    height: auto;
    z-index: 5;
    pointer-events: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .video-content:hover ~ svg.video-button {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .vjs-playing ~ .video-button {
    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    transform: scale(0) !important;
  }
  
  svg.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    height: auto;
    pointer-events: none;
  }
  
  img.video-img._top {
    width: 244px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: auto;
    top: -148px;
  }
  
  img.video-img {
    position: absolute;
    width: 236px;
    left: 18px;
    bottom: -78px;
  }
  
  .video-js.video-content._game {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .game__info {
    width: calc(100% - 758px);
    text-align: left;
    padding-left: 45px;
    padding-top: 55px;
  }
  
  .game__title {
    font-size: 64px;
    line-height: 86%;
    letter-spacing: -1.92px;
    margin-bottom: 33px;
  }
  
  .game__text {
    font-size: 30px;
    letter-spacing: -0.9px;
  }
  
  .games__buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  
  .games__buttons-container {
    position: relative;
  
    display: -webkit-box;
  
    display: -ms-flexbox;
  
    display: flex;
  
    -webkit-box-align: center;
  
    -ms-flex-align: center;
  
    align-items: center;
  
    -webkit-box-pack: center;
  
    -ms-flex-pack: center;
  
    justify-content: center;
  
    gap: 160px;
  }
  
  img.morebutton-line._short {
    right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .games__buttons-container + img.morebutton-line._short {
    left: auto;
    right: 0;
  }
  
  .game__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .game__line img {
    width: 100%;
  }
  
  .toppic {
  }
  
  .toppic img {
    width: 100%;
  }
  
  .toppic + .common-wrap {
    margin-top: 26px;
  }
  
  .video-content-wrap {
    position: relative; /* height: 634px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 72px;
  }
  
  .contentblock p {
    margin-bottom: 38px;
  }
  
  .swiper.content-slider {
    left: -30px;
    padding-left: 30px;
    width: calc(100% + 30px);
    padding-right: 30px;
    margin-bottom: 72px;
    padding-bottom: 20px;
  }
  
  .swiper.content-slider .swiper-wrapper {
    /* left: -15px; */
  }
  
  .video-content-wrap._icon {
    margin-top: 210px;
  }
  
  .swiper-slide.content-slider-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  
  .content-slider .swiper-navigation {
  }
  
  .content-slider .swiper-button {
    width: 69px;
    height: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  
  .content-slider .swiper-button.swiper-button-prev {
    left: 8px;
  }
  
  .content-slider .swiper-button.swiper-button-prev:hover {
    left: 0px;
  }
  
  .content-slider .swiper-button.swiper-button-next {
    right: 8px;
  }
  
  .content-slider .swiper-button.swiper-button-next:hover {
    right: 0px;
  }
  
  svg.content-slider-slide__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
  }
  
  img.content-slider-slide__pic {
    position: relative;
    width: 98%;
    top: 9px;
    z-index: 0;
  }
  
  .content-socs {
    position: relative;
    margin-top: 80px;
    padding-top: 42px;
  }
  
  .content-socs__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .content-socs__line svg {
    width: 100%;
  }
  
  .content-socs__socslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
  
  a.content-soc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  svg.content-soc__bg {
    position: relative;
    height: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  
  .content-soc:hover svg.content-soc__bg {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }
  
  svg.content-soc__ico {
    position: absolute;
    width: 40px;
  }
  
  section.common-section._more {
    margin-top: 264px;
  }
  
  .content-head {
    text-align: left;
  }
  
  .back-link {
    margin-bottom: 40px;
  }
  
  a.back-link-self {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 14px;
  }
  
  svg.back-link-self__ico {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 34px;
    height: auto;
  }
  
  .back-link-self:hover svg.back-link-self__ico {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px);
  }
  
  span.back-link-self__text {
    font-size: 30px;
    letter-spacing: -0.9px;
    color: var(--color-white);
  }
  
  h1.content-title {
    font-size: 96px;
    letter-spacing: -3.84px;
  }
  
  h1.content-title span {
    color: var(--color-red);
  }
  
  .content-date {
    font-size: 36px;
    letter-spacing: -1.08px;
    color: #808080;
    margin-top: 40px;
  }
  
  .content-date .vacancies-item__head {
    margin-bottom: 0;
  }
  
  svg.content-line {
    width: 100%;
    margin-top: 54px;
  }
  
  .content-slider .swiper-button-next:after,
  .content-slider .swiper-button-prev:after {
    display: none;
  }
  
  .team {
  }
  
  .team__text {
    font-size: 38px;
    letter-spacing: -1.14px;
    margin-bottom: 100px;
  }
  
  .team__itemslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    row-gap: 84px;
  }
  
  .team-item {
    width: 280px;
    text-align: center;
  }
  
  .team-item__pic {
    position: relative;
    margin: 0 auto;
    margin-bottom: 23px;
  }
  
  img.team-item__img {
    width: 207px;
    height: 207px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
  }
  
  svg.team-item__ico {
    position: absolute;
    top: -30px;
    left: -28px;
    pointer-events: none;
  }
  
  .team-item__imya {
    font-size: 56px;
    line-height: 86%;
    letter-spacing: -2.8px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  
  .team-item__post {
    font-size: 22px;
    letter-spacing: -0.08px;
    margin-bottom: 15px;
  }
  
  .team-item__text {
    font-size: 26px;
    letter-spacing: -1.04px;
    color: #676767;
  }
  
  .brand {
    margin-top: 74px;
  }
  
  .brand-container {
    margin-bottom: 80px;
  }
  
  .brand-container__content {
    width: 1100px;
    margin: 0 auto;
  }
  
  .brand-button {
    margin-bottom: 142px;
  }
  
  span.brand-container__title-text {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin: 0 auto;
    font-size: 64px;
    line-height: 86%;
    letter-spacing: -1.92px;
    background: black;
    padding: 0 29px;
    z-index: 2;
  }
  
  h2.brand-container__title {
    position: relative;
  }
  
  img.brand-container__title-line {
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    white-space: nowrap;
  }
  
  .brand-container__content .contentblock {
    text-align: center;
    margin-top: 24px;
  }
  
  svg.button-dwnld {
    margin-left: 15px;
  }
  
  .brand-logoslist {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 32px;
    margin-bottom: 76px;
  }
  
  .brand-logoslist > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  
  .brand-logoslist > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  
  .brand-logo {
    position: relative;
  }
  
  img.brand-logo__pic {
    position: relative;
    width: 98%;
    top: 4px;
  }
  
  svg.brand-logo__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  
  .brand-container__content > .brand-button:nth-child(1) {
    margin-bottom: 120px;
  }
  
  .brand-contact {
    position: relative;
    padding: 74px 0;
    margin-bottom: 174px;
  }
  
  svg.brand-contact__line {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
  }
  
  svg.brand-contact__line:nth-child(1) {
    top: 0;
  }
  
  .brand-contact__text {
    font-size: 38px;
    letter-spacing: -1.14px;
    margin-bottom: 48px;
  }
  
  .brand-contact .contacts-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  a.contacts-item__link-self._cyan .contacts-item__link-text {
    color: var(--color-cyan);
  }
  
  .collab {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-gap: 30px;
    width: 800px;
    margin: 0 auto;
    margin-top: 104px;
    margin-bottom: 129px;
  }
  
  .collab > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  
  .collab > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  
  .collab-item {
    font-size: 38px;
    letter-spacing: -1.14px;
  }
  
  .collab-item__name {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    border-bottom: 2px solid;
  }
  
  .brand-presslist {
    margin-top: 57px;
  }
  
  .brand-press {
  }
  
  .brand-press__text {
    font-size: 38px;
    letter-spacing: -1.14px;
    margin-bottom: 76px;
  }
  
  .brand-press__text a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    color: var(--color-red);
    border-bottom: 2px solid;
  }
  
  .brand-press__text a:hover {
    border-bottom: 2px solid transparent;
  }
  
  .brand-press__socs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .brand-press__socs-title {
    font-size: 38px;
    letter-spacing: -1.14px;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    gap: 48px;
    position: relative;
    left: 108px;
    z-index: 5;
  }
  
  a.header__menu-link {
    font-size: 36px;
    color: var(--color-white);
    text-transform: uppercase;
  }
  
  a.header__menu-link:hover {
    color: var(--color-red);
  }
  
  a.header__menu-link span {
    position: relative;
  }
  
  a.header__menu-link span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url(../img/header-hover.svg);
    background-size: 100%;
    pointer-events: none;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    opacity: 0;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  a.header__menu-link:hover span:before {
    -webkit-transform: translateX(0);
  
    -ms-transform: translateX(0);
  
    transform: translateX(0);
  
    opacity: 1;
  }
  
  .header__socs .hello-container__socslist {
    margin-top: 0;
  }
  
  .header__socs {
    position: relative;
    z-index: 9;
  }
  
  footer.footer {
    position: relative;
    z-index: 2;
    padding-bottom: 33px;
    margin-top: -70px;
  }
  
  .footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 124px;
    margin-bottom: 76px;
  }
  
  svg.footer-bg {
    position: absolute;
    bottom: 0;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2560px;
    z-index: -1;
  }
  
  svg.footer-bg-mob {
    display: none;
  }
  
  svg.footer-up {
    position: absolute;
    z-index: 2;
    top: -18px;
    left: 0;
    right: 0;
    height: auto;
    margin: auto;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  svg.footer-up:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  
  .footer-main__col {
    position: relative;
    text-align: center;
    width: 440px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0 72px;
  }
  
  .footer-title {
    font-size: 63.24px;
    letter-spacing: -3.162px;
    line-height: 86%;
    color: var(--color-black);
    text-transform: uppercase;
  }
  
  .footer-pic {
    position: absolute;
    right: -88px;
    bottom: -4px;
    pointer-events: none;
    z-index: -1;
  }
  
  .footer-pic img {
    width: 100%;
  }
  
  .footer-link .contacts-item__link-text {
    color: var(--color-black);
    font-size: 38.43px;
    letter-spacing: -1.1529px;
    padding-left: 14px;
  }
  
  .footer-link._red .contacts-item__link-text {
    color: var(--color-red);
  }
  
  .footer-link .contacts-item__link-line {
    bottom: -5px;
  }
  
  .footer-link .contacts-item__link-ico {
    top: 0;
  }
  
  .footer-link .contacts-item__link-self {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  a.contacts-item__link-self:hover .contacts-item__link-ico {
    top: -4px;
  }
  
  .footer-linkslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 53px;
  }
  
  .footer-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  svg.footer-line {
    position: absolute;
    top: -43px;
    right: 0;
  }
  
  svg.footer-line:nth-child(1) {
    right: auto;
    left: 0;
  }
  
  .footer-socs .hello-container__socslist {
    margin: 0 auto;
  }
  
  .footer-line-mob {
    display: none;
  }
  
  .footer-text {
    font-size: 23.65px;
    line-height: 110%;
    letter-spacing: -0.473px;
    color: #676767;
    margin-top: 23px;
  }
  
  .footer-socs {
    margin-top: 34px;
  }
  
  .footer-form input.subscribe-field__input {
    color: #00000057;
    font-size: 36.82px;
    letter-spacing: -1.841px;
    height: 50px;
  }
  
  .footer-form {
    margin-top: 32px;
  }
  
  .footer-form .subscribe-field {
    width: 352px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
  }
  
  .footer-form .our-terms {
    position: relative;
    top: 0;
    font-size: 18px;
    letter-spacing: -0.36px;
    margin-top: 0px;
    color: #c8c8c8;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    white-space: nowrap;
  }
  
  .footer-terms {
    font-size: 23.65px;
    letter-spacing: -0.473px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 27px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 21px;
  }
  
  .footer-terms__title {
    color: #c8c8c8;
  }
  
  .footer-terms__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
  }
  
  .footer-terms__links a {
    color: #c8c8c8;
    border-bottom: 1px solid;
  }
  
  .footer-terms__links a:hover {
    border-bottom: 1px solid transparent;
  }
  
  a.footer-flat12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 11px;
    font-size: 23.65px;
  }
  
  a.footer-flat12 span {
    display: block;
    color: #c8c8c8;
  }
  
  .footer-title span {
    color: var(--color-red);
  }
  
  .footer-form input.subscribe-field__input::-webkit-input-placeholder {
    color: #00000057;
  }
  
  .footer-form input.subscribe-field__input::-moz-placeholder {
    color: #00000057;
  }
  
  .footer-form input.subscribe-field__input:-ms-input-placeholder {
    color: #00000057;
  }
  
  .footer-form input.subscribe-field__input::-ms-input-placeholder {
    color: #00000057;
  }
  
  .footer-form input.subscribe-field__input::placeholder {
    color: #00000057;
  }
  
  .footer-form .our-terms a {
    color: #c8c8c8;
  }
  
  .content-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 65px 0 75px;
    margin-top: 107px;
  }
  
  .content-contact__line {
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .content-contact__line svg {
    width: 100%;
    height: auto;
  }
  
  .contacts-item__link ~ .content-contact__line {
    top: auto;
    bottom: 0;
  }
  
  .content-contact__text {
    font-size: 38px;
    letter-spacing: -1.14px;
    margin-bottom: 48px;
  }
  
  .content-contact__text a {
    color: var(--color-white);
    border-bottom: 1px solid;
  }
  
  .content-contact__text a:hover {
    border-bottom: 1px solid transparent;
  }
  
  .content-contact .contacts-item__link-text {
    font-size: 55.54px;
    letter-spacing: -1.6662px;
    text-transform: uppercase;
    padding-left: 20px;
  }
  
  .content-contact .contacts-item__link-ico {
    width: 58px;
    top: 0px;
  }
  
  .content-date svg.vacancies-item__head-ico {
    position: relative;
    width: 26px;
  }
  
  .crosses-mob {
    display: contents;
  }
  
  .crosses-mob > svg {
    display: none;
  }
  
  .vacancies__pic {
    position: absolute;
    width: 1212px;
    top: 260px;
    right: -280px;
    pointer-events: none;
  }
  
  .vacancies__pic img {
    width: 100%;
  }
  
  .vacancies {
    margin-top: 148px;
  }
  
  .vacancies__itemslist {
    width: 830px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 76px;
  }
  
  .vacancies-item {
    display: block;
    position: relative;
    text-align: left;
    width: 100%;
  }
  
  .vacancies-item__line {
    position: absolute;
    top: -68px;
    left: -16px;
    width: 100%;
    pointer-events: none;
  }
  
  .vacancies-item__line img {
    width: 100%;
  }
  
  .vacancies-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 21px;
    margin-bottom: 24px;
  }
  
  svg.vacancies-item__head-ico {
    width: 24px;
    height: auto;
  }
  
  .vacancies-item__head-text {
    font-size: 30px;
    color: #808080;
  }
  
  .vacancies-item__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 64px;
    letter-spacing: -1.92px;
    text-transform: uppercase;
    margin-bottom: 22px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
  }
  
  .vacancies-item:hover .vacancies-item__title {
    border-bottom: 2px solid;
  }
  
  .vacancies-item__text {
    font-size: 30px;
    letter-spacing: -0.9px;
    line-height: 120%;
  }
  
  .vacancies-item__text {
    margin-bottom: 30px;
  }
  
  .vacancies-item:hover .newslist-item__more-ico {
    -webkit-transform: translateX(7px);
    -ms-transform: translateX(7px);
    transform: translateX(7px);
  }
  
  .video-js.video-content {
    width: 100%;
    height: 100%;
  }
  
  .modal-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 470px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  
  .modal__cross {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 41px;
    cursor: pointer;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  .modal__cross:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }
  
  .modal__cross svg {
    width: 100%;
    height: auto;
  }
  
  .modal__fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  
  .modal__fill svg {
    width: 100%;
    height: auto;
  }
  
  .modal__container {
    padding: 45px 45px 50px;
    text-align: center;
  }
  
  .modal__pic {
    width: 297px;
    margin: 0 auto;
  }
  
  .modal__pic img {
    width: 100%;
  }
  
  .modal__title {
    font-size: 61px;
    font-style: normal;
    font-weight: 400;
    line-height: 86%;
    text-transform: uppercase;
    margin-bottom: 26px;
  }
  
  .modal__title span {
    position: relative;
    color: var(--color-red);
  }
  
  .modal__text {
    font-size: 30.733px;
    line-height: 100%; /* 30.733px */
    letter-spacing: -1.537px;
    text-transform: uppercase;
  }
  
  .modal__title span svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
  }
  
  .footer-form .subscribe-field.error ~ .our-terms {
    top: 16px;
  }
  
  .footer-form .subscribe-field label.error {
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.36px;
    bottom: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .error > input.subscribe-field__input {
    color: var(--color-red) !important;
  }
  
  .val > input.subscribe-field__input {
    color: var(--color-black);
  }
  
  /* .vjs-control:not(.vjs-play-control) {
        display: none;
    }
    
    .vjs-loading-spinner {
        display: none;
    }
    
    .vjs-modal-dialog {
        display: none;
    }
    
    .vjs-custom-control-spacer {
        display: none;
    }
    
    .vjs-time-divider {
        display: none;
    }
    
    .vjs-big-play-button {
        display: none;
    }
    
    button.vjs-play-control.vjs-control.vjs-button {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .vjs-control-bar {
        display: contents;
    }
    
    .vjs-text-track-display {
        display: none;
    }
    
    .vjs-poster.vjs-hidden {
        display: none;
    } */
  
  @media only screen and (max-width: 1700px) {
    section.fs {
      padding-top: 340px;
      margin-bottom: 160px;
    }
    .fs-title__text {
      font-size: 143.93px;
      letter-spacing: -7.1965px;
    }
    .fs-title__and span {
      font-size: 41.71px;
      letter-spacing: 0.8342px;
    }
    .fs-title__and {
      gap: 16px;
      margin-top: -6px;
      margin-bottom: -1px;
    }
    .fs-title__and svg {
      width: 158px;
    }
    img.fs-title__inside-text {
      top: -68px;
      right: -227px;
      width: 376px;
    }
    img.fs-title__inside-line {
      top: 37px;
      right: -40px;
      width: 371px;
    }
    .fs-pic {
      top: -93px;
      left: -13px;
      min-width: 1830px;
    }
    .fs-crosses__item:nth-child(1) {
      width: 400px;
    }
    .fs-crosses__item:nth-child(2) {
      top: 300px;
      width: 490px;
    }
    .fs-crosses__item:nth-child(3) {
      top: 411px;
      width: 487px;
    }
    h2 {
      font-size: 72px;
      letter-spacing: -3.6px;
    }
    .who-text {
      width: 800px;
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 68px;
    }
    .who-we-are__pic {
      width: 270px;
      margin-bottom: 6px;
    }
    h3.who-we-are__title {
      font-size: 32.58px;
      letter-spacing: -1.629px;
      margin-bottom: 26px;
    }
    .who-we-are__title svg {
      width: 95%;
      top: calc(100% + -1px);
    }
    .who-we-are__text {
      font-size: 25.75px;
      letter-spacing: -1.2875px;
    }
    .who-we-are {
      width: 373px;
      padding: 0 60px;
    }
    .who-we-are__line {
      top: 36px;
      right: -16px;
    }
    section.who {
      margin-bottom: 194px;
    }
    .our-pic {
      width: 94%;
      margin-bottom: -30px;
    }
    .our-text {
      width: 800px;
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 85px;
    }
    svg.button-ico {
      width: 45px;
      margin-top: -1px;
      margin-right: 12px;
    }
    span.button-text {
      font-size: 52.56px;
      letter-spacing: -2.625px;
    }
  
    .our-add__arrows._left {
      width: 204px;
      top: -13px;
      left: -596px;
    }
    .our-add__arrows._right {
      width: 214px;
      top: -32px;
      right: -622px;
    }
    section.our {
      margin-bottom: 77px;
    }
    .hello-pic {
      min-width: 1830px;
    }
    .hello-container__title {
      font-size: 43.94px;
      letter-spacing: -2.197px;
    }
    a.hello-container__link {
      font-size: 37.07px;
      letter-spacing: -1.8535px;
      margin-top: 5px;
    }
    .hello-container__socslist {
      gap: 10px;
      margin-top: 8px;
    }
    .hello-container {
      top: 37%;
      left: 198px;
      gap: 43px;
    }
    a.hello-container__soc {
      width: 42px;
      height: 42px;
    }
    /* */
    .logo {
      left: 12px;
      width: 231px;
      height: 239px;
      top: -26px;
    }
  
    .burger {
      right: 19px;
      top: 16px;
    }
    .burger-svg svg {
      width: 59px;
    }
    .burger-cont {
      width: 30px;
      height: 20px;
    }
    .burger-cont span {
      height: 3px;
    }
    .burger-cont span:nth-child(1) {
      -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
      transform: translateY(-8px);
    }
    .burger-cont span:nth-child(3) {
      -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
      transform: translateY(8px);
    }
    .pp__wrap {
      width: 375px;
      padding: 72px 22px 0;
    }
    .pp-menu {
      margin-bottom: 41px;
    }
    a.pp-menu__link {
      font-size: 48px;
      letter-spacing: -2.4px;
    }
    .pp-break svg {
      width: 102px;
    }
    .pp-break {
      margin-bottom: 42px;
    }
    .pp-hello .hello-container__title {
      font-size: 34.75px;
      letter-spacing: -1.7375px;
    }
    .pp-hello a.hello-container__link {
      font-size: 29.32px;
      letter-spacing: -1.466px;
    }
    .pp-hello {
      gap: 38px;
    }
    .pp-hello a.hello-container__soc {
      width: 40px;
      height: 40px;
    }
    .pp-hello .hello-container__socslist {
      gap: 10px;
    }
    .errorpage-title {
      font-size: 220px;
      letter-spacing: -11px;
    }
    .errorpage-pic {
      top: -113px;
      right: -200px;
      width: 417px;
    }
    .errorpage-text {
      width: 694px;
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 50px;
    }
  
    h1.title-common._big {
      font-size: 96px;
    }
  
    a.header__menu-link {
      font-size: 32px;
    }
  
    .header__menu {
      gap: 24px;
      left: 82px;
    }
  
    a.hello-container__soc {
      width: 48px;
      height: 48px;
    }
  
    .title-common svg {
      width: 44px;
    }
  
    .title-common {
      gap: 24px;
    }
  
    .title-common._big {
      font-size: 96px;
      letter-spacing: -3.84px;
    }
  
    .common-wrap {
      margin-top: 142px;
    }
  
    .common-crosses__item:nth-child(1) {
      width: 280px;
    }
  
    .common-crosses__item:nth-child(2) {
      width: 260px;
    }
  
    .footer-title {
      font-size: 44px;
      letter-spacing: -2.2px;
    }
  
    .footer-linkslist {
      margin-top: 36px;
      gap: 10px;
    }
  
    .footer-link .contacts-item__link-text {
      font-size: 26px;
      letter-spacing: -0.78px;
      padding-left: 10px;
    }
  
    .footer-link .contacts-item__link-ico {
      width: 28px;
    }
  
    .footer-link .contacts-item__link-line {
      bottom: -6px;
    }
  
    .footer-text {
      margin-top: 15px;
      font-size: 16px;
      letter-spacing: -0.32px;
    }
  
    .footer-main__col {
      width: 302px;
      padding: 0 44px;
    }
  
    .footer-form {
      margin-top: 22px;
    }
  
    .footer-form .subscribe-field {
      width: 264px;
    }
  
    .footer-form input.subscribe-field__input {
      opacity: 1;
      font-size: 25.46px;
      letter-spacing: -1.273px;
      /* color: var(--color-black); */
      height: 38px;
    }
  
    /* .footer-form input.subscribe-field__input::-webkit-input-placeholder {
        color: var(--color-black);
      }
    
      .footer-form input.subscribe-field__input::-moz-placeholder {
        color: var(--color-black);
      }
    
      .footer-form input.subscribe-field__input:-ms-input-placeholder {
        color: var(--color-black);
      }
    
      .footer-form input.subscribe-field__input::-ms-input-placeholder {
        color: var(--color-black);
      }
    
      .footer-form input.subscribe-field__input::placeholder {
        color: var(--color-black);
      } */
  
    svg.footer-bg {
      width: 1818px;
      height: auto;
    }
  
    svg.footer-line {
      height: 190px;
      top: -10px;
    }
  
    .footer-pic {
      width: 238px;
      right: 38px;
      bottom: 46px;
    }
  
    .footer-main {
      padding-top: 90px;
      margin-bottom: 34px;
    }
  
    .footer-terms {
      font-size: 16px;
      letter-spacing: -0.32px;
      gap: 18px;
      margin-bottom: 14px;
    }
  
    .footer-terms__links {
      gap: 16px;
    }
  
    a.footer-flat12 {
      font-size: 16.35px;
      letter-spacing: -0.327px;
    }
  
    a.footer-flat12 svg {
      width: 95px;
    }
  
    a.footer-flat12 span {
      position: relative;
      top: 5px;
    }
  
    svg.footer-up {
      width: 64px;
      top: -12px;
    }
  
    .footer-socs a.hello-container__soc {
      width: 44px;
      height: 44px;
    }
  
    .footer-socs {
      margin-top: 22px;
    }
  
    .footer-form .our-terms {
      font-size: 14px;
    }
  
    .contacts__pic {
      width: 964px;
      right: -186px;
      top: 90px;
    }
  
    section.common-section {
      width: 1156px;
    }
  
    .contacts {
      margin-top: 72px;
    }
  
    .contacts-item__title {
      font-size: 32px;
      letter-spacing: -1.6px;
      margin-bottom: 16px;
    }
  
    .contacts-item__link-text {
      font-size: 44px;
      letter-spacing: -1.32px;
      padding-left: 16px;
    }
  
    .contacts-item__link-ico {
      width: 46px;
      top: 0;
    }
  
    svg.contacts-item__link-ico._pin {
      width: 34px;
      top: 0px;
    }
  
    svg.contacts-item__link-ico._pin ~ svg.contacts-item__link-line {
      bottom: -14px;
    }
  
    .contacts__itemslist {
      width: 500px;
      gap: 50px;
      margin-bottom: 54px;
    }
  
    .contacts__socs .hello-container__title {
      text-align: center;
      font-size: 32px;
      letter-spacing: -1.6px;
    }
  
    .contacts__socs {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  
    .contacts__socs .hello-container__socslist {
      margin-top: 10px;
    }
  
    .contacts__socs a.hello-container__soc {
      width: 52px;
      height: 52px;
    }
  
    .newslist-item__pic {
      width: 500px;
      height: 310px;
    }
  
    .newslist-item__pic img {
      /* top: 8px; */
    }
  
    .newslist-item__info {
      padding-top: 16px;
      width: calc(100% - 500px);
    }
  
    .newslist-item {
      margin-top: 82px;
      padding: 0 12px;
    }
  
    .newslist-item__line {
      top: -56px;
      height: 48px;
    }
  
    .newslist-item__date {
      font-size: 32px;
      letter-spacing: -0.96px;
    }
  
    .newslist-item__date svg {
      width: 60px;
    }
  
    .newslist-item__date span {
      margin-right: 28px;
    }
  
    .newslist-item__title {
      font-size: 56px;
      letter-spacing: -1.12px;
    }
  
    .newslist-item__more-text {
      font-size: 32px;
      letter-spacing: -0.96px;
    }
  
    .newslist-item__more-ico svg {
      width: 30px;
      height: auto;
    }
  
    .newslist {
      margin-top: 100px;
    }
  
    img.morebutton-line._short {
      width: 21%;
    }
  
    .game__text {
      font-size: 24px;
      letter-spacing: -0.72px;
      line-height: 120%;
    }
  
    .game__video {
      width: 593px;
      height: 343px;
    }
  
    .game__info {
      width: calc(100% - 593px);
      padding-top: 45px;
    }
  
    .video-js.video-content._game {
    }
  
    img.video-img {
      width: 146px;
      left: 22px;
      bottom: -63px;
    }
  
    svg.video-button {
      width: 83px;
    }
  
    .toppic {
      margin-top: -95px;
    }
  
    .toppic + .common-wrap {
      margin-top: 16px;
    }
  
    span.back-link-self__text {
      font-size: 24px;
      letter-spacing: -0.72px;
    }
  
    svg.back-link-self__ico {
      width: 28px;
    }
  
    h1.content-title {
      font-size: 80px;
      letter-spacing: -3.2px;
    }
  
    .content-date {
      margin-top: 30px;
    }
  
    svg.content-line {
      margin-top: 50px;
    }
  
    .contentblock {
      margin-top: 68px;
    }
  
    .video-content-wrap {
      margin: 68px 0;
    }
  
    section.common-section._more {
      margin-top: 216px;
    }
  
    img.team-item__img {
      width: 184px;
      height: 184px;
    }
  
    svg.team-item__ico {
      width: 280px;
      top: -36px;
      left: 0px;
    }
  
    .team__itemslist {
      -webkit-column-gap: 50px;
      -moz-column-gap: 50px;
      column-gap: 50px;
      row-gap: 70px;
    }
  
    .team-item {
      width: 250px;
    }
  
    .team__text {
      font-size: 28px;
      letter-spacing: -0.84px;
      width: 800px;
      margin: 0 auto;
      margin-bottom: 95px;
    }
  
    .team-item__imya {
      font-size: 48px;
      letter-spacing: -2.4px;
    }
  
    .team-item__post {
      font-size: 20px;
    }
  
    .vacancies__itemslist {
      width: 660px;
    }
  
    .vacancies__pic {
      width: 1036px;
      top: 110px;
    }
  }
  @media only screen and (max-width: 1439px) {
    section.subscribe {
      margin-bottom: 90px;
    }
    .subscribe-form-thanks__title {
      font-size: 64px;
      line-height: 100%;
      letter-spacing: -3.2px;
    }
    .subscribe-form-thanks__text {
      font-size: 40px;
      letter-spacing: -2px;
    }
    .footer-pic {
      right: -50px;
      bottom: 28px;
    }
  
    .common-crosses {
      display: none;
    }
    .logo {
      left: 0px;
      width: 212px;
      height: 218px;
      top: -22px;
    }
  
    .vacancies__pic {
      width: 830px;
      right: -190px;
    }
  }
  @media only screen and (max-width: 1279px) {
    .burger {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    section.fs {
      padding-top: 355px;
      margin-bottom: 135px;
    }
    img.fs-title__inside-text {
      top: -49px;
      right: -86px;
      width: 286px;
    }
    img.fs-title__inside-line {
      top: 34px;
      right: 24px;
      width: 306px;
    }
    .fs-pic {
      top: 14px;
      left: -24px;
      min-width: 1280px;
    }
    .fs-crosses__item:nth-child(1) {
      top: 70px;
      width: 300px;
    }
    .fs-crosses__item:nth-child(2) {
      top: 390px;
      width: 330px;
    }
    .fs-crosses__item:nth-child(3) {
      top: 486px;
      width: 280px;
    }
    .who-text {
      width: 600px;
      margin-bottom: 48px;
    }
    .who-we-are__pic {
      width: 188px;
      margin-bottom: 4px;
    }
    h3.who-we-are__title {
      font-size: 26px;
      letter-spacing: -1.3px;
      margin-bottom: 16px;
    }
    .who-we-are__text {
      font-size: 22px;
      letter-spacing: -0.66px;
    }
    .who-we-are {
      width: 238px;
      padding: 0 8px;
    }
    .who-we-are__line {
      top: 25px;
      right: -12px;
    }
    section.who {
      margin-bottom: 123px;
    }
    .our-pic {
      /* max-width: 440px;
            */
      width: 115%;
      margin-top: -16px;
      margin-bottom: -5px;
    }
    .our-text {
      width: 600px;
      margin-bottom: 72px;
    }
    section.our {
      margin-bottom: 40px;
    }
    .hello-pic {
      min-width: 1280px;
    }
    .hello-container__title {
      font-size: 28.87px;
      letter-spacing: -1.4435px;
    }
    a.hello-container__link {
      font-size: 24.36px;
      letter-spacing: -1.218px;
      margin-top: 4px;
    }
    a.hello-container__link span:after {
      height: 2px;
    }
    .hello-container {
      top: 38%;
      left: 44px;
      gap: 30px;
      width: 350px;
    }
    a.hello-container__soc {
      width: 28px;
      height: 28px;
    }
    img.hello-container__soc-ico {
      width: 85%;
      height: 85%;
    }
    /* */
    .logo {
      top: -18px;
      left: 0;
    }
  
    .hello-wrap[data-aos="fade-up"] {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
    .errorpage-title {
      font-size: 161.8px;
      letter-spacing: -8.09px;
    }
    .errorpage-text {
      width: 600px;
    }
    .errorpage-pic {
      top: -190px;
      right: -65px;
    }
    .header__menu {
      display: none;
    }
  
    .header__socs {
      display: none;
    }
  
    section.common-section,
    section.common-section._narrow {
      width: 100%;
      padding: 0 64px;
    }
  
    .common-wrap {
      margin-top: 170px;
    }
  
    h1.title-common._big {
      font-size: 80px;
    }
  
    .title-common svg {
      width: 38px;
    }
  
    .title-common {
      gap: 20px;
    }
  
    .contentblock {
      margin-top: 58px;
    }
  
    .contentblock h2,
    .contentblock .h2,
    .contentblock h3,
    .contentblock h4,
    .contentblock h5 {
      margin-top: 56px;
    }
  
    .contentblock h2 {
      font-size: 56px;
      letter-spacing: -2.8px;
    }
  
    .contentblock p,
    .contentblock ul li {
      font-size: 28px;
      letter-spacing: -0.84px;
    }
  
    .contentblock h3 {
      font-size: 48px;
      letter-spacing: -2.4px;
    }
  
    .contentblock h4,
    .contentblock h5 {
      font-size: 44px;
      letter-spacing: -2.2px;
    }
  
    svg.footer-bg-mob {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      width: 100%;
      height: auto;
      margin: auto;
      z-index: -1;
    }
  
    .footer-main {
      padding-top: 176px;
      margin-bottom: 74px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 100px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
  
    svg.footer-up {
      width: 92px;
      top: 28px;
    }
  
    .footer-title {
      font-size: 63.24px;
      letter-spacing: -3.162px;
    }
  
    .footer-main__col {
      width: 100%;
    }
  
    .footer-linkslist {
      margin-top: 52px;
    }
  
    .footer-link .contacts-item__link-text {
      font-size: 38.43px;
      letter-spacing: -1.1529px;
      padding-left: 18px;
    }
  
    .footer-link .contacts-item__link-ico {
      width: 40px;
    }
  
    svg.footer-bg {
      display: none;
    }
  
    .footer-link .contacts-item__link-line {
      bottom: -7px;
    }
  
    svg.footer-line {
      display: none;
    }
  
    .footer-line-mob {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -48px;
      margin: 0 auto;
      width: 680px;
    }
  
    svg.footer-line-mob:nth-child(2) {
      top: -48px;
    }
  
    .footer-socs a.hello-container__soc {
      width: 62px;
      height: 62px;
    }
  
    .footer-text {
      font-size: 23.65px;
      letter-spacing: -0.473px;
      width: 440px;
      margin: 0 auto;
      margin-top: 23px;
    }
  
    .footer-socs {
      margin-top: 34px;
    }
  
    .footer-form input.subscribe-field__input {
      font-size: 36.82px;
      letter-spacing: -1.841px;
      height: 48px;
    }
  
    .footer-form .our-terms {
      font-size: 18px;
      letter-spacing: -0.36px;
      margin-top: 10px;
    }
  
    .footer-form .subscribe-field {
      width: 354px;
    }
  
    .footer-pic {
      width: 333px;
      bottom: 88px;
      right: 31px;
    }
  
    .contacts__itemslist {
      width: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
    }
  
    .contacts__pic {
    }
  
    .contacts__socs {
      margin: 0 auto;
    }
  
    .contacts__pic {
      position: initial;
      width: 810px;
      margin-top: 55px;
      margin-left: -64px;
      margin-bottom: -400px;
    }
  
    .newslist {
      margin-top: 88px;
      margin-bottom: 60px;
    }
  
    .newslist-item {
      display: block;
      padding: 0;
    }
  
    .newslist-item__pic {
      width: 644px;
      height: 398px;
      margin-bottom: 32px;
    }
  
    .newslist-item__pic svg {
    }
  
    .newslist-item__pic img {
      top: -2px;
      height: calc(100% - 20px);
    }
  
    .newslist-item__info {
      padding: 0;
      width: 100%;
    }
  
    .newslist-item__title {
      margin-bottom: 70px;
    }
  
    .newslist-item__line {
      top: -66px;
    }
  
    .game {
      padding-top: 80px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .game__video {
      width: 653px;
      height: 377px;
      margin: 0 auto;
      margin-bottom: 68px;
    }
  
    .game__info {
      width: 100%;
      padding: 0;
      text-align: center;
    }
  
    .game__title {
    }
  
    .game__text {
    }
  
    .games__list {
      margin-bottom: 80px;
    }
  
    .games__buttons ._s span.button-text {
      font-size: 40.27px;
      letter-spacing: -2.0135px;
    }
  
    .games__buttons ._s .button-bg {
      -webkit-transform: translate(-50%, -50%) scale(0.9);
      -ms-transform: translate(-50%, -50%) scale(0.9);
      transform: translate(-50%, -50%) scale(0.9);
    }
  
    .games__buttons-container {
      gap: 135px;
    }
  
    .games__buttons svg.button-dwnld {
      width: 35px;
      margin-left: 10px;
    }
  
    img.morebutton-line._short {
      width: 9%;
    }
  
    .toppic {
      margin-top: 0;
    }
  
    .toppic + .common-wrap {
      margin-top: 32px;
    }
  
    span.back-link-self__text {
      font-size: 30px;
      letter-spacing: -0.9px;
    }
  
    svg.back-link-self__ico {
      width: 34px;
    }
  
    h1.content-title {
      font-size: 64px;
      letter-spacing: -2.56px;
    }
  
    .content-date {
      margin-top: 40px;
    }
  
    .video-content-wrap {
      margin: 48px 0;
    }
  
    svg.content-slider-slide__frame {
    }
  
    img.content-slider-slide__pic {
      top: 4px;
    }
  
    .swiper.content-slider {
      left: -20px;
      padding-left: 20px;
      width: calc(100% + 20px);
      padding-right: 20px;
      margin-bottom: 42px;
    }
  
    section.common-section._more {
      margin-top: 180px;
    }
  
    h2.title-common._small {
      font-size: 96px;
      gap: 38px;
    }
  
    h2.title-common._small svg {
      width: 54px;
    }
  
    .newslist-item__line {
      top: -70px;
    }
  
    .content-date svg.vacancies-item__head-ico {
      position: relative;
      width: 26px;
    }
  
    .content-contact__text {
      font-size: 30px;
      line-height: 130%;
      letter-spacing: -0.9px;
    }
  
    .content-contact .contacts-item__link-text {
      font-size: 64px;
      letter-spacing: -1.92px;
      padding-left: 26px;
    }
  
    .content-contact .contacts-item__link-ico {
      width: 66px;
      top: 0px;
    }
  
    .team-item {
      width: 192px;
    }
  
    img.team-item__img {
      width: 144px;
      height: 144px;
    }
  
    .team__itemslist {
      -webkit-column-gap: 32px;
      -moz-column-gap: 32px;
      column-gap: 32px;
      row-gap: 46px;
    }
  
    svg.team-item__ico {
      width: 240px;
      top: -68px;
      left: -28px;
    }
  
    .team-item__imya {
      font-size: 36px;
  
      letter-spacing: -1.8px;
    }
  
    .team-item__pic {
      margin-bottom: 18px;
    }
  
    .team-item__post {
      font-size: 16px;
      letter-spacing: -0.64px;
      margin-bottom: 10px;
    }
  
    .team-item__text {
      font-size: 18px;
      letter-spacing: -0.72px;
    }
  
    .team__text {
      width: 640px;
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 60px;
    }
  
    .brand-container__content {
      width: 100%;
    }
  
    span.brand-container__title-text {
      font-size: 56px;
      letter-spacing: -1.68px;
    }
  
    .brand-logoslist {
      grid-gap: 10px;
      margin-bottom: 58px;
    }
  
    .brand-button {
      margin-bottom: 108px;
    }
  
    .brand-container__content .title-common.h2._small {
      font-size: 80px;
      letter-spacing: -2.4px;
      margin-top: 62px;
      gap: 36px;
      margin-bottom: 48px;
    }
  
    .brand-container__content .video-content-wrap._icon {
      margin-top: 150px;
      margin-bottom: 36px;
    }
  
    img.video-img._top {
      width: 190px;
      top: -104px;
    }
  
    .brand-contact__text {
      font-size: 30px;
      letter-spacing: -0.9px;
    }
  
    .brand-contact {
      padding: 62px 0;
      margin-bottom: 114px;
    }
  
    .collab {
      width: 100%;
      margin-top: 42px;
      margin-bottom: 94px;
    }
  
    .collab-item {
      font-size: 28px;
      letter-spacing: -0.84px;
    }
  
    .brand-press__text {
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 64px;
    }
  
    .brand-press__socs-title {
      font-size: 28px;
      letter-spacing: -0.84px;
      margin-bottom: 27px;
    }
  
    .brand-press__socs a.hello-container__soc {
      width: 78px;
      height: 78px;
    }
  
    .hello-container__socslist {
      gap: 18px;
    }
  
    .content-slider .swiper-button {
      width: 45px;
    }
  
    .vacancies__pic {
      width: 944px;
      position: initial;
      margin-bottom: -500px;
      margin-left: -128px;
      margin-top: 30px;
    }
  
    .vacancies__itemslist {
      width: 100%;
    }
  
    .our-terms {
      font-size: 28px;
    }
  }
  @media only screen and (max-width: 767px) {
    .fs-pic {
      top: 24px;
      left: -19px;
      min-width: 768px;
    }
    .fs-title__text {
      font-size: 77.76px;
      letter-spacing: -3.888px;
    }
    .fs-title__and {
      gap: 9px;
      margin-top: 0px;
      margin-bottom: 3px;
    }
    .fs-title__and svg {
      width: 86px;
    }
    .fs-title__and span {
      font-size: 22.53px;
      letter-spacing: -0.4506px;
    }
    img.fs-title__inside-text {
      top: -34px;
      right: -54px;
      width: 168px;
    }
    img.fs-title__inside-line {
      top: 19px;
      right: -18px;
      width: 188px;
    }
    section.fs {
      padding-top: 238px;
      margin-bottom: 82px;
    }
    .fs-crosses__item:nth-child(1) {
      top: 40px;
      width: 215px;
    }
    .fs-crosses__item:nth-child(2) {
      top: 222px;
      width: 195px;
    }
    .fs-crosses__item:nth-child(3) {
      top: 247px;
      width: 230px;
      right: -81px;
    }
    h2 {
      font-size: 48px;
      letter-spacing: -2.4px;
    }
    .who-text {
      width: 100%;
      font-size: 22px;
      letter-spacing: -0.66px;
      margin-bottom: 20px;
    }
    section.who {
      padding: 0 20px;
      margin-bottom: 53px;
    }
    .who-we {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 12px;
      max-width: 440px;
      margin: 0 auto;
    }
    .who-we-are {
      display: block;
      width: 100%;
      padding: 28px 0;
      padding-left: 140px;
      text-align: left;
    }
    .who-we-are__pic {
      position: absolute;
      left: -38px;
      margin-bottom: 0;
      top: 0;
    }
    h3.who-we-are__title {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
    .who-we-are__line {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      height: 310px;
      top: initial;
      right: 0;
      left: 0;
      margin: auto;
      bottom: -164px;
    }
    br._mob {
      display: block;
    }
    .our-pic img {
      display: none;
    }
    img.our-pic-mob {
      display: block;
    }
    .our-pic {
      width: 110%;
      margin-top: -64px;
      margin-bottom: -74px;
    }
    .our-text {
      width: 100%;
      padding: 0 20px;
      font-size: 22px;
      letter-spacing: -0.66px;
      margin-bottom: 45px;
    }
    span.button-text {
      font-size: 31.65px;
      letter-spacing: -1.5825px;
    }
    svg.button-ico {
      width: 28px;
      margin-top: -2px;
      margin-right: 7px;
    }
    .games__buttons ._s svg.button-bg {
      -webkit-transform: translate(-50%, -50%) scale(0.65);
      -ms-transform: translate(-50%, -50%) scale(0.65);
      transform: translate(-50%, -50%) scale(0.65);
    }
    .our-add__arrows._left {
      width: 129px;
      top: -21px;
      left: -323px;
    }
    .our-add__arrows._right {
      width: 129px;
      top: -16px;
      right: -323px;
    }
    .hello-pic {
      min-width: 810px;
    }
    .hello-container__title {
      font-size: 20.13px;
      letter-spacing: -1.0065px;
    }
    a.hello-container__link {
      font-size: 16.98px;
      letter-spacing: -0.849px;
      margin-top: 2px;
    }
    a.hello-container__soc {
      width: 20px;
      height: 20px;
    }
    .hello-container__socslist {
      gap: 4px;
      margin-top: 6px;
    }
    .hello-container {
      top: 38.5%;
      left: 42px;
      gap: 17px;
      width: 233px;
    }
    section.our {
      margin-bottom: 43px;
    }
  
    .header {
      height: 80px;
    }
    .header__blur {
      height: 180px;
    }
    /* */
    .logo {
      top: -16px;
      left: -14px;
      width: 142px;
      height: 146px;
    }
  
    a.hello-container__link span:after {
      height: 1px;
    }
    .pp__wrap {
      width: 100%;
    }
    .errorpage-pic {
      width: 330px;
      top: -238px;
      right: -23px;
    }
    .errorpage-title {
      font-size: 86px;
      letter-spacing: -4.3px;
    }
    .errorpage-text {
      width: 334px;
      font-size: 22px;
      letter-spacing: -0.66px;
      margin-bottom: 40px;
    }
  
    h2.subscribe-title {
      margin-bottom: 32px;
    }
  
    .subscribe-field {
      width: 276px;
      margin-bottom: 28px;
    }
  
    input.subscribe-field__input {
      font-size: 34px;
      letter-spacing: -1.7px;
      height: 64px;
    }
  
    img.subscribe-field__line {
      margin-top: -24px;
    }
  
    .subscribe-form-thanks__title {
      font-size: 48px;
      line-height: 86%;
      letter-spacing: -2.4px;
    }
  
    .subscribe-form-thanks__text {
      width: 316px;
      font-size: 32px;
      line-height: 86%;
      letter-spacing: -1.6px;
    }
  
    .burger-svg svg {
      width: 52px;
    }
  
    .burger-cont {
      width: 26px;
      margin-top: -3px;
    }
  
    .common-wrap {
      margin-top: 116px;
      margin-bottom: 120px;
    }
  
    h1.title-common._big {
      font-size: 56px;
      letter-spacing: -2.8px;
    }
  
    section.common-section,
    section.common-section._narrow {
      padding: 0 22px;
    }
  
    .title-common svg {
      width: 22px;
    }
  
    .title-common-line {
      margin-top: 0px;
    }
  
    .contentblock h2,
    .contentblock .h2,
    .contentblock h3,
    .contentblock h4,
    .contentblock h5 {
      margin-top: 32px;
      margin-bottom: 16px;
    }
  
    .contentblock h2 {
      font-size: 36px;
      letter-spacing: -1.8px;
    }
  
    .contentblock p,
    .contentblock ul li {
      font-size: 18px;
    }
  
    .contentblock ul li:after {
      top: 8px;
      left: 12px;
      width: 5px;
      height: 5px;
    }
  
    .contentblock ul li {
      padding-left: 32px;
    }
  
    .contentblock h3 {
      font-size: 32px;
      letter-spacing: -1.6px;
    }
  
    .contentblock h4,
    .contentblock h5 {
      font-size: 28px;
      letter-spacing: -1.4px;
    }
  
    svg.footer-up {
      width: 64px;
      top: 2px;
    }
  
    .footer-title {
      font-size: 44px;
      letter-spacing: -2.2px;
    }
  
    .footer-main {
      padding-top: 116px;
      margin-bottom: 74px;
      gap: 62px;
    }
  
    .footer-link .contacts-item__link-text {
      font-size: 26px;
      letter-spacing: -0.78px;
      padding-left: 10px;
    }
  
    .footer-link .contacts-item__link-ico {
      width: 28px;
    }
  
    .footer-link .contacts-item__link-line {
      bottom: -5px;
    }
  
    .footer-text {
      width: 100%;
      font-size: 16px;
      letter-spacing: -0.32px;
      margin-top: 16px;
    }
  
    footer.footer {
      padding-left: 22px;
      padding-right: 22px;
      padding-bottom: 34px;
    }
  
    .footer-linkslist {
      margin-top: 36px;
    }
  
    .footer-line-mob {
      width: 330px;
      bottom: -30px;
    }
  
    svg.footer-line-mob:nth-child(2) {
      top: -30px;
    }
  
    .footer-socs a.hello-container__soc {
      width: 44px;
      height: 44px;
    }
  
    footer .hello-container__socslist {
      gap: 12px;
    }
  
    .footer-socs {
      margin-top: 22px;
    }
  
    .footer-form input.subscribe-field__input {
      font-size: 25.46px;
      letter-spacing: -1.273px;
      height: 42px;
    }
  
    .footer-form .subscribe-field {
      width: 244px;
    }
  
    .footer-form .our-terms {
      font-size: 14px;
      letter-spacing: -0.28px;
    }
  
    .footer-terms {
      display: block;
      text-align: center;
      margin-bottom: 30px;
    }
  
    .footer-terms__links {
      margin: 0 auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  
    .footer-terms__title {
      margin-bottom: 6px;
    }
  
    .footer-pic {
      display: none;
    }
    .burger-svg svg {
      width: 52px;
    }
  
    .burger-cont {
      width: 26px;
      margin-top: -3px;
    }
  
    .common-wrap {
      margin-top: 116px;
      margin-bottom: 140px;
    }
  
    h1.title-common._big {
      font-size: 56px;
      letter-spacing: -2.8px;
    }
  
    section.common-section,
    section.common-section._narrow {
      padding: 0 22px;
    }
  
    .title-common svg {
      width: 22px;
    }
  
    .title-common-line {
      margin-top: 0px;
    }
  
    .contentblock h2,
    .contentblock .h2,
    .contentblock h3,
    .contentblock h4,
    .contentblock h5 {
      margin-top: 32px;
      margin-bottom: 16px;
    }
  
    .contentblock h2 {
      font-size: 36px;
      letter-spacing: -1.8px;
    }
  
    .contentblock p,
    .contentblock ul li {
      font-size: 18px;
      line-height: 140%;
    }
  
    .contentblock ul li:after {
      top: 8px;
      left: 12px;
      width: 5px;
      height: 5px;
    }
  
    .contentblock ul li {
      padding-left: 32px;
    }
  
    .contentblock h3 {
      font-size: 32px;
      letter-spacing: -1.6px;
    }
  
    .contentblock h4,
    .contentblock h5 {
      font-size: 28px;
      letter-spacing: -1.4px;
    }
  
    svg.footer-up {
      width: 64px;
      top: 2px;
    }
  
    .footer-title {
      font-size: 44px;
      letter-spacing: -2.2px;
    }
  
    .footer-main {
      padding-top: 116px;
      margin-bottom: 74px;
      gap: 62px;
    }
  
    .footer-link .contacts-item__link-text {
      font-size: 26px;
      letter-spacing: -0.78px;
      padding-left: 10px;
    }
  
    .footer-link .contacts-item__link-ico {
      width: 28px;
    }
  
    .footer-link .contacts-item__link-line {
      bottom: -5px;
    }
  
    .footer-text {
      width: 100%;
      font-size: 16px;
      letter-spacing: -0.32px;
      margin-top: 16px;
    }
  
    footer.footer {
      padding-left: 22px;
      padding-right: 22px;
      padding-bottom: 34px;
    }
  
    .footer-linkslist {
      margin-top: 36px;
    }
  
    .footer-line-mob {
      width: 330px;
      bottom: -30px;
    }
  
    svg.footer-line-mob:nth-child(2) {
      top: -30px;
    }
  
    .footer-socs a.hello-container__soc {
      width: 44px;
      height: 44px;
    }
  
    .hello-container__socslist {
      /* gap: 10px; */
    }
  
    .footer-socs {
      margin-top: 22px;
    }
  
    .footer-form input.subscribe-field__input {
      font-size: 25.46px;
      letter-spacing: -1.273px;
      height: 42px;
    }
  
    .footer-form .subscribe-field {
      width: 244px;
    }
  
    .footer-form .our-terms {
      font-size: 14px;
      letter-spacing: -0.28px;
    }
  
    .footer-terms {
      display: block;
      text-align: center;
      margin-bottom: 30px;
    }
  
    .footer-terms__links {
      margin: 0 auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  
    .footer-terms__title {
      margin-bottom: 6px;
    }
  
    .footer-pic {
      display: none;
    }
  
    .contacts {
      margin-top: 39px;
    }
  
    .contacts-item__title {
      font-size: 20px;
      margin-bottom: 10px;
    }
  
    .contacts-item__link-text {
      font-size: 26px;
      letter-spacing: -0.78px;
      padding-left: 10px;
    }
  
    .contacts-item__link-ico {
      width: 28px;
      top: 0px;
    }
  
    .contacts__itemslist {
      gap: 32px;
      margin-bottom: 32px;
    }
  
    svg.contacts-item__link-ico._pin {
      width: 22px;
      top: 0px;
    }
  
    svg.contacts-item__link-ico._pin ~ svg.contacts-item__link-line {
      bottom: -11px;
    }
  
    .contacts__socs .hello-container__title {
      font-size: 20px;
      letter-spacing: -1px;
    }
  
    .contacts__socs a.hello-container__soc {
      width: 36px;
      height: 36px;
    }
  
    .contacts__pic {
      width: 530px;
      margin-top: 28px;
      margin-left: -70px;
      margin-bottom: -240px;
    }
  
    .common-section__title {
      margin-bottom: 38px;
    }
  
    .newslist {
      margin-top: 58px;
      margin-bottom: 60px;
    }
  
    .newslist-item__pic {
      width: 100%;
      height: auto;
      margin-bottom: 22px;
    }
  
    .newslist-item__pic img {
      top: 4px;
      width: calc(100% - 6px);
      height: calc(100% - 10px);
    }
  
    .newslist-item__date {
      font-size: 22px;
      margin-bottom: 18px;
    }
  
    .newslist-item__date svg {
      width: 44px;
    }
  
    .newslist-item__date span {
      margin-right: 16px;
    }
  
    .newslist-item__title {
      font-size: 36px;
      letter-spacing: -0.72px;
      margin-bottom: 32px;
    }
  
    .newslist-item__more-text {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  
    .newslist-item__more {
      gap: 10px;
    }
  
    .newslist-item__more-ico svg {
      width: 26px;
    }
  
    .newslist-item {
      margin-top: 64px;
    }
  
    .newslist-item__line {
      top: -56px;
    }
  
    ._s span.button-text {
      font-size: 31.65px;
    }
  
    .game {
      padding-top: 56px;
    }
  
    svg.video-button {
      width: 48px;
    }
  
    img.video-img {
      width: 96px;
      left: 10px;
      bottom: -30px;
    }
  
    .game__video {
      width: 334px;
      height: 193px;
      margin-bottom: 38px;
    }
  
    .video-js .vjs-tech {
      top: 3px;
      left: 4px;
      width: calc(100% - 10px);
      height: calc(100% - 10px);
    }
  
    .game__title {
      font-size: 44px;
      letter-spacing: -1.32px;
    }
  
    img.morebutton-line._short {
      display: none;
    }
  
    .games__buttons-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 35px;
    }
  
    .games__buttons ._s .button-bg {
      -webkit-transform: translate(-50%, -50%) scale(1.15);
      -ms-transform: translate(-50%, -50%) scale(1.15);
      transform: translate(-50%, -50%) scale(1.15);
    }
  
    .games__buttons ._s span.button-text {
      font-size: 31.65px;
      letter-spacing: -1.5825px;
    }
  
    .games__buttons svg.button-dwnld {
      width: 27px;
      margin-left: 8px;
    }
  
    .games__list {
      margin-bottom: 54px;
    }
  
    .toppic {
      margin-left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 836px;
    }
  
    span.back-link-self__text {
      font-size: 16px;
    }
  
    svg.back-link-self__ico {
      width: 20px;
    }
  
    a.back-link-self {
      gap: 8px;
    }
  
    .back-link {
      margin-bottom: 24px;
    }
  
    h1.content-title {
      font-size: 40px;
      letter-spacing: -1.6px;
    }
  
    .content-date {
      margin-top: 24px;
      font-size: 20px;
      letter-spacing: -0.6px;
    }
  
    svg.content-line {
      margin-top: 24px;
    }
  
    .contentblock {
      margin-top: 35px;
    }
  
    .video-content-wrap {
      margin: 24px 0;
    }
  
    .video-js.video-content {
      top: 2px;
    }
  
    .content-slider .swiper-button {
      width: 24px;
    }
  
    .swiper.content-slider {
      padding-left: 15px;
      padding-right: 15px;
      width: calc(100% + 30px);
      margin-bottom: 20px;
    }
  
    .content-slider .swiper-button.swiper-button-prev {
      left: 6px;
    }
  
    .content-slider .swiper-button.swiper-button-next {
      right: 6px;
    }
  
    .content-socs {
      padding-top: 0;
      margin-top: 66px;
    }
  
    .content-socs__line {
      display: none;
    }
  
    a.content-soc {
      width: 42px;
    }
  
    .content-socs__socslist {
      gap: 13px;
    }
  
    section.common-section._more {
      margin-top: 116px;
    }
  
    h2.title-common._small {
      font-size: 48px;
      letter-spacing: -1.92px;
    }
  
    h2.title-common._small svg {
      width: 26px;
    }
  
    .content-date svg.vacancies-item__head-ico {
      width: 18px;
    }
  
    .content-contact__text {
      font-size: 20px;
      letter-spacing: -0.6px;
      margin-bottom: 26px;
    }
  
    .content-contact .contacts-item__link-text {
      font-size: 26px;
      letter-spacing: -0.78px;
      padding-left: 10px;
    }
  
    .content-contact .contacts-item__link-ico {
      width: 28px;
      top: 0px;
    }
  
    .content-contact {
      padding: 28px 0 46px;
      margin-top: 53px;
    }
  
    .contentblock p {
      margin-bottom: 20px;
    }
  
    .team__text {
      width: 100%;
      font-size: 22px;
      letter-spacing: -0.66px;
      margin-bottom: 44px;
    }
  
    .team__itemslist {
      -webkit-column-gap: 14px;
      -moz-column-gap: 14px;
      column-gap: 14px;
      row-gap: 20px;
    }
  
    .team-item {
      width: 155px;
    }
  
    img.team-item__img {
      width: 118px;
      height: 118px;
    }
  
    svg.team-item__ico {
      width: 191px;
      top: -79px;
      left: -22px;
    }
  
    .team-item__imya {
      font-size: 28px;
      letter-spacing: -1.4px;
      margin-bottom: 12px;
    }
  
    .team-item__post {
      font-size: 12px;
      letter-spacing: -0.48px;
      margin-bottom: 5px;
    }
  
    .team-item__text {
      font-size: 14px;
      letter-spacing: -0.56px;
    }
  
    h1.title-common._crosses-mob > svg {
      display: none;
    }
  
    span.crosses-mob {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 14px;
    }
  
    .crosses-mob > svg {
      display: block;
    }
  
    h1.title-common._crosses-mob {
      display: block;
    }
  
    svg.button-dwnld {
      width: 27px;
      margin-left: 8px;
    }
  
    .brand {
      margin-top: 20px;
    }
  
    .brand-container__content > .brand-button:nth-child(1) {
      margin-bottom: 50px;
    }
  
    .brand-container {
      margin-bottom: 38px;
    }
  
    span.brand-container__title-text {
      font-size: 38px;
      letter-spacing: -1.14px;
      padding: 0 12px;
    }
  
    img.brand-container__title-line {
      top: 0px;
    }
  
    img.brand-logo__pic {
      top: 2px;
    }
  
    .brand-container__content .title-common.h2._small {
      font-size: 44px;
      letter-spacing: -1.32px;
      gap: 16px;
      margin-top: 28px;
      margin-bottom: 18px;
    }
  
    img.video-img._top {
      width: 90px;
      top: -38px;
    }
  
    .brand-container__content .video-content-wrap._icon {
      margin-top: 52px;
      margin-bottom: 24px;
    }
  
    .brand-button {
      margin-bottom: 52px;
    }
  
    .brand-contact__text {
      font-size: 20px;
      letter-spacing: -0.6px;
      margin-bottom: 26px;
    }
  
    .brand-contact {
      padding: 32px 0 52px;
      margin-bottom: 52px;
    }
  
    .collab {
      margin-top: 24px;
      margin-bottom: 52px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      grid-gap: 0;
      gap: 22px;
    }
  
    .collab-item {
      font-size: 20px;
      letter-spacing: -0.6px;
    }
  
    .brand-presslist {
      margin-top: 24px;
    }
  
    .brand-press__text {
      font-size: 20px;
      letter-spacing: -0.6px;
      margin-bottom: 37px;
    }
  
    .brand-press__socs-title {
      font-size: 20px;
      letter-spacing: -0.6px;
      margin-bottom: 12px;
    }
  
    .brand-press__socs a.hello-container__soc {
      width: 44px;
      height: 44px;
    }
  
    .vacancies-item__line {
      left: 0;
    }
  
    .vacancies {
      margin-top: 56px;
    }
  
    .vacancies-item__line {
      top: -42px;
    }
  
    svg.vacancies-item__head-ico {
      width: 20px;
    }
  
    .vacancies-item__head-text {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  
    .vacancies-item__head {
      gap: 10px;
    }
  
    .content-date .vacancies-item__head {
      gap: 12px;
    }
  
    .vacancies-item__title {
      font-size: 44px;
      letter-spacing: -1.32px;
    }
  
    .vacancies-item__text {
      font-size: 20px;
      letter-spacing: -0.6px;
      margin-bottom: 28px;
    }
  
    .vacancies__itemslist {
      gap: 68px;
    }
  
    .vacancies-item__line + .vacancies-item__text {
      margin-bottom: 16px;
    }
  
    .vacancies__pic {
      width: 506px;
      margin-left: -76px;
      margin-bottom: -285px;
    }
    svg.button-bg {
      -webkit-transform: translate(-50%, -50%) scale(0.65);
      -ms-transform: translate(-50%, -50%) scale(0.65);
      transform: translate(-50%, -50%) scale(0.65);
    }
  
    svg.button-arrow {
      width: 17px;
      margin-left: 12px;
    }
  
    .footer-form .subscribe-field label.error {
      bottom: -12px;
      font-size: 16px;
    }
  
    .modal__pic {
      width: 208px;
      margin-bottom: 8px;
    }
  
    .modal-wrap {
      width: 330px;
    }
  
    .modal__cross {
      top: 21px;
      right: 20px;
      width: 28px;
    }
  
    .modal__title {
      font-size: 40px;
      letter-spacing: -2px;
    }
  
    .modal__text {
      font-size: 22px;
      letter-spacing: -1.1px;
    }
  
    .modal__container {
      padding: 30px;
    }
  
    .footer-form .subscribe-field.error ~ .our-terms {
      top: 12px;
    }
  
    .title-common._big {
      font-size: 56px;
      letter-spacing: -2.8px;
    }
  
    .our-terms {
      font-size: 18px;
      margin-top: 52px;
    }
  }
  