@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Italic.woff2") format("woff2"),url("../fonts/Inter-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-blck: #06123b;
  --color-blck--rgb: 6, 18, 59;
  --color-blu: #3b5dd8;
  --color-blu--rgb: 59, 93, 216;
  --font-primary: Inter, sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, Droid Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  color: var(--color-primary);
  line-height: 1;
  font-family: "Inter",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Inter",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: rgba(0,0,0,0);
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address,
cite {
  font-style: normal;
}

body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper>main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

[class*=__container] {
  --pad: 30px;
  max-width: calc(86.25rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--pad);
  margin: 0 auto;
}

body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility .8s ease 0s;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ibg--top {
  -o-object-position: top;
     object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
     object-position: left;
}

.ibg--right {
  -o-object-position: right;
     object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-style: normal;
  font-weight: 600;
  color: var(--color-blck);
}

.h1.white,
.h2.white,
.h3.white,
.h4.white,
.h5.white,
.h6.white {
  color: var(--color-whte);
}

.h1 {
  font-size: 3.4375rem;
  line-height: 4.6875rem;
  letter-spacing: -0.06875rem;
}

.h2 {
  font-size: 1.875rem;
  line-height: normal;
  letter-spacing: -0.0375rem;
}

.h3 {
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: normal;
}

.text {
  font-style: normal;
  font-weight: 400;
  color: var(--color-blck);
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.text.white {
  color: var(--color-whte);
}

.text.fz26 {
  font-size: 1.625rem;
  line-height: 2.375rem;
}

.text.fz20 {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.text.fz16 {
  font-size: 1rem;
  line-height: 1.5625rem;
}

.text.italic {
  font-style: italic;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 1.28125rem 1.875rem;
  border-radius: 0.625rem;
  background: var(--color-blu);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-whte);
  text-align: center;
  -webkit-transition: background .3s ease-out;
  transition: background .3s ease-out;
}

.btn:hover {
  background: #1a42d3;
}

.btn--black {
  background-color: var(--color-blck);
}

.btn--black:hover {
  background: #00071f;
}

.btn--link {
  padding: 1.03125rem 1.25rem;
  font-size: 0.875rem;
  background-color: rgba(0,0,0,0);
}

.btn--link:hover {
  background: #3b5dd7;
}

.btn--small {
  padding: 1.03125rem 1.25rem;
  font-size: 0.875rem;
}

.btn--extra-small {
  padding: 0.875rem 0.9375rem;
  font-size: 0.875rem;
}

.btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
}

.input {
  position: relative;
}

.input input,
.input textarea {
  width: 100%;
  border-radius: 0.625rem;
  background: var(--color-whte);
  padding: 1.25rem 1.875rem;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-blck);
}

.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: #7a829c;
}

.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: #7a829c;
}

.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: #7a829c;
}

.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: #7a829c;
}

.input input::placeholder,
.input textarea::placeholder {
  color: #7a829c;
}

.input textarea {
  height: 8.875rem;
  resize: none;
}

.input textarea::-webkit-scrollbar {
  width: 0.5625rem;
}

.input textarea::-webkit-scrollbar-track {
  background: rgba(0,0,0,0);
}

.input textarea::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0);
  border-radius: 0;
  border-left: 0.1875rem solid #06123b;
}

.input textarea::-webkit-scrollbar-button {
  display: block;
  height: 0.625rem;
  background-color: rgba(0,0,0,0);
}

.input::after {
  content: "Ошибка";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  background-image: url(../img/error.svg);
  background-position: left center;
  background-size: 1.25rem;
  background-repeat: no-repeat;
  padding: 0 0 0 1.5625rem;
  color: #d92e2e;
  font-family: Inter;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: scale(0.9) translate(0%, -50%);
      -ms-transform: scale(0.9) translate(0%, -50%);
          transform: scale(0.9) translate(0%, -50%);
  -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
  transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
  transition: opacity .3s ease-out,transform .3s ease-out;
  transition: opacity .3s ease-out,transform .3s ease-out,-webkit-transform .3s ease-out;
}

.input._form-error input,
.input._form-error textarea {
  padding: 1.25rem 7.5rem 1.25rem 1.875rem;
}

.input._form-error::after {
  opacity: 1;
  pointer-events: unset;
  -webkit-user-select: unset;
     -moz-user-select: unset;
      -ms-user-select: unset;
          user-select: unset;
  -webkit-transform: scale(1) translate(0, -50%);
      -ms-transform: scale(1) translate(0, -50%);
          transform: scale(1) translate(0, -50%);
}

.header {
  position: absolute;
  z-index: 10;
  top: 1.875rem;
  left: 0;
  width: 100%;
}

.header-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 12.75rem;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header-nav__close {
  display: none;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
}

.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav .header__callback {
  display: none;
  margin: 2.125rem 0 0;
}

.header__burger {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0 0 auto;
}

.footer {
  background: #06123b;
  margin: 7.5rem 0 0;
  padding: 3.75rem 0;
}

.footer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.125rem;
}

.footer__logo {
  width: 12.75rem;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__text {
  text-align: center;
  font-size: 0.875rem;
  color: #b6bdd7;
}

.main {
  position: relative;
  background-image: url(../img/main/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 18, 59, 0.4)), to(rgba(6, 18, 59, 0)));
  background: linear-gradient(180deg, rgba(6, 18, 59, 0.4) 0%, rgba(6, 18, 59, 0) 100%);
  pointer-events: none;
}

.main__container {
  position: relative;
  z-index: 1;
}

.main-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 47.5rem;
  padding: 7.5rem 0 2.5rem;
  min-height: 100vh;
}

.main__text {
  margin: 1.25rem 0 0;
}

.main__btn {
  margin: 2.5rem 0 0;
}

.about {
  padding: 7.5rem 0;
}

.about-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.about-content .about-image {
  position: relative;
  display: none;
  height: 0;
  padding: 0 0 58%;
}

.about-content .about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__text {
  margin: 1.875rem 0 0;
}

.about-advantages {
  margin: 1.875rem 0 0;
  padding: 1.875rem;
  border-radius: 1.25rem;
  background: #f7f7f7;
  width: 100%;
}

.about-advantages__list {
  margin: 1.25rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.about-advantages__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 1rem);
          flex: 1 1 calc(33.333% - 1rem);
}

.about-advantages__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 3.125rem;
  height: 3.125rem;
}

.about-advantages__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-advantages__item-text {
  margin: 0.625rem 0 0;
}

.about-image {
  border-radius: 1.25rem;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.5rem;
          flex: 0 0 33.5rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solutions {
  padding: 7.5rem 0;
  background: #f7f7f7;
}

.solutions__title {
  text-align: center;
}

.solutions__text {
  margin: 1.25rem 0 0;
  text-align: center;
}

.solutions-body {
  margin: 2.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.solutions-card {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 1rem);
          flex: 0 0 calc(33.333% - 1rem);
  min-height: 16.25rem;
  padding: 1.875rem 8.125rem 1.875rem 1.875rem;
  border-radius: 1.25rem;
  background: var(--color-whte);
  -webkit-box-shadow: 0.9375rem 0.9375rem 1.25rem 0px rgba(6,18,59,.05);
          box-shadow: 0.9375rem 0.9375rem 1.25rem 0px rgba(6,18,59,.05);
  overflow: hidden;
}

.solutions-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 10rem;
  height: 10rem;
  background-image: url(../img/solutions/elem.svg);
  background-size: contain;
  background-position: right bottom;
}

.solutions-card--callback {
  background-color: var(--color-blu);
  -webkit-transition: background-color .3s ease-out;
  transition: background-color .3s ease-out;
}

.solutions-card--callback::after {
  background-image: url(../img/solutions/elem-callback.svg);
}

.solutions-card--callback:hover {
  background-color: #1a42d3;
}

.solutions-card__text {
  margin: 1.25rem 0 0;
}

.solutions-card__icon {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 6.25rem;
  height: 6.25rem;
}

.solutions-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages {
  background-color: rgba(6,18,59,.9);
  background-image: url(../img/advantages/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages-body {
  padding: 7.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

.advantages-side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28.875rem;
          flex: 0 0 28.875rem;
}

.advantages__text {
  margin: 1.25rem 0 0;
}

.advantages-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.advantages-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 0.75rem);
          flex: 1 1 calc(50% - 0.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  background-color: var(--color-whte);
  border-radius: 1.25rem;
  padding: 1.875rem;
}

.advantages-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
}

.advantages-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages-card__text {
  margin: 0.625rem 0 0;
}

.clients {
  padding: 7.5rem 0;
}

.clients__title {
  text-align: center;
}

.clients__text {
  margin: 1.25rem 0 0;
  text-align: center;
}

.clients-body {
  position: relative;
}

.clients-body__button {
  position: absolute;
  top: calc(50% - 1.5rem);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 2.5rem;
  height: rme(40);
}

.clients-body__button._prev {
  left: -4rem;
}

.clients-body__button._next {
  right: -4rem;
}

.clients-body__button:hover svg path {
  stroke: #06123b;
}

.clients-body__button svg {
  width: 100%;
  height: 100%;
}

.clients-body__button svg path {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}

.clients-body__slider {
  margin: 2.5rem 0 0;
  overflow: hidden;
  border-radius: 1.25rem;
}

.clients-body__nav {
  margin: 2.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clients-body__nav .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.clients-body__nav .pagination span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #d5d6d7;
  border-radius: 50%;
}

.clients-body__nav .pagination span.swiper-pagination-bullet-active {
  background-color: #3b5dd8;
}

.clients-card {
  position: relative;
  padding: 1.25rem;
  background-color: #f7f7f7;
  border-radius: 1.25rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.clients-card__quote {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
}

.clients-card__quote img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.clients-card__text {
  padding: 0 2.125rem 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.clients-card__bottom {
  border-top: 0.0625rem solid #e4e4e4;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: normal;
}

.clients-card__bottom span {
  color: #7a829c;
}

.callback-body {
  padding: 3.75rem;
  background-color: var(--color-blu);
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}

.callback-content {
  max-width: 32.1875rem;
}

.callback__text {
  margin: 1.25rem 0 0;
}

.response__text {
  margin: 1.25rem 0 0;
  text-align: center;
}

.callback-contacts {
  margin: 2.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.callback-contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  gap: 0.3125rem;
}

.callback-contacts__row .value {
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-whte);
}

.callback-form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.25rem;
          flex: 0 0 31.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
}

.callback-form__agree {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
}

.callback-form__agree._form-error .visible {
  border-color: #d92e2e;
}

.callback-form__agree a {
  text-decoration: underline;
}

.callback-form__agree input {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  cursor: pointer;
}

.callback-form__agree input:checked+.visible svg {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.callback-form__agree .visible {
  margin: 0.25rem 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  border: 0.125rem solid var(--color-whte);
  -webkit-transition: border-color .3s ease-out;
  transition: border-color .3s ease-out;
}

.callback-form__agree .visible svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.375rem);
  -webkit-transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
  transition: opacity .3s ease-out,-webkit-transform .3s ease-out;
  transition: transform .3s ease-out,opacity .3s ease-out;
  transition: transform .3s ease-out,opacity .3s ease-out,-webkit-transform .3s ease-out;
}

.cookie {
  position: fixed;
  z-index: 9;
  right: 1.875rem;
  bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  background-color: var(--color-whte);
  border-radius: 1.25rem;
  padding: 1.875rem;
  max-width: 26.25rem;
  -webkit-box-shadow: 0.9375rem 0.9375rem 1.25rem 0px rgba(6,18,59,.05);
          box-shadow: 0.9375rem 0.9375rem 1.25rem 0px rgba(6,18,59,.05);
}

.cookie.hidden {
  display: none;
}

.cookie__title {
  font-size: 1.5rem;
}

.cookie__text {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@media (max-width: 90em) {
  .about-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28.75rem;
            flex: 0 0 28.75rem;
  }

  .clients-body__button {
    position: relative;
    top: auto;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }

  .clients-body__button._prev {
    left: 0;
  }

  .clients-body__button._next {
    right: 0;
  }
}

@media (max-width: 61.99875em) {
  .h1 {
    font-size: 2.1875rem;
    line-height: 3.125rem;
    letter-spacing: -0.04375rem;
  }

  .h2 {
    font-size: 1.5625rem;
    letter-spacing: -0.03125rem;
  }

  .text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text.fz26 {
    font-size: 1.125rem;
    line-height: 1.875rem;
  }

  .text.fz20 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text.fz16 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .btn--extra-small {
    padding: 0.75rem 0.9375rem;
  }

  .input textarea {
    height: 10.125rem;
  }

  .header {
    top: 1.25rem;
    z-index: 10;
  }

  .header-body {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #06123b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
    visibility: hidden;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .header-nav.open {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    visibility: visible;
    pointer-events: unset;
    -webkit-user-select: unset;
       -moz-user-select: unset;
        -ms-user-select: unset;
            user-select: unset;
  }

  .header-nav__close {
    display: block;
  }

  .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.125rem;
  }

  .header__burger {
    display: block;
  }

  .footer {
    margin: 3.75rem 0 0;
    padding: 1.875rem 0;
  }

  .footer-body {
    gap: 1.25rem;
  }

  .main {
    background-image: url(../img/main/bg-tablet.jpg);
  }

  .main-body {
    padding: 6.875rem 0 2.5rem;
  }

  .main__text {
    margin: 0.625rem 0 0;
  }

  .main__btn {
    margin: 1.25rem 0 0;
  }

  .about {
    padding: 3.75rem 0;
  }

  .about-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-content__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.75rem);
            flex: 0 0 calc(50% - 0.75rem);
  }

  .about-content .about-image {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.75rem);
            flex: 0 0 calc(50% - 0.75rem);
  }

  .about__text {
    margin: 0.625rem 0 0;
  }

  .about__text br {
    display: none;
  }

  .about-advantages {
    margin: 0;
  }

  .about-image {
    display: none;
  }

  .solutions {
    padding: 3.75rem 0;
  }

  .solutions__text {
    margin: 0.625rem 0 0;
  }

  .solutions-body {
    margin: 1.25rem 0 0;
    gap: 0.75rem;
  }

  .solutions-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.375rem);
            flex: 0 0 calc(50% - 0.375rem);
    min-height: 12.5rem;
    padding: 1.875rem 6.25rem 1.875rem 1.875rem;
  }

  .solutions-card::after {
    width: 7.5rem;
    height: 7.5rem;
  }

  .solutions-card__text {
    margin: 0.625rem 0 0;
  }

  .solutions-card__icon {
    right: 0.9375rem;
    bottom: 0.9375rem;
    width: 4.6875rem;
    height: 4.6875rem;
  }

  .advantages-body {
    padding: 3.75rem 0;
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .advantages-side {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .advantages__title {
    text-align: center;
  }

  .advantages__title br {
    display: none;
  }

  .advantages__text {
    margin: 0.625rem 0 0;
    text-align: center;
  }

  .advantages__text br {
    display: none;
  }

  .advantages-cards {
    gap: 0.75rem;
  }

  .advantages-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.375rem);
            flex: 0 0 calc(50% - 0.375rem);
    padding: 1.25rem;
    min-height: 9.0625rem;
  }

  .advantages-card__title {
    margin: 0.3125rem 0 0;
  }

  .clients {
    padding: 3.75rem 0;
  }

  .clients__text {
    margin: 0.625rem 0 0;
  }

  .clients-body__slider {
    margin: 1.25rem 0 0;
    overflow: visible;
  }

  .clients-body__nav {
    margin: 1.25rem 0 0;
    gap: 0.75rem;
  }

  .clients-card__bottom {
    font-size: 0.75rem;
  }

  .callback-body {
    padding: 2.5rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .callback-content {
    max-width: 100%;
  }

  .callback__text {
    margin: 0.625rem 0 0;
  }

  .callback__text br {
    display: none;
  }

  .callback-contacts {
    gap: 0.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .callback-contacts__row {
    gap: 0.125rem;
  }

  .callback-contacts__row .value {
    font-size: 1rem;
  }

  .callback-form {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0;
  }

  .cookie {
    gap: 0.3125rem;
  }

  .cookie__title {
    font-size: 1.25rem;
  }

  .cookie__text {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  [class*=__container] {
    --pad: 15px;
  }

  .h1 {
    font-size: 1.5625rem;
    line-height: 2.1875rem;
    letter-spacing: -0.03125rem;
  }

  .h2 {
    font-size: 1.25rem;
    letter-spacing: -0.025rem;
  }

  .text {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .text.fz26 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .text.fz20 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .text.fz16 {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }

  .header-nav .header__callback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__callback {
    display: none;
  }

  .footer {
    margin: 2.5rem 0 0;
  }

  .footer__text {
    font-size: 0.75rem;
  }

  .main {
    background-image: url(../img/main/bg-mobile.jpg);
  }

  .main-body {
    padding: 5.625rem 0 2.5rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .main__text br {
    display: none;
  }

  .about {
    padding: 1.875rem 0;
  }

  .about-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }

  .about-content {
    gap: 0.75rem;
  }

  .about-content__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .about-content .about-image {
    display: none;
  }

  .about-advantages {
    padding: 1.25rem;
  }

  .about-advantages__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0.75rem 0 0;
    gap: 0.75rem;
  }

  .about-advantages__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .about-advantages__item-icon {
    width: 1.875rem;
    height: 1.875rem;
  }

  .about-advantages__item-text {
    margin: 0 0 0 0.625rem;
  }

  .about-advantages__item-text br {
    display: none;
  }

  .about-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: block;
  }

  .solutions {
    padding: 1.875rem 0;
  }

  .solutions-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 1.25rem 6.25rem 1.25rem 1.25rem;
    min-height: auto;
  }

  .solutions-card::after {
    width: 6.25rem;
    height: 6.25rem;
  }

  .solutions-card--callback .solutions-card__title br {
    display: block;
  }

  .solutions-card__title br {
    display: none;
  }

  .solutions-card__icon {
    right: 0.78125rem;
    bottom: 0.78125rem;
    width: 3.90625rem;
    height: 3.90625rem;
  }

  .advantages-body {
    padding: 1.875rem 0;
  }

  .advantages-card {
    min-height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .advantages-card__icon {
    width: 1.875rem;
    height: 1.875rem;
  }

  .advantages-card__text {
    margin: 0.3125rem 0 0;
  }

  .clients {
    padding: 1.875rem 0;
  }

  .clients-card {
    width: 17.5rem;
  }

  .callback-body {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .callback-contacts {
    margin: 1.25rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cookie {
    right: 0.9375rem;
    bottom: 0.9375rem;
    width: calc(100% - 1.875rem);
    padding: 1.25rem;
  }
}