@font-face {
  font-family: Roboto;
  font-weight: 300;
  src: url("fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: Roboto;
  font-weight: 600;
  src: url("fonts/Roboto-Medium.ttf");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  src: url("fonts/Roboto-Bold.ttf");
}
html,
body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #EAEDEF;
}

* {
  box-sizing: border-box;
}

main {
  background: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.l-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-card {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}
.l-card__image {
  position: relative;
  margin-top: 4px;
}
.l-card__image img {
  width: 100%;
  height: 328px;
  object-fit: cover;
}
.l-card__play {
  position: absolute;
  background: none;
  top: 0;
  left: 0;
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.l-card__play img {
  width: 60px;
  height: 60px;
}
.l-card__play + img {
  opacity: 0.9;
}
.l-card__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0;
}
.l-card__description {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-weight: 400;
}

.garanty {
  position: relative;
  background: #fff;
  padding: 20px;
  border: 1px solid #d3d2d6;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 4.5rem;
}
@media screen and (min-width: 1024px) {
  .garanty {
    margin-top: 3rem;
    flex: 0 0 calc(33.3333% - 2.5rem);
    max-width: calc(33.3333% - 2.5rem);
  }
}
.garanty__icon {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -50px;
  right: calc(50% - 50px);
  background: #fff;
  border: 3px solid #00919f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.garanty__icon img {
  height: 100%;
  width: 100%;
  max-height: 40px;
  max-width: 40px;
}
.garanty__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 0;
  text-align: center;
}
.garanty__description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-align: center;
}

.lp-app__overlay {
  width: 100%;
  background: url("img/landing/overlay-mobile.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 600px;
  margin-bottom: 260px;
}
@media screen and (min-width: 680px) {
  .lp-app__overlay {
    background-size: cover;
    min-height: 800px;
  }
}
@media screen and (min-width: 1024px) {
  .lp-app__overlay {
    background: url("img/landing/overlay.svg");
    background-repeat: no-repeat;
    background-position: 210px 0px;
    min-height: 100vh;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .lp-app__overlay {
    background-size: contain;
    background-position: 120% 0;
  }
}
@media screen and (min-width: 1920px) {
  .lp-app__overlay {
    background-position: top right;
  }
}
.lp-app__content {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 1920px) {
  .lp-app__content {
    width: 70%;
  }
}
.lp-app__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}
.lp-app__social {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .lp-app__social {
    left: calc(100% + 24px);
    right: auto;
  }
}
.lp-app__social-item {
  display: block;
  width: 24px;
  height: 24px;
}
.lp-app__menu {
  display: none;
}
@media screen and (min-width: 680px) {
  .lp-app__menu {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .lp-app__menu {
    width: auto;
    margin-top: 0;
  }
}
.lp-app__menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.lp-app__menu ul li {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}
.lp-app__menu ul li a {
  text-decoration: none;
  color: #00919f;
}
.lp-app__aside {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.25rem;
}
@media screen and (min-width: 1024px) {
  .lp-app__aside {
    width: 40%;
  }
}
@media screen and (min-width: 1920px) {
  .lp-app__aside {
    margin-top: 60px;
    gap: 100px;
  }
}
.lp-app__qrcode {
  width: 100%;
  max-width: 232px;
  position: absolute;
  bottom: -240px;
  right: 0;
  left: calc(50% - 116px);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .lp-app__qrcode {
    position: static;
    transform: none;
    margin-bottom: 0;
  }
}
.lp-app__qrcode p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  padding: 0 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 680px) {
  .lp-app__qrcode p {
    margin-top: 1rem;
  }
}
.lp-app__title {
  font-size: 2.5625rem;
  line-height: 3.5rem;
  font-weight: 700;
  color: #00919f;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 680px) {
  .lp-app__title {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .lp-app__title {
    margin-bottom: 4rem;
    text-align: initial;
  }
}
@media screen and (min-width: 1280px) {
  .lp-app__title {
    font-size: 3.6875rem;
    line-height: 5rem;
    margin: 2.5rem 0;
  }
}
.lp-app__section {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
  margin-top: 43px;
}
@media screen and (min-width: 1024px) {
  .lp-app__section {
    width: 70%;
    padding: 0;
    margin-top: 0;
  }
}
.lp-app__section h2 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-top: 63px;
  text-align: center;
  font-weight: 700;
  color: #00919f;
}
@media screen and (min-width: 680px) {
  .lp-app__section h2 {
    font-size: 2.5625rem;
    line-height: 3.5rem;
  }
}
.lp-app__description {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 680px) {
  .lp-app__description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.lp-app__description p:not(:last-child) {
  margin-bottom: 2rem;
}
.lp-app__cards {
  display: grid;
  grid-template-columns: initial;
  padding: 0 1.5rem;
  width: 100%;
  gap: 46px;
}
@media screen and (min-width: 1024px) {
  .lp-app__cards {
    display: flex;
    width: calc(100% - 10rem);
    margin: 53px auto 0 auto;
    padding: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .lp-app__cards {
    width: calc(100% - 15rem);
  }
}
.lp-app__garanties {
  background: #00919f;
  padding: 50px 26px 26px;
  margin-top: 70px;
}
@media screen and (min-width: 680px) {
  .lp-app__garanties {
    padding: 50px;
  }
}
.lp-app__garanties h2 {
  font-size: 2.125rem;
  line-height: 2.75rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin: 0;
}
@media screen and (min-width: 680px) {
  .lp-app__garanties h2 {
    font-size: 2.125rem;
    line-height: 2.75rem;
  }
}
.lp-app__garanties__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .lp-app__garanties__items {
    justify-content: space-between;
  }
}
.lp-app__howinstall {
  margin: 50px auto 67px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
@media screen and (min-width: 680px) {
  .lp-app__howinstall {
    padding: 0;
  }
}
.lp-app__howinstall p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin: 2rem 0;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lp-app__howinstall p {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: initial;
  }
}
.lp-app__howinstall p:last-child {
  margin-bottom: 0;
}
.lp-app__howinstall h2 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  text-align: center;
  font-weight: 700;
  color: #00919f;
}
@media screen and (min-width: 680px) {
  .lp-app__howinstall h2 {
    font-size: 2.5625rem;
    line-height: 3.5rem;
  }
}
.lp-app__link {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  display: block;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 10px 0;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  overflow: hidden;
}
.lp-app__link--footer {
  width: 26vh;
  padding-bottom: 26vh;
}
.lp-app__link img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100%;
}
@media screen and (min-width: 680px) {
  .lp-app__link img {
    margin-bottom: 0;
  }
}

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