@font-face {
  font-family: "Unbounded";
  font-weight: 300;
  src: url("/local/templates/custom/fonts/unbounded/Unbounded-Light.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  font-weight: 400;
  src: url("/local/templates/custom/fonts/unbounded/Unbounded-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 300;
  src: url("/local/templates/custom/fonts/segoeui/SegoeUI-Light.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 400;
  src: url("/local/templates/custom/fonts/segoeui/SegoeUI.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 600;
  src: url("/local/templates/custom/fonts/segoeui/SegoeUI-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Segoe UI";
  font-weight: 700;
  src: url("/local/templates/custom/fonts/segoeui/SegoeUI-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  font-weight: 400;
  src: url("/local/templates/custom/fonts/ubuntu/Ubuntu-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  font-weight: 700;
  src: url("/local/templates/custom/fonts/ubuntu/Ubuntu-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bad Script";
  font-weight: 400;
  src: url("/local/templates/custom/fonts/badscript/BadScript-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  position: relative;
  scrollbar-gutter: stable;
}

dialog {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

:focus-visible {
  outline: none;
  text-decoration: underline;
}

p {
  margin: 0;
}

section {
  scroll-margin-top: 125px;
}
@media (max-width: 1199px) {
  section {
    scroll-margin-top: 70px;
  }
}

img {
  max-width: 100%;
}

li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  cursor: default;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container {
  max-width: 1214px;
  padding: 0 50px;
  margin-right: auto;
  margin-left: auto;
}

.content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.mb-30 {
  margin-bottom: 30px;
}

.rotate {
  transform: rotate(180deg);
}

.content.open {
  grid-template-rows: 1fr;
}

.acc {
  cursor: pointer;
}

.acc svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.text-wrapper {
  min-height: 0;
}

.overflow {
  overflow: auto;
}

.black-btn {
  display: block;
  font-family: Ubuntu;
  overflow: hidden;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 20px 30px;
  background-color: #000000;
  border-radius: 99px;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .black-btn {
    background-color: #FF560B;
    padding: 16px 30px;
    font-size: 16px;
  }
}

.black-btn__text {
  display: inline-block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
  will-change: transform, opacity;
}

.black-btn::after {
  content: attr(data-hover);
  position: absolute;
  inset: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(120%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
  pointer-events: none;
}

.black-btn:hover .black-btn__text,
.black-btn:focus-visible .black-btn__text {
  transform: translateY(-120%);
  opacity: 0;
}

.black-btn:hover {
  background-color: #FF560B;
}

.black-btn:hover::after,
.black-btn:focus-visible::after {
  transform: translateY(0%);
  opacity: 1;
}

.trans-orange-btn {
  font-family: Segoe UI;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: #FF560B;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 30px;
  border-radius: 54px;
  border: 1px solid #FF560B;
  background-color: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (max-width: 576px) {
  .trans-orange-btn {
    font-size: 14px;
  }
}

.trans-orange-btn:hover {
  background-color: #FF560B;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .black-btn__text,
  .black-btn::after {
    transition: none;
  }
}
.h1-title {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 70px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -1.5px;
  vertical-align: middle;
}
.h1-title span {
  color: #FF560B;
}
@media (max-width: 1199px) {
  .h1-title {
    font-size: 60px;
    line-height: 114%;
  }
}
@media (max-width: 991px) {
  .h1-title {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .h1-title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .h1-title {
    font-size: 30px;
  }
}

.h2-title {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px;
  color: #0A0A0A;
  line-height: 135%;
  scroll-margin-top: 125px;
}
.h2-title span {
  color: #FF560B;
}
.h2-title a {
  color: #FF560B;
  text-decoration: underline;
}
.h2-title a:hover {
  color: #23527c;
}
@media (max-width: 1199px) {
  .h2-title {
    font-size: 44px;
    line-height: 114%;
    scroll-margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .h2-title {
    font-size: 38px;
    line-height: 114%;
  }
}
@media (max-width: 768px) {
  .h2-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .h2-title {
    font-size: 25px;
  }
}

.h3-title {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  scroll-margin-top: 125px;
}
@media (max-width: 1200px) {
  .h3-title {
    scroll-margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .h3-title {
    font-size: 20px;
  }
}
.h3-title span {
  color: #FF560B;
}

.text-18-29 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #676767;
  line-height: 29px;
}
@media (max-width: 576px) {
  .text-18-29 {
    font-size: 14px;
    line-height: 150%;
  }
}

.padding-100 {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .padding-100 {
    padding: 60px 0;
  }
}

.padding-60 {
  padding: 60px 0;
}

.padding-45 {
  padding: 45px 0;
}
@media (max-width: 768px) {
  .padding-45 {
    padding: 60px 0;
  }
}

.bb-30 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
@media (max-width: 768px) {
  .bb-30 {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
}

.text-26-114 {
  font-family: Unbounded;
  font-weight: 400;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .text-26-114 {
    font-size: 20px;
  }
}

.gray-bg {
  background-color: #FAFAFA;
}

.white-bg {
  background-color: #fff;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.error .checkbox-error {
  display: block;
}

.checkbox-error {
  width: -moz-max-content !important;
  width: max-content !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-32 {
  margin-bottom: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.services {
  overflow: unset !important;
}

.wrapper {
  overflow: unset !important;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 35px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 12.5px;
  }
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0 auto 0;
}

details, main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}
.navigation {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  left: 20px;
  min-width: 22px;
  z-index: 99;
}
@media (max-width: 1440px) {
  .navigation {
    display: none;
  }
}
.navigation__link {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
}
.navigation__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: #676767;
  white-space: nowrap;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  right: 0;
  padding-left: 11px;
  opacity: 0;
  transition: 0.25s ease;
}
.navigation__link:hover .navigation__text {
  opacity: 1;
}
.navigation__link.active .navigation__text {
  opacity: 1;
}
.navigation__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #DEDEDE;
  display: block;
  opacity: 1;
  border: 4px solid #DEDEDE;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}
.navigation__link:hover::before {
  width: 22px;
  height: 22px;
  border: 4px solid #DEDEDE;
  background-color: transparent;
}
.navigation__link.active::before {
  width: 22px;
  height: 22px;
  border: 4px solid #DEDEDE;
  background-color: transparent;
}

@media (max-width: 991px) {
  .develop {
    padding: 60px 0 100px;
  }
}
@media (max-width: 991px) {
  .develop {
    padding: 60px 0;
  }
}
.develop__title {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .develop__title {
    margin-bottom: 32px;
  }
}
.develop__flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
@media (max-width: 991px) {
  .develop__flex {
    flex-wrap: wrap;
    gap: 32px;
  }
}
.develop__flex_bb {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
@media (max-width: 991px) {
  .develop__flex_bb {
    padding-bottom: 0px;
    margin-bottom: 30px;
    border: unset;
  }
}
.develop__text, .develop__item {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 29px;
  letter-spacing: 0%;
  vertical-align: middle;
  max-width: 529px;
}
.develop__text a, .develop__item a {
  color: #FF560B;
}
.develop__text a:hover, .develop__item a:hover {
  color: #23527c;
}
@media (max-width: 991px) {
  .develop__text, .develop__item {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .develop__text, .develop__item {
    font-size: 14px;
    line-height: 170%;
  }
}
.develop__text_nomw {
  max-width: 730px;
}
.develop__text_mwu {
  max-width: unset;
}
.develop__text_756 {
  max-width: 756px;
  width: 100%;
}
.develop__text_color {
  color: #676767;
}
.develop__text_lh {
  line-height: 100%;
}
.develop__flex-2 {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 15px;
  max-width: 248px;
  width: 100%;
}
@media (max-width: 576px) {
  .develop__flex-2 {
    max-width: 100%;
  }
}
.develop__text-3 {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -0.6px;
  color: #0A0A0A;
  position: relative;
  top: 3px;
}
.develop__block {
  display: flex;
  flex-direction: column;
}
.develop__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 110%;
  color: #F3712F;
}
@media (max-width: 576px) {
  .develop__link {
    font-size: 14px;
  }
}
.develop__link:hover {
  color: #23527c;
}
.develop__text-2 {
  font-family: Bad Script;
  font-weight: 400;
  font-style: Italic;
  font-size: 32.77px;
  color: #FFAA33;
  line-height: 120%;
  letter-spacing: 0%;
  transform: rotate(-17.38deg) skewX(-11deg);
}
@media (max-width: 991px) {
  .develop__text-2 {
    font-size: 23px;
    display: none;
  }
}
@media (max-width: 991px) {
  .develop__btn {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .develop__btn-1920 {
    display: none;
  }
}
.develop__btn-576 {
  display: none;
}
@media (max-width: 991px) {
  .develop__btn-576 {
    display: block;
  }
}
.develop__btn_ml {
  margin-left: auto;
}

.pluses__title {
  margin-bottom: 42px;
}
@media (max-width: 576px) {
  .pluses__title {
    font-size: 18px;
    line-height: 155%;
    margin-bottom: 25px;
  }
}
.pluses__block {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .pluses__block {
    display: grid;
    grid-template-columns: 42px 1fr;
  }
}
@media (max-width: 576px) {
  .pluses__block {
    gap: 20px;
    align-items: center;
  }
}
.pluses__img {
  width: 160px;
  height: 160px;
}
@media (max-width: 768px) {
  .pluses__img {
    width: 42px;
    height: 42px;
  }
}
.pluses__texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .pluses__texts {
    display: contents;
  }
}
.pluses__texts a {
  color: #FF560B;
}
.pluses__texts a:hover {
  color: #23527c;
}
.pluses__block-768 {
  display: contents;
}
@media (max-width: 768px) {
  .pluses__block-768 {
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .pluses__subtitle {
    font-size: 16px;
    line-height: 135%;
  }
}
@media (max-width: 768px) {
  .pluses__text {
    grid-column: span 2;
  }
}
.pluses__swiper {
  max-width: 100%;
}
.pluses .swiper-wrapper {
  margin-bottom: 20px;
}
.pluses__pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 190px;
}
@media (max-width: 768px) {
  .pluses__pagination {
    margin-left: unset;
  }
}
.pluses .swiper-pagination-bullet {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #FF560B;
  display: block;
  transition: width 0.25s ease;
  opacity: 1;
}
.pluses .swiper-pagination-bullet-active {
  width: 85px;
  height: 17px;
  background-color: #FF560B;
  border-radius: 99px;
}

.calc__title {
  margin-bottom: 30px;
}
.calc__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .calc__flex {
    align-items: flex-start;
    flex-direction: column;
  }
}
.calc__arrow {
  margin-left: auto;
}
@media (max-width: 991px) {
  .calc__arrow {
    display: none;
  }
}
.calc__btn {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .calc__btn {
    width: 100%;
  }
}
.calc-content .heading {
  font-family: "Unbounded";
}
.calc-content .calculator-text-content__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #676767;
  line-height: 29px;
}

.confidence__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .confidence__flex {
    flex-direction: column;
    gap: 32px;
  }
}
.confidence__block {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .confidence__block {
    display: contents;
  }
}
.confidence__title {
  margin-bottom: 47px;
}
@media (max-width: 991px) {
  .confidence__title {
    order: 1;
    margin-bottom: unset;
  }
  .confidence__title br {
    display: none;
  }
}
.confidence__block-2 {
  max-width: 635px;
}
@media (max-width: 991px) {
  .confidence__block-2 {
    order: 2;
    max-width: unset;
  }
}
@media (max-width: 991px) {
  .confidence .tech__block-2 {
    order: 3;
  }
}
.confidence .faq__acc {
  padding-top: 30px;
  padding-bottom: 30px;
}
.confidence .content {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}

.blog__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.blog__link {
  color: #FF560B;
}
@media (max-width: 991px) {
  .blog__link {
    font-size: 16px;
  }
}
.blog__link:hover {
  color: #23527c;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}
.blog__card {
  position: relative;
}
.blog__link-2 {
  position: absolute;
  inset: 0;
}
.blog__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  transition: color 0.25s ease;
}
@media (max-width: 576px) {
  .blog__subtitle {
    font-size: 16px;
    line-height: 160%;
  }
}
.blog__card:hover .blog__subtitle {
  color: #23527c;
}
.blog__date {
  display: block;
  color: #FF560B;
}
@media (max-width: 576px) {
  .blog__date {
    font-size: 12px;
  }
}

.chose__tilte {
  margin-bottom: 42px;
}
.chose tr {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.chose table {
  border-collapse: collapse;
  margin-top: 30px;
}
.chose table th {
  text-align: left;
  padding-bottom: 30px;
}
.chose table th:last-child {
  padding-bottom: 30px;
}
.chose table th:first-child {
  max-width: 23%;
  padding-bottom: 30px;
}
.chose__flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 991px) {
  .chose__flex {
    flex-direction: column;
  }
}
.chose__text a {
  color: #FF560B;
}
.chose__text a:hover {
  color: #23527c;
}

.side__flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .side__flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
.side__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .side__strong {
    font-size: 20px;
  }
}
.side__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #676767;
}
.side__text a {
  color: #FF560B;
}
.side__text a:hover {
  color: #23527c;
}
@media (max-width: 768px) {
  .side__text {
    font-size: 16px;
  }
}

.clients__title {
  padding-bottom: 42px;
  margin-bottom: 42px;
}
@media (max-width: 576px) {
  .clients__title {
    margin-bottom: 32px;
    padding-bottom: 0;
    border: unset;
  }
}
.clients .clients__text {
  color: #000000;
}
@media (max-width: 991px) {
  .clients .clients__text br {
    display: none;
  }
}
.clients .tabs__btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 12px 24px;
  max-width: calc(100% - 380px);
  margin-left: auto;
}
@media (max-width: 991px) {
  .clients .tabs__btns {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .clients .tabs__btns {
    display: flex;
    justify-content: center;
  }
}
.clients .tabs__btns_nomw {
  max-width: 100%;
}
.clients .tab__btn {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #0A0A0A;
  line-height: 26px;
  letter-spacing: 0%;
  text-decoration: underline !important;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.clients .tab__btn_active {
  color: #FF561B;
}
.clients .tab__btn:hover {
  color: #FF561B;
}
.clients .tab__btn:last-of-type {
  margin-right: auto;
}
@media (max-width: 576px) {
  .clients .tab__btn:last-of-type {
    margin-right: unset;
  }
}
.clients .tab__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #0A0A0A;
  line-height: 26px;
  letter-spacing: 0%;
}
.clients .tab__link:hover {
  color: #23527c;
}
.clients .tab__flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.clients .tab__title {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .clients .tab__title {
    font-size: 18px;
    line-height: 135%;
  }
}
.clients .tab__img-1 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  transform: translateY(-50px);
}
@media (max-width: 991px) {
  .clients .tab__img-1 {
    transform: unset;
    margin: 0 auto;
    display: block;
  }
}
.clients__block {
  max-width: 350px;
  width: 100%;
}
.clients__block .tech__block-2 {
  transform: translateY(-20px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .clients__block .tech__block-2 {
    transform: unset;
    flex-shrink: 1;
  }
}
@media (max-width: 991px) {
  .clients__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: unset;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .clients__block {
    max-width: 350px;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .clients__block .tab__img-1 {
    max-width: 310px;
    height: 310px;
    flex-shrink: 0;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .clients__block .tab__img-1 {
    max-width: 350px;
    height: 350px;
  }
}
.clients .tab__img_notransform {
  transform: unset;
}
.clients .tab__content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 991px) {
  .clients .tab__content {
    flex-direction: column;
    gap: 24px;
  }
}
.clients [class^=tab-] {
  display: none;
}
.clients [class^=tab-].is-active {
  display: block;
  animation: tabFadeIn 240ms ease forwards;
}
@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients [class^=tab-].is-active {
    animation: none;
  }
}
.clients .tab__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #676767;
}
@media (max-width: 576px) {
  .clients .tab__text {
    font-size: 14px;
    line-height: 160%;
  }
}
.clients .tab__text-2 {
  display: block;
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #676767;
  line-height: 26px;
}
.clients .tab__text-2 strong {
  font-weight: 700;
}
@media (max-width: 576px) {
  .clients .tab__text-2 {
    font-size: 14px;
    line-height: 160%;
  }
}
.clients .tab__text-2 a {
  color: #FF561B;
}
.clients .tab__text-2 a:hover {
  color: #23527c;
}
.clients .tab__quote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.clients .tab__img {
  width: 42px;
  height: 42px;
}
.clients .tab__text-3 {
  font-family: Segoe UI;
  font-weight: 300;
  font-style: Italic;
  font-size: 16px;
  color: #676767;
  line-height: 26px;
}
@media (max-width: 576px) {
  .clients .tab__text-3 {
    font-size: 14px;
    line-height: 26px;
  }
}
.clients .tab__link-2 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 26px;
  color: #FF711C;
}
@media (max-width: 576px) {
  .clients .tab__link-2 {
    font-size: 14px;
    line-height: 26px;
  }
}
.clients .tab__link-2:hover {
  color: #23527c;
}

.whatWeDo {
  overflow: hidden;
}
.whatWeDo__title {
  margin-bottom: 42px;
}
.whatWeDo .swiper-slide {
  max-width: 652px;
  overflow: hidden;
}
.whatWeDo .swiper {
  overflow: unset;
}
.whatWeDo__line {
  margin-bottom: 30px;
}
.whatWeDo__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 90%;
  width: 100%;
}
.whatWeDo__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  line-height: 135%;
  letter-spacing: -0.6px;
  color: #0A0A0A;
}
.whatWeDo__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #676767;
}
.whatWeDo__text a {
  color: #FF560B;
}
.whatWeDo__text a:hover {
  color: #23527c;
}
@media (max-width: 576px) {
  .whatWeDo__text {
    font-size: 14px;
    line-height: 150%;
  }
}
.whatWeDo .whatWeDo__text-3 {
  margin-bottom: 42px;
  color: #000000;
}
@media (max-width: 991px) {
  .whatWeDo .whatWeDo__text-3 {
    margin-bottom: 20px;
  }
}
.whatWeDo .whatWeDo__text-3 a {
  display: contents;
  color: #FF560B;
}
.whatWeDo .whatWeDo__text-3 a:hover {
  color: #23527c;
}
.whatWeDo ul a {
  display: contents;
  color: #FF560B;
}
.whatWeDo ul a:hover {
  color: #23527c;
}
.whatWeDo__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.whatWeDo__item::before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  transform: translateY(12px);
  background-color: #676767;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .whatWeDo__item::before {
    transform: translateY(9px);
  }
}
.whatWeDo__text-2 {
  max-width: 602px;
  margin-bottom: 42px;
}
.whatWeDo__text-2_nomw {
  max-width: unset;
}
.whatWeDo__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #FF560B;
}
.whatWeDo__link:hover {
  color: #23527c;
}

.steps {
  overflow: hidden;
}
.steps__title {
  margin-bottom: 42px;
}
.steps .swiper {
  overflow: unset;
  height: -moz-min-content;
  height: min-content;
}
.steps .swiper-slide {
  max-width: 476px;
  overflow: hidden;
}
.steps__card {
  max-width: 365px;
  width: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .steps__card {
    width: 90%;
  }
}
.steps__swiper_small .swiper-slide {
  max-width: 380px;
}
.steps__swiper_small .steps__card {
  max-width: calc(100% - 30px);
}
.steps__number {
  font-family: Unbounded;
  font-weight: 300;
  font-size: 36px;
  line-height: 100%;
  color: #0A0A0A;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 10, 10, 0.1019607843);
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: #fff;
}
.swiper-slide:not(:last-child) .steps__card::after {
  content: "";
  height: 1px;
  width: 402px;
  background-color: rgba(10, 10, 10, 0.1019607843);
  display: block;
  position: absolute;
  top: 37px;
  left: 74px;
}
.steps__subtitle {
  margin-bottom: 15px;
}
.steps__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 15px;
  color: #676767;
}
.steps__text a {
  color: #FF560B;
}
.steps__text a:hover {
  color: #23527c;
}
@media (max-width: 576px) {
  .steps__text {
    font-size: 14px;
    line-height: 150%;
  }
}
.steps__text-2 {
  margin-bottom: 42px;
}
.steps__text-2 a {
  color: #FF560B;
}
.steps__text-2 a:hover {
  color: #23527c;
}
.steps__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #FF560B;
}
.steps__link:hover {
  color: #23527c;
}

.education__title {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .education__title {
    margin-bottom: 30px;
  }
}
.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .education__grid {
    grid-template-columns: 1fr;
  }
}
.education__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.education__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.6px;
  color: #0A0A0A;
}
@media (max-width: 991px) {
  .education__subtitle br {
    display: none;
  }
}

.tech {
  padding-bottom: 90px;
}
.tech__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .tech__flex {
    flex-wrap: wrap;
  }
}
.tech__text {
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .tech__text {
    font-size: 18px;
  }
}
.tech__block {
  width: 100%;
}
.tech__list {
  display: flex;
  align-items: flex-start;
  gap: 3px;
}
.tech__item {
  max-width: 55px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.tech__container {
  max-width: 55px;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech__descr {
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 12.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #666666;
}
.tech__block_mw {
  max-width: 350px;
}
.tech__block_mw-2 {
  max-width: 200px;
}
.tech__block-2 {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 16px 16px 16px 0;
  max-width: 381px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}
.tech__block-2::after {
  content: "";
  background-image: url(/local/templates/custom/images/buisnessapp-2/svg/corner.svg);
  background-repeat: no-repeat;
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  bottom: -33px;
  left: 0;
}
.tech__block-2_gray-bg {
  background-color: #FAFAFA;
}
.tech__block-2_gray-bg::after {
  background-image: url(/local/templates/custom/images/buisnessapp-2/svg/corner-gray.svg);
}
.tech__text-2 {
  display: block;
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  margin-bottom: 17px;
}
.tech__text-2 span {
  color: #FF560B;
}
.tech__form {
  position: relative;
}
.tech__input {
  height: 64px;
  padding-left: 20px;
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
  width: 100%;
  text-decoration: unset;
}
.tech__input::-moz-placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 110%;
  vertical-align: middle;
  color: #737373 !important;
  opacity: 1;
}
.tech__input::placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 110%;
  vertical-align: middle;
  color: #737373 !important;
  opacity: 1;
}
@media (max-width: 576px) {
  .tech__input::-moz-placeholder {
    font-size: 16px;
  }
  .tech__input::placeholder {
    font-size: 16px;
  }
}
.tech__btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: #000000;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 16px;
}

.begin__title {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .begin__title {
    margin-bottom: 32px;
  }
}
.begin .h2-title {
  font-family: Unbounded !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px !important;
  color: #0A0A0A;
  line-height: 135% !important;
  scroll-margin-top: 125px;
}
.begin .h2-title span {
  color: #FF560B;
}
.begin .h2-title a {
  color: #FF560B;
  text-decoration: underline;
}
.begin .h2-title a:hover {
  color: #23527c;
}
@media (max-width: 1199px) {
  .begin .h2-title {
    font-size: 44px !important;
    line-height: 114% !important;
    scroll-margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .begin .h2-title {
    font-size: 38px !important;
    line-height: 114% !important;
  }
}
@media (max-width: 768px) {
  .begin .h2-title {
    font-size: 32px !important;
  }
}
@media (max-width: 576px) {
  .begin .h2-title {
    font-size: 25px !important;
  }
}
.begin__text {
  display: block;
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #0A0A0A;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .begin__text {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 150%;
  }
}
.begin__flex {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .begin__flex {
    flex-direction: column;
  }
}
.begin__input {
  height: 50px;
  border: unset;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
  padding-left: 20px;
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  width: 100%;
  text-decoration: unset;
}
.begin__input::-moz-placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #737373 !important;
}
.begin__input::placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #737373 !important;
}
.begin__flex-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .begin__flex-2 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.begin__text-2 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #0A0A0A;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: inline-block;
}
.begin__text-2 a {
  color: #FF560B;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .begin__text-2 {
    font-size: 14px;
  }
}
.begin__textarea {
  height: 50px;
  min-height: 50px;
  max-width: 100%;
  min-width: 100%;
  border: unset;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
  padding-left: 20px;
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  width: 100%;
  text-decoration: unset;
  padding-top: 10px;
  margin-bottom: 30px;
  resize: auto;
}
@media (max-width: 576px) {
  .begin__textarea {
    margin-bottom: 32px;
  }
}
.begin__textarea::-moz-placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #737373 !important;
}
.begin__textarea::placeholder {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 29px;
  color: #737373 !important;
}
.begin__text-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-46%);
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 4px;
  background: #fff;
  transition: background 120ms, border-color 120ms;
}
.begin__text-2.is-active::before, .begin__text-2 .custom-checkbox:checked + .custom-label::before {
  border-color: #FF711C;
  background: #FF711C;
}
.begin .custom-label a:hover {
  color: #23527c;
}
.begin__text-2.is-active::after, .begin__text-2 .custom-checkbox:checked + .custom-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-46%) rotate(-45deg);
}
.begin__btn {
  padding: 20px 63px;
}
@media (max-width: 576px) {
  .begin__btn {
    max-width: unset;
    font-size: 18px;
  }
}
.begin__btn_padding {
  padding: 20px 30px;
}
@media (max-width: 576px) {
  .begin__btn_padding {
    font-size: 14px;
  }
}

.application {
  overflow: hidden;
}
.application .swiper {
  overflow: unset;
}
.application .application__title {
  margin-bottom: 42px;
}
.application .application__text {
  margin-bottom: 42px;
}
.application .swiper-slide {
  max-width: 652px;
}

.dev-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .dev-price__grid {
    grid-template-columns: 1fr;
  }
}
.dev-price__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-start;
  margin-top: auto;
}
.dev-price__tag {
  display: block;
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  color: #676767;
  padding: 4px 8px;
  border: 1px solid #676767;
  border-radius: 50px;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.dev-price__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dev-price__link {
  color: #FF560B;
}
.dev-price__link:hover {
  color: #23527c;
}
.dev-price__flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .dev-price__flex {
    flex-direction: column;
  }
}
.dev-price__block {
  max-width: 718px;
}
.dev-price__flex-2 {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .dev-price__flex-2 {
    flex-direction: column;
  }
}
.dev-price__subtitle-2 {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .dev-price__btn {
    max-width: 100%;
  }
}
.dev-price__btn_long {
  max-width: unset;
  height: -moz-max-content;
  height: max-content;
}
.dev-price .tech__block-2 {
  flex-shrink: 0;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .dev-price .tech__block-2 {
    margin-bottom: 30px;
  }
}
.dev-price__grid-2 {
  display: grid;
  grid-template-columns: auto 381px;
  gap: 30px 14px;
}
@media (max-width: 991px) {
  .dev-price__grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.dev-price__grid-2_gap {
  gap: 60px;
}
.dev-price__text-2 {
  margin: auto 0;
}

.price__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .price__flex {
    flex-wrap: wrap;
  }
}
.price__block {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 15px;
  max-width: 542px;
  width: 100%;
}
@media (max-width: 576px) {
  .price__strong {
    font-size: 18px;
  }
}
.price__text {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #0A0A0A;
  line-height: 135%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.price__text-2 {
  font-family: Segoe UI;
  font-weight: font weight/400;
  font-style: Regular;
  font-size: font size/18;
  color: #676767;
  line-height: line height/29_25;
  letter-spacing: 0%;
  vertical-align: middle;
}
.price__link {
  font-family: Segoe UI;
  font-weight: font weight/400;
  font-style: Regular;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #FF560B;
}
.price__link:hover {
  color: #23527c;
}

.faq {
  padding: 100px 0;
}
@media (max-width: 576px) {
  .faq {
    padding: 60px 0;
  }
}
.faq__title {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .faq__title {
    margin-bottom: 32px;
  }
}
.faq__flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .faq__flex {
    flex-direction: column;
  }
}
.faq__flex_mb30 {
  margin-bottom: 30px;
}
.faq__texts {
  display: flex;
  flex-direction: column;
  max-width: 703px;
}
@media (max-width: 991px) {
  .faq__texts {
    max-width: unset;
  }
}
.faq__acc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
  padding-top: 30px;
}
@media (max-width: 576px) {
  .faq__acc {
    padding-top: 20px;
    gap: 20px;
  }
}
.faq__text {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.faq .content {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.faq__text-2 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #676767;
  line-height: 130%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding-bottom: 20px;
}
.faq__text-2 a {
  color: #FF560B;
}
.faq__text-2 a:hover {
  color: #23527c;
}
.faq__text-2 strong {
  font-weight: 600;
}
@media (max-width: 576px) {
  .faq__text-2 {
    font-size: 14px;
  }
}
.faq__text-3 a {
  color: #FF560B;
}
.faq__text-3 a:hover {
  color: #23527c;
}
@media (max-width: 576px) {
  .faq__text-3 {
    font-size: 14px;
  }
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}
.faq__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.faq__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__link {
  color: #FF711C;
}
.faq__link:hover {
  color: #23527c;
}
@media (max-width: 991px) {
  .faq__img {
    display: none;
  }
}
.faq__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Segoe UI;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: #FF560B;
  padding: 10px 30px;
  border-radius: 54px;
  line-height: 24.29px;
  letter-spacing: 0%;
  text-align: center;
  border: 1px solid #FF560B;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.faq__btn svg {
  transition: fill 0.25s ease;
}
.faq__btn:hover {
  background-color: #FF560B;
  color: #fff;
}
.faq__btn:hover svg path {
  fill: #fff;
}
.faq__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq__list li::before {
  content: "";
  flex-shrink: 0;
  transform: translateY(12px);
  width: 4px;
  height: 4px;
  background-color: #676767;
  display: block;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .faq__list li::before {
    transform: translateY(9px);
  }
}

.others__title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .others__title {
    margin-bottom: 32px;
  }
}
.others__flex {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.others__link {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  color: #fff;
  line-height: 100%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  background-color: #000;
  padding: 13px 20px 10px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
}
@media (max-width: 576px) {
  .others__link {
    font-size: 13px;
    background-color: #FF711C;
  }
}
.others__link:hover {
  color: #fff;
  background-color: #FF711C;
}

.sources {
  padding: 100px 0;
}
.sources__title-2 {
  margin-bottom: 60px;
}
.sources__text {
  margin-bottom: 60px;
}
.sources__flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 991px) {
  .sources__flex {
    flex-wrap: wrap;
  }
}
.sources__block {
  max-width: 699px;
  width: 100%;
  padding-bottom: 20px;
}
.sources__block_bb {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.sources__block_nomw {
  max-width: unset;
}
.sources__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sources__item {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: #676767;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.sources__item a {
  color: #FF560B;
}
.sources__item a:hover {
  color: #23527c;
}
.sources__link_underline {
  text-decoration: underline;
}

.benefits {
  padding: 45px 0 75px;
}
@media (max-width: 768px) {
  .benefits {
    padding: 60px 0 90px;
  }
}
.benefits__title {
  color: #FF560B;
}
.benefits__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .benefits__flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.benefits__texts {
  width: 100%;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 239px 211px 1fr;
  max-width: 592px;
  gap: 30px;
}
@media (max-width: 1199px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .benefits__grid {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}
.benefits__subtitle {
  display: block;
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
}
.benefits__text {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #676767;
  line-height: 125%;
  letter-spacing: 0%;
}
.benefits__text a {
  color: #F3712F;
}
.benefits__text a:hover {
  color: #23527c;
}

.specialization {
  padding: 45px 0 75px;
}
@media (max-width: 768px) {
  .specialization {
    padding: 60px 0 90px;
  }
}
.specialization__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1440px) {
  .specialization__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .specialization__grid {
    grid-template-columns: 1fr;
  }
}
.specialization__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #000000;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  margin-bottom: 8px;
}
.specialization__text-1 {
  margin-bottom: 8px;
}
.specialization__text-2 {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  color: #FF560B;
  line-height: 135%;
}
.specialization .tech__block-2 {
  min-width: 340px;
}

.tech2__title {
  margin-bottom: 30px;
}
.tech2__text a {
  color: #FF560B;
}
.tech2__text a:hover {
  color: #23527c;
}
.tech2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .tech2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .tech2__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tech2__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FF560B;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.tech2__card_gr {
  grid-row: span 2;
  min-width: 350px;
}
@media (max-width: 991px) {
  .tech2__card_gr {
    order: 5;
    grid-row: unset;
  }
}

.options__title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .options__title {
    margin-bottom: 30px;
  }
}
.options__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .options__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.options__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .options__card {
    gap: 12px;
  }
}
.options__link {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #FF560B;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.options__link_underline {
  text-decoration: underline !important;
}
.options__link_underline:hover {
  color: #23527c;
}

.efficiency__title {
  margin-bottom: 30px;
}
.efficiency__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.efficiency__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
@media (max-width: 768px) {
  .efficiency__item {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
  }
}
.efficiency__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.efficiency__text-2 {
  max-width: 50%;
}
@media (max-width: 768px) {
  .efficiency__text-2 {
    max-width: 100%;
  }
}
.efficiency__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .efficiency__flex {
    flex-direction: column;
  }
}
.efficiency .tech__block-2 {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .article {
    padding-top: 50px;
  }
}
.article__title {
  margin-bottom: 50px;
  scroll-margin-top: 125px;
}
@media (max-width: 1199px) {
  .article__title {
    scroll-margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .article__title {
    margin-bottom: 30px;
  }
}
.article .h3-title {
  font-family: Unbounded !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 26px !important;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  scroll-margin-top: 125px;
  margin-top: unset !important;
}
@media (max-width: 1200px) {
  .article .h3-title {
    scroll-margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .article .h3-title {
    font-size: 20px !important;
  }
}
.article .h3-title span {
  color: #FF560B;
}
.article .h2-title {
  font-family: Unbounded !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 56px !important;
  color: #0A0A0A;
  line-height: 135% !important;
  scroll-margin-top: 125px;
}
.article .h2-title span {
  color: #FF560B;
}
.article .h2-title a {
  color: #FF560B;
  text-decoration: underline;
}
.article .h2-title a:hover {
  color: #23527c;
}
@media (max-width: 1199px) {
  .article .h2-title {
    font-size: 44px !important;
    line-height: 114% !important;
    scroll-margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .article .h2-title {
    font-size: 38px !important;
    line-height: 114%;
  }
}
@media (max-width: 768px) {
  .article .h2-title {
    font-size: 32px !important;
  }
}
@media (max-width: 576px) {
  .article .h2-title {
    font-size: 25px !important;
  }
}
.article__profile {
  margin-bottom: 32px;
}
.article__text a {
  text-decoration: unset !important;
  color: #FF711C !important;
}
.article__text a:hover {
  color: #23527c !important;
}
.article .text-18-29 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px !important;
  color: #676767;
  line-height: 29px !important;
  margin-top: unset !important;
}
@media (max-width: 576px) {
  .article .text-18-29 {
    font-size: 14px !important;
    line-height: 150% !important;
  }
}
.article .profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article .profile__img {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -1px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  margin: unset !important;
}
.article .profile__name {
  display: block;
  font-family: Unbounded;
  font-weight: 500;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.article .profile__profession {
  display: block;
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: #0A0A0A;
  line-height: 17px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.article__img {
  display: block;
  margin-bottom: 32px !important;
  max-height: 433px;
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.article__img-2 {
  max-width: 770px;
  width: 100%;
  max-height: 433px;
  height: 100%;
  margin-top: 0 !important;
}
.article__img-3 {
  max-width: 770px;
  width: 100%;
  max-height: 525px;
  height: 100%;
}
.article-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.article__texts {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  overflow: auto;
}
@media (max-width: 576px) {
  .article__texts {
    gap: 32px;
  }
}
.article__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 125px;
}
@media (max-width: 1200px) {
  .article__block {
    scroll-margin-top: 70px;
  }
}
.article__block .tech__block-2 {
  max-width: unset;
  border-radius: 16px;
}
.article__block .tech__text-2 {
  font-size: 26px;
  line-height: 114%;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .article__block .tech__text-2 {
    font-size: 20px;
  }
}
.article__block_gap-8 {
  gap: 8px;
}
.article__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: unset !important;
  padding-left: unset !important;
}
@media (max-width: 1200px) {
  .article__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.article .tech__block-2::after {
  display: none;
}
.article__item_2col {
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .article__item_2col {
    grid-column: span 1;
  }
}
.article__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__subtitle-2 {
  font-family: Unbounded !important;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px !important;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  margin-top: unset !important;
}
.article ul li::before {
  display: none !important;
}
.article-navigation {
  position: sticky;
  top: 125px;
  max-width: 309px;
  width: 100%;
}
@media (max-width: 1200px) {
  .article-navigation {
    top: 70px;
  }
}
@media (max-width: 991px) {
  .article-navigation {
    display: none;
  }
}
.article-navigation__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article .article-navigation__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px !important;
  color: #676767 !important;
  line-height: 40px;
  letter-spacing: 0%;
  text-decoration: unset !important;
}
.article .article-navigation__link_active {
  color: #FF560B !important;
}
.article .article-navigation__link:hover {
  color: #FF560B !important;
}
.article__subtitle_fs {
  font-size: 24px;
  line-height: 150%;
}
@media (max-width: 576px) {
  .article__subtitle_fs {
    font-size: 18px;
  }
}
.article__list-3 {
  padding-left: 20px;
  list-style: disc;
}
.article__list-3 li {
  list-style-type: disc;
  position: relative;
}
.article__list-3 li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #666666;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 10px;
}
@media (max-width: 576px) {
  .article__list-3 li:before {
    top: 9px;
  }
}
.article__block-2 {
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 16px;
  background-image: url(/local/templates/custom/images/buisnessapp-2/article-3.webp);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 40px);
  background-position-y: bottom;
  background-size: 36%;
}
@media (max-width: 1200px) {
  .article__block-2 {
    background-size: 20%;
  }
}
@media (max-width: 991px) {
  .article__block-2 {
    background-size: 30%;
  }
}
@media (max-width: 768px) {
  .article__block-2 {
    background-size: 22%;
  }
}
@media (max-width: 576px) {
  .article__block-2 {
    padding: 16px;
    background-image: unset;
  }
}
.article__block-2 .article__subtitle {
  max-width: 376px;
  margin-bottom: 30px;
  margin-top: unset !important;
}
@media (max-width: 576px) {
  .article__block-2 .article__subtitle {
    font-size: 20px;
  }
}
.article__block-2 .article__text {
  max-width: 376px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .article__block-2 .article__btn {
    max-width: 100%;
  }
}
.article .acc__flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article__block-3 strong {
  font-weight: 700;
}
.article__block-3 a {
  text-decoration: unset !important;
  color: #FF560B !important;
}
.article__block-3 a:hover {
  color: #23527c !important;
}
.article .content {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.article__list-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article__item-2 {
  list-style-type: disc;
  list-style-position: inside;
}
.article__item-2 a {
  color: #FF560B !important;
  text-decoration: underline !important;
}
.article__item-2 a:hover {
  color: #23527c !important;
}
.article .blog__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .article .blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.article .blog__link {
  text-decoration: unset !important;
  color: #FF560B !important;
}
.article .blog__link:hover {
  color: #23527c !important;
}
.article__table {
  border-collapse: collapse;
  width: 725px;
}
.article__table thead {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.article__table th {
  font-family: Segoe UI;
  font-weight: 600;
  font-style: Semibold;
  font-size: 18px;
  color: #000000;
  line-height: 170%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
}
.article__table tr {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.article__table td {
  padding: 30px 10px;
}
.article__table th:first-child {
  max-width: 27%;
  width: 100%;
}
.article__table th:nth-child(2) {
  max-width: 35%;
  width: 100%;
}
.article__table th:nth-child(3) {
  max-width: 35%;
  width: 100%;
}

.cost {
  overflow: hidden;
}
.cost__text {
  margin-bottom: 30px;
}
.cost__overflow {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cost__overflow {
    padding: 0 20px;
  }
}
@media (max-width: 578px) {
  .cost__overflow {
    padding: 0 12.5px;
  }
}
.cost__table {
  width: 1070px;
}
.cost__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.6px;
  color: #000000;
}
.cost__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .cost__flex {
    flex-direction: column;
  }
}
.cost__flex-2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cost__flex-2 {
    flex-direction: column;
  }
}
.cost__flex-2 .tech__block-2 {
  margin-bottom: 30px;
}
.cost table {
  border-collapse: collapse;
}
.cost table a {
  color: #FF560B;
}
.cost table a:hover {
  color: #23527c;
}
.cost thead th {
  text-align: left;
}
.cost thead th:first-child {
  width: 30%;
}
.cost thead th:nth-child(2) {
  width: 30%;
}
.cost thead th:nth-child(3) {
  width: 30%;
}
.cost__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #000000;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  margin-bottom: 10px;
}
.cost tr {
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.cost td {
  padding: 30px 10px;
}
.cost__table-2 thead th:first-child {
  width: 24%;
}
.cost__table-2 thead th:nth-child(2) {
  width: 24%;
}
.cost__table-2 thead th:nth-child(3) {
  width: 24%;
}
.cost__table-2 thead th:nth-child(4) {
  width: 24%;
}
.cost__table-2 th {
  padding: 0 15px;
}
.cost__table-2 td {
  padding: 30px 15px;
}
.cost__title_mb {
  margin-bottom: 30px;
}
.cost__table-3 thead th:first-child {
  width: 40%;
}
.cost__table-3 thead th:nth-child(2) {
  width: 30%;
}
.cost__table-3 thead th:nth-child(3) {
  width: 30%;
}
.cost__table-3 th {
  font-family: Segoe UI;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  line-height: 170%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.cost__table-3 th {
  padding: 0 15px 10px;
}
.cost__table-3 th:first-child {
  padding: 0 15px 0 0;
}
.cost__table-3 td {
  padding: 30px 15px;
}
.cost__table-3 td:first-child {
  padding: 30px 15px 30px 0;
}
.cost__table-3 th:last-child {
  padding: 0 0 0 15px;
}
.cost__table-3 td:last-child {
  padding: 30px 0px 30px 15px;
}
@media (max-width: 768px) {
  .cost .table__container {
    display: contents;
  }
}
.cost .cost__table-4 th {
  font-family: Segoe UI;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  line-height: 170%;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 0px 0px 10px 10px;
}
.cost .cost__table-4 thead th:first-child {
  width: 30%;
}
.cost .cost__table-4 thead th:nth-child(2) {
  width: 32%;
}
.cost .cost__table-4 td:nth-child(3) {
  white-space: nowrap;
}
.cost .cost__table-4 thead th:nth-child(3) {
  width: 30%;
}
.cost__swiper {
  overflow: unset;
  width: 100%;
  height: auto;
}
.cost__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: auto;
}
.cost__swiper .swiper-slide {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.cost__swiper .cost__table-4 {
  width: 1070px;
}
@media (max-width: 576px) {
  .cost__swiper .cost__table-4 {
    width: 780px;
  }
}

.stack__title {
  font-size: 55px;
}
@media (max-width: 1199px) {
  .stack__title {
    font-size: 44px;
    line-height: 114%;
  }
}
@media (max-width: 991px) {
  .stack__title {
    font-size: 42px;
    line-height: 114%;
  }
}
@media (max-width: 768px) {
  .stack__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .stack__title {
    font-size: 25px;
  }
}
.stack__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 381px;
  gap: 30px;
}
@media (max-width: 1199px) {
  .stack__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stack__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1199px) {
  .stack__text br {
    display: none;
  }
}
.stack__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stack__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.stack .tech__block-2 {
  margin-bottom: 30px;
}
.stack__link {
  color: #FF560B;
}
.stack__link:hover {
  color: #23527c;
}

.localization__flex {
  display: flex;
  align-items: stretch;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .localization__flex {
    flex-direction: column;
  }
}
.localization__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.localization__flex-2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.localization__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.localization__text a {
  color: #FF560B;
}
.localization__text a:hover {
  color: #23527c;
}
.localization__block-2 {
  min-width: 381px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.localization__img {
  margin-left: auto;
  transform: translateY(60px);
}
@media (max-width: 991px) {
  .localization__img {
    display: none;
  }
}
.localization .tech__block-2 {
  margin-bottom: 30px;
}

.services__title {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .services__title {
    margin-bottom: 30px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.services__text a {
  color: #FF560B;
}
.services__text a:hover {
  color: #23527c;
}
.services__text-2 {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 170%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.services__text-2 span {
  color: #FF560B;
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 135%;
}

.aso .develop__text_nomw {
  max-width: unset;
}

.was-now__title {
  margin-bottom: 30px;
}
.was-now__text {
  margin-bottom: 30px;
}
.was-now__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #000000;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
}
.was-now__link {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #FF711C;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
.was-now__link:hover {
  color: #23527c;
}
.was-now__img {
  display: block;
  max-width: 310px;
  height: 246px;
  margin-bottom: 18px;
}
.was-now__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.technology__block {
  position: relative;
}
.technology__img {
  position: absolute;
  right: 55px;
  bottom: 0;
}
@media (max-width: 1024px) {
  .technology__img {
    right: 0;
  }
}
@media (max-width: 768px) {
  .technology__img {
    display: none;
  }
}
.technology__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .technology__flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .technology__flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .technology__flex {
    display: flex;
    flex-wrap: wrap;
  }
}
.technology__card {
  max-width: 198px;
  width: 100%;
}
@media (max-width: 1024px) {
  .technology__card {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .technology__card {
    max-width: calc(50% - 20px);
  }
}
.technology__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: #0A0A0A;
  line-height: 115%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  margin-bottom: 15px;
}
.technology__item {
  font-family: Segoe UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #676767;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 12px;
}
.technology__item::before {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: #676767;
  border-radius: 100%;
  flex-shrink: 0;
}
.technology__flex-2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 1024px) {
  .technology__flex-2 {
    flex-direction: column;
  }
}

.diff__title {
  margin-bottom: 40px;
}
.diff__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991px) {
  .diff__flex {
    flex-wrap: wrap;
  }
}
.diff__card {
  max-width: calc(33% - 10px);
  width: 100%;
}
@media (max-width: 991px) {
  .diff__card {
    max-width: 100%;
  }
}
.diff__subtitle {
  margin-bottom: 4px;
}
.diff__link {
  color: #FF711C;
  text-decoration: unset !important;
}
.diff__link:hover {
  color: #23527c;
}

.games__title {
  margin-bottom: 42px;
}
.games__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
}
@media (max-width: 991px) {
  .games__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .games__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.games__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #000000;
  line-height: 115%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.blog-2 .blog-2__flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.blog-2 .blog-2__flex-2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .blog-2 .blog-2__flex-2 {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .blog-2 .blog-2__flex-2 {
    justify-content: center;
  }
}
.blog-2 .blog-2__card {
  position: relative;
  width: 100%;
  max-width: 351px;
}
@media (max-width: 991px) {
  .blog-2 .blog-2__card {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .blog-2 .blog-2__card {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.blog-2 .blog-2__img {
  margin-bottom: 8px;
  max-width: 351px;
  width: 100%;
  height: 223px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.blog-2 .blog-2__subtitle {
  font-family: Unbounded;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.6px;
  vertical-align: middle;
  color: #0A0A0A;
  transition: color 0.25s ease;
}
@media (max-width: 768px) {
  .blog-2 .blog-2__subtitle {
    text-align: center;
  }
}
.blog-2 .blog-2__card:hover .blog-2__subtitle {
  color: #23527c;
}
.blog-2 .blog__link-2 {
  position: absolute;
  inset: 0;
}