/* ------------------------------------
   # 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;
}

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;
}

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

.title {
  font-size: 58px;
  padding: 32px 0 52px 0;
}

.title-sm {
  font-size: 32px;
  padding: 22px 0 32px 0;
}

.wp-block-table.is-style-stripes {
  background-color: transparent;
  border-bottom: 1px solid #f0f0f0;
  border-collapse: inherit;
  border-spacing: 0;
}

.wp-block-table tr td {
  padding: 20px;
}

.space-page-content table {
  width: 100% !important;
  max-width: 720px;
  margin: 32px auto;
  margin: 1.45em 0 2.9em;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.wp-block-table {
  margin: 32px 0;
}

.space-page-content table tbody tr td {
  padding: 10px 15px;
}

.btn-content {
  background-color: #000055;
  padding: 22px 82px;
  border-radius: 32px;
  color: #fff;
  font-size: 22px;
  width: 100%;
  max-width: 520px;
  margin: 62px auto;
  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;
}

/* ------------------------------------
   # COMPONENT
------------------------------------ */
.header {
  background-color: #000055;
  -webkit-box-shadow: -1px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: -1px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.header__inner {
  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: 8px 0;
}
.header__list_dropdown {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  width: 120px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: -1px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: -1px 4px 8px 0px rgba(34, 60, 80, 0.2);
  z-index: 100;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
}
.header__list-item {
  position: relative;
}
.header__list-item.active .header__list_dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__list-link {
  color: #fff;
}
.header__list-link:hover {
  color: rgb(255, 44, 79);
}

.user__actions {
  margin-left: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.user__actions a {
  padding: 12px 32px;
  font-weight: bolder;
}
.user__actions a:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.user__actions a:nth-child(1) {
  background-color: #fff;
  color: #000055;
}
.user__actions a:nth-child(2) {
  background-color: #31cf9e;
  color: #fff;
}

.game-block {
  margin-top: 42px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.game-block__content {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  max-width: 18vw;
  height: 16vw;
  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-color: #000055;
  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-color: #000055;
  color: #fff !important;
}
.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;
}
.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%;
}
.main_content p {
  padding: 10px;
}
.main_content h2, .main_content h3, .main_content h4 {
  padding: 10px 0 0 0;
}
.main_content ul {
  padding-left: 30px;
}
.footer__inner {
  color: #fff;
}
.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;
  gap: 22px;
  list-style: disc;
}

.fag-content_box-top {
  background-color: #000055;
  color: #fff;
  padding: 12px 18px;
  font-size: 22px;
  margin-top: 44px;
}
.fag-content_box-bottom {
  background-color: #cfcfcf;
  color: #fff;
  padding: 12px 18px;
  font-size: 18px;
  margin-top: 18px;
}

.footer {
  background-color: #000055;
  padding: 42px 0;
  margin-top: 72px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 92px;
}
.footer__list_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 22px;
  color: #fff;
}
.footer__list_row-link:hover {
  color: rgb(255, 44, 79);
}

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

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

@media screen and (max-width: 1340px) {
  .user__actions {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 1240px) {
  .header__list {
    gap: 32px;
  }
  .user__actions {
    margin-left: 4vw;
  }
}
@media screen and (max-width: 1080px) {
  .header__list-link {
    color: #fff;
    font-size: 13px;
  }
  .user__actions {
    margin-left: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .user__actions {
    margin-left: 3vw;
  }
  .user__actions a {
    padding: 10px 16px;
    font-weight: bolder;
  }
}
@media screen and (max-width: 940px) {
  .header__list {
    position: fixed;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000055;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__list.active {
    left: 0;
  }
  .header__list-link {
    font-size: 22px;
  }
  .user__actions a {
    font-size: 20px;
    padding: 20px 42px !important;
  }
  .btn-open-menu {
    display: block;
  }
  .btn-open-menu i {
    color: #fff;
    font-size: 42px;
  }
  .btn-close-menu {
    display: block;
    position: absolute;
    right: 42px;
    top: 42px;
  }
  .btn-close-menu i {
    color: #fff;
    font-size: 42px;
  }
  .title {
    font-size: 22px;
    padding-bottom: 0;
    padding-top: 16px;
  }
  .game-block {
    margin-top: 22px;
  }
  .footer__list_row-link {
    font-size: 12px;
  }
  .footer__list_row {
    gap: 12px !important;
  }
  .footer__list {
    gap: 52px;
  }
}
@media screen and (max-width: 640px) {
  .game-block {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .game-block__content {
    max-width: 40vw;
    height: 40vw;
  }
}
@media screen and (max-width: 440px) {
  .header__list-link {
    font-size: 14px;
  }
  .user__actions a {
    font-size: 12px;
    padding: 12px 28px !important;
  }
  .btn-close-menu {
    right: 22px;
    top: 22px;
  }
  .footer__list {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 42px !important;
  }
  .wp-block-table tr td {
    padding: 12px;
    font-size: 11px;
    line-height: 150%;
  }
  .info-list {
    padding-left: 20px;
  }
  .game-block__content:hover .btn-game {
    opacity: 1;
    pointer-events: visible;
    color: #fff;
    font-size: 10px;
    padding: 12px 20px;
  }
  .game-block__content:hover .game-block__content-title {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: 11px;
  }
  .fag-content_box-top {
    font-size: 16px;
  }
  .fag-content_box-bottom {
    font-size: 14px;
  }
  .btn-content {
    font-size: 18px;
  }
  .title-sm {
    font-size: 32px;
    padding: 2px 0 32px 0;
  }
  .fag-content_box-top {
    margin-top: 24px;
  }
}