@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:500,700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

h1 {
  margin: 0px;
  padding: 0px;
}

/*--------------------*/
body {
  font-family: 'Josefin Sans', 'Times', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--blue);
  background: #FFE6D7;
}

a {
  color: var(--blue);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.wrapper__top {
  position: relative;
  background-color: rgba(255, 230, 215, 0.35);
}

.wrapper__top::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}

.button {
  position: relative;
  background: linear-gradient(94.66deg, #4499D9 17.46%, #7367BE 87.77%);
  background-size: 100% 100%;
  background-position: 0% 0%;
  padding: 14px 16px;
  border-radius: 25px;
  line-height: 1;
  color: var(--white);
  transition: 0.4s ease;
  z-index: 4;
}

.button:hover {
  background-size: 200% 100%;
  background-position: 100% 50%;
}

.button.big {
  padding: 14px 30px;
}

button:focus, a:focus {
  border: 2px solid blue;
}

.link {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--blue);
  transition: color .3s ease-in;
}

.link:hover {
  color: #28415a;
}

.subtitle {
  font-weight: 500;
  font-size: 1.27rem;
  line-height: 1.05;
  margin-bottom: 26px;
}

.title {
  font-weight: 700;
  font-size: 3.77rem;
  line-height: 1.15;
  color: #EB8382;
  color: var(--red);
  margin-bottom: 30px;
}

.title span {
  color: var(--blue);
}

.desc {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  color: #826F8C;
  margin-bottom: 36px;
}

.lock {
  overflow: hidden;
}

.wrapperDialog {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  transform: scale(0);
  transform: rotate(120deg);
  transition: 0.5s ease-in;
  overflow-y: scroll;
  z-index: -1;
}

.wrapperDialog.active {
  z-index: 10;
  background-color: #00000064;
  transform: scale(1);
  transform: rotate(0deg);
  z-index: 100;
}

.wrapperDialog.active .dialog {
  opacity: 1;
}

.wrapperDialog .dialog {
  display: inline-flex;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffffc8;
  min-height: 120px;
  border-radius: 20px;
  max-width: 600px;
  transition: 0.5s ease-in;
  padding: 20px 30px;
}

.wrapperDialog .dialog.ruls {
  max-width: 700px;
}

.wrapperDialog .dialog span {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.wrapperDialog .dialog__button {
  padding: 10px 30px !important;
  margin: 0 auto;
}

.wrapperDialog .dialog__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 25px;
}

:root {
  --blue: #446381;
  --red: #EB8382;
  --white: #fff;
}

.header {
  padding: 10px 0;
}

.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer {
  padding: 25px 0 20px 0;
  border-top: 1px solid #816F8C;
}

.footer__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  margin-top: -8px;
}

.footer__copyright {
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1;
  color: #826F8C;
}

.footer__socials {
  display: flex;
  column-gap: 20px;
}

.footer__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 10px;
}

.footer__social svg {
  transition: 0.3s ease-in;
}

.footer__social::before {
  display: flex;
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background-color: #FCD8CB;
  border-radius: 100%;
  z-index: -1;
  transition: 0.3s ease-in;
}

.footer__social:hover::before {
  background-color: #FBDACF;
}

.footer__social:hover svg {
  fill: #203345;
}

.try-it {
  margin-top: 50px;
  padding-bottom: 100px;
}

.try-it__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.try-it__content {
  max-width: 520px;
}

.try-it__subtitle {
  position: relative;
}

.try-it__subtitle::before, .try-it__subtitle::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 100%;
  background-image: url("../img/bg/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
  left: 225px;
}

.try-it__subtitle::after {
  left: 300px;
}

.try-it__title {
  position: relative;
}

.try-it__title::before {
  position: absolute;
  content: '';
  width: 115px;
  height: 115px;
  background-image: url("../img/bg/x-solid.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  top: 0;
  bottom: 0;
  left: -160px;
  margin: auto;
}

.try-it__button {
  position: relative;
}

.try-it__button::before {
  position: absolute;
  content: '';
  width: 115px;
  height: 115px;
  background-image: url("../img/bg/x-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  right: -150px;
  bottom: -130px;
}

.try-it__image-block {
  position: relative;
}

.try-it__image-block::before {
  position: absolute;
  content: '';
  width: 120px;
  height: 100px;
  background-image: url("../img/bg/dots.svg");
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -200px;
}

.try-it #try-it-box__VR {
  position: absolute;
  top: 0;
  left: -70px;
}

.try-it #try-it-box__Controler {
  position: absolute;
  bottom: 0;
  right: -5%;
}

.try-it-box {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.4);
  padding: 18px;
  border-radius: 10px;
}

.try-it-box__desc {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  max-width: 100px;
}

.try-it-box__title {
  font-weight: 500;
  font-size: 0.556rem;
  line-height: 1.1;
}

.try-it-box__price {
  font-weight: 700;
  font-size: 0.556rem;
  line-height: 1.1;
  color: #EB8382;
}

.try-it-box__reviews {
  display: flex;
  gap: 5px;
  font-size: 0.5rem;
  line-height: 1.2;
}

.try-it-box__stars {
  display: flex;
}

.try-it-box__stars svg {
  width: 8px;
  height: 8px;
}

#try-it-box__Controler {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 5px;
}

.about__body {
  display: flex;
  align-items: center;
  gap: 75px;
  flex-direction: row;
}

.about__image-block {
  width: 100%;
}

.about__image {
  width: 100%;
  height: auto;
}

.about__title {
  font-size: 3rem;
}

.VR-about {
  margin-top: 100px;
  padding-bottom: 75px;
}

.VR-about .about__content {
  max-width: 540px;
  position: relative;
}

.VR-about .about__content::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 360px;
  background-image: url("../img/about/VR.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -300px;
  left: 50px;
  margin: auto;
}

.VR-about .about__content::before {
  position: absolute;
  content: '';
  display: flex;
  width: 400px;
  height: 500px;
  background-image: url("../img/about/bgMen.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: -100px;
  right: -250px;
}

.XBOX-about {
  position: relative;
  padding: 50px 0;
  background-color: rgba(255, 230, 215, 0.1);
  background-repeat: no-repeat;
  background-size: cover;
}

.XBOX-about::before {
  position: absolute;
  content: '';
  background-image: url("../img/about/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
}

.XBOX-about .about__content {
  max-width: 520px;
}

.XBOX-about .about__image-block {
  position: relative;
}

.XBOX-about .about__image-block::before {
  position: absolute;
  content: '';
  background-image: url("../img/bg/dots.svg");
  background-repeat: no-repeat;
  width: 170px;
  height: 170px;
  bottom: 20px;
  right: -100px;
  z-index: -1;
}

.pricing {
  padding: 50px 0;
}

.pricing__body {
  text-align: center;
}

.pricing__plan {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.pricing__item {
  position: relative;
  padding: 30px 42px;
  background: #FBDACF;
  box-shadow: 0px 20px 50px rgba(132, 148, 205, 0.08);
  border-radius: 20px;
  text-align: left;
  transition: all 0.1s ease-in;
  z-index: 2;
}

.pricing__item::after {
  position: absolute;
  content: '';
  bottom: -75px;
  left: -74px;
  background-image: url("../img/pricing/bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 200px;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.pricing__item::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #446381 0%, #826F8C 100%);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: 1;
}

.pricing__item:hover {
  transform: scale(1.1);
  color: #fff;
}

.pricing__item:hover .pricing__list-item {
  color: #fff;
}

.pricing__item:hover .pricing__list-item::before {
  background-image: url("../img/list-dots-active.svg");
}

.pricing__item:hover::after {
  opacity: 1;
}

.pricing__item:hover::before {
  opacity: 1;
}

.pricing__content {
  position: relative;
  z-index: 4;
}

.pricing__name {
  font-weight: 700;
  font-size: 1.77rem;
  line-height: 1;
  margin-bottom: 30px;
}

.pricing__price {
  font-weight: 700;
  font-size: 2.77rem;
  line-height: 1;
  color: #EB8382;
  margin-bottom: 40px;
}

.pricing__price .dollar {
  font-size: 1.5rem;
}

.pricing__price span {
  font-size: 1rem;
}

.pricing__list {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  margin-bottom: 50px;
}

.pricing__list-item {
  position: relative;
  padding-left: 26px;
  color: #826F8C;
  transition: .4s ease-in;
}

.pricing__list-item::before {
  position: absolute;
  content: '';
  width: 13px;
  height: 11px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../img/list-dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: .4s ease-in;
}

.pricing__button {
  width: 100%;
}

@media (max-width: 1241px) {
  .try-it__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .try-it__image-block {
    width: 100%;
    height: auto;
  }
  .try-it__image {
    width: 100%;
    min-width: 350px;
    height: auto;
  }
  .try-it #try-it-box__Controler {
    position: absolute;
    bottom: 0;
    right: -5%;
  }
  .about__body {
    gap: 50px;
  }
}

@media (max-width: 1025px) {
  html {
    font-size: 14px;
  }
  .logo img {
    max-width: 180px;
    height: auto;
  }
  .header {
    padding: 5px 0;
  }
  .header__nav, .header__list {
    gap: 30px;
  }
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .title {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  .desc {
    margin-bottom: 20px;
  }
  .button {
    padding: 10px 12px;
  }
  .try-it {
    margin-top: 50px;
    padding-bottom: 60px;
  }
  .try-it__body {
    gap: 15px;
  }
  .try-it__content {
    max-width: 500px;
  }
  .try-it__subtitle {
    position: relative;
  }
  .try-it__subtitle::before {
    left: 170px;
  }
  .try-it__subtitle::after {
    left: 230px;
  }
  .try-it__title {
    position: relative;
  }
  .try-it__title::before {
    display: none;
  }
  .try-it__button {
    position: relative;
  }
  .try-it__button::before {
    width: 60px;
    height: 60px;
    background-image: url("../img/bg/x-red.svg");
    background-size: cover;
    right: -75px;
    bottom: -60px;
  }
  .try-it__image-block::before {
    display: none;
  }
  .try-it #try-it-box__Controler {
    right: 7%;
    padding: 10px;
  }
  .try-it #try-it-box__Controler .desc {
    max-width: none;
  }
  .try-it-box {
    padding: 10px;
  }
  .try-it-box__desc {
    row-gap: 5px;
    max-width: 80px;
  }
  .try-it-box__stars {
    display: flex;
  }
  .try-it-box__stars svg {
    width: 8px;
    height: 8px;
  }
  .try-it-box__image {
    width: 56px;
    height: auto;
  }
  .about {
    padding-bottom: 20px;
  }
  .about__body {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row;
  }
  .about__title {
    font-size: 3rem;
  }
  .about__image {
    width: 100%;
    min-width: 250px;
    height: auto;
  }
  .VR-about {
    padding-bottom: 75px;
  }
  .VR-about .about__content {
    max-width: 430px;
  }
  .VR-about .about__content::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 160px;
    background-size: cover;
    bottom: -100px;
    left: 00px;
    margin: auto;
  }
  .XBOX-about {
    padding: 30px 0;
  }
  .XBOX-about .about__content {
    max-width: 450px;
  }
  .pricing {
    padding: 40px 0;
  }
  .pricing__plan {
    margin-top: 40px;
    gap: 40px;
  }
  .pricing__item {
    padding: 30px 30px;
  }
  .pricing__name {
    font-size: 1.66rem;
    margin-bottom: 25px;
  }
  .pricing__price {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .pricing__price .dollar {
    font-size: 1.5rem;
  }
  .pricing__price span {
    font-size: 1rem;
  }
  .pricing__list {
    row-gap: 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 770px) {
  .container {
    padding: 0 20px;
  }
  .header {
    padding: 5px 0;
  }
  .header__nav {
    margin-top: 0;
  }
  .header__list {
    position: fixed;
    left: 200%;
    top: 0;
    width: 100%;
    height: 100%;
    gap: 30px;
    background-color: #EAAC8B;
    align-items: center;
    padding-top: 100px;
    flex-direction: column;
    transition: left 0.4s ease-in;
    overflow-y: scroll;
    z-index: 5;
  }
  .header__list .header__link {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .header__burger {
    position: relative;
    width: 30px;
    height: 20px;
    background-color: transparent;
    transition: all 0.4s ease;
    z-index: 5;
  }
  .header__burger span {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7367BE;
    transition: all 0.4s ease;
  }
  .header__burger::after, .header__burger::before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7367BE;
    transition: all 0.4s ease;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__body.active .header__logo {
    text-align: center;
    z-index: 6;
  }
  .header__body.active .header__list {
    left: 0;
  }
  .header__body.active .header__burger span {
    opacity: 0;
  }
  .header__body.active .header__burger::after, .header__body.active .header__burger::before {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header__body.active .header__burger::before {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
    text-align: center;
  }
  .header__body.active .header__burger::after {
    transform: rotate(-45deg);
  }
  .logo img {
    width: 170px;
    height: auto;
  }
  .button {
    padding: 10px 11px;
  }
  .subtitle {
    margin-bottom: 15px;
  }
  .title {
    margin-bottom: 15px;
  }
  .desc {
    margin-bottom: 15px;
  }
  .try-it {
    margin-top: 30px;
    padding-bottom: 60px;
  }
  .try-it__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .try-it__content {
    max-width: none;
  }
  .try-it__button {
    position: relative;
  }
  .try-it__button::before {
    width: 60px;
    height: 60px;
    background-image: url("../img/bg/x-red.svg");
    background-size: cover;
    right: -100px;
    bottom: -20px;
  }
  .try-it__image-block {
    margin: 0 auto;
    max-width: 400px;
  }
  .try-it #try-it-box__VR {
    left: -3%;
    top: 0px;
  }
  .try-it #try-it-box__Controler {
    right: -2%;
    bottom: -25px;
    padding: 10px;
  }
  .try-it #try-it-box__Controler .desc {
    max-width: none;
  }
  .about__body {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  .about__title {
    font-size: 3rem;
  }
  .about__image-block {
    max-width: 400px;
    margin: 0 auto;
  }
  .about__image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .VR-about {
    margin-top: 50px;
  }
  .VR-about .about__content {
    max-width: none;
  }
  .VR-about .about__content::after {
    display: none;
  }
  .XBOX-about {
    padding: 30px 0;
  }
  .XBOX-about .about__content {
    max-width: none;
  }
  .XBOX-about .about__body {
    flex-direction: column;
  }
  .pricing {
    padding: 40px 0;
  }
  .pricing__plan {
    grid-template-columns: minmax(auto, 320px);
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
  }
  .pricing__item {
    padding: 30px 30px;
  }
  .pricing__name {
    font-size: 1.66rem;
    margin-bottom: 25px;
  }
  .pricing__price {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .pricing__price .dollar {
    font-size: 1.5rem;
  }
  .pricing__price span {
    font-size: 1rem;
  }
  .pricing__list {
    row-gap: 25px;
    margin-bottom: 30px;
  }
  .footer {
    padding: 15px 0 15px 0;
    border-top: 1px solid #816F8C;
  }
  .footer__body {
    display: grid;
    gap: 20px;
    grid-template-areas: 'logo social' 'copy copy';
  }
  .footer__logo {
    grid-area: logo;
    margin-top: -8px;
  }
  .footer__copyright {
    grid-area: copy;
    text-align: center;
  }
  .footer__socials {
    grid-area: social;
    column-gap: 10px;
  }
  .footer__social::before {
    width: 30px;
    height: 30px;
  }
  .footer__social svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 12px;
  }
  .logo img {
    width: 130px;
  }
  .button {
    font-size: 0.9rem;
    padding: 8px;
  }
  .header__nav {
    margin-top: 5px;
    gap: 15px;
  }
  .header__burger {
    width: 25px;
  }
  .subtitle {
    margin-bottom: 10px;
  }
  .title {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .desc {
    margin-bottom: 10px;
  }
  .try-it {
    margin-top: 30px;
    padding-bottom: 60px;
  }
  .try-it__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .try-it__content {
    max-width: none;
  }
  .try-it__button {
    position: relative;
  }
  .try-it__button::before {
    width: 40px;
    height: 40px;
    background-image: url("../img/bg/x-red.svg");
    background-size: cover;
    right: -70px;
    bottom: -10px;
  }
  .try-it__image-block {
    margin: 0 auto;
    min-width: 100px;
    max-width: 400px;
    height: auto;
  }
  .try-it__image {
    min-width: 100px;
  }
  .try-it #try-it-box__VR {
    left: -3%;
    top: 0px;
  }
  .try-it #try-it-box__Controler {
    right: -2%;
    bottom: -25px;
    padding: 10px;
  }
  .try-it #try-it-box__Controler .desc {
    max-width: none;
  }
  .try-it .try-it-box__image {
    max-width: 50px;
  }
  .XBOX-about .about__image-block {
    position: relative;
  }
  .XBOX-about .about__image-block::before {
    display: none;
  }
  .footer {
    padding: 25px 0 20px 0;
    border-top: 1px solid #816F8C;
  }
  .footer__body {
    display: grid;
    gap: 20px;
    grid-template-areas: 'logo social' 'copy copy';
  }
  .footer__logo {
    grid-area: logo;
    margin-top: -8px;
  }
  .footer__copyright {
    grid-area: copy;
    text-align: center;
  }
  .footer__socials {
    grid-area: social;
    column-gap: 5px;
  }
  .footer__social::before {
    width: 30px;
    height: 30px;
  }
  .footer__social svg {
    width: 15px;
    height: 15px;
  }
}
