* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

textarea {
  resize: none
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

@font-face {
  font-family: Mogra;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Mogra-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Inter-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Inter-Medium.woff2) format("woff2")
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Inter-Bold.woff2) format("woff2")
}

:root {
  --font-main: "Inter", sans-serif;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #000916;
  --main: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --dark: #000a23;
  --blue: #0097F5;
  --blue-020: rgba(0, 151, 245, 0.2);
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  --black-020: rgba(0, 0, 0, 0.2);
  --gray: #5e5e5e;
  --green: #02df02;
  --hover: #00558a;
  --active: #00558a
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: Mogra;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  -webkit-transition: color 3s ease-in-out;
  transition: color 3s ease-in-out
}

@media (max-width:1220px) {
  .logo {
    font-size: 22px
  }
}

@media (max-width:991px) {
  .logo {
    font-size: 20px
  }
}

@media (max-width:600px) {
  .logo {
    font-size: 18px
  }
}

@media (any-hover:hover) {
  .logo:hover {
    color: var(--hover)
  }
}

.logo:focus-visible {
  color: var(--hover)
}

.logo:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.logo span {
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

@media (max-width:991px) {
  .logo span {
    width: 26px;
    height: 26px
  }
}

@media (max-width:600px) {
  .logo span {
    width: 20px;
    height: 20px
  }
}

.tx-12-14 {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%
}

@media (max-width:600px) {
  .tx-12-14 {
    font-size: 14px
  }
}

.tx-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3
}

.tx-18-14 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3
}

@media (max-width:991px) {
  .tx-18-14 {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .tx-18-14 {
    font-size: 14px
  }
}

.tx-18-16 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3
}

@media (max-width:600px) {
  .tx-18-16 {
    font-size: 16px
  }
}

.tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4
}

@media (max-width:600px) {
  .tx-main {
    font-size: 14px
  }
}

.but {
  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;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  background-color: var(--blue);
  font-family: Mogra;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 246px;
  min-height: 47px;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  text-align: center
}

@media (max-width:991px) {
  .but {
    font-size: 14px;
    min-height: 40px
  }
}

@media (max-width:600px) {
  .but {
    font-size: 12px;
    min-height: 34px;
    min-width: 0;
    width: 100%
  }
}

.but_border {
  border: 2px solid var(--white);
  background-color: transparent
}

@media (any-hover:hover) {
  .but:hover {
    background-color: var(--hover)
  }
}

.but:focus-visible {
  background-color: var(--hover)
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.tx-20 {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%
}

.tx-30-20 {
  font-weight: 400;
  font-size: 30px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-30-20 {
    font-size: 26px
  }
}

@media (max-width:991px) {
  .tx-30-20 {
    font-size: 24px
  }
}

@media (max-width:600px) {
  .tx-30-20 {
    font-size: 20px
  }
}

.tx-38-20 {
  font-weight: 400;
  font-size: 38px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-38-20 {
    font-size: 32px
  }
}

@media (max-width:991px) {
  .tx-38-20 {
    font-size: 26px
  }
}

@media (max-width:600px) {
  .tx-38-20 {
    font-size: 20px
  }
}

.tx-60-24 {
  font-weight: 400;
  font-size: 60px;
  line-height: 120%
}

@media (max-width:1220px) {
  .tx-60-24 {
    font-size: 44px
  }
}

@media (max-width:991px) {
  .tx-60-24 {
    font-size: 32px
  }
}

@media (max-width:600px) {
  .tx-60-24 {
    font-size: 24px
  }
}

.el {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 16px;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .2);
  box-shadow: 0 0 10px rgba(255, 255, 255, .2);
  background-color: #000916
}

@media (max-width:600px) {
  .el {
    font-size: 14px
  }
}

.brr-10 {
  border-radius: 10px
}

.mb-16:not(:last-child) {
  margin-bottom: 16px
}

.mb-24:not(:last-child) {
  margin-bottom: 24px
}

.mb-40-16:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:1220px) {
  .mb-40-16:not(:last-child) {
    margin-bottom: 32px
  }
}

@media (max-width:991px) {
  .mb-40-16:not(:last-child) {
    margin-bottom: 24px
  }
}

@media (max-width:600px) {
  .mb-40-16:not(:last-child) {
    margin-bottom: 16px
  }
}

.mb-24-16:not(:last-child) {
  margin-bottom: 24px
}

@media (max-width:600px) {
  .mb-24-16:not(:last-child) {
    margin-bottom: 16px
  }
}

.p-24-16 {
  padding: 24px
}

@media (max-width:600px) {
  .p-24-16 {
    padding: 16px
  }
}

.ptb-40-20 {
  padding-top: 40px;
  padding-bottom: 40px
}

@media (max-width:991px) {
  .ptb-40-20 {
    padding-top: 30px;
    padding-bottom: 30px
  }
}

@media (max-width:600px) {
  .ptb-40-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
}

.p-40-20 {
  padding: 40px
}

@media (max-width:991px) {
  .p-40-20 {
    padding: 30px
  }
}

@media (max-width:600px) {
  .p-40-20 {
    padding: 20px
  }
}

.ptb-80-40 {
  padding-top: 80px;
  padding-bottom: 80px
}

@media (max-width:991px) {
  .ptb-80-40 {
    padding-top: 60px;
    padding-bottom: 60px
  }
}

@media (max-width:600px) {
  .ptb-80-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
}

.input {
  display: block;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0 16px;
  width: 100%;
  height: 49px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #999;
  background-color: var(--white);
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

.input_textarea {
  padding: 14px 16px;
  height: 100px
}

@media (any-hover:hover) {
  .input:hover {
    border-color: var(--hover)
  }
}

.input:focus-visible {
  border-color: var(--hover)
}

.color-black {
  color: var(--black)
}

.color-blue {
  color: var(--blue)
}

.color-gray {
  color: var(--gray)
}

.bg-blue-020 {
  background-color: var(--blue-020)
}

.bg-black-020 {
  background-color: var(--black-020)
}

.bg-white {
  background-color: var(--white)
}

.bg-blue {
  background-color: var(--blue)
}

.bg-dark {
  background-color: var(--dark)
}

.Mogra {
  font-family: Mogra
}

.hover-color {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .hover-color:hover {
    color: var(--hover)
  }
}

.hover-color:focus-visible {
  color: var(--hover)
}

.hover-color:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.w100 {
  min-width: 0;
  width: 100%
}

.relative-z2 {
  position: relative;
  z-index: 2
}

.word-break {
  word-break: break-all
}

.m-auto {
  margin-left: auto;
  margin-right: auto
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--brown)
}

.terms {
  padding-top: 120px;
  padding-bottom: 40px
}

@media (max-width:991px) {
  .terms {
    padding-top: 100px
  }
}

@media (max-width:600px) {
  .terms {
    padding-top: 80px
  }
}

.terms h1 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .terms h1 {
    font-size: 32px
  }
}

@media (max-width:600px) {
  .terms h1 {
    font-size: 16px
  }
}

.terms h1:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms h1:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms h1:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms h2 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700
}

@media (max-width:991px) {
  .terms h2 {
    font-size: 25px
  }
}

@media (max-width:600px) {
  .terms h2 {
    font-size: 14px
  }
}

.terms h2:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms h2:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms h2:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .terms p {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .terms p {
    font-size: 12px
  }
}

.terms p:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms p:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms p:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms ul:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms ul:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms ul:not(:last-child) {
    margin-bottom: 15px
  }
}

.terms li {
  font-size: 18px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400
}

@media (max-width:991px) {
  .terms li {
    font-size: 16px
  }
}

@media (max-width:600px) {
  .terms li {
    font-size: 12px
  }
}

.terms li:not(:last-child) {
  margin-bottom: 30px
}

@media (max-width:991px) {
  .terms li:not(:last-child) {
    margin-bottom: 20px
  }
}

@media (max-width:600px) {
  .terms li:not(:last-child) {
    margin-bottom: 15px
  }
}

.playrovia-header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5
}

.playrovia-header__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;
  gap: 10px
}

@media (max-width:991px) {
  .playrovia-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
  }
}

@media (max-width:600px) {
  .playrovia-header__menu {
    padding: 80px 30px 30px 30px
  }
}

.playrovia-header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.playrovia-header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent
}

@media (max-width:991px) {
  .playrovia-header__exit-menu {
    display: block;
    top: 30px;
    right: 30px
  }
}

@media (max-width:600px) {
  .playrovia-header__exit-menu {
    top: 15px;
    right: 15px
  }
}

.playrovia-header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.playrovia-header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.nav__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 24px
}

@media (max-width:991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px
  }
}

.nav__list_footer {
  display: block
}

.nav__link {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 20px;
  height: 14px;
  background-color: transparent
}

@media (max-width:991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 8px
}

.playrovia-hero {
  padding-top: 256px;
  padding-bottom: 152px;
  background-image: url(/img/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative
}

@media (max-width:991px) {
  .playrovia-hero {
    padding-top: 200px;
    padding-bottom: 130px
  }
}

@media (max-width:600px) {
  .playrovia-hero {
    padding-top: 162px;
    padding-bottom: 96px;
    background-image: url(/img/hero-mob.webp)
  }
}

.playrovia-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 1
}

.playrovia-hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media (max-width:600px) {
  .playrovia-hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media (max-width:600px) {
  .playrovia-discleimer__tltle {
    text-align: center
  }
}

.playrovia-block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px
}

@media (max-width:991px) {
  .playrovia-block__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.playrovia-block__image {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  width: 100%;
  padding-bottom: 25%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

@media (max-width:991px) {
  .playrovia-block__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding-bottom: 50%
  }
}

@media (max-width:600px) {
  .playrovia-block__image {
    padding-bottom: 62%
  }
}

.playrovia-block__image_change {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 690px;
  flex: 0 1 690px;
  padding-bottom: 33%
}

@media (max-width:991px) {
  .playrovia-block__image_change {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding-bottom: 50%
  }
}

@media (max-width:600px) {
  .playrovia-block__image_change {
    padding-bottom: 58%
  }
}

.playrovia-block__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.playrovia-block__descr-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px
}

.playrovia-block__icon {
  width: 96px;
  height: 96px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.playrovia-block__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 700px;
  flex: 0 1 700px;
  width: 100%
}

.playrovia-block__descr_change {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 510px;
  flex: 0 1 510px
}

@media (max-width:991px) {
  .playrovia-block__descr {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.why {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template: auto/repeat(3, 1fr);
  gap: 40px
}

@media (max-width:991px) {
  .why {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template: auto/repeat(2, 1fr);
    gap: 24px
  }
}

@media (max-width:600px) {
  .why {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.faq {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 24px
}

@media (max-width:991px) {
  .faq {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.faq__item.active .faq__button span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.faq__top {
  position: relative;
  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: 10px
}

.faq__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.faq__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.faq__button span {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

@media (any-hover:hover) {
  .faq__button:hover {
    opacity: .5
  }
}

.faq__button:focus-visible {
  opacity: .5
}

.faq__button:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.faq__bottom {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .3s ease-in-out;
  transition: height .3s ease-in-out
}

.faq__texts {
  padding-top: 0
}

.offer {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template: auto/repeat(3, 1fr);
  gap: 16px
}

@media (max-width:991px) {
  .offer {
    -ms-grid-rows: auto;
    -ms-grid-columns: (1fr)[2];
    grid-template: auto/repeat(2, 1fr)
  }
}

@media (max-width:600px) {
  .offer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.offer__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 99%
}

.playrovia-footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 20px
}

@media (max-width:1220px) {
  .playrovia-footer__top {
    -ms-grid-rows: auto;
    -ms-grid-columns: .5fr 1fr;
    grid-template: auto/.5fr 1fr
  }
}

@media (max-width:991px) {
  .playrovia-footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
  }
}

.playrovia-footer__top-left {
  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;
  gap: 120px
}

@media (max-width:1220px) {
  .playrovia-footer__top-left {
    gap: 40px
  }
}

@media (max-width:991px) {
  .playrovia-footer__top-left {
    gap: 16px 20px
  }
}

@media (max-width:600px) {
  .playrovia-footer__top-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.playrovia-footer__warning {
  width: 83px;
  height: 51px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.playrovia-footer__top-right {
  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: 20px
}

@media (max-width:991px) {
  .playrovia-footer__top-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
}

.playrovia-footer__address {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 293px;
  flex: 0 1 293px;
  width: 100%;
  font-style: normal
}

@media (max-width:991px) {
  .playrovia-footer__address {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.playrovia-footer .nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 223px;
  flex: 0 1 223px;
  width: 100%
}

@media (max-width:991px) {
  .playrovia-footer .nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

.wrapper-checkbox {
  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;
  gap: 10px;
  position: relative
}

.wrapper-checkbox__icon {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  position: relative
}

.wrapper-checkbox__icon span {
  position: relative;
  display: none;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translate(1px, -2px);
  transform: rotate(-45deg) translate(1px, -2px)
}

.wrapper-checkbox__icon span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 60%;
  background-color: #999397;
  z-index: 1
}

.wrapper-checkbox__icon span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #999397;
  z-index: 1
}

.wrapper-checkbox__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  z-index: 2;
  cursor: pointer
}

.wrapper-checkbox__checkbox:checked+.wrapper-checkbox__icon {
  background-color: var(--white)
}

.wrapper-checkbox__checkbox:checked+.wrapper-checkbox__icon span {
  display: block
}

.playrovia-contacts {
  padding-top: 144px;
  padding-bottom: 80px
}

@media (max-width:991px) {
  .playrovia-contacts {
    padding-bottom: 60px;
    padding-top: 110px
  }
}

@media (max-width:600px) {
  .playrovia-contacts {
    padding-top: 90px;
    padding-bottom: 40px
  }
}

.playrovia-contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px
}

@media (max-width:991px) {
  .playrovia-contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.playrovia-contacts__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 780px;
  flex: 0 1 780px;
  width: 100%
}

@media (max-width:991px) {
  .playrovia-contacts__left {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.playrovia-contacts__address {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  width: 100%;
  font-style: normal
}

@media (max-width:991px) {
  .playrovia-contacts__address {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.form.active .status {
  display: block
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px
}

.form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.status {
  border: 2px solid var(--green);
  padding: 16px;
  margin-top: 24px;
  display: none
}

.playrovia-game {
  padding-top: 144px;
  padding-bottom: 80px
}

@media (max-width:991px) {
  .playrovia-game {
    padding-bottom: 60px;
    padding-top: 110px
  }
}

@media (max-width:600px) {
  .playrovia-game {
    padding-top: 90px;
    padding-bottom: 40px
  }
}

.playrovia-game__game {
  height: 700px;
  width: 100%
}

@media (max-width:1220px) {
  .playrovia-game__game {
    height: 600px
  }
}

@media (max-width:991px) {
  .playrovia-game__game {
    height: 450px
  }
}

@media (max-width:600px) {
  .playrovia-game__game {
    height: 300px
  }
}