@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf");
  src: local("Inter Regular"), local("Inter-Regular"), url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf");
  src: local("Inter Medium"), local("Inter-Regular"), url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf");
  src: local("Inter SemiBold"), local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf");
  src: local("Inter Bold"), local("Inter-Bold"), url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cuprum";
  src: url("../fonts/Cuprum-Regular.ttf");
  src: local("Cuprum Regular"), local("Cuprum-Regular"), url("../fonts/Cuprum-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --Base-White: #FFF;
  --Base-Dark: #222;
  --Base-Dark-Opacity: rgba(34, 34, 34, 0.8);
  --Brand-50: #EDF0FF;
  --Brand-200: #C5CAFF;
  --Brand-300: #A1A7FF;
  --Brand-800: #412BA8;
  --Brand-900: #362980;
  --Brand-950: #22194D;
  --Neutral-50: #F8FAFC;
  --Neutral-100: #E9EFF5;
  --Neutral-200: #CEDDE9;
  --Neutral-300: #A3C1D6;
  --Neutral-400: #729FBE;
  --Neutral-500: #5083A7;
  --font-Cuprum: "Cuprum";
}

.no-scroll {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.btn {
  padding: 0.625rem 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0.5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn-purple {
  color: var(--Base-White);
  background: var(--Brand-900);
}
.btn-purple:hover {
  background: var(--Brand-800);
}

.btn-gray {
  background: var(--Neutral-100);
}
.btn-gray:hover {
  background: var(--Brand-200);
}

.btn-white {
  color: var(--Base-Dark);
  background: var(--Base-White);
}
.btn-white:hover {
  background: var(--Brand-200);
}

.lang {
  position: relative;
}
.lang__head {
  padding: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--Base-Dark);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0.5rem;
  background: var(--Neutral-100);
  cursor: pointer;
}
.lang__head:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  transition: 0.3s;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M4 6L8 10L12 6' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M4 6L8 10L12 6' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.lang__head.is-active:after {
  transform: scale(1, -1);
}
.lang__head-content {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang__head-flag {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  border-radius: 0.125rem;
  overflow: hidden;
}
.lang__head-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lang__body {
  display: none;
  width: 100%;
  position: absolute;
  padding: 0.25rem;
  top: calc(100% + 0.25rem);
  border-radius: 0.5rem;
  background: var(--Neutral-100);
  z-index: 10;
}
.lang__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s;
}
.lang__item:hover {
  background: var(--Neutral-200);
}
.lang__item-flag {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  border-radius: 0.125rem;
  overflow: hidden;
}
.lang__item-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lang__item-name {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.title {
  color: var(--Base-Dark);
  font-family: var(--font-Cuprum);
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.title span {
  color: var(--Brand-800);
}

.card-tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 1rem 0.375rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(233, 239, 245, 0.7);
}
.card-tag span {
  color: var(--Neutral-500);
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.6;
}

.swiper-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}
.swiper-arrows__item {
  width: 2.25rem;
  height: 2.25rem;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  transition: 0.1s;
  pointer-events: all;
}
.swiper-arrows__item.prev {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='36' height='36' rx='8' transform='matrix(-1 0 0 1 36 0)' fill='%23E9EFF5'/%3e%3cpath d='M21 24L15 18L21 12' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.swiper-arrows__item.next {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='36' height='36' rx='8' fill='%23E9EFF5'/%3e%3cpath d='M15 24L21 18L15 12' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.swiper-arrows__item:hover {
  border-radius: 0.75rem;
}
.swiper-arrows__item.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

img.lozad {
  background: var(--Neutral-100);
  opacity: 0;
  transition: opacity 0.5s;
}

img.loaded {
  opacity: 1;
  background: none;
}

.breadcrumbs {
  margin: 1.25rem 0 2.5rem;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--Neutral-400);
  transition: 0.3s;
}
.breadcrumbs__item:after {
  content: "/";
  color: currentColor;
  transition: 0.3s;
}
.breadcrumbs__item:hover {
  color: var(--Neutral-500);
}
.tick-list li {
  position: relative;
  padding-left: 2rem;
}
.tick-list li:before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20 6L9 17L4 12' stroke='%23412BA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

@media (max-width: 768px) {
  .title {
    font-size: 2.375rem;
  }
  .lang__head {
    font-size: 0.875rem;
  }
  .lang__item-name {
    font-size: 0.875rem;
  }
  .card-tag {
    padding: 0.255rem 0.75rem;
  }
  .card-tag span {
    font-size: 0.65rem;
  }
  .breadcrumbs {
    margin: 1rem 0 1.75rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Inter";
  font-size: 1.33333vw;
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

body {
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: var(--Base-Dark);
  background: var(--Neutral-50);
}

input,
textarea {
  -webkit-animation: bugfix infinite 1s;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

a {
  color: unset;
}

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

button,
input,
a,
textarea {
  outline: none;
  cursor: pointer;
  font: inherit;
}
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
a:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible,
input:focus-visible,
a:focus-visible,
textarea:focus-visible {
  outline: 1px solid var(--Brand-800);
  outline-offset: 1px;
  border-radius: 0.25rem;
}
button:active,
input:active,
a:active,
textarea:active {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  padding: 0;
  background-color: inherit;
}

ul {
  padding: 0;
  margin: 0;
}

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

.container {
  height: 100%;
  width: 67.5rem;
  margin: 0 auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 767px) {
  html {
    font-size: 4.266666vw;
  }
  .container {
    padding: 0 1rem;
    width: 100%;
  }
}
.header {
  margin-top: 1.25rem;
  position: sticky;
  top: 0.25rem;
  z-index: 99;
}
.header__content {
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100);
  background: var(--Base-White);
}
.header__logo {
  width: 5rem;
  height: 1.71875rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu {
  flex: 1;
  height: 2.25rem;
  display: flex;
  align-items: center;
}
.header__nav {
  margin: 0 auto;
}
.header__nav-list {
  display: flex;
  align-items: center;
}
.header__nav-item.with-sub {
  position: relative;
}
.header__nav-item.with-sub .header__nav-link:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3e%3cpath d='M4 6.5L8 10.5L12 6.5' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3e%3cpath d='M4 6.5L8 10.5L12 6.5' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  transition: 0.3s;
}
.header__nav-item-sub {
  display: none;
  padding: 0.5rem;
  position: absolute;
  top: 99%;
  left: 0%;
  min-width: 14rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  border: 1px solid var(--Neutral-100);
  background: var(--Base-White);
  z-index: 15;
}
.header__nav-item-sub-item {
  width: 100%;
}
.header__nav-item-sub-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0.5rem;
  color: var(--Base-Dark);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 0.35rem;
  transition: 0.3s;
  white-space: nowrap;
}
.header__nav-item-sub-link:hover {
  background: var(--Neutral-100);
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.5rem;
  color: var(--Base-Dark);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: 0.3s;
  cursor: pointer;
}
.header__nav-link:hover {
  color: var(--Brand-800);
}
.header__lang {
  margin-right: 0.5rem;
  height: 2.25rem;
}
.header__btn {
  height: 2.25rem;
}
.header__burger {
  display: none;
}

@media (max-width: 767px) {
  .header {
    margin-top: 0.5rem;
    top: 0.5rem;
  }
  .header__content {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.75rem;
    border: 1px solid var(--Neutral-100);
    background: var(--Base-White);
  }
  .header__logo {
    position: relative;
    z-index: 20;
    width: 5rem;
    height: 1.71875rem;
  }
  .header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__menu {
    position: absolute;
    left: -100%;
    top: -0.75rem;
    padding: 5.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    height: 100vh;
    background: var(--Base-White);
    transition: 0.3s;
    opacity: 0;
  }
  .header__menu.is-active {
    left: 0;
    opacity: 1;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
  .header__nav-item {
    width: 100%;
  }
  .header__nav-item.with-sub {
    position: relative;
  }
  .header__nav-item.with-sub .header__nav-link {
    justify-content: space-between;
  }
  .header__nav-item.with-sub .header__nav-link:after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .header__nav-item.with-sub.is-active .header__nav-link:after {
    transform: scale(1, -1);
  }
  .header__nav-item-sub {
    display: none;
    padding: 0rem;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    min-width: 100%;
    transform: unset;
    border-radius: 0.5rem;
    border: unset;
    background: var(--Base-White);
    z-index: 15;
  }
  .header__nav-item-sub-item {
    width: 100%;
  }
  .header__nav-item-sub-link {
    display: block;
    width: 100%;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    transition: 0.3s;
    font-size: 1rem;
    white-space: unset;
  }
  .header__nav-item-sub-link:hover {
    background: var(--Neutral-100);
  }
  .header__nav-link {
    font-size: 1rem;
  }
  .header__nav-link:hover {
    color: var(--Base-Dark);
  }
  .header__lang {
    margin: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header__btn {
    margin-left: auto;
    margin-right: 0.75rem;
    position: relative;
    z-index: 20;
  }
  .header__burger {
    display: block;
    position: relative;
    z-index: 20;
    height: 2.25rem;
    aspect-ratio: 1/1;
    background: var(--Brand-900);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3e%3cpath d='M7.5 3.25C7.5 2.69772 7.05228 2.25 6.5 2.25H3.25C2.69772 2.25 2.25 2.69772 2.25 3.25V6.5C2.25 7.05228 2.69772 7.5 3.25 7.5H6.5C7.05228 7.5 7.5 7.05228 7.5 6.5V3.25Z' stroke='%23FDFDFD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M15.75 3.25C15.75 2.69772 15.3023 2.25 14.75 2.25H11.5C10.9477 2.25 10.5 2.69772 10.5 3.25V6.5C10.5 7.05228 10.9477 7.5 11.5 7.5H14.75C15.3023 7.5 15.75 7.05228 15.75 6.5V3.25Z' stroke='%23FDFDFD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M15.75 11.5C15.75 10.9477 15.3023 10.5 14.75 10.5H11.5C10.9477 10.5 10.5 10.9477 10.5 11.5V14.75C10.5 15.3023 10.9477 15.75 11.5 15.75H14.75C15.3023 15.75 15.75 15.3023 15.75 14.75V11.5Z' stroke='%23FDFDFD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M7.5 11.5C7.5 10.9477 7.05228 10.5 6.5 10.5H3.25C2.69772 10.5 2.25 10.9477 2.25 11.5V14.75C2.25 15.3023 2.69772 15.75 3.25 15.75H6.5C7.05228 15.75 7.5 15.3023 7.5 14.75V11.5Z' stroke='%23FDFDFD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    border-radius: 0.5rem;
    transition: 0.3s;
  }
  .header__burger.is-active {
    background-size: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='0.5' y='0.5' width='35' height='35' rx='7.5' fill='white'/%3e%3crect x='0.5' y='0.5' width='35' height='35' rx='7.5' stroke='%23D8D8D8'/%3e%3cpath d='M22.5 13.5L13.5 22.5M13.5 13.5L22.5 22.5' stroke='%232E2E2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  }
}
.hero {
  margin-top: 0.5rem;
}
.hero__top {
  position: relative;
  padding: 3.375rem 2.75rem 4.5rem;
  border-radius: 0.75rem;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #DFE2FF 100%);
  overflow: hidden;
}
.hero__top-decor {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero__top-decor img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__top-decor img:first-child {
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__top-decor img:last-child {
  right: 0;
}
.hero__top-decor:before, .hero__top-decor:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(224, 227, 255, 0) 0%, #E0E3FF 100%);
  opacity: 0.9;
}
.hero__top-decor::before {
  left: 0;
  width: 10.1875rem;
  transform: rotate(180deg);
}
.hero__top-decor:after {
  right: 0;
  width: 13.125rem;
}
.hero__title {
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 4rem;
  z-index: 3;
}
.hero__descr {
  position: relative;
  z-index: 3;
  color: var(--Base-Dark);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.hero__cards {
  margin: 0.5rem 0 0;
}
.hero__cards-item {
  padding: 1rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100);
  background: var(--Base-White);
}
.hero__cards-item-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__cards-item-value {
  color: var(--Brand-800);
  font-family: var(--font-Cuprum);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.hero__cards-item-text {
  color: var(--Base-Dark);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.8;
}
.hero__btn {
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12.5rem;
  margin-top: 1.31rem;
}

@media (max-width: 767px) {
  .hero {
    overflow: hidden;
  }
  .hero__top {
    padding: 1rem;
  }
  .hero__top-decor::before {
    width: 50%;
  }
  .hero__top-decor:after {
    width: 50%;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__descr {
    font-size: 0.875rem;
  }
  .hero__cards {
    overflow: visible;
  }
  .hero__cards-item {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .hero__cards-item-value {
    font-size: 2rem;
  }
  .hero__btn {
    min-width: unset;
    margin-top: 1rem;
    width: 100%;
  }
}
.stages {
  margin: 7.5rem 0;
}
.stages__title {
  margin-bottom: 1.75rem;
}
.stages__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
.stages__card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.56;
  border-radius: 0.75rem;
  overflow: hidden;
}
.stages__card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.stages__card-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.stages__card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
}
.stages__card-hover + img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.stages__card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}
.stages__card-num {
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  aspect-ratio: 1/1;
  color: var(--Brand-800);
  font-family: var(--font-Cuprum);
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  transition: 0.3s;
}
.stages__card-title {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 57%;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  transition: 0.3s;
}
.stages__card-text {
  padding: 0.75rem;
  margin-top: auto;
  display: grid;
  gap: 0.25rem;
}
.stages__card-text-item {
  width: 100%;
  padding: 0.625rem 0.75rem;
  color: var(--Base-Dark-Opacity);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 1.05rem */
  border-radius: 0.5rem;
  background: rgba(114, 159, 190, 0.1);
  transition: 0.3s;
}

@media (min-width: 768px) {
  .stages__card:hover .stages__card-hover {
    opacity: 1;
  }
  .stages__card.light:hover .stages__card-text-item {
    background: rgba(255, 255, 255, 0.5);
  }
  .stages__card.dark:hover .stages__card-text {
    color: var(--Base-White);
  }
  .stages__card.dark:hover .stages__card-num,
  .stages__card.dark:hover .stages__card-title {
    color: #fff;
  }
  .stages__card.dark:hover .stages__card-text-item {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 767px) {
  .stages {
    margin: 5rem 0;
  }
  .stages__title {
    margin-bottom: 1.5rem;
  }
  .stages__content {
    grid-template-columns: 1fr;
  }
  .stages__card {
    aspect-ratio: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  .stages__card-back, .stages__card-hover {
    display: none;
  }
  .stages__card-main {
    padding: 0.5rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--Neutral-100);
    background: #FFF;
  }
  .stages__card-num {
    margin: 0;
    width: 3rem;
    font-size: 2rem;
    background: #FFF;
  }
  .stages__card-title {
    position: static;
    width: calc(100% - 4rem);
    font-size: 1rem;
  }
  .stages__card-text {
    padding: 0;
    width: 100%;
  }
  .stages__card-text-item {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  .stages__card-text-item br {
    display: none;
  }
}
.pulse {
  margin: 7.5rem 0;
}
.pulse__title {
  margin-bottom: 0.75rem;
  color: var(--Base-Dark);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.pulse__item {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: 0.35s;
}
.pulse__item:not(:first-child) {
  border-top: 1px solid var(--Neutral-200);
}
.pulse__item-left {
  display: flex;
  gap: 1rem;
  width: 41%;
  transition: 0.35s;
}
.pulse__item-icon {
  margin-top: -0.25rem;
  align-self: flex-start;
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
}
.pulse__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pulse__item-title {
  color: var(--Base-Dark);
  font-family: var(--font-Cuprum);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.pulse__item-text {
  width: 50%;
  color: var(--Base-Dark);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transition: 0.3s;
}

@media (min-width: 769px) {
  .pulse__item:hover {
    border-color: var(--Neutral-200);
    background: var(--Base-White);
    border-radius: 0.75rem;
  }
  .pulse__item:hover + .pulse__item {
    border-top: 1px solid transparent;
  }
  .pulse__item:hover .pulse__item-left {
    transform: translate(1.5rem, 0);
  }
  .pulse__item:hover .pulse__item-text {
    transform: translate(-1.5rem, 0);
  }
}
@media (max-width: 767px) {
  .pulse {
    margin: 5rem 0;
  }
  .pulse__title {
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
  }
  .pulse__item {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pulse__item-left {
    width: 100%;
    align-items: center;
  }
  .pulse__item-icon {
    margin-top: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
  .pulse__item-title {
    font-size: 1.75rem;
  }
  .pulse__item-text {
    width: 100%;
    font-size: 1.0625rem;
  }
}
.reviews {
  margin: 7.5rem 0;
}
.reviews__head {
  margin-bottom: 1.62rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__item {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100, #E9EFF5);
  background: #FFF;
}
.reviews__item-title {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.reviews__item-content-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews__item-content-more {
  margin-top: 0.62rem;
  width: 100%;
}
.reviews__item-auth {
  margin-top: 0.62rem;
  padding-top: 0.62rem;
  color: var(--Base-Dark-Opacity);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.225rem */
  border-top: 1px solid var(--Neutral-200);
}

@media (max-width: 767px) {
  .reviews {
    margin: 5rem 0;
    overflow: hidden;
  }
  .reviews__head {
    margin-bottom: 1.5rem;
  }
  .reviews__swiper {
    overflow: visible;
  }
  .reviews__item {
    padding: 0.75rem;
  }
  .reviews__item-title {
    font-size: 0.875rem;
  }
  .reviews__item-content-text {
    font-size: 0.75rem;
  }
  .reviews__item-auth {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 0.75rem;
    font-style: normal;
  }
}
.cta {
  margin: 7.5rem 0;
}
.cta__content {
  position: relative;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-200);
  background: #FFF;
}
.cta__info {
  padding: 2rem;
  width: calc((100% - 0.5rem - 0.25rem) / 2);
  border-radius: 0.5rem;
  background: radial-gradient(50% 50% at 50% 50%, #412BA8 0%, #22194D 100%);
}
.cta__title {
  color: var(--Base-White);
}
.cta__descr {
  margin-top: 1rem;
  color: var(--Base-White);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.cta__form {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cta__decor {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: calc((100% - 0.5rem - 0.25rem) / 2);
  height: calc(100% - 1rem);
  border-radius: 0.5rem;
  overflow: hidden;
}
.cta__decor video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form {
  width: 100%;
}
.form__input {
  padding: 0.625rem 1.25rem;
  display: block;
  width: 42%;
  height: 2.25rem;
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  background: transparent;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  outline: none;
  transition: 0.3s;
  cursor: pointer;
}
.form__input::-moz-placeholder {
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
}
.form__input::placeholder {
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
}
.form__input:hover, .form__input:focus {
  border-color: var(--Brand-200);
}
.form__btn {
  margin-left: 0.25rem;
  height: 2.25rem;
  padding: 0.625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Base-Dark);
  border-radius: 0.5rem;
  background: #FFF;
  cursor: pointer;
  transition: 0.3s;
}
.form__btn:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22.0003 12C22.0003 12.0948 21.9734 12.1875 21.9227 12.2675C21.872 12.3476 21.7996 12.4115 21.714 12.452L3.71402 20.952C3.62412 20.9956 3.52318 21.0112 3.42434 20.9966C3.32549 20.9821 3.2333 20.9381 3.15974 20.8705C3.08619 20.8029 3.03468 20.7147 3.0119 20.6174C2.98913 20.5202 2.99614 20.4183 3.03202 20.325L5.87402 12.698C6.0417 12.2478 6.0417 11.7523 5.87402 11.302L3.03102 3.67504C2.99495 3.58168 2.98785 3.47962 3.01064 3.38216C3.03343 3.28471 3.08505 3.19638 3.15878 3.1287C3.23251 3.06102 3.32492 3.01712 3.42396 3.00273C3.523 2.98834 3.62409 3.00413 3.71402 3.04804L21.714 11.548C21.7996 11.5885 21.872 11.6525 21.9227 11.7325C21.9734 11.8126 22.0003 11.9053 22.0003 12ZM22.0003 12H6.00002' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22.0003 12C22.0003 12.0948 21.9734 12.1875 21.9227 12.2675C21.872 12.3476 21.7996 12.4115 21.714 12.452L3.71402 20.952C3.62412 20.9956 3.52318 21.0112 3.42434 20.9966C3.32549 20.9821 3.2333 20.9381 3.15974 20.8705C3.08619 20.8029 3.03468 20.7147 3.0119 20.6174C2.98913 20.5202 2.99614 20.4183 3.03202 20.325L5.87402 12.698C6.0417 12.2478 6.0417 11.7523 5.87402 11.302L3.03102 3.67504C2.99495 3.58168 2.98785 3.47962 3.01064 3.38216C3.03343 3.28471 3.08505 3.19638 3.15878 3.1287C3.23251 3.06102 3.32492 3.01712 3.42396 3.00273C3.523 2.98834 3.62409 3.00413 3.71402 3.04804L21.714 11.548C21.7996 11.5885 21.872 11.6525 21.9227 11.7325C21.9734 11.8126 22.0003 11.9053 22.0003 12ZM22.0003 12H6.00002' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.form__btn:hover {
  color: var(--Brand-800);
  background: var(--Brand-200);
}

@media (max-width: 767px) {
  .cta {
    margin: 5rem 0;
  }
  .cta__content {
    display: grid;
    gap: 0.5rem;
  }
  .cta__info {
    padding: 1rem;
    width: 100%;
  }
  .cta__title {
    color: var(--Base-White);
    width: 90%;
  }
  .cta__descr {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
  .cta__form {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cta__decor {
    position: static;
    width: 100%;
    height: 5rem;
  }
  .form {
    width: 100%;
  }
  .form__input {
    padding: 0.625rem 1.25rem;
    width: 100%;
    height: 2.5rem;
    font-size: 16px;
    cursor: pointer;
  }
  .form__input::-moz-placeholder {
    font-size: 16px;
  }
  .form__input::placeholder {
    font-size: 16px;
  }
  .form__btn {
    margin-left: 0;
    height: 2.5rem;
    width: 100%;
  }
}
.clients {
  margin: 7.5rem 0;
  overflow: hidden;
}
.clients__title {
  margin-bottom: 1.75rem;
}
.clients__swiper {
  overflow: visible;
}
.clients__swiper:not(:last-child) {
  margin-bottom: 0.75rem;
}
.clients__swiper .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.clients__item {
  margin: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15219rem;
  width: 7.75rem;
  height: 4.25rem;
  border-radius: 0.75rem;
  background: var(--Brand-50, #EDF0FF);
}
.clients__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 767px) {
  .clients {
    margin: 5rem 0;
  }
}
.geography {
  margin: 7.5rem 0;
}
.geography__content {
  position: relative;
  padding: 2.5rem;
  border-radius: 0.75rem;
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #DFE2FF 100%), var(--Neutral-100, #E9EFF5);
}
.geography__title {
  margin-bottom: 1.75rem;
}
.geography__img {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 47%;
  transform: translate(0, -50%);
}
.geography__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.geography__items {
  width: 40%;
}
.geography__item {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.geography__item:not(:last-child) {
  border-bottom: 1px solid var(--Brand-200);
}
.geography__item-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.geography__item-country-flag {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.25rem;
}
.geography__item-country-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.geography__item-country-name {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.geography__item-descr {
  width: 60%;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .geography {
    margin: 5rem 0;
  }
  .geography__content {
    padding: 1.5rem;
  }
  .geography__title {
    margin-bottom: 1.5rem;
  }
  .geography__img {
    position: static;
    top: unset;
    right: unset;
    width: 100%;
    height: auto;
    transform: unset;
  }
  .geography__img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .geography__items {
    width: 100%;
  }
  .geography__item {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .geography__item-descr {
    width: 100%;
  }
}
.footer {
  position: relative;
  padding: 2.37rem 0;
  background: var(--Brand-950--Brand-950, #22194D);
  overflow: hidden;
}
.footer__decor {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}
.footer__decor-item {
  height: 100%;
  width: auto;
}
.footer__decor-item img {
  height: 100%;
  width: auto;
}
.footer__logo {
  position: relative;
  width: 100%;
  height: auto;
}
.footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: var(--Brand-950--Brand-950, #22194D);
}
.footer__bottom {
  margin-top: -10%;
  position: relative;
  padding-top: 3.56rem;
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 1.25rem;
  z-index: 3;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
.footer__nav-col-head {
  margin-bottom: 0.75rem;
}
.footer__nav-col-main {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Base-White);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transition: 0.3s;
}
.footer__nav-col-main:hover {
  color: var(--Brand-200);
}
.footer__nav-col-list {
  display: grid;
  gap: 0.75rem;
}
.footer__nav-col-list-link {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
  transition: 0.3s;
}
.footer__nav-col-list-link:hover {
  color: var(--Brand-200);
}
.footer__col {
  display: grid;
  gap: 0.75rem;
}
.footer__col-head {
  color: var(--Base-White);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.59375rem */
}
.footer__col-item {
  display: flex;
  gap: 0.5rem;
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
}
.footer__col-item:before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer__col-item.--location:before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M16.6666 8.33317C16.6666 12.494 12.0508 16.8273 10.5008 18.1657C10.3564 18.2742 10.1806 18.333 9.99998 18.333C9.81931 18.333 9.64354 18.2742 9.49915 18.1657C7.94915 16.8273 3.33331 12.494 3.33331 8.33317C3.33331 6.56506 4.03569 4.86937 5.28593 3.61913C6.53618 2.36888 8.23187 1.6665 9.99998 1.6665C11.7681 1.6665 13.4638 2.36888 14.714 3.61913C15.9643 4.86937 16.6666 6.56506 16.6666 8.33317Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M9.99998 10.8332C11.3807 10.8332 12.5 9.71388 12.5 8.33317C12.5 6.95246 11.3807 5.83317 9.99998 5.83317C8.61927 5.83317 7.49998 6.95246 7.49998 8.33317C7.49998 9.71388 8.61927 10.8332 9.99998 10.8332Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M16.6666 8.33317C16.6666 12.494 12.0508 16.8273 10.5008 18.1657C10.3564 18.2742 10.1806 18.333 9.99998 18.333C9.81931 18.333 9.64354 18.2742 9.49915 18.1657C7.94915 16.8273 3.33331 12.494 3.33331 8.33317C3.33331 6.56506 4.03569 4.86937 5.28593 3.61913C6.53618 2.36888 8.23187 1.6665 9.99998 1.6665C11.7681 1.6665 13.4638 2.36888 14.714 3.61913C15.9643 4.86937 16.6666 6.56506 16.6666 8.33317Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M9.99998 10.8332C11.3807 10.8332 12.5 9.71388 12.5 8.33317C12.5 6.95246 11.3807 5.83317 9.99998 5.83317C8.61927 5.83317 7.49998 6.95246 7.49998 8.33317C7.49998 9.71388 8.61927 10.8332 9.99998 10.8332Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
}
.footer__col-item.--mail:before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M18.3334 5.8335L10.8409 10.606C10.5866 10.7537 10.2978 10.8315 10.0038 10.8315C9.70974 10.8315 9.42094 10.7537 9.16669 10.606L1.66669 5.8335M3.33335 3.3335H16.6667C17.5872 3.3335 18.3334 4.07969 18.3334 5.00016V15.0002C18.3334 15.9206 17.5872 16.6668 16.6667 16.6668H3.33335C2.41288 16.6668 1.66669 15.9206 1.66669 15.0002V5.00016C1.66669 4.07969 2.41288 3.3335 3.33335 3.3335Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M18.3334 5.8335L10.8409 10.606C10.5866 10.7537 10.2978 10.8315 10.0038 10.8315C9.70974 10.8315 9.42094 10.7537 9.16669 10.606L1.66669 5.8335M3.33335 3.3335H16.6667C17.5872 3.3335 18.3334 4.07969 18.3334 5.00016V15.0002C18.3334 15.9206 17.5872 16.6668 16.6667 16.6668H3.33335C2.41288 16.6668 1.66669 15.9206 1.66669 15.0002V5.00016C1.66669 4.07969 2.41288 3.3335 3.33335 3.3335Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
}
.footer__col-item.--schedule:before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M4.16669 18.3332H15.8334M4.16669 1.6665H15.8334M14.1667 18.3332V14.8565C14.1666 14.4145 13.9909 13.9907 13.6784 13.6782L10 9.99984M10 9.99984L6.32169 13.6782C6.0091 13.9907 5.83345 14.4145 5.83335 14.8565V18.3332M10 9.99984L6.32169 6.3215C6.0091 6.00902 5.83345 5.58516 5.83335 5.14317V1.6665M10 9.99984L13.6784 6.3215C13.9909 6.00902 14.1666 5.58516 14.1667 5.14317V1.6665' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cg opacity='0.5'%3e%3cpath d='M4.16669 18.3332H15.8334M4.16669 1.6665H15.8334M14.1667 18.3332V14.8565C14.1666 14.4145 13.9909 13.9907 13.6784 13.6782L10 9.99984M10 9.99984L6.32169 13.6782C6.0091 13.9907 5.83345 14.4145 5.83335 14.8565V18.3332M10 9.99984L6.32169 6.3215C6.0091 6.00902 5.83345 5.58516 5.83335 5.14317V1.6665M10 9.99984L13.6784 6.3215C13.9909 6.00902 14.1666 5.58516 14.1667 5.14317V1.6665' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/svg%3e");
}
.footer__col a.footer__col-item {
  transition: 0.3s;
}
.footer__col a.footer__col-item:hover {
  color: var(--Brand-200);
}
.footer__col-bottom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__col-btn {
  height: 2.25rem;
}
.footer__col-in {
  height: 2.25rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--Base-White);
  transition: 0.3s;
}
.footer__col-in img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__col-in:hover {
  background: var(--Brand-200);
}

@media (max-width: 767px) {
  .footer {
    padding: 2rem 0;
  }
  .footer__decor {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 2;
  }
  .footer__decor-item {
    height: 100%;
    width: auto;
  }
  .footer__decor-item img {
    height: 100%;
    width: auto;
  }
  .footer__logo {
    position: relative;
    width: 100%;
    height: auto;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer__logo::before {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -1px;
    width: 101%;
    height: 30%;
    background: var(--Brand-950--Brand-950, #22194D);
  }
  .footer__bottom {
    margin-top: -10%;
    padding-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    z-index: 3;
  }
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .footer__nav-col-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Base-White);
  }
  .footer__nav-col-head:after {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    aspect-ratio: 1/1;
    background-color: currentColor;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3e%3cpath d='M4 6.5L8 10.5L12 6.5' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
            mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3e%3cpath d='M4 6.5L8 10.5L12 6.5' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    transition: 0.3s;
  }
  .footer__nav-col-head.is-active:after {
    transform: scale(1, -1);
  }
  .footer__nav-col-main {
    font-size: 0.875rem;
  }
  .footer__nav-col-list {
    display: none;
  }
  .footer__nav-col-list-item {
    margin-bottom: 0.5rem;
  }
  .footer__nav-col-list-link {
    font-size: 0.75rem;
  }
  .footer__col {
    display: grid;
    gap: 0.75rem;
  }
  .footer__col-head {
    font-size: 0.875rem;
  }
  .footer__col-item {
    font-size: 0.75rem;
  }
  .footer__col a.footer__col-item {
    transition: 0.3s;
  }
  .footer__col a.footer__col-item:hover {
    color: var(--Brand-200);
  }
}
.about {
  margin: 7.5rem 0;
}
.about__title {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.about__main {
  margin-bottom: 1.25rem;
}
.about__main:not(.about__main-regular) {
  font-size: 4.75rem;
}
.about__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.about__info.w-60-40 {
  grid-template-columns: 1.5fr 1fr;
}
.about__info.w-50-40 {
  gap: 6rem;
  grid-template-columns: 1fr 0.8fr;
}
.about__info.w-40-50 {
  gap: 6rem;
  grid-template-columns: 40% 50%;
}
.about__btn {
  margin-top: 1.5rem;
}
.about__items {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__items-item {
  width: calc(25% + 3.75rem);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--Base-Dark-Opacity);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  border-radius: 3.25rem;
  border: 1px solid var(--Neutral-300);
}
.about__items-item:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--Brand-800);
  border-radius: 100%;
}
.about__items-item:not(:first-child) {
  margin-left: -1.25rem;
}

@media (max-width: 767px) {
  .about {
    margin: 5rem 0;
  }
  .about__title {
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
  }
  .about__main {
    margin-bottom: 1rem;
  }
  .about__main:not(.about__main-regular) {
    font-size: 2.125rem;
  }
  .about__info {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 1.0625rem;
  }
  .about__info.w-60-40 {
    grid-template-columns: 1fr;
  }
  .about__info.w-50-40, .about__info.w-40-50 {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
  .about__btn {
    margin-top: 1.5rem;
    width: 100%;
  }
  .about__items {
    margin-top: 1rem;
    flex-direction: column;
  }
  .about__items-item {
    width: 100%;
  }
  .about__items-item:not(:first-child) {
    margin-left: 0rem;
  }
}
.parnters {
  margin: 7.5rem 0;
}
.parnters__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
.parnters__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.parnters__title {
  width: 90%;
}
.parnters__descr {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.59375rem */
}
.parnters__item {
  padding: 1rem;
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100, #E9EFF5);
  background: #FFF;
}
.parnters__item-logo {
  height: 3.2rem;
  width: auto;
}
.parnters__item-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.parnters__item-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.225rem */
  opacity: 0.85;
}
.parnters__more {
  margin: 1.75rem auto 0;
}

@media (max-width: 767px) {
  .parnters {
    margin: 5rem 0;
  }
  .parnters__content {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .parnters__info {
    gap: 1rem;
  }
  .parnters__descr {
    font-size: 0.875rem;
  }
  .parnters__item {
    padding: 0.5rem;
    min-height: 5rem;
  }
  .parnters__item-logo {
    height: 2.5rem;
  }
  .parnters__item-text {
    font-size: 0.75rem;
  }
  .parnters__more {
    margin: 1.5rem auto 0;
    width: 100%;
  }
}
.solution {
  margin: 7.5rem 0;
}
.solution__content {
  padding: 2rem;
  border-radius: 0.5rem;
  background: radial-gradient(50% 50% at 50% 50%, #412BA8 0%, #22194D 100%);
}
.solution__title {
  margin-bottom: 1.75rem;
  color: var(--Base-White);
}
.solution__item {
  padding: 1.375rem;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: 0.3s;
  overflow: hidden;
}
.solution__item-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  transition: 0.3s;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.solution__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.solution__item-info {
  transform: translate(0, 3.5rem);
  transition: 0.4s;
}
.solution__item-title {
  margin-bottom: 0.25rem;
  color: var(--Base-White);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.59375rem */
}
.solution__item-descr {
  color: var(--Base-White);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.225rem */
  opacity: 0.8;
}
.solution__item-btn {
  margin-top: 0.63rem;
  width: 100%;
  transform: translate(0, 1rem);
  transition: 0.4s;
}

@media (min-width: 769px) {
  .solution__item:hover {
    background: var(--Base-White);
    border-color: var(--Base-White);
  }
  .solution__item:hover .solution__item-icon {
    filter: unset;
    opacity: 1;
  }
  .solution__item:hover .solution__item-info,
  .solution__item:hover .solution__item-btn {
    transform: unset;
  }
  .solution__item:hover .solution__item-title,
  .solution__item:hover .solution__item-descr {
    color: var(--Base-Dark);
  }
}
@media (max-width: 767px) {
  .solution {
    margin: 5rem 0;
  }
  .solution__content {
    padding: 1rem;
    overflow: hidden;
  }
  .solution__title {
    margin-bottom: 1.25rem;
  }
  .solution__swiper {
    overflow: visible;
  }
  .solution__item {
    padding: 1rem;
  }
  .solution__item.swiper-slide-active {
    background: var(--Base-White);
    border-color: var(--Base-White);
  }
  .solution__item.swiper-slide-active .solution__item-icon {
    filter: unset;
    opacity: 1;
  }
  .solution__item.swiper-slide-active .solution__item-info,
  .solution__item.swiper-slide-active .solution__item-btn {
    transform: unset;
  }
  .solution__item.swiper-slide-active .solution__item-title,
  .solution__item.swiper-slide-active .solution__item-descr {
    color: var(--Base-Dark);
  }
  .solution__item-icon {
    width: 2rem;
    height: 2rem;
  }
  .solution__item-info {
    transform: translate(0, 2.5rem);
  }
}
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
}
.popup__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
}
.popup__content {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 70vh;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  overflow-y: auto;
}
.popup__content::-webkit-scrollbar {
  width: 4px;
}
.popup__content::-webkit-scrollbar-thumb {
  background: var(--Brand-800);
}
.popup__body {
  position: relative;
}
.popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.9375rem;
  height: 2.9375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='46' height='46' viewBox='0 0 46 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 0H38C42.4183 0 46 3.58172 46 8V36H18C13.5817 36 10 32.4183 10 28V0Z' fill='white'/%3e%3cpath d='M34 12L22 24M22 12L34 24' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M45.7068 43.3609L46 46H47V35H36V36L38.6391 36.2932C42.3579 36.7064 45.2936 39.6421 45.7068 43.3609Z' fill='white'/%3e%3cpath d='M9.70676 7.36085L10 10H11V-1H0V0L2.63914 0.293239C6.35792 0.706436 9.29356 3.64208 9.70676 7.36085Z' fill='white'/%3e%3c/svg%3e ");
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.popup__close:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='46' height='46' viewBox='0 0 46 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 0H38C42.4183 0 46 3.58172 46 8V36H18C13.5817 36 10 32.4183 10 28V0Z' fill='white'/%3e%3cpath d='M34 12L22 24M22 12L34 24' stroke='%23412BA8' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M45.7068 43.3609L46 46H47V35H36V36L38.6391 36.2932C42.3579 36.7064 45.2936 39.6421 45.7068 43.3609Z' fill='white'/%3e%3cpath d='M9.70676 7.36085L10 10H11V-1H0V0L2.63914 0.293239C6.35792 0.706436 9.29356 3.64208 9.70676 7.36085Z' fill='white'/%3e%3c/svg%3e ");
}
.popup__shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}
.popup .cta {
  margin: 0;
}
.popup.popup__review .popup__close {
  top: 0.25rem;
  right: 0.25rem;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='36' height='36' rx='8' fill='%23E9EFF5'/%3e%3cpath d='M24 12L12 24M12 12L24 24' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.popup.popup__review .popup__close:hover {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='36' height='36' rx='8' fill='%23CEDDE9'/%3e%3cpath d='M24 12L12 24M12 12L24 24' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.popup.popup__review .popup__content {
  width: 31.25rem;
}
.popup.popup__review .reviews__item-content-text {
  -webkit-line-clamp: unset;
  display: block;
  -webkit-box-orient: unset;
  overflow: unset;
}

@media (max-width: 767px) {
  .popup__content {
    max-height: 80vh;
  }
  .popup.popup__review .popup__close {
    width: 2rem;
    height: 2rem;
  }
  .popup.popup__review .popup__content {
    width: 90%;
  }
}
.purple-banner {
  margin: 7.5rem 0;
}
.purple-banner__content {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--Base-White);
  border-radius: 0.5rem;
  background: radial-gradient(50% 50% at 50% 50%, #412BA8 0%, #22194D 100%);
}
.purple-banner__content.--col {
  flex-direction: column;
  gap: 0.75rem;
}
.purple-banner__right {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.purple-banner__title {
  margin-bottom: 1rem;
  color: var(--Base-White);
}
.purple-banner__btn {
  margin-top: auto;
}
.purple-banner__left {
  width: 66%;
}
.purple-banner__text {
  font-family: var(--font-Cuprum);
  font-size: 1.75rem;
  line-height: 120%;
}
.purple-banner__text span {
  color: var(--Brand-300);
}
.purple-banner__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.purple-banner__items-item {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.56rem 1.5rem;
  background: var(--Base-White);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 3.125rem;
  background: rgba(255, 255, 255, 0.2);
}
.purple-banner__items-item:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  background: var(--Base-White);
  border-radius: 100%;
}

@media (max-width: 767px) {
  .purple-banner {
    margin: 5rem 0;
  }
  .purple-banner.with-btn .purple-banner__content {
    position: relative;
    padding: 3rem 1.5rem 7rem;
  }
  .purple-banner__content {
    padding: 3rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  .purple-banner__content.--col {
    gap: 1.25rem;
  }
  .purple-banner__right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .purple-banner__title {
    margin-bottom: 0rem;
  }
  .purple-banner__btn {
    position: absolute;
    left: 1.5rem;
    bottom: 3rem;
    width: calc(100% - 3rem);
  }
  .purple-banner__left {
    width: 100%;
  }
  .purple-banner__items-item {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .purple-banner__items-item:before {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    aspect-ratio: 1/1;
    background: var(--Base-White);
    border-radius: 100%;
  }
}
.page-hero {
  margin: 1.5rem 0 7.5rem;
}
.page-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.25rem;
}
.page-hero__top-text {
  font-size: 1.0625rem;
  line-height: 150%;
  font-weight: 500;
}
.page-hero__top-text.w-70 {
  margin-left: auto;
  width: 66%;
}
.page-hero__top-text.w-80 {
  margin-left: auto;
  width: 82%;
}
.page-hero__title {
  margin-bottom: 1rem;
  font-family: var(--font-Cuprum);
  font-size: 4rem;
  line-height: 100%;
}
.page-hero__descr {
  font-family: var(--font-Cuprum);
  font-size: 2.25rem;
  line-height: 120%;
}
.page-hero__img {
  margin-top: 1.81rem;
  height: 16.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .page-hero {
    margin: 1.5rem 0 5rem;
  }
  .page-hero__top {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .page-hero__top-text {
    font-size: 1.0625rem;
    line-height: 150%;
    font-weight: 500;
  }
  .page-hero__top-text.w-70, .page-hero__top-text.w-80 {
    margin-left: unset;
    width: 100%;
  }
  .page-hero__title {
    font-size: 3rem;
  }
  .page-hero__descr {
    font-size: 1.75rem;
  }
  .page-hero__img {
    margin-top: 1rem;
    height: 12.5rem;
  }
}
.text-block {
  margin: 7.5rem 0;
}
.text-block__content {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 1.5rem;
}
.text-block__info {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--Neutral-100);
}
.text-block__title {
  margin-bottom: 2rem;
}
.text-block__text {
  display: grid;
  gap: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
}
.text-block__img {
  position: sticky;
  top: 5rem;
  width: 100%;
  aspect-ratio: 0.85/1;
  border-radius: 0.5rem;
  overflow: hidden;
}
.text-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .text-block {
    margin: 5rem 0;
  }
  .text-block__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .text-block__info {
    padding: 0rem;
    border-radius: unset;
    border: unset;
  }
  .text-block__title {
    margin-bottom: 0.75rem;
  }
  .text-block__text {
    gap: 1rem;
  }
  .text-block__img {
    display: none;
  }
}
.offers {
  margin: 7.5rem 0;
}
.offers__title {
  margin-bottom: 1.75rem;
}
.offers__item {
  position: relative;
  aspect-ratio: 1.416/1;
  border-radius: 0.75rem;
  overflow: hidden;
}
.offers__item-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.offers__item-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.offers__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
}
.offers__item-hover + img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.offers__item-main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
}
.offers__item-num {
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  aspect-ratio: 1/1;
  color: var(--Brand-800);
  font-family: var(--font-Cuprum);
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  transition: 0.3s;
}
.offers__item-title {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 57%;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  transition: 0.3s;
}
.offers__item-text {
  padding: 1.25rem 0.75rem 0.75rem;
  display: grid;
  gap: 0.25rem;
}
.offers__item-text p {
  color: var(--Base-Dark-Opacity);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

@media (min-width: 769px) {
  .offers__item:hover .offers__item-hover {
    opacity: 1;
  }
  .offers__item.dark:hover .stages__card-text {
    color: var(--Base-White);
  }
  .offers__item.dark:hover .offers__item-num,
  .offers__item.dark:hover .offers__item-title {
    color: #fff;
  }
  .offers__item.dark:hover .offers__item-text p {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .offers {
    margin: 5rem 0;
    overflow: hidden;
  }
  .offers__title {
    margin-bottom: 1.5rem;
  }
  .offers__swiper {
    overflow: visible;
  }
  .offers__item-text {
    padding-top: 2rem;
  }
  .offers__item-text p {
    font-size: 1rem;
  }
}
.carreers {
  margin: 7.5rem 0;
}
.carreers__title {
  margin-bottom: 1.75rem;
}
.carreers__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
.carreers__card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.321/1;
  border-radius: 0.75rem;
  overflow: hidden;
}
.carreers__card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carreers__card-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.carreers__card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
}
.carreers__card-hover + img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.carreers__card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
}
.carreers__card-num {
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  aspect-ratio: 1/1;
  color: var(--Brand-800);
  font-family: var(--font-Cuprum);
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  transition: 0.3s;
}
.carreers__card-title {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 57%;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  transition: 0.3s;
}
.carreers__card-text {
  padding: 1.75rem 0.75rem 0.75rem;
  display: grid;
  gap: 0.75rem;
}
.carreers__card-text p {
  color: var(--Base-Dark-Opacity);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.carreers__card-dwnld {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--Base-White);
  background: var(--Neutral-300);
  border-radius: 0.5rem;
  transition: 0.3s;
}
.carreers__card-dwnld:hover {
  background: var(--Neutral-400);
}
.carreers__card-dwnld:before, .carreers__card-dwnld:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.carreers__card-dwnld:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_455_1954)'%3e%3cpath d='M2.28613 12.3868L8.68613 4.57251L16.0004 9.65037V14.8606C16.0004 15.7445 15.284 16.4609 14.4004 16.4609H5.02885C3.51412 16.4609 2.28613 15.2326 2.28613 13.7175V12.3868Z' fill='url(%23paint0_radial_455_1954)'/%3e%3cpath d='M2.28613 6.87639C2.28613 5.73993 3.20729 4.81878 4.34342 4.81878H13.6639L16.0004 3.65796V9.37351C16.0004 10.2575 15.284 10.9738 14.4004 10.9738H5.02885C3.51412 10.9738 2.28613 12.2022 2.28613 13.7172V6.87607V6.87639Z' fill='url(%23paint1_linear_455_1954)'/%3e%3cpath d='M2.28613 6.87639C2.28613 5.73993 3.20729 4.81878 4.34342 4.81878H13.6639L16.0004 3.65796V9.37351C16.0004 10.2575 15.284 10.9738 14.4004 10.9738H5.02885C3.51412 10.9738 2.28613 12.2022 2.28613 13.7172V6.87607V6.87639Z' fill='url(%23paint2_radial_455_1954)' fill-opacity='0.6'/%3e%3cpath d='M2.28613 6.87639C2.28613 5.73993 3.20729 4.81878 4.34342 4.81878H13.6639L16.0004 3.65796V9.37351C16.0004 10.2575 15.284 10.9738 14.4004 10.9738H5.02885C3.51412 10.9738 2.28613 12.2022 2.28613 13.7172V6.87607V6.87639Z' fill='url(%23paint3_radial_455_1954)' fill-opacity='0.1'/%3e%3cpath d='M2.28613 2.74337C2.28613 1.22831 3.51412 0 5.02885 0H14.4004C15.284 0 16.0004 0.716379 16.0004 1.60033V3.88642C16.0004 4.77037 15.284 5.48675 14.4004 5.48675H5.02885C3.51412 5.48675 2.28613 6.71506 2.28613 8.23012V2.74337Z' fill='url(%23paint4_linear_455_1954)'/%3e%3cpath d='M2.28613 2.74337C2.28613 1.22831 3.51412 0 5.02885 0H14.4004C15.284 0 16.0004 0.716379 16.0004 1.60033V3.88642C16.0004 4.77037 15.284 5.48675 14.4004 5.48675H5.02885C3.51412 5.48675 2.28613 6.71506 2.28613 8.23012V2.74337Z' fill='url(%23paint5_radial_455_1954)' fill-opacity='0.8'/%3e%3cpath d='M5.82848 7.77319H1.48576C0.665198 7.77319 0 8.43839 0 9.25895V13.6033C0 14.4239 0.665198 15.0891 1.48576 15.0891H5.82848C6.64904 15.0891 7.31424 14.4239 7.31424 13.6033V9.25895C7.31424 8.43839 6.64904 7.77319 5.82848 7.77319Z' fill='url(%23paint6_radial_455_1954)'/%3e%3cpath d='M5.82848 7.77319H1.48576C0.665198 7.77319 0 8.43839 0 9.25895V13.6033C0 14.4239 0.665198 15.0891 1.48576 15.0891H5.82848C6.64904 15.0891 7.31424 14.4239 7.31424 13.6033V9.25895C7.31424 8.43839 6.64904 7.77319 5.82848 7.77319Z' fill='url(%23paint7_radial_455_1954)' fill-opacity='0.65'/%3e%3cpath d='M6.16505 9.34082L5.26497 13.5209L4.18876 13.5216L3.6574 11.0132L3.10102 13.5216H2.0146L1.14941 9.34148H2.03666L2.57032 12.1L3.10069 9.34148H4.18843L4.74382 12.1L5.26464 9.34148L6.16472 9.34082H6.16505Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cradialGradient id='paint0_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(15.6586 16.4441) scale(21.7484 9.21427)'%3e%3cstop offset='0.18' stop-color='%231657F4'/%3e%3cstop offset='0.57' stop-color='%230036C4'/%3e%3c/radialGradient%3e%3clinearGradient id='paint1_linear_455_1954' x1='2.28613' y1='8.68775' x2='12.7888' y2='8.68775' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%2366C0FF'/%3e%3cstop offset='0.26' stop-color='%230094F0'/%3e%3c/linearGradient%3e%3cradialGradient id='paint2_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(16.2582 3.70403) rotate(133.54) scale(13.4259 33.0662)'%3e%3cstop offset='0.14' stop-color='%23D471FF'/%3e%3cstop offset='0.83' stop-color='%23509DF5' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint3_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(13.8912 10.5208) rotate(90) scale(8.51463 46.4692)'%3e%3cstop offset='0.28' stop-color='%234F006F' stop-opacity='0'/%3e%3cstop offset='1' stop-color='%234F006F'/%3e%3c/radialGradient%3e%3clinearGradient id='paint4_linear_455_1954' x1='2.28778' y1='4.01514' x2='15.9984' y2='4.24165' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%239DEAFF'/%3e%3cstop offset='0.2' stop-color='%233BD5FF'/%3e%3c/linearGradient%3e%3cradialGradient id='paint5_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(16.2663 0.103685) rotate(166.85) scale(13.4853 32.3025)'%3e%3cstop offset='0.06' stop-color='%23E4A7FE'/%3e%3cstop offset='0.54' stop-color='%23E4A7FE' stop-opacity='0'/%3e%3c/radialGradient%3e%3cradialGradient id='paint6_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(0.128835 8.03711) rotate(45.01) scale(10.3438)'%3e%3cstop offset='0.08' stop-color='%23367AF2'/%3e%3cstop offset='0.87' stop-color='%23001A8F'/%3e%3c/radialGradient%3e%3cradialGradient id='paint7_radial_455_1954' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(3.59651 12.1632) rotate(90) scale(5.12158 5.83494)'%3e%3cstop offset='0.59' stop-color='%232763E5' stop-opacity='0'/%3e%3cstop offset='0.97' stop-color='%2358AAFE'/%3e%3c/radialGradient%3e%3cclipPath id='clip0_455_1954'%3e%3crect width='16' height='16.4609' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
}
.carreers__card-dwnld:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 10V2M8 10L4.66667 6.66667M8 10L11.3333 6.66667M14 10V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V10' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

@media (max-width: 767px) {
  .carreers {
    margin: 5rem 0;
  }
  .carreers__title {
    margin-bottom: 1.5rem;
  }
  .carreers__content {
    grid-template-columns: 1fr;
  }
  .carreers__card {
    aspect-ratio: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  .carreers__card-back, .carreers__card-hover {
    display: none;
  }
  .carreers__card-main {
    padding: 0.5rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--Neutral-100);
    background: #FFF;
  }
  .carreers__card-num {
    margin: 0;
    width: 3rem;
    font-size: 2rem;
    background: #FFF;
  }
  .carreers__card-title {
    position: static;
    width: calc(100% - 4rem);
    font-size: 1rem;
  }
  .carreers__card-title br {
    display: none;
  }
  .carreers__card-text {
    padding: 0;
    width: 100%;
  }
  .carreers__card-text p {
    font-size: 0.875rem;
  }
  .carreers__card-dwnld {
    justify-content: center;
  }
}
.map {
  margin: 2.5rem 0 7.5rem 0;
}
.map__title {
  margin-bottom: 1.25rem;
  font-family: var(--font-Cuprum);
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.map__content {
  display: flex;
  position: relative;
  padding: 0.75rem;
  width: 100%;
  min-height: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.map__content #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.map__info {
  position: relative;
  z-index: 3;
  width: 35%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  background: #FFF;
}
.map__info-title {
  margin-bottom: 0.75rem;
  font-family: var(--font-Cuprum);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}
.map__info-items {
  margin-bottom: 0.75rem;
  display: grid;
  gap: 0.25rem;
}
.map__info-item {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #F1F5F8;
}
.map__info-item-title {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.4;
}
.map__info-item-value {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 129%;
}
.map__info-btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .map {
    margin: 1.75rem 0 5rem 0;
  }
  .map__title {
    font-size: 3rem;
  }
  .map__content {
    min-height: 37.5rem;
  }
  .map__info {
    margin-top: auto;
    width: 100%;
    height: 70%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    background: #FFF;
  }
  .map__info-title {
    font-size: 2.375rem;
  }
}
.data-system {
  margin: 7.5rem 0;
}
.data-system__content {
  position: relative;
}
.data-system__title {
  padding: 1.5rem 1.5rem 1.25rem 0.5625rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: calc((100% - 3.75rem) / 4);
  min-height: 15rem;
}
.data-system__item {
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100, #E9EFF5);
  background: #FFF;
}
.data-system__item:first-child {
  opacity: 0;
  pointer-events: none;
}
.data-system__item-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  background: var(--Brand-50);
  border-radius: 0.5rem;
}
.data-system__item-icon img {
  width: 1.77738rem;
  height: 1.77738rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.data-system__item-text {
  margin-top: auto;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

@media (min-width: 768px) {
  .data-system__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .data-system {
    margin: 5rem 0;
    overflow: hidden;
  }
  .data-system__title {
    margin-bottom: 1.25rem;
    padding: unset;
    position: static;
    top: unset;
    left: unset;
    display: flex;
    align-items: center;
    width: 90%;
    min-height: unset;
  }
  .data-system__swiper {
    overflow: visible;
  }
  .data-system__item {
    padding: 1rem;
    min-height: 13.75rem;
  }
  .data-system__item:first-child {
    display: none;
  }
}
.platform {
  margin: 7.5rem 0;
}
.platform__content {
  position: relative;
  height: 42.1875rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.platform__content-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.platform__content-back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.platform__title {
  position: absolute;
  width: 13.875rem;
  top: 39%;
  left: 39%;
  text-align: center;
  color: var(--Brand-800);
  z-index: 3;
}
.platform__list-item {
  width: 5.3125rem;
  position: absolute;
  color: var(--Base-Dark);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  z-index: 3;
}
.platform__list-item:nth-child(1) {
  top: 37%;
  left: 67%;
}
.platform__list-item:nth-child(2) {
  top: 81%;
  left: 53%;
}
.platform__list-item:nth-child(3) {
  top: 62%;
  left: 25%;
}
.platform__list-item:nth-child(4) {
  top: 37%;
  left: 25%;
}
.platform__list-item:nth-child(5) {
  top: 81%;
  left: 38%;
}
.platform__list-item:nth-child(6) {
  top: 61%;
  left: 64%;
  width: 8rem;
}
.platform__list-item:nth-child(7) {
  top: 14%;
  left: 35%;
  width: 9rem;
}
.platform__list-item:nth-child(8) {
  top: 14%;
  left: 52%;
  width: 10rem;
}

@media (max-width: 767px) {
  .platform {
    margin: 5rem 0;
    overflow: hidden;
  }
  .platform__content {
    padding: 2.5rem 1.25rem;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .platform__title {
    margin-bottom: 1.25rem;
    position: relative;
    width: 85%;
    top: unset;
    left: unset;
    text-align: left;
  }
  .platform__list {
    position: relative;
    z-index: 3;
    border-radius: 1.875rem;
    border: 3px solid #FFF;
    background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #EDF0FF 100%);
  }
  .platform__list-item {
    position: relative;
    padding: 1.25rem 1.5rem;
    font-size: 1.0625rem;
  }
  .platform__list-item br {
    display: none;
  }
  .platform__list-item:nth-child(1), .platform__list-item:nth-child(2), .platform__list-item:nth-child(3), .platform__list-item:nth-child(4), .platform__list-item:nth-child(5), .platform__list-item:nth-child(6), .platform__list-item:nth-child(7), .platform__list-item:nth-child(8) {
    width: 100%;
    top: unset;
    left: unset;
  }
  .platform__list-item:not(:last-child) {
    border-bottom: 3px solid #FFF;
  }
}
.vendors {
  margin: 7.5rem 0;
}
.vendors__content {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1.25rem;
}
.vendors__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vendors__title {
  margin-bottom: 0.25rem;
}
.vendors__text {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.vendors__swiper {
  width: 100%;
}
.vendors__item {
  padding: 1rem;
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid var(--Neutral-100, #E9EFF5);
  background: #FFF;
}
.vendors__item-logo {
  width: 7.6875rem;
  height: 3.20869rem;
  flex-shrink: 0;
}
.vendors__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.vendors__item-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .vendors {
    margin: 5rem 0;
    overflow: hidden;
  }
  .vendors__content {
    display: block;
  }
  .vendors__title {
    margin-bottom: 1.25rem;
  }
  .vendors__text {
    display: none;
  }
  .vendors__swiper {
    width: 100%;
    overflow: visible;
  }
}
.devices {
  margin: 7.5rem 0;
}
.devices__title {
  margin-bottom: 1.75rem;
}
.devices__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.devices__item {
  display: flex;
  flex-direction: column;
}
.devices__item-img {
  height: 13.375rem;
  border-radius: 0.5rem;
  border: 1px solid var(--Neutral-100, #E9EFF5);
  overflow: hidden;
}
.devices__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.devices__item-title {
  flex-grow: 1;
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 767px) {
  .devices {
    margin: 5rem 0;
  }
  .devices__title {
    margin-bottom: 1.25rem;
  }
  .devices__content {
    grid-template-columns: 1fr;
  }
  .devices__item.mob-hide {
    display: none;
  }
}
.why {
  margin: 7.5rem 0;
}
.why__content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(57.41% 57.41% at 50% 42.59%, #FFF 0%, #DFE2FF 100%), #FFF;
}
.why__text {
  width: 19.5rem;
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  border-radius: 0.5rem;
  border: 2px solid var(--Base-White);
  background: radial-gradient(50% 50% at 50% 50%, #FFF 0%, #EDF0FF 100%), #FFF;
}
.why__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.25rem;
  height: 7rem;
  color: var(--Brand-800);
  border-radius: 0.5rem;
  background: #FFF;
}
.why__title:before, .why__title:after {
  content: "";
  position: absolute;
  width: 5.9375rem;
  height: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='97' height='15' viewBox='0 0 97 15' fill='none'%3e%3cpath d='M0.999917 6.37109C0.447633 6.37114 -4.56688e-05 6.81889 0 7.37118C4.56688e-05 7.92346 0.447798 8.37114 1.00008 8.37109L1 7.37109L0.999917 6.37109ZM96.7072 8.07029C97.0977 7.67973 97.0976 7.04656 96.707 6.65607L90.3426 0.292638C89.952 -0.097854 89.3188 -0.0978016 88.9283 0.292755C88.5379 0.683312 88.5379 1.31648 88.9285 1.70697L94.5858 7.36336L88.9294 13.0207C88.5389 13.4112 88.539 14.0444 88.9295 14.4349C89.3201 14.8254 89.9532 14.8253 90.3437 14.4348L96.7072 8.07029ZM1 7.37109L1.00008 8.37109L96.0001 8.36324L96 7.36324L95.9999 6.36324L0.999917 6.37109L1 7.37109Z' fill='%23412BA8'/%3e%3c/svg%3e");
}
.why__title::before {
  left: calc(100% + 0.8rem);
}
.why__title:after {
  right: calc(100% + 0.8rem);
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .why {
    margin: 5rem 0;
  }
  .why__content {
    margin-left: -1rem;
    width: calc(100% + 2rem);
    padding: 2.5rem 1.25rem;
    flex-direction: column;
    gap: 1rem;
  }
  .why__text {
    width: 80%;
    padding: 1.25rem;
  }
  .why__text:first-child {
    margin-right: auto;
  }
  .why__text:last-child {
    margin-left: auto;
  }
  .why__title {
    margin-bottom: 3.25rem;
    order: -1;
    padding: 1.25rem 1rem;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .why__title::before {
    top: calc(100% + 0.5rem);
    height: 3.25rem;
    width: 2rem;
    left: 1rem;
    transform: rotate(0deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15' height='54' viewBox='0 0 15 54' fill='none'%3e%3cpath d='M8.36426 1C8.36426 0.447715 7.91654 2.41411e-08 7.36426 0C6.81197 -2.41411e-08 6.36426 0.447715 6.36426 1L7.36426 1L8.36426 1ZM6.65715 53.7071C7.04767 54.0976 7.68084 54.0976 8.07136 53.7071L14.4353 47.3431C14.8258 46.9526 14.8258 46.3195 14.4353 45.9289C14.0448 45.5384 13.4116 45.5384 13.0211 45.9289L7.36426 51.5858L1.7074 45.9289C1.31688 45.5384 0.683712 45.5384 0.293188 45.9289C-0.0973364 46.3195 -0.0973364 46.9526 0.293188 47.3431L6.65715 53.7071ZM7.36426 1L6.36426 1L6.36426 53L7.36426 53L8.36426 53L8.36426 1L7.36426 1Z' fill='%23412BA8'/%3e%3c/svg%3e");
  }
  .why__title:after {
    top: calc(100% + 0.5rem);
    height: 11.5rem;
    width: 2rem;
    right: 1rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='15' height='206' viewBox='0 0 15 206' fill='none'%3e%3cpath d='M8.36426 1C8.36426 0.447715 7.91654 2.41411e-08 7.36426 0C6.81197 -2.41411e-08 6.36426 0.447715 6.36426 1L7.36426 1L8.36426 1ZM6.65714 205.707C7.04767 206.098 7.68083 206.098 8.07136 205.707L14.4353 199.343C14.8258 198.953 14.8258 198.319 14.4353 197.929C14.0448 197.538 13.4116 197.538 13.0211 197.929L7.36425 203.586L1.7074 197.929C1.31687 197.538 0.683706 197.538 0.293181 197.929C-0.097343 198.319 -0.097343 198.953 0.293181 199.343L6.65714 205.707ZM7.36426 1L6.36426 1L6.36425 205L7.36425 205L8.36425 205L8.36426 1L7.36426 1Z' fill='%23412BA8'/%3e%3c/svg%3e");
    transform: rotate(0deg);
  }
}
.error {
  margin: 1.5rem 0 7.5rem;
}
.error__content {
  margin: 0 auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.75rem;
  height: 5.75rem;
  flex-shrink: 0;
  background-color: var(--Brand-50);
  border-radius: 1.875rem;
}
.error__img:before {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='99' height='99' viewBox='0 0 99 99' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M49.2207 0V98.4375' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3cpath d='M24.6113 6.59264L73.8287 91.8446' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3cpath d='M6.59375 24.6097L91.8457 73.8271' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3cpath d='M0.00195312 49.2174L98.4395 49.2201' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3cpath d='M6.59375 73.8271L91.8457 24.6097' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3cpath d='M24.6087 91.8431L73.8304 6.59362' stroke='%23412BA8' stroke-width='7.5' stroke-miterlimit='10'/%3e%3c/svg%3e ");
}
.error__title {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-Cuprum);
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.error__text {
  margin-top: 0.88rem;
  text-align: center;
  font-family: var(--font-Cuprum);
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.error__btn {
  margin-top: 2.25rem;
  min-width: 16rem;
}

@media (max-width: 767px) {
  .error {
    margin: 2.5rem 0 5rem;
  }
  .error__content {
    width: 100%;
  }
  .error__title {
    font-size: 3rem;
  }
  .error__text {
    font-size: 1.75rem;
  }
  .error__btn {
    margin-top: 1.5rem;
    min-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */