@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type=text], input[type=email], input[type=tel] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

input[type=submit], button {
  cursor: pointer;
}

input[type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input {
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
}
button:disabled {
  background: #242424;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.5em;
}

a {
  text-decoration: none;
}

div, input, textarea, select, button, img, li, i, h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

div, section {
  display: block;
}

ul {
  list-style-type: none;
}

ol {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-moz-placeholder, textarea::-moz-placeholder, input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  color: rgba(0, 0, 0, 0.5);
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, input:focus::-moz-placeholder, textarea:focus::-moz-placeholder, input:focus:-moz-placeholder, textarea:focus:-moz-placeholder, input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea::-webkit-outer-spin-button, textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
button, input, textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: transparent;
}

b, strong {
  font-weight: 700;
}

svg path {
  -webkit-transition: fill 0.3s, stroke 0.3s;
  -o-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  --black: #000;
  --accent: #346aea;
  --white: #fff;
  --gray: #4C5254;
  width: 100%;
  line-height: 1.4;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: normal;
  position: relative;
  overflow-x: hidden;
}

.row {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  height: auto;
  margin: 0 auto;
}

.btn {
  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;
  height: 60px;
  padding: 0 30px;
  background: var(--accent);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 16px;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.btn img {
  float: left;
  margin: auto 10px auto 0;
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn span {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn.white {
  background: var(--white);
  color: var(--accent);
}
.btn.border {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}
.btn.black {
  background: var(--black);
}
.btn.small {
  height: 40px;
  font-size: 16px;
  border-radius: 30px;
}
.btn.medium {
  height: 50px;
  font-size: 16px;
  border-radius: 10px;
}
.btn.disabled, .btn:disabled {
  background: rgba(52, 106, 234, 0.2);
  color: rgba(52, 106, 234, 0.4);
  pointer-events: none;
}

.header {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 101;
  -webkit-transition: padding 0.5s;
  -o-transition: padding 0.5s;
  transition: padding 0.5s;
}
.header__humb {
  display: none;
}
.header__block {
  width: 100%;
  position: relative;
  padding: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.header__block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f1f3ff;
  border-radius: 20px;
  z-index: 0;
  -webkit-transition: width 0.5s, border-radius 0.5s;
  -o-transition: width 0.5s, border-radius 0.5s;
  transition: width 0.5s, border-radius 0.5s;
}
.header__logo {
  float: left;
  margin: auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.header__logo img {
  display: block;
  width: 137px;
  height: auto;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  margin: auto;
  position: relative;
  z-index: 2;
}
.header__nav ul {
  float: left;
}
.header__nav ul li {
  float: left;
  margin-right: 30px;
}
.header__nav ul li:last-child {
  margin: 0;
}
.header__nav ul li a {
  display: block;
  font-size: 14px;
  color: #304484;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 16px;
  height: 46px;
  padding: 0 30px;
  background: #d6e1fb;
  font-weight: 500;
  font-size: 14px;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--accent);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.header__office {
  float: right;
  height: 46px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  padding: 0 8px;
  position: relative;
  z-index: 5;
}
.header__office-image {
  display: block;
  width: 30px;
  height: 30px;
  margin: auto 0;
}
.header__office-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.header__office-box {
  margin: auto 0;
  margin-left: 10px;
}
.header__office-name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--black);
}
.header__office-rating {
  display: block;
  margin-top: 0;
  font-size: 12px;
  color: var(--black);
  opacity: 0.4;
}
.header__office-summ {
  margin: auto 0 auto 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Ubuntu Sans", sans-serif;
  background: var(--accent);
  color: var(--white);
}

.teaser {
  width: 100%;
  height: auto;
  min-height: 800px;
  border-radius: 0 0 30px 30px;
  background: #5F8AF0;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.teaser__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.teaser__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teaser__block {
  width: 90%;
  max-width: 1220px;
  position: relative;
  z-index: 2;
  margin: auto;
}
.teaser__box {
  width: 100%;
  max-width: 550px;
}
.teaser__sub {
  display: block;
  font-size: 20px;
  line-height: 110%;
  color: var(--white);
}
.teaser__title {
  display: block;
  margin-top: 17px;
  font-weight: 600;
  font-size: 74px;
  line-height: 96%;
  color: var(--white);
  font-weight: 400;
}
.teaser__desc {
  display: block;
  margin-top: 24px;
  font-size: 18px;
  color: var(--white);
}
.teaser__desc b {
  font-weight: 500;
}
.teaser__but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.teaser__but .btn {
  margin-right: 15px;
}
.teaser__but .btn:last-child {
  margin: 0;
}

.start {
  width: 100%;
  margin-top: 50px;
}
.start__video {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.start__video-bg {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
}
.start__video-bg img, .start__video-bg video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}
.start__video-open {
  position: absolute;
  width: 86px;
  height: 86px;
  top: calc(50% - 43px);
  left: calc(50% - 43px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.start__video-open::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 38px;
  background: url(../img/icon-play.svg) center/contain no-repeat;
  margin: 24px 0 0 31px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.start__video-info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  color: var(--white);
}
.start__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.start__title {
  display: block;
  padding: 30px 30px 0;
  width: 38%;
}
.start__title-name {
  display: block;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 28px;
  line-height: 120%;
  font-weight: 600;
}
.start__title-desc {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  line-height: 150%;
}
.start__info {
  float: right;
  margin-left: auto;
  margin-top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5px;
  width: 60%;
  position: relative;
  z-index: 2;
}
.start__info-item {
  float: left;
  width: calc(33.3333% - 10px);
  margin: 0 5px;
  padding: 25px;
  background: var(--accent);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 260px;
  border-radius: 32px;
}
.start__info-name {
  display: block;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
}
.start__info-desc {
  padding-top: 20px;
  margin-top: auto;
  font-size: 18px;
}

.slick-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
.slick-list {
  float: left;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.slick-track {
  float: left;
  width: 100%;
  height: auto;
}

.about {
  width: 100%;
  margin-top: 40px;
  background: #f2f2f2;
  border-radius: 24px;
  padding: 70px 80px;
}
.about__block {
  width: 100%;
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 20px;
}
.about__item:first-child {
  margin: 0;
}
.about__item:nth-child(2n) .about__item-base {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.about__item:nth-child(2n) .about__item-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.about__item-base {
  float: left;
  width: 57%;
  background: var(--white);
  padding: 50px 70px;
  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;
  border-radius: 32px;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}
.about__item-sub {
  margin-right: auto;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 30px;
  background: rgba(52, 106, 234, 0.1);
  color: var(--accent);
  font-weight: 500;
  font-size: 16px;
}
.about__item-name {
  display: block;
  font-family: "Ubuntu Sans", sans-serif;
  margin-top: 15px;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}
.about__item-desc {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  line-height: 140%;
  opacity: 0.6;
}
.about__item-but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.about__item-image {
  float: left;
  width: 43%;
}
.about__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}

.games {
  width: 100%;
  margin-top: 40px;
  padding: 55px;
  border-radius: 24px;
  background: #F2F2F2;
  overflow: hidden;
}
.games__slider {
  width: calc(100% + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.games__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.games__slider .slick-list {
  overflow: visible !important;
}
.games__item {
  float: left;
  width: calc(25% - 10px);
  margin: 0 5px;
  background: var(--white);
  border-radius: 32px;
}
.games__info {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.games__info-image {
  display: block;
}
.games__info-image img {
  display: block;
  height: 89px;
  width: auto;
}
.games__info-title {
  display: block;
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--accent);
}
.games__info-desc {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 140%;
}
.games__info-scroll {
  margin-top: auto;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 600;
}
.games__info-scroll::before, .games__info-scroll::after {
  content: "";
  float: left;
  width: 10px;
  height: 10px;
  margin: auto 0;
  background: url(../img/icon-arrow2-black.svg) center/contain no-repeat;
}
.games__info-scroll::before {
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.games__info-scroll::after {
  margin-left: 10px;
}
.games__base {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
}
.games__image {
  display: block;
  width: 100%;
  height: 380px;
}
.games__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.games__box {
  margin-top: 10px;
  padding: 10px;
}
.games__sub {
  display: block;
  font-size: 13px;
  line-height: 110%;
  color: var(--accent);
}
.games__name {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
  color: var(--black);
}
.games__name a {
  color: var(--black);
}
.games__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 10px;
  font-size: 14px;
  line-height: 110%;
}
.games__list li {
  float: left;
  margin-right: 20px;
  position: relative;
  white-space: nowrap;
}
.games__list li:last-child {
  margin: 0;
}
.games__list li:last-child::before {
  display: none;
}
.games__list li::before {
  content: "/";
  position: absolute;
  width: 20px;
  left: 100%;
  top: 0;
  opacity: 0.4;
  text-align: center;
}
.games__but {
  margin-top: auto;
  padding-top: 10px;
}
.games__but .btn {
  border-radius: 50px;
}

.rules {
  width: 100%;
  margin-top: 40px;
  padding: 40px;
  background: #F2F2F2;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.rules__aside {
  float: left;
  width: 36%;
}
.rules__aside-scroll {
  width: 100%;
}
.rules__info {
  width: 100%;
  padding: 30px;
  background: var(--white);
  border-radius: 32px;
  position: relative;
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rules__info-name {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  font-family: "Ubuntu Sans", sans-serif;
}
.rules__info-desc {
  margin-top: auto;
  padding-top: 20px;
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.rules__info-image {
  position: absolute;
  width: 210px;
  height: auto;
  right: 0;
  bottom: 0;
}
.rules__info-image img {
  display: block;
  width: 100%;
  height: auto;
}
.rules__block {
  float: right;
  margin-left: auto;
  width: calc(64% - 15px);
}
.rules__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: 15px;
  padding: 10px;
  background: var(--white);
  border-radius: 32px;
}
.rules__item:first-child {
  margin: 0;
}
.rules__item-base {
  float: left;
  width: 48%;
  padding: 20px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rules__item-num {
  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: 60px;
  height: 35px;
  border-radius: 30px;
  background: rgba(52, 106, 234, 0.1);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--accent);
}
.rules__item-name {
  display: block;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.rules__item-desc {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 16px;
  line-height: 130%;
}
.rules__item-image {
  float: right;
  margin-left: auto;
  width: 48%;
  height: 300px;
  position: relative;
}
.rules__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.winners {
  width: 100%;
  margin-top: 40px;
  padding: 55px;
  border-radius: 24px;
  background: #F2F2F2;
  overflow: hidden;
}
.winners__slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.winners__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.winners__slider .slick-list {
  overflow: visible !important;
}
.winners__item {
  float: left;
  width: calc(33.3333% - 10px);
  margin: 0 5px;
  background: var(--white);
  border-radius: 32px;
}
.winners__info {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.winners__info-title {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--accent);
}
.winners__info-scroll {
  margin-top: auto;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 600;
}
.winners__info-scroll::before, .winners__info-scroll::after {
  content: "";
  float: left;
  width: 10px;
  height: 10px;
  margin: auto 0;
  background: url(../img/icon-arrow2-black.svg) center/contain no-repeat;
}
.winners__info-scroll::before {
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.winners__info-scroll::after {
  margin-left: 10px;
}
.winners__base {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 180px 25px 30px;
  position: relative;
}
.winners__name {
  display: block;
  font-weight: 600;
  font-size: 28px;
  line-height: 110%;
  font-family: "Ubuntu Sans", sans-serif;
}
.winners__desc {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 120%;
}
.winners__win {
  padding-top: 20px;
  margin-top: auto;
  font-size: 18px;
  font-family: "Ubuntu Sans", sans-serif;
}
.winners__win p {
  font-weight: 600;
  padding-top: 5px;
}
.winners__image {
  position: absolute;
  width: 160px;
  height: calc(100% - 20px);
  top: 10px;
  right: 10px;
}
.winners__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}

.reviews {
  width: 100%;
  margin-top: 40px;
  padding: 50px;
  border-radius: 24px;
  background: #F2F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.reviews__block {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.reviews__item {
  float: left;
  width: calc(50% - 10px);
  margin: 0 10px 10px 0;
  min-height: 325px;
  height: auto;
  background: var(--white);
  border-radius: 32px;
  padding: 40px 40px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reviews__item-cap {
  display: block;
  position: relative;
  padding-right: 100px;
}
.reviews__item-name {
  display: block;
  font-size: 16px;
  line-height: 110%;
  font-weight: 600;
  font-family: "Ubuntu Sans", sans-serif;
}
.reviews__item-date {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 110%;
  opacity: 0.7;
}
.reviews__item-grade {
  position: absolute;
  right: -40px;
  top: calc(50% - 16px);
  background: #f1f3ff;
  border-radius: 30px 0 0 30px;
  padding: 10px 10px 10px 16px;
}
.reviews__item-grade li {
  float: left;
  margin-right: 8px;
}
.reviews__item-grade li:last-child {
  margin: 0;
}
.reviews__item-grade li img {
  display: block;
  width: 12px;
  height: auto;
}
.reviews__item-text {
  display: block;
  margin-top: 25px;
  font-size: 16px;
  line-height: 140%;
  font-family: "Ubuntu Sans", sans-serif;
}
.reviews__item-text p {
  display: block;
  margin-top: 10px;
}
.reviews__item-text p:first-child {
  margin: 0;
}
.reviews__item-desc {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  font-family: "Ubuntu Sans", sans-serif;
}
.reviews__aside {
  float: left;
  margin-left: auto;
  width: 30%;
}
.reviews__aside-scroll {
  width: 100%;
}
.reviews__info {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  padding: 30px;
}
.reviews__info-image {
  display: block;
}
.reviews__info-image img {
  display: block;
  width: 230px;
  height: auto;
}
.reviews__info-title {
  display: block;
  margin-top: 25px;
  font-size: 28px;
  font-weight: 600;
  font-family: "Ubuntu Sans", sans-serif;
  line-height: 120%;
}
.reviews__info-desc {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  line-height: 140%;
}
.reviews__info-but {
  display: block;
  margin-top: 25px;
}

.faq {
  width: 100%;
  margin-top: 40px;
  padding: 40px;
  border-radius: 24px;
  background: #F2F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.faq__base {
  float: left;
  width: calc(70% - 15px);
}
.faq__aside {
  float: right;
  margin-left: auto;
  width: 30%;
}
.faq__info {
  display: block;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
}
.faq__info-name {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  font-family: "Ubuntu Sans", sans-serif;
}
.faq__info-but {
  margin-top: 50px;
}
.faq__item {
  display: block;
  margin-top: 15px;
  border-radius: 24px;
  background: var(--white);
  position: relative;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.faq__item:first-child {
  margin: 0;
}
.faq__item-cap {
  width: 100%;
  padding: 20px 100px 20px 30px;
  cursor: pointer;
}
.faq__item-cap.open .faq__item-but::before {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}
.faq__item-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.faq__item-but {
  position: absolute;
  width: 45px;
  height: calc(100% - 40px);
  top: 20px;
  right: 20px;
  background: #F1F3FF;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.faq__item-but::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/icon-arrow3-accent.svg) center/12px auto no-repeat;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.faq__item-block {
  display: none;
  padding: 0 100px 30px 30px;
  margin-top: -10px;
}
.faq__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.text.white {
  color: var(--white);
}
.text.white a {
  color: var(--white);
}
.text *:first-child {
  margin-top: 0;
}
.text > div {
  margin-top: 30px;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  display: block;
  font-weight: 500;
  margin-top: 25px;
}
.text h1 {
  font-size: 40px;
}
.text h2 {
  font-size: 36px;
}
.text h3 {
  font-size: 30px;
}
.text h4 {
  font-size: 24px;
}
.text h5 {
  font-size: 20px;
}
.text h6 {
  font-size: 16px;
}
.text iframe {
  border-radius: 20px;
  margin-top: 20px;
}
.text a {
  color: var(--black);
  text-decoration: underline;
}
.text b, .text strong {
  font-weight: 400;
}
.text img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-top: 20px;
  border-radius: 6px;
}
.text p {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  line-height: 140%;
}
.text ul {
  display: block;
  margin-top: 15px;
}
.text ul li {
  display: block;
  padding-left: 20px;
  font-size: 16px;
  line-height: 140%;
  position: relative;
  margin-top: 8px;
}
.text ul li:first-child {
  margin: 0;
}
.text ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 9px;
  background: var(--accent);
  border-radius: 50%;
}
.text ol {
  display: block;
  width: calc(100% - 15px);
  margin-top: 15px;
  margin-left: 15px;
}
.text ol li {
  font-size: 16px;
  line-height: 140%;
  margin-top: 4px;
  position: relative;
}
.text ol li:first-child {
  margin: 0;
}
.text ol ol, .text ol ul {
  margin-top: 10px !important;
}

.contact {
  width: 100%;
  margin-top: 30px;
  background: #5F8AF0;
  border-radius: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 90px 50px 30px;
}
.contact__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.contact__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__block {
  width: 100%;
  max-width: 525px;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 65px;
  padding: 75px 105px;
  margin: 0 auto;
}
.contact__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.contact__logo-icon {
  float: left;
  width: 35px;
  height: auto;
}
.contact__logo-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.contact__logo-base {
  float: left;
  margin: auto 0 auto 20px;
}
.contact__logo-base img {
  display: block;
  width: 190px;
  height: auto;
}
.contact__list {
  display: block;
  margin-top: 25px;
}
.contact__list-item {
  display: block;
  margin-top: 25px;
}
.contact__list-item:first-child {
  margin: 0;
}
.contact__list-name {
  text-align: center;
  display: block;
  color: var(--black);
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 28px;
  line-height: 105%;
  font-weight: 600;
}
.contact__list-desc {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: var(--black);
}
.contact__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 25px -3px 0;
  width: calc(100% + 6px);
}
.contact__soc li {
  float: left;
  margin: 0 3px;
  width: calc(25% - 6px);
}
.contact__soc li a {
  height: 40px;
  border: 1px solid rgba(115, 130, 149, 0.2);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}
.contact__soc li a img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
}
.contact__but {
  display: block;
  margin-top: 25px;
}

.footer {
  width: 100%;
  margin-top: 30px;
  background: #F2F2F2;
  padding: 25px 0;
}
.footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.footer__author {
  float: left;
  width: auto;
  height: auto;
  font-family: "Ubuntu Sans", sans-serif;
}
.footer__author img {
  display: block;
  width: 125px;
  height: auto;
}
.footer__author p {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-size: 13px;
}
.footer__info {
  margin: auto 0 auto auto;
}
.footer__info-item {
  float: left;
  margin-right: 40px;
  font-size: 13px;
  font-family: "Ubuntu Sans", sans-serif;
}
.footer__info-item:last-child {
  margin: 0;
}
.footer__info-item a {
  color: var(--black);
}

.game {
  width: 100%;
  min-height: 810px;
  position: relative;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.game__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.game__bg > img, .game__bg > video, .game__bg > iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__block {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 0 20px;
  max-height: 100%;
  pointer-events: none;
}
.game__block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  height: 100%;
}
.game__aside {
  float: right;
  margin-left: auto;
  margin-top: auto;
  width: 320px;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
}
.game__box {
  display: block;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  margin-top: 10px;
}
.game__box:first-child {
  margin: 0;
}
.game__box-sub {
  display: block;
  font-size: 13px;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__box-name {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 600;
}
.game__box-name:first-child {
  margin: 0;
}
.game__box-title {
  display: block;
  font-weight: 600;
  font-size: 24px;
  font-family: "Ubuntu Sans", sans-serif;
  line-height: 120%;
}
.game__box-desc {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 135%;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__box-desc:first-child {
  margin: 0;
}
.game__box-info {
  display: block;
  margin-top: 15px;
}
.game__box-info:first-child {
  margin: 0;
}
.game__box-info_name {
  display: block;
  font-weight: 600;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.game__box-info_desc {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 135%;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__box-roll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__box-roll:first-child {
  margin: 0;
}
.game__box-roll_item {
  float: left;
  width: 49%;
}
.game__box-roll_name {
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.game__box-roll_desc {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}
.game__box-list {
  display: block;
  margin-top: 10px;
}
.game__box-list:first-child {
  margin: 0;
}
.game__box-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}
.game__box-list li:first-child {
  margin: 0;
}
.game__box-list li p {
  float: left;
  white-space: nowrap;
  font-size: 14px;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__box-list li p b {
  font-weight: 500;
  color: var(--accent);
}
.game__box-list li i {
  float: left;
  margin: auto 5px;
  width: 100%;
  height: 1px;
  background: var(--black);
  opacity: 0.1;
}
.game__box-but {
  display: block;
  margin-top: 15px;
}
.game__notific {
  float: left;
  width: 320px;
  position: relative;
  pointer-events: auto;
}
.game__notific-item {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  background: var(--white);
  width: 100%;
  height: auto;
  padding: 15px;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.game__notific-item.hide {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}
.game__notific-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.game__notific-image {
  float: left;
  width: 35px;
  height: 35px;
}
.game__notific-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.game__notific-box {
  float: left;
  margin: auto 0 auto 10px;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__notific-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
}
.game__notific-desc {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}
.game__notific-date {
  display: block;
  margin-top: 5px;
  text-align: right;
  opacity: 0.5;
  font-size: 11px;
  font-family: "Ubuntu Sans", sans-serif;
}
.game__dispute {
  display: block;
  font-family: "Ubuntu Sans", sans-serif;
  pointer-events: auto;
}
.game__dispute-sub {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
}
.game__dispute-name {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}
.game__dispute-but {
  display: block;
  margin-top: 10px;
}
.game__dispute-but .btn {
  height: 36px;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--black);
  font-size: 14px;
}
.game__rates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: "Ubuntu Sans", sans-serif;
  pointer-events: auto;
}
.game__rates-name {
  float: left;
  font-size: 18px;
  font-weight: 600;
}
.game__rates-num {
  margin: auto 0 auto auto;
  height: 20px;
  width: 40px;
  background: var(--accent);
  border-radius: 30px;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.game__prize {
  font-family: "Ubuntu Sans", sans-serif;
  width: 100%;
  display: block;
}
.game__prize-sub {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.game__prize-name {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
}
.game__prize-partic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
  font-size: 14px;
}
.game__prize-partic_name {
  float: left;
}
.game__prize-partic_count {
  float: right;
  margin: auto 0 auto auto;
  font-weight: 500;
}
.game__start {
  position: absolute;
  width: 655px;
  height: auto;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: auto;
}
.game__start-title {
  display: block;
  font-weight: 600;
  font-size: 64px;
  font-family: "Ubuntu Sans", sans-serif;
  text-align: center;
  color: var(--white);
}
.game__start-timer {
  width: 100%;
  margin-top: 30px;
  border-radius: 180px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  padding: 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.game__start-circle {
  float: left;
  width: auto;
  position: relative;
}
.game__start-circle svg {
  display: block;
  width: 120px;
  height: 120px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.game__start-circle svg circle {
  fill: none;
  stroke: #e5e5e5;
  stroke-width: 2;
}
.game__start-progress {
  stroke: #3c6eff !important;
  stroke-dasharray: 364;
  stroke-dashoffset: 364;
  stroke-linecap: round;
  -webkit-transition: stroke-dashoffset 1s linear;
  -o-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
}
.game__start-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  font-size: 60px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}
.game__start-value span {
  display: block;
  margin-top: -10px;
}
.game__start-value small {
  display: block;
  margin-top: -10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.game__play {
  display: block;
  font-family: "Ubuntu Sans", sans-serif;
  pointer-events: auto;
}
.game__play-title {
  display: block;
  padding-right: 30px;
  background: url(../img/icon-play-title.svg) top right no-repeat;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}
.game__play-desc {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
}
.game__play-image {
  display: block;
  margin-top: 15px;
}
.game__play-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.game__play-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  border-radius: 10px;
  background: rgba(52, 106, 234, 0.1);
  padding: 10px;
  font-weight: 600;
  font-size: 24px;
  color: var(--accent);
}
.game__play-prize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  border-radius: 10px;
  border: 1px solid #f0f0f4;
  line-height: 110%;
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
}
.game__play-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
}
.game__found {
  display: block;
  margin-top: 15px;
  pointer-events: auto;
}

.cap {
  width: 100%;
  height: 350px;
  padding: 70px 50px 0;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cap__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.cap__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cap__block {
  display: block;
  width: 100%;
  margin: auto 0;
  position: relative;
  z-index: 2;
}
.cap__title {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 74px;
  line-height: 96%;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--white);
}

.office {
  width: 100%;
  margin-top: 50px;
}
.office__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.office__nav-name {
  display: none;
}
.office__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.office__nav-list li {
  float: left;
  margin-right: 55px;
}
.office__nav-list li:last-child {
  margin: 0;
}
.office__nav-list li.active a {
  font-weight: 600;
}
.office__nav-list li a {
  display: block;
  font-size: 20px;
  font-family: "Ubuntu Sans", sans-serif;
  color: var(--black);
}
.office__block {
  width: 100%;
  margin-top: 35px;
  padding: 70px 80px;
  border-radius: 24px;
  background: #F2F2F2;
}
.office__history {
  width: 100%;
}
.office__history-cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
}
.office__history-cap p {
  float: left;
  font-weight: 500;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  color: rgba(0, 0, 0, 0.7);
}
.office__history-cap p:nth-child(1) {
  width: 20%;
}
.office__history-cap p:nth-child(2) {
  width: 11%;
}
.office__history-cap p:nth-child(3) {
  width: 11%;
}
.office__history-cap p:nth-child(4) {
  width: 11%;
}
.office__history-cap p:nth-child(5) {
  width: 10%;
}
.office__history-cap p:nth-child(6) {
  width: 15%;
}
.office__history-cap p:nth-child(7) {
  width: 20%;
}
.office__history-block {
  width: 100%;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
.office__history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  border-top: 1px solid #E6E6EA;
  min-height: 50px;
  padding: 5px 0;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
}
.office__history-item:first-child {
  border: 0;
}
.office__history-clear {
  display: none;
}
.office__history-name {
  float: left;
  width: 20%;
  padding: 0 12px;
  margin: auto 0;
}
.office__history-date {
  float: left;
  width: 11%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-partic {
  float: left;
  width: 11%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-result {
  float: left;
  width: 11%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-priz {
  float: left;
  width: 10%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-rates {
  float: left;
  width: 15%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-rates a {
  color: var(--accent);
}
.office__history-price {
  float: left;
  width: 18%;
  padding-right: 10px;
  margin: auto 0;
}
.office__history-link {
  float: left;
  width: 4%;
  margin: auto 0;
}
.office__history-link a {
  display: block;
  width: 100%;
  height: 30px;
  font-size: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.office__history-link a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/icon-arrow2-black.svg) left center no-repeat;
}
.office__transact {
  width: 100%;
}
.office__transact-cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
}
.office__transact-cap p {
  float: left;
  font-weight: 500;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
}
.office__transact-cap p:nth-child(1) {
  width: 12%;
  padding-left: 3px;
}
.office__transact-cap p:nth-child(2) {
  width: 22%;
}
.office__transact-cap p:nth-child(3) {
  width: 22%;
}
.office__transact-cap p:nth-child(4) {
  width: 22%;
}
.office__transact-cap p:nth-child(5) {
  width: 22%;
}
.office__transact-block {
  width: 100%;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
.office__transact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  border-top: 1px solid #E6E6EA;
  min-height: 50px;
  padding: 5px 0;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
}
.office__transact-item:first-child {
  border: 0;
}
.office__transact-summ {
  float: left;
  width: 12%;
  padding: 0 12px;
  margin: auto 0;
}
.office__transact-status {
  float: left;
  width: 22%;
  padding-right: 10px;
  margin: auto 0;
}
.office__transact-purpose {
  float: left;
  width: 22%;
  padding-right: 10px;
  margin: auto 0;
}
.office__transact-date {
  float: left;
  width: 22%;
  padding-right: 10px;
  margin: auto 0;
}
.office__transact-source {
  float: left;
  width: 22%;
  padding-right: 10px;
  margin: auto 0;
}
.office__balance {
  width: 100%;
  max-width: 725px;
  margin: 0 auto;
}
.office__balance + .office__balance {
  margin-top: 60px;
}
.office__balance .faq__base {
  width: 100%;
  float: none;
  margin-top: 15px;
}
.office__balance-title {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  line-height: 125%;
  font-family: "Ubuntu Sans", sans-serif;
}
.office__balance-desc {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
}
.office__balance-block {
  width: calc(100% + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 5px -5px 0;
}
.office__balance-item {
  float: left;
  width: calc(100% - 10px);
  margin: 10px 5px 0;
}
.office__balance-item.medium {
  width: calc(50% - 10px);
}
.office__balance-item .btn {
  width: 100%;
}
.office__balance-item .textarea textarea {
  height: 150px;
}
.office__balance-phone {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  padding: 0 20px;
}
.office__balance-phone_number {
  float: left;
  margin: auto 0;
  font-size: 16px;
  color: var(--black);
}
.office__balance-phone_copy {
  float: right;
  margin: auto -10px auto auto;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.office__balance-phone_copy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/icon-check-history.svg) center/18px auto no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.office__balance-phone_copy.copied::before {
  opacity: 1;
}
.office__balance-phone_copy.copied img {
  opacity: 0 !important;
}
.office__balance-phone_copy img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.office__balance-bank {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  padding: 0 20px;
}
.office__balance-bank_name {
  float: left;
  margin: auto 0;
  font-size: 16px;
  color: var(--black);
  opacity: 0.8;
}
.office__balance-bank_desc {
  float: left;
  margin: auto 0 auto auto;
  font-size: 16px;
  color: var(--black);
}
.office__balance-soc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0 0;
}
.office__balance-soc li {
  float: left;
  margin: 0 3px;
}
.office__balance-soc li a {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--white);
  font-size: 13px;
  color: var(--black);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.office__balance-soc li a img {
  float: left;
  margin: auto 10px auto 0;
  width: auto;
  height: auto;
}

.file {
  width: 100%;
  position: relative;
}
.file.active p i {
  display: block;
}
.file input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.file p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 0 20px;
  font-family: "Ubuntu Sans", sans-serif;
}
.file p:has(img)::before {
  display: none;
}
.file p::before {
  content: "";
  display: block;
  width: 15px;
  min-width: 15px;
  height: 18px;
  margin: auto 10px auto 0;
  background: url(../img/icon-file.svg) center/contain no-repeat;
}
.file p img {
  display: block;
  width: 15px;
  min-width: 15px;
  height: auto;
  margin: auto 10px auto 0;
}
.file p span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.file p i {
  display: none;
  width: 30px;
  height: 30px;
  background: url(../img/icon-close.svg) right center/10px auto no-repeat;
  margin-left: auto;
  position: relative;
  z-index: 5;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input {
  width: 100%;
  position: relative;
}
.input input {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 18px;
  color: #000;
  position: relative;
  font-size: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  line-height: 45px;
  padding: 14px 10px 0 18px;
  z-index: 1;
}
.input input[name=password] + p + i {
  position: absolute;
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  right: 15px;
  background: url(../img/icon-pass-black.svg) center no-repeat;
  opacity: 0.4;
  z-index: 5;
  cursor: pointer;
}
.input input[name=password] + p + i.active {
  background-image: url(../img/icon-pass-accent.svg);
  opacity: 1;
}
.input input::-webkit-input-placeholder {
  font-size: 0;
}
.input input::-moz-placeholder {
  font-size: 0;
}
.input input:-ms-input-placeholder {
  font-size: 0;
}
.input input::-ms-input-placeholder {
  font-size: 0;
}
.input input::placeholder {
  font-size: 0;
}
.input input:not(:-moz-placeholder-shown) ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.input input:not(:-ms-input-placeholder) ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.input input:not(:placeholder-shown) ~ p, .input input:focus ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.input input:focus ~ p {
  color: var(--accent);
}
.input input:-moz-read-only {
  pointer-events: none;
  background: transparent;
}
.input input:read-only {
  pointer-events: none;
  background: transparent;
}
.input p {
  position: absolute;
  z-index: 3;
  left: 18px;
  top: 0;
  margin-top: 20px;
  pointer-events: none;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  font-family: "Ubuntu Sans", sans-serif;
  overflow: hidden;
  max-width: 65%;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-transition: color 0.3s, font-size 0.3s, margin 0.3s;
  -o-transition: color 0.3s, font-size 0.3s, margin 0.3s;
  transition: color 0.3s, font-size 0.3s, margin 0.3s;
}

.textarea {
  width: 100%;
  position: relative;
}
.textarea::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  left: 1px;
  top: 1px;
  height: 25px;
  background: var(--white);
  border-radius: 18px 18px 0 0;
  z-index: 2;
  pointer-events: none;
}
.textarea:has(textarea:-moz-read-only)::before {
  background: transparent;
}
.textarea:has(textarea:read-only)::before {
  background: transparent;
}
.textarea textarea {
  display: block;
  width: 100%;
  height: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 18px;
  color: #000;
  position: relative;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  padding: 28px 10px 10px 18px;
  z-index: 1;
}
.textarea textarea::-webkit-input-placeholder {
  font-size: 0;
}
.textarea textarea::-moz-placeholder {
  font-size: 0;
}
.textarea textarea:-ms-input-placeholder {
  font-size: 0;
}
.textarea textarea::-ms-input-placeholder {
  font-size: 0;
}
.textarea textarea::placeholder {
  font-size: 0;
}
.textarea textarea:not(:-moz-placeholder-shown) ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.textarea textarea:not(:-ms-input-placeholder) ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.textarea textarea:not(:placeholder-shown) ~ p, .textarea textarea:focus ~ p {
  font-size: 11px;
  margin: 13px 0 0;
}
.textarea textarea:focus ~ p {
  color: var(--accent);
}
.textarea textarea:-moz-read-only {
  pointer-events: none;
  background: transparent;
}
.textarea textarea:read-only {
  pointer-events: none;
  background: transparent;
}
.textarea textarea:-moz-read-only ~ p {
  background: transparent;
}
.textarea textarea:read-only ~ p {
  background: transparent;
}
.textarea p {
  position: absolute;
  z-index: 3;
  left: 18px;
  top: 0;
  margin-top: 20px;
  font-family: "Ubuntu Sans", sans-serif;
  pointer-events: none;
  font-size: 16px;
  background: var(--white);
  color: rgba(0, 0, 0, 0.4);
  -webkit-transition: color 0.3s, font-size 0.3s, margin 0.3s;
  -o-transition: color 0.3s, font-size 0.3s, margin 0.3s;
  transition: color 0.3s, font-size 0.3s, margin 0.3s;
}

.open-modal {
  cursor: pointer;
}
.open-image, .open-video {
  cursor: pointer;
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 115;
  font-family: "Ubuntu Sans", sans-serif;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  -o-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}
.modal.hide {
  visibility: hidden;
  opacity: 0;
}
.modal.hide .modal__cot {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
}
.modal.hide .modal__cart {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(28, 42, 54, 0.4);
}
.modal__video {
  display: block;
  width: 100vw;
  height: auto;
  max-width: 1200px;
  position: relative;
}
.modal__video::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 60%;
}
.modal__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.modal__cot {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.modal__cot.image {
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal__cot.image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 98vw;
  margin: auto;
}
.modal__close {
  position: absolute;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 15px;
  right: 20px;
  z-index: 2;
  border-radius: 50%;
  background: var(--white);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal__close::before {
  content: "";
  float: left;
  width: 8px;
  height: 8px;
  background: url(../img/icon-close.svg) center/contain no-repeat;
  opacity: 1;
  margin: auto;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal__block {
  width: 100vw;
  height: auto;
  max-width: 510px;
  max-height: 100vh;
  background: #F2F2F2;
  position: relative;
  padding: 35px 30px;
  border-radius: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal__block.image {
  max-width: 820px;
  background: var(--white);
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.modal__block.image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal__title {
  width: 100%;
  text-align: center;
}
.modal__title.left {
  text-align: left;
}
.modal__title-name {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: 28px;
  line-height: 125%;
  font-weight: 600;
}
.modal__title-name:first-child {
  margin: 0;
}
.modal__title-name i {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-bottom: -3px;
  background: url(../img/icon-prev.svg) left center/14px auto no-repeat;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal__title-desc {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 140%;
}
.modal__form {
  width: calc(100% + 10px);
  margin: 5px -5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.modal__form .input, .modal__form .textarea, .modal__form .file {
  float: left;
  width: calc(100% - 10px);
  margin: 10px 5px 0;
}
.modal__form .input.medium, .modal__form .textarea.medium, .modal__form .file.medium {
  width: calc(50% - 10px);
}
.modal__form .input.small, .modal__form .textarea.small, .modal__form .file.small {
  width: calc(33.3333% - 10px);
}
.modal__form .file p {
  background: var(--white);
}
.modal__form .textarea textarea {
  height: 150px;
}
.modal__but {
  width: calc(100% - 10px);
  margin: 15px 5px 0;
}
.modal__but.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__but.center .btn {
  width: auto;
}
.modal__but .btn {
  width: 100%;
  margin-top: 10px;
}
.modal__but .btn:first-child {
  margin: 0;
}
.modal__inter {
  width: 100%;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal__inter .btn {
  width: calc(100% - 10px);
  margin: 0 5px;
  border-color: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-weight: 500;
  color: var(--black);
  font-size: 14px;
}
.modal__policy {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  line-height: 130%;
}
.modal__policy a {
  color: var(--black);
  text-decoration: underline;
}
.modal__pay {
  width: calc(100% + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 20px -5px 0;
}
.modal__pay-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 10px);
  margin: 0 5px;
  background: var(--black);
  border-radius: 10px;
  padding: 20px;
  color: var(--white);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.modal__pay-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
}
.modal__pay-desc {
  display: block;
  padding-top: 30px;
  margin-top: auto;
  font-size: 16px;
}
.modal .office__balance-phone {
  height: 45px;
  border-radius: 10px;
}
.modal .office__balance-bank {
  height: 45px;
  border-radius: 10px;
}
.modal .office__balance-item .file p {
  height: 45px;
  border-radius: 10px;
  background: var(--white);
}
.modal__balance {
  width: 100%;
  margin-top: 20px;
}
.modal__balance li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}
.modal__balance li:first-child {
  margin: 0;
}
.modal__balance li p:last-child {
  font-weight: 500;
}
.modal__rates {
  margin-top: 10px;
}
.modal__rates-item {
  display: block;
  margin-top: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
}
.modal__rates-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: -10px 0 0;
}
.modal__rates-info li {
  float: left;
  margin: 10px 10px 0 0;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  border-radius: 7px;
  background: rgba(52, 106, 234, 0.1);
}
.modal__rates-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
  font-size: 14px;
  margin-top: 12px;
}
.modal__rates-list:first-child {
  margin: 0;
}
.modal__rates-list li {
  float: left;
}
.modal__rates-list li::before {
  content: "/";
  padding: 0 10px;
  opacity: 0.3;
}
.modal__rates-list li:first-child::before {
  display: none;
}
.modal__rates-title {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}
.modal__rates-but {
  width: calc(100% + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px -5px 0;
}
.modal__rates-but .btn {
  width: calc(100% - 10px);
  margin: 0 5px;
}
.modal__rates-but .btn.border {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--black);
}
.modal__rates-sub {
  width: 100%;
  height: 35px;
  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;
  border-radius: 30px;
  background: #f1f3ff;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
}
.modal__rates-sub:not(.active) {
  color: #304484;
}
.modal__rates-balance {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 10px;
}
.modal__rates-balance_name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin: auto 0;
}
.modal__rates-balance_num {
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 30px;
  background: #f1f3ff;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
  margin-left: auto;
}
.modal__rates-balance_num:not(.active) {
  color: #304484;
}

.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 14px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  z-index: 9999;
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cookie.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.cookie__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cookie__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie__text a:hover {
  text-decoration: none;
}
.cookie__btn {
  -ms-flex-negative: 0;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  padding: 0 20px;
}

@media screen and (max-width: 1399px) and (min-width: 1024px) {
  .row {
    padding: 0 15px;
  }

  .header__nav ul li {
    margin-right: 20px;
  }
  .header__office-box {
    display: none;
  }
  .header__office-summ {
    margin-left: 10px;
  }

  .start__title-name {
    font-size: 24px;
  }
  .start__title-desc {
    font-size: 16px;
  }
  .start__info {
    width: 62%;
  }
  .start__info-item {
    padding: 20px;
  }
  .start__info-name {
    font-size: 36px;
  }
  .start__info-desc {
    font-size: 16px;
  }

  .about {
    padding: 40px;
  }
  .about__item-base {
    padding: 40px 50px;
  }

  .games {
    padding: 40px;
  }

  .rules {
    padding: 30px;
  }
  .rules__info-desc {
    width: 100%;
  }
  .rules__info-image img {
    display: none;
  }
  .rules__item-base {
    width: 50%;
    padding: 10px;
  }

  .winners {
    padding: 40px;
  }

  .reviews {
    padding: 40px;
  }
  .reviews__aside {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .reviews__info-image {
    display: none;
  }
  .reviews__info-title {
    margin-top: 0;
  }
  .reviews__block {
    width: calc(100% + 10px);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 10px;
  }

  .faq__block {
    padding: 30px;
  }
  .faq__info {
    padding: 20px;
  }
  .faq__info-name {
    font-size: 26px;
  }
  .faq__info-but {
    margin-top: 40px;
  }

  .game__notific {
    width: 300px;
  }
  .game__aside {
    width: 300px;
  }
  .game__start {
    width: 360px;
  }
  .game__start-title {
    font-size: 32px;
  }
  .game__start-timer {
    margin-top: 20px;
    padding: 12px 20px;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 80px;
  }
  .game__start-circle {
    margin: 20px;
  }

  .cap__title {
    font-size: 64px;
  }

  .office__nav-list li {
    margin-right: 45px;
  }
  .office__nav-list li a {
    font-size: 18px;
  }
  .office__block {
    padding: 30px 40px;
  }
  .office__history-cap p {
    font-size: 14px;
  }
  .office__history-item {
    font-size: 14px;
  }
  .office__transact-cap p {
    font-size: 14px;
  }
  .office__transact-item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .header.fixed {
    padding: 0;
  }
  .header.fixed .header__block::before {
    width: 100vw;
    border-radius: 0;
  }
  .header__nav ul li a:hover {
    opacity: 0.6;
  }

  .btn:hover {
    opacity: 0.6;
  }

  .start__video-open:hover {
    background: var(--white);
  }
  .start__video-open:hover::before {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .contact__soc li a:hover {
    border-color: var(--accent);
  }

  .office__nav-list li a:hover {
    opacity: 0.7;
  }
  .office__history-link a:hover {
    opacity: 0.6;
  }
  .office__balance-phone_copy:hover img {
    opacity: 0.6;
  }
  .office__balance-soc li a:hover {
    opacity: 0.6;
  }

  .file p i:hover {
    opacity: 0.6;
  }

  .modal__close:hover {
    opacity: 0.6;
  }
  .modal__title-name i:hover {
    opacity: 0.6;
  }
  .modal__pay-item:hover {
    background: var(--accent);
  }
}
@media screen and (max-width: 1023px) {
  .row {
    padding: 0 15px;
  }

  .btn {
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
  }
  .btn img {
    max-width: 18px;
    max-height: 18px;
  }

  .header {
    padding: 0;
  }
  .header.open .header__humb i {
    background: rgba(255, 255, 255, 0);
  }
  .header.open .header__humb i::before {
    -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .header.open .header__humb i::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
  .header.open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.fixed:not(.open) .header__block {
    padding: 10px 0;
  }
  .header.fixed:not(.open) .header__block::before {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .header__humb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 40px;
    border-radius: 10px;
    background: #d6e1fb;
    position: relative;
    z-index: 5;
  }
  .header__humb i {
    float: left;
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    margin: auto;
    -webkit-transition: background 0.3s, width 0.4s;
    -o-transition: background 0.3s, width 0.4s;
    transition: background 0.3s, width 0.4s;
  }
  .header__humb i::before, .header__humb i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    left: 0;
    -webkit-transform: translateY(0) rotate(0deg);
        -ms-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .header__humb i::before {
    top: -6px;
  }
  .header__humb i::after {
    top: 6px;
  }
  .header__block {
    position: unset;
    padding: 16px 0;
    -webkit-transition: padding 0.5s;
    -o-transition: padding 0.5s;
    transition: padding 0.5s;
  }
  .header__block::before {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    -webkit-transition: -webkit-box-shadow 0.5s;
    transition: -webkit-box-shadow 0.5s;
    -o-transition: box-shadow 0.5s;
    transition: box-shadow 0.5s;
    transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
  }
  .header__logo {
    margin: auto;
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .header__nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 80px 15px 80px;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: visibility 0.5s, opacity 0.5s;
    -o-transition: visibility 0.5s, opacity 0.5s;
    transition: visibility 0.5s, opacity 0.5s;
  }
  .header__nav ul {
    width: 100%;
  }
  .header__nav ul li {
    width: 100%;
    margin: 0;
  }
  .header__nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(48, 68, 132, 0.05);
  }
  .header__nav ul li a::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
    right: 0;
    background: url(../img/icon-arrow1-accent.svg) center/contain no-repeat;
  }
  .header__login {
    width: 48px;
    height: 40px;
    border-radius: 10px;
    background: #d6e1fb;
    padding: 0;
    font-size: 0;
    z-index: 5;
  }
  .header__login::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/icon-login.svg) center/18px auto no-repeat;
    top: 0;
    left: 0;
  }
  .header__office {
    width: 48px;
    height: 40px;
    border-radius: 10px;
    background: #d6e1fb;
    padding: 0;
    font-size: 0;
    z-index: 5;
  }
  .header__office::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/icon-login.svg) center/18px auto no-repeat;
    top: 0;
    left: 0;
  }
  .header__office-image, .header__office-box, .header__office-summ {
    display: none;
  }

  .teaser {
    padding: 100px 30px 350px;
  }
  .teaser__bg {
    background: url(../img/teaser-mob.png) bottom center/cover no-repeat;
  }
  .teaser__bg img {
    display: none;
  }
  .teaser__block {
    width: 100%;
  }
  .teaser__box {
    max-width: 100%;
  }
  .teaser__sub {
    display: none;
  }
  .teaser__title {
    margin-top: 0;
    font-size: 40px;
    text-align: center;
  }
  .teaser__desc {
    margin-top: 15px;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
  .teaser__but {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .teaser__but .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .teaser__but .btn:last-child {
    margin: 0;
  }

  .start {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .start__video {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
  }
  .start__video-info {
    padding: 15px;
    font-size: 16px;
    text-align: center;
  }
  .start__block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .start__title {
    padding: 0;
    width: 100%;
  }
  .start__title-name {
    font-size: 24px;
    text-align: center;
  }
  .start__title-desc {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
  }
  .start__info {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 50px;
    width: 100%;
  }
  .start__info .slick-list {
    float: left;
    width: 100%;
    height: auto;
    overflow: visible !important;
  }
  .start__info .slick-track {
    float: left;
    width: 100%;
    height: auto;
  }
  .start__info-item {
    width: calc(100% - 10px);
    margin: 0 5px;
    min-height: 155px;
  }
  .start__info-name {
    font-size: 36px;
  }
  .start__info-desc {
    padding-top: 20px;
    margin-top: 0;
    font-size: 16px;
  }

  .about {
    width: calc(100% + 30px);
    margin: 40px -15px 0;
    padding: 20px 15px;
  }
  .about__item {
    margin-top: 10px;
  }
  .about__item:nth-child(2n) .about__item-base {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about__item:nth-child(2n) .about__item-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about__item-base {
    width: 100%;
    padding: 30px;
  }
  .about__item-sub {
    height: 30px;
    padding: 0 16px;
    font-size: 13px;
  }
  .about__item-name {
    font-size: 24px;
  }
  .about__item-desc {
    margin-top: 10px;
    font-size: 14px;
  }
  .about__item-but {
    margin-top: 15px;
  }
  .about__item-image {
    width: 100%;
    height: 345px;
  }

  .games {
    width: calc(100% + 30px);
    margin: 25px -15px 0;
    padding: 20px;
    border-radius: 24px;
  }
  .games:last-child {
    border-radius: 24px 24px 0 0;
  }
  .games > .games__item {
    margin: 0;
    width: 100%;
    float: none;
  }
  .games__slider {
    width: 100%;
    margin: 10px 0 0 -5px;
  }
  .games__item {
    width: calc(100% - 10px);
  }
  .games__info {
    padding: 30px;
    position: relative;
    height: auto;
  }
  .games__info-image {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .games__info-image img {
    display: block;
    height: 46px;
    width: auto;
  }
  .games__info-title {
    margin-top: 0;
    font-size: 24px;
    padding-left: 45px;
  }
  .games__info-desc {
    margin-top: 15px;
    font-size: 14px;
  }
  .games__info-scroll {
    display: none;
  }

  .rules {
    width: calc(100% + 30px);
    margin: 30px -15px 0;
    padding: 20px 15px;
  }
  .rules__aside {
    width: 100%;
  }
  .rules__info {
    width: 100%;
    padding: 30px;
    min-height: 250px;
  }
  .rules__info-name {
    font-size: 24px;
  }
  .rules__info-desc {
    width: 60%;
    font-weight: 400;
    font-size: 14px;
  }
  .rules__info-image {
    width: 95px;
    right: 10px;
    bottom: 10px;
  }
  .rules__block {
    margin-top: 10px;
    width: 100%;
  }
  .rules__item-base {
    width: 100%;
    padding: 10px;
  }
  .rules__item-name {
    font-size: 20px;
  }
  .rules__item-desc {
    padding-top: 10px;
    font-size: 14px;
  }
  .rules__item-image {
    margin-top: 15px;
    width: 100%;
    height: 170px;
  }

  .winners {
    width: calc(100% + 30px);
    margin: 20px -15px 0;
    padding: 20px 15px;
  }
  .winners__item {
    width: 100%;
    margin: 10px 0 0;
  }
  .winners__item:first-child {
    margin: 0;
  }
  .winners__info {
    padding: 30px;
    height: auto;
  }
  .winners__info-title {
    font-size: 24px;
  }
  .winners__info-scroll {
    display: none;
  }
  .winners__base {
    height: auto;
    min-height: 200px;
    padding: 20px 150px 20px 20px;
  }
  .winners__name {
    font-size: 24px;
  }
  .winners__desc {
    font-size: 16px;
  }
  .winners__win {
    font-size: 15px;
  }
  .winners__image {
    width: 130px;
  }

  .reviews {
    width: calc(100% + 30px);
    margin: 20px -15px 0;
    padding: 20px 15px;
  }
  .reviews__aside {
    width: 100%;
  }
  .reviews__info-image {
    display: none;
  }
  .reviews__info-title {
    margin-top: 0;
    font-size: 24px;
  }
  .reviews__info-desc {
    font-size: 16px;
  }
  .reviews__info-but {
    margin-top: 20px;
  }
  .reviews__block {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 20px;
    margin-top: 10px;
  }
  .reviews__block .slick-list {
    overflow: visible !important;
  }
  .reviews__item {
    width: calc(50% - 10px);
    margin: 0 5px;
    padding: 30px 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews__item-text {
    font-size: 14px;
  }
  .reviews__item-grade {
    right: -20px;
  }

  .faq {
    width: calc(100% + 30px);
    margin: 20px -15px 0;
    padding: 20px 15px;
  }
  .faq__base {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-top: 15px;
  }
  .faq__aside {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .faq__info {
    padding: 20px;
    border-radius: 20px;
  }
  .faq__info-name {
    font-size: 24px;
  }
  .faq__info-but {
    margin-top: 40px;
  }
  .faq__item {
    margin-top: 10px;
    border-radius: 20px;
  }
  .faq__item:first-child {
    margin: 0;
  }
  .faq__item-cap {
    padding: 15px 70px 15px 20px;
  }
  .faq__item-name {
    font-size: 16px;
  }
  .faq__item-but {
    width: 45px;
    height: 30px;
    top: 12px;
    right: 15px;
  }
  .faq__item-block {
    display: none;
    padding: 0 20px 20px 20px;
    margin-top: -5px;
  }

  .contact {
    width: calc(100% + 30px);
    margin: 30px -15px 0;
    border-radius: 30px 30px 0 0;
    padding: 25px 20px 350px;
    background: #5F8AF0;
  }
  .contact__bg {
    height: 330px;
    top: auto;
    bottom: 0;
  }
  .contact__block {
    max-width: 100%;
    border-radius: 25px;
    padding: 35px 35px 25px;
    margin: 0;
  }
  .contact__logo-icon {
    width: 25px;
  }
  .contact__logo-icon img {
    display: block;
    width: 100%;
    height: auto;
  }
  .contact__logo-base {
    margin: auto 0 auto 15px;
  }
  .contact__logo-base img {
    width: 145px;
  }
  .contact__list {
    margin-top: 15px;
  }
  .contact__list-name {
    font-size: 24px;
  }
  .contact__list-desc {
    font-size: 14px;
  }
  .contact__but {
    margin-top: 15px;
  }

  .footer {
    margin-top: 0;
    background: #F2F2F2;
  }
  .footer__author {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 15px auto 0;
  }
  .footer__author img {
    margin: 0 auto;
  }
  .footer__info {
    width: 100%;
    margin: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__info-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
    text-align: center;
  }
  .footer__info-item:last-child {
    margin: 0;
  }

  .game {
    border-radius: 0 0 10px 10px;
  }
  .game__block {
    padding: 90px 0 20px;
    margin-top: auto;
  }
  .game__aside {
    width: 100%;
  }
  .game__notific {
    height: 0;
    width: 100%;
    -webkit-transition: height 0.5s;
    -o-transition: height 0.5s;
    transition: height 0.5s;
  }
  .game__notific:has(.game__notific-item:not(.hide)) {
    height: 85px;
  }
  .game__notific + .game__aside {
    margin-top: 15px;
  }
  .game__start {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 70px 0;
  }
  .game__start-title {
    font-size: 32px;
  }
  .game__start-timer {
    margin: 15px auto 0;
    padding: 8px 16px;
    max-width: 400px;
  }
  .game__start-circle {
    width: 75px;
    height: 75px;
  }
  .game__start-circle svg {
    -webkit-transform: rotate(-90deg) scale(60%) translate(30%, -30%);
        -ms-transform: rotate(-90deg) scale(60%) translate(30%, -30%);
            transform: rotate(-90deg) scale(60%) translate(30%, -30%);
  }
  .game__start-value {
    font-size: 34px;
  }
  .game__start-value span {
    margin-top: -5px;
  }
  .game__start-value small {
    margin-top: -5px;
    font-size: 10px;
  }

  .cap {
    height: 280px;
    padding: 70px 20px 0;
    border-radius: 0;
  }
  .cap__title {
    font-size: 36px;
  }

  .office {
    margin-top: 20px;
    padding-bottom: 30px;
  }
  .office__nav {
    background: #ebf0fd;
    border-radius: 12px;
  }
  .office__nav-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0 20px;
    height: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    font-family: "Ubuntu Sans", sans-serif;
    position: relative;
  }
  .office__nav-name.open::before {
    -webkit-transform: scale(1, -1);
        -ms-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .office__nav-name::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: url(../img/icon-arrow3-black.svg) center/contain no-repeat;
    right: 18px;
    top: calc(50% - 6px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .office__nav-list {
    display: none;
    width: 100%;
    padding: 12px 20px;
    position: relative;
  }
  .office__nav-list::before {
    content: "";
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    top: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
  }
  .office__nav-list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .office__nav-list li:last-child {
    margin: 0;
  }
  .office__nav-list li.active a {
    background: var(--white);
    border: 0;
    font-weight: 600;
  }
  .office__nav-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .office__nav-list li a:hover {
    opacity: 0.7;
  }
  .office__block {
    margin-top: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
  .office__block.bg {
    width: calc(100% + 30px);
    margin: 20px -15px 0;
    padding: 25px 20px;
    border-radius: 25px;
    background: #F2F2F2;
  }
  .office__history-cap {
    display: none;
  }
  .office__history-block {
    margin-top: 0;
    background: transparent;
    border-radius: 0;
  }
  .office__history-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 25px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 10px;
  }
  .office__history-item:first-child {
    margin: 0;
  }
  .office__history-name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 10px 0 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  .office__history-date {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: auto;
    padding-right: 0;
    margin: 12px 0 0;
  }
  .office__history-partic {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: auto;
    padding-right: 0;
    margin: 10px 0 0;
  }
  .office__history-partic::before {
    content: "/";
    padding: 0 14px;
    opacity: 0.3;
  }
  .office__history-result {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
  }
  .office__history-result.active {
    color: var(--accent);
  }
  .office__history-result.active::before {
    content: "";
    float: left;
    width: 16px;
    height: 16px;
    background: url(../img/icon-check-history.svg) center/contain no-repeat;
    margin: auto 10px auto 0;
  }
  .office__history-clear {
    display: block;
    width: 100%;
    height: 1px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .office__history-priz {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    width: 33.3333%;
    margin: 30px 0 0;
    font-weight: 500;
  }
  .office__history-priz::before {
    content: attr(data-name);
    display: block;
    font-size: 16px;
    opacity: 0.7;
    padding-bottom: 5px;
  }
  .office__history-rates {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    width: 33.3333%;
    margin: 30px 0 0;
    font-weight: 500;
  }
  .office__history-rates::before {
    content: attr(data-name);
    display: block;
    font-size: 16px;
    opacity: 0.7;
    padding-bottom: 5px;
  }
  .office__history-price {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
    width: 33.3333%;
    margin: 30px 0 0;
    font-weight: 500;
  }
  .office__history-price::before {
    content: attr(data-name);
    display: block;
    font-size: 16px;
    opacity: 0.7;
    padding-bottom: 5px;
  }
  .office__history-link {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
    width: 100%;
    margin: 20px 0 0;
  }
  .office__history-link a {
    height: 50px;
    font-size: 16px;
    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;
    border-radius: 10px;
    background: #ebf0fd;
    color: var(--accent);
    font-weight: 500;
  }
  .office__history-link a::before {
    display: none;
  }
  .office__transact-cap {
    display: none;
  }
  .office__transact-block {
    margin-top: 0;
    background: transparent;
    border-radius: 0;
  }
  .office__transact-item {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 25px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 10px;
  }
  .office__transact-item:first-child {
    margin: 0;
  }
  .office__transact-status {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 0;
    margin: 0;
    color: var(--accent);
  }
  .office__transact-purpose {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding: 8px 0 0;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  .office__transact-summ {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: auto;
    font-size: 15px;
    padding-right: 0;
    padding-left: 0;
    margin: 8px 0 0;
  }
  .office__transact-date {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: auto;
    font-size: 15px;
    padding-right: 0;
    margin: 8px 0 0;
  }
  .office__transact-date::before {
    content: "/";
    padding: 0 8px;
    opacity: 0.3;
  }
  .office__transact-source {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    width: auto;
    font-size: 15px;
    padding-right: 0;
    margin: 8px 0 0;
  }
  .office__transact-source::before {
    content: "/";
    padding: 0 8px;
    opacity: 0.3;
  }
  .office__balance {
    max-width: 100%;
    margin: 0;
  }
  .office__balance-soc li a span {
    display: none;
  }
  .office__balance-title {
    font-size: 24px;
  }
  .office__balance-desc {
    font-size: 14px;
  }
  .office__balance-item.medium {
    width: calc(100% - 10px);
  }

  .modal__block {
    padding: 25px 15px;
  }
  .modal__title-name {
    font-size: 24px;
    padding-right: 40px;
  }
  .modal__title-desc {
    font-size: 14px;
  }
  .modal__title-desc br {
    display: none;
  }
  .modal__inter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__inter .btn:not(:first-child) {
    margin-top: 10px;
  }
  .modal__rates-item {
    padding: 15px;
  }
  .modal__rates-list li {
    width: 100%;
  }
  .modal__rates-list li::before {
    content: "";
    display: block;
    width: 100%;
    margin: 5px 0;
    height: 1px;
    background: var(--black);
    opacity: 0.1;
  }
  .modal__rates-but {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__rates-but .btn:not(:first-child) {
    margin-top: 10px;
  }
  .modal__rates-info {
    margin-top: -5px;
  }
  .modal__rates-info li {
    margin: 5px 5px 0 0;
    height: 26px;
    padding: 0 8px;
    font-size: 13px;
  }
  .modal__rates-balance {
    padding: 5px 10px;
  }
  .modal__rates-balance_name {
    font-size: 14px;
  }
  .cookie {
    left: 16px;
    right: 16px;
    max-width: none;
    -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;
  }
  .cookie__btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {

}