@charset "UTF-8";
/* ================================== Подключение шрифтов ================================== */
/* ================================== Дополнительные стили ================================== */
/* ----------------- Обнуление стилей */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

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

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

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 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: inherit;
}

/* ----------------- Кнопка прокрутки вверх */
.scroll-btn__body span:nth-child(3)::after, .scroll-btn__body span:nth-child(2)::after, .scroll-btn__body span:nth-child(1)::after {
  position: absolute;
  width: 30%;
  height: 1px;
  background-color: #ec5863;
  left: 49%;
  transform: rotate(-30deg) translateX(-100%);
  opacity: 0;
  animation-name: arrow-fx;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.scroll-btn__body span:nth-child(3)::before, .scroll-btn__body span:nth-child(2)::before, .scroll-btn__body span:nth-child(1)::before {
  position: absolute;
  width: 30%;
  height: 1px;
  background-color: #ec5863;
  right: 49%;
  transform: rotate(-150deg) translateX(-100%);
  opacity: 0;
  animation-name: arrow-fx;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes arrow-fx {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.scroll-btn {
  transform: scale(0);
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  width: 40px;
  height: 40px;
  border: 1px solid #ec5863;
  border-radius: 50%;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2039215686);
  transition: transform 0.5s;
  cursor: pointer;
}
.scroll-btn__body {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
}
.scroll-btn__body span:nth-child(1) {
  display: block;
}
.scroll-btn__body span:nth-child(1)::after {
  content: "";
  top: 10%;
  animation-delay: 0.5s;
}
.scroll-btn__body span:nth-child(1)::before {
  content: "";
  top: 10%;
  animation-delay: 0.5s;
}
.scroll-btn__body span:nth-child(2) {
  display: block;
}
.scroll-btn__body span:nth-child(2)::after {
  content: "";
  top: 30%;
  animation-delay: 0.25s;
}
.scroll-btn__body span:nth-child(2)::before {
  content: "";
  top: 30%;
  animation-delay: 0.25s;
}
.scroll-btn__body span:nth-child(3) {
  display: block;
}
.scroll-btn__body span:nth-child(3)::after {
  content: "";
  top: 50%;
  animation-delay: 0s;
}
.scroll-btn__body span:nth-child(3)::before {
  content: "";
  top: 50%;
  animation-delay: 0s;
}

.visible {
  transform: scale(1);
}

/* ================================== Технические стили ================================== */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Rubik;
  font-size: 12px;
  color: #616161;
}
body.active {
  overflow: hidden;
}

/* ----------------- Скрываем элемент */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ----------------- Отключаем ссылку */
.disabled {
  pointer-events: none;
  cursor: default;
}

/* ----------------- Прижимаем footer к низу */
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper .page {
  flex: 1 1 auto;
}

/* ----------------- header при скролле */
/* ================================== Миксины (в синтаксисе scss) ================================== */
/* Адаптивное свойство */
/* ================================== Шаблоны (в синтаксисе scss) ================================== */
/* Адаптивное изображение */
.intro__media {
  position: relative;
}
.intro__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tools__item::after, .tools__item::before, .info__statistic-decor-1, .info__statistic-decor-2, .info__statistic-decor-3, .app__picture-decor-1, .app__picture-decor-2, .app__picture-decor-3 {
  position: absolute;
  background: #ec5863;
  border-radius: 30px;
  z-index: -2;
}

.tools__item:last-child::after, .tools__item:last-child::before, .tools__item:first-child::before, .info__statistic-decor-3, .info__statistic-decor-1 {
  transform: rotate(-30deg);
}

.tools__item:first-child::after, .info__statistic-decor-2 {
  transform: rotate(15deg);
}

/* ================================== БЭМ блоки ================================== */
[class*=_container] {
  max-width: 1052px;
  margin: 0px auto;
  padding: 0 15px;
  box-sizing: content-box;
}

.button a {
  font-family: Raleway;
  display: inline-block;
  font-weight: 800;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.14em;
  color: #fcfdfe;
  background: #ec5863;
  border-radius: 5px;
  padding: 14px 29px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.button a:hover {
  background: #db0b19;
}
.button_blue-bg a {
  background: #4285f4;
}
.button_blue-bg a:hover {
  background: #1f6dec;
}

.text-block__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 126%;
  color: #000000;
}
.text-block__title span {
  color: #ec5863;
}
.text-block__title:not(:last-child) {
  margin: 0px 0px 12px 0px;
}
.text-block__title_blue-keyword span {
  color: #4285f4;
}
.text-block__text {
  line-height: 138.5%;
}
.text-block__text:not(:last-child) {
  margin: 0px 0px 24px 0px;
}
.text-block_center {
  text-align: center;
}

/* ================================== Header ================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header__container {
  display: flex;
  align-items: center;
  min-height: 114px;
}
.header__menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: end;
}
.header__button {
  flex: 0 1 252px;
  display: flex;
  justify-content: end;
}
.header__button .download-icon {
  display: none;
}

.menu__list {
  display: flex;
}
.menu__item {
  margin: 0px 30px 0px 0px;
}
.menu__item a {
  font-family: Raleway;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: 0.14em;
  color: #000000;
  padding: 5px;
}
.menu__item a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background-color: #000000;
  transition: left 0.3s, right 0.3s;
}
.menu__item a:hover:before {
  left: 5px;
  right: 5px;
}
.menu__burger {
  display: none;
}

/* ================================== Main =================================== */
.intro {
  background: #fafbfd;
}
.intro__container {
  padding: 153px 15px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.intro__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  transform: translateX(-252px);
  background: #ec5863;
  border-radius: 30px 0px 0px 30px;
}
.intro__text-block {
  flex: 1 1 50%;
}
.intro__text-block p {
  max-width: 320px;
}
.intro__media {
  flex: 1 1 50%;
  padding: 0px 0px 36% 0px;
  z-index: 2;
}
.intro__video {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin: 60px 0px 0px 0px;
}
.intro__play-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #4285f4;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.intro__play-button::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='12' height='14' viewBox='0 0 12 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.833336 1.51517L10.3333 7L0.833335 12.4848L0.833336 1.51517Z' stroke='%234285F4'/%3E%3C/svg%3E%0A") 3px center no-repeat;
}
.intro__play-button:hover::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='12' height='14' viewBox='0 0 12 14' fill='%234285f4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.833336 1.51517L10.3333 7L0.833335 12.4848L0.833336 1.51517Z' stroke='%234285F4'/%3E%3C/svg%3E%0A") 3px center no-repeat;
}
.intro__play-button.active::before, .intro__play-button.active::after {
  content: "";
  width: 5px;
  height: 12px;
  background-color: #4285f4;
}
.intro__play-button.active::before {
  margin: 0px 2px 0px 0px;
}
.intro__video-text {
  margin: 0px 0px 0px 12px;
}
.intro__video-text p {
  line-height: 126%;
}
.intro__video-text p:not(:last-child) {
  margin: 0px 0px 5px 0px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #b0b0b0;
}
.intro__video-text p:last-child {
  font-size: 9px;
  letter-spacing: 0.165em;
  text-transform: uppercase;
  color: #000000;
}
.intro__popup {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8705882353);
  padding: 0 15px;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
  display: flex;
  align-items: center;
  z-index: 99;
}
.intro__popup::after {
  content: "×";
  font-size: 30px;
  position: absolute;
  top: 7px;
  right: 15px;
  color: #ec5863;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(3);
  opacity: 0;
}
.intro__popup.active {
  visibility: visible;
  opacity: 1;
}
.intro__popup.active::after {
  transform: scale(1);
  opacity: 1;
}
.intro__popup.active::after:hover {
  transform: scale(1.5);
}
.intro__popup-video {
  position: relative;
  margin: 0px auto;
  transform: scale(0);
  max-width: 589px;
  display: flex;
  align-items: center;
  background-color: #ec5863;
  border: 5px solid #ec5863;
  border-radius: 8px;
  transition: transform 0.5s;
  z-index: 100;
}
.intro__popup-video video {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 100;
}
.intro__popup-video.active {
  transform: scale(1);
}

/* -------------------------------------- */
.app {
  padding: 79px 0;
  position: relative;
  z-index: 0;
}
.app__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app__picture {
  flex: 0 0 371px;
  position: relative;
  margin: 0px 15px 0px 57px;
  display: flex;
  justify-content: center;
  padding: 56px 0 27px;
}
.app__picture-image {
  display: inline-block;
  position: relative;
  box-shadow: 2px 4px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.app__picture-image::after {
  content: "";
  position: absolute;
  width: 206px;
  height: 27px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(240, 240, 240, 0.49);
  border-radius: 16px;
  z-index: -1;
}
.app__picture-decor-1 {
  width: 147px;
  height: 147px;
  top: 0;
  left: 0;
}
.app__picture-decor-2 {
  width: 77px;
  height: 77px;
  bottom: 107px;
  right: 33px;
}
.app__picture-decor-3 {
  width: 77px;
  height: 77px;
  bottom: 0px;
  left: 32px;
}
.app__text-block {
  flex: 0 1 50%;
}
.app__text-block p {
  max-width: 350px;
}

/* -------------------------------------- */
.info {
  background: #fafbfd;
  padding: 104px 0 109px;
  position: relative;
  z-index: 0;
}
.info__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.info__statistic {
  flex: 0 1 654px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 2px 24px rgba(88, 126, 236, 0.15);
  border-radius: 16px;
  padding: 0 80px;
  position: relative;
}
.info__statistic:not(:last-child) {
  margin: 0px 0px 85px 0px;
}
.info__statistic-item {
  text-align: center;
  padding: 28px 0;
}
.info__statistic-item-value {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.14em;
  color: #ec5863;
  margin: 0px 0px 5px 0px;
}
.info__statistic-item-name {
  font-weight: 700;
  font-size: 11px;
  line-height: 120%;
  letter-spacing: 0.37em;
  text-transform: uppercase;
  color: #000000;
}
.info__statistic-decor-1 {
  width: 65px;
  height: 65px;
  bottom: -20px;
  left: -20px;
  border-radius: 16px;
}
.info__statistic-decor-2 {
  width: 97px;
  height: 97px;
  top: -40px;
  left: 220px;
}
.info__statistic-decor-3 {
  width: 127px;
  height: 127px;
  bottom: -10px;
  right: -53px;
}
.info__text-block {
  flex: 1 1 50%;
  padding: 0px 15px 0px 49px;
}
.info__text-block .text-block__text {
  max-width: 310px;
}
.info__video {
  flex: 1 1 50%;
  padding: 0px 0px 28% 0px;
  box-shadow: 0px 4px 18px rgba(88, 126, 236, 0.18);
  position: relative;
  border-radius: 8px;
}
.info__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.info__video-play-button {
  width: 39px;
  height: 39px;
  background: #587eec;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  opacity: 1;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
}
.info__video-play-button::after {
  content: "";
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateX(1px);
}
.info__video-play-button:hover {
  background: #ec5863;
}
.info__video-play-button.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(2);
  pointer-events: none;
  cursor: default;
}

/* -------------------------------------- */
.tools {
  padding: 80px 0 45px;
  position: relative;
  z-index: 0;
}
.tools__text-block:not(:last-child) {
  margin: 0px 0px 46px 0px;
}
.tools__text-block p {
  max-width: 520px;
  margin: 0px auto;
}
.tools__items {
  display: flex;
}
.tools__item {
  flex: 1 0 33.333%;
  padding: 0 36px;
  position: relative;
}
.tools__item::after, .tools__item::before {
  content: "";
}
.tools__item:first-child::before {
  content: "";
  width: 66px;
  height: 66px;
  border-radius: 16px;
  bottom: -34px;
  left: 17px;
}
.tools__item:first-child::after {
  content: "";
  width: 97px;
  height: 97px;
  top: 42px;
  right: -15px;
}
.tools__item:last-child::before {
  content: "";
  width: 127px;
  height: 127px;
  bottom: -24px;
  left: -85px;
}
.tools__item:last-child::after {
  content: "";
  width: 66px;
  height: 66px;
  border-radius: 16px;
  top: -34px;
  right: 16px;
}
.tools__item-card {
  display: block;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 4px 18px rgba(88, 126, 236, 0.18);
  border-radius: 8px;
  padding: 37px 18px;
  height: 100%;
  width: 100%;
  transform: scale(1);
  outline: none;
  transition: transform 0.3s;
}
.tools__item-card:hover {
  transform: scale(1.1);
  outline: 2px solid #ec5863;
}
.tools__item-icon:not(:last-child) {
  margin: 0px 0px 58px 0px;
}
.tools__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 138.5%;
  text-align: center;
  letter-spacing: 0.08em;
  color: #000000;
}
.tools__item-title:not(:last-child) {
  margin: 0px 0px 4px 0px;
}
.tools__item-text {
  font-size: 12px;
  line-height: 138.5%;
  text-align: center;
  letter-spacing: 0.08em;
  color: #616161;
}

/* ================================== Footer =================================== */
.footer {
  padding: 29px 0 47px;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__item:not(:last-child) {
  margin: 0px 57px 0px 0px;
}

/* ================================== Media =================================== */
@media (max-width: 991.98px) {
  .header__button {
    flex: 0 1 170px;
  }
  .intro__container::after {
    transform: translateX(-190px);
  }
  .app__picture {
    margin: 0 15px;
  }
  .info {
    padding: 100px 0px 70px;
  }
  .info__text-block {
    padding: 0px 15px;
  }
  .tools {
    padding: 45px 0 45px;
  }
  .tools__item-icon:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
  .tools__items {
    margin: 0px -20px;
  }
  .tools__item {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .lock {
    overflow: hidden;
  }
  .header__container {
    min-height: 80px;
  }
  .header__logo {
    position: relative;
    z-index: 30;
  }
  .header__button {
    flex: 0 1 auto;
    position: relative;
    z-index: 30;
    margin: 0px 30px 0px 0px;
  }
  .header__button a {
    display: none;
  }
  .header__button .download-icon {
    display: block;
    padding: 0px;
    background: none;
    border-bottom: 2px solid black;
  }
  .header__button .download-icon svg {
    animation-name: dwnld-arrow-fx;
    animation-iteration-count: infinite;
    animation-duration: 2s;
  }
  @keyframes dwnld-arrow-fx {
    from {
      transform: translateY(-1px);
    }
    50% {
      transform: translateY(2px);
    }
    to {
      transform: translateY(-1px);
    }
  }
  .menu__list {
    position: fixed;
    top: -100%;
    left: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 110px 0 0 0;
    background: #fafbfd;
    z-index: 10;
    overflow: auto;
    transition: top 0.5s;
  }
  .menu__list.active {
    top: 0;
  }
  .menu__list.active::before {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 80px;
    background: #fafbfd;
    z-index: 20;
  }
  .menu__item {
    margin: 0px 0px 30px 0px;
  }
  .menu__item:last-child {
    margin: 0px 0px 0px 0px;
  }
  .menu__item a {
    font-size: 20px;
  }
  .menu__burger {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 30;
    cursor: pointer;
  }
  .menu__burger span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    left: 0;
    transform-origin: center;
    transition: transform 0.3s, top 0.3s, bottom 0.3s;
  }
  .menu__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) scaleX(1);
  }
  .menu__burger span:first-child {
    top: 0;
  }
  .menu__burger span:last-child {
    bottom: 0;
  }
  .menu__burger.active span:nth-child(2) {
    transform: translateY(-50%) scaleX(0);
  }
  .menu__burger.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .menu__burger.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .text-block__text {
    font-size: 18px;
    text-align: justify;
  }
  .intro__container {
    padding: 100px 15px 28px;
  }
  .intro__container::after {
    display: none;
  }
  .intro__text-block, .intro__media {
    flex: 1 1 100%;
  }
  .intro__text-block {
    text-align: center;
  }
  .intro__text-block p {
    max-width: 100%;
  }
  .intro__text-block:not(:last-child) {
    margin: 0px 0px 35px 0px;
  }
  .intro__video {
    margin: 30px 0px 0px 0px;
  }
  .intro__media {
    padding: 0px 0px 72% 0px;
  }
  .app {
    padding: 30px 0;
    text-align: center;
  }
  .app__picture {
    margin: 0 auto;
    flex: 0 1 371px;
  }
  .app__container {
    flex-wrap: wrap-reverse;
  }
  .app__text-block {
    flex: 1 1 50%;
    margin: 0px 0px 35px 0px;
  }
  .app__text-block p {
    max-width: 100%;
  }
  .info {
    padding: 70px 0px 30px;
    text-align: center;
  }
  .info__text-block {
    flex: 1 1 100%;
    padding: 0px;
    margin: 0px 0px 35px 0px;
  }
  .info .text-block__text {
    max-width: 100%;
  }
  .info__statistic {
    flex: 0 1 500px;
    padding: 0px 40px;
  }
  .info__statistic:not(:last-child) {
    margin: 0px 0px 50px 0px;
  }
  .info__video {
    padding: 0px 0px 57% 0px;
  }
  .tools__text-block:not(:last-child) {
    margin: 0px 0px 26px 0px;
  }
  .tools__text-block p {
    max-width: 100%;
  }
  .tools__items {
    flex-direction: column;
    margin: 0px;
  }
  .tools__item {
    padding: 0px;
  }
  .tools__item:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
  .tools__item::after, .tools__item::before {
    display: none;
  }
  .tools__item-card .tools__item-icon {
    transform: scale(1);
    transition: transform 0.3s;
  }
  .tools__item-card:hover {
    transform: scale(1);
  }
  .tools__item-card:hover .tools__item-icon {
    transform: scale(1.3);
  }
  .footer {
    padding: 15px 0;
  }
}
@media (max-width: 567.98px) {
  .text-block__title {
    font-size: 34px;
  }
  .info__statistic {
    flex: 0 1 auto;
    flex-direction: column;
  }
  .info__statistic-decor-2 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
  }
  .tools {
    padding: 25px 0;
  }
  .footer__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer__item:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 374.98px) {
  .app__picture-decor-2 {
    right: 5%;
  }
  .app__picture-decor-3 {
    left: 5%;
  }
}