.wrapper {
  width: 100%;
  display: none;
  &.padding {
    .subtitle {
      max-width: 150px;
      margin: 0 auto;
    }

    .animation {
      &__wrapper {
        margin-bottom: 40px;
      }
    }
  }
}
.desktop {
  &__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  &_title {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 25px;
    color: #000000;
  }
  &_subtitle {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 26px;
    color: #000000;
    margin-top: 25px;
  }
}
.illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: auto;
  }
}

.title {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto;

  svg {
    margin-right: 10px;
  }

  span {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
  }
}

.subtitle {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000000;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  margin-top: 60px;

  .dot {
    transition: all 0.2s;
    border: 1px solid #004225;
    background: transparent;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0px 4px;

    &.active {
      background: #004225;
    }
  }
}

.btn_next {
  border: 1px solid #004225;
  cursor: pointer;
  border-radius: 10px;
  width: 150px;
  padding: 17px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  color: #004225;

  .img {
    display: none;
  }
}

.skip {
  cursor: pointer;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000000;
  width: 100%;
  margin-top: 20px;

  .img {
    display: none;
  }
}
.ar_img {
  display: none;
}

.animation {
  &__wrapper {
    position: relative;
    width: 100%;
    height: 217px;
    margin-bottom: 70px;
  }

  &_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    &.illustrations1 {
      animation: frame_0 4s linear infinite;
    }

    &.illustrations2 {
      animation: frame_1 4s linear infinite;
    }
  }
}

@keyframes frame_0 {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes frame_1 {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.step {
  &_2 {
    &_2 {
      position: relative;
      bottom: -2px;
    }
  }
}

@media (max-width: 1024px) {
  .wrapper {
    display: block;
  }
  .desktop {
    &__wrapper {
      display: none;
    }
  }
}
@media (max-width: 470px) {
  .animation {
    &__wrapper {
      margin-bottom: 40px;
    }
  }

  .dots {
    margin-bottom: 25px;
    margin-top: 30px;
  }

  .btn_next {
    padding: 10px 0px;
    font-size: 14px;
  }

  .wrapper {
    &.padding {
      .animation {
        &__wrapper {
          margin-bottom: 0px;
        }
      }
    }
  }
}
