@charset "UTF-8";
/*     /_content/Play2Study.Landing.Base/img to ../img     */ /*Обнуление*/
* {
  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 {
  height: 100%;
  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%;
}

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;
}

/*--------------------*/
body {
  font-family: "SF Pro Display";
  font-weight: 400;
  color: #000;
}

.wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.wrapper__scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.scene__item {
  position: absolute;
}

.scene__item:nth-child(1) {
  top: 7%;
  left: 10%;
  animation: fly1 18s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(2) {
  top: 22%;
  left: 1%;
  animation: fly2 25s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(3) {
  top: 45%;
  left: 5%;
  animation: fly3 22s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(4) {
  bottom: 25%;
  left: 11%;
  animation: fly4 25s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(5) {
  bottom: 5%;
  left: 15%;
  animation: fly5 27s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(6) {
  top: 5%;
  right: 10%;
  animation: fly6 30s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(7) {
  top: 20%;
  right: 6%;
  animation: fly7 32s linear;
  animation-iteration-count: infinite;
}

.scene__item:nth-child(8) {
  bottom: 2%;
  right: 10%;
  animation: fly8 24s linear;
  animation-iteration-count: infinite;
}

@keyframes fly1 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(45deg);
    top: -2%;
    left: 17%;
  }
  50% {
    transform: rotate(0);
    top: 7%;
    left: 27%;
  }
  75% {
    transform: rotate(-45deg);
    top: 21%;
    left: 15%;
  }
  100% {
    transform: rotate(0);
    top: 7%;
    left: 10%;
  }
}
@keyframes fly2 {
  0% {
    transform: rotate(0);
  }
  3% {
    transform: rotate(0);
    top: 19%;
    left: 0%;
  }
  32% {
    transform: rotate(-90deg);
    top: 11%;
    left: 15%;
  }
  60% {
    transform: rotate(0deg);
    top: 30%;
    left: 22%;
  }
  85% {
    transform: rotate(45deg);
    top: 40%;
    left: 8%;
  }
  100% {
    transform: rotate(0);
    top: 22%;
    left: 1%;
  }
}
@keyframes fly3 {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-45deg);
    top: 22%;
    left: -1%;
  }
  40% {
    transform: rotate(0deg);
    top: -2%;
    left: 6%;
  }
  60% {
    transform: rotate(-45deg);
    top: 13%;
    left: -1%;
  }
  80% {
    transform: rotate(20deg);
    top: 28%;
    left: 15%;
  }
  100% {
    transform: rotate(0);
    top: 45%;
    left: 5%;
  }
}
@keyframes fly4 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-45deg);
    bottom: 13%;
    left: -1%;
  }
  50% {
    transform: rotate(0deg);
    bottom: 0%;
    left: 6%;
  }
  75% {
    transform: rotate(45deg);
    botom: 15%;
    left: 17%;
  }
  100% {
    transform: rotate(0);
    bottom: 25%;
    left: 11%;
  }
}
@keyframes fly5 {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-45deg);
    bottom: 0%;
    left: 11%;
  }
  33% {
    transform: rotate(0deg);
    bottom: 15%;
    left: 0%;
  }
  56% {
    transform: rotate(45deg);
    bottom: 40%;
    left: 5%;
  }
  80% {
    transform: rotate(-25deg);
    botom: 15%;
    left: 0%;
  }
  100% {
    transform: rotate(0);
    bottom: 5%;
    left: 15%;
  }
}
@keyframes fly6 {
  0% {
    transform: rotate(0);
  }
  12% {
    transform: rotate(-45deg);
    top: -1%;
    right: 15%;
  }
  24% {
    transform: rotate(0deg);
    top: 5%;
    right: 20%;
  }
  36% {
    transform: rotate(45deg);
    top: -1%;
    right: 25%;
  }
  48% {
    transform: rotate(0deg);
    top: 5%;
    right: 30%;
  }
  60% {
    transform: rotate(-45deg);
    top: 10%;
    right: 25%;
  }
  73% {
    transform: rotate(0deg);
    top: 5%;
    right: 20%;
  }
  87% {
    transform: rotate(-45deg);
    top: 10%;
    right: 15%;
  }
  100% {
    transform: rotate(0);
    top: 5%;
    right: 10%;
  }
}
@keyframes fly7 {
  0% {
    transform: rotate(0);
  }
  12% {
    transform: rotate(-45deg);
    top: 26%;
    right: 10%;
  }
  24% {
    transform: rotate(0deg);
    top: 32%;
    right: 0%;
  }
  36% {
    transform: rotate(45deg);
    top: 40%;
    right: 8%;
  }
  48% {
    transform: rotate(0deg);
    top: 50%;
    right: 0%;
  }
  60% {
    transform: rotate(-45deg);
    top: 44%;
    right: 8%;
  }
  70% {
    transform: rotate(0deg);
    top: 38%;
    right: 0%;
  }
  80% {
    transform: rotate(-45deg);
    top: 32%;
    right: 8%;
  }
  90% {
    transform: rotate(-45deg);
    top: 26%;
    right: 0%;
  }
  100% {
    transform: rotate(0);
    top: 20%;
    right: 6%;
  }
}
@keyframes fly8 {
  0% {
    transform: rotate(0);
  }
  7% {
    transform: rotate(-32deg);
    bottom: 0%;
    right: 14%;
  }
  30% {
    transform: rotate(-90deg);
    bottom: 20%;
    right: 30%;
  }
  55% {
    transform: rotate(0deg);
    bottom: 47%;
    right: 17%;
  }
  80% {
    transform: rotate(50deg);
    bottom: 20%;
    right: 0%;
  }
  100% {
    transform: rotate(0);
    bottom: 2%;
    right: 10%;
  }
}
.wrapper__content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

.section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
}
@media (max-width: 1271px) {
  .section {
    padding: 0 30px;
  }
}
@media (max-width: 1100px) {
  .section {
    height: auto;
    padding: 75px 30px;
  }
}
@media (max-width: 620px) {
  .section {
    padding: 50px 15px;
  }
}

.section-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 2s ease, transform 1s ease-out;
}

.m-container {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1270px) {
  .m-container {
    max-width: 1270px;
    padding: 0 30px;
  }
}
@media (max-width: 620px) {
  .m-container {
    padding: 0 15px;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left, #3db9ff, #0e65f3, #3db9ff);
  background-position: right;
  background-size: 200%;
  border-radius: 4px;
  padding: 16px 47px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  transition: background-position 0.4s ease;
}
.button img {
  margin-left: 25px;
}
.button:hover {
  background-position: left;
  color: #fff;
}
@media (max-width: 460px) {
  .button {
    max-width: 460px;
    width: 100%;
  }
  .button img {
    display: none;
  }
}

.title {
  font-weight: 600;
  font-size: 49px;
  line-height: 58px;
  letter-spacing: 1px;
  color: #18191b;
}
.title span {
  color: #0e65f3;
}
@media (max-width: 1450px) {
  .title {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 1370px) {
  .title {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 950px) {
  .title {
    font-size: 30px;
    line-height: 43px;
  }
}

.header__body {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 35px 60px;
}
@media (max-width: 950px) {
  .header__body {
    padding: 38px 30px;
  }
}
@media (max-width: 785px) {
  .header__body {
    justify-content: space-between;
  }
}
@media (max-width: 620px) {
  .header__body {
    padding: 20px 15px;
  }
}
.header__burger {
  display: none;
  position: relative;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 4;
  transition: transform 0.6s ease-in;
}
.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #000;
  position: absolute;
}
.header__burger span:nth-child(1) {
  top: 0;
  left: 0;
}
.header__burger span:nth-child(2) {
  top: 8px;
  left: 0;
}
.header__burger span:nth-child(3) {
  top: 16px;
  left: 0;
}
@media (max-width: 785px) {
  .header__burger {
    display: block;
  }
}
.header__nav {
  margin-left: 120px;
}
@media (max-width: 1100px) {
  .header__nav {
    margin-left: 50px;
  }
}
@media (max-width: 785px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -120vw;
    background-color: #0e65f3;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    margin: 0;
    z-index: 3;
    padding: 120px 0;
    display: flex;
    transition: left 0.4s ease;
  }
}
.header__log {
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 785px) {
  .header__log {
    margin-left: 0;
  }
}
.header__cabinet {
  cursor: pointer;
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 8px 20px;
  text-decoration: none !important;
}
.header__cabinet p {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  margin-right: 10px;
}
@media (max-width: 950px) {
  .header__cabinet {
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .header__cabinet p {
    display: none;
  }
}
@media (max-width: 785px) {
  .header__cabinet {
    margin-left: 0;
  }
}

.b-active {
  transform: rotate(-360deg);
  transition: transform 0.5s ease;
}
.b-active span:nth-child(1) {
  top: 8px;
  left: 0;
  background-color: #fff;
  transform: rotate(45deg);
  transition: transform 0.2s ease 0.4s, background-color 0.2s ease;
}
.b-active span:nth-child(2) {
  background-color: transparent;
}
.b-active span:nth-child(3) {
  top: 8px;
  left: 0;
  background-color: #fff;
  transform: rotate(-45deg);
  transition: transform 0.2s ease 0.4s, background-color 0.2s ease;
}

.nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 785px) {
  .nav__list {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    max-height: 800px;
    height: 100%;
  }
}
.nav__item {
  margin: 7px 45px 0;
}
@media (max-width: 1240px) {
  .nav__item {
    margin: 7px 25px 0;
  }
}
@media (max-width: 1100px) {
  .nav__item {
    margin: 7px 14px 0;
  }
}
.nav__link {
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  color: #000;
}
.nav__link:focus {
  color: #000;
  text-decoration: none;
}
.nav__link:visited {
  text-decoration: none;
}
.nav__link:hover {
  color: #0e65f3;
}
.nav__link.l-app {
  position: relative;
}
.nav__link.l-app:after {
  content: " new ";
  position: absolute;
  top: -12px;
  left: -17px;
  background-color: red;
  color: #fff;
  padding: 1px 3px;
  display: block;
  font-size: 14px;
  line-height: 14px;
  transform: rotate(-20deg);
}
@media (max-width: 785px) {
  .nav__link {
    color: #fff;
    font-size: 24px;
    line-height: 25px;
  }
  .nav__link:hover {
    color: #fff;
  }
}

.n-active {
  left: 0;
  transition: left 0.4s ease-in;
  display: flex;
}

.top-intro {
  height: calc(100vh - 112px);
  padding: 0 60px;
}
@media (max-width: 1100px) {
  .top-intro {
    height: auto;
  }
}
@media (max-width: 950px) {
  .top-intro {
    padding: 0 30px;
  }
}
@media (max-width: 620px) {
  .top-intro {
    height: calc(100vh - 76px);
    padding: 25px 10px 0;
  }
}
.top-intro__body {
  height: 100%;
}
.top-intro__row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.top-intro__social {
  display: none;
  justify-content: flex-start;
  align-items: center;
  transform: rotate(-90deg);
  align-self: flex-end;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 16px !important;
}
@media (max-width: 950px) {
  .top-intro__social {
    display: none;
  }
}
.top-intro__slider {
  width: 100%;
  padding-left: 175px;
}
@media (max-width: 1450px) {
  .top-intro__slider {
    padding-left: 75px;
  }
}
@media (max-width: 1200px) {
  .top-intro__slider {
    padding-left: 60px;
  }
}
@media (max-width: 950px) {
  .top-intro__slider {
    padding-left: 0;
  }
}
@media (max-width: 620px) {
  .top-intro__slider {
    height: 100%;
  }
}

.social__link {
  margin: 0 20px;
}
.social__link p {
  font-size: 13px;
  line-height: 16px;
  color: #18191b;
  font-weight: 700;
}
.social__link img {
  display: none;
}

.fake-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

.top-slider__body {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.1s;
}
.top-slider__body--active {
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.2s;
}
@media (max-width: 620px) {
  .top-slider__body {
    height: 100%;
  }
}
.top-slider__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 620px) {
  .top-slider__item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

.slider__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 0 1 800px;
}
@media (max-width: 620px) {
  .slider__content {
    flex: 0 1 auto;
  }
}
.slider__title {
  margin-bottom: 50px;
}
@media (max-width: 620px) {
  .slider__title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 370px) {
  .slider__title {
    font-size: 20px;
    line-height: 31px;
  }
}
@media (max-width: 349px) {
  .slider__title {
    font-size: 18px;
    line-height: 26px;
  }
}
.slider__subtitle {
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #0e65f3;
  margin: 5px 0 30px;
}
@media (max-width: 1370px) {
  .slider__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 950px) {
  .slider__subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 620px) {
  .slider__subtitle {
    display: none;
  }
}
@media (max-width: 1440px) and (max-height: 740px) {
  .slider__img {
    flex: 0 1 495px;
    height: 100%;
  }
  .slider__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
@media (max-width: 1100px) {
  .slider__img {
    flex: 0 1 495px;
    height: 100%;
  }
  .slider__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
@media (max-width: 620px) {
  .slider__img {
    flex: 0 1 auto;
    max-width: 450px;
    height: 55%;
  }
}
.slider__count {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 785px) {
  .slider__count {
    display: none;
  }
}

@media (max-width: 1450px) and (min-width: 1370px) {
  .third-item-title {
    font-size: 43px;
    line-height: 55px;
  }
}

@media (max-width: 620px) {
  .top__btn {
    display: none;
  }
}

.hidden-box {
  margin-top: auto;
  margin-bottom: 25px;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.hidden-box .hidden-btn {
  max-width: 410px;
  width: 100%;
}
@media (max-width: 620px) {
  .hidden-box {
    display: flex;
  }
}

.active-item {
  font-weight: 100;
  font-size: 40px;
  line-height: 48px;
  color: #18191b;
}

.line-progress {
  width: 122px;
  height: 1px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: rgba(24, 25, 27, 0.062745098);
  margin: 8px 0 15px;
}
.line-progress:after {
  content: "";
  display: block;
  width: 33%;
  height: 100%;
  background-color: #0e65f3;
}

.count-item {
  font-weight: 200;
  font-size: 20px;
  line-height: 24px;
  color: rgba(24, 25, 27, 0.3607843137);
}

.second-item .line-progress:after {
  width: 66%;
}

.third-item .slider__title {
  margin-bottom: 0;
}
@media (max-width: 620px) {
  .third-item .slider__title {
    margin-bottom: 10px;
  }
}
.third-item .line-progress:after {
  width: 100%;
}

.top-slider__body {
  position: relative;
}

.top-intro__slider {
  /* Ограничивающая оболочка */
  /* Лента слайдов */
  /* Слайд */
  /* Стрелка */
  /* Стрелка влево */
  /* Стрелка вправо */
}
.top-intro__slider .slick-list {
  overflow: hidden;
  height: calc(100vh - 112px);
}
@media (max-width: 1100px) {
  .top-intro__slider .slick-list {
    height: 600px;
  }
}
@media (max-width: 620px) {
  .top-intro__slider .slick-list {
    height: 100% !important;
    padding: 0 !important;
  }
}
.top-intro__slider .slick-track {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 620px) {
  .top-intro__slider .slick-track {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.top-intro__slider .slick-slide {
  height: calc(100vh - 112px);
}
@media (max-width: 1100px) {
  .top-intro__slider .slick-slide {
    height: 600px;
  }
}
@media (max-width: 620px) {
  .top-intro__slider .slick-slide {
    height: calc(100vh - 101px);
    max-width: 90vw;
    width: 100%;
    padding: 0 20px;
  }
}
.top-intro__slider .slick-arrow {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 15px;
  font-size: 0;
  color: transparent;
}
@media (max-width: 620px) {
  .top-intro__slider .slick-arrow {
    width: 35px;
    height: 16px;
  }
}
.top-intro__slider .slick-arrow.slick-prev {
  right: 0;
  top: 70%;
  background: url("../img/top-slider/tail-up.svg") center center/contain no-repeat;
}
@media (max-width: 620px) {
  .top-intro__slider .slick-arrow.slick-prev {
    background: url("../img/top-slider/tail-left.svg") center center/contain no-repeat;
    top: 40%;
    right: auto;
    left: 0;
  }
}
.top-intro__slider .slick-arrow.slick-next {
  right: 0;
  top: 85%;
  background: url("../img/top-slider/tail_down.svg") center center/contain no-repeat;
}
@media (max-width: 620px) {
  .top-intro__slider .slick-arrow.slick-next {
    background: url("../img/top-slider/tail-right.svg") center center/contain no-repeat;
    top: 40%;
  }
}

.info__body {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.info__title {
  text-align: center;
  max-width: 800px;
  width: 100%;
}
.info__subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #18191b;
}
@media (max-width: 1370px) {
  .info__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 950px) {
  .info__subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 720px) {
  .info__subtitle {
    display: none;
  }
}
.info__row {
  padding-top: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 470px 470px;
  justify-content: space-between;
  row-gap: 110px;
}
@media (max-width: 1050px) {
  .info__row {
    column-gap: 100px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 850px) {
  .info__row {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
}
@media (max-width: 720px) {
  .info__row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 50px;
  }
}
@media (max-width: 550px) {
  .info__row {
    padding-top: 45px;
  }
}
.info__item {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.info__img {
  margin-right: 45px;
}
@media (max-width: 1100px) {
  .info__img {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin-right: 30px;
  }
  .info__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
.info__text {
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 0.3px;
  color: #000;
}
.info__text span {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #0e65f3;
}
@media (max-width: 1100px) {
  .info__text span {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 1100px) {
  .info__text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 950px) {
  .info__text {
    font-size: 17px;
    line-height: 24px;
  }
}

.product__body {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.product__title {
  text-align: center;
}
.product__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 430px;
  column-gap: 120px;
  align-items: center;
}
@media (max-width: 1100px) {
  .product__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 925px) {
  .product__row {
    column-gap: 30px;
  }
}
@media (max-width: 770px) {
  .product__row {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
}
.product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 460px) {
  .product__content {
    align-items: center;
  }
}
.product__subtitle {
  margin-bottom: 10px;
}
.product__subtitle span {
  font-weight: 600;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: 0.2px;
}
@media (max-width: 1100px) {
  .product__subtitle span {
    display: none;
  }
}
@media (max-width: 1100px) {
  .product__subtitle {
    margin-bottom: 20px;
  }
}
.product__text {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}
@media (max-width: 460px) {
  .product__text {
    text-align: justify;
  }
}
@media (max-width: 1100px) {
  .product__img {
    width: 100%;
    height: 100%;
  }
  .product__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
@media (max-width: 770px) {
  .product__img {
    grid-row: 1;
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .product__img {
    width: 70%;
  }
}
@media (max-width: 390px) {
  .product__img {
    width: 85%;
  }
}

@media (max-height: 890px) and (min-width: 1100px) {
  .work {
    height: auto;
    margin-bottom: 80px;
  }
}
.work__body {
  max-width: 1025px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.work__title {
  text-align: center;
}
.work__row {
  margin-top: 40px;
}
.work__item {
  margin: 0 80px;
}
@media (max-width: 780px) {
  .work__item {
    margin: 0 160px;
  }
}
.work__img {
  max-width: 820px;
  width: 100%;
  background-color: #fff;
  border-radius: 37px;
}
.work__pad {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 780px) {
  .work__pad {
    display: none;
  }
}
.work__phone {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 780px) {
  .work__phone {
    display: block;
  }
}
.work__content {
  margin-top: 25px;
  padding: 0 15px;
}
@media (max-width: 780px) {
  .work__content {
    margin: 25px -40px 0;
    padding: 0;
  }
}
@media (max-width: 400px) {
  .work__content {
    margin: 25px -30px 0;
  }
}
@media (max-width: 365px) {
  .work__content {
    margin: 25px -10px 0;
  }
}

.work-item__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 820px;
  width: 100%;
}
@media (max-width: 1020px) {
  .work-item__body {
    max-width: 720px;
  }
}
@media (max-width: 860px) {
  .work-item__body {
    max-width: 650px;
  }
}
@media (max-width: 780px) {
  .work-item__body {
    max-width: 470px;
  }
}
@media (max-width: 500px) {
  .work-item__body {
    max-width: 310px;
  }
}
@media (max-width: 390px) {
  .work-item__body {
    max-width: 290px;
  }
}

.work-step {
  width: 100%;
  display: none;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 1px solid rgba(24, 25, 27, 0.1254901961);
  margin-bottom: 35px;
}
@media (max-width: 780px) {
  .work-step {
    display: flex;
    border: none;
    justify-content: center;
    align-items: center;
  }
}
.work-step__current {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  flex: 0 1 25%;
  border-bottom: 1px solid #0e65f3;
}
@media (max-width: 1020px) {
  .work-step__current {
    flex: 0 1 27%;
  }
}
@media (max-width: 860px) {
  .work-step__current {
    padding-bottom: 15px;
  }
}
@media (max-width: 780px) {
  .work-step__current {
    padding-bottom: 0;
    border: none;
    margin-left: 0;
    flex: 0 1 auto;
  }
}
.work-step__text {
  font-size: 22px;
  line-height: 26px;
  color: #0e65f3;
}
@media (max-width: 860px) {
  .work-step__text {
    font-size: 20px;
  }
}
@media (max-width: 780px) {
  .work-step__text {
    font-size: 22px;
  }
}

.work-text {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #000;
}
@media (max-width: 400px) {
  .work-text {
    font-size: 14px;
  }
}

.work__item:nth-child(2) .work-step__current {
  margin-left: 25%;
}
@media (max-width: 780px) {
  .work__item:nth-child(2) .work-step__current {
    margin-left: 0;
    flex: 0 1 auto;
  }
}
.work__item:nth-child(3) .work-step__current {
  margin-left: 50%;
}
@media (max-width: 780px) {
  .work__item:nth-child(3) .work-step__current {
    margin-left: 0;
    flex: 0 1 auto;
  }
}
.work__item:nth-child(4) .work-step__current {
  margin-left: 75%;
}
@media (max-width: 780px) {
  .work__item:nth-child(4) .work-step__current {
    margin-left: 0;
    flex: 0 1 auto;
  }
}

.work__row {
  width: 100%;
  position: relative;
  /* Слайдер */
  /* Ограничивающая оболочка */
  /* Лента слайдов */
  /* Стрелка */
  /* Стрелка влево */
  /* Стрелка вправо */
}
.work__row .slick-slider {
  width: 100%;
}
.work__row .slick-list {
  overflow: hidden;
}
@media (max-width: 690px) {
  .work__row .slick-list {
    padding: 0 !important;
  }
}
.work__row .slick-track {
  display: flex;
}
.work__row .slick-arrow {
  position: absolute;
  width: 40px;
  height: 15px;
  font-size: 0;
  color: transparent;
  z-index: 2;
}
.work__row .slick-arrow.slick-prev {
  background: url("../img/reviews/left.svg") center center/contain no-repeat;
  top: 50%;
  left: 0;
}
@media (max-width: 780px) {
  .work__row .slick-arrow.slick-prev {
    top: 1%;
    left: 15%;
  }
}
@media (max-width: 690px) {
  .work__row .slick-arrow.slick-prev {
    top: 1%;
    left: 10%;
  }
}
@media (max-width: 500px) {
  .work__row .slick-arrow.slick-prev {
    left: 2%;
  }
}
.work__row .slick-arrow.slick-prev.slick-disabled {
  background: url("../img/work/dis-prev.svg") center center/contain no-repeat;
}
.work__row .slick-arrow.slick-next {
  background: url("../img/reviews/right.svg") center center/contain no-repeat;
  top: 50%;
  right: 0;
}
@media (max-width: 780px) {
  .work__row .slick-arrow.slick-next {
    top: 1%;
    right: 15%;
  }
}
@media (max-width: 690px) {
  .work__row .slick-arrow.slick-next {
    top: 1%;
    right: 10%;
  }
}
@media (max-width: 500px) {
  .work__row .slick-arrow.slick-next {
    right: 2%;
  }
}
.work__row .slick-arrow.slick-next.slick-disabled {
  background: url("../img/work/dis-next.svg") center center/contain no-repeat;
}

.step__item {
  cursor: pointer;
  border-bottom: 1px solid rgba(24, 25, 27, 0.1254901961);
}

.step__value {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 19px;
}

.step__text {
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(24, 25, 27, 0.1254901961);
}

.step-slider {
  padding: 0 85px;
  margin-bottom: 40px;
  /* Слайдер */
  /* Слайдер запущен */
  /* Слайдер с точками */
  /* Ограничивающая оболочка */
  /* Лента слайдов */
  /* Слайд */
  /* Слайд активный (показывается) */
  /* Слайд основной */
  /* Слайд по центру */
  /* Клонированный слайд */
}
@media (max-width: 780px) {
  .step-slider {
    display: none;
  }
}
.step-slider .slick-list {
  overflow: hidden;
}
.step-slider .slick-track {
  display: flex;
}
.step-slider .slick-slide.slick-current {
  border-bottom: 1px solid #0e65f3;
}
.step-slider .slick-slide.slick-current .step__text {
  color: #0e65f3;
}
.why__body {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.why__title {
  text-align: center;
}
.why__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 115px;
  align-items: center;
}
@media (max-width: 1170px) {
  .why__row {
    column-gap: 20px;
  }
}
@media (max-width: 840px) {
  .why__row {
    grid-template-columns: 1fr;
  }
}
.why__img {
  width: 100%;
}
@media (max-width: 980px) {
  .why__img {
    height: 100%;
  }
  .why__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
@media (max-width: 840px) {
  .why__img {
    display: none;
  }
}
.why__man {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.why__text {
  align-self: flex-start;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
  padding-left: 25px;
  position: relative;
  margin: 7px 0;
}
.why__text:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #0e66f3;
}
@media (max-width: 1240px) {
  .why__text {
    align-self: center;
    padding-left: 0;
    text-align: center;
  }
  .why__text:after {
    display: none;
  }
}
@media (max-width: 920px) {
  .why__text {
    font-size: 15px;
  }
}
@media (max-width: 620px) {
  .why__text {
    margin: 4px 0;
  }
}

.why-row__box {
  grid-column-start: 2;
  grid-column-end: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 115px;
}
@media (max-width: 1170px) {
  .why-row__box {
    column-gap: 20px;
  }
}
@media (max-width: 840px) {
  .why-row__box {
    grid-column-start: 1;
    grid-column-end: 1;
    margin-top: 74px;
  }
}
@media (max-width: 580px) {
  .why-row__box {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 60px;
  }
}

.why-man__img {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  overflow: hidden;
}
.why-man__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-man__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.2px;
  margin: 15px 0 7px;
}
@media (max-width: 920px) {
  .why-man__name {
    font-size: 21px;
  }
}

@media (max-height: 890px) and (min-width: 1100px) {
  .app {
    height: auto;
    margin-bottom: 80px;
  }
}
.app__body {
  max-width: 1025px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.app__title {
  text-align: center;
}
.app__img {
  max-width: 557px;
  margin: 40px 0;
}
.app__img img {
  width: 100%;
}

.contacts {
  margin-bottom: 120px;
  background-color: #0e65f3;
  position: relative;
}
.contacts__scene {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contacts__body {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 450px) {
  .contacts__body {
    padding: 38px 15px;
  }
}
.contacts__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 840px) {
  .contacts__row {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.contacts__question {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .contacts__question {
    margin-bottom: 30px;
  }
}
.contacts__title {
  font-weight: 600;
  font-size: 69px;
  line-height: 98px;
  color: #fff;
}
@media (max-width: 1070px) {
  .contacts__title {
    font-size: 55px;
    line-height: 80px;
  }
}
@media (max-width: 450px) {
  .contacts__title {
    font-size: 47px;
    line-height: 58px;
  }
}
@media (max-width: 350px) {
  .contacts__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.contacts__subtitle {
  font-size: 33px;
  line-height: 44px;
  letter-spacing: 0.01em;
  color: #fff;
}
.contacts__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 370px;
  width: 100%;
}
.contacts__label {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}
.contacts__input {
  width: 100%;
  padding: 9px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: transparent;
}
.contacts__textarea {
  width: 100%;
  padding: 9px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: transparent;
  resize: none;
  height: 125px;
}
.contacts__button {
  position: relative;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #0e65f3;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  margin-top: 10px;
  transition: background-color 0.2s ease-in-out, color 0.2s linear, border 0.2s ease;
}
.contacts__button .progress__circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 5px solid rgba(14, 101, 243, 0.3137254902);
  border-top: 5px solid #0e65f3;
  animation-name: progress;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: linear;
}

.c-label__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
}

.contacts__input:focus ~ p,
.contacts__textarea:focus ~ p {
  color: #fff;
}

.contacts__textarea:focus,
.contacts__input:focus {
  border-color: #fff;
}

.contacts__form .validation__label p {
  margin-bottom: 0 !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
}
.contacts__form .validation__input {
  padding: 9px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: transparent;
}
.contacts__form .validation__input:focus {
  border-color: #fff;
}

.c-scene__item {
  position: absolute;
}

.c-scene__item:nth-child(1) {
  top: 0;
  left: 5%;
  animation: c-1 25s linear;
  animation-iteration-count: infinite;
}

.c-scene__item:nth-child(2) {
  top: 30%;
  left: 5%;
  animation: c-2 32s linear;
  animation-iteration-count: infinite;
}

.c-scene__item:nth-child(3) {
  bottom: 0;
  left: 5%;
  animation: c-3 35s linear;
  animation-iteration-count: infinite;
}

.c-scene__item:nth-child(4) {
  top: 0;
  right: 12%;
  animation: c-4 22s linear;
  animation-iteration-count: infinite;
}

.c-scene__item:nth-child(5) {
  top: 40%;
  right: 5%;
  animation: c-5 27s linear;
  animation-iteration-count: infinite;
}

.c-scene__item:nth-child(6) {
  bottom: 0;
  right: 5%;
  animation: c-6 34s linear;
  animation-iteration-count: infinite;
}

@keyframes c-1 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(45deg);
    top: 14%;
    left: 14%;
  }
  50% {
    transform: rotate(0);
    top: 34%;
    left: 30%;
  }
  75% {
    transform: rotate(-45deg);
    top: 12%;
    left: 16%;
  }
  100% {
    transform: rotate(0);
    top: 0;
    left: 5%;
  }
}
@keyframes c-2 {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(45deg);
    top: 50%;
    left: 0;
  }
  40% {
    transform: rotate(0);
    top: 90%;
    left: 15%;
  }
  60% {
    transform: rotate(-70deg);
    top: 50%;
    left: 35%;
  }
  80% {
    transform: rotate(-20deg);
    top: 35%;
    left: 17%;
  }
  100% {
    transform: rotate(0);
    top: 30%;
    left: 5%;
  }
}
@keyframes c-3 {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(45deg);
    bottom: 40%;
    left: 20%;
  }
  30% {
    transform: rotate(0);
    bottom: 0;
    left: 35%;
  }
  45% {
    transform: rotate(-45deg);
    bottom: 45%;
    left: 45%;
  }
  60% {
    transform: rotate(0deg);
    bottom: 0%;
    left: 56%;
  }
  75% {
    transform: rotate(45deg);
    bottom: 37%;
    left: 30%;
  }
  90% {
    transform: rotate(-37deg);
    bottom: 17%;
    left: 0%;
  }
  100% {
    transform: rotate(0);
    bottom: 0;
    left: 5%;
  }
}
@keyframes c-4 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(45deg);
    top: 20%;
    right: 0;
  }
  50% {
    transform: rotate(0);
    top: 70%;
    right: 15%;
  }
  75% {
    transform: rotate(-45deg);
    top: 45%;
    right: 32%;
  }
  100% {
    transform: rotate(0);
    top: 0;
    right: 12%;
  }
}
@keyframes c-5 {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(45deg);
    top: 20%;
    right: 25%;
  }
  50% {
    transform: rotate(0);
    top: 0%;
    right: 10%;
  }
  75% {
    transform: rotate(-45deg);
    top: 23%;
    right: 0;
  }
  100% {
    transform: rotate(0);
    top: 40%;
    right: 5%;
  }
}
@keyframes c-6 {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(-180deg);
    bottom: 0%;
    right: 10%;
  }
  30% {
    transform: rotate(0);
    bottom: 0;
    right: 20%;
  }
  45% {
    transform: rotate(70deg);
    bottom: 45%;
    right: 35%;
  }
  60% {
    transform: rotate(0deg);
    bottom: 0%;
    right: 45%;
  }
  75% {
    transform: rotate(-50deg);
    bottom: 37%;
    right: 30%;
  }
  90% {
    transform: rotate(15deg);
    bottom: 17%;
    right: 0%;
  }
  100% {
    transform: rotate(0);
    bottom: 0;
    right: 5%;
  }
}
.reviews {
  display: none;
  padding: 120px 0;
}
.reviews__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.reviews__row {
  width: 100%;
  margin-top: 50px;
}
.review {
  max-width: 842px;
  width: 100%;
  padding: 42px 30px 40px 60px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media (max-width: 860px) {
  .review {
    max-width: 600px;
    padding: 42px 30px 40px;
  }
}
@media (max-width: 630px) {
  .review {
    width: 90vw;
    padding: 42px 18px 40px;
  }
}
.review__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 860px) {
  .review__body {
    flex-direction: column;
  }
}
.review__img {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 58px;
}
.review__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 860px) {
  .review__img {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.review__content {
  max-width: 505px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .review__content {
    align-items: center;
  }
}
.review__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
}
@media (max-width: 860px) {
  .review__name {
    margin-bottom: 10px;
  }
}
.review__text {
  font-size: 16px;
  line-height: 24px;
}

.reviews__row {
  width: 100%;
  overflow: hidden;
  /* Слайдер */
  /* Ограничивающая оболочка */
  /* Лента слайдов */
  /* Слайд */
  /* Стрелка */
  /* Стрелка влево */
  /* Стрелка вправо */
  /* Точки (булиты) */
  /* Элемент точки */
}
.reviews__row .slick-slider {
  position: relative;
}
.reviews__row .slick-list {
  overflow: hidden;
  padding: 10px 0 !important;
}
.reviews__row .slick-track {
  display: flex;
  align-items: stretch;
}
.reviews__row .slick-slide {
  margin: 0 40px;
  cursor: grab;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.reviews__row .slick-slide:active {
  cursor: grabbing;
}
.reviews__row .slick-arrow {
  position: absolute;
  color: transparent;
  font-size: 0;
  width: 22px;
  height: 14px;
}
.reviews__row .slick-arrow.slick-prev {
  bottom: 10px;
  left: 10%;
  background: url("../img/reviews/left.svg") center center/contain no-repeat;
}
@media (max-width: 630px) {
  .reviews__row .slick-arrow.slick-prev {
    left: 5%;
    bottom: 3px;
  }
}
.reviews__row .slick-arrow.slick-next {
  bottom: 10px;
  right: 10%;
  background: url("../img/reviews/right.svg") center center/contain no-repeat;
}
@media (max-width: 630px) {
  .reviews__row .slick-arrow.slick-next {
    right: 5%;
    bottom: 3px;
  }
}
.reviews__row .slick-dots {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews__row .slick-dots li {
  margin: 0 15px;
}
@media (max-width: 630px) {
  .reviews__row .slick-dots li {
    margin: 0 9px;
  }
}
.reviews__row .slick-dots li button {
  color: transparent;
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #dadada;
  border-radius: 50%;
}
.reviews__row .slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 9px;
  border: 1px solid #0e65f3;
}
.reviews__row .slick-dots li.slick-active button:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0e65f3;
}

.footer {
  background-color: #262626;
}
.footer__body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
  position: relative;
}
@media (max-width: 950px) {
  .footer__body {
    padding: 50px 30px;
  }
}
@media (max-width: 620px) {
  .footer__body {
    padding: 50px 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 620px) {
  .footer__logo {
    margin-bottom: 40px;
  }
}
.footer__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 620px) {
  .footer__content {
    flex-direction: column-reverse;
  }
}
.footer__social {
  display: none;
  justify-content: flex-start;
  align-items: center;
  margin-left: 35px;
}
@media (max-width: 620px) {
  .footer__social {
    margin-left: 0;
    margin-bottom: 35px;
  }
}

.offer {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 2px;
  text-decoration-line: underline;
  color: #fff;
}
.offer:hover {
  color: #fff;
  text-decoration: none;
}
.offer:visited {
  color: #fff;
}

.f-social__link {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0 17px;
}
.f-social__link:last-child {
  margin-right: 0;
}
@media (max-width: 620px) {
  .f-social__link:last-child {
    margin-right: 17px;
  }
}
.f-social__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.main-select {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.main-select .pick {
  background-color: transparent !important;
  border-radius: 4px !important;
  border-color: #bcbcbc !important;
}
.main-select .pick__line {
  padding: 13px 28px 14px 20px !important;
  font-size: 16px !important;
  line-height: 16px !important;
}
.main-select .pick__item {
  padding: 5px 20px !important;
}
.main-select .pick__item:hover {
  background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
}
.main-select .pick-active {
  border-color: #0e65f3 !important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2509803922);
  z-index: 4;
}
.modal__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__content {
  max-width: 565px;
  width: 100%;
  padding: 30px 100px 45px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media (max-width: 580px) {
  .modal__content {
    margin: 0 10px;
    padding: 30px 30px 45px;
  }
}
@media (max-width: 365px) {
  .modal__content {
    margin: 0 5px;
    padding: 30px 15px 45px;
  }
}
.modal__exit {
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 22px;
}
.modal__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 41px;
}
.modal__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.modal__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
}
.modal__input {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  color: #000;
}
.modal__input:focus {
  border: 1px solid #0e65f3;
}
.modal__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 24px;
}
.modal__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 10px;
  background-color: #0e65f3;
  border-radius: 4px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #fff;
}

.input__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #010101;
  margin-bottom: 4px;
}

.validation__label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
}
.validation__label > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #010101;
  margin-bottom: 4px;
}
.validation__input {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  color: #000;
}
.validation__input:focus {
  border: 1px solid #0e65f3;
}

.remember {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.remember p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #010101;
}
.remember span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #bcbcbc;
  border-radius: 2px;
  margin-right: 15px;
}
.remember span:after {
  content: "";
  display: none;
  width: 11px;
  height: 6px;
  border-left: 2px solid #0e65f3;
  border-bottom: 2px solid #0e65f3;
  transform: rotate(-45deg);
}

.remember-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

.remember-check:checked ~ p {
  color: #0e65f3;
}

.remember-check:checked ~ span {
  border: 1px solid #0e65f3;
}

.remember-check:checked ~ span:after {
  display: block;
}

.forgot-pass {
  font-size: 16px;
  line-height: 27px;
  text-decoration-line: underline;
  color: #0e65f3;
}

.create-account {
  font-size: 16px;
  line-height: 27px;
  color: #000;
  margin-top: 24px;
}

.create-link {
  font-size: 16px;
  line-height: 27px;
  color: #0e65f3;
}

.sign-up-choice .modal__form {
  margin-top: 25px;
}

.sign-up-fb img {
  margin-left: 20px;
}

.or__line {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.or__line div {
  width: 100%;
  height: 1px;
  background-color: #c5c5c5;
}
.or__line p {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 15px;
}

.sign-up-email {
  border: 1px solid #0e65f3;
  background-color: transparent;
  color: #0e65f3;
  font-weight: 400;
}

.sign-up .modal__content {
  max-width: 615px;
}
.sign-up .sign-up-btn {
  margin-top: 25px;
}

.sign-up__text {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 20px 0;
}

.message-modal .modal__content {
  max-width: 850px;
  padding: 60px 60px;
}
@media (max-width: 860px) {
  .message-modal .modal__content {
    margin: 0 10px;
    padding: 60px 30px;
  }
}
@media (max-width: 380px) {
  .message-modal .modal__content {
    margin: 0 5px;
    padding: 60px 20px;
    font-size: 15px;
  }
}

.message-text {
  text-align: center;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 400;
}

.sign-up-main .sign-up-btn {
  margin-top: 17px;
}
@media (max-height: 610px) {
  .sign-up-main .modal__content {
    padding: 15px 15px;
  }
}
@media (max-height: 610px) {
  .sign-up-main .validation__label {
    margin-bottom: 5px;
  }
}

.select-box {
  width: 100%;
  margin-bottom: 8px;
}
@media (max-height: 610px) {
  .select-box {
    margin-bottom: 5px;
  }
}

.select__name {
  font-size: 16px;
  line-height: 27px;
  color: #010101;
  margin-bottom: 4px;
}

.get__btn {
  margin-top: 20px;
  position: relative;
}

.sign-up-main .main-select {
  margin-bottom: 8px;
}
@media (max-height: 730px) {
  .sign-up-main .modal__title {
    font-size: 27px;
    line-height: 27px;
  }
  .sign-up-main .modal__content {
    padding: 30px 30px 20px;
  }
  .sign-up-main .input__name,
  .sign-up-main .select__name {
    line-height: 16px;
  }
}
@media (max-height: 630px) {
  .sign-up-main .modal__content {
    padding: 30px 10px 20px;
  }
  .sign-up-main .modal__input {
    padding: 7px 20px;
  }
  .sign-up-main .sign-up-btn {
    padding: 13px 10px;
  }
}
@media (max-width: 590px) {
  .sign-up-main .error-message {
    font-size: 14px;
    line-height: 16px;
  }
}

.error-message {
  color: #d63636;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  margin-top: 0 !important;
}

.contacts__label .error-message {
  color: #950101;
}

.error-event .error-message {
  display: block;
}
.error-event .modal__input {
  border-color: #d63636;
}
.error-event .btn-default {
  border-color: #d63636;
}
.error-event .contacts__input,
.error-event .contacts__textarea {
  border-color: #950101;
}

.error-field .pick {
  border-color: #950101 !important;
}

.sign-in-btn,
.sign-up-btn {
  position: relative;
}

.progress__container {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
}

.progress__circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0e65f3;
  border: 5px solid rgba(255, 255, 255, 0.3137254902);
  border-top: 5px solid #ffffff;
  animation-name: progress;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: linear;
}

@keyframes progress {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.forgot-modal .sign-up__text {
  margin: 20px 0 15px;
}
.forgot-modal .modal__label {
  margin-bottom: 15px;
}

.agreement {
  padding: 60px 30px;
}
.agreement__body {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.agreement__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.agreement__title {
  margin-bottom: 30px;
}
.agreement__text {
  font-size: 17px;
  line-height: 23px;
  font-weight: 400;
  color: #18191b;
}

.title-span {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.agreement-scroll {
  position: absolute;
  top: -30px;
  right: 50px;
}

.a-scroll__btn {
  width: 60px;
  height: 60px;
  background-color: #0e65f3;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.a-scroll__btn:hover {
  background-color: #0f4cad;
}
.a-scroll__btn span {
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  margin-top: 7px;
}

.lan-preloader {
  height: calc(100% - 242px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lan__box {
  position: relative;
  width: 200px;
  height: 200px;
}

.lan {
  position: absolute;
}
.lan img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

.lan-1 {
  width: 250px;
  height: 240px;
  animation: lan-1 4s linear;
  animation-iteration-count: infinite;
}

.lan-2 {
  width: 250px;
  height: 240px;
  animation: lan-2 4s linear;
  animation-iteration-count: infinite;
}

@keyframes lan-1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lan-2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.my-reconnect-modal > div {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  background-color: hsla(0, 0%, 100%, 0.96);
  text-align: center;
}
.my-reconnect-modal .custom-reconnect {
  height: 100vh;
  width: 100vw;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.my-reconnect-modal .custom-reconnect h3 {
  font-weight: 600;
  color: #000;
  font-size: 30px;
  line-height: 45px;
  text-transform: uppercase;
}
.my-reconnect-modal .custom-reconnect p {
  color: #000;
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 30px;
}
.my-reconnect-modal .reconnect-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
}
.my-reconnect-modal .reconnect-btn img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

.components-reconnect-hide > div,
.components-reconnect-show > div,
.components-reconnect-failed > div,
.components-reconnect-rejected > div {
  display: none !important;
}

.components-reconnect-show > .show {
  display: flex !important;
}
.components-reconnect-show > .show .reconnect-btn {
  animation: refresh 2s linear;
  animation-iteration-count: infinite;
}

.components-reconnect-failed > .failed {
  display: flex !important;
}
.components-reconnect-failed > .failed .reconnect-btn {
  animation: refresh 2s linear;
  animation-iteration-count: infinite;
}

.components-reconnect-rejected > .rejected {
  display: flex !important;
}
.components-reconnect-rejected > .rejected .reconnect-btn {
  animation: refresh 2s linear;
  animation-iteration-count: infinite;
}

@keyframes refresh {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
#blazor-error-ui {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  background-color: hsla(0, 0%, 100%, 0.96);
}
#blazor-error-ui .exception-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#blazor-error-ui .exception-container > p {
  font-size: 22px;
  line-height: 22px;
  text-align: center;
}
#blazor-error-ui .exception-container a {
  cursor: pointer;
  color: #000;
}
#blazor-error-ui .exception-container .reload {
  margin: 18px 0;
  font-size: 16px;
  text-decoration: underline;
}
#blazor-error-ui .exception-container .dismiss {
  font-size: 32px;
}

.app-page.top-intro {
  background: linear-gradient(109.16deg, #A9C3FF 0%, rgba(169, 195, 255, 0) 100%);
  height: calc(100vh - 112px);
}
.app-page.top-intro .intro__body {
  display: grid;
  grid-template-columns: 1fr 394px;
  column-gap: 145px;
  height: 100%;
  padding-bottom: 75px;
}
.app-page.top-intro .intro__col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 67px;
}
.app-page.top-intro .intro__col .col__img {
  max-width: 534px;
  width: 100%;
  min-height: 277px;
  position: relative;
}
.app-page.top-intro .intro__col .col__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transition: opacity 1s ease;
}
.app-page.top-intro .intro__col .col__img img.active {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.app-page.top-intro .intro__row {
  width: 100%;
  max-width: 532px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.app-page.top-intro .intro__link {
  max-width: 246px;
  cursor: pointer;
}
.app-page.top-intro .intro__link img {
  width: 100%;
}
.app-page.top-intro .intro__img {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.app-page.top-intro .intro__img img {
  width: 100%;
}
@media (max-width: 1220px) {
  .app-page.top-intro {
    max-height: 700px;
  }
  .app-page.top-intro .title {
    text-align: center;
  }
  .app-page.top-intro .intro__body {
    grid-template-columns: 1fr;
  }
  .app-page.top-intro .intro__col {
    align-items: center;
  }
  .app-page.top-intro .intro__img {
    display: none;
  }
}
.app-page.choose {
  padding: 34px 0 34px;
}
.app-page.choose .choose__body .title {
  margin-bottom: 54px;
}
.app-page.choose .choose__bg {
  position: absolute;
  max-width: 334px;
  width: 100%;
  top: -7px;
  left: 149px;
}
.app-page.choose .choose__bg img {
  width: 100%;
}
.app-page.choose .choose__item {
  padding: 0 0 40px;
}
.app-page.choose .choose__item img {
  width: 72px;
}
.app-page.choose .choose__item .item__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  margin-top: 30px;
}
.app-page.choose .choose__item .item__text {
  font-size: 24px;
  line-height: 29px;
}
.app-page.choose .choose__col {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 429px 1fr 429px;
  grid-template-rows: repeat(3, 1fr);
  padding-bottom: 156px;
  border-bottom: 1px solid #03115B;
}
.app-page.choose .choose__item:nth-child(1) {
  grid-row: 1/1;
  grid-column: 3/3;
}
.app-page.choose .choose__item:nth-child(2) {
  grid-row: 2/2;
  grid-column: 3/3;
}
.app-page.choose .choose__item:nth-child(3) {
  grid-row: 3/3;
  grid-column: 3/3;
}
.app-page.choose .choose__item:nth-child(4) {
  grid-row: 3/3;
  grid-column: 1/1;
}
.app-page.choose .advantages__col {
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  row-gap: 110px;
  padding: 50px 0 210px;
  position: relative;
  border-bottom: 1px solid #03115B;
}
.app-page.choose .advantages__col .central-item {
  position: absolute;
  bottom: -140px;
  left: 50%;
  margin-left: -203px;
  z-index: 1;
  max-width: 406px;
  grid-column: 2/2;
  grid-row: 2/2;
}
.app-page.choose .advantages__col .central-item img {
  width: 100%;
}
.app-page.choose .advantages__item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 220px;
}
.app-page.choose .advantages__item img {
  max-width: 172px;
}
.app-page.choose .advantages__item .item__title {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}
.app-page.choose .advantages__item:nth-child(1) {
  grid-column: 1/1;
  grid-row: 1/1;
}
.app-page.choose .advantages__item:nth-child(2) {
  grid-column: 2/2;
  grid-row: 1/1;
}
.app-page.choose .advantages__item:nth-child(3) {
  grid-column: 3/3;
  grid-row: 1/1;
}
.app-page.choose .advantages__item:nth-child(4) {
  grid-column: 1/1;
  grid-row: 2/2;
}
.app-page.choose .advantages__item:nth-child(5) {
  grid-column: 3/3;
  grid-row: 2/2;
}
@media (max-width: 960px) {
  .app-page.choose .choose__bg {
    display: none;
  }
  .app-page.choose .choose__item {
    padding: 0 0 30px;
  }
  .app-page.choose .choose__col {
    grid-template-columns: 1fr;
    padding-bottom: 56px;
  }
  .app-page.choose .choose__item:nth-child(1) {
    grid-row: auto;
    grid-column: 1/1;
  }
  .app-page.choose .choose__item:nth-child(2) {
    grid-row: auto;
    grid-column: 1/1;
  }
  .app-page.choose .choose__item:nth-child(3) {
    grid-row: auto;
    grid-column: 1/1;
  }
  .app-page.choose .choose__item:nth-child(4) {
    grid-row: auto;
    grid-column: 1/1;
  }
  .app-page.choose .advantages__col {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
    column-gap: 20px;
    padding: 30px 0 70px;
  }
  .app-page.choose .advantages__col .central-item {
    display: none;
  }
  .app-page.choose .advantages__item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
  .app-page.choose .advantages__item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
  .app-page.choose .advantages__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .app-page.choose .advantages__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .app-page.choose .advantages__item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 520px) {
  .app-page.choose .choose__col {
    grid-template-columns: 1fr;
    padding-bottom: 56px;
  }
  .app-page.choose .choose__item {
    padding: 0 0 10px;
  }
  .app-page.choose .choose__item img {
    max-width: 53px;
  }
  .app-page.choose .choose__item .item__title {
    font-size: 20px;
    line-height: 26px;
    margin-top: 15px;
  }
  .app-page.choose .choose__item .item__text {
    font-size: 16px;
    line-height: 22px;
  }
  .app-page.choose .advantages__col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .app-page.choose .advantages__item img {
    max-width: 100px;
  }
  .app-page.choose .advantages__item .item__title {
    font-size: 24px;
    line-height: 29px;
  }
}
.app-page.get-app {
  padding: 40px 0 105px;
}
.app-page.get-app .get-app__content {
  margin-top: 25px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 522px;
  column-gap: 72px;
  align-items: center;
}
.app-page.get-app .get-app__img {
  max-width: 573px;
}
.app-page.get-app .get-app__img img {
  width: 100%;
}
.app-page.get-app .get-app__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}
.app-page.get-app .get-app__link {
  max-width: 246px;
  cursor: pointer;
}
.app-page.get-app .get-app__link img {
  width: 100%;
}
@media (max-width: 900px) {
  .app-page.get-app .get-app__content {
    grid-template-columns: 1fr;
    row-gap: 40px;
    justify-items: center;
  }
}

/*# sourceMappingURL=style.css.map */
