@import "https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap";

html {
  min-height: 100%;
  background-color: #000000;
}

body {
  font-family: Inter, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  flex-grow: 1;
}

a {
  cursor: pointer;
}

.wrapper {
  width: 100%;
  max-width: 1128px;
  padding: 0 16px;
  box-sizing: border-box;
  min-width: 320px;
  margin: 0 auto;
}

.section-title {
  font-weight: 700;
  position: relative;
}

.section-title.underline::after {
  content: "";
  display: block;
  height: 10px;
  border-radius: 10px;
  width: 380px;
  position: absolute;
  z-index: -1;
  bottom: -5px;
  background-color: #ff1a1a;
  transform: rotate(-.7deg);
}

.button {
  font-family: Inter, sans-serif;
  color: #000000;
  padding: 0 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
  background-color: #fff;
  text-align: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button.primary {
  background-color: #ffffffa8;
  color: #000000;
}

.button.primary:hover {
  background-color: #ffffff;
}

.button.ghost {
  color: #fff;
}

.button.ghost:hover {
  color: #fafafa;
}

a.clean {
  text-decoration: none;
}

a.clean:hover,
a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

span.eol {
  display: inline-block;
  line-height: 0;
}

.advantages {
  background-color: #fafafa;
  padding: 48px 0;
}

.advantages .list {
  counter-reset: item;
  margin-top: 54px;
}

.advantages .list .advantage {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  counter-increment: item;
  border-radius: 30px;
  background-color: #fff;
}

.advantages .list .advantage.photo_advantage {
  align-items: center;
}

.advantages .list .advantage .image {
  width: 350px;
  height: 350px;
  flex-shrink: 0;
}

.advantages .list .advantage .text {
  max-width: 647px;
  flex-grow: 1;
  padding: 38px;
}

.advantages .list .advantage .text .title {
  color: #000000;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -1px;
}

.advantages .list .advantage .text .counter {
  font-weight: 600;
  font-size: 24px;
  line-height: 17px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #dad8d8;
  margin-bottom: 48px;
}

.advantages .list .advantage .text .counter::before {
  content: counter(item, decimal);
}

.advantages .list .advantage .text .description {
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -.5px;
  color: #646262;
}

.advantages .list .advantage .text .button {
  font-family: Inter, sans-serif;
  color: #000000;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -.5px;
  text-decoration: none;
  background-color: transparent;
  border: none;
  gap: 5px;
}

.boost, .profit {
  background-color: #000000;
  padding: 48px 0;
}

.boost .boost__content,
.profit .profit__content {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  counter-increment: item;
  border-radius: 30px;
  background-color: #1c1c1c;
}

.boost .boost__content .image,
.profit .profit__content .image {
  width: 350px;
  height: 350px;
  flex-shrink: 0;
}

.boost .boost__content .text,
.profit .profit__content .text {
  max-width: 647px;
  flex-grow: 1;
  padding: 38px;
}

.boost .boost__content .text .title,
.profit .profit__content .text .title {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -1px;
}

.boost .boost__content .text .description,
.profit .profit__content .text .description {
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -.5px;
  color: #fff;
}

.boost .boost__content .text .button,
.profit .profit__content .text .button {
  font-family: Inter, sans-serif;
  color: #000000;
  cursor: pointer;
  padding: 0 16px;
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -.5px;
  text-decoration: none;
  background-color: #fff;
  border: none;
}

.bottomsheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bottomsheet.visible {
  display: flex;
}

.bottomsheet.hidden {
  display: none;
}

.bottomsheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  animation: bs-fade-in .25s ease;
  transition: opacity .3s ease;
}

.bottomsheet--closing .bottomsheet__overlay {
  opacity: 0;
}

.bottomsheet__panel {
  position: relative;
  z-index: 1;
  background: #282828;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
  animation: bs-slide-up 0.3s ease;
  will-change: transform;
}

.bottomsheet__drag-handle {
  width: 44px;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  margin: 8px auto 0;
  flex-shrink: 0;
}

.bottomsheet__close {
  position: absolute;
  top: 20px;
  right: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

.bottomsheet__content {
  flex-shrink: 0;
  padding: 20px 16px 28px;
}

.bottomsheet__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  margin: 0 0 20px;
  padding-right: 32px;
}

.bottomsheet__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  margin: 0 0 28px;
}

.bottomsheet__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  background: #ff462d;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.bottomsheet__phone {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 320px;
}

.bottomsheet__phone-img {
  width: auto;
  height: 509px;
  display: block;
}

@keyframes bs-fade-in {
  0% { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bs-slide-up {
  0% { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie {
  background-color: #363740;
  box-shadow: 0 3px 5px #1f2026;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  max-width: 835px;
  width: 100%;
  padding: 20px 25px 20px 20px;
  border-radius: 15px;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.cookie.hidden {
  opacity: 0;
  display: none;
}

.cookie__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cookie__wrapper .cookie__section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.cookie__wrapper .cookie__section-description {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
}

.cookie__wrapper .cookie__section-description .cookie__link {
  color: #ffffffa8;
  text-decoration: underline;
}

.cookie__wrapper .cookie__section-description .cookie__link:hover {
  color: #ffffff;
}

.cookie__wrapper .button {
  border-radius: 10px;
}

.cta {
  padding: 54px 0;
}

.cta .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.cta .wrapper .start,
.cta .wrapper .chat {
  padding-right: 40px;
}

.cta .wrapper .chat,
.cta .wrapper .bot {
  padding-left: 40px;
  border-left: 1px solid #313030;
}

.cta .button {
  width: 272px;
}

.cta .start,
.cta .chat,
.cta .bot {
  font-family: Inter, sans-serif;
  color: #dfe0e2;
  padding: 56px 0;
}

.cta .start .title,
.cta .chat .title,
.cta .bot .title {
  font-weight: 700;
  font-size: 21px;
  line-height: 35px;
  letter-spacing: -1.5px;
}

.cta .start .text,
.cta .chat .text,
.cta .bot .text {
  font-family: Inter, sans-serif;
  color: #dfe0e2;
  margin-top: 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.cta .start .actions,
.cta .chat .actions,
.cta .bot .actions {
  display: flex;
  margin-top: 48px;
}

.cta .start .actions .button,
.cta .chat .actions .button,
.cta .bot .actions .button {
  align-self: flex-start;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.cta .start .actions .description,
.cta .chat .actions .description,
.cta .bot .actions .description {
  position: relative;
  padding-left: 70px;
}

.cta .start .actions .description picture,
.cta .chat .actions .description picture,
.cta .bot .actions .description picture {
  position: absolute;
  top: 25px;
  left: 20px;
}

.cta .start .actions .description .text,
.cta .chat .actions .description .text,
.cta .bot .actions .description .text {
  width: 100%;
  font-family: HTC-Hand, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
}

.ecosystem {
  background-color: #000000;
  padding: 48px 0;
}

.ecosystem .wrapper .title {
  display: flex;
  justify-content: space-between;
}

.ecosystem .wrapper .title .text .section-title {
  font-family: Inter, sans-serif;
  color: #fff;
}

.ecosystem .wrapper .title .text .section-description {
  font-family: Inter, sans-serif;
  color: #b1afaf;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.5px;
  margin-top: 24px;
}

.ecosystem .wrapper .title img {
  width: 304px;
  height: 304px;
}

.ecosystem .wrapper .todos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 78px;
}

.ecosystem .wrapper .todos .todo {
  position: relative;
  display: grid;
  grid-template-rows: 187px 20px 78px;
  row-gap: 25px;
  padding: 30px;
  color: #fafafa;
  background-color: #1c1c1c;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.ecosystem .wrapper .todos .todo .text .title {
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: -1px;
}

.ecosystem .wrapper .todos .todo .text .description {
  font-family: Inter, sans-serif;
  color: #b1afaf;
  margin-top: 24px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.5px;
}

.ecosystem .wrapper .todos .todo .text svg {
  margin-left: 3px;
}

.ecosystem .wrapper .todos .todo .img {
  position: absolute;
}

.ecosystem .wrapper .todos .todo .advantages {
  background-color: #ffffff00;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

footer {
  justify-self: flex-end;
  background: #000000
  /*border-top: 1px solid #333;*/
}

footer .logo img {
  display: block;
  margin: 0 auto;
}

footer nav {
  display: grid;
  gap: 24px;
}

footer nav a {
  font-family: Inter, sans-serif;
  color: #fff;
}

footer .description {
  font-family: Inter, sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

footer .misc {
  margin-top: 72px;
  justify-content: center;
  font-family: Inter, sans-serif;
  color: #aeadad80;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.25px;
  text-align: center;
}

header {
  padding: 28px 0 14px;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  left: 0;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .wrapper .enter {
  font-family: Inter, sans-serif;
  color: #fff;
  padding: 12px 24px;
  background-color: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 10px;
}

.hero {
  position: relative;
  padding: 140px 0 170px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
}

.hero .wrapper {
  position: relative;
}

.hero .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero .image .hero-image {
  object-fit: cover;
  object-position: 70% center;
  width: 100%;
  height: 100%;
}

.hero .title {
  position: relative;
  color: #fafafa;
  z-index: 2;
}

.hero .title h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 0;
}

.hero .title h2 {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 32px;
}

.hero .actions {
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.hero .actions a {
  text-decoration: none;
}

.hero .actions button {
  align-self: flex-start;
  background-color: #ffffffa8;
  color: #000000;
}

.hero .actions .description {
  font-family: HTC-Hand, sans-serif;
  color: #fff;
  display: flex;
  position: relative;
  padding: 15px 0 0 56px;
}

.hero .actions .description picture {
  position: absolute;
  top: 10px;
  left: 20px;
}

.hero .actions .description .text {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
}

.profit {
  padding: 48px 0;
  background-color: #000000;
}

.profit .section-title {
  font-family: Inter, sans-serif;
  color: #fff;
}

.profit .profit__content .image {
  width: 350px;
  height: 350px;
  flex-shrink: 0;
}

.profit .profit__content .text {
  max-width: 647px;
  flex-grow: 1;
  padding: 38px;
}

.profit .profit__content .text .title {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: -1px;
}

.profit .profit__content .text .description {
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}

.profit .profit__content .text .button {
  font-family: Inter, sans-serif;
  color: #000000;
  cursor: pointer;
  padding: 0 16px;
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.5px;
  text-decoration: none;
  background-color: #fff;
  border: none;
}

@media (max-width: 639px) {
  .ecosystem .wrapper .todos .todo {
      grid-template-rows: 72px auto 20px;
      grid-template-columns: 1fr;
      grid-template-areas: ".""text""link";
  }
  .ecosystem .wrapper .todos {
      grid-template-columns: 1fr;
  }
  .ecosystem .wrapper .todos .todo .text {
      grid-area: text;
  }
  .section-title {
    font-size: 33px;
    line-height: 43px;
    letter-spacing: -1px;
  }
  .button {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    height: 44px;
    padding: 12px;
  }
  .advantages .list .advantage .text {
    width: 100%;
    padding: 16px;
  }
  .advantages .list .advantage .image {
    display: none;
  }
  .advantages .list .advantage .text .title {
    font-size: 25px;
    line-height: 33px;
  }
  .advantages .list .advantage .text .description {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 36px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    width: 100%;
    padding: 16px;
  }
  .boost .boost__content .image,
  .profit .profit__content .image {
    display: none;
  }
  .boost .boost__content .text .title,
  .profit .profit__content .text .title {
    font-size: 25px;
    line-height: 33px;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 36px;
  }
  .cta .wrapper {
    grid-template-columns: 1fr;
  }
  .cta .wrapper .start,
  .cta .wrapper .chat {
    padding-right: 0;
  }
  .cta .wrapper .chat,
  .cta .wrapper .bot {
    padding-left: 0;
    border-top: 1px solid #313030;
    border-left: none;
  }
  .cta .start .actions,
  .cta .chat .actions,
  .cta .bot .actions {
    flex-direction: column;
  }
  .cta .start .actions .button,
  .cta .chat .actions .button,
  .cta .bot .actions .button {
    width: 288px;
  }
  .cta .start .actions .description,
  .cta .chat .actions .description,
  .cta .bot .actions .description {
    padding-left: 0;
  }
  .cta .start .actions .description picture,
  .cta .chat .actions .description picture,
  .cta .bot .actions .description picture {
    left: 0;
    top: 15px;
    transform: scaleX(-1) rotate(45deg);
  }
  .cta .start .actions .description .text,
  .cta .chat .actions .description .text,
  .cta .bot .actions .description .text {
    margin-top: 38px;
  }
  .cta .start .title,
  .cta .chat .title,
  .cta .bot .title {
    font-size: 33px;
    line-height: 43px;
  }
  .cta .start .text,
  .cta .chat .text,
  .cta .bot .text {
    font-size: 15px;
    line-height: 20px;
  }
  .ecosystem .wrapper .todos .todo .advantages {
    width: 100px;
    height: 100px;
    bottom: unset;
    top: 15px;
    left: 0;
    margin: 0 auto;
  }
  footer .description {
    margin-top: 48px;
    font-size: 15px;
    line-height: 133%;
    letter-spacing: -0.5px;
  }
  .hero {
    padding: 112px 0 60px;
  }
  .hero .title h1 {
    font-size: 33px;
    line-height: 43px;
  }
  .hero .title h2 {
    width: 90%;
    font-size: 23px;
    line-height: 32px;
  }
  .hero .actions .description {
    padding: 70px 0 0 12px;
  }
  .hero .actions .description picture {
    top: 55px;
    left: -8px;
    transform: rotate(50deg);
  }
  .profit .profit__content .image {
    display: none;
  }
  .profit .profit__content .text {
    width: 100%;
    padding: 16px;
  }
  .profit .profit__content .text .title {
    font-size: 25px;
    line-height: 33px;
  }
  .profit .profit__content .text .description {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 36px;
  }
  span.eol.m {
    display: block;
  }
  .advantages .list .advantage.photo_advantage {
    align-items: flex-end;
  }
  .advantages .list .advantage .image {
    width: 250px; height: 250px;
  }
  .advantages .list .advantage .text {
    padding-right: 0;
  }
  .advantages .list .advantage .text .title {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
  }
  .advantages .list .advantage .text .description {
    width: 100%;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }
  .boost .boost__content .image,
  .profit .profit__content .image {
    width: 250px;
    height: 250px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    padding-right: 0;
  }
  .boost .boost__content .text .title,
  .profit .profit__content .text .title {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    width: 100%;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }
  .cookie {
    width: auto;
    left: 0;
    transform: none;
    margin: 20px;
  }
  .cookie__wrapper {
    flex-wrap: wrap;
  }
  footer {
    /*margin-top: 56px;*/
    padding: 52px 0 24px;
  }
  footer nav {
    margin-top: 40px;
    grid-auto-flow: row;
    text-align: center;
  }
  footer nav a {
    font-size: 15px;
    line-height: 130%;
    letter-spacing: -0.5px;
  }
  .advantages .list .advantage .text {
    width: 52%;
  }
  .advantages .list .advantage .text .description {
    font-size: 15px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    width: 52%;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    font-size: 15px;
  }
  .hero .title h2 {
    width: 70%;
  }
  .ecosystem .wrapper .title .text .section-title,
  .ecosystem .wrapper .title .text .section-description,
  .ecosystem .wrapper .todos .todo .text .title,
  .ecosystem .wrapper .todos .todo .text .description {
    text-align: center;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .ecosystem .wrapper .todos .todo .advantages {
    bottom: unset;
    top: 15px;
    right: 25px;
  }
  .hero .actions .description picture {
    top: 20px;
    left: 30px;
  }
  .profit .profit__content .image {
    width: 250px;
    height: 250px;
  }
  .profit .profit__content .text {
    padding-right: 0;
  }
  .profit .profit__content .text .title {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
  }
  .profit .profit__content .text .description {
    width: 100%;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }
  .wrapper {
    padding: 0 24px;
  }
  .section-title {
    font-size: 50px; line-height: 55px; letter-spacing: -1.5px;
  }
  .button {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    height: 44px;
  }
  span.eol.t {
    display: block;
  }
  .advantages .list .advantage.photo_advantage {
    align-items: flex-end;
  }
  .advantages .list .advantage .image {
    width: 250px; height: 250px;
  }
  .advantages .list .advantage .text {
    padding-right: 0;
  }
  .advantages .list .advantage .text .title {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
  }
  .advantages .list .advantage .text .description {
    width: 100%;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }
  .boost .boost__content .image,
  .profit .profit__content .image {
    width: 250px;
    height: 250px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    padding-right: 0;
  }
  .boost .boost__content .text .title,
  .profit .profit__content .text .title {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    width: 100%;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
  }
  .cookie {
    width: auto;
    left: 0;
    transform: none;
    margin: 20px;
  }
  .cookie__wrapper {
    flex-wrap: wrap;
  }
  footer {
    /*margin-top: 56px;*/
    padding: 52px 0 24px;
  }
  footer nav {
    margin-top: 40px;
    grid-auto-flow: row;
    text-align: center;
  }
  footer nav a {
    font-size: 15px;
    line-height: 130%;
    letter-spacing: -0.5px;
  }
  .advantages .list .advantage .text {
    width: 52%;
  }
  .advantages .list .advantage .text .description {
    font-size: 15px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    width: 52%;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    font-size: 15px;
  }
  .cta .wrapper {
    grid-template-columns: 1fr;
  }
  .cta .wrapper .start,
  .cta .wrapper .chat {
    padding-right: 0;
  }
  .cta .wrapper .chat,
  .cta .wrapper .bot {
    padding-left: 0;
    border-top: 1px solid #313030;
    border-left: none;
  }
  .cta .start .title,
  .cta .chat .title,
  .cta .bot .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
  }
  .cta .start .text,
  .cta .chat .text,
  .cta .bot .text {
    margin-top: 0;
    width: 80%;
    font-size: 16px;
    line-height: 24px;
  }
  .cta .start .actions .description,
  .cta .chat .actions .description,
  .cta .bot .actions .description {
    padding-left: 60px;
  }
  .cta .start .actions .description .text,
  .cta .chat .actions .description .text,
  .cta .bot .actions .description .text {
    margin-top: 25px;
    font-size: 16px;
    line-height: 21px;
  }
  .ecosystem .wrapper .todos .todo .advantages {
    position: relative;
    bottom: -15px;
    right: 0;
  }
  footer .description {
    margin-top: 48px;
    font-size: 23px;
    line-height: 139%;
    letter-spacing: -0.5px;
  }
  .hero .actions .description .text {
    font-size: 16px;
    line-height: 21px;
  }
  .hero .title h2 {
    width: 70%;
  }
}
@media (min-width: 960px) and (max-width: 1175px) {
  .profit .profit__content .text {
    width: 52%;
  }
  .profit .profit__content .text .description {
    font-size: 15px;
  }
  .wrapper {
    padding: 0 32px;
  }
  .section-title {
    font-size: 50px; line-height: 55px; letter-spacing: -1.5px;
  }
  .button {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    height: 44px;
  }
  span.eol.l {
    display: block;
  }
  .advantages .list .advantage .text {
    width: 52%;
  }
  .advantages .list .advantage .text .description {
    font-size: 15px;
  }
  .boost .boost__content .text,
  .profit .profit__content .text {
    width: 52%;
  }
  .boost .boost__content .text .description,
  .profit .profit__content .text .description {
    font-size: 15px;
  }
  .cta .wrapper {
    grid-template-columns: 1fr;
  }
  .cta .wrapper .start,
  .cta .wrapper .chat {
    padding-right: 0;
  }
  .cta .wrapper .chat,
  .cta .wrapper .bot {
    padding-left: 0;
    border-top: 1px solid #313030;
    border-left: none;
  }
  .cta .start .title,
  .cta .chat .title,
  .cta .bot .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
  }
  .cta .start .text,
  .cta .chat .text,
  .cta .bot .text {
    margin-top: 0;
    width: 80%;
    font-size: 16px;
    line-height: 24px;
  }
  .cta .start .actions .description,
  .cta .chat .actions .description,
  .cta .bot .actions .description {
    padding-left: 60px;
  }
  .cta .start .actions .description .text,
  .cta .chat .actions .description .text,
  .cta .bot .actions .description .text {
    margin-top: 25px;
    font-size: 16px;
    line-height: 21px;
  }
  .ecosystem .wrapper .todos .todo .advantages {
    bottom: 4px;
    width: 110px;
    height: 110px;
  }
  footer .description {
    margin-top: 48px;
    font-size: 23px;
    line-height: 139%;
    letter-spacing: -0.5px;
  }
  .hero .actions .description .text {
    font-size: 16px;
    line-height: 21px;
  }
  footer nav {
    margin-top: 44px;
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
  }
  .profit .profit__content .image {
    margin: 0 auto;
  }
}
@media (min-width: 1176px) {
  .section-title {
    font-size: 57px;
    line-height: 73px;
    letter-spacing: -1.75px;
  }
  .button {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    height: 48px;
  }
  span.eol.d {
    display: block;
  }
  .hero .actions .description {
    padding: 15px 0 0 80px;
  }
  .button {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    height: 44px;
  }
  span.eol.l {
    display: block;
  }
  footer .description {
    margin-top: 48px;
    font-size: 23px;
    line-height: 139%;
    letter-spacing: -0.5px;
  }
  .hero .actions .description .text {
    font-size: 16px;
    line-height: 21px;
  }
  footer nav {
    margin-top: 44px;
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
  }
  .profit .profit__content .image {
    margin: 0 auto;
  }
  footer {
    /*margin-top: 56px;*/
    padding: 52px 0 24px;
  }
}
@media (min-width: 1920px) {
  span.eol.dm {
    display: block;
  }
  footer .description {
    margin-top: 48px;
    font-size: 23px;
    line-height: 139%;
    letter-spacing: -0.5px;
  }
  .hero .actions .description .text {
    font-size: 16px;
    line-height: 21px;
  }
  footer nav {
    margin-top: 44px;
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
  }
  .profit .profit__content .image {
    margin: 0 auto;
  }
}