/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
*,
*::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
img,
picture,
svg,
video {
  display: block;
}
input,
textarea,
button,
select {
  font: inherit;
}
/* Common Styles
-------------------------------------
 */
:root {
  --font-family: 'Hind Guntur', sans-serif;
  --color-main: #6e6e6e;
  --color-blue: #00CBF1;
  --color-blue-hover: #1032d1;
}
a {
  outline: none;
  border: 0;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: inherit;
}
.title {
  font-weight: bold;
  font-size: 64px;
  line-height: 1.2;
  margin: 0 0 0px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-blue);
}
@media (max-width: 1024px) {
  .title {
    font-size: 64px;
  }
}
@media (max-width: 650px) {
  .title {
    font-size: 32px;
  }
}
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  text-transform: uppercase;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 42px;
  padding: 6px 20px 0;
  min-width: 140px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-family);
  background: var(--color-blue);
  height: 50px;
}
@media (max-width: 1024px) {
  .button {
    height: 53px;
    min-width: 174px;
    padding: 3px 15px 0;
    font-size: 16px;
  }
}
.button:hover {
  background: var(--color-blue-hover);
}
.input-text {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 65px;
  padding: 6px 25px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 18px;
  line-height: 1;
  font-family: var(--font-family);
  color: #000;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border: 1px solid transparent;
  background: #f0f2f7;
  border-radius: 10px;
}
@media (max-width: 650px) {
  .input-text {
    height: 43px;
    border-radius: 10px;
    padding: 6px 15px 0;
    font-size: 16px;
  }
}
.input-text:focus {
  border-color: var(--color-blue);
}
select.input-text {
  cursor: pointer;
  background: #f0f2f7 url("../img/content/toggle.svg") no-repeat calc(100% - 34px) 50%;
  border: 0;
}
@media (max-width: 650px) {
  select.input-text {
    background: #f0f2f7 url("../img/content/toggle.svg") no-repeat calc(100% - 15px) 50%;
    background-size: 8px;
  }
}
textarea.input-text {
  resize: none;
  height: 130px;
  padding: 31px 25px;
}
@media (max-width: 650px) {
  textarea.input-text {
    padding: 21px 15px;
    height: 127px;
  }
}
.apps-list-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 650px) {
  .apps-list-b {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.apps-list-b-links {
  margin: 0 15px 0 0;
}
@media (max-width: 650px) {
  .apps-list-b-links {
    margin: 0 20px 0 0;
  }
}
.apps-list-b-links:last-child {
  margin: 0;
}
.apps-list-b-links:hover {
  opacity: 0.8;
}
.apps-list-b-links svg {
  width: auto;
  fill: currentColor;
}
@media (max-width: 650px) {
  .apps-list-b-links svg {
    height: 40px;
  }
}
.arrow-b {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 7;
}
.arrow-b.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.arrow-b_prev {
  left: 50px;
}
@media (max-width: 650px) {
  .arrow-b_prev {
    left: 6px;
  }
}
.arrow-b_next {
  right: 50px;
}
@media (max-width: 650px) {
  .arrow-b_next {
    right: 6px;
  }
}
.arrow-b svg {
  fill: #d9d9d9;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1024px) {
  .arrow-b svg {
    width: auto;
    height: 40px;
  }
}
@media (max-width: 650px) {
  .arrow-b svg {
    height: 20px;
  }
}
@media (min-width: 650px) {
  .arrow-b:hover svg {
    fill: #333;
  }
}
html,
body {
  height: 100%;
}
body {
  font-size: 20px;
  line-height: 1.6;
  font-family: var(--font-family);
  color: var(--color-main);
  background: #fff;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-display: swap;
}
@media (max-width: 1024px) {
  body {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 650px) {
  body {
    font-size: 16px;
  }
}
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.content {
  margin: 0 0 auto;
  padding: 0 0 70px;
  overflow: hidden;
}
@media (max-width: 650px) {
  .content {
    padding: 0 0 60px;
  }
}
.max-width {
  max-width: 1272px;
  padding: 0 36px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .max-width {
    padding: 0 16px;
  }
}
.wrapper_main .max-width {
  /*max-width: 1566px;*/
}
/* Start
---------------------------
 */
.start-b {
  padding: 170px 0 240px;
  position: relative;
  color: #18183c;
  margin: 0 0 70px;
}
/*.start-b:after {*/
/*  width: 600px;*/
/*  height: 500px;*/
/*  border-radius: 35px;*/
/*  background: #fff;*/
/*  -webkit-filter: blur(170px);*/
/*          filter: blur(170px);*/
/*  content: '';*/
/*  left: 12%;*/
/*  top: 18%;*/
/*  position: absolute;*/
/*  z-index: 1;*/
/*}*/
@media (max-width: 650px) {
  .start-b {
    padding: 118px 0 48px;
    margin: 0 0 20px;
  }
  /*.start-b:after {*/
  /*  width: 328px;*/
  /*  height: 418px;*/
  /*  background: url("../img/content/shadow.svg") no-repeat;*/
  /*  left: -60px;*/
  /*  top: 50px;*/
  /*  border-radius: 0;*/
  /*  -webkit-filter: none;*/
  /*          filter: none;*/
  /*  opacity: 1;*/
  /*}*/
}
.start-b_main {
  color: #fff;
  padding: 218px 0 340px;
  margin: 0;
}
@media (max-width: 650px) {
  .start-b_main {
    padding: 80px 0 260px;
    margin: 0 0 100px;
  }
}
.start-b_main:after {
  display: none;
}
.start-b__bg {
  background: var(--color-blue);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  min-height: 865px;
  -webkit-mask-image: url("../img/content/mask_1.svg");
          mask-image: url("../img/content/mask_1.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.start-b__bg img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .start-b__bg img {
    -webkit-transform: translateX(-65%);
            transform: translateX(-65%);
  }
}
@media (max-width: 650px) {
  .start-b__bg {
    min-height: 620px;
    -webkit-clip-path: path('M890.602 -66.2679C831.933 -560.348 4.97394 -415.433 -406.286 -164.183C-590.977 -70.2667 -779.914 193.599 -183.963 491.653C411.988 789.706 949.271 427.812 890.602 -66.2679Z');
            clip-path: path('M890.602 -66.2679C831.933 -560.348 4.97394 -415.433 -406.286 -164.183C-590.977 -70.2667 -779.914 193.599 -183.963 491.653C411.988 789.706 949.271 427.812 890.602 -66.2679Z');
  }
  .start-b__bg img {
    -webkit-transform: none;
            transform: none;
    left: 0;
    width: 100%;
  }
  /*.start-b__bg:before {*/
  /*  width: 100%;*/
  /*  height: 250px;*/
  /*  background: -webkit-linear-gradient(93.75deg, rgba(255,255,255,0.42) 48.13%, rgba(255,255,255,0) 77.68%);*/
  /*  background: linear-gradient(356.25deg, rgba(255,255,255,0.42) 48.13%, rgba(255,255,255,0) 77.68%);*/
  /*  content: '';*/
  /*  left: 0;*/
  /*  bottom: 0;*/
  /*  position: absolute;*/
  /*  z-index: 2;*/
  /*}*/
}
@media (max-width: 650px) {
  .start-b_main .start-b__bg:before {
    display: none;
  }
}
.start-b__block {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.start-b__pic {
  position: absolute;
  left: 60%;
  z-index: 3;
  top: 50%;
  -webkit-transform: translate(-19%, -37%);
          transform: translate(-19%, -37%);
  max-width: 980px;
  width: 100%;
}
.start-b__pic img {
  width: 100%;
}
@media (max-width: 1400px) {
  .start-b__pic {
    -webkit-transform: translate(-20%, -17%);
            transform: translate(-20%, -17%);
    max-width: 840px;
  }
}
@media (max-width: 1024px) {
  .start-b__pic {
    -webkit-transform: translate(5%, 0%);
            transform: translate(5%, 0%);
    max-width: 540px;
  }
}
@media (max-width: 650px) {
  .start-b__pic {
    max-width: 320px;
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
  }
  .start-b__pic img {
    max-width: 100%;
    height: auto;
  }
}
.start-b__logo {
  margin: 0 0 45px;
}
@media (max-width: 650px) {
  .start-b__logo img {
    height: 56px;
  }
}
.start-b__title {
  font-weight: bold;
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 30px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .start-b__title {
    font-size: 32px;
  }
}
.start-b__icon {
  -webkit-box-shadow: 0px 0px 43px rgba(0,0,0,0.25);
          box-shadow: 0px 0px 43px rgba(0,0,0,0.25);
  border-radius: 33px;
  width: 150px;
  height: 150px;
  margin: 0 0 48px;
  overflow: hidden;
}
@media (max-width: 650px) {
  .start-b__icon {
    border-radius: 26px;
    width: 134px;
    height: 134px;
    margin: 0 0 40px;
  }
}
.start-b__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.theme-white .start-b__label {
  color: #fff;
}
.theme-white .start-b__desc {
  color: #B6BACD;
}
.theme-white > .content-header .apps-list-b-links svg {
  fill: #fff;
}

.start-b__label {
  font-weight: bold;
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .start-b__label {
    font-size: 32px;
  }
}
.start-b__desc {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 40px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .start-b__desc {
    font-size: 16px;
    min-height: 135px;
  }
}
.start-b_main .start-b__apps-links svg {
  fill: #fff;
}
/* Apps
---------------------------
 */
.apps-b {
  margin: 0 0 80px;
  overflow: hidden;
  padding: 90px 0 0;
}
@media (max-width: 650px) {
  .apps-b {
    padding: 60px 0 0;
    margin: 0;
  }
}
.apps-b__text {
  max-width: 1292px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 16px;
}
@media (max-width: 1024px) {
  .apps-b__text {
    margin: 0 0 40px;
  }
}
@media (max-width: 650px) {
  .apps-b__text {
    text-align: left;
  }
}
.apps-b__slider {
  position: relative;
}
@media (min-width: 650px) {
  .apps-b__slider:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(18.15%, #fff9f9), color-stop(102.5%, rgba(255,249,249,0)));
    background: -webkit-linear-gradient(left, #fff9f9 18.15%, rgba(255,249,249,0) 102.5%);
    background: linear-gradient(-270deg, #fff9f9 18.15%, rgba(255,249,249,0) 102.5%);
    opacity: 0.5;
    width: 180px;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    pointer-events: none;
  }
  .apps-b__slider:before {
    background: -webkit-gradient(linear, right top, left top, color-stop(18.15%, #fff9f9), color-stop(102.5%, rgba(255,249,249,0)));
    background: -webkit-linear-gradient(right, #fff9f9 18.15%, rgba(255,249,249,0) 102.5%);
    background: linear-gradient(270deg, #fff9f9 18.15%, rgba(255,249,249,0) 102.5%);
    opacity: 0.5;
    width: 420px;
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    pointer-events: none;
  }
}
.apps-b__container .swiper-container {
  padding: 10px 0 30px;
}
.apps-b__container .swiper-slide {
  width: 280px;
}
.apps-b__container .slide--dark .apps-b__title {
  color: #18183C;
}
@media (max-width: 1024px) {
  .apps-b__container .swiper-slide {
    width: 230px;
  }
}
@media (max-width: 650px) {
  .apps-b__container .swiper-slide {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    opacity: 0;
    pointer-events: none;
  }
  .apps-b__container .swiper-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.apps-b__item {
  position: relative;
  height: 450px;
  display: block;
  overflow: hidden;
  border-radius: 36px;
  width: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1024px) {
  .apps-b__item {
    height: 348px;
    border-radius: 21px;
  }
}
.apps-b__block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  z-index: 2;
  padding: 40px 40px;
}
@media (max-width: 1024px) {
  .apps-b__block {
    padding: 25px 40px;
  }
}
.apps-b__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin: 0 0 34px;
  -webkit-box-shadow: 0px 0px 43px rgba(0,0,0,0.25);
          box-shadow: 0px 0px 43px rgba(0,0,0,0.25);
}
@media (max-width: 1024px) {
  .apps-b__icon {
    border-radius: 14px;
    width: 78px;
    height: 78px;
    margin: 0 0 20px;
  }
}
.apps-b__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apps-b__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .apps-b__title {
    font-size: 24px;
  }
}
.apps-b__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 650px) {
  .apps-b__item:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-box-shadow: rgba(50,50,93,0.25) 0px 15px 30px -10px, rgba(0,0,0,0.3) 0px 15px 20px -15px;
            box-shadow: rgba(50,50,93,0.25) 0px 15px 30px -10px, rgba(0,0,0,0.3) 0px 15px 20px -15px;
  }
}
/* We
---------------------------
 */
.we-b {
  margin: 0 0 60px;
  padding: 90px 0 0;
}
@media (max-width: 650px) {
  .we-b {
    margin: 0;
    padding: 60px 0 0;
  }
}
.we-b__text {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 650px) {
  .we-b__text {
    text-align: left;
  }
}
.we-b__pic {
  margin: 0 auto;
  display: table;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.we-b__pic img {
  max-width: 100%;
  margin: 0 auto;
  display: table;
}
@media (max-width: 650px) {
  .we-b__pic {
    -webkit-transform: none;
            transform: none;
    margin: -15px -16px 0;
  }
  .we-b__pic img {
    max-width: 100%;
  }
}
/* Contactm
---------------------------
 */
.contact-b {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 0 0;
}
@media (max-width: 650px) {
  .contact-b {
    padding: 0;
  }
}
.contact-b__note {
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 650px) {
  .contact-b__note {
    margin: 0 0 70px;
  }
}
.contact-b__note a {
  font-weight: bold;
  line-height: 0.6;
  display: inline-block;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
}
.contact-b__note a:hover {
  color: var(--color-blue-hover);
  border-bottom: 1px solid var(--color-blue-hover);
}
.contact-b__field {
  margin: 0 0 16px;
}
.contact-b__field label {
  display: block;
  font-size: 16px;
  margin: 0 0 5px;
}
@media (max-width: 650px) {
  .contact-b__field {
    margin: 0 0 16px;
  }
  .contact-b__field label {
    margin: 0;
    font-size: 10px;
  }
}
.contact-b__list {
  margin: 0 0 60px;
}
@media (max-width: 650px) {
  .contact-b__list {
    margin: 0 0 44px;
  }
}
.contact-b__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* Section
----------------------------------
 */
.section-b {
  margin: 0 0 220px;
  position: relative;
}
@media (max-width: 1024px) {
  .section-b {
    margin: 0 0 100px;
  }
}
.section-b__baloon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transform: translate(130px, -170px);
          transform: translate(130px, -170px);
  width: 1344px;
}
@media (max-width: 1024px) {
  .section-b__baloon {
    right: initial;
    left: 0;
    -webkit-transform: translate(40%, -80px);
            transform: translate(40%, -80px);
    height: auto;
    width: 655px;
  }
}
@media (max-width: 650px) {
  .section-b__baloon {
    right: initial;
    left: 0;
    -webkit-transform: translate(-64px, -180px);
            transform: translate(-64px, -180px);
    width: 655px;
  }
}
.section-b_margin {
  margin: 0 0 280px;
}
@media (max-width: 1024px) {
  .section-b_margin {
    margin: 0 0 80px;
  }
}
.section-b__grid {
  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;
}
@media (max-width: 1024px) {
  .section-b__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-b__grid_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section-b__pic {
  position: relative;
  z-index: 2;
  width: 58%;
}
.section-b__pic img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .section-b__pic {
    margin: 0 0 28px;
    width: 100%;
  }
}
.section-b__about {
  max-width: 508px;
  position: relative;
  z-index: 2;
}
.section-b__text {
  margin: 0 0 70px;
}
@media (max-width: 1024px) {
  .section-b__text {
    margin: 0 0 25px;
  }
}
.section-b__planshet {
  position: relative;
  z-index: 2;
  width: 48%;
}
/*.section-b__planshet video {*/
/*  position: absolute;*/
/*  left: 23px;*/
/*  right: 0;*/
/*  top: 25px;*/
/*  width: calc(100% - 48px);*/
/*  height: calc(100% - 50px);*/
/*  bottom: 0;*/
/*  border-radius: 12px;*/
/*  z-index: 10;*/
/*}*/
@media (max-width: 1024px) {
  .section-b__planshet {
    margin: 0 0 30px;
    width: 100%;
  }
}
.section-b__planshet-frame {
  position: relative;
  z-index: 2;
}
.section-b__planshet-frame img {
  width: 100%;
  height: auto;
}
.section-b__planshet-pic {
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  position: absolute;
  left: 24px;
  top: 25px;
  z-index: 1;
  background: #fff;
  -webkit-box-shadow: 50px 50px 50px rgba(9,20,50,0.15);
          box-shadow: 50px 50px 50px rgba(9,20,50,0.15);
}
.section-b__planshet-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-b__planshet-pic video {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  /*border-radius: 20px;*/
}
@media (max-width: 610px) {
  .section-b__planshet-pic {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    left: 14px;
    top: 15px;
  }
}
/* Our
----------------------------------
 */
.our-b__slider {
  padding: 0 200px;
  position: relative;
  margin: 10px 0 0;
}
.our-b__slider .arrow-b {
  top: 46%;
}
@media (max-width: 650px) {
  .our-b__slider {
    padding: 0 35px;
    margin: -10px 0 0;
  }
  .our-b__slider .swiper-container {
    padding: 0 50px;
    margin: 0 -50px;
  }
  .our-b__slider .arrow-b {
    display: none;
  }
}
.our-b__item {
  display: table;
  margin: 0 auto;
  font-size: 24px;
  color: #b6bacd;
  font-weight: bold;
  line-height: 1.1;
  width: 120px;
  text-align: center;
  padding: 50px 0 0;
}
@media (max-width: 1024px) {
  .our-b__item {
    width: auto;
    padding: 20px 0 0;
    display: block;
  }
}
@media (max-width: 850px) {
  .our-b__item {
    font-size: 16px;
  }
}
.our-b__icon {
  margin: 0 0 32px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 30px;
  overflow: hidden;
  display: block;
  -webkit-box-shadow: 0px 0px 33px rgba(0,0,0,0.25);
          box-shadow: 0px 0px 33px rgba(0,0,0,0.25);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1024px) {
  .our-b__icon {
    margin: 0 0 20px;
    border-radius: 28px;
    -webkit-box-shadow: 0px 0px 12px rgba(0,0,0,0.25);
            box-shadow: 0px 0px 12px rgba(0,0,0,0.25);
  }
}
.our-b__icon img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.our-b__title {
  text-transform: uppercase;
  padding: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: block;
  font-size: 16px;
}
@media (max-width: 650px) {
  .our-b__title {
    padding: 0;
  }
}
@media (min-width: 650px) {
  .our-b__item:hover .our-b__icon {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .our-b__item:hover .our-b__title {
    color: var(--color-blue);
  }
}
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 2;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  position: relative;
  -ms-touch-action: none;
  max-width:1130px;
  width:100%;
  margin:25px auto 0;
  height:6px;
  opacity:1 !important
}
.swiper-scrollbar:before {
  width:100%;
  height:1px;
  left:0;
  top:3px;
  background:#a0a0a0;
  position:absolute;
  content:'';
  z-index:2
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  z-index:3;
  position: relative;
  background: #121212;
  left: 0;
  top: 0;
  cursor:pointer
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.footer-b {
  padding: 90px 0 0px;
  margin: 0 0 -1px;
  color: #fff;
  background: var(--color-blue);
  -webkit-clip-path: path('M2804.75 1001.8C2834.17 -161.411 662.491 -161.447 -482.707 251.783C-990.117 393.732 -1570.23 925.919 -151.635 1854.2C1266.96 2782.49 2775.33 2165.02 2804.75 1001.8Z');
          clip-path: path('M2804.75 1001.8C2834.17 -161.411 662.491 -161.447 -482.707 251.783C-990.117 393.732 -1570.23 925.919 -151.635 1854.2C1266.96 2782.49 2775.33 2165.02 2804.75 1001.8Z');
}
@media (max-width: 650px) {
  .footer-b {
    padding-top: 60px;
    -webkit-clip-path: path('M508.164 282.981C529.915 -72.4648 48.8809 -42.3849 -210.197 99.6098C-324.449 149.966 -459.917 320.439 -157.849 584.116C144.219 847.792 486.414 638.426 508.164 282.981Z');
            clip-path: path('M508.164 282.981C529.915 -72.4648 48.8809 -42.3849 -210.197 99.6098C-324.449 149.966 -459.917 320.439 -157.849 584.116C144.219 847.792 486.414 638.426 508.164 282.981Z');
  }
}
.footer-b__block {
  margin: 0 auto;
  display: table;
}
.footer-b__logo {
  display: flex;
  justify-content: center;
  /*padding: 0 0 0 44px;*/
}
.footer-b__logo img {
    width: 140px;
}
@media (max-width: 650px) {
  .footer-b__logo {
    /*padding: 0 0 0 54px;*/
  }
}
.footer-b .apps-list-b {
  margin: 42px 0 32px;
}
@media (max-width: 650px) {
  .footer-b .apps-list-b {
    margin: 35px 0 25px;
  }
  .footer-b .apps-list-b svg {
    height: 34px;
  }
}
.footer-b__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 30px;
}
@media (max-width: 650px) {
  .footer-b__social {
    margin: 0 0 30px;
  }
}
.footer-b__social-links {
  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: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0 5px;
}
.footer-b__social-links:hover {
  opacity: 0.8;
}
.footer-b__social-links svg {
  fill: #fff;
}
.footer-b__copy {
  text-align: center;
  font-weight: bold;
  font-size: 8px;
  text-transform: uppercase;
}
.footer-b__apple {
  text-align: center;
  font-weight: bold;
  font-size: 8px;
  text-transform: uppercase;
}
.footer-b__links {
  margin: 0 0 20px;
  font-size: 11px;
}
.header-b {
  position: sticky;
  top: 0;
  left: 0;
  background: var(--color-blue);
  width: 100%;
  z-index: 9;
}
.header-b__grid {
  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;
  height: 50px;
}
@media (max-width: 650px) {
  .header-b__grid {
    height: 38px;
  }
}
@media (max-width: 650px) {
  .header-b__logo img {
    height: 16px;
  }
}
.header-b__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -36px 0 0;
}
@media (max-width: 650px) {
  .header-b__menu {
    display: none;
    margin: 0;
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    background: var(--color-blue);
    padding: 0 16px 20px;
    z-index: 3;
  }
}
.header-b__links {
  color: #fff;
  text-transform: uppercase;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 40px 0;
}
@media (max-width: 650px) {
  .header-b__links {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 650px) {
  .header-b__links:hover {
    background: rgba(255,255,255,0.1);
  }
}
.header-b__burger {
  display: none;
  position: relative;
  z-index: 10;
  -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;
}
@media (max-width: 650px) {
  .header-b__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-b__burger i {
    background: #fff;
    width: 17px;
    display: block;
    margin: 2px 0;
    height: 3px;
    -webkit-transition: width 0.1s linear;
    transition: width 0.1s linear;
  }
  .header-b__burger i:first-child {
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: relative;
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger i:nth-child(2) {
    position: relative;
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger_active i {
    background: #fff;
  }
  .header-b__burger_active i:first-child {
    top: 3px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger_active i:nth-child(2) {
    top: -4px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
}

.terms a {
  color: var(--color-blue);
}
