/* HEADER START */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1056;
    pointer-events: none;
  }

  header .navbar-expand-lg {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.875rem;
  }

  header .navbar__menu-1 { display: flex; pointer-events: auto; }

  header .navbar-brand {
    display: block;
    margin-right: 0.75rem;
    width: 4.4375rem;
    height: 4.4375rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.375rem;
    backdrop-filter: blur(1rem) saturate(180%);
    -webkit-backdrop-filter: blur(1rem) saturate(180%);
    transition: 0.3s;
  }

  header .navbar-brand:hover { background: #fff ; }

  header .navbar-brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  header .navbar__menu-1 ul {
    display: flex;
    margin: 0;
  }

  header .navbar__menu-1 ul li { display: flex; margin-right: 0.75rem; }

  header .navbar__menu-1 ul li:last-child { margin-right: 0; }

  header .navbar__menu-1 ul li a {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 4.4375rem;
    color: #272727;
    font-weight: 500;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.375rem;
    backdrop-filter: blur(1rem) saturate(180%);
    -webkit-backdrop-filter: blur(1rem) saturate(180%);
    transition: 0.3s;
  }

  header .navbar__menu-1 ul li a:hover { text-decoration: none; background: #fff; }

  header .navbar__menu-hh a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 0.75rem;
    padding: 0.625rem 0.625rem 0.625rem 1.625rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    /*background: linear-gradient(171deg, rgba(224, 0, 29, 0.95) 34.62%, rgba(255, 51, 21, 0.95) 44.23%, rgba(255, 203, 156, 0.95) 100%);*/
    border-radius: 1.375rem;
    transition: 0.3s;
  }

  header .navbar__menu-hh a:hover { text-decoration: none; }

  header .navbar__menu-hh a::before,
  header .navbar__menu-hh a::after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.375rem;
    transition: 0.3s;
  }

  header .navbar__menu-hh a::before { z-index: -2; opacity: 1; background: linear-gradient(171deg, rgba(224, 0, 29, 0.95) 34.62%, rgba(255, 51, 21, 0.95) 44.23%, rgba(255, 203, 156, 0.95) 100%); }
  header .navbar__menu-hh a::after { z-index: -1; opacity: 0; background: rgba(224, 0, 29, 0.95); }

  header .navbar__menu-hh a:hover::after { opacity: 1; }

  header .navbar__menu-hh a b {
    margin-left: 0.75rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #fff url('../img/svg/hh.svg') no-repeat 50%/contain;
    border-radius: 50%;
  }

  header .navbar__menu-2 { display: flex; pointer-events: auto; }

  header .navbar__menu-2 li { margin-left: 0.75rem; }

  header .navbar__menu-2 li .btn-1 {
    display: flex;
    align-items:center;
    justify-content: center;
    width: 4.4375rem;
    height: 4.4375rem;
    color: #272727;
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    backdrop-filter: blur(1rem) saturate(180%);
    -webkit-backdrop-filter: blur(1rem) saturate(180%);
    transition: 0.3s;
  }

  header .navbar__menu-2 li .btn-1:hover { text-decoration: none; background: #fff; }

  header .navbar__menu-2 li .btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem 0.625rem 1.5rem 1.5rem;
    height: 4.4375rem;
    color: #272727;
    font-weight: 500;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.375rem;
  }

  header .navbar__menu-2 li .btn-2 p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 0 1.25rem;
    width: 3.1875rem;
    height: 3.1875rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    background: #CD9BF5;
    border-radius: 50%;
    transition: 0.3s;
  }

  header .navbar__menu-2 li .btn-2:hover { text-decoration: none; background: #fff; }

  header .navbar__menu-2 li .btn-3 {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem;
    height: 4.4375rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    background: #A064DC;
    border-radius: 1.375rem;
    transition: 0.3s;
  }

  header .navbar__menu-2 li .btn-3:hover { text-decoration: none; opacity: 0.85; }
/* HEADER END */

/* COMMON START */
  main { height: 100%; overflow-y: auto; }

  section {
    display: block;
    position: relative;
    width: 100%;
    height: 100svh;
    height: 100%;
  }

  .custom-cursor {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    z-index: 999;
  }

   .custom-cursor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
   }

  .page-popup {
    position: fixed;
    bottom: 1.875rem;
    padding: 2rem;
    color: #272727;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.375rem;
    z-index: 3;
  }

  .page-popup:hover { text-decoration: none; }

  .popup-left { left: 1.875rem; }
  .popup-right { right: 1.875rem; }

  .page-popup h3 {
    margin-bottom: 1.125rem;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 0.85;
  }

  .page-popup p {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .page-popup .btns .btn { margin-right: 0.75rem; }

  .popup-random {
    padding: 0;
    width: 19.1875rem;
    height: 4.4375rem;
    background: url('../img/random-bg.png') no-repeat 50%/cover;
    border-radius: 1.375rem;
    backdrop-filter: blur(1rem);
    box-shadow: inset -0.0625rem -0.0625rem 0.125rem rgba(255, 255, 255, 0.85), inset 0.0625rem 0.0625rem 0.125rem rgba(255, 255, 255, 0.85);
  }

  .popup-random .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .popup-random p { margin: 0; color: #fff; }

  .popup-random img { margin-left: 0.625rem; width: 3.1875rem; }

  .popup-light {
    padding: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    z-index: 2;
  }

  .popup-light:hover { background: #fff; }

  .popup-light img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    transform: translate(-50%, -50%);
  }
/* COMMON END */

/* MAIN START */
  .main { padding-top: 9rem; }

  .main picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .main picture img { object-position: 50% 0%; }

  .main .kv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .main .kv * { position: absolute; }

  .main .kv__boy { bottom: 10rem; left: 36rem; width: 32.5rem; z-index: 2; animation: kv__boy 5s ease-in-out infinite; }
  .main .kv__girl { bottom: -0.625rem; left: 56.625rem; width: 30rem; z-index: 4; animation: kv__girl 4.75s ease-in-out infinite; }
  .main .kv__galactika { bottom: 0; left: 50%; width: 88.875rem; transform: translate(-50%, 50%); z-index: 1; animation: kv__galactika 40s ease-in-out infinite; }

  @keyframes kv__boy { 0%, 100% { bottom: 10rem; } 50% { bottom: 12rem; } }
  @keyframes kv__girl { 0%, 100% { bottom: -0.625rem; } 50% { bottom: -2rem; } }
  @keyframes kv__galactika { 0% { transform: translate(-50%, 50%) rotate(0deg);  } 100% { transform: translate(-50%, 50%) rotate(360deg); } }

  .main .kv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  .main .kv__bg img { object-position: 50% 100%; }

  .main .kv__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .main .kv__shadow img { object-position: 50% 100%; }

  .main p {
    margin-bottom: 1.125rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 0.85;
    letter-spacing: -0.06em;
    text-align: center;
  }

  .main h1 {
    margin: 0;
    font-weight: 500;
    font-size: 8.5rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .main .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 2.125rem;
    left: calc(50% - 4.1875rem);
    padding: 0;
    width: 22.8125rem;
    height: 4.4375rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: none;
    border-radius: 10rem;
    transform: translate(-50%, 0);
    z-index: 2;
  }

  .main .btn:hover { text-decoration: none; }

  .main .btn::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #A064DC;
    border-radius: 10rem;
    z-index: -1;
    transition: 0.3s;
  }

  .main .btn:hover::before { width: calc(100% + 4.1875rem); }

  .main .btn b {
    position: absolute;
    top: 0;
    right: -4.1875rem;
    width: 10.0625rem;
    height: 100%;
    background: #CD9BF5;
    border-radius: 10rem;
    z-index: -2;
  }

  .main .btn i {
    display: block;
    position: absolute;
    top: 50%;
    right: -0.625rem;
    width: 2.5625rem;
    height: 2.5625rem;
    background: url('../img/svg/search.svg') no-repeat 50%/contain;
    transform: translate(100%, -50%);
    z-index: 2;
  }

  .main .page-popup {
    padding: 2rem;
    max-width: 28.5rem;
    height: 9.75rem;
    background: url('../img/main-glass.png') no-repeat 50%/cover;
    border-radius: 1.375rem;
    backdrop-filter: blur(1rem);
    box-shadow: inset -0.0625rem -0.0625rem 0.125rem rgba(255, 255, 255, 0.85), inset 0.0625rem 0.0625rem 0.125rem rgba(255, 255, 255, 0.85);
    z-index: 3;
  }

  .main .page-popup p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    text-align: left;
  }
/* MAIN END */

/* CHOOSE START */
  /*.choose { background: #C3EB91; }*/

  .choose__btns {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    top: 8.375rem;
    left: 0;
    padding: 0 1.875rem;
    width: 100%;
  }

  .choose__btn {
    position: relative;
    margin: 0 0.375rem;
    width: 52.875rem;
    height: 45.625rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    border-radius: 2.8125rem;
    overflow: hidden;
  }

  .choose__btn picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    z-index: 0;
    cursor: pointer;
  }

  .choose__btn:hover picture { transform: scale(1.1); }

  .choose__btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 3.75rem;
    left: 3.75rem;
    padding: 1.5rem 2.125rem;
    color: #272727;
    font-weight: 500;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10rem;
    transition: 0.3s;
    z-index: 1;
  }

  .choose__btn a:hover { text-decoration: none; background: #fff; }

  .choose-onboard { height: auto; padding-bottom: 2.5rem; }

  .choose__steps {
    padding-top: 8.125rem;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .choose__steps-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1.875rem;
  }

  .choose__steps-list .slide {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 0.375rem;
    width: 28.5rem;
    height: 39.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2.8125rem;
    overflow: hidden;
  }

  .choose__steps-list .slide h3 {
    margin-bottom: 0.625rem;
    padding: 1.25rem 3.75rem 0;
    color: #272727;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .choose__steps-list .slide p {
    margin: 0;
    padding: 0 3.75rem;
    color: #272727;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .choose__steps-list .slide picture {
    display: block;
    margin-top: auto;
    width: 100%;
    height: 27.9375rem;
  }

  .choose__steps .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 4.1875rem;
    margin: 0 auto;
    padding: 0;
    width: 10.8125rem;
    height: 4.4375rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: none;
    border-radius: 10rem;
    transform: translate(-50%, 0);
    z-index: 2;
  }

 .choose__steps .btn:hover { text-decoration: none; }

 .choose__steps .btn::before {
  content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #A064DC;
    border-radius: 10rem;
    z-index: -1;
    transition: 0.3s;
  }

 .choose__steps .btn:hover::before { width: calc(100% + 4.1875rem); }

 .choose__steps .btn b {
    position: absolute;
    top: 0;
    right: -4.1875rem;
    width: 10.0625rem;
    height: 100%;
    background: #CD9BF5;
    border-radius: 10rem;
    z-index: -2;
  }

 .choose__steps .btn i {
    display: block;
    position: absolute;
    top: 50%;
    right: -0.625rem;
    width: 2.5625rem;
    height: 2.5625rem;
    background: url('../img/svg/rocket.svg') no-repeat 50%/contain;
    transform: translate(100%, -50%);
    z-index: 2;
  }
/* CHOOSE END */

/* LOADING START */
  .loading h3 {
    position: absolute;
    top: 18vh;
    left: 0;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-align: center;
    z-index: 1;
  }

  .loading picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
/* LOADING END */

/* BUILDING START */
  .building { min-height: 60rem; }

  .building__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .building__hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .building__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .building__hover i {
    display: block;
    position: absolute;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
  }

  .building__hover img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .building__hover i:hover + img { display: block; }
  .building__hover i:hover + i + img { display: block; }
  .building__hover i:hover + i + i + img { display: block; }
  .building__hover i + i:hover + img { display: block; }
  .building__hover i + i:hover + i + img { display: block; }
  .building__hover i + + i + i:hover + img { display: block; }

  .x5-delivery i { top: 9.3125rem; left: 61.875rem; width: 18.0625rem; height: 7.625rem; clip-path: polygon(16% -1%, 98% 18%, 97% 100%, -14% 69%); }
  .x5-media i { top: 8.375rem; left: 81.25rem; width: 12.3125rem; height: 8.5625rem; clip-path: polygon(0% 23%, 100% 0%, 99% 65%, 0% 100%); }
  .x5-club i:nth-child(1) { top: 16rem; left: 62.0625rem; width: 9.6875rem; height: 21.1875rem; clip-path: polygon(0% 0%, 100% 7%, 100% 95%, 0% 87%); }
  .x5-club i:nth-child(2) { top: 28.0625rem; left: 71.75rem; width: 7.5625rem; height: 9.375rem; clip-path: polygon(0% 0%, 100% 14%, 100% 100%, 0% 86%); }
  .x5-club i:nth-child(3) { top: 25.8125rem; left: 81.1875rem; width: 12.3125rem; height: 11.125rem; clip-path: polygon(0% 30%, 81% 0%, 99% 14%, 100% 51%, 0% 100%); }
  .x5-post i { top: 32.8125rem; left: 86.1875rem; width: 7.5rem; height: 13.375rem; clip-path: polygon(0% 26%, 100% 0%, 100% 70%, 0% 100%); }
  .x5-pyaterochka i { top: 43.4375rem; left: 81.4375rem; width: 12.25rem; height: 13.25rem; clip-path: polygon(0% 49%, 100% 0%, 100% 49%, 0% 100%); }
  .x5-perekrestok i:nth-child(1) { top: 42.25rem; left: 62rem; width: 7.4375rem; height: 12.625rem; clip-path: polygon(0% 0%, 100% 12%, 100% 100%, 13% 89%, 0% 79%) }
  .x5-perekrestok i:nth-child(2) { top: 48.125rem; left: 69.4375rem; width: 10.375rem; height: 8.8125rem; clip-path: polygon(0% 0%, 100% 24%, 100% 102%, 0% 77%); }
  .x5-podderzhka i { top: 6.5rem; left: 28.1875rem; width: 11.75rem; height: 8rem; clip-path: polygon(0% 0%, 79% 10%, 100% 100%, 18% 89%); }
  .x5-tech i { top: 7.8125rem; left: 45.75rem; width: 13.25rem; height: 8.5rem; clip-path: polygon(19% 0%, 100% 11%, 81% 100%, 0% 87%); }
  .x5-digital i { top: 15.6875rem; left: 43rem; width: 13.4375rem; height: 9.0625rem; clip-path: polygon(18% 0%, 98% 13%, 79% 101%, -2% 84%); }
  .x5-eda i { top: 14.25rem; left: 30.5rem; width: 12.3125rem; height: 9.0625rem; clip-path: polygon(0% 0%, 78% 11%, 101% 100%, 18% 83%); }
  .x5-mnogo_lososya i { top: 22.875rem; left: 33.0625rem; width: 20.3125rem; height: 10.875rem; clip-path: polygon(0% 0%, 100% 26%, 92% 72%, 96% 100%, 2% 70%, 7% 47%); }
  .x5-transport i { top: 31.25rem; left: 30.8125rem; width: 12.3125rem; height: 8.625rem; clip-path: polygon(17% 0%, 99% 21%, 81% 100%, 0% 79%); }
  .x5-import i { top: 32.9375rem; left: 42.625rem; width: 12.375rem; height: 10.125rem; clip-path: polygon(-5% -1%, 82% 19%, 100% 100%, 13% 79%) }
  .x5-chizhik i { top: 41.75rem; left: 44.5rem; width: 12.8125rem; height: 9.875rem; clip-path: polygon(0% 0%, 83% 23%, 100% 102%, 16% 76%); }
  .x5-okolo i { top: 38.625rem; left: 28.0625rem; width: 12.5rem; height: 9.25rem; clip-path: polygon(20% 0%, 100% 23%, 81% 100%, -1% 77%); }
/* BUILDING END */

/* BUILDING-NEW START */
  .building-new .building { min-height: 60rem; height: 100%; }

  .building-new .building__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    z-index: -1;
  }

  .building-new .building__svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    z-index: 0;
  }

  .building-new .hotspot { fill: transparent; transition: all 0.3s ease; cursor: pointer; }

  .building-new .building__hovers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .building-new .building__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .building-new .building__hover i { display: none; }

  .building-new .building__hover img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    z-index: 0;
  }
/* BUILDING-NEW END */

/* GAME START */
  .game { min-height: 60rem; }

  .game__screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .game__screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
    pointer-events: auto;
  }

  .game__screen i {
    display: block;
    position: absolute;
    z-index: 1;
    pointer-events: auto;
  }

  .screen--01 i { top: 24.625rem; left: 72.75rem; width: 5rem; height: 8.75rem; }
  .screen--02 i { top: 35.25rem; left: 85.9375rem; width: 1.9375rem; height: 7rem; }
  .screen--03 i { top: 15.625rem; left: 76rem; width: 3.0625rem; height: 9.875rem; }
  .screen--04 i { top: 19.375rem; left: 75.6875rem; width: 3.125rem; height: 8rem; }
  .screen--05 i { top: 30rem; left: 78.25rem; width: 3.25rem; height: 5.1875rem; }
  .screen--06 i { top: 47.9375rem; left: 68.75rem; width: 1.5rem; height: 7.125rem; }
  .screen--07 i { top: 14.375rem; left: 79.375rem; width: 3.375rem; height: 8.125rem; }
  .screen--08 i { top: 43.3125rem; left: 74.625rem; width: 1.1875rem; height: 6.5625rem; }
  .screen--09 i { top: 14.8125rem; left: 108.188rem; width: 2.5625rem; height: 9.375rem; }
  .screen--10 i { top: 37.875rem; left: 78.125rem; width: 4.8125rem; height: 13.125rem; }
  .screen--11 i { top: 46.25rem; left: 81.25rem; width: 3.125rem; height: 9.8125rem; }
  .screen--12 i { top: 44rem; left: 66.5rem; width: 1.625rem; height: 5.8125rem; transform: rotate(-16deg); }
  .screen--13 i { top: 30.1875rem; left: 37.875rem; width: 5rem; height: 6.875rem; }
  .screen--14 i { top: 42.3125rem; left: 93.3125rem; width: 3.0625rem; height: 7rem; }
  .screen--15 i { top: 26.625rem; left: 0; width: 3.125rem; height: 24.8125rem; }

  .popup-game .btns { align-items: flex-end; justify-content: space-between; }

  .popup-game .btn-game {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.125rem;
    height: 4.4375rem;
    background: #A064DC;
    border-radius: 1.375rem;
    transition: 0.3s;
  }

  .popup-game .btn-game:hover { text-decoration: none; opacity: 0.95; }

  .popup-game .btn-game p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .popup-game .btn-game .img {
    margin-left: 1.25rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #CD9BF5;
    border-radius: 0.8125rem;
  }

  .popup-game .btn-game .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 100%;
  }

  .popup-back {
    padding: 0;
    width: 12.6875rem;
    height: 4.4375rem;
    background: url('../img/back-bg.png') no-repeat 50%/cover;
    border-radius: 1.375rem;
    backdrop-filter: blur(1rem);
    box-shadow: inset -0.0625rem -0.0625rem 0.125rem rgba(255, 255, 255, 0.85), inset 0.0625rem 0.0625rem 0.125rem rgba(255, 255, 255, 0.85);
    transition: 0.3s;
  }

  .popup-back:hover { opacity: 0.85; }

  .popup-back .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .popup-back .wrap p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .popup-back .wrap img { margin-left: 0.625rem; width: 3.1875rem; }
/* GAME END */

/* GAME-NEW START */
  .game-new .game { min-height: 60rem; }

  .game-new .game__screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .game-new .game__screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: auto;
  }

  .game-new .screen--09 img { object-position: 100% 50%; }
  .game-new .screen--15 img { object-position: 0% 50%; }

  .game-new .game__screen svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .game-new .game__screen svg g,
  .game-new .game__screen svg path { pointer-events: auto; }
/* GAME-NEW END */

/* GAME-POPUP START */
  .modal-backdrop { background: #05320A; }

  .modal-backdrop.show { opacity: 0.05%; }

  .modal { backdrop-filter: blur(1rem); }

  .modal-dialog { margin-left: auto; margin-right: auto; max-width: 38.25rem; }

  .modal-content {
    height: 38.0625rem;
    background: #E6F0FF;
    border: 0;
    border-radius: 2.8125rem;
    box-shadow: none;
    overflow: hidden;
  }

  .modal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #CD9BF5 url('../img/svg/close.svg') no-repeat 50%/contain;
    border-radius: 50%;
    opacity: 1;
    z-index: 10;
    transition: 0.3s;
    cursor: pointer;
  }

  .modal .btn-close:hover { opacity: 0.9; }

  .modal-body { padding: 0; }

  .modal img { position: absolute; bottom: 0; }

  .modal-bg-back {
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }

  .modal-img {
    left: 50%;
    width: auto;
    height: 35.5rem;
    transform: translateX(-50%);
    z-index: 1;
  }

  .modal-bg-front {
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 0% 100%;
    z-index: 2;
    pointer-events: none;
  }

  .modal p {
    position: absolute;
    bottom: 3.75rem;
    left: 3.75rem;
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
    z-index: 3;
  }
/* GAME-POPUP END */

/* DID-IT START */
  .did-it { padding-top: 9rem; }

  .did-it picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .did-it picture img { object-fit: contain; object-position: 50% 100%; }

  .did-it h2 {
    margin: 0 0 2rem;
    font-weight: 500;
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .did-it p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    text-align: center;
  }

  .did-it .btns {
    justify-content: center;
    position: absolute;
    bottom: 1.875rem;
    left: 0;
    width: 100%;
  }

  .did-it .btns .btn {
    margin: 0 0.5rem;
    padding: 0 2.125rem;
    height: 4.4375rem;
    font-size: 1.125rem;
  }

  .did-it .btns .btn-hh { padding-left: 1.5rem; padding-right: 0.75rem; }

  .did-it .btns .btn-hh i {
    display: block;
    margin-left: 1.125rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #D81921 url('../img/svg/hh-2.svg') no-repeat 50%/contain;
    border-radius: 50%;
  }

  .did-it .btns .btn-swipe {
    position: relative;
    margin-right: 4.6875rem;
    width: 24.375rem;
    color: #fff;
    z-index: 1;
  }

  .did-it .btns .btn-swipe:hover { text-decoration: none; }

  .did-it .btns .btn-swipe::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #A064DC;
    border-radius: 10rem;
    z-index: -1;
    transition: 0.3s;
  }

  .did-it .btns .btn-swipe:hover::before { width: calc(100% + 4.1875rem); }

  .did-it .btns .btn-swipe b {
    position: absolute;
    top: 0;
    right: -4.1875rem;
    width: 10.0625rem;
    height: 100%;
    background: #CD9BF5;
    border-radius: 10rem;
    z-index: -2;
  }

  .did-it .btns .btn-swipe i {
    display: block;
    position: absolute;
    top: 50%;
    right: -0.625rem;
    width: 2.5625rem;
    height: 2.5625rem;
    background: url('../img/svg/download.svg') no-repeat 50%/contain;
    transform: translate(100%, -50%);
    z-index: 2;
  }
/* DID-IT END */

/* ABOUT START */
  .about {
    padding: 8.375rem 1.875rem 1.875rem;
    /*background: #C3EB91;*/
  }

  .about section { margin-bottom: 8.25rem; height: auto; }

  .about section:last-child { margin-bottom: 0; }

  .about h2 {
    margin-bottom: 5rem;
    color: #fff;
    font-weight: 500;
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
  }
/* ABOUT END */

/* ABOUT-KV START */
  .about__kv {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about__kv .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 3.75rem;
    width: calc(50% - 0.375rem);
    height: 49.875rem;
    color: #fff;
    background: rgba(4, 58, 11, 1);
    border-radius: 2.8125rem;
    overflow: hidden;
  }

  .about__kv h1 {
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
  }

  .about__kv p {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .about__kv .btn {
    margin-top: auto;
    padding-left: 1.5rem;
    padding-right: 0.75rem;
    height: 4.4375rem;
    font-size: 1.125rem;
  }

  .about__kv .btn i {
    margin-left: 1.125rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #fff url('../img/svg/hh.svg') no-repeat 50%/contain;
    border-radius: 50%;
  }

  .about__kv img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* ABOUT-KV END */

/* ABOUT-CAREER START */
  .about__career .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0rem, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.6875rem;
  }

  .about__career .list:last-child { margin-bottom: 0; }

  .about__career .block {
    padding: 2rem;
    width: 100%;
    color: #fff;
    background: #043A0B;
    border-radius: 1.375rem;
  }

  .about__career .block.big { height: 12.8125rem; }
  .about__career .block.small { height: 11.375rem; }

  .about__career h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    height: 4.1875rem;
    font-weight: 500;
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
  }

  .about__career p {
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
  }
/* ABOUT-CAREER END */

/* ABOUT-WORK START */
  .about__work .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .about__work .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    width: 100%;
    height: 18.375rem;
    color: #272727;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 1.375rem;
  }

  .about__work img {
    margin-bottom: 1.75rem;
    width: 100%;
    height: 3.75rem;
    object-fit: contain;
    object-position: 0% 50%;
  }

  .about__work p {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .about__work .btn {
    margin-top: auto;
    padding: 0.125rem 0 0;
    width: 11.5625rem;
    height: 2.8125rem;
    font-size: 1rem;
  }
/* ABOUT-WORK END */

/* ABOUT-BANNER START */
  .about__banner .block {
    position: relative;
    width: 100%;
    height: 49.875rem;
    background: rgba(4, 58, 10, 1);
    border-radius: 2.8125rem;
    overflow: hidden;
  }

  .about__banner picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .about__banner picture img { object-position: 50% 100%; }

  .about__banner .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 4.875rem;
    left: calc(50% - 4.1875rem);
    padding: 0;
    width: 10.8125rem;
    height: 4.4375rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: none;
    border-radius: 10rem;
    transform: translate(-50%, 0);
    z-index: 2;
  }

  .about__banner .btn:hover { text-decoration: none; }

  .about__banner .btn::before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #A064DC;
    border-radius: 10rem;
    z-index: -1;
    transition: 0.3s;
  }

  .about__banner .btn:hover::before { width: calc(100% + 4.1875rem); }

  .about__banner .btn b {
    position: absolute;
    top: 0;
    right: -4.1875rem;
    width: 10.0625rem;
    height: 100%;
    background: #CD9BF5;
    border-radius: 10rem;
    z-index: -2;
  }

  .about__banner .btn i {
    display: block;
    position: absolute;
    top: 50%;
    right: -0.625rem;
    width: 2.5625rem;
    height: 2.5625rem;
    background: url('../img/svg/search.svg') no-repeat 50%/contain;
    transform: translate(100%, -50%);
    z-index: 2;
  }
/* ABOUT-BANNER END */

/* 404 START */
  .page-404 {
    padding-top: 8.75rem;
    background: url('../img/404-bg.png') no-repeat 0% 100%/contain;
  }

  .page-404 h2 {
    margin: 0 0 2.25rem;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .page-404__title {
    display: block;
    margin: 0 auto;
    width: 58.125rem;
  }

  .page-404 .btns {
    justify-content: center;
    position: absolute;
    bottom: 1.875rem;
    left: 0;
    width: 100%;
  }

  .page-404 .btns .btn {
    margin: 0 0.5rem;
    padding: 0 2.125rem;
    height: 4.4375rem;
    font-size: 1.125rem;
  }

  .page-404 .btns .btn-hh { padding-left: 1.5rem; padding-right: 0.75rem; }

  .page-404 .btns .btn-hh i {
    display: block;
    margin-left: 1.125rem;
    width: 3.1875rem;
    height: 3.1875rem;
    background: #D81921 url('../img/svg/hh-2.svg') no-repeat 50%/contain;
    border-radius: 50%;
  }
/* 404 END */