/* base styles*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  outline: none;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  width: 100%;
  min-width: 320px;
  font-family: 'Metropolis-Regular', Helvetica, Arial, sans-serif;
  color: black;
  position: relative;
  font-size: 14px;
  line-height: 28.8px;
  background-color: white;
  margin: 0;
}

blockquote {
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.btn-scrollDown {
  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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  line-height: 20px;
  color: #2f80ed;
}

.btn-scrollDown:hover {
  opacity: 0.6;
}

.btn-scrollDown svg {
  margin-left: 10px;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li,
ol li {
  list-style: none;
}

img {
  display: block;
  vertical-align: bottom;
}

.typed-cursor {
  color: #2f80ed;
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-1 {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-2 {
  max-width: 830px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-3 {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

.title__section {
  margin-bottom: 75px;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
  text-align: center;
}

.clr-blue {
  color: #2f80ed;
}

.semi-bold {
  font-weight: 600;
}

.section__padding {
  padding: 120px 0;
}

body .lock {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

@media (max-width: 1023px) {
  .title__section {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .section__padding {
    padding: 60px 0;
  }
}

.title h1,
.title h2,
.title h3,
.title h4 {
  margin-top: 0;
}

.title h1 {
  font-family: 'Metropolis-Bold';
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
}

.title h2 {
  font-family: 'Metropolis-SemiBold';
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .title h2 {
    font-size: 37px;
    line-height: 40px;
  }
}

.modal__window {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10010;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  cursor: pointer;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.modal__window::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e212c;
  opacity: 0.75;
}

.modal__window.active {
  opacity: 1;
  visibility: visible;
}

.modal__window.active .modal__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.modal__body {
  min-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;
  padding: 30px 20px;
}

.modal__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 968px;
  flex: 0 1 968px;
  padding: 48px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  cursor: auto;
}

.modal__exit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 3;
}

.modal__exit:before,
.modal__exit:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  background: #fff;
}

.modal__exit:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__exit:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .modal__body {
    padding: 40px 20px;
  }
  .modal__content {
    padding: 0;
  }
  .modal__exit {
    top: -20px;
    right: 10px;
  }
}

.footer_placeholder {
  height: 200px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

/*fonts*/
@font-face {
  font-family: 'Metropolis-Regular';
  src: url('../eot/metropolis-regular.eot');
  src: url('../eot/metropolis-regulard41d.eot#iefix') format('embedded-opentype'),
    url('../woff/metropolis-regular.woff') format('woff'),
    url('../ttf/metropolis-regular.ttf') format('truetype'),
    url('../svg/metropolis-regular.svg#Metropolis-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'Metropolis-Medium';
  src: url('../eot/metropolis-medium.eot');
  src: url('../eot/metropolis-mediumd41d.eot#iefix') format('embedded-opentype'),
    url('../woff/metropolis-medium.woff') format('woff'),
    url('../ttf/metropolis-medium.ttf') format('truetype'),
    url('../svg/metropolis-medium.svg#Metropolis-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'Metropolis-SemiBold';
  src: url('../eot/metropolis-semibold.eot');
  src: url('../eot/metropolis-semiboldd41d.eot#iefix') format('embedded-opentype'),
    url('../woff/metropolis-semibold.woff') format('woff'),
    url('../ttf/metropolis-semibold.ttf') format('truetype'),
    url('../svg/metropolis-semibold.svg#Metropolis-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'Metropolis-Bold';
  src: url('../eot/metropolis-bold.eot');
  src: url('../eot/metropolis-boldd41d.eot#iefix') format('embedded-opentype'),
    url('../woff/metropolis-bold.woff') format('woff'),
    url('../ttf/metropolis-bold.ttf') format('truetype'),
    url('../svg/metropolis-bold.svg#Metropolis-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

/*/fonts*/
/* /base styles */
/*End Layout*/

.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10002;
  -webkit-box-shadow: 0 1px 0 #f0f2f5;
  box-shadow: 0 1px 0 #f0f2f5;
  background: #ffffff;
  height: auto !important;
}

.header__burger {
  display: none;
}

.header__body {
  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;
  min-height: 74px;
  padding: 10px 15px;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  z-index: 3;
}

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

.menu__item {
  margin-left: 30px;
}

.menu__item--submenu:hover .submenu__list {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.menu__item--submenu {
  position: relative;
  left: 0;
  top: 0;
}

.menu__link {
  line-height: 20px;
  color: #415166;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.menu__link.active {
  color: #050e1a;
  text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
}

.menu__call {
  margin-left: 30px;
  padding: 20px 30px;
  font-weight: 500;
  line-height: 14px;
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 1200px) {
  .menu__call {
    margin-left: 10px;
  }
}

.submenu__list {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-width: 220px;
  -webkit-box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f2f4;
  background: #fff;
}

.submenu__item {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.submenu__item:last-child {
  margin-bottom: 0;
}
.header .menu__link--button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 0;
}

.submenu__link {
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  color: #415166;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.submenu__link.active {
  color: #2f80ed;
}

@media (min-width: 960px) {
  .submenu__item:hover {
    background-color: #2f80ed;
  }
  .submenu__item:hover .submenu__link {
    color: #fff;
  }
}

@media (any-hover: hover) {
  .menu__call:hover {
    background: rgba(47, 128, 237, 0.2);
  }
}

@media (min-width: 960px) {
  .menu__link:hover {
    color: #050e1a;
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}

@media (max-width: 1200px) {
  .menu__item {
    margin-left: 15px;
  }
}

@media (max-width: 1023px) {
  .header__burger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 10002;
    margin-right: 10px;
    cursor: pointer;
  }
  .header__burger.active span {
    background-color: #fff;
  }
  .header__burger.active span:nth-child(1) {
    top: 4px;
    left: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header__burger.active span:nth-child(2) {
    top: 4px;
    right: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header__burger.active span:nth-child(3) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .header__burger.active span:nth-child(4) {
    bottom: 5px;
    left: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header__burger.active span:nth-child(5) {
    bottom: 5px;
    right: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header__burger span {
    background-color: #000;
  }
  .header__burger span:nth-child(1),
  .header__burger span:nth-child(2),
  .header__burger span:nth-child(3),
  .header__burger span:nth-child(4),
  .header__burger span:nth-child(5) {
    position: absolute;
    height: 2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger span:nth-child(1) {
    top: 0;
    left: 0;
    width: 50%;
  }
  .header__burger span:nth-child(2) {
    top: 0;
    right: 0;
    width: 50%;
  }
  .header__burger span:nth-child(3) {
    left: 0;
    top: 9px;
    width: 100%;
  }
  .header__burger span:nth-child(4) {
    left: 0;
    bottom: 0;
    width: 50%;
  }
  .header__burger span:nth-child(5) {
    right: 0;
    bottom: 0;
    width: 50%;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease;
    display: block;
    background-color: #121212;
    padding: 60px 10px 20px 40px;
    overflow: auto;
    z-index: 10002;
  }
  .header__menu.active {
    opacity: 1;
    left: 0;
  }
  .header .menu__call {
    display: none;
  }
  .header .menu__list {
    position: relative;
    display: block;
  }
  .header .menu__list li {
    margin: 0 0 30px 0;
    text-align: left;
  }
  .header .menu__list li:last-child {
    margin: 0;
  }
  .header .menu__link {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
  }
  .header .menu__link.active {
    color: #2f80ed;
  }
  .header .submenu__link {
    padding: 0;
    line-height: 100%;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
  }
  .header .menu__link--button {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    padding: 0;
  }
  .header .menu__link--button::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    color: red;
    transform: rotate(180deg);
    background: url(../svg/menu-arrow.svg) 0 0/ 24px 24px no-repeat;
  }
  .header .menu__link--button.active::after {
    background: url(../svg/menu-arrow-blue.svg) 0 0/ 24px 24px no-repeat;
  }
  .header .submenu__list-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
  }
  .header .submenu__list-overflow {
    overflow: hidden;
  }

  .header .submenu__list {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    border: none;
    background: transparent;
    margin-top: 30px;
  }
  .header .menu__item--submenu.is-open .submenu__list-wrapper {
    grid-template-rows: 1fr;
  }
  .header .menu__item--submenu.is-open .menu__link--button::after {
    transform: rotate(0);
  }
}

.footer__body {
  padding: 50px 0;
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.footer__link {
  line-height: 20px;
  color: #050e1a;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.footer__locations {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 420px;
  flex: 0 1 420px;
}

.footer__item {
  margin-bottom: 20px;
  line-height: 20px;
  color: #050e1a;
}

.footer__item:last-child {
  margin: 0;
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid #f0f2f5;
}

.footer-lists__title {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #050e1a;
}

.footer-bottom__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  color: #050e1a;
}

.bottom-footer__left span {
  display: block;
}

.bottom-footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  line-height: 20px;
  color: #415166;
}

.bottom-footer__right span {
  display: block;
  line-height: 20px;
  color: #97a9be;
}

.bottom-footer__link {
  line-height: 20px;
  color: #415166;
}

.vertical-line {
  height: 10px;
  width: 1px;
  background: #000;
  margin: 0 15px;
}

@media (any-hover: hover) {
  .footer__link:hover {
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}

@media (max-width: 1023px) {
  .footer__lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 650px) {
  .footer-bottom__body {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .bottom-footer__left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 371px) {
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer__locations {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

.list-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}

.list-logo li {
  margin: 10px;
}

.hero {
  padding: 40px 0 138px;
}

.hero__title {
  min-height: 64px;
  font-family: 'Metropolis-Bold';
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  letter-spacing: -3px;
  color: #050e1a;
}

.hero__subtitle {
  margin: 20px auto;
  font-size: 23px;
  line-height: 32px;
  text-align: center;
  color: #415166;
  max-width: 574px;
}
.hero__buttons {
  margin: 50px auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-row-gap: 30px;
  -moz-row-gap: 30px;
  row-gap: 30px;
}

.hero__button {
  display: block;
  max-width: 275px;
  padding: 30px 31.4px;
  min-width: 273px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  background: #2f80ed;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.hero__button--transparent {
  background-color: transparent;
  color: #2f80ed;
  border: 1px solid #2f80ed;
}

@media (any-hover: hover) {
  .hero__button:hover {
    background: #4091ff;
    -webkit-box-shadow: 0 6px 24px -12px #2d86ff;
    box-shadow: 0 6px 24px -12px #2d86ff;
  }
  .hero__button--transparent:hover {
    background-color: #2f80ed;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding: 24px 0;
  }
  .hero__title {
    font-size: 41px;
    line-height: 50px;
  }
  .hero__subtitle {
    margin: 10px auto;
    font-size: 20px;
    line-height: 28px;
  }
  .hero__button {
    padding: 30px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}

.container-botscrew-chat {
  margin: 0 auto;
  /* background: url('../img/loader.gif') center center no-repeat; */
  background-size: 400px;
}

#botscrew-chat-frame {
  border: none;
}

#intro-layout {
  display: none;
}

.about-chatbot {
  background-color: #f0f2f5;
}

.about-chatbot__title {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.about-chatbot__title h2 {
  margin-bottom: 75px;
}

@media screen and (max-width: 960px) {
  .about-chatbot__title h2 {
    margin: 50px auto;
  }
}

.about-chatbot__desc {
  max-width: 500px;
  width: 100%;
  font-family: 'Metropolis-Medium';
  font-size: 18px;
  line-height: 28px;
  color: #415166;
  margin: 0 auto;
}

.about-chatbot__desc span {
  color: #050e19;
}

.about-chatbot__desc_top {
  margin-bottom: 120px;
}

@media screen and (max-width: 960px) {
  .about-chatbot__desc_top {
    margin-bottom: 50px;
  }
}

.steps-wrap {
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 960px) {
  .steps-wrap {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .steps-wrap {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-template-areas: 'line step-desc-top' 'line step-desc-bottom';
    grid-column-gap: 25px;
    grid-template-columns: 16px 250px;
  }
}

.steps-wrap .steps-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1547px;
  width: 100%;
}

.steps-wrap .steps-desc p {
  font-family: 'Metropolis-Medium';
  width: 275px;
  font-size: 24px;
  text-align: center;
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .steps-wrap .steps-desc p {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-desc p {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 40px;
  }
}

.steps-wrap .steps-desc_top {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 25px;
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-desc_top {
    margin-bottom: 0;
  }
}

.steps-wrap .steps-desc_top p:nth-child(2) {
  width: 260px;
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-desc_top p:nth-child(2) {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-desc_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-area: step-desc-top;
  }
}

.steps-wrap .steps-desc_bottom {
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0 135px;
  margin: 25px auto 0;
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-desc_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    grid-area: step-desc-bottom;
    margin-top: 0;
  }
  .steps-wrap .steps-desc_bottom p:last-child {
    margin-bottom: 0;
  }
}

.steps-wrap .steps-b {
  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;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 130px;
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-b {
    grid-area: line;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px 0;
  }
}

.steps-wrap .steps-b .step__round {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #2f80ed;
}

.steps-wrap .steps-b .step__line {
  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;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 4px dashed #2f80ed;
}

@media screen and (max-width: 767px) {
  .steps-wrap .steps-b .step__line {
    border-left: 4px dashed #2f80ed;
  }
}

.our-success {
  overflow-x: hidden;
}

.our-success__title {
  margin-bottom: 75px;
}

.our-success__swiper {
  overflow: unset;
}

@media screen and (max-width: 768px) {
  .our-success .swiper-wrapper {
    margin-bottom: 20px;
  }
}

.our-success .swiper-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

@media screen and (max-width: 768px) {
  .our-success .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.our-success .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #e1ebf8;
  margin: 0 2.5px;
  border-radius: 50%;
}

.our-success__swiper > .swiper-wrapper {
  transition-timing-function: linear;
}

.our-success .swiper-pagination-bullet-active {
  background-color: #2f80ed;
}

.our-success .swiper-slide {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 500px;
  width: 100%;
  color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 10px 20px rgba(22, 52, 92, 0.04);
  box-shadow: 0 10px 20px rgba(22, 52, 92, 0.04);
  height: auto;
}

@media screen and (max-width: 480px) {
  .our-success .swiper-slide {
    max-width: 290px;
  }
}

.our-success .swiper-slide__top-wrap {
  padding: 50px 50px 0;
}

@media screen and (max-width: 480px) {
  .our-success .swiper-slide__top-wrap {
    padding: 30px 30px 0;
  }
}

.our-success .swiper-slide__sup-title {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.our-success .swiper-slide__title.title {
  margin-bottom: 0;
}

.swiper-slide__title h3 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.our-success .swiper-slide__quote {
  font-size: 18px;
  line-height: 28px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.our-success .swiper-slide__link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

.our-success .swiper-slide__link:hover {
  border-bottom: 1px solid white;
}

.our-success .swiper-slide__img-wrap img {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.our-success .swiper-slide:hover {
  -webkit-box-shadow: 0px 10px 20px rgba(22, 52, 92, 0.12);
  box-shadow: 0px 10px 20px rgba(22, 52, 92, 0.12);
}

.our-success .swiper-slide_bg-dodgerBlue {
  background-color: #2f80ed;
}

.our-success .swiper-slide_bg-dodgerBlue:hover {
  background-color: #2a72d4;
}

.our-success .swiper-slide_bg-cello {
  background-color: #415166;
}

.our-success .swiper-slide_bg-cello:hover {
  background-color: #313d4d;
}

.our-success .swiper-slide_bg-solitude {
  background-color: #e1ebf8;
}

.our-success .swiper-slide_bg-solitude .swiper-slide__sup-title {
  color: #97a9be;
}

.our-success .swiper-slide_bg-solitude .swiper-slide__title {
  color: #050e1a;
}

.our-success .swiper-slide_bg-solitude .swiper-slide__quote {
  color: #415166;
}

.our-success .swiper-slide_bg-solitude .swiper-slide__link {
  color: #2f80ed;
}

.our-success .swiper-slide_bg-solitude .swiper-slide__link:hover {
  border-color: #2f80ed;
}

.our-success .swiper-slide_bg-solitude:hover {
  background-color: #c8d6e7;
}

.our-success .swiper-slide_bg-endeavour {
  background-color: #275288;
}

.our-success .swiper-slide_bg-endeavour:hover {
  background-color: #1f426e;
}

.our-success .swiper-slide_bg-lavender {
  background-color: #ebebef;
}

.our-success .swiper-slide_bg-lavender .swiper-slide__sup-title {
  color: #97a9be;
}

.our-success .swiper-slide_bg-lavender .swiper-slide__title {
  color: #050e1a;
}

.our-success .swiper-slide_bg-lavender .swiper-slide__quote {
  color: #415166;
}

.our-success .swiper-slide_bg-lavender .swiper-slide__link {
  color: #2f80ed;
}

.our-success .swiper-slide_bg-lavender .swiper-slide__link:hover {
  border-color: #2f80ed;
}

.our-success .swiper-slide_bg-lavender:hover {
  background-color: #d3d3d6;
}

.advantage__lists-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .advantage__lists-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .advantage__lists-wrap:last-child li:last-child {
    margin-bottom: 0;
  }
}

.advantage__title {
  margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
  .advantage__title {
    margin-bottom: 50px;
  }
}

.list-advantage {
  max-width: 500px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .list-advantage {
    max-width: 100%;
  }
}

.list-advantage:first-child {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .list-advantage:first-child {
    margin-right: 0;
  }
}

.list-advantage li {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
  min-height: 126px;
}

@media screen and (max-width: 767px) {
  .list-advantage li {
    min-height: unset;
    margin-bottom: 30px;
  }
}

.list-advantage li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .list-advantage li:last-child {
    margin-bottom: 30px;
  }
}

.list-advantage__number {
  display: block;
  font-family: 'Metropolis-Bold';
  font-size: 14px;
  line-height: 20px;
  color: #2f80ed;
  margin-bottom: 10px;
}

.customer-reviews {
  background: #f0f2f5;
}

.customer-reviews__list > .swiper-wrapper {
  transition-timing-function: linear;
}

.customer-reviews .swiper-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

@media screen and (max-width: 768px) {
  .customer-reviews .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.customer-reviews .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: white;
  margin: 0 2.5px;
  border-radius: 50%;
}

.customer-reviews .swiper-pagination-bullet-active {
  background-color: #2f80ed;
}

.customer-reviews__text--left {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  max-width: 500px;
}

.customer-reviews__text--right {
  max-width: 500px;
  font-size: 24px;
  line-height: 32px;
  color: #415166;
  max-width: 500px;
  margin: 50px 0 0 auto;
}

.customer-reviews__list {
  margin-top: 75px;
  overflow-x: hidden;
}

.customer-reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 518px;
  background: #fff;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .customer-reviews__item {
    max-width: 290px;
  }
}

.customer-reviews__item > .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.customer-reviews__item.swiper-slide {
  height: auto;
}

.customer-reviews__wrapper {
  margin-bottom: 26px;
}

.item-customer-reviews__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 28px;
  color: #415166;
}

.item-customer-reviews__text--dark {
  font-family: 'Metropolis-Medium';
  color: #050e19;
}

.item-customer-reviews__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .item-customer-reviews__author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.item-customer-reviews__author-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .item-customer-reviews__author-wrap {
    margin-bottom: 20px;
  }
}

.customer-reviews-author__photo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.customer-reviews-author__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #415166;
}

.customer-reviews-author__position {
  font-size: 12px;
  line-height: 16px;
  color: #97a9be;
}

@media (max-width: 1023px) {
  .customer-reviews__text--left {
    font-size: 24px;
    line-height: 36px;
  }
  .customer-reviews__text--right {
    font-size: 20px;
    line-height: 28px;
    margin: 30px 0 0 auto;
  }
  .customer-reviews__list {
    margin-top: 40px;
  }
  .customer-reviews__item {
    padding: 30px;
  }
  .item-customer-reviews__author {
    margin-top: 30px;
  }
  .item-customer-reviews__text {
    font-size: 18px;
    line-height: 28px;
  }
}

.result {
  background-color: #121c29;
}

.result .list-logo {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.result__year {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 90px;
}

.result__title {
  max-width: 650px;
  width: 100%;
  margin: 0 auto 75px;
  color: #ffffff;
}

.result__statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px auto 0;
  -webkit-column-gap: 3.2%;
  -moz-column-gap: 3.2%;
  column-gap: 3.2%;
}

.statistic-result__item {
  background: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0 12px 24px -6px rgba(8, 35, 71, 0.12);
  box-shadow: 0 12px 24px -6px rgba(8, 35, 71, 0.12);
  width: 31.2%;
  padding: 50px;
  margin-bottom: 3.2%;
}

.statistic-result__item img {
  margin-bottom: 20px;
}

.statistic-result__data {
  font-weight: 600;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 20px;
}

.statistic-result__descr {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1023px) {
  .result__year {
    margin-bottom: 50px;
  }
  .statistic-result__item {
    text-align: center;
  }
  .statistic-result__item img {
    margin: 0 auto 20px;
  }
  .statistic-result__data {
    font-size: 41px;
    line-height: 50px;
  }
  .statistic-result__descr {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .statistic-result__item {
    width: 48.4%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .result .list-logo {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .result .list-logo li {
    margin: 12px;
  }
  .statistic-result__item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
}

.chatbots {
  background: #f0f2f5;
}

.chatbots__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}

.chatbots__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}

.chatbots__title {
  max-width: 420px;
  font-family: 'Metropolis-SemiBold';
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
}

.chatbots__info {
  margin: 50px 0;
  font-size: 24px;
  line-height: 32px;
  color: #415166;
}

.chatbots__info span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.chatbots__awards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.chatbots__forma {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  padding: 50px;
  background: #ffffff;
  -webkit-box-shadow: 0px 12px 24px -6px rgba(8, 35, 71, 0.12);
  box-shadow: 0px 12px 24px -6px rgba(8, 35, 71, 0.12);
}

.forma-chatbots__title {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  color: #050e1a;
}

.forma-chatbots__input {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 30px;
}

.forma-chatbots__input span {
  display: none;
  font-size: 12px;
  line-height: 16px;
  color: #fd6062;
}

.forma-chatbots__input.error .empty {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.forma-chatbots__input.error .empty span.empty {
  display: block;
}

.forma-chatbots__input.error .empty span.empty span.error {
  display: none;
}

.forma-chatbots__input.error span.error {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.forma-chatbots__input input {
  display: block;
  width: 100%;
  padding: 16px;
  background: #f7f8fa;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 20px;
  color: #415166;
}

.forma-chatbots__input input.error {
  border: 1px solid #fd6062;
}

.forma-chatbots__input input:focus {
  border: 1px solid #97a9be;
}

.forma-chatbots__input input::-webkit-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__input input::-moz-placeholder {
  color: #97a9be;
}

.forma-chatbots__input input:-ms-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__input input::-ms-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__input input::placeholder {
  color: #97a9be;
}

.forma-chatbots__textarea {
  margin-bottom: 30px;
}

.forma-chatbots__textarea textarea {
  padding: 16px;
  background: #f7f8fa;
  border: 1px solid transparent;
  resize: none;
  width: 100%;
  height: 152px;
  font-size: 16px;
  line-height: 20px;
  color: #415166;
}

.forma-chatbots__textarea textarea:focus {
  border: 1px solid #97a9be;
}

.forma-chatbots__textarea textarea::-webkit-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__textarea textarea::-moz-placeholder {
  color: #97a9be;
}

.forma-chatbots__textarea textarea:-ms-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__textarea textarea::-ms-input-placeholder {
  color: #97a9be;
}

.forma-chatbots__textarea textarea::placeholder {
  color: #97a9be;
}

.forma-chatbots__button {
  display: block;
  margin: 0 auto;
  padding: 30px 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  background: #2f80ed;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (any-hover: hover) {
  .forma-chatbots__button:hover {
    background: #4091ff;
    -webkit-box-shadow: 0 6px 24px -12px #2d86ff;
    box-shadow: 0 6px 24px -12px #2d86ff;
  }
}

@media (max-width: 1023px) {
  .chatbots__body {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 50px;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .chatbots__title {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
  }
  .chatbots__info {
    margin: 30px 0;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }
  .chatbots__awards {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .chatbots__forma {
    padding: 25px;
  }
  .forma-chatbots__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  .forma-chatbots__button {
    padding: 30px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}

.invasion {
  padding: 245px 0 138px;
}

.invasion__title {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 0 auto 225px;
}

.invasion__btn-scrollDown {
  margin: 0 auto 50px;
}

.invasion__img-wrap img {
  max-width: 1090px;
  width: 100%;
  height: auto;
  margin: 0 auto 120px;
}

.invasion__cnt h2 {
  font-family: 'Metropolis-Medium';
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -0.02em;
  color: #050e1a;
  margin: 50px 0 20px;
}

.invasion__cnt p {
  font-size: 18px;
  line-height: 28px;
  color: #415166;
  margin: 0 0 20px;
}

.invasion__cnt a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #2f80ed;
  text-decoration: underline;
}

.invasion__cnt a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1023px) {
  .invasion {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .invasion__title {
    margin-bottom: 100px;
  }
  .invasion__title h1 {
    margin-top: 20px;
    font-size: 41px;
    line-height: 50px;
  }
  .invasion__img-wrap img {
    margin-bottom: 60px;
  }
}

.support-ukraine {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;

  font-family: 'Metropolis-SemiBold';
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
  min-height: 300px;
  background: #f0f2f5;
}
.support-ukraine a {
  color: #2f80ed;
  transition: color 0.4s ease 0s;
}

.support-ukraine a:hover {
  color: #69aaff;
}

@media (max-width: 575px) {
  .support-ukraine {
    font-size: 36px;
    line-height: 36px;
    min-height: 150px;
  }
}

/* cookies */

.cookies_popup {
  align-items: center;
  animation: fadeIn 0.2s ease-in;
  background: #121212;
  bottom: 25px;
  display: none;
  left: 3.5%;
  padding: 20px 15px;
  position: fixed;
  z-index: 989999;
}
@media (max-width: 1023px) {
  .cookies_popup {
    left: 0;
    bottom: 50px;
  }
}
.cookies_popup p {
  color: #fff;
  font-size: 12px;
  line-height: 150%;
  margin: 0;
}

.cookies_popup > div {
  margin-right: 15px;
}
.cookies_popup a {
  color: #2f80ed;
  text-decoration: none;
}
.cookies_popup button {
  background: #121212;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  outline: 0;
  padding: 10px 25px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
