@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #21243d;
  background: #f8f9ff;
}

._container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (max-width: 1192px) {
  ._container {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  ._container {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  ._container {
    max-width: none;
    padding: 0 10px;
  }
}

.section__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order__btn {
  height: 45px;
  padding: 12px 35px 12px 35px;
  background: #ffb52e;
  color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  position: relative;
  z-index: 99999;
}

.section__title {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .section__title {
    font-size: 27px;
  }
}
@media (max-width: 479.98px) {
  .section__title {
    font-size: 18px;
  }
}

.section__text {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .section__text {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .section__text {
    font-size: 14px;
  }
}

.nav-menu {
  padding: 20px 0px;
}
@media screen and (max-width: 1192px) {
  .nav-menu__logoDesktop {
    display: none;
  }
}
.nav-menu__logoDesktop img {
  /*height: 50px;*/
  width: 100px;
  left: 50px;  
  z-index: 999;
  position: relative;
  
}
.nav-menu__logoMobile img {
  height: 50px;
	height: 24px;
	left: 10px;
	position: relative;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  position: sticky;
  z-index: 9999;
}

.nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-items-link a {
  font-weight: 300;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25em;
  line-height: 24px;
  color: #fff;
  margin-right: 45px;
  cursor: pointer;
}
.nav-items-link:last-child a {
  margin: 0;
}
.nav-items-link a:hover {
	color: #ffb52e;
}


.hamburger-menu-body {
  display: none;
}

.hamburger-menu {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  height: 29px;
  width: 29px;
  cursor: pointer;
}
.hamburger-menu .bar-top,
.hamburger-menu .bar-middle,
.hamburger-menu .bar-bottom {
  height: 3px;
  background: #fff;
  border-radius: 5px;
  margin: 3px 0;
  transform-origin: left;
  transition: all 0.5s;
}

.humClicked .bar-top {
  transform: rotate(45deg);
}

.humClicked .bar-middle {
  transform: translateX(1rem);
  opacity: 0;
}

.humClicked .bar-bottom {
  transform: rotate(-45deg);
}

/*// Mobile version - hidden hamburger menu*/
@media screen and (max-width: 1192px) {
  .nav-menu {
    width: 100%;
  }
  .hamburger-menu-body {
    display: flex;
    justify-content: space-between;
  }
  .open-menu {
    height: 100%;
  }
  .closed-menu {
    display: none;
  }
  .nav-content {
    padding-top: 20px;
    flex-direction: column;
    z-index: 100;
    position: relative;
    transition: all 0.2s ease-out;
  }
  .nav-items {
    flex-direction: column;
  }
  .nav-items-link {
    margin-bottom: 10px;
  }
  .nav-items-link a {
    font-size: 20px;
    width: 100%;
    margin: 0;
    text-align: center;
    line-height: 30px;
  }
}
.section__header {
  background: #2c32c7;
  background: #046bc8;
  background-image: url("../assets/main__pattern.png");
  padding-bottom: 100px;
}
@media (max-width: 1192px) {
  .section__header {
    padding-bottom: 50px;
  }
}
.section__header__content {
  z-index: 900;
  position: relative;
}
.section__header__img {
  position: absolute;
  bottom: -100px;
  right: 0;
}
@media (max-width: 1192px) {
  .section__header__img {
    display: none;
  }
}
.section__header__img img {
  width: 540px;
}
.section__header .section__row {
  margin-top: 100px;
  align-items: center;
}
@media screen and (max-width: 1192px) {
  .section__header .section__row {
    flex-direction: column-reverse;
    margin-top: 0px;
  }
}
.section__header .language-body {
  background: #e3e8ee;
  padding: 4px;
  border-radius: 30px;
}
.section__header .language-btn {
  border-radius: 30px;
  cursor: pointer;
  padding: 4px 15px;
  border: none;
  background-color: transparent;
  font-size: 18px;
}
.section__header .language-btn.active {
  background-color: #ffb52e;
  color: #fff;
}
.section__header__info {
  width: 70%;
  width: 60%;
  color: #fff;
  z-index: 100;
}
@media (max-width: 1192px) {
  .section__header__info {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.section__header__info__title {
  font-size: 50px;
  font-weight: 800;
   font-family: "Montserrat", sans-serif;
  /*font-style: italic;*/
}
@media screen and (max-width: 991.98px) {
  .section__header__info__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
  }
}
@media screen and (max-width: 479.98px) {
  .section__header__info__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
  }
}
.section__header__info__title div:last-child {
  color: #ffb52e;
  font-size: 28px;
  line-height: 1;  
}
.section__header__info__subtitle {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 991.98px) {
  .section__header__info__subtitle {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 479.98px) {
  .section__header__info__subtitle {
    font-size: 14px;
    line-height: 16px;
  }
}
.section__header__info__action {
  color: #fff;
  margin-top: 90px;
  width: 220px;
  background: #ffb52e;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 15px;
}
@media screen and (max-width: 991.98px) {
  .section__header__info__action {
    margin-top: 50px;
    font-size: 19px;
  }
}

.section__interactive {
  padding: 100px 0;
  background-image: url("../assets/main__pattern.png");
}
.section__interactive__content img {
  width: 100%;
}
.section__interactive__graph__desktop {
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .section__interactive__graph__desktop {
    display: none;
  }
}
.section__interactive__graph__mobile {
  pointer-events: none;
  display: none;
}
@media screen and (max-width: 767.98px) {
  .section__interactive__graph__mobile {
    display: inline;
  }
}
.section__interactive__title, .section__smart__title {
  font-size: 48px;
  font-weight: 800;
  color: #2c32c7;
  color: #046bc8;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 991.98px) {
  .section__interactive__title, .section__smart__title {
    font-size: 25px;
    line-height: 30px;
  }
}
.section__interactive__item {
  background: #2c32c7;
  background: #046bc8;
  margin-top: 30px;
  padding: 5%;
  color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991.98px) {
  .section__interactive__item {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 479.98px) {
  .section__interactive__item {
    padding: 10%;
  }
}
.section__interactive__item__content {
  width: 50%;
}
@media screen and (max-width: 991.98px) {
  .section__interactive__item__content {
    width: 100%;
    margin-top: 20px;
  }
}
.section__interactive__item__img {
  width: 40%;
}
@media screen and (max-width: 991.98px) {
  .section__interactive__item__img {
    width: 100%;
  }
}
.section__interactive__item__img img {
  width: 100%;
}
.section__interactive__item span {
  color: #ffb52e;
}
.section__interactive__item span strong {
  color: #ffffff;
  font-weight:400;
  font-size: 24px;
  display: block;
  
}

.section__interactive__item__title{
    line-height: 1.25;
}

.section__interactive__item__title:last-child {
  color: #ffb52e;
}
.section__interactive__item__text {
  margin: 30px 0;
}
.section__interactive__item__action {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #2c32c7;
  color: #046bc8;
  border-radius: 10px;
  background: #fff;
  width: 175px;
  padding: 10px;
}

.section__smart {
  margin-bottom: -1px;
  background: #2c32c7;
  background: #046bc8;
  background-image: url("../assets/smart__pattern.png");
  padding: 50px 0;
}
.section__smart__title {
  color: #fff;
  text-align: center;
}
.section__smart .section__row {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 991.98px) {
  .section__smart .section__row {
    margin-bottom: 0px;
  }
}
.section__smart__item {
  background: #fff;
  border-radius: 30px;
  padding: 5%;
  padding-bottom: 0;
  text-align: center;
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .section__smart__item {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 479.98px) {
  .section__smart__item {
    padding: 10%;
  }
}
.section__smart__item__text {
  margin: 20px 0;
}
.section__smart__item__img {
  width: 100%;
}
.section__smart__item__img img {
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .section__smart__item__img img {
    width: 50%;
  }
}
@media screen and (max-width: 479.98px) {
  .section__smart__item__img img {
    width: 80%;
  }
}
.section__smart__info {
  display: flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  border-radius: 30px;
  padding: 5%;
  background: #fff;
}
@media screen and (max-width: 991.98px) {
  .section__smart__info {
    justify-content: center;
  }
}
@media screen and (max-width: 991.98px) {
  .section__smart__info {
    padding: 15px;
  }
}
.section__smart__info__content {
  width: 45%;
}
@media screen and (max-width: 991.98px) {
  .section__smart__info__content {
    width: 100%;
    margin-bottom: 30px;
	margin-top: 20px;
    text-align: center;
  }
}
.section__smart__info__text {
  margin-top: 30px;
}
.section__smart__info__img {
  width: 35%;
}
@media screen and (max-width: 991.98px) {
  .section__smart__info__img {
    width: 100%;
    text-align: center;
  }
}
.section__smart__info__img img {
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .section__smart__info__img img {
    width: 50%;
  }
}
@media screen and (max-width: 479.98px) {
  .section__smart__info__img img {
    width: 80%;
  }
}

.section__graph {
  padding: 50px 0;
  background: #2c32c7;
  background: #1a4588;
}
.section__graph__content img {
  width: 100%;
}

.section__feedback {
  background: #2c32c7;
  background: #046bc8;
  padding: 50px 0;
}
.section__feedback__support {
  margin-top: 40px;
  padding: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__feedback__support__title {
  color: #fff;
}
.section__feedback__support__action {
  margin-top: 40px;
  background: #fff;
  color: #ffb52e;
  width: 260px;
  height: 50px;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.section__footer {
  margin-top: -1px;
  background: #2c32c7;
  background: #1a2b4d;
  background-image: url("../assets/footer__pattern.png");
  position: relative;
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .section__footer {
    padding-bottom: 0;
  }
}
.section__footer__content {
  position: relative;
  z-index: 2;
}
.section__footer label {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.section__footer .section__input {
  padding: 15px 20px;
  background: #f5f5f5;
  border-radius: 10px;
}
.section__footer img {
  /*width: 150px;*/
  margin-bottom: 15px;
}
.section__footer__item {
  width: 30%;
}
@media (max-width: 767.98px) {
  .section__footer__item {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.section__footer__item__paragraph {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.section__footer__item__paragraph a {
  color: #fff;
}
.section__footer__item__link {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .section__footer__item__link {
    justify-content: center;
  }
}
.section__footer__item__download {
  display: flex;
}
.section__footer__item__download__link {
  margin-top: 20px;
  width: 100%;
}
.section__footer__item__download__link:first-child {
  margin-right: 10px;
}
.section__footer__item__download__link img {
  width: 100%;
}
.section__footer__item__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  margin-bottom: 10px;
}
.section__footer__item__paragraph__icon {
  padding-top: 5px;
  padding-right: 20px;
}
.section__footer__item .quick__link {
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */

.nav-menu__logoDesktop .bg
{
position: absolute;
background-color: #fff;
width: 200px;
height: 85px;
top: -21px;
padding: 0;
margin: 0;
z-index: 0;
border-radius: 0px 0px 25px 25px;
background: linear-gradient(180deg,#fff,#eee);
}



.section__smart__video {
  background: white;
  padding: 40px;
  border-radius: 30px;
  margin: 50px 0;
  margin-top: 20px;
  text-align: center;
}

.section__smart__video__title {
  margin-bottom: 30px;
  text-align: left;
}