@charset "UTF-8";
@font-face {
  font-family: "Gilroy Bold";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Gilroy Bold";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Gilroy-Black.woff") format("woff"), url("../fonts/Gilroy-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Inter-SemiBold.ttf");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Inter-Medium.ttf");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: "Password";
  src: url("../fonts/text-security-disc.woff2");
}
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

ul > li {
  list-style: none;
}

input {
  all: unset;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 24px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button,
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Gilroy Bold", "Arial", sans-serif;
}

@keyframes marquee {
  100% {
    transform: translate(-100%);
  }
}
@keyframes marquee-with-start {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translate(-100%);
  }
}
.marquee {
  display: flex;
  overflow: hidden;
}
.marquee__item {
  flex-shrink: 0;
  animation: marquee-with-start 60s infinite linear;
}
.marquee.demo__marquee .marquee__item {
  animation: marquee 60s infinite linear;
}
@media (min-width: 1224px) {
  .marquee:hover .marquee__item {
    animation-play-state: paused;
  }
}

@keyframes rotated-shake {
  0% {
    transform: rotate(28.03deg) translate(3px, 0);
  }
  50% {
    transform: rotate(28.03deg) translate(-3px, 0);
  }
  100% {
    transform: rotate(28.03deg) translate(0, 0);
  }
}
@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes tenge-move {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(46px, 73px);
  }
  50% {
    transform: translate(-42px, 120px);
  }
  75% {
    transform: translate(-104px, 6px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes dollar-move {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(-91px, 47px);
  }
  50% {
    transform: translate(-156px, -55px);
  }
  75% {
    transform: translate(-44px, -63px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes euro-move {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(-43px, -93px);
  }
  50% {
    transform: translate(66px, -112px);
  }
  75% {
    transform: translate(79px, -12px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes ruble-move {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(95px, -13px);
  }
  50% {
    transform: translate(134px, 61px);
  }
  75% {
    transform: translate(44px, 111px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.hero__line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: lines 5s linear infinite forwards;
}

@keyframes lines {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes apple-shake {
  0% {
    transform: translateX(40px);
  }
  5% {
    transform: translateX(30px);
  }
  10% {
    transform: translateX(40px);
  }
  15% {
    transform: translateX(30px);
  }
  20% {
    transform: translateX(40px);
  }
}
@keyframes pay-list-animation {
  to {
    transform: translate(-1166px);
  }
}
@media (max-width: 1224px) {
  .pay-list {
    animation: pay-list-animation 25s linear infinite alternate;
  }
}
.container {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 24px;
  padding-left: 24px;
}
@media (min-width: 1224px) {
  .container {
    max-width: 1224px;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
}
.container--with-sidebar {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1224px) {
  .container--with-sidebar {
    flex-direction: row;
    width: 1224px;
    padding-top: 40px;
  }
}

.hero__container,
.features-cards .container {
  overflow: visible;
}

.hero, .features-cards {
  overflow-x: hidden;
}
@media (min-width: 1224px) {
  .hero, .features-cards {
    overflow-x: visible;
  }
}

.section-heading {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #1C2B3F;
  margin-bottom: 16px;
  font-weight: bold;
}
.section-heading--light {
  color: #FFF;
}
@media (min-width: 1224px) {
  .section-heading {
    font-size: 48px;
    line-height: 59.42px;
    margin-bottom: 24px;
  }
}
.section-heading--center {
  text-align: center;
}

.section-text {
  margin-bottom: 32px;
  color: #202020;
}
.section-text--light {
  color: #fff;
}
.section-text--center {
  text-align: center;
}

.btn-link {
  display: block;
  padding: 16px 0;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}
.btn-link--fill {
  background-color: #1C83FF;
}
.btn-link--outline {
  border: 2px solid #FFFFFF;
}
.btn-link--dark-line {
  border: #1C2B3F 2px solid;
  color: #1C2B3F;
}
.btn-link--wide {
  width: 230px;
}

.logo-title {
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-size: 32px;
}
.logo-title--light {
  color: #fff;
}
.logo-title--colored {
  color: #0D74F0;
}

section {
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.no-background {
  background-image: none;
}

.with-background {
  background-image: url("../images/section-bg.png");
  background-position: center;
  background-repeat: no-repeat;
}

.numbered-list {
  counter-reset: counter;
}
.numbered-list .list-item {
  margin-left: 50px;
  position: relative;
  list-style-type: none;
  margin-bottom: 30px;
}
.numbered-list .list-item::before {
  content: counter(counter);
  display: block;
  counter-increment: counter;
  position: absolute;
  left: -50px;
  background: #1C2B3F;
  border-radius: 8px;
  color: #FFFFFF;
  width: 32px;
  text-align: center;
  padding: 4px 0;
}
.numbered-list--skewed .list-item {
  margin-bottom: 0;
  margin-top: 60px;
}
.numbered-list--skewed .list-item:last-child {
  margin-bottom: 30px;
}
.numbered-list--skewed .list-item::before {
  left: -50px;
  top: -33px;
}
@media (min-width: 1224px) {
  .numbered-list--rowed {
    display: flex;
    gap: 72px;
  }
  .numbered-list--rowed .list-item {
    max-width: 390px;
  }
}

.markered-list .features__list-item,
.markered-list .list-item {
  margin-left: 36px;
  list-style-type: none;
  position: relative;
  margin-bottom: 30px;
}
.markered-list .features__list-item::before,
.markered-list .list-item::before {
  content: url("../images/list-marker.svg");
  position: absolute;
  left: -36px;
}
.markered-list .features__list-item--bold,
.markered-list .list-item--bold {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}
.markered-list--arrow {
  margin-left: 21px;
}
.markered-list--arrow .list-item::before {
  content: "→";
  left: -21px;
}

.list-image {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin-bottom: 48px;
}
@media (min-width: 1224px) {
  .list-image .image-placeholder {
    height: 514px;
    width: 100%;
  }
}

.image-placeholder {
  width: 312px;
  height: 240px;
  background: #ECF5FE;
  border-radius: 16px;
}

.for-who {
  padding-top: 50px;
}
@media (min-width: 1224px) {
  .for-who {
    padding-top: 134px;
  }
}

.to-top {
  display: none;
  position: fixed;
  top: 50%;
  right: 15px;
  z-index: 1000;
}
.to-top__button {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3137254902);
}
.to-top__button path {
  stroke: #FFFFFF;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: none;
}

.overlay.active {
  display: block;
}

.loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader.active {
  display: block;
}

.loader__item {
  border: 4px solid #EEEEEE;
  border-top: 4px solid #1C83FF;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: spin 2s linear infinite;
  margin: auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader__text {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 10px;
}

.modal {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.modal__window {
  position: absolute;
  background-color: #fff;
  width: 312px;
  border: 7px solid #EAF1F8;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 24px;
  padding: 25px 17px;
}
@media (min-width: 1224px) {
  .modal__window {
    width: 496px;
    padding: 61px 41px 41px;
  }
}
.modal__heading {
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #1C2B3F;
}
.modal__button-close {
  position: absolute;
  cursor: pointer;
  top: 24px;
  right: 24px;
}
@media (min-width: 1224px) {
  .modal__button-close {
    top: 48px;
  }
}
.modal__input-box {
  margin: 16px auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.modal__label {
  font-size: 14px;
  line-height: 20px;
  color: #757575;
}
.modal__input {
  border-bottom: 1px solid #AFAFAF;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #202020;
  padding: 8px 0;
}
.modal__placeholder {
  color: #757575;
  position: absolute;
  left: 0;
  top: 28px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.modal__send {
  max-width: none;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-top: 12px;
}
.modal__send:disabled {
  background: #AFAFAF;
}
.modal__error {
  font-size: 14px;
  line-height: 16px;
  color: #FB5F5F;
  padding-top: 8px;
  height: 30px;
}
.modal__subheading {
  font-size: 14px;
  line-height: 20px;
  color: #757575;
  padding: 24px 0;
}
.modal__contact-item {
  margin-bottom: 16px;
}
.modal__contact {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #1C2B3F;
}
.modal__contact-icon {
  margin-right: 24px;
}
.modal__call-type-box {
  border-top: 1px solid #AFAFAF;
  border-bottom: 1px solid #AFAFAF;
  margin-bottom: 24px;
}

.modal-callback__heading {
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .modal-callback__heading {
    padding-right: 20px;
    font-size: 48px;
    line-height: 59px;
  }
}
@media (min-width: 1224px) {
  .modal-callback__btn {
    max-width: none;
    margin-top: 49px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
  }
}
.modal-callback .modal__contact-text {
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  margin-bottom: 2px;
}
@media (min-width: 1224px) {
  .modal-callback .modal__call-type-box {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .modal-callback .modal__subheading {
    font-size: 16px;
    line-height: 24px;
  }
  .modal-callback .modal__subheading:nth-of-type(4) {
    padding-top: 15px;
  }
  .modal-callback .modal__button-close {
    top: 42px;
    right: 42px;
  }
  .modal-callback .modal__contact {
    font-size: 20px;
    line-height: 24px;
  }
  .modal-callback .modal__contact-item {
    margin-bottom: 24px;
  }
  .modal-callback .modal__window {
    padding-top: 42px;
    border-radius: 40px;
  }
}

.modal-answer .modal__window {
  align-items: center;
  text-align: center;
  color: #202020;
  padding: 64px 42px 24px;
}
@media (min-width: 1224px) {
  .modal-answer .modal__window {
    padding: 67px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 548px;
  }
}
.modal-answer__image {
  margin-bottom: 51px;
}
@media (min-width: 1224px) {
  .modal-answer__image {
    margin-bottom: 39px;
  }
}
.modal-answer__heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .modal-answer__heading {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.modal-answer__text {
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .modal-answer__text {
    margin-bottom: 50px;
  }
}
@media (min-width: 1224px) {
  .modal-answer__btn {
    font-size: 18px;
    padding: 32px 0;
    width: 400px;
  }
}

.header {
  padding-top: 24px;
  padding-bottom: 16px;
  filter: drop-shadow(0px 4px 45px rgba(0, 0, 0, 0.05));
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
}
.header--light .logo-title {
  color: #0D74F0;
}
.header--light svg rect {
  fill: #0D74F0;
}
@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  .header {
    -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.2);
  }
}
@media (min-width: 1224px) {
  .header {
    padding: 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 1224px) {
  .header__menu-button {
    display: none;
  }
}
@media (min-width: 1224px) {
  .header__menu-container {
    flex-grow: 1;
    padding-left: 63px;
  }
}

.menu {
  background-color: #fff;
  border-radius: 16px;
  position: fixed;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  padding: 24px;
  z-index: 999;
  display: none;
}
@media (min-width: 1224px) {
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: static;
    background-color: transparent;
    padding: 0;
    width: 100%;
  }
}
.menu__title {
  line-height: 39.62px;
}
@media (min-width: 1224px) {
  .menu__title {
    display: none;
  }
}
@media (min-width: 1224px) {
  .menu__list {
    display: flex;
    justify-content: space-between;
  }
}
.menu__close-button {
  position: absolute;
  top: 28px;
  right: 24px;
}
@media (min-width: 1224px) {
  .menu__close-button {
    display: none;
  }
}
.menu__submenu {
  padding-top: 16px;
  font-weight: 400;
  z-index: 999;
}
.menu__submenu-item {
  padding: 16px 0;
  opacity: 0.7;
}
.menu__submenu-item:hover {
  opacity: 1;
}
@media (min-width: 1224px) {
  .menu__submenu-item {
    width: -moz-max-content;
    width: max-content;
  }
}
.menu__submenu-item--active {
  opacity: 1;
}
.menu__submenu-item--active .menu__sub-link {
  font-weight: bold;
}
@media (min-width: 1224px) {
  .menu__submenu {
    padding-top: 0;
    position: absolute;
    top: 90px;
    left: -40px;
    background-color: #fff;
    color: #000;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    border-radius: 6px;
    box-shadow: 0px 11px 21px rgba(0, 0, 0, 0.06);
  }
}
@media (min-width: 1224px) {
  .menu__sub-group {
    padding: 24px;
    position: relative;
  }
  .menu__sub-group::after {
    content: "";
    position: absolute;
    display: block;
    height: 76.5px;
    width: 1px;
    background-color: #CBCBCB;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .menu__sub-group__small::after {
    height: 40px;
  }
  .menu__sub-group:last-child::after {
    display: none;
  }
}
.menu__sub-icon {
  margin-right: 16px;
  vertical-align: middle;
}
.menu__list-item {
  padding: 16px 0;
  font-weight: 600;
  color: #1C2B3F;
  font-size: 18px;
}
@media (min-width: 1224px) {
  .menu__list-item {
    color: #fff;
    font-weight: 400;
    margin-right: 70px;
    position: relative;
    padding: 33px 0;
    font-size: 16px;
  }
  .menu__list-item:last-child {
    margin-left: -4px;
  }
}
.menu__svg-arrow {
  margin-left: 15px;
}
@media (min-width: 1224px) {
  .menu__svg-arrow {
    margin-left: 10px;
  }
  .menu__svg-arrow path {
    stroke: #fff;
  }
}
.menu__nav {
  border-bottom: 1px solid #cbcbcb;
}
@media (min-width: 1224px) {
  .menu__nav {
    border-bottom: none;
  }
}
.menu__footer {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 1224px) {
  .menu__footer {
    padding-top: 0;
  }
}
.menu__connect-button {
  width: 148px;
  align-self: flex-end;
}
@media (min-width: 1224px) {
  .menu__connect-button {
    display: none;
  }
}
.menu .language {
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  position: relative;
  width: 92px;
  height: 56px;
}
@media (min-width: 1224px) {
  .menu .language {
    width: 120px;
    height: 48px;
    border: 1px solid #FFFFFF;
  }
}
.menu .language__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (min-width: 1224px) {
  .menu .language__arrow path {
    stroke: #fff;
  }
}
.menu .language__selected {
  color: #1C2B3F;
  cursor: pointer;
}
.menu .language__item {
  width: 92px;
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  color: #757575;
}
@media (min-width: 1224px) {
  .menu .language__item {
    width: 120px;
    height: 48px;
  }
}
.menu .language__item--active {
  order: 999;
  color: #000;
}
.menu .language__item--selected {
  color: #000;
}
@media (min-width: 1224px) {
  .menu .language__item--selected {
    color: #fff;
  }
}
.menu .language__flag {
  display: none;
  margin-right: 8px;
}
@media (min-width: 1224px) {
  .menu .language__flag {
    display: block;
  }
}
.menu .language__selector {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  border-radius: 6px;
  bottom: -1px;
  left: -1px;
  height: 0;
  overflow: hidden;
}
.menu .language__selector--visible {
  border: 1px solid #cbcbcb;
  height: auto;
  z-index: 999;
}
@media (min-width: 1224px) {
  .menu .language__selector {
    bottom: auto;
    top: 68px;
  }
}
.menu__close-button {
  cursor: pointer;
}
.menu--light {
  border: 1px solid #CBCBCB;
  box-shadow: 0px 11px 21px rgba(0, 0, 0, 0.06);
}
@media (min-width: 1224px) {
  .menu--light {
    border: none;
    box-shadow: none;
  }
  .menu--light .language__item--selected {
    color: #000;
  }
  .menu--light .language__arrow > path {
    stroke: #000;
  }
  .menu--light .language {
    border: 1px solid #cbcbcb;
  }
  .menu--light .menu__submenu {
    border: 1px solid #CBCBCB;
    box-shadow: 0px 11px 21px rgba(0, 0, 0, 0.06);
  }
}
.menu--light .menu__list-item {
  color: #000;
}
.menu--light .menu__svg-arrow path {
  stroke: #000;
}

.hero {
  background: linear-gradient(79.32deg, #002E66 -53.71%, #0B7AFF 138.48%);
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 24px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(to right, #91b4df, #79aded);
}
@media (min-width: 1224px) {
  .hero::before {
    min-height: 90px;
    background: linear-gradient(79.32deg, #002e66 -53.71%, #0b7aff 138.48%);
  }
}
.hero--light {
  background: #fff;
}
.hero--light .hero__info {
  color: #000;
}
.hero--light::before {
  background: #fff;
}
.hero--overflow-visible {
  overflow: visible;
}
.hero__container {
  position: relative;
  padding-right: 24px;
  padding-left: 24px;
}
.hero__container--withdrawal {
  overflow: visible;
}
@media (min-width: 1224px) {
  .hero__container--withdrawal .hero__text {
    width: 530px;
  }
  .hero__container--withdrawal .hero__text .hero__info {
    width: 412px;
    margin-bottom: 80px;
  }
  .hero__container--withdrawal .hero__content-images {
    margin-top: 50px;
  }
}
@media (min-width: 1224px) {
  .hero__container {
    padding-right: 0;
    padding-left: 0;
  }
}
.hero__info {
  margin-bottom: 40px;
}
.hero__info--bold {
  font-weight: bold;
  font-size: 20px;
}
.hero__links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}
@media (min-width: 1224px) {
  .hero__links {
    justify-content: flex-start;
  }
}
.hero__link {
  width: 230px;
}
.hero__link--small {
  width: 148px;
}
.hero__link:first-child {
  margin-right: 16px;
}
@media (min-width: 1224px) {
  .hero__link {
    margin-right: 24px;
    width: 288px;
    font-size: 18px;
  }
}
.hero__marquee {
  display: flex;
}
.hero__features {
  flex-shrink: 1;
}
.hero__features-text {
  color: #FFFFFF;
  font-size: 18px;
  opacity: 0.4;
}
.hero__features-items {
  display: flex;
  overflow: hidden;
  align-items: center;
  margin-top: 16px;
}
.hero__features-items:hover {
  animation-play-state: running;
}
@media (min-width: 1224px) {
  .hero__features-items {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .hero__features-items li {
    margin-right: 0;
  }
}
.hero__features-items li {
  padding: 16px 8px;
  flex-shrink: 0;
  margin-right: 60px;
}
@media (min-width: 1224px) {
  .hero__features-items li {
    animation: none;
    height: 92.55px;
    margin-right: 38.18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero__feature-image {
  height: 20px;
}
@media (min-width: 1224px) {
  .hero__feature-image {
    height: auto;
    width: auto;
  }
}
@media (min-width: 1224px) {
  .hero__content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.hero__content-images {
  padding-top: 26px;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero__content-images--devs {
  padding-top: 57px;
  padding-bottom: 134px;
}
@media (min-width: 1224px) {
  .hero__content-images--devs {
    padding-top: 118px;
    padding-bottom: 80px;
  }
}
.hero__content-images--pay-page {
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .hero__content-images--pay-page {
    padding-top: 103px;
  }
  .hero__content-images--pay-page + .hero__text .section-heading {
    margin-top: -40px;
    margin-bottom: 64px;
  }
}
.hero__content-images--pay-plugins {
  padding-top: 50px;
  margin-bottom: 41px;
}
@media (min-width: 1224px) {
  .hero__content-images--pay-plugins {
    padding-top: 185px;
    text-align: center;
  }
}
.hero__image-small {
  position: absolute;
  animation: image-float 1s alternate infinite;
}
.hero__image-small--top-left {
  width: 105px;
  top: 75px;
  left: 11px;
}
@media (min-width: 1224px) {
  .hero__image-small--top-left {
    left: -173px;
  }
}
.hero__image-small--top-right {
  width: 71px;
  top: 13px;
  right: 47px;
}
@media (min-width: 1224px) {
  .hero__image-small--top-right {
    top: 0;
    right: 116px;
  }
}
.hero__image-small--bottom-left {
  width: 109px;
  top: 170px;
  left: 19px;
}
@media (min-width: 1224px) {
  .hero__image-small--bottom-left {
    top: 234px;
    left: -146px;
  }
}
.hero__image-small--bottom-right {
  width: 122px;
  height: 97px;
  top: 113px;
  right: 17px;
  opacity: 0.8;
}
@media (min-width: 1224px) {
  .hero__image-small--bottom-right {
    right: 86px;
    width: 195px;
    height: 155px;
  }
}
.hero__image-small--bcc {
  top: 68px;
  left: 73px;
  width: 30px;
}
@media (min-width: 1224px) {
  .hero__image-small--bcc {
    top: 287px;
    left: -21px;
  }
}
.hero__image-small--halyk {
  top: 207px;
  left: 51px;
  width: 57px;
}
@media (min-width: 1224px) {
  .hero__image-small--halyk {
    top: 559px;
    left: -85px;
  }
}
.hero__image-small--jusan {
  top: 245px;
  left: 210px;
  width: 30px;
}
@media (min-width: 1224px) {
  .hero__image-small--jusan {
    top: 596px;
    left: 223px;
  }
}
.hero__image-small--euras {
  top: 157px;
  left: 192px;
  width: 50px;
}
@media (min-width: 1224px) {
  .hero__image-small--euras {
    top: 446px;
    left: 220px;
  }
}
.hero__image-small--graph {
  top: 72px;
  left: 161px;
  width: 87px;
}
@media (min-width: 1224px) {
  .hero__image-small--graph {
    top: 272px;
    left: 148px;
  }
}
.hero__image-small--altel {
  top: 41px;
  left: 144px;
  opacity: 1;
}
.hero__image-small--altel svg {
  width: 48px;
  height: 48px;
}
@media (min-width: 1224px) {
  .hero__image-small--altel {
    left: 206px;
  }
}
.hero__image-small--activ {
  top: 178px;
  left: 131px;
  opacity: 1;
  z-index: 0;
}
.hero__image-small--activ svg {
  width: 66px;
  height: 66px;
}
@media (min-width: 1224px) {
  .hero__image-small--activ {
    left: 191px;
  }
}
.hero__image-small--beeline {
  top: 199px;
  left: 12px;
  opacity: 1;
  z-index: 2;
}
.hero__image-small--beeline svg {
  width: 56px;
  height: 56px;
}
@media (min-width: 1224px) {
  .hero__image-small--beeline {
    left: 72px;
  }
}
.hero__image-small--tele2 {
  top: 327px;
  left: 69px;
  opacity: 1;
  z-index: 2;
}
.hero__image-small--tele2 img {
  width: 66px;
  height: 66px;
}
@media (min-width: 1224px) {
  .hero__image-small--tele2 {
    top: 447px;
    left: 129px;
  }
}
.hero__image-small--wooppay {
  top: 116px;
  left: 60px;
  opacity: 1;
}
.hero__image-small--wooppay svg {
  width: 80px;
  height: 80px;
}
@media (min-width: 1224px) {
  .hero__image-small--wooppay {
    left: 120px;
  }
}
.hero__image-small--kcell {
  top: 88px;
  left: 35px;
  opacity: 1;
}
.hero__image-small--kcell svg {
  width: 37px;
  height: 37px;
}
@media (min-width: 1224px) {
  .hero__image-small--kcell {
    left: 95px;
  }
}
.hero__image-small--wordpress {
  top: 131px;
  left: 154px;
}
@media (min-width: 1224px) {
  .hero__image-small--wordpress {
    top: 264px;
    left: -180px;
  }
}
.hero__image-small--tilda {
  top: 342px;
  left: 213px;
}
@media (min-width: 1224px) {
  .hero__image-small--tilda {
    top: 400px;
    left: -53px;
  }
}
.hero__image-small--opencart {
  top: 338px;
  left: 44px;
  width: 150px;
}
@media (min-width: 1224px) {
  .hero__image-small--opencart {
    top: 231px;
    left: -67px;
  }
}
.hero__image-small--bitrix {
  top: 170px;
  left: -24px;
}
@media (min-width: 1224px) {
  .hero__image-small--bitrix {
    top: 371px;
    left: -235px;
  }
}
@media (min-width: 1224px) {
  .hero__image-small {
    width: auto;
  }
}
.hero__image-bg {
  position: absolute;
  width: 360px;
  max-width: none;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (min-width: 1224px) {
  .hero__image-bg {
    width: auto;
    height: 488px;
    top: 76px;
    right: 103px;
    left: auto;
  }
}
@media (min-width: 1224px) {
  .hero__text {
    width: 438px;
    margin-top: 175px;
  }
  .hero__text--small-margin {
    margin-top: 106px;
    width: 457px;
  }
  .hero__text--pay-plugins {
    width: 531px;
  }
}
@media (min-width: 1224px) {
  .hero__image-main {
    margin-right: 183px;
    width: 256px;
    height: 518px;
  }
}
.hero__image-main--multi {
  overflow: visible;
  margin-top: 41px;
}
@media (min-width: 1224px) {
  .hero__image-main--multi {
    overflow: hidden;
    margin-right: 22px;
    margin-top: 206px;
  }
}
.hero__image-main-container {
  width: 142px;
  height: 287px;
  margin: 0 auto;
  overflow: hidden;
}
.hero__image-main-container .hero__image-main {
  max-width: none;
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: 0 0;
}
.hero__image-main-container--withdrawal {
  height: 379px;
  width: 208px;
  transform: translateX(108px);
}
.hero__image-main-container--withdrawal .hero__image-main {
  max-width: none;
  width: 400%;
  height: 400%;
  transform: scale(0.25);
}
@media (min-width: 1224px) {
  .hero__image-main-container--withdrawal {
    width: 300px;
    height: 547px;
    margin-right: 130px;
    transform: translateX(233px);
  }
}
.hero__image-main--devs {
  height: 312px;
  width: auto;
  max-width: none;
  transform: translateX(78px);
}
@media (min-width: 1224px) {
  .hero__image-main--devs {
    margin-right: -70px;
    transform: none;
    height: 413px;
  }
}
.hero__image-main--pay-page {
  width: 469px;
  max-width: none;
}
@media (min-width: 1224px) {
  .hero__image-main--pay-page {
    width: 640px;
    height: auto;
    margin-right: 0;
  }
}
.hero__image-main--pay-button {
  width: 476px;
  max-width: none;
}
@media (min-width: 1224px) {
  .hero__image-main--pay-button {
    width: auto;
    margin-right: 0;
    margin-left: auto;
    height: auto;
  }
}
.hero__image-main--pay-plugins {
  width: 220px;
}
@media (min-width: 1224px) {
  .hero__image-main--pay-plugins {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}
.hero__image-card {
  position: absolute;
  top: 200px;
  left: -3px;
  z-index: 1;
}
.hero__list {
  padding-left: 25px;
  margin-bottom: 48px;
}
.hero__list-item {
  list-style-type: disc;
}
.hero__image-services {
  width: 423px;
  max-width: none;
  transform: translateX(-112px);
}
@media (min-width: 1224px) {
  .hero__image-services {
    transform: translateX(-120px);
  }
}
.hero--services .hero__content-images {
  padding-top: 43px;
  margin-bottom: 32px;
}
.hero__services-images {
  padding-top: 43px;
  margin-bottom: 32px;
}
@media (min-width: 1224px) {
  .hero__pay-page-links {
    display: none;
  }
}
.hero-instructions {
  padding: 30px 0;
  overflow-x: hidden;
}
.hero-instructions__list {
  counter-reset: counter;
}
.hero-instructions__list-item {
  box-sizing: border-box;
  width: 391px;
  padding: 19px 24px 12px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(59px);
          backdrop-filter: blur(59px);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.hero-instructions__list-item::before {
  content: counter(counter);
  counter-increment: counter;
  flex-shrink: 0;
  margin-right: 24px;
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-size: 58px;
  line-height: 74px;
  font-weight: 900;
  color: #eee;
}
.hero-instructions__list-item:hover {
  background: rgba(255, 255, 255, 0.4);
}
.hero-instructions__text {
  max-width: 220px;
  flex-shrink: 0;
}
@media (min-width: 1224px) {
  .hero-instructions {
    padding: 145px 0;
    background: url("../images/plug-in-opacity.png") no-repeat 59.6405228758% bottom, linear-gradient(79.32deg, #002E66 -53.71%, #0B7AFF 138.48%);
  }
  .hero-instructions__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-instructions__list-item {
    flex-grow: 0;
    padding: 32px 24px;
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .hero-instructions__list-item:nth-child(3), .hero-instructions__list-item:last-child {
    margin-right: 0px;
  }
  .hero-instructions__text {
    max-width: 267px;
  }
  .hero-instructions__heading {
    margin-bottom: 40px;
  }
}
.hero__lines-box {
  width: 751px;
  height: 639px;
  position: absolute;
  top: -179px;
  left: -220px;
  transform: scale(0.5);
  background: url("../images/hero-lines-circles.png") no-repeat 0% 102px;
}
@media (min-width: 1224px) {
  .hero__lines-box {
    transform: none;
    top: 24px;
    left: -150px;
  }
}
.hero__line {
  position: absolute;
}
.hero__line--1 {
  top: 98px;
  left: 66px;
}
.hero__line--2 {
  top: 425px;
  left: 48px;
}
.hero__line--3 {
  top: 259px;
  left: 17px;
}
.hero__line--4 {
  top: 169px;
  left: 94px;
}
.hero__line--5 {
  top: 469px;
  left: 130px;
}
@media (min-width: 1224px) {
  .hero {
    overflow-x: visible;
  }
  .hero--services .hero__content,
  .hero--services .hero__container {
    padding-bottom: 0;
  }
  .hero--services .hero__text {
    margin-top: 135px;
  }
  .hero--services .hero__content {
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero__image-services {
    width: 727px;
  }
  .hero__container {
    overflow: visible;
  }
  .hero__services-images {
    transform: translateY(100px);
    margin-bottom: 0;
    padding-top: 0;
  }
  .hero--small {
    height: 650px;
  }
  .hero__image-payments {
    max-width: none;
    margin-bottom: 50px;
  }
}
.hero--index .hero__content-images {
  margin-bottom: 12px;
}
.hero--index .hero__info {
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .hero--index .hero__image-main {
    position: relative;
    z-index: 1;
  }
  .hero--index .hero__image-small {
    z-index: 2;
  }
  .hero--index .hero__content-images {
    margin-top: 72px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .hero--index .hero__content-images::after {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.671);
    width: 188px;
    height: 10px;
    position: absolute;
    top: 536px;
    left: 37px;
    z-index: 0;
    filter: blur(7px);
  }
  .hero--index .hero__content-images::before {
    content: "";
    display: block;
    background-color: #fff;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 218px;
    left: 37px;
    border-radius: 50%;
    z-index: 0;
    filter: blur(127px);
  }
  .hero--index .hero__text {
    margin-top: 135px;
  }
  .hero--index .hero__info {
    margin-bottom: 79px;
  }
}
.hero--multiacquiring {
  padding-top: 24px;
  height: 745px;
  overflow: hidden;
}
@media (min-width: 1224px) {
  .hero--multiacquiring {
    padding-top: 0;
    height: auto;
    overflow: visible;
  }
}
.hero--multiacquiring .hero__content-images {
  padding-top: 0;
  margin-bottom: 6px;
}
.hero--google .hero__content-images, .hero--apple .hero__content-images {
  margin-bottom: 42px;
}
@media (min-width: 1224px) {
  .hero--google .hero__content-images, .hero--apple .hero__content-images {
    transform: translateY(80px);
  }
}
@media (min-width: 1224px) {
  .hero--google .hero__info:last-of-type, .hero--apple .hero__info:last-of-type {
    margin-bottom: 80px;
  }
}
@media (min-width: 1224px) {
  .hero--google .hero__content-images::after {
    content: "";
    display: block;
    width: 350px;
    height: 5px;
    margin: 0 auto;
    background: linear-gradient(89.99deg, rgba(0, 0, 0, 0) 1.91%, #000000 52.1%, rgba(0, 0, 0, 0) 102.77%);
    filter: blur(4.86084px);
  }
}
.hero--apple .hero__content-images {
  height: 420px;
}
@media (min-width: 1224px) {
  .hero--apple .hero__content-images {
    height: auto;
    margin-right: 0;
    padding-right: 87px;
  }
}
.hero--apple .hero__image-card {
  transform-origin: 0% 0%;
  transform: scale(0.6);
  top: 94px;
}
@media (min-width: 1224px) {
  .hero--apple .hero__image-card {
    transform: none;
    top: 138px;
    left: -192px;
  }
}
.hero--light {
  background: #fff;
}
.hero__content-images--pay-button {
  padding-top: 24px;
}
@media (min-width: 1224px) {
  .hero__content-images--pay-button {
    padding-top: 112px;
  }
}
.hero__full-image {
  height: 467px;
  width: auto;
  max-width: none;
  align-self: center;
  margin-bottom: 51px;
}
.hero__full-image--shifted {
  transform: translateX(-115px);
}
@media (min-width: 1224px) {
  .hero__full-image--shifted {
    transform: none;
  }
}
.hero__full-image--shifted-xx {
  transform: translateX(-325px);
}
@media (min-width: 1224px) {
  .hero__full-image--shifted-xx {
    transform: none;
  }
}
@media (min-width: 1224px) {
  .hero__full-image {
    margin-bottom: 24px;
    height: auto;
  }
}
@media (min-width: 1224px) {
  .hero--payments {
    padding-bottom: 60px;
  }
  .hero--payments .hero__text {
    margin-top: 108px;
    width: 512px;
  }
  .hero--payments .hero__info {
    width: 315px;
  }
  .hero--payments .hero__content-images {
    margin-left: 40px;
  }
}
@media (min-width: 1224px) {
  .hero--pay-page .hero__text {
    width: 512px;
  }
}

@keyframes image-float {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.pay-list {
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 16px;
  padding: 24px 0;
  width: -moz-max-content;
  width: max-content;
}
.pay-list__item {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding: 0 24px;
  border-right: 1px solid #FFFFFF;
}
.pay-list__item:last-child {
  border-right: none;
}
.pay-list__icons {
  width: 84px;
  margin-right: 16px;
  position: relative;
}
.pay-list__icons--big {
  width: 192px;
}
.pay-list__icon {
  position: absolute;
}
.pay-list__icon:first-child {
  left: 0;
}
.pay-list__icon:nth-child(2) {
  left: 36px;
}
.pay-list__icon:nth-child(3) {
  left: 72px;
}
.pay-list__icon:nth-child(4) {
  left: 108px;
}
.pay-list__icon:last-child {
  left: auto;
  right: 0;
}
.pay-list__title {
  font-weight: 600;
  margin-bottom: 4px;
}

@media (min-width: 1224px) {
  .pay-list {
    width: 100%;
    padding: 32px 0;
    margin-top: -30px;
  }
  .pay-list__icons {
    width: 100%;
    margin-bottom: 24px;
  }
  .pay-list__icon {
    position: static;
    margin-right: 16px;
  }
  .pay-list__icons {
    margin-bottom: 18px;
  }
  .pay-list__item {
    display: block;
    padding: 0 32px;
  }
  .pay-list__description {
    font-size: 14px;
  }
  .pay-list__title {
    margin-bottom: 2px;
  }
}
.apple-container {
  transform-origin: 100% 0;
  transform: scale(0.66);
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media (min-width: 1224px) {
  .apple-container {
    transform: none;
  }
}

.apple-notice {
  height: 73px;
  width: 170px;
  position: absolute;
  top: 146px;
  overflow: hidden;
  left: 144px;
}
.apple-notice__container {
  display: flex;
  align-items: center;
  height: 100%;
  transform: translateX(40px);
  animation: apple-shake linear 2.5s infinite;
}
.apple-notice__text {
  flex-shrink: 0;
  font-family: "SF Pro Display", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  display: inline-block;
  width: 105px;
  flex-grow: 1;
  text-align: right;
  margin-right: 9px;
}
.apple-notice__white-block {
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
  width: 45px;
}

.about {
  padding-top: 129px;
  padding-bottom: 36px;
}
@media (min-width: 1224px) {
  .about {
    padding-top: 242px;
    padding-bottom: 0;
  }
}
.about__image-container {
  margin-bottom: 39.55px;
}
@media (min-width: 1224px) {
  .about__image-container {
    width: 611px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about__image {
  flex-shrink: 0;
}
@media (min-width: 1224px) {
  .about__image {
    max-width: none;
  }
}
.about__info {
  padding-right: 37px;
  margin-bottom: 79px;
}
.about__link {
  width: 230px;
}
@media (min-width: 1224px) {
  .about__link {
    width: 287px;
    max-width: none;
    font-size: 18px;
  }
}
@media (min-width: 1224px) {
  .about__container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1224px) {
  .about__content {
    padding-top: 115px;
    width: 369px;
  }
}

@keyframes image-animation {
  to {
    transform: translateX(-156px);
  }
}
.features {
  padding-top: 24px;
  padding-bottom: 24px;
  overflow: hidden;
}
.features--services {
  padding-top: 32px;
}
@media (min-width: 1224px) {
  .features {
    padding-top: 104px;
    padding-bottom: 84px;
  }
  .features--pay-page {
    margin-bottom: 0;
    padding-top: 259px;
    padding-bottom: 0;
  }
  .features--pay-page .info-block {
    justify-content: flex-end;
  }
  .features--pay-page .info-block-content {
    max-width: 490px;
  }
  .features--services {
    padding-top: 194px;
  }
  .features--services .info-block {
    justify-content: flex-start;
    margin-left: -82px;
    gap: 108px;
  }
  .features--services .info-block--reverse {
    justify-content: flex-end;
    margin-left: 0px;
  }
}
.features__box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1224px) {
  .features__box {
    flex-direction: row;
    justify-content: space-between;
  }
}
.features__item {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .features__item {
    width: 288px;
    padding-right: 90px;
  }
}
.features__logo-box {
  margin-bottom: 16px;
  display: flex;
}
@media (min-width: 1224px) {
  .features__logo-box {
    margin-bottom: 32px;
  }
}
.features__logo {
  display: block;
  margin-right: 24px;
  transition: transform 0.7s;
}
.features__logo:hover {
  transform: scale(1.2);
}
@media (min-width: 1224px) {
  .features__heading {
    text-align: center;
    margin-bottom: 86px;
  }
}
.features__title {
  font-weight: 600;
  color: #1C2B3F;
  padding-right: 96px;
  margin-bottom: 16px;
}
@media (min-width: 1224px) {
  .features__title {
    padding-right: 0;
  }
}
.features__info {
  font-size: 14px;
  line-height: 20px;
  color: #757575;
}
.features__image {
  height: 290px;
  max-width: none;
  margin-bottom: 40px;
}
.features__image--qr {
  height: 355px;
  width: 351px;
  overflow: hidden;
}
.features__image--qr img {
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: 0 0;
  max-width: none;
}
.features__image--translate-left {
  transform: translateX(-138px);
}
.features__image--translate-right {
  transform: translateX(120px);
}
@media (min-width: 1224px) {
  .features__image {
    height: auto;
    transform: none;
  }
  .features__image--pay-page {
    width: 535px;
    margin-left: -50px;
  }
  .features__image--qr {
    width: 516px;
    height: 521px;
  }
}
.features__image--rotated {
  transform: rotate(-90deg) translateY(50px);
}
@media (min-width: 1224px) {
  .features__image--rotated {
    transform: none;
  }
}
.features__image--crop-top {
  height: auto;
  width: 100%;
  margin-top: -125px;
}
@media (min-width: 1224px) {
  .features__image--crop-top {
    margin-top: auto;
    width: 401px;
  }
}
@media (min-width: 1224px) {
  .features__image-safe {
    margin-right: -300px;
  }
}
.features__image-container {
  overflow: hidden;
}
.features__image-container .features__image {
  width: 400%;
  height: 400%;
  transform-origin: 0 0;
  transform: scale(0.25);
  max-width: none;
}
.features__image-container--two-phones {
  width: 235px;
  height: 290px;
}
@media (min-width: 1224px) {
  .features__image-container--two-phones {
    width: 441px;
    height: 545px;
  }
}
.features--apple .features__image--crop-top {
  margin-top: -82px;
}
@media (min-width: 1224px) {
  .features--apple .info-block:first-child {
    margin-bottom: 143px;
  }
}
.features--pay-button .features__image {
  height: 375px;
}
@media (min-width: 1224px) {
  .features--pay-button .features__image {
    height: auto;
    margin-bottom: 0;
    margin-left: -221px;
  }
}
@media (min-width: 1224px) {
  .features--pay-button {
    padding-bottom: 24px;
  }
  .features--pay-button .info-block__content {
    width: 512px;
  }
  .features--pay-button .info-block {
    gap: 76px;
  }
}
.features__list {
  margin-bottom: 40px;
}
.features__list-item {
  list-style-type: disc;
  margin-bottom: 24px;
}
.features__list--markered {
  margin-left: 36px;
}
.features__list--markered .features__list-item {
  list-style-type: none;
  position: relative;
}
.features__list--markered .features__list-item::before {
  content: url("../images/list-marker.svg");
  position: absolute;
  left: -36px;
}
.features__buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.features__link {
  flex-grow: 1;
}
.features__link:first-child {
  margin-right: 16px;
}
.features__link--more {
  color: #000;
  border: 2px solid #DEDEDE;
  border-radius: 10px;
  max-width: none;
}
.features__link--more svg {
  margin-left: 9px;
}
@media (min-width: 1224px) {
  .features__link--more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding-left: 30px;
  }
  .features__link--more svg {
    margin-left: 0px;
  }
}
.features__plugins {
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .features__plugins {
    margin-bottom: 80px;
  }
}
.features__plugins-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.features__plugins-box a {
  margin-right: 12px;
  margin-bottom: 12px;
}
.features__plugins-box a:nth-child(2), .features__plugins-box a:nth-child(4), .features__plugins-box a:nth-child(6), .features__plugins-box a:nth-child(8), .features__plugins-box a:nth-child(9), .features__plugins-box a:nth-child(11), .features__plugins-box a:last-child {
  margin-right: 0;
}
@media (min-width: 1224px) {
  .features__plugins-box {
    margin-bottom: 40px;
  }
  .features__plugins-box a {
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .features__plugins-box a:nth-child(2), .features__plugins-box a:nth-child(4), .features__plugins-box a:nth-child(6), .features__plugins-box a:nth-child(8), .features__plugins-box a:nth-child(9), .features__plugins-box a:nth-child(11), .features__plugins-box a:last-child {
    margin-right: 24px;
  }
  .features__plugins-box a:nth-child(3), .features__plugins-box a:nth-child(8), .features__plugins-box a:last-child {
    margin-right: 0;
  }
}
.features__plugin-card {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 246, 248, 0.995);
  border-radius: 10px;
  flex-grow: 1;
}
.features__plugin-card--big {
  height: 88px;
}
@media (min-width: 1224px) {
  .features__plugin-card {
    height: auto;
    min-height: 90px;
    padding: 28px 35px;
  }
  .features__plugin-card:nth-child(1), .features__plugin-card:nth-child(2), .features__plugin-card:nth-child(2) {
    width: 391px;
  }
  .features__plugin-card--big {
    height: 182px;
  }
}
.features__plugin-image {
  height: auto;
  display: block;
}
.features__plugin-image--wp {
  width: 112px;
}
.features__plugin-image--wix {
  width: 52px;
}
.features__plugin-image--1c {
  width: 135px;
}
.features__plugin-image--drupal {
  width: 88px;
}
.features__plugin-image--prest {
  width: 94px;
}
.features__plugin-image--webasyst {
  width: 113px;
}
.features__plugin-image--tilda {
  padding: 0 40px;
}
.features__plugin-image--opcart {
  width: 117px;
}
.features__plugin-image--joomla {
  width: 110px;
}
@media (min-width: 1224px) {
  .features__plugin-image {
    width: auto;
  }
}
.features__subheading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #202020;
  margin-bottom: 24px;
}
.features--devs .features__list {
  margin-left: 24px;
}
@media (min-width: 1224px) {
  .features {
    overflow: visible;
  }
  .features--devs {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .features--devs .features__buttons {
    justify-content: flex-start;
  }
  .features--devs .features__link {
    width: 182px;
    flex-grow: 0;
    margin-right: 25px;
  }
  .features--devs .features__link-big {
    width: 288px;
  }
  .features--devs .info-block {
    justify-content: flex-start;
  }
  .features--devs .info-block-content {
    max-width: 438px;
  }
  .features--devs .info-block .features__image {
    margin-left: -29px;
  }
  .features--devs .info-block .features__image--pay-page-dev {
    margin-left: 9px;
  }
  .features--devs .info-block--reverse {
    justify-content: flex-end;
  }
  .features--devs .info-block .section-heading {
    min-width: 580px;
  }
}

.tariff {
  background: linear-gradient(79.32deg, #002E66 -53.71%, #0B7AFF 138.48%);
  padding-top: 65px;
  color: #fff;
  overflow: visible;
}
.tariff__container {
  padding-bottom: 43px;
}
@media (min-width: 1224px) {
  .tariff__container {
    padding-bottom: 0;
  }
}
@media (min-width: 1224px) {
  .tariff__box {
    display: flex;
    justify-content: space-between;
  }
}
.tariff__info {
  margin-bottom: 64px;
  padding-left: 36px;
  position: relative;
}
@media (min-width: 1224px) {
  .tariff__info {
    width: 376px;
    margin-bottom: 0;
    padding-left: 45px;
  }
}
.tariff__info:last-child {
  margin-bottom: 0;
}
@media (min-width: 1224px) {
  .tariff__info:last-child {
    padding-right: 100px;
  }
}
.tariff__info::before {
  content: "";
  background-size: 100% 100%;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0px;
  top: 1px;
}
@media (min-width: 1224px) {
  .tariff__info::before {
    width: 32px;
    height: 32px;
    top: -1px;
  }
}
.tariff__info--no-comission::before {
  background-image: url("../images/marker-percents.svg");
}
.tariff__info--return::before {
  background-image: url("../images/marker-withdrawal.svg");
}
.tariff__info--money::before {
  background-image: url("../images/marker-tenge.svg");
}

.table {
  padding: 0 43px 61px;
  background-color: #fff;
  border-radius: 16px;
  transform: translateY(12px);
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 73px rgba(0, 0, 0, 0.12);
  width: 360px;
}
@media (min-width: 1224px) {
  .table {
    width: auto;
    transform: translateY(80px);
    padding: 0 43px;
  }
}
.table__header {
  padding-top: 36px;
  padding-bottom: 35px;
  display: flex;
  align-items: flex-end;
  position: relative;
  justify-content: space-between;
}
.table__header-icons {
  height: 32px;
}
@media (min-width: 1224px) {
  .table__header-icons {
    height: auto;
  }
  .table__header-icons--banking {
    margin-left: -7px;
  }
}
@media (min-width: 1224px) {
  .table__header {
    padding-bottom: 43px;
    width: 1056px;
    margin-left: auto;
    margin-right: auto;
  }
}
.table__icons-container {
  width: 33.3333333333%;
  position: relative;
}
.table__icons-container:last-child {
  text-align: right;
}
.table__icons-container:last-child .table__header-icons {
  margin-left: 9px;
}
@media (min-width: 1224px) {
  .table__icons-container {
    width: 224px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 26px;
  }
  .table__icons-container:last-child {
    text-align: center;
  }
  .table__icons-container:last-child .table__header-icons {
    margin-left: 0px;
  }
}
.table__icons-container--contactless {
  position: absolute;
  left: 40px;
}
@media (min-width: 1224px) {
  .table__icons-container--contactless {
    position: static;
  }
}
.table__icons-container--wallets {
  text-align: center;
}
.table__text-soon {
  position: absolute;
  top: -2px;
  right: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 5.45455px;
  line-height: 9px;
  background: #FF8F0B;
  border-radius: 15px;
  padding: 1px 4px;
  text-transform: uppercase;
}
@media (min-width: 1224px) {
  .table__text-soon {
    font-size: 10px;
    line-height: 16px;
    top: 19px;
    right: 32px;
    padding: 2px 8px;
  }
}
.table__row {
  display: flex;
  position: relative;
  padding-top: 52px;
}
@media (min-width: 1224px) {
  .table__row {
    padding-top: 58px;
    padding-bottom: 7px;
    align-items: baseline;
  }
}
.table__numbers {
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-size: 22px;
  line-height: 27px;
  color: #1C2B3F;
  width: 33.3333333333%;
}
@media (min-width: 1224px) {
  .table__numbers {
    width: 224px;
    font-size: 24px;
    line-height: 40px;
    flex-shrink: 0;
  }
}
.table__numbers--banking {
  display: none;
}
@media (min-width: 1224px) {
  .table__numbers--banking {
    display: block;
  }
}
.table__numbers--contactless {
  text-align: left;
  padding-left: 4px;
}
.table__numbers--wallets {
  text-align: center;
}
@media (min-width: 1224px) {
  .table__numbers {
    text-align: center;
  }
}
.table__circulations {
  position: absolute;
  color: #757575;
  font-size: 12px;
  line-height: 16px;
  top: 26px;
  left: 4px;
}
@media (min-width: 1224px) {
  .table__circulations {
    position: static;
    width: 184px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    white-space: nowrap;
  }
}
.table__info {
  width: 33.3333333333%;
  text-align: right;
  padding-right: 4px;
  position: relative;
}
@media (min-width: 1224px) {
  .table__info {
    width: 224px;
    flex-shrink: 0;
    text-align: center;
  }
}
.table__icon-box {
  display: inline-block;
  position: relative;
}
.table__icon-box:hover .table__popup {
  display: block;
}
.table__popup {
  display: none;
  position: absolute;
  color: #1C2B3F;
  width: 180px;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  padding: 13px 4px 13px 14px;
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 16px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
  bottom: 42px;
  left: -115px;
}
@media (min-width: 1224px) {
  .table__popup {
    left: -120px;
  }
}
.table__popup::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  left: 115px;
  border-width: 15px;
  border-style: solid;
  border-color: #E0E0E0 transparent transparent transparent;
}
.table__popup::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -27px;
  left: 115px;
  border-width: 15px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.table__body {
  padding-bottom: 37px;
  border-top: 1px solid #C1C1C1;
  border-bottom: 1px solid #C1C1C1;
}
@media (min-width: 1224px) {
  .table__body {
    width: 1056px;
    margin: 0 auto;
    padding-bottom: 55px;
  }
}
.table__footer {
  color: #757575;
  padding-top: 24px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  padding-bottom: 61px;
}
@media (min-width: 1224px) {
  .table__footer {
    padding-top: 53px;
    font-size: 14px;
    padding-bottom: 54px;
  }
}
.table__first-column-heading {
  display: none;
  width: 20%;
  color: #000000;
  padding-right: 100px;
  line-height: 21px;
}
@media (min-width: 1224px) {
  .table__first-column-heading {
    display: block;
    margin-top: 36px;
    align-self: flex-start;
    flex-shrink: 0;
    width: 184px;
  }
}
.table__icons-description {
  display: none;
  font-size: 12px;
  line-height: 16px;
  color: #757575;
  max-width: 88px;
  margin: 16px auto 0;
}
@media (min-width: 1224px) {
  .table__icons-description {
    display: block;
    margin: 11px auto 0;
  }
}
.table__link {
  width: 230px;
  margin-left: -19px;
}
@media (min-width: 1224px) {
  .table__link {
    display: none;
  }
}
@media (min-width: 1224px) {
  .table__row > div:nth-child(4), .table__header > div:nth-child(4) {
    margin-left: 7px;
  }
  .table__row > div:nth-child(5), .table__header > div:nth-child(5) {
    margin-left: 7px;
  }
}

.money {
  font-weight: 600;
  color: #1C2B3F;
}

.solutions {
  padding-top: 91px;
  padding-bottom: 24px;
}
@media (min-width: 1224px) {
  .solutions {
    padding-top: 352px;
    padding-bottom: 189px;
  }
}
.solutions__scroll-container {
  position: relative;
  height: 395px;
}
@media (min-width: 1224px) {
  .solutions__scroll-container {
    height: auto;
    margin-top: -54px;
  }
}
.solutions__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 571px;
  gap: 11px;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.7s;
}
@media (min-width: 1224px) {
  .solutions__box {
    position: static;
    width: 706px;
    gap: 15px 17px;
  }
}
.solutions__item {
  width: 182.82px;
  height: 122.49px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 18.2821px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  padding: 0 12px;
}
@media (min-width: 1224px) {
  .solutions__item {
    border: 2px solid #E0E0E0;
    box-shadow: 0px 4.91026px 14.7308px rgba(0, 0, 0, 0.05);
    width: 224px;
    height: 134px;
  }
}
.solutions__info {
  padding-top: 40px;
}
.solutions__info.container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1224px) {
  .solutions__info {
    width: 394px;
    margin-left: 0;
  }
}
.solutions__container {
  padding: 0 24px;
}
@media (min-width: 1224px) {
  .solutions__container {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1224px) {
  .solutions__section-text {
    margin-bottom: 80px;
  }
}
@media (min-width: 1224px) {
  .solutions {
    background-image: url(../images/backgrounds/bg-left.png);
    background-position-y: -1034px;
    background-position-x: calc(50% + 285px);
  }
}

.api {
  padding-top: 132px;
  padding-bottom: 24px;
  background: linear-gradient(79.32deg, #002E66 -53.71%, #0B7AFF 138.48%);
  overflow-x: hidden;
}
@media (min-width: 1224px) {
  .api {
    padding-bottom: 102px;
    padding-top: 196px;
  }
}
.api__image {
  width: 440px;
  max-width: none;
}
@media (min-width: 1224px) {
  .api__image {
    width: auto;
  }
}
@media (min-width: 1224px) {
  .api__images {
    margin-left: -81px;
    margin-top: -94px;
  }
}
@media (min-width: 1224px) {
  .api__container {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1224px) {
  .api__content {
    width: 415px;
    margin-left: 73.88px;
  }
  .api__content .section-text {
    margin-bottom: 79px;
  }
}
@media (min-width: 1224px) {
  .api__link {
    padding: 14px 0;
  }
}

.contactManager {
  cursor: pointer;
}

.demo {
  padding-top: 89px;
  padding-bottom: 24px;
}
.demo__image {
  display: block;
  margin-bottom: 48px;
}
.demo__item-title {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  color: #1C2B3F;
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 1224px) {
  .demo__item-title {
    line-height: 28px;
  }
}
.demo__item-description {
  color: #202020;
}
.demo__controls-container {
  padding-top: 24px;
  padding-bottom: 31.85px;
}
.demo__controls {
  display: flex;
  margin-bottom: 30px;
}
.demo__controls:last-child {
  margin-bottom: auto;
}
@media (min-width: 1224px) {
  .demo__controls {
    margin-bottom: 22px;
  }
}
.demo__label {
  width: 95px;
}
.demo__control-item {
  color: #CBCBCB;
  font-weight: 600;
  font-size: 14.5378px;
  line-height: 22px;
  display: flex;
  align-items: baseline;
}
.demo__control-item a {
  cursor: pointer;
}
.demo__gender--active {
  color: #000;
  border-bottom: 3px solid black;
}
.demo__divider {
  margin: 0 6px;
}
.demo__size {
  margin-right: 29.08px;
}
.demo__size--active {
  color: #000;
  border-bottom: 3px solid black;
}
.demo__color-box {
  align-items: center;
}
.demo__color {
  display: inline-block;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  margin-right: 34px;
}
.demo__color--blue {
  color: rgba(62, 121, 222, 0.3647058824);
  background-color: #3E79DE;
}
.demo__color--gray {
  color: rgba(213, 213, 213, 0.3647058824);
  background-color: #d5d5d5;
}
.demo__color--pink {
  color: rgba(249, 206, 206, 0.3647058824);
  background-color: #f9cece;
}
.demo__color--active {
  transform: scale(1.29);
  box-shadow: 0 0 0 3px;
}
.demo__partners {
  height: 45px;
  display: flex;
  padding-left: 24px;
  margin-top: 52px;
}
@media (min-width: 1224px) {
  .demo__partners {
    margin-top: 29px;
  }
}
.demo__partners-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 45px;
  filter: grayscale(1) contrast(10%);
}
.demo__partners-item:hover {
  filter: grayscale(0);
}
@media (min-width: 1224px) {
  .demo__partners-item {
    margin-right: 116px;
  }
}
.demo__partners-logo {
  height: 31px;
}
@media (min-width: 1224px) {
  .demo__container {
    display: flex;
    flex-direction: row;
    margin-bottom: 44px;
  }
}
@media (min-width: 1224px) {
  .demo__image-box {
    margin-right: 124px;
    margin-left: 95px;
    margin-top: 15px;
  }
}
.demo__controls-container {
  margin-bottom: 8px;
}
@media (min-width: 1224px) {
  .demo__controls-container {
    margin-bottom: 52px;
  }
}
@media (min-width: 1224px) {
  .demo__link {
    width: 392px;
    max-width: none;
  }
}
@media (min-width: 1224px) {
  .demo {
    background-image: url(../images/backgrounds/bg-left.png);
    background-position-y: -855px;
    background-position-x: calc(50% + 396px);
    padding-top: 223px;
  }
}

.callback__phone-call {
  position: fixed;
  right: 24px;
  bottom: 14px;
  border-radius: 50%;
  padding: 2px;
  line-height: 0;
  background-color: #fff;
  box-shadow: 0px 4.14815px 11.4074px rgba(0, 0, 0, 0.25);
  z-index: 999;
}
@media (min-width: 1224px) {
  .callback__phone-call {
    position: static;
  }
}
@media (min-width: 1224px) {
  .callback__container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.callback__info {
  display: none;
}
@media (min-width: 1224px) {
  .callback__info {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #1C2B3F;
  }
}
.callback__link {
  display: none;
  width: 184px;
  cursor: pointer;
}
@media (min-width: 1224px) {
  .callback__link {
    display: block;
    margin: 0 56px;
  }
}
@media (min-width: 1224px) {
  .callback {
    padding: 24px 0;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
  }
  @supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
    .callback {
      -webkit-backdrop-filter: blur(18px);
              backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, 0.2);
    }
  }
}

.footer {
  background-color: #1c2b3f;
  padding: 56px 0;
  z-index: 1;
  position: relative;
}
.footer__logo {
  letter-spacing: -0.01em;
  font-size: 35.355px;
  line-height: 44px;
  margin-bottom: 32px;
}
.footer__reg-info {
  color: rgba(250, 250, 250, 0.3647058824);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 48px;
}
.footer__title {
  font-weight: 600;
  font-size: 20px;
  color: #757E8A;
  margin-bottom: 24px;
  display: none;
}
@media (min-width: 1224px) {
  .footer__title {
    display: block;
  }
}
.footer__title--contact-main {
  order: 1;
  display: block;
}
@media (min-width: 1224px) {
  .footer__title--contact-main {
    display: none;
  }
}
.footer__sitemap {
  margin-bottom: 36px;
}
.footer__links-list {
  display: flex;
  flex-wrap: wrap;
}
.footer__list-item {
  padding: 12px 0;
  width: 50%;
  color: #DEE7F3;
}
.footer__offer {
  margin-bottom: 48px;
}
.footer__offer-title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #fff;
}
.footer__offer-links {
  display: flex;
  justify-content: space-between;
}
.footer__link {
  width: 148px;
  padding: 12px 0;
}
.footer__link:first-child {
  margin-right: 16px;
}
.footer__contacts {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 12px;
}
.footer__contacts-links {
  color: #fff;
}
.footer__contact-link {
  display: block;
  padding-left: 38px;
  margin-bottom: 24px;
  position: relative;
}
.footer__contact-link::before {
  position: absolute;
  top: 0;
  left: 0;
}
.footer__contact-link--address::before {
  content: url("../images/address-marker.svg");
}
.footer__contact-link--tel::before {
  content: url("../images/phone-marker.svg");
}
.footer__contact-link--email::before {
  content: url("../images/email-marker.svg");
}
.footer__contact-text {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
}
.footer__socials {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
}
.footer__copyrights {
  text-align: center;
  color: #DEE7F3;
  font-size: 14px;
  line-height: 20px;
  width: 180px;
  margin: 0 auto;
}
.footer__mid {
  border-bottom: 1px solid #334052;
}
.footer__social-link svg {
  width: 32px;
  height: 32px;
}
.footer__bottom img {
  position: absolute;
  left: -100px;
}
.footer__tel-link {
  display: block;
  margin: 8px 0;
}
.footer__contact-social-link {
  margin-right: 8px;
}
@media (min-width: 1224px) {
  .footer {
    padding: 115px 0 0;
  }
  .footer__logo {
    line-height: 24px;
  }
  .footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
  }
  .footer__sitemap {
    flex-grow: 1;
  }
  .footer__company-info {
    width: 324px;
    margin-right: 67px;
  }
  .footer__links-list {
    height: 72px;
  }
  .footer__list-item:nth-child(4n-3) {
    width: 198px;
  }
  .footer__list-item:nth-child(4n-2) {
    width: 240px;
  }
  .footer__list-item:nth-child(4n-1) {
    width: 246px;
  }
  .footer__list-item:nth-child(4n) {
    width: 147px;
  }
  .footer__nav {
    width: 833px;
  }
  .footer__mid {
    display: flex;
    justify-content: space-between;
  }
  .footer__contacts {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__contact-box {
    max-width: 395px;
  }
  .footer__contact-box--mr {
    margin-right: 189px;
  }
  .footer__offer {
    width: 420px;
    order: 10;
    margin-bottom: 91px;
    margin-left: 90px;
  }
  .footer__link {
    width: 184px;
  }
  .footer__bottom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
  .footer__copyrights {
    margin: 0;
    width: auto;
    text-align: left;
  }
  .footer__social-link {
    margin-left: 34px;
  }
  .footer__social-link svg {
    width: auto;
    height: auto;
  }
  .footer__title {
    margin-bottom: 32px;
  }
  .footer__socials {
    padding: 44px 0;
  }
}

.features-cards {
  padding-top: 32px;
  /* #region collapse */
  /* #endregion */
}
.features-cards picture {
  height: 50%;
}
.features-cards picture img {
  height: 100%;
  transform: none;
}
.features-cards picture img.features-cards__image--sales {
  height: calc(100% - 70px);
  margin-top: 36px;
  display: block;
  box-shadow: 50px 27px 55px -35px rgba(0, 0, 0, 0.6);
}
@media (min-width: 1224px) {
  .features-cards {
    padding-top: 87px;
  }
  .features-cards__heading {
    text-align: center;
    margin-bottom: 80px;
  }
  .features-cards .container {
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.features-cards__item {
  width: 288px;
  height: 467px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #EEEEEE;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  margin-right: 24px;
}
@media (min-width: 1224px) {
  .features-cards__item:hover .features-cards__decor-text--ninety-nine {
    animation: rotated-shake 150ms 2 linear;
  }
  .features-cards__item:hover .features-cards__decor-text--question, .features-cards__item:hover .features-cards__decor-text--tenge {
    animation: shake 150ms 2 linear;
  }
  .features-cards__item:hover .features-cards__decor-text--no {
    transform: rotate(315deg);
  }
}
@media (min-width: 1224px) {
  .features-cards__item:hover .features-cards__currency-image {
    animation-play-state: running;
  }
}
@media (min-width: 1224px) {
  .features-cards__item:hover {
    border: 2px solid #BAB9B9;
  }
  .features-cards__item:hover .features-cards__slider-button {
    transform: translateX(56px);
  }
}
.features-cards__item--empty {
  height: 240px;
  background: #ECF5FE;
  border-radius: 16px;
}
@media (min-width: 1224px) {
  .features-cards__item--empty {
    width: 703px;
    height: 386px;
  }
}
.features-cards__item:last-child {
  margin-right: 0;
}
.features-cards__item--reversed {
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
.features-cards__item--reversed .features-cards__info {
  padding-top: 30px;
}
@media (min-width: 1224px) {
  .features-cards__item--landscape {
    width: 496px;
    height: 307px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .features-cards__item--landscape .features-cards__image {
    height: 250px;
  }
}
.features-cards__list {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 24px;
  transition: transform 0.7s;
  transform: translateX(0px);
}
@media (min-width: 1224px) {
  .features-cards__list {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
.features-cards__image {
  height: 50%;
}
.features-cards__info {
  padding: 24px 40px;
}
.features-cards__title {
  font-weight: 600;
  color: #202020;
  margin-bottom: 16px;
}
.features-cards__text {
  color: #757575;
  font-size: 14px;
  line-height: 20px;
}
.features-cards__image-box {
  position: relative;
  height: 50%;
  width: 100%;
  padding-bottom: 50px;
  padding-left: 18px;
}
.features-cards__image-box--no-pad {
  padding: 0;
}
.features-cards__image-box .features-cards__image {
  height: 100%;
}
.features-cards__small-image {
  position: absolute;
  right: 0;
  bottom: 50px;
}
.features-cards__number {
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-weight: 700;
  font-size: 237.75px;
  line-height: 237.75px;
  color: #EEEEEE;
  text-align: left;
}
.features-cards--multiacquiring {
  margin-bottom: 169px;
}
@media (min-width: 1224px) {
  .features-cards--multiacquiring {
    margin-bottom: 0;
  }
}
.features-cards--withdrawal {
  margin-bottom: 104px;
}
.features-cards__decor-text {
  color: #1C2B3F;
  position: absolute;
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-weight: 700;
}
.features-cards__decor-text--ninety-nine {
  transform: rotate(28.03deg);
  font-size: 49.9557px;
  line-height: 62px;
  top: 62px;
  right: 13px;
}
.features-cards__decor-text--question {
  font-size: 61.4337px;
  line-height: 76px;
  top: 22px;
  left: 111px;
}
.features-cards__decor-text--no {
  font-weight: 800;
  font-size: 49.2514px;
  line-height: 62px;
  transform: rotate(-45deg);
  left: 42px;
  bottom: 115.28px;
  transition: transform 1s;
}
.features-cards__decor-text--tenge {
  font-size: 48.0897px;
  line-height: 60px;
  top: 50.28px;
  left: 153.24px;
}
.features-cards__box {
  width: 100%;
  height: 50%;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  padding-bottom: 71px;
}
.features-cards__box .features-cards__image {
  height: 100%;
}
.features-cards__currency-image {
  position: absolute;
  animation-play-state: paused;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.features-cards__currency-image--tenge {
  top: 16px;
  left: 137px;
  animation-name: tenge-move;
}
.features-cards__currency-image--dollar {
  top: 79px;
  left: 178px;
  animation-name: dollar-move;
}
.features-cards__currency-image--euro {
  top: 110px;
  left: 72.5px;
  animation-name: euro-move;
}
.features-cards__currency-image--ruble {
  top: 26px;
  left: 51px;
  animation-name: ruble-move;
}
.features-cards__slider-button {
  position: absolute;
  left: 29.78px;
  bottom: 92px;
  transition: transform 1s;
}
@media (min-width: 1224px) {
  .features-cards__slider-button {
    left: 39.78px;
  }
}
.features-cards--partnership .features-cards__image, .features-cards--withdrawal .features-cards__image {
  width: auto;
  left: auto;
  transform: translateX(82px);
  transition: transform 0.8s;
}
.features-cards--partnership .features-cards__image--phone, .features-cards--withdrawal .features-cards__image--phone {
  height: calc(50% + 70px);
  max-width: none;
  margin-right: -45px;
  margin-bottom: -30px;
}
.features-cards--partnership .features-cards__image--site, .features-cards--withdrawal .features-cards__image--site {
  max-width: none;
  transform: none;
}
@media (min-width: 1224px) {
  .features-cards--partnership .features-cards__image--site, .features-cards--withdrawal .features-cards__image--site {
    transform: translateX(64px);
  }
}
.features-cards--partnership .features-cards__image--events, .features-cards--withdrawal .features-cards__image--events {
  transform: none;
}
@media (min-width: 1224px) {
  .features-cards--partnership .features-cards__image--events, .features-cards--withdrawal .features-cards__image--events {
    transform: translateX(64px);
  }
}
@media (min-width: 1224px) {
  .features-cards--partnership .features-cards__item:hover .features-cards__image, .features-cards--withdrawal .features-cards__item:hover .features-cards__image {
    width: auto;
    transform: translateX(24px);
  }
}
.features-cards--withdrawal .features-cards__image {
  height: calc(100% - 70px);
  transform: translateX(130px);
  margin-top: 10px;
}
.features-cards--withdrawal .features-cards__image--card {
  margin-top: 0;
  height: calc(100% - 20px);
}
.features-cards--withdrawal .features-cards__box {
  background-color: #FFFFFF;
  padding-bottom: 0;
}
.features-cards--payments .features-cards__image-box {
  background-color: #f9f9f9;
}
@media (min-width: 1224px) {
  .features-cards--payments {
    padding-bottom: 32px;
    overflow: hidden;
  }
  .features-cards--payments .features-cards__image {
    width: 100%;
  }
}

.switch {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}
.switch__item {
  flex-grow: 1;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 14px;
  cursor: pointer;
  max-width: 146px;
}
.switch__item:last-child {
  margin-right: 0;
}
.switch__item--active .switch__loading {
  height: 5px;
  background-color: #1C2B3F;
  animation: loading 10s linear;
}
.switch__inner {
  background-color: #E3E3E3;
  height: 5px;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.how-to {
  padding-top: 32px;
  padding-bottom: 67px;
}
.how-to__items-container {
  padding-top: 16px;
}
@media (min-width: 1224px) {
  .how-to__items-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 533px;
  }
}
.how-to__item {
  display: flex;
}
.how-to__number {
  font-family: "Gilroy Bold", "Arial", sans-serif;
  font-size: 157px;
  line-height: 194px;
  letter-spacing: -0.01em;
  color: #EEEEEE;
  width: 107px;
  flex-shrink: 0;
}
@media (min-width: 1224px) {
  .how-to__number {
    font-size: 208px;
    line-height: 258px;
    width: 148px;
    margin-right: 18px;
  }
}
.how-to__content {
  padding-top: 25px;
}
.how-to__content--single-item {
  display: flex;
  align-items: center;
  padding-top: 0;
}
@media (min-width: 1224px) {
  .how-to__content {
    padding-top: 93px;
  }
}
.how-to__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #1C2B3F;
  margin-bottom: 16px;
}
.how-to__text {
  color: #1C2B3F;
}
@media (min-width: 1224px) {
  .how-to__text {
    max-width: 245px;
  }
}
@media (min-width: 1224px) {
  .how-to {
    padding-top: 80px;
  }
}
.how-to__image-container {
  display: flex;
  justify-content: flex-end;
}
.how-to__image {
  width: 446px;
  max-width: none;
}
@media (min-width: 1224px) {
  .how-to__image {
    width: auto;
  }
}
@media (min-width: 1224px) {
  .how-to__container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1224px) {
  .how-to--payments {
    background-image: url("../images/backgrounds/bg-right.png");
    background-position-y: -552px;
    background-position-x: calc(50% - 112px);
  }
}
@media (min-width: 1224px) {
  .how-to--apple .how-to__content {
    padding-top: 0;
  }
}

.image-switcher {
  padding-top: 56px;
  margin-bottom: 57px;
}
@media (min-width: 1224px) {
  .image-switcher {
    padding-top: 114px;
  }
}
.image-switcher__main {
  margin-bottom: 20px;
}
@media (min-width: 1224px) {
  .image-switcher__main {
    margin-bottom: 33px;
  }
}
.image-switcher__main-image {
  display: none;
  width: 310px;
  height: 192.5px;
}
.image-switcher__main-image--active {
  display: block;
}
@media (min-width: 1224px) {
  .image-switcher__main-image {
    height: 322px;
    width: 520px;
  }
}
.image-switcher__selector {
  display: flex;
  justify-content: space-between;
}
.image-switcher__selector-item {
  background-color: #fff;
  border-radius: 6px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  margin-right: 8px;
}
.image-switcher__selector-item:last-child {
  margin-right: 0;
}
@media (min-width: 1224px) {
  .image-switcher__selector-item {
    height: 57.27px;
    padding: 14px;
  }
}

.for-what {
  padding-top: 29px;
}
.for-what__image {
  width: 370px;
  max-width: none;
  margin-bottom: 24px;
  border-radius: 25px;
  box-shadow: 0px 5.00301px 20.0121px rgba(0, 0, 0, 0.08);
}
.for-what__text {
  margin-bottom: 16px;
}
@media (min-width: 1224px) {
  .for-what {
    margin-bottom: 150px;
  }
  .for-what__container {
    display: flex;
    justify-content: space-between;
    padding-top: 127px;
    align-items: center;
  }
  .for-what__image {
    width: auto;
    transform: translateX(-67px);
  }
  .for-what__content {
    margin-left: 27px;
    margin-top: -74px;
  }
}

.process {
  padding-top: 32px;
}
.process__steps {
  color: #fff;
  padding: 71px 24px 39px;
  background: linear-gradient(79.32deg, #002E66 -53.71%, #0B7AFF 138.48%);
  overflow-x: hidden;
}
.process__step-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
  position: relative;
}
.process__step-item--final {
  display: block;
}
.process__step-icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #fff;
  flex-shrink: 0;
  margin-right: 16px;
}
.process__step-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}
.process__step-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.process__step-icons-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.process__step--final {
  margin-bottom: 110px;
}
.process__arrow {
  position: absolute;
}
.process__arrow--single {
  top: 98px;
  left: 37px;
}
.process__arrow--multiple {
  top: -33px;
  right: 9px;
}
.process__arrow--mobile {
  display: inline-block;
}
.process__arrow--desktop {
  display: none;
}
@media (min-width: 1224px) {
  .process__arrow--mobile {
    display: none;
  }
  .process__arrow--desktop {
    display: inline-block;
  }
}
.process__features-cards {
  color: #fff;
  overflow: visible;
}
@media (min-width: 1224px) {
  .process__features-cards {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
  }
}
.process g.horizontal {
  display: none;
}
.process__steps-box {
  width: 312px;
  margin: 0 auto;
}
.process__heading {
  text-align: left;
}
.process__features-cards-heading {
  width: 312px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1224px) {
  .process__heading {
    margin-bottom: 79px;
    text-align: center;
  }
  .process__steps-box {
    display: flex;
    justify-content: space-between;
    width: 1224px;
  }
  .process__step-item {
    display: block;
    margin-right: 75px;
    width: 288px;
    margin-bottom: 70px;
  }
  .process__step-item--final {
    width: 373px;
  }
  .process__step-icon-container, .process__step-icons-box {
    margin-bottom: 40px;
  }
  .process__arrow--single {
    top: 39px;
    left: 131px;
  }
  .process g.horizontal {
    display: inline;
  }
  .process g.vertical {
    display: none;
  }
  .process__features-cards-heading {
    width: auto;
  }
}
@media (min-width: 360px) and (max-width: 668px) {
  .process__container .slider {
    width: 312px;
    margin: 0 auto;
  }
}

.integrations {
  max-width: 312px;
  margin: 0 auto;
}
.integrations__heading {
  color: #FFFFFF;
  opacity: 0.4;
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .integrations__heading {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}
.integrations__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.integrations__logo {
  margin-bottom: 24px;
  align-self: center;
}
.integrations__logo:last-child:nth-child(odd) {
  grid-column: span 2;
  justify-self: center;
}
@media (min-width: 1224px) {
  .integrations {
    width: 1224px;
    max-width: none;
  }
  .integrations__logos {
    display: flex;
    justify-content: center;
  }
  .integrations__logo {
    margin-right: 32px;
  }
  .integrations__logo:last-child {
    margin-right: 0;
  }
}

.horizontal-arrow {
  stroke-dasharray: 184;
  stroke-dashoffset: 184;
  animation: dash 4s linear forwards infinite;
}
.horizontal-arrow--step-1 + .arrow-head {
  animation: show-1 4s steps(1, end) forwards infinite;
}
.horizontal-arrow--step-2 {
  animation: horizontal-dash-2 4s linear forwards infinite;
}
.horizontal-arrow--step-2 + .arrow-head {
  animation: show-2 4s steps(1, end) forwards infinite;
}

.vertical-arrow {
  stroke-dasharray: 69;
  stroke-dashoffset: 69;
  animation: dash 4s linear forwards infinite;
}
.vertical-arrow--step-1 + .arrow-head {
  animation: show-1 4s steps(1, end) forwards infinite;
}
.vertical-arrow--step-2 {
  animation: vertical-dash-2 4s linear forwards infinite;
}
.vertical-arrow--step-2 + .arrow-head {
  animation: show-2 4s steps(1, end) forwards infinite;
}

.process__arrow--multiple path {
  stroke-dasharray: 239;
  stroke-dashoffset: 239;
  animation: multi-dash 4s linear forwards infinite;
}

.process__arrow--multiple.process__arrow--desktop path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: multi-dash-desktop 4s linear forwards infinite;
}

.arrow-head-multi-1 {
  animation: show-head-1 4s steps(1, end) forwards infinite;
}

.arrow-head-multi-2 {
  animation: show-head-2 4s steps(1, end) forwards infinite;
}

.arrow-head-multi-3 {
  animation: show-head-3 4s steps(1, end) forwards infinite;
}

@keyframes vertical-dash-2 {
  0% {
    stroke-dashoffset: 69;
  }
  25% {
    stroke-dashoffset: 69;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes horizontal-dash-2 {
  0% {
    stroke-dashoffset: 184;
  }
  25% {
    stroke-dashoffset: 184;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes multi-dash {
  0% {
    stroke-dashoffset: 239;
  }
  50% {
    stroke-dashoffset: 239;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes multi-dash-desktop {
  0% {
    stroke-dashoffset: 400;
  }
  50% {
    stroke-dashoffset: 400;
  }
  75% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  25% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes show-1 {
  from {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-2 {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-head-1 {
  from {
    opacity: 0;
  }
  56% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-head-2 {
  from {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-head-3 {
  from {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.sidebar {
  margin-bottom: 12px;
  margin-top: 24px;
}
.sidebar__nav {
  position: relative;
  height: 64px;
  padding: 12px 18px;
  border: 1px solid #CBCBCB;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1224px) {
  .sidebar__nav {
    border: none;
    padding: 0;
    height: auto;
  }
}
.sidebar__list {
  display: none;
  position: absolute;
  background-color: #fff;
  width: calc(100% + 2px);
  left: -1px;
  padding: 12.5px 24px 0;
  z-index: 999;
  border-right: 1px solid #CBCBCB;
  border-left: 1px solid #CBCBCB;
  border-bottom: 1px solid #CBCBCB;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 1224px) {
  .sidebar__list {
    border: none;
    padding: 0;
    display: block;
    position: static;
    background-color: transparent;
  }
}
.sidebar__list-item {
  margin-bottom: 12px;
}
.sidebar__list-item:first-child {
  border-top: 1px solid #CBCBCB;
  padding-top: 12px;
}
@media (min-width: 1224px) {
  .sidebar__list-item:first-child {
    border: none;
  }
}
.sidebar__link {
  display: block;
  padding: 12px 0;
}
.sidebar__link--active {
  color: #1C83FF;
}
.sidebar__link--selector::before {
  content: url("../images/arrow-menu.svg");
  margin-right: 10px;
}
@media (min-width: 1224px) {
  .sidebar__link--selector {
    display: none;
  }
}
@media (min-width: 1224px) {
  .sidebar {
    margin-right: 24px;
    position: sticky;
    top: 107px;
    align-self: flex-start;
    width: 288px;
    flex-shrink: 0;
    margin-top: 0;
  }
}

.about-using {
  overflow: visible;
}
.about-using__heading {
  font-size: 20px;
  margin-bottom: 24px;
}
.about-using__list-item {
  padding: 12px 0;
  margin-left: 24px;
  list-style-type: disc;
}
.about-using__list {
  margin-bottom: 28px;
}
.about-using__paragraph {
  margin-bottom: 40px;
}

.devs-offer {
  padding-bottom: 48px;
}
.devs-offer__card {
  padding: 24px;
  background: #FFFFFF;
  border: 2px solid #E2E2E2;
  border-radius: 16px;
  margin-bottom: 24px;
}
.devs-offer__text {
  text-align: left;
}
@media (min-width: 1224px) {
  .devs-offer {
    padding-top: 72px;
  }
  .devs-offer__text {
    text-align: center;
    width: 491px;
    margin-left: auto;
    margin-right: auto;
  }
  .devs-offer__card-box {
    display: flex;
    justify-content: space-between;
  }
  .devs-offer__card {
    flex-grow: 1;
    padding: 62px 48px 48px;
    display: flex;
    flex-direction: column;
    margin-right: 24px;
  }
  .devs-offer__card-text {
    width: 235px;
  }
  .devs-offer__card .btn-link {
    align-self: flex-end;
    width: 288px;
  }
  .devs-offer__card:last-child {
    margin-right: 0;
  }
}

.instructions {
  padding-bottom: 30px;
}
.instructions__cards {
  display: flex;
  transition: transform 0.7s;
}
.instructions__card-item {
  width: 288px;
  flex-shrink: 0;
  margin-right: 24px;
  border-radius: 16px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1224px) {
  .instructions__card-item {
    display: block;
    height: 301px;
    padding: 40px 12px 40px 40px;
    border: 2px solid #E2E2E2;
  }
}
.instructions__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (min-width: 1224px) {
  .instructions__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
  }
}
.instructions__text {
  font-size: 14px;
  line-height: 20px;
  color: #757575;
  margin-left: 16px;
  width: 200px;
}
@media (min-width: 1224px) {
  .instructions__text {
    margin-left: 0;
    width: auto;
  }
}

.opportunities__card {
  padding-left: 48px;
  margin-bottom: 40px;
  position: relative;
}
.opportunities__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #202020;
  margin-bottom: 24px;
}
.opportunities__icon {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1224px) {
  .opportunities {
    padding-top: 24px;
    margin-bottom: 32px;
  }
  .opportunities__cards-box {
    display: flex;
    flex-wrap: wrap;
  }
  .opportunities__card {
    width: 576px;
    margin-right: 24px;
  }
  .opportunities .section-heading {
    text-align: center;
  }
}

.tabs {
  padding-top: 40px;
}
.tabs__image {
  height: 250px;
  width: auto;
  max-width: none;
}
@media (min-width: 1224px) {
  .tabs__image {
    height: 550px;
    align-self: center;
  }
}
.tabs__header {
  display: flex;
  justify-content: space-between;
}
.tabs__header-item {
  flex-grow: 1;
}
.tabs__link {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #DADADA;
  border-bottom: 2px solid;
  padding-bottom: 25px;
}
.tabs__link--active {
  color: #000;
}
.tabs__content {
  padding-top: 45px;
  display: none;
}
.tabs__content picture {
  align-self: center;
}
.tabs__content--active {
  display: block;
}
@media (min-width: 1224px) {
  .tabs__content--active {
    display: flex;
    flex-direction: column-reverse;
  }
}

.button-preview {
  position: relative;
  transform: scale(0.5);
  transform-origin: top left;
}
.button-preview img {
  max-width: none;
}
.button-preview__picker {
  position: absolute;
  top: 137px;
  left: 194px;
  width: 160px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 1.66441px 8.32204px rgba(0, 0, 0, 0.25);
  padding: 6px;
  display: none;
}
.button-preview__text {
  font-size: 8px;
  font-weight: bold;
}
.button-preview__button {
  position: absolute;
  top: 192px;
  left: 559px;
  width: 129.68px;
  height: 32.93px;
  background-color: #50BE69;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
}
@media (min-width: 1224px) {
  .button-preview {
    transform: none;
  }
  .button-preview__picker {
    display: block;
  }
}

.button-examples__slider {
  background: linear-gradient(69.74deg, #002E66 -18.11%, #0B7AFF 150.9%);
  padding-top: 39px;
  overflow-x: hidden;
  margin-bottom: 24px;
  padding-bottom: 27px;
}
.button-examples__slider .container {
  overflow: visible;
}
@media (min-width: 1224px) {
  .button-examples__slider {
    padding-top: 114px;
    padding-bottom: 142px;
  }
}
.button-examples__image-container {
  display: flex;
  align-items: center;
  margin-bottom: 47px;
  animation: button-examples-animation infinite alternate 16s linear;
}
.button-examples__image {
  margin-right: 31px;
  flex-shrink: 0;
  max-width: none;
}
.button-examples__logos {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.button-examples__logo {
  margin-right: 24px;
}
.button-examples__logo:last-child {
  margin-right: 0;
}
.button-examples__message {
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  opacity: 0.6;
  padding-left: 28px;
  text-indent: -20px;
}
@media (min-width: 1224px) {
  .button-examples {
    display: flex;
    flex-direction: column-reverse;
  }
  .button-examples__footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .button-examples__logos {
    margin-bottom: 0;
    margin-right: 24px;
  }
  .button-examples__image-container {
    animation: none;
  }
  .button-examples .container {
    width: 1224px;
  }
}

@keyframes button-examples-animation {
  to {
    transform: translateX(-1137px);
  }
}
.info-block-content--gray .features__list {
  color: #757575;
  margin-left: 24px;
}
.info-block--image-to-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 1224px) {
  .info-block--image-to-end {
    flex-direction: row;
  }
}
@media (min-width: 1224px) {
  .info-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 135px;
  }
  .info-block:last-child {
    margin-bottom: 0;
  }
  .info-block--padded {
    padding-left: 166px;
    padding-right: 81px;
  }
  .info-block-content {
    margin-left: 135px;
    margin-right: 0;
    max-width: 390px;
  }
  .info-block-content form {
    background-color: white;
  }
  .info-block--reverse {
    flex-direction: row-reverse;
  }
  .info-block--reverse .info-block-content {
    margin-right: 135px;
    margin-left: 0;
  }
  .info-block__image--document {
    width: 508px;
  }
  .info-block__image--pack {
    transform: none;
    width: 532px;
  }
  .info-block--for-who-gray {
    justify-content: flex-end;
  }
}
.info-block--small-margin .block {
  margin-bottom: 170px;
}
.info-block__image-container {
  height: 373px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}
.info-block__image-container--apple {
  overflow: visible;
}
@media (min-width: 1224px) {
  .info-block__image-container {
    height: auto;
    overflow: visible;
  }
}
.info-block__back-image {
  display: block;
  position: absolute;
  top: 30px;
  left: 1px;
  width: 165px;
  height: auto;
}
.info-block__back-image::before {
  width: 100%;
  height: 5px;
  content: "";
  display: block;
  background: linear-gradient(89deg, rgba(0, 0, 0, 0) 0%, #000000 22.1%, rgba(0, 0, 0, 0) 102.77%);
  filter: blur(5.75017px);
  z-index: -1;
  position: absolute;
  bottom: 52px;
  left: -39px;
}
@media (min-width: 1224px) {
  .info-block__back-image {
    width: 274px;
    left: -122px;
  }
}
.info-block__links {
  margin-bottom: 36px;
}
@media (min-width: 1224px) {
  .info-block__links {
    display: none;
  }
}
.info-block .apple-container {
  transform-origin: 50% 0%;
  overflow: visible;
}
.info-block .overflow-fix {
  overflow: hidden;
}

.firm-style__subheading {
  color: #1C2B3F;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
.firm-style__text {
  margin-bottom: 16px;
}
.firm-style__list {
  margin-bottom: 16px;
}
.firm-style__recommendation-heading {
  margin-bottom: 16px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}
.firm-style__recommendation-text {
  margin-bottom: 40px;
}
@media (min-width: 1224px) {
  .firm-style {
    padding-top: 80px;
    padding-bottom: 64px;
  }
  .firm-style .section-heading {
    width: 791px;
  }
  .firm-style__subheading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .firm-style__text {
    margin-bottom: 56px;
  }
  .firm-style__text--description {
    width: 553px;
  }
  .firm-style__text--in-text {
    width: 843px;
  }
  .firm-style__list {
    margin-bottom: 56px;
  }
  .firm-style__list-item {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 10px;
  }
  .firm-style__recommendation-heading {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .firm-style__recommendation-text {
    margin-bottom: 48px;
  }
}

.buttons-list {
  margin-bottom: 16px;
}
.buttons-list__item {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
}
.buttons-list__icon-box {
  width: 80px;
  flex-shrink: 0;
}
.buttons-list__link {
  display: list-item;
  list-style-position: inside;
  text-decoration: underline;
}
@media (min-width: 1224px) {
  .buttons-list {
    margin-bottom: 56px;
  }
  .buttons-list__item {
    margin-bottom: 14px;
  }
  .buttons-list__icon-box {
    width: 98px;
    display: flex;
    justify-content: flex-end;
    margin-right: 16px;
  }
}

.icon-download {
  background: #808080;
  box-shadow: 0px 16px 54px rgba(0, 0, 0, 0.11);
  width: 312px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  padding: 24px;
}
.icon-download__body {
  display: none;
}
.icon-download__body.active {
  display: block;
}
.icon-download__platform-button {
  stroke: black;
  margin-right: 24px;
}
.icon-download__platform-button--active {
  stroke: #fafafa;
}
.icon-download button {
  cursor: pointer;
}
.icon-download__heading {
  color: #FFFFFF;
  font-family: "Gilroy Bold";
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}
.icon-download__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
}
.icon-download__row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.icon-download__row .icon-download__icon-img {
  max-width: 90%;
}
.icon-download__row .icon-download__icon-img--shadow {
  max-width: none;
}
.icon-download__cell {
  text-align: center;
  width: 33.3333333333%;
}
.icon-download__icon-img {
  height: 30px;
}
.icon-download__icon-img--shadow {
  height: 34px;
  margin-top: -1px;
  margin-bottom: -3px;
}
.icon-download__link {
  font-family: "Gilroy Bold";
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: #FFFFFF;
  margin-right: 6px;
}
.icon-download__link:hover {
  color: #000000;
  text-decoration: underline;
}
.icon-download__link:last-child {
  margin-right: 0;
}
.icon-download__content {
  display: none;
}
.icon-download__content.active {
  display: block;
}
@media (min-width: 1224px) {
  .icon-download {
    width: 514px;
    padding: 32px;
  }
  .icon-download__header {
    margin-bottom: 16px;
  }
  .icon-download__heading {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 22px;
  }
  .icon-download__row {
    margin-bottom: 22px;
  }
  .icon-download__row .icon-download__icon-img {
    max-width: 100%;
  }
  .icon-download__icon-img {
    height: auto;
  }
  .icon-download__icon-img--shadow {
    margin-top: -6px;
    margin-bottom: -8px;
  }
  .icon-download__link {
    margin-right: 20px;
  }
}

.plugin-options {
  margin-bottom: 54px;
}
@media (min-width: 1224px) {
  .plugin-options .list-item {
    margin-bottom: 48px;
  }
}

.install-tutorial {
  margin-bottom: 48px;
}
.install-tutorial__image {
  margin-bottom: 40px;
}
@media (min-width: 1224px) {
  .install-tutorial__image.image-placeholder {
    width: 704px;
    height: 463px;
    margin-left: auto;
    margin-right: auto;
  }
}

.features-plugins {
  padding-top: 32px;
}
.features-plugins__image {
  margin-bottom: 24px;
}
@media (min-width: 1224px) {
  .features-plugins__image .image-placeholder {
    width: 704px;
    height: 463px;
  }
}

.note {
  font-weight: bold;
  font-style: italic;
  margin-bottom: 48px;
}
.note__title {
  font-style: normal;
}

.dropdown-link {
  position: relative;
  margin-right: 0;
}
.dropdown-link:hover .dropdown-link__list {
  display: block;
}
.dropdown-link__list {
  display: none;
  width: 100%;
  position: absolute;
  top: 56px;
  color: #1C83FF;
  background-color: #fff;
  z-index: 100;
}
.dropdown-link__link {
  display: block;
  padding: 16px;
  border-radius: 10px;
}
.dropdown-link__link:hover {
  background-color: rgb(207, 207, 207);
}

.checks {
  padding: 64px 0;
}
.checks__form-image {
  display: none;
}
.checks .info-block {
  padding: 48px 0 0;
}
.checks__oferta-link {
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
}
@media (min-width: 1224px) {
  .checks {
    padding: 96px 0 15px;
  }
  .checks__form-image {
    display: inline-block;
    width: 400px;
  }
  .checks .form {
    border: 7px solid #EAF1F8;
    border-radius: 43px;
    padding: 48px;
  }
  .checks .modal__heading {
    text-align: center;
  }
  .checks .info-block {
    justify-content: center;
    padding: 24px 0 0;
  }
  .checks .info-block-content {
    max-width: 577px;
  }
  .checks .info-block-content .section-heading {
    text-align: left;
  }
  .checks .list-item .section-text {
    margin-bottom: 0;
    margin-top: 24px;
  }
  .checks__oferta-link {
    margin-top: 80px;
    margin-left: 0;
  }
}

.documents {
  padding-top: 32px;
  padding-bottom: 24px;
}
.documents__list-item {
  margin-bottom: 24px;
}
.documents__list-item:hover {
  text-decoration: underline;
}
@media (min-width: 1224px) {
  .documents {
    padding-top: 123px;
    padding-bottom: 88px;
  }
  .documents__heading {
    margin-bottom: 64px;
  }
}

@media (min-width: 1224px) {
  .section-heading--connect {
    margin: 0 auto 80px;
    width: 715px;
  }
}
.invoice-demo .container {
  max-width: 375px;
  width: 100%;
  margin: 12px auto;
  min-height: calc(100vh - 24px);
  height: 100%;
  padding: 40px 24px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #F0F2F7;
}
.invoice-demo .container a:hover {
  text-decoration: none;
}
.invoice-demo .container::before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: blur(1px) opacity(0.8);
}
@media (max-width: 380px) {
  .invoice-demo .container {
    padding: 30px 16px;
    margin: 0 auto;
    min-height: 100vh;
  }
}
.invoice-demo .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: none;
}
.invoice-demo .overlay.active {
  display: block;
}
.invoice-demo .loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.invoice-demo .loader.active {
  display: block;
}
.invoice-demo .loader__item {
  border: 4px solid #EEEEEE;
  border-top: 4px solid #1C83FF;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: spin 2s linear infinite;
  margin: auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.invoice-demo .loader__text {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 10px;
}
.invoice-demo .button {
  background: #1C83FF;
  color: #fff;
  border-radius: 8px;
  height: 56px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  display: block;
  border: none;
}
.invoice-demo .button--mb24 {
  margin-bottom: 24px;
}
.invoice-demo .button:not(:last-child) {
  margin-bottom: 16px;
}
.invoice-demo .button:disabled {
  background: #E2E2E2;
  color: #757575;
}
@media (max-width: 380px) {
  .invoice-demo .button {
    max-width: 256px;
    font-size: 14px;
  }
  .invoice-demo .button--mb24 {
    margin-bottom: 16px;
  }
  .invoice-demo .button:not(:last-child) {
    margin-bottom: 12px;
  }
}
.invoice-demo .button:disabled {
  cursor: initial;
  color: #959699;
  background-color: #E2E2E2;
}
.invoice-demo .demo-modal {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 34px 24px 24px 24px;
  transition: ease-in-out 0.5s;
}
.invoice-demo .demo-modal.active {
  bottom: 0;
  z-index: 3;
}
.invoice-demo .demo-modal:before {
  content: "";
  display: block;
  background: #000000;
  opacity: 0.1;
  border-radius: 24px;
  width: 34px;
  height: 6px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.invoice-demo .demo-modal__title {
  display: block;
  margin-bottom: 24px;
  color: #2B2D33;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 380px) {
  .invoice-demo .demo-modal {
    padding: 24px 16px 16px 16px;
  }
  .invoice-demo .demo-modal__container {
    padding: 0 16px;
  }
  .invoice-demo .demo-modal__title {
    padding: 0 16px;
    margin-bottom: 16px;
  }
}
.invoice-demo .alert-modal {
  max-width: 326px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px 24px 40px 24px;
  line-height: 24px;
}
.invoice-demo .alert-modal__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #000000;
  margin-bottom: 24px;
}
.invoice-demo .alert-modal__text {
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  text-align: center;
  margin-bottom: 24px;
}
.invoice-demo .alert-modal__icon {
  display: block;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  margin: 0 auto;
}
.invoice-demo .alert-modal__link {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #1C83FF;
  padding: 16px;
  width: 100%;
  display: block;
}
.invoice-demo .nav {
  display: flex;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.invoice-demo .nav__link {
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  color: #000;
}
.invoice-demo .nav__icon {
  display: block;
  width: 8px;
  height: 14px;
  margin-right: 12px;
}
.invoice-demo .language {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 160px;
  width: 100%;
  position: relative;
  padding: 0 16px;
}
.invoice-demo .language__list {
  position: absolute;
  right: -50px;
  transition: ease-in-out 0.5s;
}
.invoice-demo .language__list.active {
  right: 30px;
}
.invoice-demo .language__item {
  display: flex;
}
.invoice-demo .language__sublist {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: ease-in-out 0.5s;
}
.invoice-demo .language__sublist.active {
  visibility: visible;
  opacity: 1;
}
.invoice-demo .language__icon {
  display: block;
  width: 8px;
  height: 14px;
  transform: rotate(-90deg);
  transition: ease-in-out 0.5s;
}
.invoice-demo .language__icon.active {
  transform: rotate(0);
}
.invoice-demo .language__link {
  color: #000;
  padding: 0 6px;
}
.invoice-demo .content-info {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
}
.invoice-demo .content-info__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
}
@media (max-width: 380px) {
  .invoice-demo .content-info__button {
    padding: 16px;
  }
}
.invoice-demo .content-info__arrow {
  display: block;
  width: 10px;
  height: 16px;
  background-image: url("../images/invoice-demo/svg/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}
.invoice-demo .content-info__arrow.active {
  transform: rotate(90deg);
}
.invoice-demo .content-info__button-text {
  display: flex;
  flex-direction: column;
}
.invoice-demo .content-info__text {
  color: #757575;
  font-size: 16px;
  line-height: 18px;
  display: table-cell;
}
.invoice-demo .content-info__text--label {
  width: 158px;
}
.invoice-demo .content-info__text--value {
  color: #000;
}
.invoice-demo .content-info__text--bold {
  font-weight: 600;
}
@media (max-width: 380px) {
  .invoice-demo .content-info__text {
    font-size: 14px;
    line-height: 16px;
  }
  .invoice-demo .content-info__text--label {
    width: 126px;
  }
}
.invoice-demo .content-info__amount {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 18px;
  margin-top: 8px;
}
@media (max-width: 380px) {
  .invoice-demo .content-info__amount {
    font-size: 20px;
  }
}
.invoice-demo .content-info__more-info {
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 0;
}
.invoice-demo .content-info__list {
  border-top: 1px solid #e9e9e9;
  padding-top: 24px;
}
.invoice-demo .content-info__row:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 380px) {
  .invoice-demo .content-info__row:not(:last-child) {
    margin-bottom: 16px;
  }
}
.invoice-demo .content-info--united {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.invoice-demo .main {
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.invoice-demo .main--united {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.invoice-demo .container.success {
  display: none;
}
.invoice-demo header {
  z-index: initial;
}
.invoice-demo .tab {
  margin-bottom: 16px;
}
.invoice-demo .tab__list {
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
}
.invoice-demo .tab__list--flex-start {
  justify-content: flex-start;
}
.invoice-demo .tab__list--flex-start .tab__item {
  width: auto;
  margin: 0;
}
.invoice-demo .tab__item {
  margin: auto;
  padding: 10px 18px;
  color: #000000;
  cursor: pointer;
}
.invoice-demo .tab__item.active {
  background: #2b87ff;
  border-radius: 30px;
  color: #fff;
}
@media (max-width: 380px) {
  .invoice-demo .tab__list {
    font-size: 14px;
    line-height: 16px;
  }
  .invoice-demo .tab__item {
    padding: 8px 16px;
  }
}
.invoice-demo .tab__content {
  display: none;
}
.invoice-demo .tab__content.active {
  display: block;
}
.invoice-demo .card__content {
  position: relative;
  display: flex;
}
.invoice-demo .card__content--card {
  height: 54px;
}
.invoice-demo .card__content--card:not(:last-child) {
  margin-bottom: 16px;
}
.invoice-demo .card__content--info {
  height: 48px;
}
.invoice-demo .card__content--phone {
  height: 57px;
  margin-bottom: 16px;
}
.invoice-demo .card__content--phone-new {
  height: 64px;
  margin-bottom: 16px;
  margin-top: 0;
}
.invoice-demo .card__content--notification {
  height: 64px;
  background: #EDF9F2;
  border-radius: 4px;
  padding: 12px 8px;
}
.invoice-demo .card__notification-text {
  font-size: 14px;
  line-height: 20px;
}
.invoice-demo .card__error {
  font-size: 14px;
  line-height: 20px;
  color: #FB5F5F;
  margin-top: 8px;
  opacity: 0;
  overflow: hidden;
  transition: ease-in-out 0.3s;
  position: absolute;
  bottom: -20px;
}
.invoice-demo .card__error.active {
  opacity: 1;
  overflow: visible;
}
.invoice-demo .card__number-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.invoice-demo .card__number-wrapper--date {
  max-width: 124px;
}
.invoice-demo .card__number-wrapper--cvv {
  max-width: 78px;
  margin-left: auto;
}
.invoice-demo .card__number-wrapper--info {
  justify-content: center;
  border: none;
}
.invoice-demo .card__text {
  position: absolute;
  bottom: 8px;
  left: 0px;
  width: 100%;
  pointer-events: none;
  font-size: 14px;
  line-height: 20px;
  color: #afafaf;
  transition: all 0.2s ease;
}
.invoice-demo .card__item {
  border: none;
  color: #2b2d33;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 8px;
  margin-top: auto;
  border-bottom: 1px solid #D5D5D6;
}
.invoice-demo .card__item.error {
  border-color: #FB5F5F;
}
.invoice-demo .card__item--password {
  font-family: "Password", sans-serif;
  font-size: 24px;
  padding-right: 28px;
}
.invoice-demo .card__item--password.visible {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.invoice-demo .card__password-switcher {
  position: absolute;
  right: 4px;
  top: 24px;
}
.invoice-demo .card__item:invalid {
  outline: 0;
}
.invoice-demo .card__item:focus ~ .card__text, .invoice-demo .card__item:valid ~ .card__text, .invoice-demo .card__item.filled ~ .card__text {
  bottom: 36px;
}
.invoice-demo .card__checkbox-input {
  display: none;
}
.invoice-demo .card__checkbox-label {
  font-size: 16px;
  line-height: 24px;
  color: #2B2D33;
  display: flex;
  align-items: center;
  padding-left: 64px;
  cursor: pointer;
}
.invoice-demo .card__checkbox-input:checked + .card__checkbox-label::before {
  background-color: #1C83FF;
}
.invoice-demo .card__checkbox-label::before {
  background: #ccc;
  background-color: rgb(204, 204, 204);
  border: 2px solid #e5e5ea;
  border-radius: 36px;
}
.invoice-demo .card__checkbox-label::after, .invoice-demo .card__checkbox-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 34px;
  height: 14px;
  transition: all 0.3s ease-in-out;
}
.invoice-demo .card__checkbox-input:checked + .card__checkbox-label::after {
  left: 15px;
}
.invoice-demo .card__checkbox-label::after {
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.invoice-demo .card__info-text {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin: auto 0;
}
.invoice-demo .card__info-link {
  cursor: pointer;
  color: #1C83FF;
}
.invoice-demo .card__info-link:hover {
  text-decoration: underline;
}
@media (max-width: 380px) {
  .invoice-demo .card__checkbox-label {
    font-size: 14px;
    line-height: 16px;
  }
}
.invoice-demo .invoice {
  padding: 24px;
}
@media (max-width: 380px) {
  .invoice-demo .invoice {
    padding: 16px;
  }
}
.invoice-demo .select__list {
  margin-bottom: 24px;
}
.invoice-demo .select__list-item:not(:last-child) {
  margin-bottom: 8px;
}
.invoice-demo .select__item {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.invoice-demo .select__text {
  display: flex;
  flex-direction: column;
  margin-left: 16px;
  margin-right: auto;
}
.invoice-demo .select__icon {
  width: 56px;
  height: 40px;
  display: block;
}
.invoice-demo .select__icon--arrow {
  width: 10px;
  height: 16px;
  transform: rotate(-90deg);
}
.invoice-demo .select__icon--arrow.active {
  transform: rotate(90deg);
}
.invoice-demo .select__text-item {
  line-height: 24px;
  color: #2B2D33;
}
.invoice-demo .select__title {
  color: #2B2D33;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 4px;
}
.invoice-demo .select__type {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #808185;
  text-transform: lowercase;
}
.invoice-demo .select-card__text {
  font-size: 14px;
  line-height: 20px;
  color: #AFAFAF;
}
.invoice-demo .select-card__text--title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}
.invoice-demo .select-card__text--subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #2B2D33;
}
.invoice-demo .select-card__text--desc {
  font-size: 14px;
  line-height: 20px;
  color: #808185;
}
@media (max-width: 380px) {
  .invoice-demo .select-card__text--title {
    font-weight: 600;
    font-size: 16px;
    color: #2B2D33;
  }
  .invoice-demo .select-card__text--subtitle {
    font-size: 14px;
  }
}
.invoice-demo .wallet-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 24px;
}
.invoice-demo .wallet-info__text {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #757575;
}
.invoice-demo .wallet-info__text--label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #AFAFAF;
}
.invoice-demo .sms-content {
  margin-bottom: 24px;
  text-align: center;
}
.invoice-demo .sms-content__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  display: block;
}
.invoice-demo .sms-content__text-wrapper {
  padding: 8px 40px;
  margin-bottom: 24px;
}
.invoice-demo .sms-content__text {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #959699;
}
.invoice-demo .sms-content__wrapper {
  border-bottom: 1px solid #d5d5d6;
  display: flex;
  justify-content: space-between;
}
.invoice-demo .sms-content__input {
  padding-bottom: 8px;
  font-size: 32px;
  line-height: 40px;
  color: #757575;
  width: 42px;
  height: 58px;
}
.invoice-demo .sms-content__input::-moz-selection {
  background: transparent;
}
.invoice-demo .sms-content__input::selection {
  background: transparent;
}
@media (max-width: 380px) {
  .invoice-demo .sms-content {
    margin-bottom: 16px;
  }
  .invoice-demo .sms-content__title {
    font-size: 20px;
    line-height: 28px;
  }
  .invoice-demo .sms-content__text-wrapper {
    padding: 8px 30px;
    margin-bottom: 16px;
  }
}
.invoice-demo .social-network__list {
  padding: 0 24px 12px 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.invoice-demo .social-network__link {
  padding: 24px;
}
.invoice-demo .social-network__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.invoice-demo .social-network__icon {
  width: 24px;
  height: 24px;
  display: block;
}
.invoice-demo .service-title {
  margin-bottom: 24px;
}
.invoice-demo .service-title__main {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.invoice-demo .service-title__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.invoice-demo .card-info {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin-bottom: 4px;
}
.invoice-demo .confirm-main .content-info {
  margin-bottom: 24px;
}
.invoice-demo .confirm-main .button {
  max-width: 100%;
}
.invoice-demo .footer {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  margin-top: auto;
}
.invoice-demo .footer__image {
  display: block;
  max-height: 22px;
  width: 100%;
  height: 100%;
}
.invoice-demo .alert {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  background-color: #45BF76;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-bottom: 24px;
}
@media (max-width: 380px) {
  .invoice-demo .alert {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 16px;
  }
}
.invoice-demo .alert--error {
  background-color: #FB5F5F;
}
.invoice-demo .alert__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.invoice-demo .alert__icon {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 24px;
}
.invoice-demo .alert__icon--main {
  margin-bottom: 12px;
  width: 40px;
  height: 40px;
}
.invoice-demo .alert__text {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
}
.invoice-demo .alert__text--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.invoice-demo .alert__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.invoice-demo .alert__footer {
  display: flex;
  justify-content: space-around;
  margin-top: 24px;
}