.lp-head__section {
  background: var(--kmnd-body-background-primary);
  padding: 54px 0 163px;
  position: relative;
}

.lp-head__section:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 51.3671875%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#DCE3E9));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #DCE3E9 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #DCE3E9 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #DCE3E9 100%);
}

.lp-head__section .container {
  position: relative;
  z-index: 1;
}

.lp-head__section_preview .lp-head__preview {
  position: relative;
  -webkit-transform: translateY(200px) scale(1.1);
      -ms-transform: translateY(200px) scale(1.1);
          transform: translateY(200px) scale(1.1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform, opacity;
}

.lp-head__section_preview .lp-head__label {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: translate(-25%, -100%) rotate(35deg);
      -ms-transform: translate(-25%, -100%) rotate(35deg);
          transform: translate(-25%, -100%) rotate(35deg);
  will-change: opacity, transform;
}

.lp-head__section_preview .lp-head__col:nth-of-type(1) {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform, opacity;
}

.lp-head__section_preview .lp-head__col:nth-of-type(2) {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform, opacity;
}

.lp-head__section_animation .lp-head__preview {
  -webkit-transform: translateY(0px) scale(1);
      -ms-transform: translateY(0px) scale(1);
          transform: translateY(0px) scale(1);
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.lp-head__section_animation .lp-head__label {
  opacity: 1;
  -webkit-transform: translate(-50%, -100%) rotate(0deg);
      -ms-transform: translate(-50%, -100%) rotate(0deg);
          transform: translate(-50%, -100%) rotate(0deg);
  -webkit-transition-delay: 3s;
       -o-transition-delay: 3s;
          transition-delay: 3s;
}

.lp-head__section_animation .lp-head__col:nth-of-type(1) {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.lp-head__section_animation .lp-head__col:nth-of-type(2) {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.lp-head__logo {
  display: block;
  text-decoration: none;
  height: auto;
  width: 196px;
  margin: 0 auto 36px;
}

.lp-head__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-head__title {
  font-size: 3.875rem;
  line-height: 1.12;
  font-weight: 800;
  color: var(--kmnd-body-color-primary);
}

.lp-head__heading {
  position: relative;
  max-width: 757px;
  margin: 0 auto 34px;
}

.lp-head__label {
  display: block;
  height: auto;
  width: 266px;
  position: absolute;
  top: 50%;
  left: 99%;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}

.lp-head__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1167px;
  margin: 0 auto;
}

.lp-head__col:nth-of-type(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 500px;
          flex: 1 500px;
  margin-right: 47px;
}

.lp-head__col:nth-of-type(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 620px;
          flex: 1 620px;
}

.lp-head__image {
  display: block;
  width: 100%;
  height: auto;
}

.lp-head__subtitle {
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--kmnd-body-color-secondary);
  margin: 0 0 45px;
}

.lp-head__list {
  list-style: none;
  margin: 0 0 68px 0;
}

.lp-head__list li {
  font-weight: 500;
  color: var(--kmnd-body-color-secondary);
  margin-bottom: 29px;
  font-size: 1.5rem;
  padding-left: 30px;
  position: relative;
}

.lp-head__list li:last-of-type {
  margin-bottom: 0;
}

.lp-head__list li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  background: #0F3DDE;
  height: 9px;
  width: 9px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

@media (max-width: 1248px) {
  .lp-head__label {
    display: none;
  }
}

@media (max-width: 992px) {
  .lp-head__subtitle {
    margin-bottom: 16px;
  }
  .lp-head__list {
    margin-bottom: 24px;
  }
  .lp-head__list li {
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .lp-head__section {
    padding: 16px 0 25px;
  }
  .lp-head__section:before {
    display: none;
  }
  .lp-head__logo {
    width: 133.16px;
    margin-bottom: 32px;
  }
  .lp-head__heading {
    margin-bottom: 24px;
  }
  .lp-head__title {
    font-size: 2rem;
  }
  .lp-head__image {
    max-width: 305px;
    margin: 0 auto 13px;
  }
  .lp-head__row {
    display: block;
  }
  .lp-head__col:nth-of-type(1), .lp-head__col:nth-of-type(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 0;
  }
  .lp-head__subtitle {
    font-size: 1.375rem;
    text-align: center;
  }
  .lp-head__list {
    max-width: 170px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-head__list li {
    font-size: 0.875rem;
    padding-left: 14px;
  }
  .lp-head__list li:before {
    height: 6px;
    width: 6px;
    top: 5px;
  }
}

.presentation__section {
  position: relative;
}

.presentation__slide {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.presentation__slide.slick-slide .presentation__phone {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}

.presentation__slide.slick-slide .downloads {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform, opacity;
  opacity: 1;
  /* -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px); */
}

.presentation__slide.slick-slide.slick-current .presentation__phone {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.presentation__slide.slick-slide.slick-current .downloads {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.presentation__item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  padding: 100px 0;
  width: 100%;
}

.presentation__item .container {
  position: relative;
  z-index: 1;
}

.presentation__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.presentation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1167px;
  margin: 0 auto;
}

.presentation__col:nth-of-type(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 500px;
          flex: 1 500px;
  margin-right: 47px;
}

.presentation__col:nth-of-type(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 620px;
          flex: 1 620px;
}

.presentation__phone {
  margin: 0 auto;
  width: 56.8%;
  position: relative;
}

.presentation__phone:after {
  content: '';
  display: block;
  position: relative;
  padding-top: 202.46478873239434%;
}

.presentation__frame {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50.1%;
  left: 50%;
  width: 95%;
  overflow: hidden;
  -webkit-border-radius: 40px;
          border-radius: 40px;
}

.presentation__frame:after {
  content: '';
  display: block;
  position: relative;
  padding-top: 208%;
}

.presentation__image {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 51%;
  left: 59%;
  display: block;
  width: 282%;
  height: auto;
}

.presentation__shadow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 117.54385964912282%;
  height: auto;
}

.presentation__title {
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1.12;
  margin: 0 0 54px;
  min-height: 120px;
  color: var(--kmnd-body-color-primary-inverted);
}

.presentation__stages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
}

.presentation__stage {
  background: rgba(255, 255, 255, 0.4);
  height: 18px;
  width: 18px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  text-align: center;
  font-weight: 700;
  color: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
  margin-right: 84px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.presentation__stage:last-of-type {
  margin-right: 0;
}

.presentation__stage:last-of-type:before {
  display: none;
}

.presentation__stage:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  right: 0;
  width: 84px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.presentation__stage_active {
  margin-right: 56px;
  height: 46px;
  width: 46px;
  background: white;
  color: var(--kmnd-body-color-accent);
}

.presentation__stage_active:before {
  width: 56px;
}

.presentation__text {
  font-weight: 500;
  color: var(--kmnd-body-color-secondary-inverted);
  min-height: 105px;
  font-size: 1.75rem;
  margin: 0 0 63px;
  max-width: 380px;
}

@media (max-width: 992px) {
  .presentation__phone {
    width: 80%;
  }
  .presentation__frame {
    -webkit-border-radius: 30px;
            border-radius: 30px;
    left: 50.2%;
  }
  .presentation__title {
    font-size: 2rem;
    min-height: 80px;
  }
  .presentation__text {
    font-size: 1.125rem;
    min-height: 48px;
  }
}

@media (max-width: 576px) {
  .presentation__item {
    padding: 36px 0;
  }
  .presentation__row {
    display: block;
  }
  .presentation__col:nth-of-type(1), .presentation__col:nth-of-type(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .presentation__phone {
    width: 120px;
    margin: 0 auto 39px;
  }
  .presentation__frame {
    -webkit-border-radius: 15px;
            border-radius: 15px;
  }
  .presentation__title {
    margin-bottom: 23px;
    text-align: center;
  }
  .presentation__stages {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 25px;
    width: 100%;
  }
  .presentation__stage {
    height: 14px;
    width: 14px;
    margin-right: 85px;
  }
  .presentation__stage:before {
    width: 85px;
  }
  .presentation__stage_active {
    height: 28px;
    width: 28px;
    font-size: 1.125rem;
    margin-right: 74px;
  }
  .presentation__stage_active:before {
    width: 74px;
  }
  .presentation__text {
    text-align: center;
    margin-bottom: 30px;
    color: var(--kmnd-body-color-primary-inverted);
    max-width: 328px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 374px) {
  .presentation__item {
    position: relative;
    padding: 20px 0;
  }
  .presentation__phone {
    width: 100px;
  }
  .presentation__frame {
    -webkit-border-radius: 25px;
            border-radius: 25px;
  }
  .presentation__title {
    font-size: 1.5rem;
    min-height: 54px;
  }
  .presentation__stage {
    margin-right: 65px;
  }
  .presentation__stage:before {
    width: 65px;
  }
  .presentation__stage_active {
    margin-right: 55px;
  }
  .presentation__stage_active:before {
    width: 55px;
  }
}

.advantages__section {
  background: var(--kmnd-body-background-primary);
  padding: 170px 0;
}

.advantages__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.12;
  margin: 0 auto 24px;
  color: #1E1E1E;
}

.advantages__subtitle {
  margin: 0 auto 72px;
  color: #8D939B;
  font-weight: 700;
  font-size: 2rem;
}

.advantages__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages__col {
  width: calc(100% - 36px - 36px);
  margin-right: 36px;
}

.advantages__col:nth-of-type(3n+3) {
  margin-right: 0;
}

.advantages__image {
  display: block;
  width: auto;
  height: 100px;
  margin: 0 auto 28px;
}

.advantages__name {
  font-weight: 700;
  color: var(--kmnd-body-color-primary);
  margin: 0 auto 12px;
  font-size: 1.625rem;
}

.advantages__text {
  font-weight: 500;
  color: #5A5A5A;
  margin: 0 auto;
  font-size: 1.5rem;
}

@media (max-width: 992px) {
  .advantages__image {
    height: 64px;
  }
  .advantages__name {
    font-size: 1.25rem;
  }
  .advantages__text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .advantages__section {
    padding: 36px 0 50px;
  }
  .advantages__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .advantages__subtitle {
    font-size: 1.25rem;
    margin-bottom: 36px;
  }
  .advantages__row {
    display: block;
  }
  .advantages__col {
    margin-right: 0;
    width: 100%;
    margin-bottom: 33px;
  }
  .advantages__col:last-of-type {
    margin-bottom: 0;
  }
  .advantages__image {
    margin-bottom: 24px;
  }
  .advantages__title {
    margin-bottom: 8px;
  }
}

.bottom__section {
  position: relative;
  padding: 53px 0;
}

.bottom__section .container {
  position: relative;
  z-index: 1;
}

.bottom__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bottom__col .downloads {
  margin-left: auto;
}

.bottom__logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 0 16px;
}

.bottom__title {
  color: var(--kmnd-body-color-primary-inverted);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.12;
  margin: 0;
}

@media (max-width: 992px) {
  .bottom__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .bottom__section {
    padding: 36px 0;
  }
  .bottom__logo {
    margin: 0 auto 16px;
    height: 32px;
  }
  .bottom__row {
    display: block;
  }
  .bottom__col .downloads__title {
    font-size: 1rem;
  }
  .bottom__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

.footer {
  background: var(--kmnd-body-background-primary);
}

.footer__menu {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 21px 0 17px;
}

.footer__menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__menu li {
  color: #333333;
  font-size: 1.063rem;
  line-height: 1.5;
}

.footer__menu li:after {
  content: '|';
  margin: 0 15px;
}

.footer__menu li:last-of-type:after {
  display: none;
}

.footer__menu li:nth-of-type(4):after {
  display: none;
}

.footer__menu a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.footer__menu a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2C67FF;
  -webkit-transition: var(--kmnd-transition);
  -o-transition: var(--kmnd-transition);
  transition: var(--kmnd-transition);
}

.footer__menu a:hover:after {
  width: 100%;
}

.footer__info {
  margin-bottom: 41px;
}

.footer__info ul {
  list-style: none;
  text-align: center;
}

.footer__info li {
  display: inline;
  font-size: 0.875rem;
  color: #333333;
  margin-right: 51px;
}

.footer__info li:last-of-type {
  margin-right: 0;
}

.footer__info a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.footer__info a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #2C67FF;
  -webkit-transition: var(--kmnd-transition);
  -o-transition: var(--kmnd-transition);
  transition: var(--kmnd-transition);
}

.footer__info a:hover:after {
  width: 100%;
}

.footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.footer__soc a {
  text-decoration: none;
  display: block;
  margin-right: 20px;
  -webkit-transition: var(--kmnd-transition);
  -o-transition: var(--kmnd-transition);
  transition: var(--kmnd-transition);
  will-change: transform;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.footer__soc a:last-of-type {
  margin-right: 20px;
}

.footer__soc a:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.footer__line {
  padding: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#dbdbdb));
  background: -webkit-linear-gradient(top, #dbdbdb, #dbdbdb);
  background: -o-linear-gradient(top, #dbdbdb, #dbdbdb);
  background: linear-gradient(180deg, #dbdbdb, #dbdbdb);
}

.footer__copy {
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.125rem;
}

@media (max-width: 576px) {
  .footer__menu {
    width: 100vw;
    margin-left: -24px;
  }
  .footer__menu li {
    font-size: 0.875rem;
  }
  .footer__menu li:after {
    margin: 0 5px;
  }
  .footer__info {
    width: 100vw;
    margin-left: -24px;
  }
  .footer__info li {
    margin-right: 10px;
  }
}
