header {
  position: fixed;
  background: #FFF;
  padding: 10px 20px 10px 20px;
  width: 100%;
  z-index: 100;
}

.header-fit {
  position: relative;
}
.header__logo {
  font-size: 20px;
  font-family: "WorkSans Regular", sans-serif;
  color: #2F3144;
  font-weight: bold;
  display: inline-block;
}
.header__logo-image {
  width: 36px;
  height: 36px;
  vertical-align: middle;
}
.header__hamburger {
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 22px;
  cursor: pointer;
  z-index: 3;
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #2B2F34;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  transition: 0.5s;
}
.header__hamburger:before {
  margin-bottom: 4px;
}
.header__hamburger div {
  margin-bottom: 4px;
}
.header__hamburger--open:before {
  transform: translateY(7px) 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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #DDFC88;
  z-index: 2;
  height: 252px;
  overflow-y: auto;
  text-align: center;
}
.menu--mobile__cover {
  padding-top: 70px;
  margin: 0 20px;
}
.menu--open {
  display: block;
}
.menu__item {
  color: #2B2F34;
  display: block;
  background: transparent;
  padding-bottom: 25px;
  font-size: 20px;
  font-family: "WorkSans Regular", sans-serif;
}
.menu__item--active {
  color: #279095;
}

@media only screen and (min-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 30px;
  }
  .header__logo {
    font-size: 22px;
  }
  .header__hamburger {
    display: none;
  }
  .header-fit {
    width: 100%;
    max-width: 1200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
  .menu {
    position: relative;
    display: block;
    margin-left: auto;
    top: 0;
  }
  .menu--mobile {
    background: transparent;
    padding-top: 0;
    margin-top: 0;
    overflow-y: hidden;
    height: unset;
  }
  .menu--mobile__cover {
    border-top: none;
    padding-top: 0;
    margin: 0;
  }
  .menu__item {
    color: #797C7F;
    font-family: "WorkSans Regular", sans-serif;
    font-size: 18px;
    line-height: 35px;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 29px;
    text-decoration: none;
  }
  .menu__item--active {
    color: #279095;
  }
  .menu__item:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
  .header__logo {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1440px) {
  .header-fit {
    max-width: 1380px;
  }
}
@font-face {
  font-family: "WorkSans Regular";
  src: url("../fonts/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "WorkSans Bold";
  src: url("../fonts/WorkSans-Bold.ttf");
}
@font-face {
  font-family: "WorkSans Medium";
  src: url("../fonts/WorkSans-Medium.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%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

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

@media only screen and (min-width: 768px) {
  .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: 32px;
    margin-bottom: 52px;
  }
  .common__link {
    font-size: 20px;
  }
}
.footer {
  background-color: #DDFC88;
  position: relative;
  margin: 0 10px;
  bottom: 15px;
  border-radius: 18px;
}
.footer__content {
  padding: 23px 15px 23px;
}
.footer__menu {
  margin-bottom: 29px;
}
.footer__copyright {
  color: #2B2F34;
  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: #2B2F34;
  display: block;
  font-size: 13px;
  font-family: "WorkSans Regular";
}

@media only screen and (min-width: 768px) {
  .footer__content {
    padding: 26px 30px 25px 30px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .footer__copyright {
    text-align: left;
    float: right;
  }
  .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 {
    color: #2B2F34;
    display: block;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__copyright {
    font-size: 14px;
  }
  .footer-menu__link {
    font-size: 16px;
  }
}
.main-content {
  padding-top: 43px;
}
.main-content__how-block {
  padding-top: 100px;
}

.monitor-block {
  width: 360px;
  margin: auto;
  background: #00797B;
  border-radius: 20px;
}
.monitor-block-cover {
  width: 300px;
  margin: auto;
  padding-top: 30px;
}
.monitor-block__header {
  font-size: 32px;
  font-family: "WorkSans Bold";
  color: #ffffff;
  padding-bottom: 21px;
  line-height: 1.3;
}
.monitor-block__header--subcolor {
  color: #DDFC88;
}
.monitor-block__text {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.3;
  padding-bottom: 40px;
  font-family: "WorkSans Regular";
}
.monitor-block__btn {
  display: block;
  width: 176px;
  height: 52px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.monitor-block__btn:first-child {
  margin-bottom: 15px;
}
.monitor-block__picture-cover {
  position: relative;
  z-index: 0;
  width: 260px;
  height: 437px;
  margin: auto;
  margin-top: -40px;
}
.monitor-block__picture-main {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -75px;
  background: url("../images/main_picture_iPhone.png") no-repeat;
  background-size: cover;
}

.how-block {
  max-width: 340px;
  margin: auto auto 40px;
}
.how-block__header {
  padding-left: 10px;
  padding-bottom: 30px;
  font: 32px "WorkSans Bold";
}

.status-item {
  padding-left: 20px;
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 18px;
  margin-bottom: 10px;
}
.status-item__header {
  font: 24px "WorkSans Bold";
  padding: 18px 0 13px;
  color: #393939;
}
.status-item__text {
  font: 13px "WorkSans Regular";
  color: #393939;
}
.status-item__img {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.status-item:last-child {
  margin-bottom: 0;
}
.status-item--first {
  background-color: #DDFC88;
}
.status-item--first .status-item__img {
  width: 190px;
  height: 240px;
  background: url("../images/Status Viewer pic.png") no-repeat top;
  background-size: cover;
}
.status-item--second {
  background-color: #00797B;
}
.status-item--second .status-item__header {
  color: #FFFFFF;
}
.status-item--second .status-item__text {
  color: #FFFFFF;
}
.status-item--second .status-item__img {
  width: 230px;
  height: 254px;
  background: url("../images/Status Saver pic.png") no-repeat top;
  background-size: cover;
}
.status-item--third {
  background-color: #F6F6F6;
}
.status-item--third .status-item__img {
  width: 330px;
  height: 254px;
  background: url("../images/Status History pic.png") no-repeat;
  background-size: cover;
  margin: unset;
  left: unset;
}

.features-block {
  position: relative;
  padding: 0 0 64px 20px;
}
.features-block__wrapper {
  display: flex;
}
.features-block__header {
  font-size: 32px;
  font-family: "WorkSans Bold";
  color: #2B2F34;
  padding-bottom: 40px;
}
.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-cover {
  display: none;
}

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

progress[value]::-webkit-progress-bar {
  background-color: #E9E9E9;
  border-radius: 20px;
}

progress[value]::-webkit-progress-value {
  background-color: #2B2F34;
  border-radius: 20px;
}

.feature-card {
  min-width: 260px;
  width: 260px;
  height: 330px;
  border-radius: 20px;
  margin-bottom: 36px;
  margin-right: 40px;
}
.feature-card__icon {
  margin-bottom: 30px;
  width: 70px;
  height: 70px;
}
.feature-card__icon-first {
  background: url("../images/features/status_viewing_saving.svg") no-repeat center;
  background-size: cover;
  width: 44px;
  height: 44px;
}
.feature-card__icon-second {
  background: url("../images/features/status_viewing_saving.svg") no-repeat center;
  background-size: cover;
}
.feature-card__icon-third {
  background: url("../images/features/convenient_gallery_view.svg") no-repeat center;
  background-size: cover;
}
.feature-card__icon-forth {
  background: url("../images/features/grouped_status_viewing.svg") no-repeat center;
  background-size: cover;
}
.feature-card__icon-fifth {
  background: url("../images/features/direct_downloading.svg") no-repeat center;
  background-size: cover;
}
.feature-card__icon-sixth {
  background: url("../images/features/simplified_interface.svg") no-repeat center;
  background-size: cover;
}
.feature-card__header {
  color: #393939;
  font-size: 24px;
  font-family: "WorkSans Bold";
  margin-bottom: 21px;
}
.feature-card__text {
  color: #393939;
  font-size: 14px;
  font-family: "WorkSans Regular";
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  .main-content {
    padding-top: 80px;
  }
  .main-content__how-block {
    border-radius: 30px;
    padding-top: 282px;
  }
  .main-content__features {
    padding: 90px 40px 80px 40px;
  }
  .monitor-block {
    width: 728px;
    height: 926px;
  }
  .monitor-block-cover {
    width: 650px;
    padding-top: 58px;
  }
  .monitor-block__header {
    font-size: 48px;
    text-align: center;
    padding-bottom: 22px;
  }
  .monitor-block__text {
    font-size: 20px;
    width: 630px;
    padding-bottom: 40px;
    margin: auto;
    line-height: 1.5;
    text-align: center;
  }
  .monitor-block__picture-cover {
    width: 392px;
    height: 659px;
    margin-top: -36px;
  }
  .google-img {
    width: 180px;
  }
  .how-block {
    max-width: 724px;
  }
  .how-block__header {
    font-size: 48px;
    text-align: center;
    padding-bottom: 53px;
    padding-left: 0;
  }
  .how-block__subheader {
    font-size: 48px;
    margin-bottom: 50px;
  }
  .status-item {
    width: 724px;
    margin-bottom: 20px;
    padding-left: 50px;
  }
  .status-item__header {
    font-size: 32px;
    padding: 47px 0 14px;
  }
  .status-item__text {
    font-size: 20px;
    line-height: 1.5;
  }
  .status-item--first {
    height: 580px;
  }
  .status-item--first .status-item__img {
    width: 334px;
    height: 401px;
  }
  .status-item--second {
    height: 280px;
  }
  .status-item--second .status-item__text-cover {
    width: 242px;
  }
  .status-item--second .status-item__img {
    width: 255px;
    height: 279px;
    right: 55px;
    left: unset;
  }
  .status-item--third {
    height: 280px;
  }
  .status-item--third .status-item__text-cover {
    width: 232px;
  }
  .status-item--third .status-item__img {
    bottom: 30px;
  }
  .features-block__header {
    font-size: 48px;
    text-align: center;
    padding-bottom: 62px;
  }
  .feature-card {
    width: 300px;
    margin-right: 50px;
    height: unset;
    margin-bottom: 60px;
  }
  .feature-card__icon {
    width: 100px;
    height: 100px;
  }
  .feature-card__header {
    font-size: 32px;
  }
  .feature-card__text {
    font-size: 20px;
  }
  .progress-cover {
    display: block;
  }
  .controls {
    display: flex;
    margin: 20px 20px 0;
    justify-content: flex-end;
  }
  .controls__btn:first-child {
    margin-right: 10px;
  }
  .progress[value] {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-content {
    padding: 0;
  }
  .main-content__how-block {
    padding-top: 100px;
  }
  .monitor-block {
    width: 1200px;
    display: flex;
    height: 600px;
    justify-content: center;
  }
  .monitor-block__header {
    font-size: 48px;
    text-align: left;
  }
  .monitor-block__text {
    font-size: 20px;
    width: unset;
    text-align: left;
  }
  .monitor-block__btn {
    margin: unset;
  }
  .monitor-block__btn--group {
    display: flex;
  }
  .monitor-block__btn:first-child {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .monitor-block-cover {
    width: 590px;
    margin: unset;
    padding-left: 90px;
  }
  .monitor-block__picture-cover {
    margin-top: 0;
  }
  .monitor-block__picture-main {
    margin: unset;
    width: 440px;
    height: 715px;
    bottom: -90px;
    right: -50px;
    background: url("../images/main_picture_iPhone.png") no-repeat;
  }
  .how-block {
    max-width: 1200px;
  }
  .how-block__header {
    text-align: left;
    width: 608px;
  }
  .how-block__items {
    display: flex;
    justify-content: space-between;
  }
  .status-item--first {
    width: 590px;
  }
  .status-item--second {
    width: 590px;
    height: 280px;
  }
  .status-item--third {
    width: 590px;
    height: 280px;
  }
  .features-block {
    padding: 0 0 64px 60px;
  }
  .features-block__header {
    text-align: left;
    width: 610px;
  }
}
@media only screen and (min-width: 1440px) {
  .monitor-block {
    width: 1380px;
  }
  .features-block {
    padding: 0 0 64px 120px;
    max-width: 1440px;
    margin: auto;
  }
  .feature-card {
    width: 500px;
  }
  .progress[value] {
    padding-right: 120px;
  }
  .controls {
    margin: 20px 120px 0 0;
  }
}
@media only screen and (min-width: 1700px) {
  .features-block {
    max-width: 1715px;
    margin: auto;
  }
}

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