@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Приводим к единому цвету svg-элементы
 */
svg *[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 135px;
}
@media (max-width: 1428px) {
  .container {
    padding-inline: 100px;
  }
}
@media (max-width: 1280px) {
  .container {
    padding-inline: 60px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding-inline: 40px;
  }
}
@media (max-width: 850px) {
  .container {
    padding-inline: 10px;
  }
}

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

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-size: clamp(16px, 1.5384615385vw, 18px);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.28;
  color: #000000;
  background-color: #F6F7FB;
  overflow-x: hidden;
  padding-bottom: 60px;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: 0.2s;
}

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

h1, h2, h3, h4 {
  font-weight: 600;
}

h1, .h1 {
  font-size: clamp(28px, 3.9316239316vw, 46px);
}

h2, .h2 {
  font-size: clamp(16px, 2.0512820513vw, 24px);
}

h3, .h3 {
  font-size: clamp(18px, 2.0512820513vw, 24px);
}

h4, .h4 {
  font-size: clamp(14px, 1.3675213675vw, 16px);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-inline: 40px;
  font-size: 14px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 50%, #00c6ff 100%);
  border: 1px solid #0051FF;
  border-radius: 200px;
  max-width: 163px;
}
@media (max-width: 1023px) {
  .button {
    height: 38px;
    max-width: 108px;
    padding-inline: 14px;
  }
}
@media (hover: hover) {
  .button:hover {
    color: #000000;
    background: #09c6df;
  }
}
@media (hover: none) {
  .button:active {
    color: #000000;
    background: #09c6df;
  }
}
.button--transparent {
  max-width: 129px;
}
@media (max-width: 1023px) {
  .button--transparent {
    max-width: 102px;
  }
}
.button--primary {
  margin-top: 30px;
  height: 46px;
  width: 100%;
  max-width: 330px;
}
@media (max-width: 1023px) {
  .button--primary {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .button--primary {
    margin-top: 5px;
  }
}
@media (max-width: 375px) {
  .button--primary {
    margin-top: 15px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1280px) {
  .grid {
    gap: 22px;
  }
}
@media (max-width: 1023px) {
  .grid {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .grid {
    gap: 15px;
  }
}
.grid-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .grid-numbers {
    gap: 15px;
  }
}
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1280px) {
  .grid-pricing {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .grid-pricing {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .grid-pricing {
    gridColumns: 1;
    gap: 15px;
  }
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 38px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 50%, #00c6ff 100%);
  height: 38px;
}
.burger-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 50%;
  height: 2px;
  background: #FFFFFF;
  color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 -8px, 0 8px;
}

.actions-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 225px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1023px) {
  .actions-form {
    max-width: 180px;
  }
}
.actions-form__field {
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.field__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
.field__input {
  height: 48px;
  padding-inline: 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #0051FF;
  border-radius: 200px;
  color: #000000;
  transition: border-color 0.2s, 0.3s, background-color 0.2s, 0.3s;
}
@media (max-width: 1023px) {
  .field__input {
    height: 38px;
    padding-inline: 14px;
    width: 100%;
    max-width: 66px;
  }
}
.field::-moz-placeholder {
  color: #000000;
}
.field::placeholder {
  color: #000000;
}
.field__input:hover {
  border-color: #09c6df;
}
.field__input:focus {
  outline: none;
  border-color: #09c6df;
  background-color: #FFFFFF;
}

.first-screen {
  display: block;
  background: url("../images/background1.svg") center/cover no-repeat;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.header {
  padding-top: 30px;
  padding-bottom: 15px;
}
@media (max-width: 1023px) {
  .header {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .header {
    padding-top: 15px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 58px;
       column-gap: 58px;
}
@media (max-width: 1280px) {
  .header__inner {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
}
@media (max-width: 1023px) {
  .header__logo {
    max-width: 101px;
    height: 31px;
  }
}
.header__menu {
  margin-right: auto;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 58px;
       column-gap: 58px;
}
@media (max-width: 1280px) {
  .header__menu-list {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 1023px) {
  .header__menu-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
}
@media (hover: hover) {
  .header__menu-link:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .header__menu-link:active::after {
    width: 100%;
  }
}
.header__menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition-duration: inherit;
}

.cross-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 38px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 50%, #00c6ff 100%);
  height: 38px;
}
.cross-button::before, .cross-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 70%;
  height: 2px;
  background: #FFFFFF;
  color: #FFFFFF;
  border-radius: 5px;
}
.cross-button::before {
  rotate: 45deg;
}
.cross-button::after {
  rotate: -45deg;
}

.mobile-overlay {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 14px 20px;
  border: none;
}
.mobile-overlay:modal {
  max-width: 100%;
  max-height: 100%;
}
.mobile-overlay__close-button-wrapper {
  display: flex;
  justify-content: end;
}
.mobile-overlay__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
  min-height: 80vh;
}

.section {
  padding-block: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding-block: 15px;
  }
}
.section__decor {
  position: absolute;
  width: auto;
  max-width: 100%;
  opacity: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section__decor-small {
  top: 70px;
  right: 70px;
  height: 125px;
  z-index: -1;
}
@media (max-width: 1428px) {
  .section__decor-small {
    right: 33px;
  }
}
@media (max-width: 1280px) {
  .section__decor-small {
    right: 0;
    height: 110px;
  }
}
@media (max-width: 1023px) {
  .section__decor-small {
    display: none;
  }
}
.section__decor-big {
  top: -60px;
  left: 142px;
  height: 244px;
  opacity: 1;
  z-index: 1;
}
@media (max-width: 1428px) {
  .section__decor-big {
    left: 116px;
  }
}
@media (max-width: 1280px) {
  .section__decor-big {
    left: 74px;
    height: 230px;
  }
}
@media (max-width: 1023px) {
  .section__decor-big {
    display: none;
  }
}
.section__decor-alt {
  top: 600px;
  right: 86px;
  height: 108px;
  opacity: 1;
  z-index: -2;
}
@media (max-width: 1428px) {
  .section__decor-alt {
    right: 46px;
  }
}
@media (max-width: 1280px) {
  .section__decor-alt {
    right: 14px;
  }
}
@media (max-width: 1023px) {
  .section__decor-alt {
    display: none;
  }
}
.section--hidden-x {
  overflow-x: hidden;
}
.section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  margin-top: -40px;
}
@media (max-width: 1280px) {
  .section__header {
    row-gap: 12px;
  }
}
@media (max-width: 1023px) {
  .section__header {
    row-gap: 6px;
  }
}
.section__header-features, .section__header-numbers, .section__header-prising, .section__header-reviews {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  height: 22px;
  background-color: #ECF2FF;
  border: none;
  border-radius: 36px;
  color: #0051FF;
  text-decoration: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
@media (max-width: 1023px) {
  .section__header-features, .section__header-numbers, .section__header-prising, .section__header-reviews {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .section__header-features, .section__header-numbers, .section__header-prising, .section__header-reviews {
    padding: 5px 8px;
    max-width: 64px;
  }
}
.section__header-features {
  max-width: 70px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section__header-features {
    text-transform: uppercase;
  }
}
.section__header-numbers {
  max-width: 102px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section__header-numbers {
    text-transform: none;
  }
}
.section__header-prising {
  max-width: 58px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .section__header-prising {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .section__header-prising {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .section__header-prising {
    margin-bottom: 15px;
  }
}
.section__header-reviews {
  max-width: 154px;
}
.section__header:hover {
  color: #000000;
}
.section__title {
  font-weight: 700;
  color: #3D3D3D;
  text-align: center;
}
@media (max-width: 1023px) {
  .section__title {
    font-size: 16px;
  }
}
.section__description {
  font-weight: 500;
  color: #556987;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .section__description {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section__description {
    margin-bottom: 15px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.hero__main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 1280px) {
  .hero__main {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero__main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero__body {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 100%;
  row-gap: 20px;
  padding-top: 88px;
}
@media (max-width: 1280px) {
  .hero__body {
    row-gap: 10px;
  }
}
@media (max-width: 850px) {
  .hero__body {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .hero__body {
    align-items: center;
    text-align: center;
    max-width: 700px;
    padding: 12px;
  }
}
@media (max-width: 1428px) {
  .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 1280px) {
  .hero__title {
    font-size: 34px;
  }
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 28px;
  }
}
@media (max-width: 850px) {
  .hero__title {
    font-size: 24px;
  }
}
.hero__description {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.54px;
}
@media (max-width: 1280px) {
  .hero__description {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .hero__description {
    font-size: 14px;
  }
}
.hero__image {
  max-width: 58%;
  height: auto;
}
@media (max-width: 1023px) {
  .hero__image {
    max-width: 54%;
  }
}
@media (max-width: 767px) {
  .hero__image {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .mobile-header {
    margin-top: -30px;
  }
}

.features__list {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .features__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .features__list {
    margin-bottom: 15px;
  }
}
.features__image {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .features__image {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1023px) {
  .features__image {
    width: 28px;
    height: 28px;
  }
}

.features-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 141px;
  padding: 21px 18px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: -2px -3px 92px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .features-card {
    padding: 21px 10px;
  }
}
@media (max-width: 1023px) {
  .features-card {
    padding: 14px 4px;
  }
}
@media (max-width: 767px) {
  .features-card {
    margin-inline: 10px;
  }
}
@media (max-width: 375px) {
  .features-card {
    margin-inline: 0;
  }
}
.features-card__title {
  font-size: 24px;
  color: var(--color-dark-gray);
  padding-bottom: 10px;
}
@media (max-width: 1023px) {
  .features-card__title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .features-card__title {
    padding-bottom: 5px;
  }
}
.features-card__description {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-light-gray);
}
@media (max-width: 1280px) {
  .features-card__description {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .features-card__description {
    font-size: 14px;
  }
}

.numbers__list {
  margin-bottom: 30px;
}

.numbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 98px;
  padding: 32px 10px;
  background: #F6F7FB;
}
@media (max-width: 1023px) {
  .numbers-card {
    padding: 14px 4px;
  }
}
@media (max-width: 767px) {
  .numbers-card {
    min-height: 66px;
  }
}
.numbers-card__title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0059FF;
  padding-bottom: 8px;
}
@media (max-width: 1280px) {
  .numbers-card__title {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .numbers-card__title {
    font-size: 22px;
  }
}
.numbers-card__description {
  font-size: 18px;
  font-weight: 500;
  color: #556987;
}
@media (max-width: 1023px) {
  .numbers-card__description {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .numbers-card__description {
    font-size: 14px;
  }
}

.circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: .circle color-accent-alt;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
@media (max-width: 1280px) {
  .circle {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 767px) {
  .circle {
    margin: 0px auto 5px;
  }
}

.pricing__list {
  margin-bottom: 60px;
}
.pricing__list-plan {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.pricing__item-plan {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: start;
  color: #556987;
}
@media (max-width: 1280px) {
  .pricing__item-plan {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .pricing__item-plan {
    font-size: 12px;
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .pricing__item-plan {
    font-size: 14px;
  }
}
.pricing__item-plan::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icons.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.pricing-uppercase {
  text-transform: uppercase;
  box-shadow: none;
}
.pricing-title {
  color: #0059FF;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .pricing-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 375px) {
  .pricing-title {
    margin-bottom: 15px;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 503px;
  padding: 35px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: -2px -3px 92px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1280px) {
  .pricing-card {
    padding: 35px 14px;
  }
}
@media (max-width: 1023px) {
  .pricing-card {
    min-height: 390px;
    padding: 10px 10px;
  }
}
@media (max-width: 767px) {
  .pricing-card {
    min-height: 330px;
    padding: 15px 40px 15px 24px;
    margin-inline: 10px;
  }
}
@media (max-width: 375px) {
  .pricing-card {
    min-height: 345px;
  }
}
.pricing-card-title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  color: #3D3D3D;
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .pricing-card-title {
    margin-bottom: 5px;
  }
}
.pricing-card-title span:first-child {
  align-self: flex-start;
  font-size: 18px;
  font-weight: 500;
  transform: translateY(4px);
}
.pricing-card-title span:last-child {
  font-size: 18px;
  align-self: flex-end;
  transform: translateY(-6px);
}
@media (max-width: 1023px) {
  .pricing-card-title {
    font-size: 28px;
  }
  .pricing-card-title span:first-child {
    font-size: 14px;
  }
  .pricing-card-title span:last-child {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .pricing-card-title {
    font-size: 22px;
  }
}
.pricing-card-description {
  font-weight: 500;
  color: #556987;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .pricing-card-description {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .pricing-card-description {
    margin-bottom: 15px;
  }
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  color: #3D3D3D;
  background: transparent;
  margin-bottom: -30px;
}
.reviews-description {
  width: 100%;
  max-width: 920px;
  padding-inline: 42px;
  margin-bottom: 0;
}
.reviews__slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.reviews__slider {
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
}
.reviews__slider-list {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  pointer-events: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 30px;
  transition: transform 0.5s ease;
}
.reviews__slider-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1280px) {
  .reviews__slider-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 1023px) {
  .reviews__slider-list {
    display: flex;
    justify-content: center;
    padding-right: 0;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.reviews__slider-item {
  background-color: #FFFFFF;
  flex: 0 0 calc((100% - 30px) / 3);
  max-width: 370px;
  width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .reviews__slider-item {
    flex: 0 0 calc((100% - 10px) / 2);
    max-width: none;
  }
}
.reviews__arrow-button {
  padding: 0;
  background-color: transparent;
  border: none;
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1;
  z-index: 10;
  pointer-events: auto;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}
.reviews__arrow-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.reviews__arrow-button svg {
  width: 100%;
  height: 100%;
}
.reviews__arrow-button-prev {
  left: -60px;
}
@media (max-width: 1023px) {
  .reviews__arrow-button-prev {
    display: none;
  }
}
.reviews__arrow-button-next {
  right: -60px;
}
@media (max-width: 1023px) {
  .reviews__arrow-button-next {
    display: none;
  }
}
.reviews__pagination {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}
@media (max-width: 1023px) {
  .reviews__pagination {
    display: flex;
  }
}

.reviews-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 120px;
  height: 100%;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .reviews-card {
    row-gap: 100px;
    min-height: 300px;
    padding: 32px 14px;
  }
}
@media (max-width: 767px) {
  .reviews-card {
    row-gap: 40px;
    min-height: 180px;
    padding: 16px 16px;
  }
}
.reviews-card__body {
  font-size: 24px;
}
@media (max-width: 1280px) {
  .reviews-card__body {
    font-size: 22px;
  }
}
@media (max-width: 1023px) {
  .reviews-card__body {
    font-size: 18px;
  }
}
@media (max-width: 850px) {
  .reviews-card__body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .reviews-card__body {
    font-size: 12px;
  }
}
.reviews-card__footer {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.reviews-card__name, .reviews-card__company {
  font-style: normal;
}
.reviews-card__name {
  font-weight: 600;
}
@media (max-width: 767px) {
  .reviews-card__name {
    font-size: 10px;
  }
}
.reviews-card__company {
  font-size: 14px;
  color: #556987;
}
@media (max-width: 767px) {
  .reviews-card__company {
    font-size: 10px;
  }
}

.pagination {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  background: transparent;
  gap: 8px;
  padding: 0;
  border: none;
  margin-top: 15px;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination__button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000727;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination__button--active {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  opacity: 1;
  background-color: #0059FF;
}
.pagination__button:hover {
  opacity: 0.6;
}

.menagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  margin-inline: auto;
  padding: 62px 135px 64px 135px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  background-color: #e6e8eb;
  border-radius: 20px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 1280px) {
  .menagement {
    padding: 48px;
  }
}
@media (max-width: 1023px) {
  .menagement {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .menagement {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 30px;
    margin-bottom: 30px;
  }
}
.menagement__body {
  max-width: 456px;
}
.menagement__title {
  font-size: 28px;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .menagement__title {
    font-size: 26px;
  }
}
@media (max-width: 1023px) {
  .menagement__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .menagement__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .menagement__title {
    font-size: 16px;
  }
}
.menagement__description {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .menagement__description {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .menagement__description {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .menagement__description {
    margin-bottom: 10px;
  }
}
.menagement__actions-form {
  display: flex;
  justify-content: center;
  flex-direction: row;
  max-width: 346px;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (max-width: 1023px) {
  .menagement__actions-form {
    max-width: 242px;
  }
}
@media (max-width: 767px) {
  .menagement__actions-form {
    max-width: 240px;
    -moz-column-gap: 14px;
         column-gap: 14px;
    flex-direction: row-reverse;
  }
}
.menagement-transparent {
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #0059FF;
}
.menagement__decor {
  position: absolute;
  width: auto;
  max-width: 100%;
  opacity: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  top: -74px;
  left: -45px;
  height: 122px;
  z-index: -1;
}
@media (max-width: 1023px) {
  .menagement__decor {
    display: none;
  }
}

.footer {
  background-color: #000727;
  border-radius: 36px;
  padding: 40px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 10px;
}
@media (max-width: 1280px) {
  .footer {
    padding: 20px 28px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 125px;
}
@media (max-width: 1428px) {
  .footer__container {
    padding-inline: 100px;
  }
}
@media (max-width: 1280px) {
  .footer__container {
    padding-inline: 40px;
  }
}
@media (max-width: 850px) {
  .footer__container {
    padding-inline: 15px;
  }
}
@media (max-width: 767px) {
  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__menu-list {
  display: flex;
  -moz-column-gap: 125px;
       column-gap: 125px;
  list-style: none;
}
@media (max-width: 1428px) {
  .footer__menu-list {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
@media (max-width: 1280px) {
  .footer__menu-list {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 850px) {
  .footer__menu-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer__menu-list {
    margin-bottom: 20px;
  }
}
.footer__menu-link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .footer__menu-link {
    font-weight: 500;
  }
}
.footer__menu-link:hover {
  color: #0051FF;
}
.footer__social-list {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  list-style: none;
}
.footer__social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #006aff 0%, #009dff 100%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}
.footer__social-link:hover {
  opacity: 0.8;
}
.footer__social-link img {
  width: 48px;
  height: 48px;
}
@media (max-width: 767px) {
  .footer__social-link img {
    width: 36px;
    height: 36px;
  }
}/*# sourceMappingURL=styles.css.map */