/* start file _layout.scss*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  font-family: 'Exo 2', sans-serif;
  font-size: 0;
}
html {
  width: 100%;
  height: 100%;
  background-image: url('/assets/private/bg-image.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.container {
  position: relative;
  margin: 0 220px;
  padding: 0 60px;
}
heading {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  text-align: center;
}
.header {
  position: relative;
  z-index: 10;
}
.header .container {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.header__phone {
  position: absolute;
  left: 60px;
  top: 30px;
  padding: 6px 0;
  text-decoration: none;
}
.header__phone img {
  height: 44px;
}
.header__phone span {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-size: 26px;
  font-weight: 600;
  color: white;
  line-height: 44px;
}
.header__logo {
  display: inline-block;
  vertical-align: center;
}
.header__logo img {
  height: 56px;
}
.header__logo img:first-child {
  display: inline-block;
}
.header__logo img:last-child {
  display: none;
}
.header__languages {
  position: absolute;
  top: 29px;
  right: 140px;
  width: 50px;
  border: 4px solid #9cff00;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}
.header__languages--opened {
  border-radius: 10px;
}
.header__languages a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  line-height: 50px;
  text-decoration: none;
  color: white;
  z-index: 1;
}
.header__languages .arrow {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}
.header__languages-list {
  display: none;
  text-align: center;
}
.header__languages-list a {
  padding: 0;
  border-top: 4px solid #9cff00;
  background: #0a203f;
  color: white;
}
.menu-container {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #0a203f;
  border: 4px solid #45b9eb;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
  transition: 0.2s;
}
.pagination {
  text-align: center;
}
.pagination a, .pagination button {
  cursor: pointer;
  border: none;
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
  padding: 0;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 10px;
}
.pagination a.current, .pagination button.current {
  background: #f31080;
}
.pagination a.active, .pagination button.active {
  background: #f31080;
}
.rights {
  text-align: center;
  padding: 40px 0;
  font-size: 18px;
  color: white;
  font-weight: 600;
}
.rights span {
  margin-right: 6px;
  color: #9cff00;
}
.rights__company {
  margin-right: 5px;
  text-decoration: none;
  color: #45b9eb;
}
.fab {
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
.fab a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #47c156;
  cursor: pointer;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  padding: 12px;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.3);
  transition: background-color 300ms ease;
}
.fab a:hover {
  background-color: #47c156;
}
.fab a img {
  filter: brightness(0) invert(1);
}
.fab a .lp-icon {
  font-size: 36px;
}
.fab .pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab .pulse {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  border-color: #47c156;
  border-style: solid;
}
.fab .pulse-1 {
  height: 64px;
  width: 64px;
  border-width: 3px;
  animation: 1.5s ease-out 0s infinite pulsate;
}
.fab .pulse-2 {
  height: 74px;
  width: 74px;
  border-width: 2px;
  animation: 1.5s ease-out 0s infinite pulsate;
}
.fab .pulse-3 {
  height: 84px;
  width: 84px;
  border-width: 1px;
  animation: 1.5s ease-out 0s infinite pulsate;
}
@-webkit-keyframes pulsate {
  0% {
    transform: scale(1, 1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/* end file _layout.scss*/
/* start file _about.scss*/
.about {
  padding: 0 60px 10px;
  margin: 50px 0 -20px;
}
.about .container {
  display: grid;
  grid-template-columns: 50fr 50fr;
  grid-gap: 80px;
  padding-top: 40px;
  text-align: justify;
}
.about .container p {
  margin: 0 0 25px;
  font-size: 19px;
  line-height: 23px;
  color: white;
}
/* end file _about.scss*/
/* start file _contacts.scss*/
.contacts {
  padding: 80px 0;
  text-align: center;
}
.contacts__phone {
  font-size: 80px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.contacts__mail {
  display: block;
  font-size: 30px;
  color: #45b9eb;
  font-weight: 700;
}
.contacts__wh {
  padding: 30px 0 20px;
}
.contacts__wh p {
  margin: 0;
  padding: 26px 0 6px;
  font-size: 21px;
  color: white;
  font-weight: 700;
}
.contacts__wh span {
  font-weight: 700;
}
.contacts__wh span.open {
  font-size: 50px;
  color: #9cff00;
}
.contacts__wh span.close {
  font-size: 24px;
  color: #f31080;
}
.contacts__messengers a {
  display: inline-block;
  vertical-align: top;
  margin: 40px 40px 0;
  text-decoration: none;
}
.contacts__messengers img {
  display: inline-block;
  vertical-align: top;
  height: 70px;
}
.contacts__messengers span {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
  font-size: 32px;
  color: white;
  font-weight: 700;
  line-height: 70px;
}
/* end file _contacts.scss*/
/* start file _gallery.scss*/
.gallery {
  margin-top: 50px;
}
.gallery .tabs {
  margin-bottom: 60px;
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  margin-top: -60px;
}
.gallery__arrow img {
  height: 60px;
}
.gallery__arrow--left {
  left: -40px;
}
.gallery__arrow--right {
  right: -40px;
  transform: rotate(180deg);
}
.gallery__arrow--games {
  margin-top: 0;
}
.gallery__item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  background: white;
  box-sizing: border-box;
  border-radius: 30px;
  border: 4px solid white;
  overflow: hidden;
}
.gallery__item--short {
  height: 250px;
}
.gallery__item--long {
  height: 320px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.gallery__title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}
.gallery__genre {
  font-size: 18px;
  font-weight: 600;
  color: #9cff00;
}
.gallery__pagination {
  margin-top: 50px;
}
.gallery-page {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
  padding-top: 40px;
  text-align: center;
}
/* end file _gallery.scss*/
/* start file _location.scss*/
.location {
  margin: 0 60px;
  text-align: center;
}
.location .container {
  padding: 60px 0;
  background: #00031d;
  border-radius: 30px;
  overflow: hidden;
}
.location__content {
  position: relative;
  z-index: 1;
}
.location__logo {
  height: 70px;
}
.location__address {
  display: inline-block;
  vertical-align: top;
  padding: 50px 0;
  font-size: 31px;
  color: #45b9eb;
  font-weight: 700;
}
.location__route {
  display: inline-block;
  font-size: 19px;
  color: #f31080;
  text-decoration: none;
  font-weight: 700;
}
.location__route div {
  text-decoration: underline;
}
.location__route img {
  margin-top: 20px;
  height: 50px;
}
.location__social {
  padding-top: 60px;
}
.location__social a {
  display: inline-block;
  vertical-align: top;
  margin: 0 25px;
}
.location__social a img {
  height: 60px;
}
.location__map {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -30px;
  width: 100%;
  height: auto;
  opacity: 0.2;
}
/* end file _location.scss*/
/* start file _menu.scss*/
:root {
  --color-dark: black;
  --td: 150ms;
  --te: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav-main {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  top: 0;
  left: -100%;
  position: fixed;
  transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
  width: 100%;
  z-index: 1000;
}
.nav-main::before, .nav-main::after {
  content: "";
  background-color: #021124;
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform calc(var(--td) * 2) var(--td) var(--te);
  width: 100%;
  z-index: -100;
}
.nav-main::before {
  top: 0;
}
.nav-main::after {
  bottom: 0;
}
.nav-main .menu__item {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}
[id=main-navigation-toggle] {
  opacity: 0;
  position: fixed;
  top: -100%;
  z-index: 1001;
}
[id=main-navigation-toggle] ~ label {
  top: 29px;
  right: 338px;
  cursor: pointer;
  position: fixed;
  z-index: 1001;
}
@media screen and (max-width: 1200px) {
  [id=main-navigation-toggle] ~ label {
    /* display: inherit; */
  }
}
[id=main-navigation-toggle] ~ label span {
  display: block;
  height: 2rem;
  padding: 0.5rem;
  position: absolute;
  z-index: 5;
  margin: 5px;
  transition: transform calc(var(--td) * 3) var(--te);
  width: 2rem;
}
[id=main-navigation-toggle] ~ label span::before, [id=main-navigation-toggle] ~ label span::after {
  background-color: #ffffff;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: transform calc(var(--td) * 3) var(--te);
  top: 0;
  width: calc(100% - 1rem);
  border-radius: 3px;
}
[id=main-navigation-toggle] ~ label span::before {
  transform: rotate(0) translateY(-100%);
}
[id=main-navigation-toggle] ~ label span::after {
  transform: rotate(0) translateY(100%);
}
[id=main-navigation-toggle]:checked ~ label span {
  transform: rotate(1turn);
}
[id=main-navigation-toggle]:checked ~ label span::before {
  transform: rotate(45deg);
  background-color: white;
}
[id=main-navigation-toggle]:checked ~ label span::after {
  transform: rotate(-45deg);
  background-color: white;
}
[id=main-navigation-toggle]:checked ~ .nav-main {
  left: 0;
  transition: transform 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::before, [id=main-navigation-toggle]:checked ~ .nav-main::after {
  transform: translateX(0);
  transition-delay: 0s;
}
[id=main-navigation-toggle]:checked ~ .nav-main::after {
  transition-delay: calc(var(--td) / 2);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(1) {
  transition-delay: calc(var(--td) * 2 * (1 * 0.25));
  z-index: -1;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(2) {
  transition-delay: calc(var(--td) * 2 * (2 * 0.25));
  z-index: -2;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(3) {
  transition-delay: calc(var(--td) * 2 * (3 * 0.25));
  z-index: -3;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(4) {
  transition-delay: calc(var(--td) * 2 * (4 * 0.25));
  z-index: -4;
}
[id=main-navigation-toggle]:checked ~ .nav-main .menu__item:nth-child(5) {
  transition-delay: calc(var(--td) * 2 * (5 * 0.25));
  z-index: -5;
}
.menu {
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.menu > .menu__item {
  font-size: 36px;
  font-weight: 700;
}
.menu__item {
  display: block;
  position: relative;
}
.menu__item:hover .menu__link::before, .menu__item:hover .menu__link::after {
  animation: blink 1s var(--td) steps(1, end) forwards infinite;
  transform: translateX(calc(100% - 0.5rem));
  transition-duration: calc(var(--td) * 3);
}
.menu__item:hover .menu__link::after {
  transition-delay: calc(var(--td) / 2);
}
.menu__link {
  color: white;
  display: inline-block;
  overflow: hidden;
  padding: 0.5rem 1rem 0.125rem;
  position: relative;
  text-decoration: none;
  transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
  z-index: 1;
}
.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item {
  --pull: 30%;
}
.menu__item .menu__link {
  opacity: 0.25;
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, calc(var(--pull) * -1));
}
.menu__item:hover > .menu__link {
  color: #45b9eb;
  opacity: 1;
  transform: translate(0, 0);
}
.menu__item:hover > .menu__link:hover {
  color: #9cff00;
  transition-delay: 0s;
}
.menu__item:hover ~ .menu__item > .menu__link {
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, var(--pull));
}
@keyframes blink {
  50%, 100% {
    opacity: 0;
  }
}
/* end file _menu.scss*/
/* start file _pricelist.scss*/
.pricelist {
  margin-top: 60px;
}
.pricelist__item {
  display: grid;
  grid-template-columns: 340px 1fr 150px 220px;
  grid-gap: 50px;
  position: relative;
  padding: 50px 0;
}
.pricelist__item:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ea0073;
  background: linear-gradient(90deg, #ea0073 0%, #00aae9 100%);
  opacity: 0.3;
}
.pricelist__item:last-child {
  padding-bottom: 0;
}
.pricelist__item:last-child:before {
  display: none;
}
.pricelist__time {
  position: relative;
  padding-left: 100px;
}
.pricelist__time span {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 5px;
  font-size: 40px;
  font-weight: 600;
  line-height: 36px;
  color: #f31080;
}
.pricelist__time span b {
  font-weight: 800;
}
.pricelist__time p {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #45b9eb;
}
.pricelist__timer {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
}
.pricelist__timer img {
  position: relative;
  z-index: 1;
}
.pricelist__timer .duration {
  position: absolute;
  top: 0;
  right: 0;
  background: #f31080;
}
.pricelist__timer .duration::after, .pricelist__timer .duration::before {
  content: '';
  position: absolute;
}
.pricelist__timer .duration::after {
  background: #000;
  border-radius: 6px;
}
.pricelist__timer .duration::before {
  background: #000;
  border-radius: 6px;
}
.pricelist__timer .duration--min15 {
  width: 50%;
  height: 50%;
}
.pricelist__timer .duration--min15::after {
  left: -2px;
  top: 14px;
  bottom: 5px;
  width: 4px;
  height: auto;
}
.pricelist__timer .duration--min15::before {
  left: 5px;
  bottom: -2px;
  right: 11px;
  width: auto;
  height: 4px;
}
.pricelist__timer .duration--min30 {
  width: 50%;
  height: 100%;
}
.pricelist__timer .duration--min30::after {
  left: -2px;
  top: 14px;
  bottom: 41px;
  width: 4px;
  height: auto;
}
.pricelist__timer .duration--min30::before {
  left: -2px;
  top: 41px;
  bottom: 11px;
  width: 4px;
  height: auto;
}
.pricelist__timer .duration--min60 {
  width: 100%;
  height: 100%;
}
.pricelist__timer .duration--min60::after {
  margin-left: -2px;
  left: 50%;
  top: 11px;
  bottom: 41px;
  width: 4px;
  height: auto;
}
.pricelist__timer .duration--min60::before {
  display: none;
}
.pricelist__desc {
  font-size: 20px;
  font-style: italic;
  color: white;
}
.pricelist__price {
  font-size: 70px;
  font-weight: 700;
  line-height: 67px;
  color: #9cff00;
}
.pricelist__reserve {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 70px;
  background: #ea0073;
  background: linear-gradient(90deg, #ea0073 0%, #00aae9 100%);
  line-height: 67px;
  font-size: 20px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 35px;
  text-align: center;
}
.pricelist__note {
  padding-top: 60px;
  font-size: 20px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.pricelist__note span {
  display: inline-block;
  vertical-align: top;
  margin-top: -6px;
  font-size: 40px;
  color: #f31080;
}
/* end file _pricelist.scss*/
/* start file _programs.scss*/
.programs {
  margin-top: 50px;
}
.programs .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  margin-top: 60px;
}
.programs__item {
  position: relative;
  padding: 35px;
  border-radius: 20px;
  border: 7px solid;
  overflow: hidden;
}
.programs__item--color-1 {
  background: #110009;
  box-shadow: 0 0 30px 0 rgba(243, 16, 128, 0.3);
  border-color: #f31080;
}
.programs__item--color-2 {
  background: #170b01;
  box-shadow: 0 0 30px 0 rgba(218, 200, 0, 0.3);
  border-color: #dac800;
}
.programs__item--color-3 {
  background: #061100;
  box-shadow: 0 0 30px 0 rgba(156, 255, 0, 0.3);
  border-color: #9cff00;
}
.programs__item--color-4 {
  background: #00031d;
  box-shadow: 0 0 30px 0 rgba(0, 132, 255, 0.3);
  border-color: #45b9eb;
}
.programs__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.programs__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programs__content {
  position: relative;
  z-index: 1;
}
.programs__info {
  position: relative;
  padding: 0 190px 0 0;
  box-sizing: border-box;
}
.programs__title {
  margin-bottom: 20px;
  min-height: 100px;
  font-size: 50px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
.programs__title img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  max-height: 100px;
  text-align: center;
}
.programs__desc {
  min-height: 140px;
  font-size: 26px;
  color: white;
  font-weight: 600;
  line-height: 30px;
}
.programs__desc span {
  color: #98f903;
  font-weight: 700;
}
.programs__deal {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
  background: #ff0000;
  border-radius: 50%;
  text-align: center;
}
.programs__deal .old-price {
  margin: 18px 0 3px 0;
  font-size: 44px;
  color: #fcff00;
  font-weight: 700;
  text-decoration: line-through;
  line-height: 40px;
}
.programs__deal .new-price {
  font-size: 72px;
  color: white;
  font-weight: 700;
  line-height: 60px;
}
.programs__deal p {
  margin: 0;
  padding: 8px 10px 0;
  font-size: 16px;
  color: white;
  font-style: italic;
}
.programs__terms {
  display: grid;
  grid-template-columns: 1fr 1fr 180px;
  grid-gap: 10px;
}
.programs__terms div {
  display: inline-block;
  vertical-align: top;
}
.programs__terms div img {
  display: inline-block;
  height: 60px;
}
.programs__terms div span {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 60px;
}
.programs__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  margin-top: 30px;
  text-align: center;
}
.programs__buttons a {
  height: 66px;
  background: #0a203f;
  line-height: 63px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}
.programs__buttons a img {
  display: inline-block;
  vertical-align: top;
  margin: 18px 10px 0 0;
  height: 26px;
}
.programs__buttons a:first-child {
  -webkit-border-top-left-radius: 35px;
  -webkit-border-bottom-left-radius: 35px;
  -moz-border-radius-topleft: 35px;
  -moz-border-radius-bottomleft: 35px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.programs__buttons a:last-child {
  -webkit-border-top-right-radius: 35px;
  -webkit-border-bottom-right-radius: 35px;
  -moz-border-radius-topright: 35px;
  -moz-border-radius-bottomright: 35px;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
.programs__buttons a.selected {
  background: #ea0073;
  background: linear-gradient(90deg, #ea0073 0%, #00aae9 100%);
}
/* end file _programs.scss*/
/* start file _slider.scss*/
.slider .owl-carousel .owl-stage-outer {
  border-radius: 30px;
  box-shadow: 0 0 40px 0 rgba(0, 126, 255, 0.3);
}
.slider__arrow {
  position: absolute;
  top: 50%;
  margin-top: -30px;
}
.slider__arrow img {
  height: 60px;
}
.slider__arrow--left {
  left: -40px;
}
.slider__arrow--right {
  right: -40px;
  transform: rotate(180deg);
}
.slider__item {
  position: relative;
  width: 100%;
  height: 540px;
  background: #021124;
  border-radius: 30px;
  overflow: hidden;
  text-align: left;
}
.slider__item--slide-vrclub .slider__title {
  box-sizing: border-box;
  font-size: 70px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}
.slider__item--slide-vrclub .slider__title span {
  display: block;
  font-size: 60px;
  font-weight: 700;
}
.slider__item--slide-vrclub .slider__title span.color-1 {
  color: #45b9eb;
}
.slider__item--slide-vrclub .slider__title span.color-2 {
  color: #f31080;
}
.slider__item--slide-vrclub .slider__image {
  right: -80px;
  bottom: -50px;
  height: 640px;
}
.slider__title {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  padding-left: 80px;
  width: 70%;
  height: 100%;
  box-sizing: border-box;
  z-index: 1;
}
.slider__image {
  position: absolute;
}
.slider__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slider__pagination {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: auto;
  z-index: 1;
}
/* end file _slider.scss*/
/* start file _tabs.scss*/
.tabs {
  margin: 40px 0 20px;
  text-align: center;
}
.tabs__item {
  display: inline-block;
  vertical-align: top;
  width: 250px;
  height: 60px;
  background: #0a203f;
  line-height: 58px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}
.tabs__item:first-child {
  -webkit-border-top-left-radius: 35px;
  -webkit-border-bottom-left-radius: 35px;
  -moz-border-radius-topleft: 35px;
  -moz-border-radius-bottomleft: 35px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.tabs__item:last-child {
  -webkit-border-top-right-radius: 35px;
  -webkit-border-bottom-right-radius: 35px;
  -moz-border-radius-topright: 35px;
  -moz-border-radius-bottomright: 35px;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
.tabs__item--selected {
  background: #ea0073;
  background: linear-gradient(90deg, #ea0073 0%, #00aae9 100%);
}
/* end file _tabs.scss*/
/* start file _responsive.scss*/
@media screen and (max-width: 1900px) {
  .container {
    margin: 0 150px;
  }
  [id=main-navigation-toggle] ~ label {
    right: 268px;
  }
}
@media screen and (max-width: 1700px) {
  .container {
    margin: 0 76px;
  }
  [id=main-navigation-toggle] ~ label {
    right: 194px;
  }
  .programs__title {
    font-size: 46px;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    margin: 0;
    padding: 0 40px;
  }
  .header__phone {
    left: 40px;
  }
  .header__languages {
    right: 130px;
  }
  .slider__arrow {
    display: none;
  }
  .gallery__arrow {
    display: none;
  }
  .location {
    margin: 0 40px;
  }
  [id=main-navigation-toggle] ~ label {
    right: 98px;
  }
}
@media screen and (max-width: 1300px) {
  .programs .container {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .programs__desc {
    min-height: auto;
  }
  .gallery-page {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1200px) {
  .slider__item {
    height: 500px;
  }
  .slider__item--slide-vrclub .slider__image {
    height: 600px;
  }
  .pricelist__item {
    grid-template-columns: 1fr 1fr;
  }
  .pricelist__price {
    font-size: 90px;
    line-height: 56px;
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .slider__item {
    height: 440px;
  }
  .slider__item--slide-vrclub .slider__title {
    padding-left: 50px;
    width: 80%;
    font-size: 60px;
  }
  .slider__item--slide-vrclub .slider__title span {
    font-size: 50px;
  }
  .slider__item--slide-vrclub .slider__image {
    right: -220px;
    height: 540px;
  }
  .about .container {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .gallery-page {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .container {
    padding: 0 20px;
  }
  .header .container {
    text-align: center;
  }
  .header__phone {
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: auto;
    left: auto;
    margin-top: 30px;
    width: 100%;
  }
  .header__languages {
    left: 20px;
    right: auto;
  }
  [id=main-navigation-toggle] ~ label {
    right: 78px;
  }
  .slider__item--slide-vrclub .slider__title {
    display: inline-block;
    margin-top: 20px;
    padding: 0 30px;
    width: 100%;
    font-size: 40px;
    line-height: 46px;
    text-align: center;
  }
  .slider__item--slide-vrclub .slider__title span {
    font-size: 38px;
  }
  .slider__item--slide-vrclub .slider__image {
    width: 100%;
    height: 370px;
    right: 0;
    bottom: -95px;
  }
  .slider__item--slide-vrclub .slider__image img {
    object-fit: cover;
  }
  .contacts {
    padding: 60px 0;
  }
  .contacts__phone {
    font-size: 70px;
  }
  .contacts__wh span.open {
    font-size: 40px;
  }
  .contacts__messengers span {
    font-size: 26px;
  }
  .location {
    margin: 0 20px;
  }
  .fab {
    width: 80px;
    height: 80px;
    bottom: 12px;
    right: 0;
  }
  .fab a {
    padding: 12px;
    width: 60px;
    height: 60px;
  }
  .fab .pulse-1 {
    height: 44px;
    width: 44px;
  }
  .fab .pulse-2 {
    height: 54px;
    width: 54px;
  }
  .fab .pulse-3 {
    height: 64px;
    width: 64px;
  }
}
@media screen and (max-width: 600px) {
  heading {
    font-size: 40px;
  }
  .tabs__content {
    display: inline-block;
    text-align: center;
  }
  .tabs__item {
    display: block;
  }
  .tabs__item:first-child {
    border-radius: 0;
    -webkit-border-top-left-radius: 35px;
    -webkit-border-top-right-radius: 35px;
    -moz-border-radius-topleft: 35px;
    -moz-border-radius-topright: 35px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }
  .tabs__item:last-child {
    border-radius: 0;
    -webkit-border-bottom-right-radius: 35px;
    -webkit-border-bottom-left-radius: 35px;
    -moz-border-radius-bottomright: 35px;
    -moz-border-radius-bottomleft: 35px;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
  }
  .pricelist__item {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    text-align: center;
  }
  .pricelist__timer {
    display: inline-block;
    vertical-align: top;
    position: relative;
  }
  .pricelist__time {
    padding-left: 0;
  }
  .pricelist__info {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
  }
  .pricelist__price {
    font-size: 90px;
    line-height: 70px;
  }
  .programs__item {
    padding: 30px;
    text-align: center;
  }
  .programs__info {
    padding: 0 0 20px 0;
  }
  .programs__title {
    min-height: auto;
    font-size: 36px;
  }
  .programs__desc {
    font-size: 25px;
    line-height: 30px;
  }
  .programs__deal {
    display: inline-block;
    position: relative;
    margin-top: 40px;
  }
  .programs__terms {
    grid-template-columns: 1fr;
  }
  .programs__buttons {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .programs__buttons a {
    margin-top: 20px;
    border-radius: 35px;
  }
  .contacts {
    padding: 60px 0;
  }
  .contacts__phone {
    font-size: 60px;
  }
  .contacts__mail {
    font-size: 26px;
  }
  .contacts__wh span.open {
    font-size: 38px;
  }
  .contacts__messengers a {
    margin: 40px 20px 0;
  }
  .contacts__messengers a span {
    display: none;
  }
  .location .container {
    padding: 50px 0;
  }
  .location__logo {
    height: 60px;
  }
  .location__address {
    padding: 40px 0;
    font-size: 28px;
  }
  .about {
    padding: 0 5px 10px;
  }
  .about .container {
    text-align: left;
  }
  .gallery-page {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding: 0 10px;
  }
  .pagination {
    display: none;
  }
  .header__languages {
    left: 10px;
  }
  .header__logo img:first-child {
    display: none;
  }
  .header__logo img:last-child {
    display: inline-block;
  }
  [id=main-navigation-toggle] ~ label {
    right: 68px;
  }
  .slider__item {
    height: 400px;
  }
  .slider__item--slide-vrclub .slider__title {
    font-size: 32px;
    line-height: 36px;
  }
  .slider__item--slide-vrclub .slider__title span {
    font-size: 28px;
  }
  .pricelist__info {
    display: block;
    margin-top: 20px;
    margin-left: 0;
  }
  .contacts {
    padding: 60px 0;
  }
  .contacts__phone {
    font-size: 44px;
  }
  .contacts__mail {
    margin-top: 10px;
    font-size: 24px;
  }
  .contacts__wh span.open {
    font-size: 36px;
  }
  .location {
    margin: 0 10px;
  }
  .location .container {
    padding: 40px 0;
  }
  .location__logo {
    height: 50px;
  }
  .location__address {
    padding: 30px 0;
    font-size: 20px;
  }
  .location__social {
    padding-top: 40px;
  }
  .location__social a {
    margin: 0 15px;
  }
  .location__social a img {
    height: 56px;
  }
}
/* end file _responsive.scss*/


