@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ibg img {
  display: none;
}

._button {
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #014baa;
  font-weight: 500;
  font-size: 1.5rem;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid #014baa;
}
._button_big {
  padding: 1.375rem 1.25rem;
}

._button:hover {
  box-shadow: 0 0 0px 0 #add1ff, 0 0 1px 0 #add1ff, 0 0 3px 0 #add1ff, 0 0 7px 0 #add1ff, 0 0 11px 0 #add1ff, 0 0 20px 0 #add1ff;
  background: #014baa;
}

._button:active {
  color: #014baa;
  border: 1px solid #014baa;
  background-color: #faf5ff;
}

._h2 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 145%;
  color: #014baa;
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  ._h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.margin_b {
  margin-bottom: 3.75rem;
}
@media (max-width: 767.98px) {
  .margin_b {
    margin-bottom: 2.5rem;
  }
}

.help {
  position: fixed;
  right: 0.9375rem;
  bottom: 0.9375rem;
  color: #00152f;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1), 6px 8px 10px 0 rgba(0, 0, 0, 0.09), 14px 19px 14px 0 rgba(0, 0, 0, 0.05), 25px 33px 16px 0 rgba(0, 0, 0, 0.01), 38px 52px 18px 0 rgba(0, 0, 0, 0);
  background: #ffffff;
  border-radius: 0.625rem;
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.help:hover {
  opacity: 0.7;
}

:root {
  font-size: 16px;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

html {
  font-size: 16px;
}
html.lock {
  overflow: hidden;
}

body {
  background-color: #faf5ff;
  color: #00152f;
  font-size: 1.25rem;
  font-family: "Inter", sans-serif;
}
body._lock {
  overflow: hidden;
}
body.lock {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 0.5rem;
}
body::-webkit-scrollbar-thumb {
  background-color: #014baa;
  border-radius: 1.25rem;
}
body ::-webkit-scrollbar-track {
  background-color: #faf5ff;
  border-radius: 1.25rem;
}

main {
  flex: 100%;
  margin-bottom: 6.25rem;
}
@media (max-width: 767.98px) {
  main {
    margin-bottom: 2.5rem;
  }
}

[class*=__container] {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0px 0.9375rem;
}

.header {
  margin-bottom: 6.25rem;
  padding: 0.625rem 0px;
  position: relative;
}
@media (max-width: 991.98px) {
  .header {
    padding: 1rem 0px;
    margin-bottom: 1.6875rem;
  }
}
.header__burger {
  padding: 0.625rem 0px 0.625rem 0px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  width: 6.25rem;
}
@media (max-width: 991.98px) {
  .header__logo img {
    width: 3.85rem;
  }
}
.menu__body {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 991.98px) {
  .menu__body {
    transition: transform 0.8s;
    position: fixed;
    width: 100%;
    height: auto;
    top: 84px;
    right: 0;
    z-index: 15;
    transform: translate(100%, 0%);
  }
  .menu__body._active {
    transform: translate(0px, 0%);
  }
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  row-gap: 1rem;
}
@media (max-width: 991.98px) {
  .menu__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    background-color: #ffffff;
  }
}
@media (max-width: 991.98px) {
  .menu__item {
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    width: 100%;
  }
  .menu__item:first-of-type {
    border-top: 1px solid #d9d9d9;
  }
}
.menu__link {
  font-weight: 400;
  font-size: 1.25rem;
  color: #00152f;
  position: relative;
}
.menu__link:hover::before {
  width: 100%;
}
@media (max-width: 991.98px) {
  .menu__link {
    font-weight: 600;
    font-size: 0.875rem;
    color: #014baa;
  }
}
.menu__link::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #00152f;
  position: absolute;
  bottom: -4px;
  transition: all 0.3s;
  left: 0;
}
@media (max-width: 767.98px) {
  .menu__link::before {
    display: none;
  }
}
@media (max-width: 1179.98px) {
  .menu__button {
    display: none;
  }
}

.header__burger {
  display: none;
}
@media (max-width: 991.98px) {
  .header__burger {
    display: block;
    position: absolute;
    width: 1.875rem;
    height: 1.4375rem;
    cursor: pointer;
    z-index: 20;
    right: 0.9375rem;
    top: 50%;
    transform: translate(0, -50%);
  }
  .header__burger span {
    transition: 0.3s all;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 3px;
    min-height: 3px;
    max-height: 3px;
    border-radius: 0.625rem;
    background-color: #014baa;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active {
    height: 1.0625rem;
  }
  .header__burger._active span {
    transform: scale(0);
    background-color: #014baa;
  }
  .header__burger._active span:first-child {
    transform: rotate(-45deg);
    top: 0.5rem;
  }
  .header__burger._active span:last-child {
    transform: rotate(45deg);
    bottom: 0.5rem;
  }
}

.intro {
  margin-bottom: 2.8125rem;
}
.intro__container {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1179.98px) {
  .intro__container {
    gap: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .intro__container {
    display: block;
  }
}
.intro__content {
  flex: 0 1 57%;
}
@media (max-width: 767.98px) {
  .intro__content {
    margin-bottom: 0.625rem;
  }
}
.intro__suptitle {
  padding: 0.3125rem 0.6875rem;
  background-color: #8774e1;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .intro__suptitle {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
.intro__title {
  font-weight: 800;
  font-size: 3rem;
  line-height: 145%;
  color: #8774e1;
  margin-bottom: 0.75rem;
}
.intro__title span {
  color: #014baa;
}
@media (max-width: 1179.98px) {
  .intro__title {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .intro__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.intro__description {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  max-width: 650px;
  margin-bottom: 1.25rem;
}
@media (max-width: 1179.98px) {
  .intro__description {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .intro__description {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
.intro__icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .intro__icons {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .intro__button {
    font-weight: 500;
    font-size: 1rem;
    padding: 0.875rem 1.3125rem;
  }
}
.intro__image {
  flex: 0 1 43%;
}
@media (max-width: 767.98px) {
  .intro__image {
    text-align: center;
  }
}
.intro__image img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .intro__image img {
    width: 85%;
  }
}

.sources__body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.125rem;
}
@media (max-width: 767.98px) {
  .sources__body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 246px;
    margin: 0 auto;
  }
}
.sources__item {
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1), 6px 8px 10px 0 rgba(0, 0, 0, 0.09), 14px 19px 14px 0 rgba(0, 0, 0, 0.05), 25px 33px 16px 0 rgba(0, 0, 0, 0.01), 38px 52px 18px 0 rgba(0, 0, 0, 0);
  background: #ffffff;
  text-align: center;
  padding: 0.8125rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.625rem;
}
@media (max-width: 767.98px) {
  .sources__item {
    flex: 0 1 117px;
    padding: 0.25rem 0.25rem;
  }
}
.sources__name {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  margin-bottom: 0.75rem;
}
@media (max-width: 767.98px) {
  .sources__name {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }
}
.cases__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cases__column:first-of-type {
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .cases__column:first-of-type {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .cases__column {
    gap: 0.5rem;
  }
}
.cases__subtitle {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 145%;
  color: #014baa;
}
@media (max-width: 767.98px) {
  .cases__subtitle {
    font-size: 0.875rem;
  }
}
.cases__image img {
  width: 100%;
}

.verticals__body {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .verticals__body {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    row-gap: 0.4375rem;
  }
}
.verticals__item {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  padding: 0.25rem 1.375rem;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 40px;
}
.verticals__item.active {
  background: #8774e1;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .verticals__item {
    padding: 2px 1rem;
    font-size: 0.875rem;
  }
}

.pricing__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pricing__item {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1), 6px 8px 10px 0 rgba(0, 0, 0, 0.09), 14px 19px 14px 0 rgba(0, 0, 0, 0.05), 25px 33px 16px 0 rgba(0, 0, 0, 0.01), 38px 52px 18px 0 rgba(0, 0, 0, 0);
  background: #ffffff;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .pricing__item:hover {
    background: #faf5ff;
  }
}
@media (max-width: 767.98px) {
  .pricing__item {
    padding: 1rem 0.625rem 0.625rem 0.625rem;
  }
}
.pricing__name {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 155%;
  color: #014baa;
  margin-bottom: 0.75rem;
}
@media (max-width: 767.98px) {
  .pricing__name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.pricing__price {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .pricing__price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
  }
}
.pricing__discount {
  font-weight: 400;
  font-size: 1.25rem;
  background-color: #8774e1;
  padding: 0.125rem 0.625rem;
  border-radius: 2.5rem;
  line-height: 155%;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .pricing__discount {
    font-size: 0.75rem;
  }
}
.pricing__time {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  margin-bottom: 0.75rem;
}
@media (max-width: 767.98px) {
  .pricing__time {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.pricing__line {
  width: calc(100% + 40px);
  height: 1px;
  background-color: #d9d9d9;
  transform: translate(-1.25rem, 0);
  margin-bottom: 0.75rem;
}
@media (max-width: 767.98px) {
  .pricing__line {
    margin-bottom: 0.5rem;
  }
}
.pricing__description {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .pricing__description {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex: 1 1 auto;
}
@media (max-width: 767.98px) {
  .pricing__list {
    margin-bottom: 1.25rem;
  }
}
.pricing__list-item {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 155%;
  color: #014baa;
  padding-left: 1.625rem;
  position: relative;
}
.pricing__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.9375rem;
  height: 0.8125rem;
  background: url("../../img/icons/check.svg") no-repeat;
}
@media (max-width: 767.98px) {
  .pricing__list-item {
    font-size: 0.875rem;
  }
}
.pricing__button {
  width: 100%;
  text-align: center;
}
@media (max-width: 767.98px) {
  .pricing__button {
    font-size: 0.875rem;
    padding: 0.5625rem 1.25rem;
  }
}

.swiper-pagination {
  justify-content: center;
  gap: 0.3125rem;
  margin-top: 1.25rem;
  display: none;
}
@media (max-width: 1200px) {
  .swiper-pagination {
    display: flex;
  }
}

.swiper-pagination-bullet {
  width: 0.625rem !important;
  height: 0.625rem !important;
  background: rgba(135, 116, 225, 0.3) !important;
  border-radius: 100% !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  border-radius: 100% !important;
  background-color: rgba(135, 116, 225, 0.7) !important;
}

.reviews__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media (max-width: 1179.98px) {
  .reviews__body {
    gap: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .reviews__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}
.reviews__item img {
  width: 100%;
}
.reviews__more {
  display: none;
}
@media (max-width: 767.98px) {
  .reviews__more {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 145%;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: rgba(1, 75, 170, 0.7);
  }
}

@media (max-width: 767.98px) {
  .reviews__item {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  /* Первый элемент сразу видим */
  .reviews__item.visible {
    opacity: 1;
    max-height: 100%;
    transform: translateY(0);
  }
}
.footer {
  background-color: #ffffff;
  padding: 2rem 0;
}
@media (max-width: 767.98px) {
  .footer {
    padding-top: 0.875rem;
    padding-bottom: 3.75rem;
  }
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__logo img {
  width: 6.25rem;
}
@media (max-width: 767.98px) {
  .footer__logo img {
    width: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .footer__logo {
    order: 0;
    margin-bottom: 0.5rem;
  }
}
.footer__policy {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.footer__policy:hover {
  color: #014baa;
}
@media (max-width: 767.98px) {
  .footer__policy {
    order: 3;
    font-size: 0.75rem;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .footer__links {
    gap: 0;
    align-items: center;
    margin-bottom: 0.25rem;
  }
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.footer__link svg {
  width: 1.625rem;
}
@media (max-width: 767.98px) {
  .footer__link svg {
    width: 1rem;
  }
}
.footer__link svg path {
  transition: all 0.3s;
}
.footer__link:hover {
  color: #014baa;
}
@media (max-width: 767.98px) {
  .footer__link {
    order: 2;
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}
.footer__link.mail:hover svg path {
  fill: #014baa;
}
.footer__link.telegram:hover svg path {
  stroke: #014baa;
}