body {
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 140%;
  font-weight: 600;
  font-family: "Segoe UI";
  color: #000;
  background: #fff;
}

.landing-page {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
  padding: 20px 20px 40px;
  box-sizing: border-box;
}

.landing-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}

.landing-top__text {
  flex: 1;
}

h1 {
  color: #000;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 40px;
}

.landing-top__image {
  width: 280px;
}

.advantages {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.advantage {
  width: calc((100% + 20px) / 3 - 20px);
  text-align: center;
  flex-shrink: 0;
}
.advantage svg {
  margin-bottom: 12px;
}
.advantage span {
  display: block;
  text-align: center;
  line-height: 1;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
}
.list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 14px;
  left: 8px;
  background: #F58F1F;
  border-radius: 50%;
}

a {
  color: inherit;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: 0.3s;
}
a:hover {
  text-decoration-color: transparent;
}

.text-center {
  text-align: center;
}

.title {
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #5D1356;
  color: #fff;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  transition: 0.2s;
}
.button:hover {
  background: #8C3662;
}

.title-t {
  font-weight: 400;
  margin-bottom: 20px;
}

.apps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

body {
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 140%;
  font-weight: 600;
  font-family: "Segoe UI";
  color: #000;
  background: #fff;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .landing-top {
    margin-bottom: 30px;
  }
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .landing-top__image {
    width: 116px;
  }
  .advantage {
    font-size: 20px;
  }
  .advantage svg {
    width: 48px;
    height: 48px;
  }
  .list {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .list li::before {
    top: 12px;
    left: 8px;
  }
  .title,
  .button {
    margin-bottom: 20px;
  }
}
@media (max-width: 380px) {
  .advantages {
    gap: 10px;
  }
  .advantage {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */