/* Null styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

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

html,
body {
  font-size: 100%;
  line-height: 1 !important;
  font-size: 14px !important;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #021115;
}

body {
  overflow: hidden;
}

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: 400;
}
/*--------------------*/

* {
  font-family: "Unbounded", sans-serif;
}

.container {
  padding: 0 87px;
}

@media screen and (max-width: 1000px) {
  .container {
    padding: 0 25px;
  }
}

.main-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.main {
  padding-bottom: 300px;
}

.title {
  font-size: 6em;
  font-weight: 700;
  line-height: 100px;
  text-align: left;
}

@media screen and (max-width: 1480px) {
  .title {
    font-size: 4.3em;
    line-height: 1.2;
  }
}

@media screen and (max-height: 800px) {
  .title {
    font-size: 4.3em;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1000px) {
  .title {
    font-size: 3em;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 500px) {
  .title {
    font-size: 2em;
    line-height: 1.2em;
  }
}

.white-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #ffffff;
  padding: 10px 15px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.white-button img,
.white-button svg {
  width: 25px;
}

.black-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #000000;
  padding: 10px 15px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.black-button img,
.black-button svg {
  width: 25px;
}

.black-button svg path {
  stroke: #000000;
}

.text-container {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  color: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.success-block__item img {
  width: 380px;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.block__info-title {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  color: #15abda;
  margin-bottom: 25px;
  max-width: 740px;
  text-transform: uppercase;
}

.block__info-text {
  font-family: "IBM Plex Sans";
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #ffffff;
  max-width: 795px;
}

@media screen and (max-width: 1000px) {
  .block__info-title {
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    color: #15abda;
    margin-bottom: 25px;
    max-width: 740px;
  }

  .block__info-text {
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    color: #ffffff;
    max-width: 795px;
  }
}

.side-text {
  font-family: "IBM Plex Sans";
  font-weight: 700;
  color: #15abda;
  position: absolute;
  z-index: 3;
  transform: translate(-50%, 0);
  height: 100%;
  width: auto;
  opacity: 0;
}

.intro-block {
  width: 100vw;
  position: relative;
}

.intro-block__back {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  background-color: var(--dark);
}

.intro-block__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

.intro-block__overflow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #021115;
}

.intro-block__overflow-back {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background-color: #ffffff;
  z-index: 0;
  transform: scale(0);
}

.intro-block__overflow-mask {
  width: 100%;
  height: 100%;
  background-image: url("../assets/subtract.png");
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
  transform: scale(0);
}

@media screen and (max-width: 1000px) {
  .intro-block__overflow-mask {
    background-image: url("../assets/y-small.png");
  }
  .intro-block__overflow-back {
    width: 95%;
    height: 95%;
    left: 2.5%;
    top: 2.5%;
  }
}

.intro-block__container {
  width: 100vw;
  height: 100vh;
}

.intro-block__text-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-block__text {
  font-size: 8.87em;
  font-weight: 400;
  line-height: 1.2em;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .intro-block__text {
    font-size: 3.5em;
    line-height: 2em;
  }
}

.intro-block__text:nth-child(1),
.intro-block__text:nth-child(3) {
  transform: translate(100%, 0);
}

.intro-block__text:nth-child(2),
.intro-block__text:nth-child(4) {
  transform: translate(-100%, 0);
}

.intro-block__main-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 150px !important;
}

@media screen and (max-width: 1000px) {
  .intro-block__main-content {
    padding-bottom: 50px !important;
    justify-content: center;
  }
}

.intro-block__main-text {
  font-size: 6.25em;
  font-weight: 400;
  line-height: 1.3em;
  text-align: left;
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .intro-block__main-text {
    font-size: 3.5em;
  }
}

.intro-block__blue-text {
  font-weight: 700;
  text-align: left;
  color: #15abda;
}

.intro-block__loader {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  font-size: 5em;
  font-weight: 800;
  color: #ffffff;
  scale: 0;
}

.grey-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
  background-color: transparent;
}

.grey-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.grey-block__text-container {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grey-block__text {
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-weight: 400;
}
.grey-block__title {
  text-transform: uppercase;
  /* font-size: 5.5em; */
  /* font-weight: 700; */
  color: var(--white);
  margin-bottom: 5vh;
}

@media screen and (min-width: 1448px) {
  .grey-block__title,
  .grey-block__text {
    font-size: 5em;
    line-height: 1em;
  }
}

.blue-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 100%);
  position: fixed;
  background-color: transparent;
}

.blue-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.blue-block__text-container {
  color: #ffffff !important;
  justify-content: center !important;
}

.color-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
  background-color: #021115;
}

.color-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.color-block__back {
  width: 100%;
  height: 100%;
  background-image: url("../assets/color-back.jpg");
  background-size: 100% 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .color-block__back {
    background-size: cover;
    object-position: center;
  }
}

.color-block__text-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 27px;
}

.color-block__title {
  color: #ffffff;
  text-align: center !important;
  text-transform: uppercase;
  font-weight: 400 !important;
}

.color-block__title b {
  font-weight: 700;
}

.color-block__info {
  font-family: "IBM Plex Sans";
  font-size: 35px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .color-block__title {
    font-size: 2.5em !important;
    text-align: left !important;
  }

  .color-block__info {
    font-size: 18px;
    line-height: 25px;
    text-align: left !important;
  }
}

.eye-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
  background-color: #ffffff;
  overflow: hidden;
}

@media screen and (max-width: 1480px) {
  .eye-block .title {
    font-size: 4.3em;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1000px) {
  .eye-block .title {
    font-size: 2.5em;
  }
}

.eye-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.eye-block__back {
  width: 80%;
  height: 100%;
  background-image: url("../assets/eye.jpg");
  background-size: 100% 100%;
  opacity: 1;
  position: absolute;
  top: 50vh;
  left: 87px;
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .eye-block__back {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    left: 0px;
  }
}

.eye-block__text-container {
  padding-top: 150px !important;
}

.eye-block__info > span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
}

@media screen and (max-width: 1000px) {
  .eye-block__info > span {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
  }
}

@media screen and (max-width: 400px) {
  .eye-block__info > span {
    font-size: 14px;
    line-height: 20px;
  }
}

.eye-block__link {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #000000;
}

.eye-block__info {
  width: 50vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, 0);
}

.eye-block__buttons {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 35px;
}

@media screen and (max-width: 1000px) {
  .eye-block__buttons {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .eye-block .black-button {
    font-size: 16px !important;
  }
}

.girl-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
  background-color: #021115;
  overflow: hidden;
}

.girl-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.girl-block__back {
  width: 100%;
  height: 100%;
  background-image: url("../assets/girl-back.jpg");
  background-size: 150%;
  background-position: center;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.girl-block__back:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}

.girl-block__text-container {
  color: #ffffff !important;
  padding-top: 150px !important;
}

.girl-block__info {
  max-width: 720px;
}

.girl-block__info > span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  margin-bottom: 50px;
  display: block;
}

@media screen and (max-width: 1000px) {
  .girl-block__back {
    background-size: cover;
    background-position: center;
  }

  .girl-block__info > span {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
    margin-bottom: 50px;
    display: block;
  }
}

.last-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 100%);
  position: fixed;
  background-color: #021115;
}

.last-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.last-block__pretitle {
  font-size: 25px;
  font-weight: 400;
  line-height: 100px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}
.last-block__title {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
  text-align: center !important;
  color: #ffffff;
  margin-bottom: 50px;
}

.last-block__text {
  font-size: 50px;
  font-weight: 400;
  line-height: 100px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}

.last-block__button {
  font-size: 30px;
  font-weight: 700;
  line-height: 100px;
  text-align: center;
  color: #15abda;
  padding: 0;
  background-color: transparent;
}

@media screen and (max-width: 1480px) {
  .last-block__pretitle {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .last-block__title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 25px;
  }

  .last-block__text {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .last-block__pretitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
  }
  .last-block__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    text-align: center !important;
    color: #ffffff;
  }
  .last-block__text {
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
  }

  .last-block__button {
    font-size: 30px;
    font-weight: 700;
    line-height: 100px;
    text-align: center;
    color: #15abda;
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 400px) {
  .last-block__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .last-block__text {
    font-size: 20px;
  }

  .last-block__button {
    font-size: 20px;
  }
}

@media screen and (max-height: 800px) {
  .last-block__pretitle {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .last-block__title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 25px;
  }

  .last-block__text {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
  }
}

.last-block__back {
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.last-block__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.scroller {
  position: relative;
  top: 0;
  left: 0;
  width: 100px;
  z-index: -1;
  height: 2800vh;
}

.slider-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 100%);
  position: fixed;
  background-color: #021115;
}

.slider-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 80px !important;
  padding-bottom: 50px !important;
}

.slider-block__slide {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}

.slider-block__slide-img {
  width: 445px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .slider-block__slide-img {
    width: 100%;
  }
}

.slider-block__slide-info {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-block__slide-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
  white-space: nowrap;
  text-transform: uppercase;
}

.slider-block__slide-text {
  font-family: "IBM Plex Sans";
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  max-width: 500px;
  margin: auto;
}

@media screen and (max-width: 1000px) {
  .slider-block__slide-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
    white-space: wrap;
  }
  .slider-block__slide-info {
    width: 100%;
  }

  .slider-block__slide-text {
    font-family: "IBM Plex Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    margin: auto;
  }
}

@media screen and (max-width: 500px) {
  .slider-block__slide-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
    white-space: wrap;
  }
  .slider-block__slide-info {
    width: 100%;
  }

  .slider-block__slide-text {
    font-family: "IBM Plex Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    margin: auto;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  .swiper {
    width: 80%;
    margin: auto;
  }
}

.swiper-slide {
  scale: 0.7;
  transition: 0.25s ease-in-out scale;
}

.swiper-slide .slider-block__slide {
  transition: 0.25s ease-in-out transform;
}

.swiper-slide-prev .slider-block__slide {
  transform: translate(-50%, 0);
}

.swiper-slide-next .slider-block__slide {
  transform: translate(50%, 0);
}

@media screen and (max-width: 1000px) {
  .swiper-slide-prev .slider-block__slide {
    transform: translate(0%, 0);
  }

  .swiper-slide-next .slider-block__slide {
    transform: translate(0%, 0);
  }
}

.swiper-slide-active {
  scale: 1;
  width: 70%;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto !important;
  height: fit-content !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-next img {
  transform: rotate(180deg);
}

.swiper-button-prev {
  bottom: 10%;
  top: auto;
  left: 5% !important;
  right: auto;
}

.swiper-button-next {
  bottom: 10%;
  top: auto;
  right: 5% !important;
  left: auto;
}

.success-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 100%);
  position: fixed;
  background-color: #021115;
}

.success-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 130px !important;
}

.success-block__title {
  color: #ffffff;
}

.success-block__content {
  position: relative;
  display: flex;
  align-items: center;
  width: 200%;
  gap: 5%;
}

.success-block__header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 62px;
}

@media screen and (max-width: 1000px) {
  .success-block__header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }
}

.success-block__item {
  position: relative;
  width: 50%;
}

@media screen and (max-width: 1000px) {
  .success-block__item img {
    opacity: 0.3;
    width: calc(100vw - 40px);
  }

  .success-block__item {
    width: 100%;
    max-width: calc(100vw - 40px);
  }
}

.success-block__text {
  font-family: "IBM Plex Sans";
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #ffffff;
  max-width: 400px;
}

.success-block__info {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  max-width: 80%;
}

@media screen and (max-width: 1000px) {
  .success-block__info {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    max-width: 95%;
    left: 2.5%;
  }
}

@media screen and (max-height: 600px) {
  .success-block__info {
    top: 20%;
  }
  .success-block__info .block__info-title {
    font-size: 2em;
  }
}

.success-block__item:first-child img {
  transform: scale(-1, 1);
}

.vr-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(0, 100%);
  position: fixed;
  background-color: #021115;
}

.vr-block__container {
  height: 100%;
}

.vr-block__main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  position: relative;
  padding-top: 120px !important;
  padding-bottom: 50px !important;
}

@media screen and (max-width: 1000px) {
  .vr-block__main-content {
    justify-content: space-around;
  }
}

.vr-block__main-content img {
  width: 40vw;
  position: absolute;
  right: 0;
  bottom: 0%;
  transform: translate(0, 50%);
}

@media screen and (max-width: 1000px) {
  .vr-block__main-content img {
    width: 75vw;
    position: absolute;
    right: 0;
    bottom: 25%;
    transform: translate(0, 50%);
    z-index: -1;
    opacity: 0.2;
  }
}

.vr-block__preheader {
  font-size: 25px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vr-block__pretitle {
  font-size: 50px;
  font-weight: 700;
  text-align: left;
  color: #15abda;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.vr-block__title {
  color: #ffffff;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .vr-block__pretitle {
    font-size: 2em;
    line-height: 1.2;
  }
  .vr-block__title {
    font-size: 3.5em;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1000px) {
  .vr-block__preheader {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .vr-block__pretitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .vr-block__title {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 2.5em;
  }
}

.vr-block__second-content {
  height: 100vh;
  position: relative;
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}

.vr-block__second-content img {
  height: 100%;
  width: 50%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1000px) {
  .vr-block__second-content img {
    width: 100%;
    opacity: 0.3;
  }
}

.vr-block__second-content-info {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
}

.vr-block__main-content-info,
.vr-block__second-content-info {
  max-width: 50%;
}

@media screen and (max-width: 1000px) {
  .vr-block__main-content-info,
  .vr-block__second-content-info {
    max-width: 100%;
  }
}

.description {
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100%, 0);
  position: fixed;
}

.description__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.description__text-container {
  justify-content: center !important;
  color: var(--white) !important;
}

.description__button {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.white-block {
  width: 100vw;
  height: 100vh;
  top: 0;
  /* transform: translate(100%, 0); */
  position: fixed;
  z-index: -1;
  background-color: #021115;
}

.white-block__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.white-block__back {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-size: 100% 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.white-block__text-container {
  justify-content: center !important;
  color: var(--white) !important;
  visibility: hidden;
}

.white-block__button {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.white-block__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.white-block__images img {
  position: absolute;
}

.white-block__images img:nth-child(1) {
  width: 131px;
  top: 173px;
  left: 80px;
}

.white-block__images img:nth-child(2) {
  width: 294px;
  top: 15vh;
  left: 30vw;
}

.white-block__images img:nth-child(3) {
  width: 350px;
  top: 45vh;
  left: 250px;
}

.white-block__images img:nth-child(4) {
  width: 202px;
  bottom: 63px;
  left: 50px;
}

.white-block__images img:nth-child(5) {
  width: 294px;
  bottom: 114px;
  right: 706px;
}

.white-block__images img:nth-child(6) {
  width: 294px;
  top: 5vh;
  left: 60vw;
}

@media screen and (max-width: 1000px) {
  .swiper-wrapper {
    height: 86.5% !important;
  }

  .white-block__images img:nth-child(1) {
    width: 70px;
    top: 85px;
    left: 80px;
  }

  .white-block__images img:nth-child(2) {
    width: 150px;
    top: 15vh;
    left: 30vw;
  }

  .white-block__images img:nth-child(3) {
    width: 175px;
    top: 45vh;
    left: 250px;
  }

  .white-block__images img:nth-child(4) {
    width: 100px;
    bottom: 63px;
    left: 50px;
  }

  .white-block__images img:nth-child(5) {
    width: 150px;
    bottom: 50%;
    left: 10px;
  }

  .white-block__images img:nth-child(6) {
    width: 150px;
    top: 5vh;
    left: 60vw;
  }
}

#white-block__img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 50vh;
  left: 60vw;
}

.white-block__circle {
  height: 40vh;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
}

.white-block__circle img {
  height: 55%;
  position: relative;
  top: -5%;
}

@media screen and (max-width: 600px) {
  .intro-block__text {
    font-size: 3em;
  }

  .intro-block__main-text {
    font-size: 3em;
  }

  .success-block__content {
    width: 300%;
  }

  .block__info-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .block__info-text {
    font-size: 14px;
    line-height: 24px;
  }

  .last-block__pretitle {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .last-block__title {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 15px;
  }

  .last-block__text {
    font-size: 25px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    bottom: 3.5% !important;
    top: auto !important;
    width: 40px !important;
  }

  @media screen and (max-height: 550px) {
    .swiper-button-prev,
    .swiper-button-next {
      bottom: 1% !important;
    }
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 100%;
  }
}

@media screen and (max-height: 600px) and (orientation: landscape) {
  .intro-block__text {
    font-size: 2.5em;
    line-height: 1.5em;
  }

  .intro-block__main-text {
    font-size: 3em;
  }

  .title {
    font-size: 2.5em;
    line-height: 1.2em;
  }

  .grey-block__title {
    margin-bottom: 15px;
  }

  .eye-block__text-container {
    padding-top: 90px !important;
  }

  .eye-block__info > span {
    font-size: 16px;
    line-height: 28px;
  }

  .girl-block__text-container {
    padding-top: 65px !important;
  }

  .girl-block__info > span {
    margin-bottom: 25px;
  }
}
