@charset "UTF-8";
@import "./fonts/stylesheet.css";
@import "./animate.css";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #5f6368;
  background: #fff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}

h1,
h2 {
  font-weight: 700;
  font-size: 63px;
  line-height: 79px;
  color: #fff;
}

h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #000;
}

h4 {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: #000;
}

h6 {
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  text-align: center;
  color: #fff;
}

p.sm {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.5);
}
p.xsm {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: rgba(95, 99, 104, 0.77);
}
p.uniq {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #5f6368;
}

.apps {
  cursor: pointer;
  margin-right: 22px;
  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;
  height: 40px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.apps__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.apps img {
  height: 100%;
}
.apps:last-child {
  margin-right: 0;
}
.apps:hover {
  opacity: 0.8;
}

main {
  overflow: hidden;
  margin-top: 80px;
}

.button {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}
.button:hover {
  opacity: 0.8;
}
.button.primary {
  padding: 21px 24px;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #000;
  background: #fff;
  border-radius: 9px;
}

.input {
  margin-bottom: 28px;
}
.input.error input,
.input.error textarea {
  border: 2px solid #fba2a2;
}
.input input,
.input textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 9px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  width: 100%;
  line-height: 30px;
  color: #fff;
  padding: 16px 24px;
  background: transparent;
  resize: none;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
.input input::placeholder,
.input textarea::placeholder {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}

.anchor {
  position: relative;
  top: -90px;
  width: 0;
  height: 0;
  opacity: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 21px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 142px;
  margin-bottom: 5px;
}
.header__inner-logo img {
  width: 100%;
}
.header__inner-astana {
  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;
  width: 136px;
}
.header__inner-astana img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-link {
  padding: 10px 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  display: inline-block;
}
.nav__inner-link.active {
  color: #5b59f9;
}

.burger {
  display: none;
}

.footer {
  padding: 26px 0 50px 0;
}
.footer__inner-logo {
  width: 156px;
  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: 16px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-astana {
  width: 142px;
  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;
}
.footer__inner-astana img {
  width: 100%;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -25px 25px -25px;
}
.footer__inner-col {
  width: calc(33.3% - 50px);
  margin: 0 25px;
  max-width: 270px;
}
.footer__inner-col p.uniq {
  margin-bottom: 10px;
}
.footer__inner-col p.uniq:last-child {
  margin-bottom: 0;
}
.footer__inner-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #5f6368;
  display: block;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 6px;
}
.footer__inner-link:last-child {
  margin-bottom: 0;
}
.footer__inner-link:hover {
  color: #5b59f9;
}

.content {
  padding-bottom: 100px;
}
.content.blue {
  background: #3181ee;
}
.content.light {
  background: #eff6ff;
}
.content.light .layout {
  padding: 40px 0 0 0;
}
.content.light .layout__content-text p {
  color: #000;
}
.content.light .featureItem h6 {
  color: #2b2a35;
}
.content.light .featureItem p {
  color: #5f6368;
}
.content.light .sliderApp__item-image {
  border: 2px solid #dae9fc;
  -webkit-box-shadow: 0px 57px 42px -36px #a8c1e0;
          box-shadow: 0px 57px 42px -36px #a8c1e0;
}
.content.light .sliderApp__outer .slick-prev::before {
  background: url(../images/icons/arrowLeftD.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.content.light .sliderApp__outer .slick-next::before {
  background: url(../images/icons/arrowRightD.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.content.light .article__header {
  max-width: 900px;
}
.content.light .article__header h2 {
  color: #2b2a35;
}
.content.light .article__header p {
  color: #5f6368;
}
.content.dark {
  background: #1a124b;
}
.content.dark .sliderApp__item-image {
  border: 2px solid #180328;
  -webkit-box-shadow: 0px 57px 42px -36px #160326;
          box-shadow: 0px 57px 42px -36px #160326;
}
.content.dark .article__header {
  max-width: 730px;
}
.content.dark .article__header p {
  color: #908bad;
}

.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.layout__image {
  width: 40%;
  max-width: 474px;
  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;
}
.layout__image img {
  width: 100%;
}
.layout__content {
  width: calc(60% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout__content-image {
  width: 175px;
  margin-right: 50px;
}
.layout__content-image img {
  width: 100%;
}
.layout__content-text {
  width: calc(100% - 225px);
}
.layout__content-text-logo {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 8px;
}
.layout__content-text-logo img {
  height: 100%;
}
.layout__content-text p {
  color: #fff;
  margin-bottom: 26px;
}

.feature {
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -21px;
}
.featureItem {
  width: calc(20% - 42px);
  margin: 0 21px;
  text-align: center;
}
.featureItem__icon {
  width: 105px;
  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: 0 auto 30px auto;
}
.featureItem__icon img {
  width: 100%;
}

.sliderApp__outer {
  padding: 50px 50px 0 50px;
}
.sliderApp__outer .slick-arrow {
  width: 56px;
  height: 56px;
  z-index: 1;
  top: calc(50% - 50px);
}
.sliderApp__outer .slick-arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.sliderApp__outer .slick-prev {
  left: -67px;
}
.sliderApp__outer .slick-prev::before {
  background: url(../images/icons/arrowLeft.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.sliderApp__outer .slick-next {
  right: -67px;
}
.sliderApp__outer .slick-next::before {
  background: url(../images/icons/arrowRight.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.sliderApp__outer .slick-list {
  padding-bottom: 50px;
}
.sliderApp__item {
  margin: 0 17px;
}
.sliderApp__item-image {
  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;
  border-radius: 40px;
  -webkit-box-shadow: 0px 57px 42px -36px #2c63ad;
          box-shadow: 0px 57px 42px -36px #2c63ad;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #306ec3;
}
.sliderApp__item-image img {
  width: 100%;
  border-radius: 40px;
}

.article__header {
  max-width: 640px;
  margin: 0 auto 42px auto;
  text-align: center;
}
.article__header h2 {
  margin-bottom: 16px;
}
.article__header p {
  color: #a6c7eb;
}
.article__body {
  padding: 32px 42px;
  background: #fff;
  -webkit-box-shadow: 0px 55px 36px -45px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 55px 36px -45px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}
.article__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.article ul li {
  padding: 10px 10px 10px 26px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 10px);
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #5f6368;
}
.article ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.article ul.yellow li::before {
  background: #ffd346;
}
.article ul.blue li::before {
  background: #409cf8;
}
.article ul.dark li::before {
  background: #1a124b;
}

.join {
  padding: 56px 0;
  background: #5b59f9;
}
.join__inner h2 {
  text-align: center;
  margin-bottom: 68px;
}
.join__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.join__inner-content {
  width: calc(50% - 15px);
  max-width: 435px;
}
.join__inner-form {
  width: calc(50% - 15px);
  max-width: 486px;
}
.join__inner-form .button {
  width: 100%;
}
.joinItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
  padding: 14px 10px;
}
.joinItem:last-child {
  margin-bottom: 0;
}
.joinItem__icon {
  width: 52px;
  height: 52px;
  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-right: 48px;
}
.joinItem__icon img {
  width: 100%;
  height: 100%;
}
.joinItem p {
  width: calc(100% - 100px);
  color: #fff;
}

.privacy {
  padding: 50px 0;
}
.privacy .auto__container {
  max-width: 758px;
  margin: 0 auto;
}
.privacy__inner h3 {
  margin-bottom: 24px;
}
.privacy__inner h4 {
  margin-bottom: 24px;
}
.privacy__inner p {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 19px;
  line-height: 30px;
  color: #5f6368;
}
.privacy__inner p:last-child {
  margin-bottom: 0;
}

.activate {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.activate::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/stars.png);
  background-repeat: repeat;
}
.activate__image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100%;
  max-width: 310px;
  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;
}
.activate__image img {
  width: 100%;
}
.activate__inner {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 120px 16px 40px 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 63, 194, 0)), to(#443fc2));
  background: linear-gradient(180deg, rgba(68, 63, 194, 0) 0%, #443fc2 100%);
}
.activate__inner-content {
  text-align: center;
}
.activate__inner-content .apps {
  height: 53px;
  margin-right: 20px;
}
.activate__inner-content .apps:last-child {
  margin-right: 0;
}
.activate__inner-content .apps__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.activate__inner-icon {
  width: 90px;
  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: 0 auto 18px auto;
}
.activate__inner-icon img {
  width: 100%;
}
.activate__inner-title {
  width: 150px;
  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: 0 auto 18px auto;
}
.activate__inner-title img {
  width: 100%;
}
.activate__inner ul {
  max-width: 350px;
  margin: 0 auto 30px auto;
}
.activate__inner ul li {
  text-align: left;
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.activate__inner ul li span {
  margin-right: 10px;
  display: inline-block;
  font-weight: 900;
  font-size: 16px;
  line-height: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe632), color-stop(61.98%, #ffe632), to(#ffd207));
  background: linear-gradient(180deg, #ffe632 0%, #ffe632 61.98%, #ffd207 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0px 1px 0px #eebc00;
}

@media (max-width: 1340px) {
  h1,
h2 {
    font-size: 54px;
    line-height: 64px;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }

  h4 {
    font-size: 26px;
    line-height: 32px;
  }

  h6 {
    font-size: 18px;
    line-height: 23px;
  }

  body {
    font-size: 22px;
    line-height: 28px;
  }

  p.sm {
    font-size: 16px;
    line-height: 22px;
  }

  .input {
    margin-bottom: 20px;
  }
  .input input,
.input textarea {
    line-height: 24px;
    font-size: 22px;
  }

  .button.primary {
    font-size: 22px;
    line-height: 24px;
  }

  .content {
    padding-bottom: 80px;
  }
  .content.light .layout {
    padding: 30px 0 0 0;
  }

  .join h2 {
    margin-bottom: 42px;
  }
  .join__inner-content {
    max-width: 400px;
  }

  .article__body {
    padding: 24px 32px;
  }
  .article ul li {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1240px) {
  .nav__inner-link {
    padding: 8px 14px;
  }

  .apps {
    height: 35px;
  }

  h6 {
    font-size: 16px;
    line-height: 20px;
  }

  p.sm {
    font-size: 14px;
    line-height: 18px;
  }

  .content.light .sliderApp__item-image {
    -webkit-box-shadow: 0px 24px 20px -18px #a8c1e0;
            box-shadow: 0px 24px 20px -18px #a8c1e0;
  }
  .content.dark .sliderApp__item-image {
    -webkit-box-shadow: 0px 24px 20px -18px #160326;
            box-shadow: 0px 24px 20px -18px #160326;
  }

  .layout__content-text-logo.marsh {
    height: 35px;
  }
  .layout__content-image {
    margin-right: 30px;
    width: 150px;
  }
  .layout__content-text {
    width: calc(100% - 180px);
  }

  .feature {
    margin: 0 -12px;
  }
  .featureItem {
    width: calc(20% - 24px);
    margin: 0 12px;
  }
  .featureItem__icon {
    width: 90px;
    margin: 0 auto 20px auto;
  }

  .sliderApp__item {
    margin: 0 10px;
  }
  .sliderApp__item-image {
    -webkit-box-shadow: 0px 24px 20px -18px #a8c1e0;
            box-shadow: 0px 24px 20px -18px #a8c1e0;
    border-radius: 24px;
  }
  .sliderApp__item-image img {
    border-radius: 24px;
  }
  .sliderApp__outer {
    padding: 30px 30px 0 30px;
  }
  .sliderApp__outer .slick-list {
    padding-bottom: 24px;
  }
  .sliderApp__outer .slick-arrow {
    width: 40px;
    height: 40px;
    top: calc(50% - 24px);
  }
  .sliderApp__outer .slick-prev {
    left: -34px;
  }
  .sliderApp__outer .slick-next {
    right: -34px;
  }
}
@media (max-width: 1024px) {
  .nav {
    position: static;
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }

  .header__inner-logo {
    margin: 0;
    width: 130px;
  }
  .header__inner-astana {
    width: 130px;
  }
  .header__inner-slogan p {
    display: none;
  }

  .footer__inner-logo {
    width: 136px;
  }

  main {
    margin-top: 81px;
  }

  h1,
h2 {
    font-size: 42px;
    line-height: 50px;
  }

  h3 {
    font-size: 28px;
    line-height: 34px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  .layout__content {
    width: calc(60% - 15px);
  }
  .layout__content-image {
    margin-right: 20px;
    width: 120px;
  }
  .layout__content-text {
    width: calc(100% - 140px);
  }
  .layout__content-text p {
    margin-bottom: 16px;
  }
  .layout__content-text-logo {
    height: 30px;
  }
  .layout__content-text-logo.marsh {
    height: 25px;
  }
  .layout__image {
    width: 40%;
  }

  .feature {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .featureItem {
    margin: 12px;
    width: calc(33.3% - 24px);
  }

  .privacy__inner h3 {
    margin-bottom: 16px;
  }
  .privacy__inner h4 {
    margin-bottom: 16px;
  }
  .privacy__inner p {
    margin-bottom: 16px;
  }
}
@media (max-width: 840px) {
  .header__inner-astana {
    display: none;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    position: absolute;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 240px;
    z-index: 1;
    padding: 30px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fefefe;
    display: block;
  }
  .nav__inner-link {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 80%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 80%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 20%;
    width: 80%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .footer__inner-astana {
    margin: 0 10px 0 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .footer__inner-logo {
    margin-bottom: 0;
  }
  .footer__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__inner-col {
    width: calc(50% - 20px);
    max-width: unset;
    margin: 15px 0;
  }
  .footer__inner-col p.uniq {
    text-align: left;
  }
  .footer__inner-col:last-child {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__inner-col:last-child p.uniq {
    display: none;
  }

  .auto__container {
    padding: 0 24px;
  }

  main {
    margin-top: 72px;
  }

  body {
    font-size: 18px;
    line-height: 24px;
  }

  .input {
    margin-bottom: 16px;
  }
  .input input,
.input textarea {
    line-height: 16px;
    font-size: 20px;
  }

  .button.primary {
    line-height: 16px;
    font-size: 20px;
  }

  .content {
    padding-bottom: 60px;
  }

  .layout__content-image {
    width: 100px;
    margin-right: 16px;
  }
  .layout__content-content {
    width: calc(100% - 116px);
  }

  .joinItem {
    margin-bottom: 50px;
  }
  .joinItem__icon {
    width: 42px;
    height: 42px;
    margin-right: 18px;
  }
  .joinItem p {
    width: calc(100% - 60px);
  }
}
@media (max-width: 700px) {
  .footer__inner-logo {
    margin-bottom: 10px;
  }
  .footer__inner-col {
    margin: 0 0 10px 0;
    width: 100%;
  }

  .layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .layout__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .layout__content-image {
    margin: 0 0 16px 0;
    width: 150px;
  }
  .layout__content-text {
    width: 100%;
  }
  .layout__content-text-logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .layout__image {
    width: 100%;
    margin: 0 auto 30px auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 450px;
  }
  .layout .apps {
    height: 40px;
  }
  .layout .apps__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .featureItem {
    margin: 12px;
    width: calc(50% - 24px);
  }

  .sliderApp__outer {
    padding: 0 16px;
  }
  .sliderApp__outer .slick-list {
    padding: 0;
    overflow: visible;
  }

  .join h2 {
    margin-bottom: 24px;
  }
  .join__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .join__inner-content {
    width: 100%;
    max-width: unset;
  }
  .join__inner-form {
    width: 100%;
    max-width: unset;
  }
  .joinItem {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }
  .joinItem:last-child {
    margin-bottom: 20px;
  }
  .joinItem__icon {
    margin: 0 0 16px 0;
  }
  .joinItem p {
    width: 100%;
  }

  .article__body {
    padding: 24px 16px;
  }
  .article ul li {
    width: 100%;
  }

  .privacy {
    padding: 30px 0;
  }
}
@media (max-width: 540px) {
  h1,
h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h6 {
    font-size: 14px;
    line-height: 18px;
  }

  body {
    font-size: 16px;
    line-height: 22px;
  }

  .auto__container {
    padding: 0 16px;
  }

  .content {
    padding-bottom: 40px;
  }

  .feature {
    margin: 0 -6px;
  }
  .featureItem {
    margin: 10px 6px;
    width: calc(50% - 12px);
  }
  .featureItem__icon {
    margin-bottom: 16px;
    width: 80px;
  }
}
@media (max-width: 400px) {
  .activate__inner {
    padding: 80px 0 24px 0;
  }
  .activate__inner-content .apps {
    height: 48px;
  }
}
@media (max-width: 375px) {
  .activate__inner-content .apps {
    margin-right: 10px;
  }
  .activate__inner-content .apps:last-child {
    margin-right: 0;
  }
}
@media (max-height: 450px) {
  .activate {
    height: auto;
  }
  .activate__inner {
    padding: 40px 0 24px 0 !important;
  }
}
@media (max-height: 540px) {
  .activate__image {
    overflow: hidden;
    max-width: 280px;
  }
  .activate__image img {
    position: relative;
    top: -10px;
  }
  .activate__inner {
    padding: 24px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 63, 194, 0)), color-stop(50%, #443fc2));
    background: linear-gradient(180deg, rgba(68, 63, 194, 0) 0%, #443fc2 50%);
  }
  .activate__inner-icon {
    width: 60px;
  }
  .activate__inner-content .apps {
    margin-right: 10px;
  }
  .activate__inner-content .apps:last-child {
    margin-right: 0;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}