/* ------------------------------------
   # DEFAULT
------------------------------------ */
/* ------------------------------------
   # RESET STYLE
------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  background-color: #333352;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------
   # DEFAULT
------------------------------------ */
.list-reset {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.btn-reset {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.input-reset {
  border: none;
  outline: none;
}

/* ------------------------------------
   # CONTAINER
------------------------------------ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-menu {
  display: none;
}

.title-def {
  font-size: 26px;
  color: #fff;
  padding: 32px 0 22px 0;
}

.main-content h2, .main-content h3, .main-content h4 {
  font-size: 22px;
  color: #fff;
  padding: 22px 0 0 0;
}
.subtitle-def {
  color: #fff;
  line-height: 150%;
}

.btn-menu-close {
  display: none;
}

.aside-right__content-title {
  color: #fff !important;
}

.game-block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #fff;
}
.game-block-title span {
  font-size: 12px;
  position: relative;
  top: 2px;
}

.game-block {
  -webkit-box-shadow: -2px 5px 19px -11px rgb(0, 0, 0);
  box-shadow: -2px 5px 19px -11px rgb(0, 0, 0);
  border-radius: 32px;
  padding: 20px;
}

.content-img {
  display: block;
  margin: 22px 0;
}

.info-container {
  -webkit-box-shadow: -2px 5px 19px -11px rgb(0, 0, 0);
  box-shadow: -2px 5px 19px -11px rgb(0, 0, 0);
  border-radius: 32px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  border-radius: 3px;
  margin-top: 32px;
}

.info-row {
  font-size: 14px;
  border-bottom: 1px solid #00ace5;
  padding: 20px 0 !important;
  color: #fff;
}

.main-content ul, .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: disc;
  padding-left: 35px;
}

.main-content li, .info__list-item {
  color: #fff;
  margin: 14px 0 0 0;
  line-height: 140%;
}

.title-fag {
  font-size: 20px;
  color: #fff;
  margin-bottom: 42px 0 22px 0;
  line-height: 130%;
}

.subtitle-fag {
  font-size: 14px;
  color: #fff;
  margin-bottom: 32px;
  margin-top: 12px;
  line-height: 140%;
  max-width: 800px;
  width: 100%;
}

/* ------------------------------------
   # COMPONENT
------------------------------------ */
.header {
  background: rgb(159, 132, 214);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(159, 132, 214)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(159, 132, 214) 35%, rgb(75, 52, 121) 100%);
}
.header-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 20px;
}
.header-bottom {
  background: rgb(75, 52, 121);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(75, 52, 121)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(75, 52, 121) 35%, rgb(75, 52, 121) 100%);
  color: #fff;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
  padding: 18px 0;
  font-weight: bold;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__actions a {
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
}
.main-content p {
  color: #fff;
  padding: 10px 0;
}
.content__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70% 32px 22%;
  grid-template-columns: 70% 22%;
  gap: 32px;
}

.aside-right__content-title {
  padding: 22px 0 12px 12px;
  font-size: 22px;
}
.aside-right__content_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  margin: 12px;
  cursor: pointer;
  background: rgb(141, 112, 199);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(141, 112, 199)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(141, 112, 199) 35%, rgb(75, 52, 121) 100%);
}
.aside-right__content_box:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 2px 0px 15px -4px rgb(75, 52, 121);
          box-shadow: 2px 0px 15px -4px rgb(75, 52, 121);
}
.aside-right__content_box-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.aside-right__content_box-start h2 {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
}
.aside-right__content_box-start img {
  width: 30px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.aside-right__content_box-end span {
  font-size: 14px;
  color: gold;
  font-weight: bold;
}
 .content-web {
    margin: 24px 0;
  }
.content-web .swiper {
  margin: 72px 0;
  border-radius: 32px;
  height: 440px;
}
@media screen and (max-width: 1180px) {
  .content-web .swiper {
    height: 36vw;
  }
}
.content-web .swiper img {
  width: 100%;
  height: 100%;
}

.game-block {
  margin-top: 42px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.game-block__content {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 120px;
  height: 120px;
  cursor: pointer;
  width: 100%;
  margin: auto;
}
.game-block__content .btn-game {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(159, 132, 214)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(159, 132, 214) 35%, rgb(75, 52, 121) 100%);
  color: #fff;
  padding: 14px 32px;
  font-weight: bolder;
  text-transform: uppercase;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
}
.game-block__content .btn-game:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(159, 132, 214)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(159, 132, 214) 35%, rgb(75, 52, 121) 100%);
  color: #fff !important;
}
.game-block__content-title {
  color: #fff;
  font-size: 18px;
  position: absolute;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(159, 132, 214)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(159, 132, 214) 35%, rgb(75, 52, 121) 100%);
  width: 100%;
  text-align: center;
  padding: 12px;
  bottom: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  color: #fff;
}
.game-block__content:hover .game-block__content-title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.game-block__content:hover .btn-game {
  opacity: 1;
  pointer-events: visible;
  color: #fff;
}
.game-block__content::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.game-block__content:hover::before {
  opacity: 0.4;
}
.game-block__content img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.game-block__content .btn-game {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  background-color: #000055;
  color: #fff;
  padding: 6px 15px;
  font-weight: bolder;
  text-transform: uppercase;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  font-size: 10px;
}

.game-block__content-title {
  color: #fff;
  font-size: 18px;
  position: absolute;
  z-index: 20;
  background-color: #000055;
  width: 100%;
  text-align: center;
  padding: 12px;
  bottom: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  color: #fff;
  font-size: 12px;
  padding: 8px;
}

.footer {
  background: rgb(159, 132, 214);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(159, 132, 214)), to(rgb(75, 52, 121)));
  background: linear-gradient(0deg, rgb(159, 132, 214) 35%, rgb(75, 52, 121) 100%);
  padding: 62px 0;
  margin-top: 40px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__list-link {
  color: #fff;
}
.footer__copyright {
  color: #fff;
  padding-top: 72px;
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .aside-right__content_box-start h2 {
    font-size: 10px;
  }
  .aside-right__content_box-end span {
    font-size: 10px;
  }
}
@media screen and (max-width: 980px) {
  .aside-right__content {
    display: none;
  }
  .content__inner {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .content-web .swiper {
    margin: 42px 0;
    border-radius: 32px;
    height: 58vw;
  }
  .header__list {
    position: fixed;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, rgb(75, 52, 121)), to(rgb(75, 52, 121)));
    background: linear-gradient(0deg, rgb(75, 52, 121) 35%, rgb(75, 52, 121) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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: 32px;
  }
  .header__list.active {
    left: 0;
  }
  .header__actions a {
    padding: 12px 22px;
    font-size: 18px;
  }
  .btn-menu {
    display: block;
  }
  .btn-menu-close {
    display: block;
    position: absolute;
    right: 62px;
    top: 62px;
  }
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
  .info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .header__logo img {
    width: 105px;
  }
  .header__actions a {
    padding: 12px 22px !important;
    font-size: 12px !important;
  }
  .btn-menu svg {
    width: 48px;
  }
  .btn-menu-close svg {
    width: 48px;
  }
  .game-block {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 580px) {
  .game-block {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .main-content ul,
  .info__list {
    padding-left: 32px;
  }
}
@media screen and (max-width: 480px) {
  .header-top .container {
    padding: 14px 12px;
  }
  .header__logo {
    position: relative;
    right: 12px;
  }
  .header__actions {
    gap: 14px;
  }
  .header__actions a {
    padding: 8px 8px !important;
    font-size: 8px !important;
  }
  .btn-menu svg {
    width: 32px;
  }
  .header__logo img {
    width: 70px;
  }

  .content-web {
    margin: 24px 0;
  }
  .content-web .swiper {
    margin: 24px 0;
  }
  .container {
    padding: 0 12px;
  }
  .header__list-link {
    font-size: 12px;
  }
  .header__list {
    gap: 31px;
  }
  .btn-menu-close {
    right: 32px;
    top: 32px;
  }
  .btn-menu-close svg {
    width: 32px;
  }
  .game-block {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .title-def {
    font-size: 18px;
    color: #fff;
    padding: 24px 0 20px 0;
  }
  .main-content p {
    color: #fff;
    line-height: 150%;
    font-size: 12px;
  }
  .subtitle-def {
    color: #fff;
    line-height: 150%;
    font-size: 12px;
  }
  .footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}