/* VENDOR */
/* GLOBAL */
@keyframes fade-in-out {
  0% {
    opacity: 0;
    transform: translateX(-100%), rotate(30deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%), rotate(30deg);
  }
}
body, html {
  height: 100%;
  min-height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  padding: 0px;
  margin: 0px;
  color: #fff;
  line-height: 1.66;
  font-size: 18px;
  font-family: "Gilroy", Arial, Helvetica, sans-serif;
  background-color: #284045;
  font-weight: 500;
  overflow-y: auto;
  scrollbar-width: thin;
}

img {
  display: block;
  max-width: 100%;
  border-style: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  touch-action: manipulation;
}

a:not(.button) {
  text-decoration: underline;
  color: inherit;
}

a:not(.button):hover {
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none outside;
}

b {
  font-weight: 700;
}

p {
  margin: 0 0 0.5em;
}

p:last-child {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  max-width: 1475px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
  z-index: 5;
}

@media (max-width: 1279px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.wrapper {
  position: relative;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #173C40;
  z-index: 50;
  padding: 33px 0;
  font-size: 14px;
  line-height: 1.42;
}
.header a {
  text-decoration: none;
  transition: color 0.15s ease;
}

@media (hover: hover) {
  .header a:hover {
    color: #C96;
  }
}
.header__container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.header__logo {
  display: block;
  margin-right: 40px;
  width: 166px;
}
.header__logo img {
  display: block;
  max-width: 100%;
}

.menu__list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.menu__list li + li {
  margin-left: 28px;
}

.header__phone {
  margin-left: auto;
}

.open-menu {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 24px;
  display: none;
  font-size: 0px;
  color: transparent;
  z-index: 51;
}

.open-menu span {
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  margin-left: -13px;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background 0.1s;
}

.open-menu span:before,
.open-menu span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.open-menu span:before {
  top: -7px;
  transition: top 0.1s linear 0.1s, transform 0.1s linear 0s, border-radius 0.1s linear 0s;
}

.open-menu span:after {
  bottom: -7px;
  transition: bottom 0.1s linear 0.1s, transform 0.1s linear 0s, border-radius 0.1s linear 0s;
}

.open-menu.close-mode span {
  background: none;
}

.open-menu.close-mode span:before {
  top: 0;
  transform: rotate(45deg);
  transition: top 0.1s linear 0s, transform 0.1s linear 0.1s, border-radius 0.1s linear 0.1s;
}

.open-menu.close-mode span:after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 0.1s linear 0s, transform 0.1s linear 0.1s, transform 0.1s linear 0.1s;
}

@media (max-width: 1279px) {
  .header {
    padding: 72px 0 20px;
    font-size: 18px;
    line-height: 1.2;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s linear;
  }
  .header.opened {
    grid-template-rows: 1fr;
    border-radius: 0 0 24px 24px;
  }
  .header__container {
    display: block;
    overflow: hidden;
    padding: 0 40px;
    width: 100%;
  }
  .header__logo {
    position: absolute;
    top: 35px;
    left: 24px;
  }
  .open-menu {
    display: block;
  }
  .menu__list {
    display: block;
    padding-top: 20px;
    margin-bottom: 48px;
  }
  .menu__list li + li {
    margin-left: 0;
    margin-top: 32px;
  }
  .header__phone {
    margin-bottom: 28px;
  }
}
.page {
  position: relative;
  padding-top: 92px;
  background-image: -webkit-image-set(url("../images/photos/bg_pattern@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/bg_pattern@1x.webp") type("image/webp"));
  background-image: url("../images/photos/bg_pattern@1x.jpg"); /* Fallback */
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media (min-resolution: 2dppx) {
  .page {
    background-image: -webkit-image-set(url("../images/photos/bg_pattern@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern@2x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern@2x.jpg");
  }
}
.page::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-image-set(url("../images/photos/bg_pattern-hover-1@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/bg_pattern-hover-1@1x.webp") type("image/webp"));
  background-image: url("../images/photos/bg_pattern-hover-1@1x.png"); /* Fallback */
  background-repeat: no-repeat;
  background-position: 71.4% 0;
  background-size: 58.1% auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  content: "";
}
@media (min-resolution: 2dppx) {
  .page::before {
    background-image: -webkit-image-set(url("../images/photos/bg_pattern-hover-1@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern-hover-1@2x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern-hover-1@2x.png");
  }
}
.page--game-choice {
  background-image: -webkit-image-set(url("../images/photos/bg_pattern-1@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/bg_pattern-1@1x.webp") type("image/webp"));
  background-image: url("../images/photos/bg_pattern-1@1x.jpg"); /* Fallback */
  background-size: cover;
}
@media (min-resolution: 2dppx) {
  .page--game-choice {
    background-image: -webkit-image-set(url("../images/photos/bg_pattern-1@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern-1@2x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern-1@2x.jpg");
  }
}
.page--game-choice::before {
  background-image: -webkit-image-set(url("../images/photos/bg_pattern-hover-2@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/bg_pattern-hover-2@1x.webp") type("image/webp"));
  background-image: url("../images/photos/bg_pattern-hover-2@1x.png"); /* Fallback */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (min-resolution: 2dppx) {
  .page--game-choice::before {
    background-image: -webkit-image-set(url("../images/photos/bg_pattern-hover-2@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern-hover-2@2x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern-hover-2@2x.png");
  }
}
.page--content-hover::before {
  opacity: 1;
  visibility: visible;
}

.screen {
  position: relative;
}

.footer {
  background: #184145;
  position: relative;
}

.footer__top {
  background: #173C40;
  padding: 35px 0;
  font-size: 14px;
  line-height: 1.35;
}
.footer__top a {
  text-decoration: none;
}
.footer__top b {
  font-weight: 600;
  font-size: 16px;
}

.footer__container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.footer__logo,
.footer__contacts {
  margin-right: 60px;
}

.footer__consult a {
  text-decoration: underline;
}

.footer__soc {
  margin-left: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.footer__soc p {
  margin: 0 15px 0 0;
}

.footer__tg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: url(../images/icons/icon-tg.svg) no-repeat center center/25px 25px #fff;
  transition: background-color 0.15s ease;
}

@media (hover: hover) {
  .footer__tg:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.footer__subscribe {
  position: relative;
  margin-left: 30px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  padding: 10px 20px 10px 45px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.footer__subscribe::before {
  position: absolute;
  top: 12px;
  left: 18px;
  width: 17px;
  height: 11px;
  background: url(../images/icons/icon-subscribe.svg) no-repeat center transparent;
  content: "";
}

@media (hover: hover) {
  .footer__subscribe:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.footer__disclaimer {
  padding: 35px 0 50px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.footer__disclaimer p {
  margin-bottom: 1.5em;
}
.footer__disclaimer p:last-child {
  margin-bottom: 0;
}
.footer__disclaimer p.footer__disclaimer-text--large {
  font-size: 16px;
}

@media (max-width: 1279px) {
  .footer__top {
    padding: 32px 0;
  }
  .footer__container {
    padding-top: 60px;
    position: relative;
    justify-content: space-between;
    flex-flow: row wrap;
    gap: 24px 10px;
  }
  .footer__logo {
    margin: 0;
    position: absolute;
    top: 0;
    left: 24px;
  }
  .footer__contacts {
    margin-right: 0;
    flex: 1 1 calc(100% - 190px);
  }
  .footer__soc {
    margin-left: 0;
  }
  .footer__soc p {
    display: none;
  }
  .footer__subscribe {
    margin-left: 0;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Bold.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Medium.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/gilroy/Gilroy-Regular.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PSB Prosperity Sans";
  src: url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Regular.woff2") format("woff2"), url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PSB Prosperity Sans";
  src: url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Bold.woff2") format("woff2"), url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

form {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

label,
select,
button,
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}

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

textarea {
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

/* ELEMENTS */
.button {
  margin: 0;
  padding: 18px 16px 14px;
  display: inline-block;
  max-width: 100%;
  min-width: 215px;
  font-size: 16px;
  text-decoration: none;
  line-height: 150%;
  text-align: center;
  border: 1px solid #b2804c;
  font-family: "Gilroy", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 12px;
  white-space: nowrap;
  background: #b2804c;
  color: #fff;
  transition: background-color 0.15s ease;
}
@media (max-width: 1023px) {
  .button {
    font-size: 14px;
  }
}
.button:hover, .button:focus {
  background: #8e663d;
}
.button:active {
  background: #6b4d2d;
}
.button--green {
  color: #fff;
  background: #173C40;
  border-color: #173C40;
}
.button--green:hover, .button--green:focus {
  background: #b2804c;
}
.button--green:active {
  background: #8e663d;
}

.button--100 {
  width: 100%;
}

.button[disabled] {
  pointer-events: none;
}

/* BLOCKS */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #173C40 url("../images/photos/bg_pattern_top@2x.png") no-repeat center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader__loader {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: inline-block;
  background: url("../images/photos/bg-pattern-effect-full@2x.png") no-repeat center;
  background-size: 100% auto;
}
.preloader__loader::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, transparent 0%, rgba(23, 60, 64, 0.8) 50%, rgba(23, 60, 64, 0) 99%, rgba(23, 60, 64, 0) 100%);
  box-shadow: 50px 50px 100px 50px rgba(23, 60, 64, 0.8);
  animation: fade-in-out 2s ease infinite;
  content: "";
}
.preloader img {
  width: 100%;
}
.preloader--shown {
  opacity: 1;
  visibility: visible;
}

.start {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}
.start--hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -5;
}
.start::before {
  position: absolute;
  top: calc(50% - 442px);
  left: -800px;
  width: 86%;
  height: 1344px;
  background-image: -webkit-image-set(url("../images/photos/img01@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/img01@1x.webp") type("image/webp"));
  background-image: url("../images/photos/img01@1x.png"); /* Fallback */
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media (min-resolution: 2dppx) {
  .start::before {
    background-image: -webkit-image-set(url("../images/photos/img01@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img01@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img01@2x.png");
  }
}
@media (max-width: 1920px) {
  .start::before {
    top: calc(50% - 442px);
    left: calc(-50% + 256px);
    width: 86%;
    height: 1344px;
    background-position: center;
  }
}
@media (max-width: 1660px) {
  .start::before {
    left: calc(-50% + 290px);
  }
}
@media (max-width: 1440px) {
  .start::before {
    left: calc(-50% + 180px);
  }
}
@media (max-width: 1300px) {
  .start::before {
    left: calc(-50% + 140px);
  }
}
@media (max-width: 1023px) {
  .start::before {
    display: none;
  }
}
.start::after {
  position: absolute;
  bottom: calc(50% - 630px);
  right: -526px;
  width: 64%;
  height: 1426px;
  background-image: -webkit-image-set(url("../images/photos/img02@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/img02@1x.webp") type("image/webp"));
  background-image: url("../images/photos/img02@1x.png"); /* Fallback */
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media (min-resolution: 2dppx) {
  .start::after {
    background-image: -webkit-image-set(url("../images/photos/img02@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img02@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img02@2x.png");
  }
}
@media (max-width: 1920px) {
  .start::after {
    right: calc(-50% + 332px);
    width: 66%;
    height: 1126px;
  }
}
@media (max-width: 1660px) {
  .start::after {
    right: calc(-50% + 280px);
  }
}
@media (max-width: 1440px) {
  .start::after {
    right: calc(-50% + 200px);
  }
}
@media (max-width: 1300px) {
  .start::after {
    bottom: calc(50% - 636px);
    right: calc(-50% + 220px);
  }
}
@media (max-width: 1023px) {
  .start::after {
    right: -270px;
    left: -100px;
    bottom: auto;
    top: calc(100% - 232px);
    margin: 0 auto;
    width: 730px;
    height: 552px;
    background-image: -webkit-image-set(url("../images/photos/img02-mobile@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img02-mobile@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img02-mobile@1x.png"); /* Fallback */
    background-size: 100% auto;
    background-position: center bottom;
  }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
  .start::after {
    background-image: -webkit-image-set(url("../images/photos/img02-mobile@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img02-mobile@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img02-mobile@2x.png");
  }
}
@media (max-width: 1023px) {
  .start__container {
    padding-top: 106px;
    padding-bottom: 242px;
  }
}
.start__content-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 136px 20px 264px;
  text-align: center;
  z-index: 5;
}
@media (max-width: 1660px) {
  .start__content-wrapper {
    padding: 136px 20px 160px;
  }
}
@media (max-width: 1300px) {
  .start__content-wrapper {
    padding: 90px 20px 110px;
  }
}
@media (max-width: 1023px) {
  .start__content-wrapper {
    padding: 0;
  }
}
.start__title {
  margin: 0 auto 4px;
  font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 4px;
  color: #b2804c;
}
@media (max-width: 1023px) {
  .start__title {
    margin: 0 auto 12px;
    font-size: 20px;
    letter-spacing: 2px;
  }
}
@media (max-width: 362px) {
  .start__title {
    max-width: 300px;
  }
}
.start__greeting {
  margin: 0 auto 108px;
  font-size: 80px;
  line-height: 90%;
  font-weight: 600;
}
@media (max-width: 1439px) {
  .start__greeting {
    margin: 0 auto 88px;
  }
}
@media (max-width: 1219px) {
  .start__greeting {
    margin: 0 auto 74px;
  }
}
@media (max-width: 1023px) {
  .start__greeting {
    margin: 0 auto 64px;
    font-size: 40px;
  }
}
.start__text-wrapper {
  margin: 0 auto 32px;
  max-width: 600px;
}
@media (max-width: 1023px) {
  .start__text-wrapper {
    margin: 0 auto 32px;
  }
}
.start__text-heading {
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .start__text-heading {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 135%;
    font-weight: 600;
  }
}
.start__text {
  margin: 0 auto;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1023px) {
  .start__text {
    font-size: 16px;
    line-height: 135%;
  }
}
.start__text-final {
  margin: 0 auto;
  max-width: 374px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .start__text-final {
    font-size: 20px;
  }
}
.start__button-wrapper {
  margin: 24px auto 0;
}
.start__button {
  min-width: 363px;
}
@media (max-width: 1023px) {
  .start__button {
    width: 100%;
    max-width: 480px;
  }
}
@media (max-width: 362px) {
  .start__button {
    min-width: 280px;
    max-width: 320px;
  }
}

.game-choice {
  height: -moz-fit-content;
  height: fit-content;
  transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}
.game-choice--hidden {
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.game-choice__container {
  padding: 162px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1279px) {
  .game-choice__container {
    padding: 90px 20px 0;
  }
}
@media (max-width: 1023px) {
  .game-choice__container {
    padding: 106px 10px 18px;
  }
}
@media (max-width: 359px) {
  .game-choice__container {
    padding: 80px 10px 18px;
  }
}
.game-choice__container.container {
  max-width: 100%;
}
.game-choice__content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1940px;
}
.game-choice__text-wrapper {
  margin: 0 auto 84px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 84px;
  justify-content: center;
}
@media (max-width: 1439px) {
  .game-choice__text-wrapper {
    gap: 20px 44px;
  }
}
@media (max-width: 1279px) {
  .game-choice__text-wrapper {
    margin: 0 auto 24px;
    gap: 20px 34px;
  }
}
@media (max-width: 1023px) {
  .game-choice__text-wrapper {
    max-width: 600px;
    gap: 0;
  }
}
.game-choice__greeting {
  margin: 0;
  max-width: 600px;
  font-size: 80px;
  line-height: 90%;
  font-weight: 600;
}
@media (max-width: 1439px) {
  .game-choice__greeting {
    margin: 0 auto 58px;
  }
}
@media (max-width: 1279px) {
  .game-choice__greeting {
    margin: 0 0 16px;
    max-width: 70%;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .game-choice__greeting {
    margin: 0 auto 25px;
    max-width: 100%;
    font-size: 40px;
  }
}
.game-choice__text {
  margin: 0;
  max-width: 588px;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
}
@media (max-width: 1279px) {
  .game-choice__text {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .game-choice__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 135%;
  }
  .game-choice__text:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
.game-choice__list {
  width: 100%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
@media (max-width: 1023px) {
  .game-choice__list {
    grid-template-columns: 100%;
  }
}
.game-choice__item {
  position: relative;
  padding: 48px 20px 372px;
  max-width: 960px;
  text-align: center;
}
@media (max-width: 1439px) {
  .game-choice__item {
    padding: 48px 20px 272px;
  }
}
@media (max-width: 1279px) {
  .game-choice__item {
    padding: 48px 20px 240px;
  }
}
@media (max-width: 1023px) {
  .game-choice__item {
    padding: 28px 10px;
    width: 100%;
  }
  .game-choice__item:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (max-width: 359px) {
  .game-choice__item {
    padding: 28px 0;
  }
}
.game-choice__item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  content: "";
  z-index: 1;
  transition: transform 0.2s ease;
}
@media (max-width: 1023px) {
  .game-choice__item::before {
    display: none;
  }
}
.game-choice__item--game-1::before {
  background-image: -webkit-image-set(url("../images/photos/img03-half@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/img03-half@1x.webp") type("image/webp"));
  background-image: url("../images/photos/img03-half@1x.png"); /* Fallback */
}
@media (min-resolution: 2dppx) {
  .game-choice__item--game-1::before {
    background-image: -webkit-image-set(url("../images/photos/img03-half@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img03-half@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img03-half@2x.png");
  }
}
@media (max-width: 1023px) {
  .game-choice__item--game-1 .game-choice__title::before {
    background-image: -webkit-image-set(url("../images/photos/img03-mobile@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img03-mobile@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img03-mobile@1x.png"); /* Fallback */
  }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
  .game-choice__item--game-1 .game-choice__title::before {
    background-image: -webkit-image-set(url("../images/photos/img03-mobile@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img03-mobile@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img03-mobile@2x.png");
  }
}
.game-choice__item--game-2::before {
  bottom: 0;
  right: -12px;
  background-image: -webkit-image-set(url("../images/photos/img04-half@1x.webp") type("image/webp"));
  background-image: image-set(url("../images/photos/img04-half@1x.webp") type("image/webp"));
  background-image: url("../images/photos/img04-half@1x.png"); /* Fallback */
}
@media (min-resolution: 2dppx) {
  .game-choice__item--game-2::before {
    background-image: -webkit-image-set(url("../images/photos/img04-half@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04-half@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img04-half@2x.png");
  }
}
@media (max-width: 1023px) {
  .game-choice__item--game-2::before {
    background-image: -webkit-image-set(url("../images/photos/img04-mobile@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04-mobile@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img04-mobile@1x.png"); /* Fallback */
  }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
  .game-choice__item--game-2::before {
    background-image: -webkit-image-set(url("../images/photos/img04-mobile@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04-mobile@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img04-mobile@2x.png");
  }
}
@media (max-width: 1023px) {
  .game-choice__item--game-2 .game-choice__title::before {
    background-image: -webkit-image-set(url("../images/photos/img04-mobile@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04-mobile@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img04-mobile@1x.png"); /* Fallback */
  }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
  .game-choice__item--game-2 .game-choice__title::before {
    background-image: -webkit-image-set(url("../images/photos/img04-mobile@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04-mobile@2x.webp") type("image/webp"));
    background-image: url("../images/photos/img04-mobile@2x.png");
  }
}
.game-choice__item--btn-hover::before {
  transform: scale(1.2) translateY(-26px);
}
.game-choice__title {
  position: relative;
  margin: 0 auto;
  max-width: 436px;
  font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: #b2804c;
  z-index: 5;
}
@media (max-width: 1023px) {
  .game-choice__title {
    padding-bottom: 248px;
    font-size: 20px;
    line-height: 120%;
  }
  .game-choice__title::before {
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    margin: 0 auto;
    width: 360px;
    height: 248px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    content: "";
    z-index: 1;
    transition: transform 0.2s ease;
  }
}
.game-choice__button-wrapper {
  position: relative;
  margin: 36px auto 0;
  z-index: 5;
}
@media (max-width: 1023px) {
  .game-choice__button-wrapper {
    margin: 0 auto;
  }
}
.game-choice__button {
  min-width: 300px;
}
@media (max-width: 1023px) {
  .game-choice__button {
    width: 60%;
    font-size: 16px;
  }
}
@media (max-width: 359px) {
  .game-choice__button {
    width: 100%;
    min-width: 100%;
  }
}

.screen {
  position: relative;
  overflow: hidden;
}
