header {
  position: fixed;
  background: #FFF;
  padding: 9px 21px 9px 24px;
  width: 100%;
  z-index: 100;
}

.header-fit {
  position: relative;
}
.header__logo {
  font-size: 18px;
  font-family: "WorkSans SemiBold", sans-serif;
  color: #2B2F34;
  display: inline-block;
}
.header__logo-image {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0px 0px 5px 2px #d9eede;
  border-radius: 50%;
}
.header__hamburger {
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 18px;
  cursor: pointer;
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.5s;
}
.header__hamburger--open:before {
  transform: translateY(5px) rotate(135deg);
}
.header__hamburger--open:after {
  transform: translateY(-5px) rotate(-135deg);
}
.header__hamburger--open div {
  transform: scale(0);
}

.menu--mobile {
  display: none;
  position: fixed;
  top: 47px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 100;
  overflow-y: auto;
}
.menu--mobile__cover {
  padding-top: 45px;
  margin: 0 20px;
}
.menu--open {
  display: block;
}
.menu__item {
  color: #2B2F34;
  display: block;
  background: transparent;
  padding-bottom: 25px;
  font-size: 28px;
  font-family: "WorkSans Medium", sans-serif;
}
.menu__item--active {
  color: #00C848;
}

@media only screen and (min-width: 768px) {
  header {
    padding: 16px 30px 15px 31px;
  }
  .header__logo {
    font-size: 32px;
  }
  .header__logo-image {
    width: 44px;
    height: 44px;
    margin-right: 8px;
  }
  .header__hamburger {
    width: 26px;
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 3px;
    margin: 3px 0;
    transition: 0.5s;
  }
  .header__hamburger--open:before {
    transform: translateY(2px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-10px) rotate(-135deg);
  }
  .menu--mobile {
    padding-top: 15px;
    top: 66px;
  }
  .menu--mobile__cover {
    margin: 0 30px;
  }
  .menu__item {
    padding: 25px 0 25px 0;
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) {
  header {
    padding: 0;
  }
  .header-fit {
    width: 100%;
    max-width: 1380px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 30px;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  body {
    padding-top: 80px;
  }
  .header__hamburger {
    display: none;
  }
  .menu {
    position: relative;
    display: block;
    margin-left: auto;
    top: 0;
  }
  .menu--mobile {
    background: transparent;
    padding-top: 0;
    margin-top: 0;
    overflow-y: hidden;
  }
  .menu--mobile__cover {
    border-top: none;
    padding-top: 0;
    margin: 0;
  }
  .menu__item {
    color: #797C7F;
    font-family: "WorkSans SemiBold", sans-serif;
    font-size: 20px;
    line-height: 35px;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 29px;
    text-decoration: none;
  }
  .menu__item--active {
    color: #00C848;
  }
  .menu__item:last-child {
    margin-right: 0;
  }
}
@font-face {
  font-family: "WorkSans Regular";
  src: url("../fonts/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "WorkSans SemiBold";
  src: url("../fonts/WorkSans-SemiBold.ttf");
}
@font-face {
  font-family: "WorkSans Bold";
  src: url("../fonts/WorkSans-Bold.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: #FEFEFE;
}

.block-width {
  max-width: 328px;
  width: 100%;
  margin: auto;
}

.common__paragraph-text {
  font-size: 18px;
  font-family: "WorkSans Regular";
  color: #797C7F;
  line-height: 27px;
  margin-bottom: 27px;
}
.common__paragraph-header {
  font-size: 28px;
  font-family: "WorkSans Bold";
  color: #2B2F34;
  margin-bottom: 17px;
}
.common__link {
  font-size: 18px;
  font-family: "WorkSans Regular";
  color: #00C848;
}

@media only screen and (min-width: 768px) {
  .block-width {
    max-width: 704px;
  }
  .common__paragraph-text {
    margin-bottom: 27px;
  }
  .common__paragraph-header {
    margin-bottom: 36px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-text {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 36px;
  }
  .common__paragraph-header {
    font-size: 36px;
    margin-bottom: 52px;
  }
  .common__link {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .block-width {
    max-width: 1320px;
  }
}
.footer {
  background-color: #454E65;
  padding: 0 25px;
}
.footer__content {
  padding: 28px 0 26px;
}
.footer__menu {
  margin-bottom: 29px;
}
.footer__copyright {
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-family: "WorkSans Regular";
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-menu__link {
  color: #FFFFFF;
  display: block;
  font-size: 13px;
  font-family: "WorkSans Regular";
}

@media only screen and (min-width: 768px) {
  .footer {
    padding: 0 30px;
  }
  .footer__content {
    padding: 24.5px 0 40.5px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .footer__copyright {
    text-align: left;
    float: right;
    font-size: 14px;
  }
  .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    float: left;
  }
  .footer-menu__item {
    margin-right: 40px;
  }
  .footer-menu__item:last-child {
    margin-right: 0;
  }
  .footer-menu__link {
    display: block;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer {
    padding: 0 30px;
  }
  .footer__content {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    padding: 20px 0 40px 0;
  }
  .footer__copyright {
    font-size: 14px;
  }
  .footer-menu__link {
    font-size: 16px;
  }
}
.main-block {
  padding: 48px 0 130px;
}
.main-block__cover {
  background: url("../images/main-block/bg.png") no-repeat center;
  background-size: cover;
  border-radius: 20px;
  padding-top: 35px;
}
.main-block__header {
  font-size: 32px;
  color: #fff;
  font-family: "WorkSans Bold";
  padding-bottom: 13px;
  width: 259px;
  margin-left: 24px;
  position: relative;
  z-index: 1;
}
.main-block__header::before {
  position: absolute;
  content: "";
  background: url(../images/main-block/Path_2.png) no-repeat center;
  width: 188px;
  height: 13px;
  top: 65px;
  z-index: -1;
  transform: rotate(-1deg);
}
.main-block__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "WorkSans Regular";
  width: 285px;
  margin-left: 24px;
  padding-bottom: 32px;
  line-height: 1.4;
}
.main-block__btn {
  display: block;
  background: url("../images/main-block/btn_googleplay.svg") no-repeat center;
  width: 200px;
  height: 60px;
  cursor: pointer;
  margin-left: 24px;
}
.main-block__btn-cover {
  position: relative;
}
.main-block__btn-cover::before {
  position: absolute;
  content: "";
  background: url(../images/main-block/arrow.svg) no-repeat center;
  background-size: contain;
  width: 85px;
  height: 80px;
  right: 0;
  top: -42px;
}
.main-block__pic-phones {
  width: 288px;
  height: 328px;
  position: relative;
}
.main-block__pic-phones__left {
  position: absolute;
  background: url("../images/main-block/p1.png") no-repeat center;
  background-size: cover;
  width: 190px;
  height: 400px;
  left: 20px;
  bottom: -70px;
  z-index: 1;
}
.main-block__pic-phones__right {
  position: absolute;
  background: url("../images/main-block/p2.png") no-repeat center;
  background-size: cover;
  width: 205px;
  height: 400px;
  left: 119px;
  bottom: -90px;
}

.desktop-btn {
  margin-top: 15px;
  background: url("../images/btn_web_version.svg") no-repeat center;
  display: block;
  width: 200px;
  height: 60px;
  margin-left: 24px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 7px rgba(0, 0, 0, 0.1);
}

.how-block__header {
  color: #2B2F34;
  font-size: 30px;
  font-family: "WorkSans Bold";
  text-align: center;
  padding-bottom: 50px;
}
.how-block__item {
  padding-bottom: 47px;
}
.how-block__item__wrap {
  display: flex;
  padding-bottom: 56px;
}
.how-block__item__icon {
  width: 33px;
  height: 33px;
  min-width: 33px;
  background: url("../images/how-block/tick.svg") no-repeat center;
  background-size: cover;
  margin-right: 16px;
}
.how-block__item__header {
  color: #2B2F34;
  font-size: 24px;
  font-family: "WorkSans Bold";
  padding-bottom: 31px;
}
.how-block__item__text {
  color: #797C7F;
  font-size: 18px;
  line-height: 1.4;
  font-family: "WorkSans Regular";
}
.how-block__item__picture {
  width: 328px;
  height: 400px;
  position: relative;
}
.how-block__item__picture-sizes {
  height: 608px;
  position: relative;
  width: 328px;
}
.how-block__item__picture__circle {
  background: url("../images/how-block/ellipse.svg") no-repeat center;
  width: 306px;
  height: 306px;
  background-size: contain;
  position: absolute;
  left: -90px;
  z-index: -1;
}
.how-block__item__picture__line {
  background: url("../images/how-block/line.svg") no-repeat center;
  width: 159px;
  height: 319px;
  background-size: contain;
  position: absolute;
  left: 170px;
  bottom: 0;
  z-index: -1;
}
.how-block__item__picture__messages__first {
  background: url("../images/how-block/1.png") no-repeat center;
  width: 280px;
  height: 135px;
  position: absolute;
  background-size: cover;
  right: -15px;
  top: 15px;
}
.how-block__item__picture__messages__second {
  background: url("../images/how-block/2.png") no-repeat center;
  width: 280px;
  height: 135px;
  position: absolute;
  background-size: cover;
  top: 91px;
  right: -15px;
}
.how-block__item__picture__messages__third {
  background: url("../images/how-block/3.png") no-repeat center;
  width: 280px;
  height: 135px;
  position: absolute;
  background-size: cover;
  top: 150px;
  right: -12px;
}
.how-block__item__picture__circles {
  position: absolute;
  background: url("../images/how-block/circle.svg") no-repeat center;
  height: 470px;
  width: 395px;
  background-size: contain;
  left: -60px;
}
.how-block__item__picture__phone {
  position: absolute;
  background: url("../images/how-block/phone.png") no-repeat center;
  height: 595px;
  background-size: contain;
  width: 297px;
  left: 20px;
}

.spot-block {
  margin-bottom: 216px;
  position: relative;
}
.spot-block__circle-icon {
  position: absolute;
  animation: rotation 6s infinite linear;
  background: url("../images/spot-block/rotation_text.svg") no-repeat center;
  width: 68px;
  height: 68px;
  right: 30px;
  top: -35px;
}
.spot-block__cover {
  padding: 53px 16px 0 14px;
  background: url("../images/spot-block/background.png") no-repeat center;
  background-size: cover;
  border-radius: 20px;
}
.spot-block__wrap {
  display: flex;
}
.spot-block__icon {
  width: 33px;
  height: 33px;
  min-width: 33px;
  background: url("../images/how-block/tick.svg") no-repeat center;
  background-size: cover;
  margin-right: 16px;
}
.spot-block__header {
  color: #FFFFFF;
  font-size: 24px;
  font-family: "WorkSans Bold";
  padding-bottom: 34px;
}
.spot-block__text {
  color: #FFFFFF;
  font-size: 18px;
  font-family: "WorkSans Regular";
  line-height: 1.4;
}
.spot-block__picture {
  height: 512px;
  position: relative;
}
.spot-block__picture__content {
  background: url("../images/spot-block/screen_2.png") no-repeat center;
  background-size: contain;
  position: absolute;
  height: 590px;
  width: 295px;
  bottom: -160px;
  right: 0;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.features-block {
  position: relative;
  padding-bottom: 180px;
}
.features-block__wrapper {
  display: flex;
}
.features-block__header {
  font-size: 30px;
  font-family: "WorkSans Bold";
  color: #2B2F34;
  text-align: center;
  padding-bottom: 20px;
}
.features-block__text {
  color: #393939;
  font-size: 18px;
  font-family: "WorkSans Regular";
  text-align: center;
  padding-bottom: 57px;
}
.features-block__cards {
  display: flex;
  overflow: auto;
}
.features-block__cards::-webkit-scrollbar {
  display: none;
}
.features-block__cards::-webkit-scrollbar-thumb {
  display: none;
}

.controls {
  display: none;
}

.progress[value] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  width: 100% !important;
}

progress[value]::-webkit-progress-bar {
  background-color: #EBEDEF;
}

progress[value]::-webkit-progress-value {
  background-color: #1CCE5F;
}

.feature-card {
  min-width: 260px;
  width: 260px;
  height: 330px;
  border-radius: 20px;
  margin-bottom: 36px;
  background-color: #F5F6F7;
  margin-right: 21px;
  padding: 0 30px;
}
.feature-card__icon {
  margin-top: 29px;
  margin-left: auto;
  margin-bottom: 25px;
}
.feature-card__icon-first {
  background: url("../images/feature-block/Chat.svg") no-repeat center;
  background-size: cover;
  width: 44px;
  height: 44px;
}
.feature-card__icon-second {
  background: url("../images/feature-block/Unlimited.svg") no-repeat center;
  background-size: cover;
  width: 50px;
  height: 36px;
}
.feature-card__icon-third {
  background: url("../images/feature-block/Useful.svg") no-repeat center;
  background-size: cover;
  width: 37px;
  height: 37px;
}
.feature-card__icon-forth {
  background: url("../images/feature-block/Activity.svg") no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
}
.feature-card__icon-fifth {
  background: url("../images/feature-block/Accurate.svg") no-repeat center;
  background-size: cover;
  width: 31px;
  height: 36px;
}
.feature-card__icon-sixth {
  background: url("../images/feature-block/Notification.svg") no-repeat center;
  background-size: cover;
  width: 35px;
  height: 40px;
}
.feature-card__icon-seventh {
  background: url("../images/feature-block/free_trial.svg") no-repeat center;
  background-size: cover;
  width: 34px;
  height: 32px;
}
.feature-card__icon-eighth {
  background: url("../images/feature-block/Intuitive.svg") no-repeat center;
  background-size: cover;
  width: 34px;
  height: 33px;
}
.feature-card__icon-ninth {
  background: url("../images/feature-block/support.svg") no-repeat center;
  background-size: cover;
  width: 36px;
  height: 36px;
}
.feature-card__header {
  color: #2B2F34;
  font-size: 28px;
  font-family: "WorkSans Bold";
  margin-bottom: 28px;
  height: 94px;
  width: 150px;
}
.feature-card__text {
  color: #797C7F;
  font-size: 18px;
  font-family: "WorkSans Regular";
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  .main-block {
    padding: 75px 0 294px;
  }
  .main-block__header {
    font-size: 64px;
    width: 515px;
    margin-left: 50px;
    padding-bottom: 30px;
  }
  .main-block__header::before {
    position: absolute;
    content: "";
    background: url(../images/main-block/line_tablet.png) no-repeat center;
    width: 382px;
    height: 37px;
    top: 120px;
    z-index: -1;
  }
  .main-block__text {
    font-size: 20px;
    width: 400px;
    margin-left: 50px;
    padding-bottom: 32px;
  }
  .main-block__btn {
    margin-left: 50px;
  }
  .main-block__btn-cover {
    display: flex;
  }
  .main-block__btn-cover::before {
    width: 218px;
    height: 207px;
    right: 65px;
    top: -220px;
  }
  .main-block__pic-phones {
    height: 620px;
  }
  .main-block__pic-phones__left {
    width: 390px;
    height: 820px;
    left: 30px;
    bottom: -156px;
  }
  .main-block__pic-phones__right {
    width: 390px;
    height: 870px;
    left: 250px;
    bottom: -230px;
  }
  .desktop-btn {
    margin-left: 50px;
    margin-top: 0;
  }
  .how-block {
    padding-bottom: 130px;
  }
  .how-block__header {
    font-size: 60px;
    padding-bottom: 84px;
  }
  .how-block__item__icon {
    min-width: 65px;
    width: 65px;
    height: 65px;
  }
  .how-block__item__header {
    font-size: 48px;
    padding-bottom: 40px;
  }
  .how-block__item__text {
    font-size: 20px;
  }
  .how-block__item__picture {
    margin: auto;
    height: 500px;
  }
  .how-block__item__picture-sizes {
    margin: auto;
    height: 708px;
  }
  .how-block__item__picture__circle {
    width: 386px;
    height: 386px;
    left: -140px;
  }
  .how-block__item__picture__line {
    width: 200px;
    height: 400px;
  }
  .how-block__item__picture__messages__first {
    width: 400px;
    height: 128px;
    right: -95px;
    top: 58px;
  }
  .how-block__item__picture__messages__second {
    width: 350px;
    height: 95px;
    top: 160px;
    right: -78px;
  }
  .how-block__item__picture__messages__third {
    width: 390px;
    height: 110px;
    top: 230px;
    right: -45px;
  }
  .how-block__item__picture__phone {
    width: 386px;
    height: 770px;
    left: -30px;
  }
  .how-block__item__picture__circles {
    width: 508px;
    height: 630px;
    left: -120px;
    top: -15px;
  }
  .spot-block__circle-icon {
    width: 130px;
    height: 130px;
    right: 45px;
    top: -70px;
  }
  .spot-block__cover {
    padding: 53px 56px 0 14px;
  }
  .spot-block__wrap {
    padding-bottom: 57px;
  }
  .spot-block__icon {
    min-width: 65px;
    width: 65px;
    height: 65px;
    margin-right: 22px;
  }
  .spot-block__header {
    font-size: 48px;
  }
  .spot-block__text {
    font-size: 20px;
  }
  .spot-block__picture__content {
    background: url("../images/spot-block/screen.png") no-repeat center;
    position: absolute;
    height: 850px;
    width: 445px;
    bottom: -250px;
    right: 80px;
  }
  .features-block__header {
    font-size: 60px;
  }
  .features-block__text {
    font-size: 24px;
  }
  .feature-card {
    min-width: 366px;
    width: 366px;
    height: 456px;
    padding: 0 42px;
  }
  .feature-card__header {
    font-size: 38px;
    margin-bottom: 41px;
    width: 200px;
  }
  .feature-card__text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .main-block {
    padding: 0 0 130px;
  }
  .main-block__btn-cover::before {
    right: 70px;
    top: -240px;
  }
  .controls {
    width: 80px;
    padding-top: 33px;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
  }
  .controls__btn {
    cursor: pointer;
  }
}
@media only screen and (min-width: 1440px) {
  .main-block__cover {
    padding-top: 130px;
    display: flex;
    background-size: unset;
    justify-content: space-between;
  }
  .main-block__btn-cover::before {
    right: -150px;
    top: -240px;
  }
  .main-block__pic-phones {
    width: 600px;
    height: 524px;
  }
  .main-block__pic-phones__left {
    left: -25px;
    bottom: -156px;
  }
  .main-block__pic-phones__right {
    bottom: -230px;
    width: 400px;
    left: 195px;
  }
  .how-block {
    padding-bottom: 250px;
  }
  .how-block__header {
    padding-bottom: 158px;
  }
  .how-block__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .how-block__item:first-child {
    flex-direction: row-reverse;
  }
  .how-block__item__wrap {
    width: 615px;
  }
  .spot-block {
    margin-bottom: 200px;
  }
  .spot-block__cover {
    display: flex;
    flex-direction: row-reverse;
    padding: 0;
    justify-content: space-around;
  }
  .spot-block__wrap {
    width: 614px;
    padding-top: 62px;
    position: relative;
  }
  .spot-block__arrow {
    position: absolute;
    width: 152px;
    height: 87px;
    background: url("../images/spot-block/arrow.svg") no-repeat center;
    left: -185px;
    bottom: 123px;
  }
  .spot-block__picture {
    height: 400px;
    width: 362px;
    min-width: 362px;
  }
  .spot-block__picture__content {
    width: 482px;
    height: 869px;
    background: url("../images/spot-block/screen.png") no-repeat center;
    bottom: -200px;
    right: -20px;
  }
}
@media only screen and (min-width: 1550px) {
  .main-block__pic-phones__left {
    left: 55px;
  }
  .main-block__pic-phones__right {
    width: 445px;
    left: 155px;
    left: 250px;
  }
}

/*# sourceMappingURL=index.css.map */
