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

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

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):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]) {
  padding: 0;
  border: none;
}

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

:where(address[class]) {
  font-style: normal;
}

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

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

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

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

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

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

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

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

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futuris Cyrillic";
  src: url(../fonts/Futuris-Cyrillic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-ExtraLight.woff2) format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #2C3033;
  --color-second: #6AB293;
  --color-gray: #67777E;
  --color-main-title: #222A26;
  --color-title: #21282C;
  --color-bg-page: #F6F6F6;
  --color-border-second: #C8C3C3;
  --color-lt-black: #313131;
  --font-famaly-base: 'Futuris Cyrillic', sans-serif;
  --font-famaly-main: 'Manrope', sans-serif;
  --font-famaly-second: 'Inter', sans-serif;
  --container-width: 73.75rem;
  --container-padding-x: 1.25rem;
  --transition-duration: 0.2s;
}
@media (width <= 73.74875rem) {
  :root {
    --container-width: 73.75rem;
    --container-padding-x: 1rem;
  }
}
@media (width <= 65.06125rem) {
  :root {
    --container-width: 62.5rem;
    --container-padding-x: 1rem;
  }
}
@media (width <= 47.99875rem) {
  :root {
    --container-width: 46.75rem;
    --container-padding-x: 0.625rem;
  }
}
@media (width <= 22.49875rem) {
  :root {
    --container-width: 21.25rem;
    --container-padding-x: 0.625rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.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 (width <= 73.74875rem) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width > 73.74875rem) {
  .visible-laptop {
    display: none !important;
  }
}

@media (width <= 65.06125rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 65.06125rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 22.49875rem) {
  .hidden-mobile-s {
    display: none !important;
  }
}

@media (width > 22.49875rem) {
  .visible-mobile-s {
    display: none !important;
  }
}

body {
  font-size: clamp(0.875rem, 0.7652439024rem + 0.487804878vw, 1.125rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-famaly-base);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-main);
  background-color: var(--color-bg-page);
}

main {
  flex-grow: 1;
}

h1 {
  font-size: clamp(1.625rem, 0.9664634146rem + 2.9268292683vw, 3.125rem);
  font-family: var(--font-famaly-main);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-main-title);
}

h2 {
  font-size: clamp(1.375rem, 1.1554878049rem + 0.9756097561vw, 1.875rem);
  font-family: var(--font-famaly-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-title);
}

.sub-title {
  font-size: clamp(0.9375rem, 0.8551829268rem + 0.3658536585vw, 1.125rem);
  font-family: var(--font-famaly-main);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray);
}

a,
button,
label,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

body.menu-open {
  overflow: hidden; /* запрет скролла страницы */
  position: fixed; /* фиксируем тело, чтобы не прыгало */
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.logo {
  max-width: clamp(9rem, 8.2865853659rem + 3.1707317073vw, 10.625rem);
}

.button {
  padding: 10px 30px;
  font-family: var(--font-famaly-second);
  font-size: 18px;
  border-radius: 30px;
}

.button-fill {
  border: 1px solid var(--color-main);
  background-color: var(--color-main);
  color: #FCFCFC;
}
@media (any-hover: hover) {
  .button-fill:hover:hover {
    background-color: var(--color-second);
    border: 1px solid var(--color-second);
    color: #ffffff;
  }
}
@media (any-hover: none) {
  .button-fill:hover:active {
    background-color: var(--color-second);
    border: 1px solid var(--color-second);
    color: #ffffff;
  }
}

.button-transparent {
  border: 1px solid var(--color-main);
  background-color: transparent;
  color: var(--color-main);
}
@media (any-hover: hover) {
  .button-transparent:hover:hover {
    background-color: var(--color-second);
    border: 1px solid var(--color-second);
  }
}
@media (any-hover: none) {
  .button-transparent:hover:active {
    background-color: var(--color-second);
    border: 1px solid var(--color-second);
  }
}

.button-second {
  border: 1px solid var(--color-second);
  background-color: var(--color-second);
  color: #FCFCFC;
}
@media (any-hover: hover) {
  .button-second:hover:hover {
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #ffffff;
  }
}
@media (any-hover: none) {
  .button-second:hover:active {
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #ffffff;
  }
}

.burger-button {
  width: 45px;
  height: 45px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14.5px 10px;
  color: var(--color-main);
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-second);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.2em -0.1em;
  transition-duration: var(--transition-duration);
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
  transition-duration: var(--transition-duration);
}
.burger-button.is-active .burger-button__line:last-child {
  opacity: 0;
}
.burger-button__line {
  width: 100%;
  height: 2px;
  border-radius: 1rem;
  background-color: currentColor;
  transition-duration: var(--transition-duration);
}

.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #dfdcdc;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
@media (width <= 65.06125rem) {
  .scroll-top {
    right: 30px;
    bottom: 30px;
  }
}
@media (width <= 47.99875rem) {
  .scroll-top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
}

/* Активное состояние */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-second);
}

.contact-form {
  width: 100%;
  margin: 0 auto;
  font-family: inherit;
}
.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-form__title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
  padding: 0px 10px;
}
@media (width <= 47.99875rem) {
  .contact-form__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.contact-form__group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (width <= 47.99875rem) {
  .contact-form__group {
    margin-bottom: 16px;
  }
}
.contact-form__group label {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 4px;
  color: #344256;
}
.contact-form__group input, .contact-form__group select, .contact-form__group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 14px;
  border: 1px solid #E1E7EF;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  box-sizing: border-box;
  color: var(--color-main);
}
.contact-form__group input:focus, .contact-form__group select:focus, .contact-form__group textarea:focus {
  border-color: var(--color-second);
  outline: none;
  box-shadow: 4px 0px 10px 4px rgba(0, 0, 0, 0.05);
}
.contact-form__group input::placeholder, .contact-form__group textarea::placeholder {
  color: #65758B;
}
.contact-form__group textarea {
  min-height: 100px;
  resize: none;
}
.contact-form__group .btn-submit {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid var(--color-second);
  background-color: var(--color-second);
  color: #ffffff;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .contact-form__group .btn-submit:hover {
    border: 1px solid var(--color-main);
    background-color: var(--color-main);
  }
}
@media (any-hover: none) {
  .contact-form__group .btn-submit:active {
    border: 1px solid var(--color-main);
    background-color: var(--color-main);
  }
}
.contact-form {
  /* Неактивная кнопка */
}
.contact-form .btn-submit:disabled {
  background-color: var(--color-border-second);
  border-color: var(--color-border-second);
  cursor: not-allowed;
}
.contact-form__group--checkbox {
  max-width: 500px;
  margin: 0 auto;
}
.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 12px;
  color: #65758B;
  cursor: pointer;
}
.contact-form__checkbox > span {
  font-size: 14px;
}
@media (width <= 47.99875rem) {
  .contact-form__checkbox > span {
    font-size: 12px;
  }
}
.contact-form__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-second);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 6px;
}
.contact-form__checkbox {
  /* Активное состояние */
}
.contact-form__checkbox input[type=checkbox]:checked {
  background-color: var(--color-second);
  border-color: var(--color-second);
}
.contact-form__checkbox {
  /* Галочка */
}
.contact-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form__checkbox {
  /* Hover */
}
.contact-form__checkbox input[type=checkbox]:hover {
  border-color: var(--color-second);
}
.contact-form__checkbox a {
  color: var(--color-second);
  text-decoration: none;
}

.header {
  background-color: var(--color-bg-page);
  position: sticky;
  z-index: 100;
  top: 0;
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 3.125rem 6.25rem;
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 16px 0 rgba(44, 48, 51, 0.3);
  }
}
.header {
  font-family: var(--font-famaly-second);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  color: var(--color-main);
}
@media (width <= 65.06125rem) {
  .header {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
@media (width > 65.06125rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 65.06125rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    inset: 70px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding: 10px;
    padding-top: 20px;
    background-color: var(--color-bg-page);
    transition-duration: var(--transition-duration);
    padding-bottom: 150px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (width <= 73.74875rem) {
  .header__menu-list {
    column-gap: 16px;
  }
}
@media (width <= 65.06125rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 20px;
  }
}
.header__menu-list .menu-item-has-children {
  margin-right: 10px;
}
.header__menu-item {
  position: relative;
}
.header__menu-item.open .header__submenu-list {
  display: block;
}
@media (any-hover: hover) {
  .header__menu-item:hover:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .header__menu-item:hover:active {
    color: var(--color-second);
  }
}
@media (width <= 65.06125rem) {
  .header__menu-item {
    text-align: center;
  }
}
.header__menu-link {
  position: relative;
}
.header__submenu-list {
  position: absolute;
  top: 50px;
  left: -70px;
  display: none;
  background-color: #ffffff;
  border: 1px solid var(--color-border-second);
  border-radius: 10px;
  padding: 18px;
  min-width: 200px;
  max-width: 420px;
  width: max-content;
  font-family: var(--font-famaly-base);
  font-size: 18px;
  color: var(--color-lt-black);
  overflow: visible;
}
.header__submenu-list::after {
  content: "";
  position: absolute;
  top: -27px;
  left: 83px; /* регулируешь, чтобы смотрел на пункт */
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 27px solid #fff;
}
.header__submenu-list::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 100px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid var(--color-border-second);
}
@media (width <= 65.06125rem) {
  .header__submenu-list {
    position: static;
    padding: 10px;
    padding-top: 16px;
    padding-bottom: 0;
    width: 100%;
    border: none;
    background-color: inherit;
  }
  .header__submenu-list::after, .header__submenu-list::before {
    display: none;
  }
}
@media (width <= 47.99875rem) {
  .header__submenu-list {
    width: 100%;
    font-size: 16px;
  }
}
.header__submenu-item {
  margin-bottom: 10px;
}
.header__submenu-link {
  line-height: 1.1;
}
@media (any-hover: hover) {
  .header__submenu-link:hover:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .header__submenu-link:hover:active {
    color: var(--color-second);
  }
}
@media (width <= 65.06125rem) {
  .header__submenu-link {
    display: block;
    white-space: normal;
  }
}
.header__buttons-wrapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (width <= 65.06125rem) {
  .header__buttons-wrapper {
    flex-direction: column;
    row-gap: 20px;
  }
}

.menu-item-has-children > .header__menu-link::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 55%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--color-main);
  transition: 0.2s;
}

.menu-item-has-children.open > .header__menu-link::after {
  transform: translateY(-50%) rotate(180deg);
}

.menu-item-has-children:hover > .header__menu-link::after {
  border-top-color: var(--color-second);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0;
  overflow-y: auto;
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal.is-active {
  display: flex;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  max-width: 680px;
  width: 90%;
  z-index: 10;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: none;
}
@media (width <= 47.99875rem) {
  .modal__content {
    max-width: 500px;
    padding: 16px;
    padding-top: 30px;
  }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  transition: background 0.2s ease, transform 0.15s ease;
}
@media (width <= 47.99875rem) {
  .modal__close {
    top: 4px;
    right: 4px;
  }
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-border-second);
  transform-origin: center;
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover */
.modal__close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: var(--color-second);
}

/* Active */
.modal__close:active {
  transform: scale(0.9);
}

/* Фокус (доступность) */
.modal__close:focus-visible {
  outline: 2px solid #b2bdd6;
  outline-offset: 2px;
}

.video-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-popup.active {
  display: block;
}

.video-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-popup__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 5% auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

/* Рисуем крестик */
.video-popup__close::before,
.video-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.video-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover */
.video-popup__close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

/* Active */
.video-popup__close:active {
  transform: scale(0.95);
}

.footer {
  background-color: var(--color-main);
  color: var(--color-border-second);
  font-size: 24px;
  padding-top: 100px;
  padding-bottom: 223px;
  overflow: hidden;
}
@media (width <= 65.06125rem) {
  .footer {
    padding-top: 70px;
    padding-bottom: 150px;
  }
}
@media (width <= 47.99875rem) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer__inner {
  position: relative;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
}
@media (width <= 73.74875rem) {
  .footer__body {
    column-gap: 16px;
  }
}
@media (width <= 65.06125rem) {
  .footer__body {
    justify-content: start;
    row-gap: 100px;
  }
}
@media (width <= 47.99875rem) {
  .footer__body {
    row-gap: 60px;
  }
}
.footer__logo {
  max-width: 138px;
}
@media (width <= 65.06125rem) {
  .footer__logo {
    min-width: 30%;
  }
}
@media (width <= 47.99875rem) {
  .footer__logo {
    order: 1;
    margin: 0 auto;
    margin-top: 80px;
  }
  .footer__logo > img {
    max-width: 100px;
  }
}
.footer__menu {
  display: flex;
  column-gap: 60px;
}
@media (width <= 73.74875rem) {
  .footer__menu {
    column-gap: 30px;
  }
}
@media (width <= 65.06125rem) {
  .footer__menu {
    order: -1;
    width: 100%;
    column-gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .footer__menu {
    flex-wrap: wrap;
    row-gap: 50px;
  }
}
.footer__menu-list {
  min-width: 140px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (width <= 65.06125rem) {
  .footer__menu-list {
    min-width: 30%;
  }
}
@media (width <= 47.99875rem) {
  .footer__menu-list {
    min-width: 100%;
    row-gap: 20px;
  }
}
@media (width <= 47.99875rem) {
  .footer__menu-second_list {
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .footer__menu-item:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .footer__menu-item:active {
    color: var(--color-second);
  }
}
.footer__contacts {
  max-width: 268px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (any-hover: hover) {
  .footer__contacts > a:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .footer__contacts > a:active {
    color: var(--color-second);
  }
}
@media (width <= 65.06125rem) {
  .footer__contacts {
    min-width: 65%;
  }
}
@media (width <= 47.99875rem) {
  .footer__contacts {
    row-gap: 20px;
    min-width: 100%;
  }
}
.footer__contacts-messengers {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.footer__contacts-socials {
  display: flex;
  align-items: center;
  column-gap: 5px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.footer__contacts-item a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: var(--color-border-second);
}
@media (any-hover: hover) {
  .footer__contacts-item a:hover {
    background-color: var(--color-second);
  }
}
@media (any-hover: none) {
  .footer__contacts-item a:active {
    background-color: var(--color-second);
  }
}
.footer__politic-link {
  position: absolute;
  bottom: -180px;
  left: 20;
}
@media (width <= 65.06125rem) {
  .footer__politic-link {
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (width <= 47.99875rem) {
  .footer__politic-link {
    font-size: 18px;
    left: 10px;
    transform: translateX(0);
    bottom: 160px;
  }
}
.footer__img-digits {
  position: absolute;
  bottom: -223px;
  left: 38%;
  width: 950px;
}
@media (width <= 65.06125rem) {
  .footer__img-digits {
    display: none;
  }
}

.hero {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (width <= 73.74875rem) {
  .hero {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media (width <= 47.99875rem) {
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.hero__title-wrapper {
  position: relative;
}
@media (width <= 47.99875rem) {
  .hero__title-wrapper {
    width: 360px;
  }
}
.hero__title {
  max-width: 590px;
  font-size: 50px;
}
@media (width <= 73.74875rem) {
  .hero__title {
    font-size: 46px;
  }
}
@media (width <= 65.06125rem) {
  .hero__title {
    font-size: 44px;
    max-width: 520px;
  }
}
@media (width <= 47.99875rem) {
  .hero__title {
    max-width: 360px;
    font-size: 30px;
    line-height: 1.2;
  }
}
.hero__subtitle {
  width: 240px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
  line-height: 28px;
  position: absolute;
  top: 70px;
  left: 475px;
}
@media (width <= 73.74875rem) {
  .hero__subtitle {
    top: 64px;
    left: 440px;
    line-height: 24px;
  }
}
@media (width <= 65.06125rem) {
  .hero__subtitle {
    top: 60px;
    left: 420px;
    line-height: 22px;
  }
}
@media (width <= 47.99875rem) {
  .hero__subtitle {
    position: static;
    width: 340px;
    font-size: 20px;
    margin-top: 16px;
  }
}
.hero__button-wrapper {
  padding-top: 30px;
  display: flex;
  column-gap: 8px;
  flex-wrap: wrap;
}
@media (width <= 47.99875rem) {
  .hero__button-wrapper {
    justify-content: center;
    row-gap: 8px;
    max-width: 360px;
  }
}
.hero__button-item {
  display: flex;
}
.hero__button-item > span {
  padding-right: 10px;
  display: flex;
  align-items: center;
}
.hero__button-item {
  padding-left: 40px;
  padding-right: 40px;
}
.hero__button-item_pr {
  font-family: var(--font-famaly-base);
  font-size: 20px;
}
.hero__app {
  background-color: #fff;
  padding: 40px 30px 40px 40px;
  border-radius: 20px;
  width: 280px;
}
@media (width <= 73.74875rem) {
  .hero__app {
    padding: 30px 20px 30px 30px;
  }
}
@media (width <= 65.06125rem) {
  .hero__app {
    display: none;
  }
}
.hero__app-subtitle {
  font-family: var(--font-famaly-main);
  font-size: 14px;
  font-weight: 200;
  color: var(--color-gray);
}
.hero__app-title {
  max-width: 230px;
  margin-top: 16px;
  font-family: var(--font-famaly-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-second);
}
.hero__app-text {
  margin-top: 16px;
  max-width: 250px;
}
@media (width <= 73.74875rem) {
  .hero__app-text {
    max-width: 210px;
  }
}
.hero__advantages {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
@media (width <= 47.99875rem) {
  .hero__advantages {
    row-gap: 20px;
  }
}
.hero__advantages-item {
  width: 280px;
}
@media (width <= 73.74875rem) {
  .hero__advantages-item {
    width: 280px;
  }
}
@media (width <= 65.06125rem) {
  .hero__advantages-item {
    width: 230px;
  }
}
@media (width <= 47.99875rem) {
  .hero__advantages-item {
    width: 100%;
  }
}
.hero__advantages-title {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-second);
  text-align: right;
}
@media (width <= 65.06125rem) {
  .hero__advantages-title {
    text-align: left;
    font-family: var(--font-famaly-base);
  }
}
.hero__advantages-text {
  padding-top: 16px;
}
@media (width <= 65.06125rem) {
  .hero__advantages-text {
    padding-top: 10px;
  }
}

.support {
  padding-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .support {
    padding-bottom: 60px;
  }
}
.support__subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 16px;
  color: var(--color-gray);
}
@media (width <= 47.99875rem) {
  .support__subtitle {
    font-size: 14px;
  }
}
.support__title {
  padding-top: 12px;
  padding-bottom: 16px;
}
@media (width <= 65.06125rem) {
  .support__title {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (width <= 47.99875rem) {
  .support__title {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.support__desc {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
  max-width: 776px;
  line-height: 28px;
  padding-bottom: 40px;
}
@media (width <= 65.06125rem) {
  .support__desc {
    line-height: 20px;
    font-size: 16px;
    padding-bottom: 24px;
  }
}
@media (width <= 47.99875rem) {
  .support__desc {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 20px;
  }
}
.support__categories-item {
  border: 2px solid transparent;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .support__categories-item:hover {
    cursor: pointer;
    border: 2px solid var(--color-second);
    box-shadow: 4px 4px 10px 4px rgba(44, 48, 51, 0.05);
  }
}
@media (any-hover: none) {
  .support__categories-item:active {
    cursor: pointer;
    border: 2px solid var(--color-second);
    box-shadow: 4px 4px 10px 4px rgba(44, 48, 51, 0.05);
  }
}
@media (width <= 65.06125rem) {
  .support__categories-item {
    margin-bottom: 10px;
  }
}
.support__category-link {
  display: flex;
  flex-direction: row;
  height: 106px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (width <= 65.06125rem) {
  .support__category-link {
    height: 90px;
  }
}
.support__category-number {
  height: 100%;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}
@media (width <= 65.06125rem) {
  .support__category-number {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .support__category-number {
    font-size: 16px;
  }
}
.support__category-body {
  margin-left: 35px;
  width: 100%;
}
@media (width <= 65.06125rem) {
  .support__category-body {
    margin-left: 20px;
  }
}
@media (width <= 65.06125rem) {
  .support__category-body {
    margin-left: 16px;
  }
}
.support__category-title {
  font-size: 24px;
  margin-bottom: 4px;
}
@media (width <= 65.06125rem) {
  .support__category-title {
    font-size: 20px;
  }
}
@media (width <= 47.99875rem) {
  .support__category-title {
    font-size: 18px;
  }
}
.support__category-desc {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .support__category-desc {
    font-size: 14px;
  }
}
@media (width <= 47.99875rem) {
  .support__category-desc {
    font-size: 12px;
    line-height: 16px;
  }
}
.support__category-icon {
  margin-right: 20px;
  margin-left: 20px;
}
@media (width <= 47.99875rem) {
  .support__category-icon {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.app {
  padding-bottom: 80px;
}
.app-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 220px;
  column-gap: 20px;
}
@media (width <= 65.06125rem) {
  .app-wrapper {
    justify-content: start;
    column-gap: 40px;
    height: 160px;
  }
}
@media (width <= 47.99875rem) {
  .app-wrapper {
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 20px;
    column-gap: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }
}
.app__image {
  width: 270px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 10px;
}
@media (width <= 65.06125rem) {
  .app__image {
    width: 235px;
  }
  .app__image > img {
    width: 70px;
  }
}
@media (width <= 47.99875rem) {
  .app__image {
    width: 70px;
    height: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
}
.app__body-wrapper {
  display: contents;
}
@media (width <= 65.06125rem) {
  .app__body-wrapper {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
}
@media (width <= 47.99875rem) {
  .app__body-wrapper {
    display: contents;
  }
}
.app__body-text {
  width: 270px;
}
@media (width <= 65.06125rem) {
  .app__body-text {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .app__body-text {
    width: 67%;
  }
}
.app__body-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 24px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .app__body-subtitle {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .app__body-subtitle {
    display: none;
  }
}
.app__body-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-second);
  padding-top: 17px;
  padding-bottom: 17px;
}
@media (width <= 65.06125rem) {
  .app__body-title {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (width <= 47.99875rem) {
  .app__body-title {
    font-size: 16px;
  }
}
@media (width <= 65.06125rem) {
  .app__body-desc {
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .app__body-desc {
    font-size: 14px;
  }
}
.app__body-buttons {
  display: contents;
}
@media (width <= 65.06125rem) {
  .app__body-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (width <= 47.99875rem) {
  .app__body-buttons {
    margin-top: 20px;
    justify-content: center;
    column-gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.app__body-android {
  width: 270px;
  background-color: #D7EAE2;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (width <= 65.06125rem) {
  .app__body-android {
    background-color: #99CDE9;
    max-width: 230px;
    height: 34px;
    border-radius: 32px;
  }
}
.app__body-ios {
  width: 270px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (width <= 65.06125rem) {
  .app__body-ios {
    order: -1;
    background-color: var(--color-second);
    max-width: 230px;
    height: 34px;
    border-radius: 32px;
  }
}
.app__body-buttons_icon {
  width: 85px;
}
@media (width <= 65.06125rem) {
  .app__body-buttons_icon {
    display: none;
  }
}
.app__body-buttons_logo {
  display: none;
}
@media (width <= 65.06125rem) {
  .app__body-buttons_logo {
    display: inline-block;
  }
}

.steps {
  padding-bottom: 80px;
}
.steps__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  padding-top: 34px;
}
@media (width <= 65.06125rem) {
  .steps__list {
    padding-top: 28px;
  }
}
@media (width <= 47.99875rem) {
  .steps__list {
    padding-top: 24px;
  }
}
.steps__item {
  max-width: 326px;
}
@media (width <= 73.74875rem) {
  .steps__item {
    max-width: 32%;
  }
}
@media (width <= 65.06125rem) {
  .steps__item {
    row-gap: 28px;
  }
}
@media (width <= 47.99875rem) {
  .steps__item {
    max-width: 100%;
    row-gap: 28px;
  }
}
.steps__item-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 16px;
  text-align: right;
  color: var(--color-second);
}
@media (width <= 47.99875rem) {
  .steps__item-subtitle {
    font-family: var(--font-famaly-base);
    font-size: 15px;
    text-align: left;
  }
}
.steps__item-title {
  font-size: 24px;
  padding: 16px 0px;
}
@media (width <= 65.06125rem) {
  .steps__item-title {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .steps__item-title {
    padding: 10px 0px;
    font-size: 20px;
  }
}
@media (width <= 65.06125rem) {
  .steps__item-desc {
    font-size: 15px;
  }
}
@media (width <= 47.99875rem) {
  .steps__item-desc {
    font-size: 16px;
  }
}
.steps__item-link {
  position: relative;
  margin-left: 20px;
}
@media (any-hover: hover) {
  .steps__item-link:hover {
    color: var(--color-second);
  }
}
@media (any-hover: none) {
  .steps__item-link:active {
    color: var(--color-second);
  }
}
.steps__item-link::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: -18px;
  bottom: 2px;
  width: 15px;
  height: 15px;
  background: currentColor;
  mask: url(../icons/phone.svg) no-repeat center/contain;
  -webkit-mask: url(../icons/phone.svg) no-repeat center/contain;
}
.steps__item-button {
  margin-top: 16px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (width <= 73.74875rem) {
  .steps__item-button {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.trust {
  padding-bottom: 20px;
}
.trust__desc-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  align-items: center;
  margin-bottom: 40px;
}
@media (width <= 65.06125rem) {
  .trust__desc-wrapper {
    margin-bottom: 26px;
  }
}
.trust__desc-main {
  max-width: 650px;
  font-size: 24px;
}
@media (width <= 65.06125rem) {
  .trust__desc-main {
    max-width: 500px;
    font-size: 20px;
  }
}
@media (width <= 47.99875rem) {
  .trust__desc-main {
    max-width: 300px;
    font-size: 16px;
  }
}
.trust__desc-note_wrapper {
  background-color: #edf3f1;
  display: flex;
  padding: 22px 20px;
  border-radius: 10px;
}
@media (width <= 65.06125rem) {
  .trust__desc-note_wrapper {
    display: none;
  }
}
.trust__desc-note_text {
  width: 320px;
  margin-right: 10px;
}
.trust__advantages-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media (width <= 65.06125rem) {
  .trust__advantages-list {
    margin-top: 12px;
  }
}
@media (width <= 47.99875rem) {
  .trust__advantages-list {
    row-gap: 10px;
    margin-top: 10px;
  }
}
.trust__advantages-item {
  background-color: #ffffff;
  border-radius: 20px;
  width: 31%;
  padding: 30px 30px;
  color: var(--color-title);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}
@media (width <= 65.06125rem) {
  .trust__advantages-item {
    width: 32%;
    padding: 30px 16px;
    min-height: 140px;
  }
}
@media (width <= 47.99875rem) {
  .trust__advantages-item {
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 0px 10px 0px 16px;
    column-gap: 10px;
    min-height: 60px;
  }
}
.trust__advantages-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 40px;
  padding-bottom: 12px;
  text-align: center;
  flex: 0 0 auto;
}
@media (width <= 73.74875rem) {
  .trust__advantages-title {
    font-size: 36px;
  }
}
@media (width <= 65.06125rem) {
  .trust__advantages-title {
    font-size: 28px;
  }
}
@media (width <= 47.99875rem) {
  .trust__advantages-title {
    font-size: 22px;
    letter-spacing: -0.7px;
    padding: 0;
    text-align: right;
    font-weight: 600;
  }
}
.trust__advantages-desc {
  font-size: 24px;
  text-align: center;
}
@media (width <= 73.74875rem) {
  .trust__advantages-desc {
    font-size: 20px;
  }
}
@media (width <= 65.06125rem) {
  .trust__advantages-desc {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .trust__advantages-desc {
    font-size: 16px;
    letter-spacing: -0.2px;
    text-align: left;
  }
}
.trust__advantages-desc_second {
  font-size: 24px;
  font-weight: 500;
}
@media (width <= 73.74875rem) {
  .trust__advantages-desc_second {
    font-size: 22px;
    font-weight: 500;
  }
}
@media (width <= 65.06125rem) {
  .trust__advantages-desc_second {
    font-size: 20px;
    font-weight: 500;
  }
}
@media (width <= 47.99875rem) {
  .trust__advantages-desc_second {
    font-size: 18px;
    font-weight: 500;
  }
}
.trust__company-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
}
@media (width <= 47.99875rem) {
  .trust__company-list {
    background-color: #ffffff;
    border-radius: 20px;
    row-gap: 20px;
    padding: 20px;
  }
}
.trust__company-item {
  background-color: #ffffff;
  border-radius: 20px;
  width: 16%;
  height: 188px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media (width <= 65.06125rem) {
  .trust__company-item {
    width: 32%;
  }
}
@media (width <= 47.99875rem) {
  .trust__company-item {
    width: 48%;
    height: auto;
    padding: 0px;
  }
  .trust__company-item:nth-child(7) {
    order: -1;
  }
  .trust__company-item:nth-child(8) {
    order: 1;
  }
}
.trust__company-item_long {
  width: 32%;
}
@media (width <= 65.06125rem) {
  .trust__company-item_long {
    height: 144px;
    width: 32%;
    order: 1;
  }
}
@media (width <= 47.99875rem) {
  .trust__company-item_long {
    height: auto;
    width: 100%;
    order: unset;
  }
}
.company-slider {
  padding-bottom: 100px;
}
.company-slider__swiper {
  width: 100%;
  overflow: hidden;
}
.company-slider__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.company-slider__swiper-wrapper {
  padding-left: 20px !important;
}
@media (width <= 65.06125rem) {
  .company-slider__swiper-wrapper {
    padding-left: 16px !important;
  }
}
@media (width <= 47.99875rem) {
  .company-slider__swiper-wrapper {
    padding-left: 10px !important;
  }
}
.company-slider__item {
  background-color: #ffffff;
  border-radius: 20px;
  width: 180px !important;
  height: 180px !important;
  overflow: hidden;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px;
}
@media (width <= 65.06125rem) {
  .company-slider__item {
    width: 140px !important;
    height: 140px !important;
    border-radius: 14px;
  }
}
@media (width <= 47.99875rem) {
  .company-slider__item {
    width: 120px !important;
    height: 120px !important;
  }
}
.company-slider__item-long {
  width: 380px !important;
}
@media (width <= 65.06125rem) {
  .company-slider__item-long {
    height: 140px !important;
    width: 360px !important;
  }
}
@media (width <= 47.99875rem) {
  .company-slider__item-long {
    height: 120px !important;
    width: 240px !important;
  }
}
.company-slider__img {
  object-fit: contain !important;
}

.faq {
  padding: 80px 0px;
  background-color: #d8eae2;
}
@media (width <= 65.06125rem) {
  .faq {
    padding: 50px 0px;
  }
}
@media (width <= 47.99875rem) {
  .faq {
    padding: 30px 0px;
  }
}
.faq__wrapper {
  max-width: 780px;
  margin: 0 auto;
}
@media (width <= 65.06125rem) {
  .faq__wrapper {
    max-width: 550px;
  }
}
.faq__subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .faq__subtitle {
    display: none;
  }
}
.faq__title {
  margin-top: 12px;
  margin-bottom: 40px;
}
@media (width <= 65.06125rem) {
  .faq__title {
    margin-bottom: 20px;
  }
}
.faq__list-item {
  margin-bottom: 16px;
}
@media (width <= 65.06125rem) {
  .faq__list-item {
    margin-bottom: 8px;
  }
}
.faq__item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid transparent;
}
@media (any-hover: hover) {
  .faq__item:hover {
    border: 1px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
@media (any-hover: none) {
  .faq__item:active {
    border: 1px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 24px;
  cursor: pointer;
  font-family: var(--font-famaly-main);
  color: var(--color-main-title);
  font-weight: 500;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid transparent;
}
@media (width <= 65.06125rem) {
  .faq__question {
    font-size: 16px;
    padding: 20px 20px;
  }
}
@media (width <= 47.99875rem) {
  .faq__question {
    font-size: 14px;
    padding: 16px 12px;
  }
}
.faq__question-text {
  max-width: 700px;
}
@media (width <= 65.06125rem) {
  .faq__question-text {
    max-width: 470px;
  }
}
@media (width <= 47.99875rem) {
  .faq__question-text {
    max-width: 95%;
  }
}
.faq__icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-main-title);
  border-bottom: 2px solid var(--color-main-title);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 5px;
}
.faq__item[open] .faq__icon {
  transform: rotate(-135deg);
}
.faq__item[open] .faq__question {
  border-radius: 24px 24px 0px 0px;
}
.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}
.faq__item[open] .faq__content {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq__answer {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
  padding: 0px 25px 28px 25px;
  color: #727272;
  line-height: 24px;
  background-color: #ffffff;
  border-radius: 0px 0px 24px 24px;
}
@media (width <= 65.06125rem) {
  .faq__answer {
    font-size: 14px;
    line-height: 1.3;
    padding: 0px 20px 20px 20px;
  }
}
@media (width <= 47.99875rem) {
  .faq__answer {
    font-size: 14px;
    line-height: 1.3;
    padding: 0px 12px 16px 12px;
  }
}

.home_contacts {
  padding-top: 90px;
  padding-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .home_contacts {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.home_contacts-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media (width <= 65.06125rem) {
  .home_contacts-inner {
    column-gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .home_contacts-inner {
    flex-wrap: wrap;
  }
}
.home_contacts__text-wrapper {
  max-width: 480px;
}
@media (width <= 65.06125rem) {
  .home_contacts__text-wrapper {
    max-width: 33%;
  }
}
@media (width <= 47.99875rem) {
  .home_contacts__text-wrapper {
    max-width: 100%;
  }
}
.home_contacts__text-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .home_contacts__text-subtitle {
    font-size: 12px;
  }
}
.home_contacts__text-title {
  margin-top: 12px;
  margin-bottom: 20px;
}
@media (width <= 65.06125rem) {
  .home_contacts__text-title {
    font-size: 18px;
    line-height: 16px;
    margin-top: 6px;
    margin-bottom: 10px;
    line-height: 24px;
  }
}
.home_contacts__text-desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 95%;
}
@media (width <= 65.06125rem) {
  .home_contacts__text-desc {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
@media (width <= 47.99875rem) {
  .home_contacts__text-desc {
    margin-bottom: 16px;
  }
}
.home_contacts__info-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
}
@media (width <= 65.06125rem) {
  .home_contacts__info-list {
    row-gap: 12px;
  }
}
.home_contacts__info-item {
  width: 100%;
}
.home_contacts__info-link {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (any-hover: hover) {
  .home_contacts__info-link:hover .home_contacts__info-icon_wrapper {
    background-color: var(--color-second);
    transition: var(--transition-duration);
  }
  .home_contacts__info-link:hover .home_contacts__info-title {
    transition: var(--transition-duration);
  }
  .home_contacts__info-link:hover .home_contacts__info-text {
    color: var(--color-second);
    transition: var(--transition-duration);
  }
}
@media (any-hover: none) {
  .home_contacts__info-link:active .home_contacts__info-icon_wrapper {
    background-color: var(--color-second);
    transition: var(--transition-duration);
  }
  .home_contacts__info-link:active .home_contacts__info-title {
    transition: var(--transition-duration);
  }
  .home_contacts__info-link:active .home_contacts__info-text {
    color: var(--color-second);
    transition: var(--transition-duration);
  }
}
.home_contacts__info-icon_wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-border-second);
  border-radius: 50%;
  padding: 10px;
}
.home_contacts__info-title {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-gray);
  line-height: 20px;
}
@media (width <= 65.06125rem) {
  .home_contacts__info-title {
    font-size: 12px;
  }
}
.home_contacts__info-text {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 16px;
  color: var(--color-title);
  line-height: 24px;
}
@media (width <= 65.06125rem) {
  .home_contacts__info-text {
    font-size: 14px;
  }
}
.home_contacts__form-wrapper {
  background-color: #ffffff;
  max-width: 675px;
  margin-top: 35px;
  padding: 33px;
  border-radius: 20px;
}
@media (width <= 47.99875rem) {
  .home_contacts__form-wrapper {
    padding: 16px;
  }
}
.home_contacts__form-title {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray);
  text-align: left;
}
@media (width <= 65.06125rem) {
  .home_contacts__form-title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (width <= 47.99875rem) {
  .home_contacts__form-title {
    font-size: 14px;
  }
}

.contacts_title {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (width <= 65.06125rem) {
  .contacts_title {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_title {
    margin-top: 25px;
    margin-bottom: 40px;
  }
}
.contacts_title__body {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
}
@media (width <= 47.99875rem) {
  .contacts_title__body {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.contacts_title-wrapper {
  max-width: 620px;
}
@media (width <= 65.06125rem) {
  .contacts_title-wrapper {
    max-width: 480px;
  }
}
.contacts_title__subtitle {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .contacts_title__subtitle {
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_title__subtitle {
    display: none;
  }
}
.contacts_title__title {
  margin-top: 16px;
  margin-bottom: 26px;
}
@media (width <= 65.06125rem) {
  .contacts_title__title {
    margin-top: 10px;
    margin-bottom: 16px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_title__title {
    margin-top: 0px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.contacts_title__desc {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
  line-height: 28px;
}
@media (width <= 65.06125rem) {
  .contacts_title__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (width <= 65.06125rem) {
  .contacts_title__desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    line-height: normal;
    color: var(--color-main);
    text-align: center;
  }
}
.contacts_title__img-wrapper {
  max-width: 370px;
  margin-right: 48px;
  margin-left: 20px;
}
@media (width <= 73.74875rem) {
  .contacts_title__img-wrapper {
    margin-right: 0px;
    max-width: 320px;
  }
}
@media (width <= 65.06125rem) {
  .contacts_title__img-wrapper {
    max-width: 220px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_title__img-wrapper {
    max-width: 270px;
    margin-top: 16px;
    margin-left: 0px;
  }
}
.contacts_main {
  margin-bottom: 80px;
}
.contacts_main__subtitle {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-second);
}
@media (width <= 47.99875rem) {
  .contacts_main__subtitle {
    font-size: 14px;
  }
}
.contacts_main__title {
  margin-top: 18px;
  margin-bottom: 30px;
}
@media (width <= 47.99875rem) {
  .contacts_main__title {
    margin-top: 8px;
    margin-bottom: 20px;
  }
}
.contacts_main__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (width <= 47.99875rem) {
  .contacts_main__list {
    flex-wrap: wrap;
    row-gap: 12px;
  }
}
.contacts_main__item {
  background-color: #ffffff;
  border-radius: 20px;
  width: 49%;
  overflow: hidden;
  border: 2px solid transparent;
}
@media (width <= 47.99875rem) {
  .contacts_main__item {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .contacts_main__item:hover {
    border: 2px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
@media (any-hover: none) {
  .contacts_main__item:active {
    border: 2px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
.contacts_main__item-link {
  padding: 25px;
  display: block;
  display: flex;
  column-gap: 18px;
  align-items: center;
}
@media (width <= 65.06125rem) {
  .contacts_main__item-link {
    padding: 16px;
    column-gap: 10px;
    padding-left: 20px;
  }
}
.contacts_main__item-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-border-second);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  padding: 10px;
}
.contacts_main__item-title {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  color: var(--color-gray);
  line-height: 20px;
}
@media (width <= 65.06125rem) {
  .contacts_main__item-title {
    font-size: 14px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_main__item-title {
    font-size: 12px;
  }
}
.contacts_main__item-body {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main-title);
  line-height: 28px;
  margin-top: 4px;
  margin-bottom: 4px;
}
@media (width <= 65.06125rem) {
  .contacts_main__item-body {
    line-height: normal;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_main__item-body {
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.contacts_main__item-desc {
  font-family: var(--font-famaly-main);
  font-size: 14px;
  color: var(--color-gray);
  line-height: 20px;
}
@media (width <= 65.06125rem) {
  .contacts_main__item-desc {
    line-height: normal;
  }
}
@media (width <= 47.99875rem) {
  .contacts_main__item-desc {
    font-size: 12px;
  }
}

.contacts_channel {
  margin-bottom: 80px;
}
.contacts_channel__desc {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray);
  margin-bottom: 30px;
}
@media (width <= 47.99875rem) {
  .contacts_channel__desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    color: #000000;
    line-height: normal;
    padding-right: 10px;
    margin-bottom: 20px;
  }
}
.contacts_channel__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .contacts_channel__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_channel__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
  }
}
.contacts_channel__item {
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid transparent;
}
@media (any-hover: hover) {
  .contacts_channel__item:hover {
    border: 2px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
@media (any-hover: none) {
  .contacts_channel__item:active {
    border: 2px solid var(--color-second);
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
@media (width <= 47.99875rem) {
  .contacts_channel__item {
    border: none;
  }
}
@media (width <= 47.99875rem) and (any-hover: hover) {
  .contacts_channel__item:hover {
    border: none;
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
@media (width <= 47.99875rem) and (any-hover: none) {
  .contacts_channel__item:active {
    border: none;
    box-shadow: 0 0 10px 0 rgba(44, 48, 51, 0.1);
  }
}
.contacts_channel__item-link {
  display: block;
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}
@media (width <= 65.06125rem) {
  .contacts_channel__item-link {
    padding: 10px;
  }
}
@media (width <= 47.99875rem) {
  .contacts_channel__item-link {
    padding: 0px;
    display: inline;
  }
}
.contacts_channel__item-title {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 16px;
}
@media (width <= 47.99875rem) {
  .contacts_channel__item-title {
    display: none;
  }
}
.contacts_channel__ps {
  font-family: var(--font-famaly-main);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray);
  margin-top: 30px;
}
@media (width <= 47.99875rem) {
  .contacts_channel__ps {
    font-size: 12px;
    line-height: 20px;
    margin-top: 16px;
  }
}

.contacts-feedback {
  background-color: #ffffff;
}
.contacts-feedback-inner {
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .contacts-feedback-inner {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.contacts-feedback__subtitle {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-famaly-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-second);
}
.contacts-feedback__title {
  max-width: 500px;
  margin: 17px auto;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .contacts-feedback__title {
    margin: 6px auto 16px;
  }
}
.contacts-feedback__desc {
  max-width: 650px;
  margin: 0 auto;
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray);
  margin-bottom: 30px;
}
@media (width <= 47.99875rem) {
  .contacts-feedback__desc {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 16px;
    max-width: 460px;
  }
}
.contacts-feedback__button {
  margin: 0 auto;
  padding: 12px 46px;
}
@media (width <= 47.99875rem) {
  .contacts-feedback__button {
    padding: 10px 40px;
  }
}

.contacts-welcome {
  padding-top: 75px;
  padding-bottom: 80px;
}
@media (width <= 47.99875rem) {
  .contacts-welcome {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.contacts-welcome__title {
  margin: 0 auto;
  max-width: 740px;
  font-family: var(--font-famaly-main);
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 12px;
  color: var(--color-main-title);
  text-align: center;
}
@media (width <= 47.99875rem) {
  .contacts-welcome__title {
    max-width: 460px;
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
  }
}
.contacts-welcome__desc {
  max-width: 840px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-gray);
  margin: 0 auto;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .contacts-welcome__desc {
    max-width: 460px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
}

.blog_title {
  margin-top: 60px;
}
.blog_title__subtitle {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .blog_title__subtitle {
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .blog_title__subtitle {
    display: none;
  }
}
.blog_title__title {
  margin-top: 16px;
  margin-bottom: 26px;
  max-width: 750px;
}
@media (width <= 65.06125rem) {
  .blog_title__title {
    margin-top: 10px;
    margin-bottom: 16px;
  }
}
@media (width <= 47.99875rem) {
  .blog_title__title {
    margin-top: 0px;
    margin-bottom: 16px;
  }
}
.blog_title__desc {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  color: var(--color-gray);
  line-height: 28px;
  max-width: 760px;
}
@media (width <= 65.06125rem) {
  .blog_title__desc {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (width <= 65.06125rem) {
  .blog_title__desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    line-height: normal;
  }
}

.blog_body {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .blog_body {
    padding-top: 40px;
  }
}
@media (width <= 47.99875rem) {
  .blog_body {
    padding-top: 20px;
  }
}
.blog_body-header {
  padding-top: 16px;
  padding-bottom: 40px;
}
.blog_body-header__count-articles {
  margin-top: 4px;
}
.blog_body-header__count-articles .blog-count {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray);
  text-align: right;
}
@media (width <= 47.99875rem) {
  .blog_body-header__count-articles .blog-count {
    font-size: 12px;
  }
}
.blog_body-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: space-around;
  padding-bottom: 50px;
}
@media (width <= 73.74875rem) {
  .blog_body-articles {
    gap: 20px;
  }
}
@media (width <= 65.06125rem) {
  .blog_body-articles {
    gap: 16px;
    padding-bottom: 30px;
  }
}
.blog_body-articles .blog-post {
  border: 1px solid #dae0e7;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(29, 37, 48, 0.04), 0 1px 3px 0 rgba(29, 37, 48, 0.06);
  background: #fff;
  padding: 25px 15px 25px 25px;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post {
    padding: 20px 15px 20px 25px;
  }
}
.blog_body-articles .blog-post_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_body-articles .blog-post_header-category {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 16px;
  padding: 6px 12px;
  border-radius: 20px;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post_header-category {
    font-size: 12px;
  }
}
.blog_body-articles .blog-post_header-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 16px;
  color: #627084;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post_header-time {
    font-size: 12px;
  }
}
.blog_body-articles .blog-post_header-time::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("../icons/clock.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.blog_body-articles .blog-post_title {
  font-family: var(--font-famaly-second);
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #1d2530;
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.5em;
  min-height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post_title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.blog_body-articles .blog-post_desc {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 20px;
  color: #627084;
  line-height: 1.5em;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post_desc {
    font-size: 12px;
  }
}
.blog_body-articles .blog-post_link {
  margin-top: 20px;
  font-family: var(--font-famaly-second);
  font-size: 16px;
  color: #1F3651;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--color-second);
  padding: 6px 16px;
  border-radius: 20px;
}
@media (width <= 47.99875rem) {
  .blog_body-articles .blog-post_link {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .blog_body-articles .blog-post_link:hover {
    gap: 12px;
  }
}
@media (any-hover: none) {
  .blog_body-articles .blog-post_link:active {
    gap: 12px;
  }
}
.blog_body-articles .blog-post_link::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../icons/arrow_link_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  padding-right: 10px;
}
.blog-categories li {
  padding: 6px 12px;
  border-radius: 20px;
}
.blog-categories li a {
  text-decoration: none;
  font-family: var(--font-famaly-second);
  font-size: 14px;
  color: var(--color-main);
}
@media (width <= 47.99875rem) {
  .blog-categories li a {
    font-size: 12px;
  }
}
.blog-categories li.active {
  background-color: var(--color-main);
}
.blog-categories li.active a {
  color: #ffffff;
}

.blog_body-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog_body-pagination .page-number {
  cursor: pointer;
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 20px;
  color: #1D2530;
  border-radius: 6px;
  border: 1px solid #DAE0E7;
  background-color: #F9FAFB;
  box-shadow: 0 1px 2px 0 rgba(29, 37, 48, 0.04), 0 1px 3px 0 rgba(29, 37, 48, 0.06);
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
}
@media (width <= 47.99875rem) {
  .blog_body-pagination .page-number {
    height: 30px;
    width: 30px;
    font-size: 12px;
  }
}
.blog_body-pagination .current {
  background-color: var(--color-main);
  color: #ffffff;
}
.blog_body-pagination .prev::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../icons/pagination_prev.svg") center/contain no-repeat;
}
.blog_body-pagination .next::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../icons/pagination_next.svg") center/contain no-repeat;
}

.blog-pagination_wrapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (width <= 47.99875rem) {
  .blog-pagination_wrapper {
    column-gap: 5px;
  }
}

.blog_dzen {
  background-color: #ffffff;
  padding-top: 64px;
  padding-bottom: 78px;
}
@media (width <= 47.99875rem) {
  .blog_dzen {
    padding-top: 26px;
    padding-bottom: 76px;
  }
}
.blog_dzen-inner {
  text-align: center;
}
.blog_dzen__title {
  font-family: var(--font-famaly-main);
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.blog_dzen__desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray);
  max-width: 680px;
  margin: 18px auto 48px;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .blog_dzen__desc {
    font-family: var(--font-famaly-second);
    margin: 16px auto 18px;
    font-size: 12px;
    line-height: 20px;
  }
}
.blog_dzen__link {
  padding: 12px 80px;
  background-color: var(--color-second);
  border-radius: 30px;
  color: #ffffff;
  position: relative;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
@media (width <= 47.99875rem) {
  .blog_dzen__link {
    padding: 12px 120px;
  }
}
@media (any-hover: hover) {
  .blog_dzen__link:hover {
    background-color: var(--color-main);
  }
}
@media (any-hover: none) {
  .blog_dzen__link:active {
    background-color: var(--color-main);
  }
}
.blog_dzen__link::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 18px;
  background-image: url("../icons/arrow_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.blog-article {
  margin-top: 80px;
  margin-bottom: 80px;
}
.blog-article_wrapper {
  border: 1px solid rgb(242, 220, 255);
}

.team_title {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .team_title {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .team_title {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.team_title__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .team_title__body {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.team_title-wrapper {
  max-width: 678px;
}
@media (width <= 47.99875rem) {
  .team_title-wrapper {
    max-width: 500px;
  }
}
@media (width <= 65.06125rem) {
  .team_title__title {
    max-width: 560px;
  }
}
.team_title__desc {
  margin-top: 35px;
  margin-bottom: 35px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .team_title__desc {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media (width <= 47.99875rem) {
  .team_title__desc {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 18px;
    margin-top: 14px;
    margin-bottom: 14px;
  }
}
.team_title__img-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (width <= 47.99875rem) {
  .team_title__img-list {
    width: 100%;
    margin-left: 60px;
  }
}
.team_title__img-item {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.team_title__img-item:not(:first-child) {
  margin-left: -34px;
}
@media (width <= 47.99875rem) {
  .team_title__img-item:not(:first-child) {
    margin-left: -14px;
  }
}
@media (width <= 47.99875rem) {
  .team_title__img-item {
    width: 55px;
    height: 55px;
  }
}
.team_title__img-item:nth-child(1) {
  z-index: 20;
}
.team_title__img-item:nth-child(2) {
  z-index: 19;
}
.team_title__img-item:nth-child(3) {
  z-index: 18;
}
.team_title__img-item:nth-child(4) {
  z-index: 17;
}
.team_title__img-item:nth-child(5) {
  z-index: 16;
}
.team_title__img-item:nth-child(6) {
  z-index: 15;
}
.team_title__img-item:nth-child(7) {
  z-index: 14;
}
.team_title__img-item:nth-child(8) {
  z-index: 13;
}
.team_title__img-item:nth-child(9) {
  z-index: 12;
}
.team_title__img-item:nth-child(10) {
  z-index: 11;
}
.team_title__img-item:nth-child(11) {
  z-index: 10;
}
.team_title__img-item:nth-child(12) {
  z-index: 9;
}
.team_title__img-item:nth-child(13) {
  z-index: 8;
}
.team_title__img-item:nth-child(14) {
  z-index: 7;
}
.team_title__img-item:nth-child(15) {
  z-index: 6;
}
.team_title__img-item:nth-child(16) {
  z-index: 5;
}
.team_title__img-item:nth-child(17) {
  z-index: 4;
}
.team_title__img-item:nth-child(18) {
  z-index: 3;
}
.team_title__img-item:nth-child(19) {
  z-index: 2;
}
.team_title__img-item:nth-child(20) {
  z-index: 1;
}
.team_title__img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-block__subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #568F73;
}
@media (width <= 47.99875rem) {
  .team-block__subtitle {
    font-size: 12px;
  }
}
.team-block__title {
  max-width: 760px;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media (width <= 65.06125rem) {
  .team-block__title {
    max-width: 560px;
    margin-top: 14px;
    margin-bottom: 16px;
  }
}
@media (width <= 47.99875rem) {
  .team-block__title {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
.team-block__desc {
  max-width: 760px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray);
}
@media (width <= 65.06125rem) {
  .team-block__desc {
    max-width: 560px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (width <= 47.99875rem) {
  .team-block__desc {
    font-size: 12px;
    line-height: 18px;
  }
}

.team-aboutus {
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .team-aboutus {
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus {
    margin-bottom: 40px;
  }
}
.team-aboutus_advantages-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  margin-bottom: 44px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_advantages-list {
    gap: 12px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_advantages-list {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.team-aboutus_advantages-item {
  background-color: #ffffff;
  padding: 16px 30px 30px;
  border-radius: 20px;
  width: 33%;
}
@media (width <= 65.06125rem) {
  .team-aboutus_advantages-item {
    padding: 16px 16px 30px 20px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_advantages-item {
    width: 100%;
    padding: 20px;
  }
}
.team-aboutus_advantages-subtitle {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: var(--color-second);
  text-align: right;
}
@media (width <= 65.06125rem) {
  .team-aboutus_advantages-subtitle {
    font-size: 18px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_advantages-subtitle {
    font-size: 16px;
  }
}
.team-aboutus_advantages-title {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  max-width: 230px;
  margin-bottom: 20px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_advantages-title {
    font-size: 20px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_advantages-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 26px;
  }
}
.team-aboutus_advantages-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_advantages-desc {
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_advantages-desc {
    font-size: 14px;
  }
}
.team-aboutus_plus {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_plus {
    padding: 30px 20px 30px 30px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus {
    padding: 20px 20px 40px 40px;
  }
}
.team-aboutus_plus-title {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 150%;
}
@media (width <= 65.06125rem) {
  .team-aboutus_plus-title {
    font-size: 22px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus-title {
    font-size: 18px;
  }
}
.team-aboutus_plus-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_plus-list {
    gap: 20px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 14px;
  }
}
.team-aboutus_plus-item {
  display: flex;
  gap: 10px;
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus-item {
    align-items: center;
  }
}
.team-aboutus_plus-number {
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus-number {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }
}
.team-aboutus_plus-text {
  font-family: var(--font-famaly-main);
  line-height: 24px;
  font-size: 18px;
}
@media (width <= 65.06125rem) {
  .team-aboutus_plus-text {
    font-size: 16px;
  }
}
@media (width <= 47.99875rem) {
  .team-aboutus_plus-text {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 16px;
  }
}

.team-ourteam {
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .team-ourteam {
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .team-ourteam {
    margin-bottom: 40px;
  }
}
.team-ourteam_person-list {
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .team-ourteam_person-list {
    margin-top: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.team-ourteam_person-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .team-ourteam_person-item {
    padding: 30px 14px;
  }
}
.team-ourteam_person-photo_wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}
.team-ourteam_person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-ourteam_person-name {
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 4px;
  color: var(--color-title);
}
.team-ourteam_person-position {
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  color: #4B9B79;
}
@media (width <= 47.99875rem) {
  .team-ourteam_person-position {
    font-size: 14px;
  }
}
.team-ourteam_person-desc {
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-gray);
}
@media (width <= 47.99875rem) {
  .team-ourteam_person-desc {
    font-size: 14px;
  }
}
.team-ourteam_footer-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .team-ourteam_footer-wrapper {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
  }
}
.team-ourteam_expert-wrapper {
  width: 49%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px 20px 25px 25px;
}
@media (width <= 47.99875rem) {
  .team-ourteam_expert-wrapper {
    width: 100%;
    padding: 20px 15px 20px 20px;
  }
}
.team-ourteam_expert-title {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px;
  color: var(--color-title);
}
@media (width <= 47.99875rem) {
  .team-ourteam_expert-title {
    font-family: var(--font-famaly-base);
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    margin-bottom: 10px;
  }
}
.team-ourteam_expert-desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray);
}
@media (width <= 47.99875rem) {
  .team-ourteam_expert-desc {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }
}
.team-ourteam_values-wrapper {
  width: 49%;
  background-color: #EDF3F1;
  border-radius: 20px;
  padding: 25px 20px 25px 25px;
}
@media (width <= 47.99875rem) {
  .team-ourteam_values-wrapper {
    width: 100%;
    padding: 20px 10px 20px 20px;
  }
}
.team-ourteam_values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-ourteam_values-item {
  padding: 10px 17px;
  background-color: #FBFBF9;
  border: 1px solid #EDF3F1;
  border-radius: 30px;
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-title);
}
@media (width <= 47.99875rem) {
  .team-ourteam_values-item {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 10px 14px;
    color: var(--color-gray);
  }
}

.team-hwork_video-wrapper {
  max-width: 840px;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}
.team-hwork_video-inner {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */
}
.team-hwork_video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.team-ourteam_person-list .swiper-button-next,
.team-ourteam_person-list .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s;
  color: #C8C3C3;
  /* цвет стрелок */
}

.team-ourteam_person-list:hover .swiper-button-next,
.team-ourteam_person-list:hover .swiper-button-prev {
  opacity: 1;
}

.team-ourteam_person-list .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.team-ourteam_person-list .swiper-slide {
  height: auto;
  display: flex;
}
@media (width <= 47.99875rem) {
  .team-ourteam_person-list .swiper-slide {
    width: 240px !important;
    flex-shrink: 0;
  }
}

.business_title {
  margin-top: 60px;
}
@media (width <= 65.06125rem) {
  .business_title {
    margin-top: 40px;
  }
}
@media (width <= 47.99875rem) {
  .business_title {
    margin-top: 20px;
  }
}
.business_title-wrapper {
  padding: 40px 40px 40px 100px;
  min-height: 412px;
  border-radius: 20px;
  background-color: #FEFEFE;
  overflow: hidden;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 50%;
}
@media (width <= 73.74875rem) {
  .business_title-wrapper {
    padding: 40px 40px 40px 60px;
    background-size: 48%;
  }
}
@media (width <= 65.06125rem) {
  .business_title-wrapper {
    padding: 40px 40px 40px 40px;
    background-size: 48%;
    min-height: 340px;
  }
}
@media (width <= 47.99875rem) {
  .business_title-wrapper {
    padding: 40px 10px 60px 10px;
    background-size: 95%;
    min-height: 340px;
  }
}
.business_title__body {
  max-width: 645px;
}
@media (width <= 65.06125rem) {
  .business_title__body {
    max-width: 420px;
  }
}
.business_title__title {
  line-height: 52px;
}
@media (width <= 65.06125rem) {
  .business_title__title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (width <= 47.99875rem) {
  .business_title__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.business_title__desc {
  max-width: 562px;
  margin-top: 20px;
  margin-bottom: 38px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  line-height: 22px;
  color: #727272;
}
@media (width <= 65.06125rem) {
  .business_title__desc {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}
@media (width <= 47.99875rem) {
  .business_title__desc {
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 90px;
  }
}
.business_title .business__button {
  padding: 10px 40px;
  position: relative;
}
@media (width <= 47.99875rem) {
  .business_title .business__button {
    font-family: var(--font-famaly-main);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 50px 10px 40px;
    margin-left: 30px;
  }
}
.business_title .business__button::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../icons/arrow_link_r_w.svg") no-repeat center/contain;
  display: none;
}
@media (width <= 47.99875rem) {
  .business_title .business__button::after {
    display: block;
  }
}

.business_specific {
  margin-top: 60px;
}
@media (width <= 65.06125rem) {
  .business_specific {
    margin-top: 40px;
  }
}
.business_specific-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .business_specific-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.business_specific_body-wrapper {
  width: 50%;
  flex-shrink: 0;
}
@media (width <= 65.06125rem) {
  .business_specific_body-wrapper {
    width: 55%;
  }
}
@media (width <= 47.99875rem) {
  .business_specific_body-wrapper {
    width: 100%;
  }
}
.business_specific__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (width <= 65.06125rem) {
  .business_specific__list {
    margin-top: 20px;
    gap: 12px;
  }
}
@media (width <= 47.99875rem) {
  .business_specific__list {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
  }
}
.business_specific__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.business_specific__icon-wrapper {
  width: 24px;
  height: 24px;
  background-color: #EFF3F1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}
.business_specific__text {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: #222A28;
}
@media (width <= 47.99875rem) {
  .business_specific__text {
    font-size: 14px;
    line-height: 18px;
  }
}
.business_specific_note {
  margin-right: 30px;
  max-width: 550px;
  padding: 36px 32px;
  border: 1px solid rgba(80, 134, 103, 0.1);
  border-radius: 24px;
  background-color: #eef6f2;
  box-shadow: 20px 20px 12px rgba(221, 238, 232, 0.5);
}
@media (width <= 73.74875rem) {
  .business_specific_note {
    margin-right: 0px;
    max-width: 500px;
  }
}
@media (width <= 65.06125rem) {
  .business_specific_note {
    padding: 20px 16px 20px 28px;
  }
}
@media (width <= 47.99875rem) {
  .business_specific_note {
    padding: 24px 16px 24px 30px;
    max-width: 100%;
  }
}
.business_specific_note_text {
  font-family: var(--font-famaly-second);
  font-size: 18px;
  line-height: 30px;
  color: #2B363B;
}
@media (width <= 65.06125rem) {
  .business_specific_note_text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (width <= 47.99875rem) {
  .business_specific_note_text {
    font-size: 15px;
  }
}

.business_expert {
  margin-top: 70px;
}
.business_expert__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .business_expert__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .business_expert__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.business_expert__item {
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  padding-bottom: 30px;
}
@media (width <= 65.06125rem) {
  .business_expert__item {
    min-height: auto;
  }
}
.business_expert__item-subtitle {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  text-align: right;
  color: #8FCBB1;
}
@media (width <= 65.06125rem) {
  .business_expert__item-subtitle {
    font-size: 20px;
  }
}
@media (width <= 47.99875rem) {
  .business_expert__item-subtitle {
    font-size: 15px;
  }
}
.business_expert__item-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: var(--font-famaly-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #222A28;
}
@media (width <= 65.06125rem) {
  .business_expert__item-title {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (width <= 47.99875rem) {
  .business_expert__item-title {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
  }
}
.business_expert__item-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 22px;
  color: #6A7C76;
}
@media (width <= 47.99875rem) {
  .business_expert__item-desc {
    font-size: 15px;
    line-height: 18px;
  }
}
.business_expert__ps {
  margin: 0 auto;
  margin-top: 30px;
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 26px;
  max-width: 600px;
  color: #6A7C76;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .business_expert__ps {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}

.business_control {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .business_control {
    margin-top: 60px;
  }
}
.business_control-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .business_control-inner {
    flex-wrap: wrap;
    gap: 0px;
  }
}
.business_control_body-wrapper {
  width: 45%;
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .business_control_body-wrapper {
    width: 90%;
    max-width: 500px;
  }
}
.business_control_note {
  margin-top: 30px;
  background-color: #EDEFEE;
  border-radius: 20px;
  padding: 25px;
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: #222A28;
}
@media (width <= 47.99875rem) {
  .business_control_note {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 14px 18px 14px 20px;
  }
}
.business_control__list {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (width <= 47.99875rem) {
  .business_control__list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.business_control__item {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.business_control__item:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
@media (width <= 47.99875rem) {
  .business_control__item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.business_control__item-icon_wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDF2EF;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 10px;
}
.business_control__item-text {
  font-family: var(--font-famaly-main);
  font-size: 14px;
  line-height: 20px;
  color: #222A28;
}

.business_contur {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .business_contur {
    margin-top: 60px;
  }
}
.business_contur__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .business_contur__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .business_contur__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.business_contur__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
}
@media (width <= 47.99875rem) {
  .business_contur__item {
    padding: 20px;
  }
}
.business_contur__item-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 18px;
  color: #222A28;
  margin-bottom: 20px;
}
@media (width <= 47.99875rem) {
  .business_contur__item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.business_contur__item-desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  color: #6A7C76;
}
@media (width <= 47.99875rem) {
  .business_contur__item-desc {
    font-size: 14px;
  }
}

.business_process {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .business_process {
    margin-top: 60px;
  }
}
.business_process-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .business_process-inner {
    flex-wrap: wrap;
    gap: 35px;
  }
}
.business_process_body-wrapper {
  max-width: 500px;
  flex-shrink: 0;
}
@media (width <= 65.06125rem) {
  .business_process_body-wrapper {
    max-width: 45%;
  }
}
@media (width <= 47.99875rem) {
  .business_process_body-wrapper {
    max-width: 100%;
  }
}
.business_process__list {
  max-width: 580px;
  flex-grow: 1;
}
@media (width <= 47.99875rem) {
  .business_process__list {
    max-width: 100%;
  }
}
.business_process__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
@media (width <= 47.99875rem) {
  .business_process__item {
    padding: 16px 16px 16px 20px;
    gap: 20px;
    margin-bottom: 12px;
  }
}
.business_process__item_number-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D5EBE2;
  flex-shrink: 0;
  border-radius: 50%;
}
.business_process__item_number {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #568F73;
}
.business_process__item-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #222A28;
  margin-bottom: 5px;
}
@media (width <= 65.06125rem) {
  .business_process__item-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.business_process__item-desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #6A7C76;
}
@media (width <= 65.06125rem) {
  .business_process__item-desc {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (width <= 47.99875rem) {
  .business_process__item-desc {
    font-size: 14px;
    line-height: 18px;
  }
}

.business_types {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .business_types {
    margin-top: 60px;
  }
}
.business_types__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .business_types__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .business_types__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.business_types__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.business_types__item_icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #EAF6F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
.business_types__item-title {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: #222A28;
}
.business_types__ps {
  margin-top: 30px;
  border-radius: 20px;
  background-color: #E0EBE6;
  padding: 25px;
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 26px;
  color: #587E6E;
}
@media (width <= 47.99875rem) {
  .business_types__ps {
    padding: 12px 12px 12px 20px;
    line-height: 22px;
  }
}

.business_consult {
  margin-top: 80px;
  background-color: #FDFDFC;
  padding-top: 96px;
  padding-bottom: 110px;
}
@media (width <= 65.06125rem) {
  .business_consult {
    margin-top: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (width <= 47.99875rem) {
  .business_consult {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.business_consult-inner {
  text-align: center;
}
.business_consult__subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #92AF9E;
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
}
@media (width <= 47.99875rem) {
  .business_consult__subtitle {
    font-size: 12px;
  }
}
.business_consult__title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #222A28;
  text-align: center;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 20px;
}
@media (width <= 65.06125rem) {
  .business_consult__title {
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
@media (width <= 47.99875rem) {
  .business_consult__title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.business_consult__desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #6A7C76;
  text-align: center;
  max-width: 630px;
  margin: 0 auto;
}
@media (width <= 47.99875rem) {
  .business_consult__desc {
    font-size: 14px;
    line-height: 20px;
  }
}
.business_consult__button {
  text-align: center;
  margin-top: 40px;
  position: relative;
  padding: 15px 60px 15px 48px;
  font-size: 16px;
}
@media (width <= 47.99875rem) {
  .business_consult__button {
    margin-top: 24px;
    padding: 12px 30px;
  }
}
.business_consult__button::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  right: 40px;
  top: 18px;
  background-image: url("../icons/arrow_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}
@media (width <= 47.99875rem) {
  .business_consult__button::after {
    display: none;
  }
}

.tbusiness {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .tbusiness {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .tbusiness {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.tbusiness__title {
  margin-bottom: 40px;
}
.tbusiness__item {
  display: flex;
  border-radius: 4px;
  margin-bottom: 10px;
  width: auto;
}
.tbusiness__item.swiper-slide-active .tbusiness__item-second {
  display: block;
}
.tbusiness__item.swiper-slide-active {
  box-shadow: 9px 9px 4px -6px rgba(0, 0, 0, 0.25);
}
.tbusiness__item-main {
  width: 80px;
  height: 440px;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-main {
    width: 70px;
    height: 400px;
  }
}
.tbusiness__item-main_title {
  background-color: #ffffff;
  width: 62px;
  height: 230px;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 10px;
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 40px;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-main_title {
    width: 58px;
    height: 200px;
    margin-top: 30px;
  }
}
.tbusiness__item-main_title p {
  font-size: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (width <= 65.06125rem) {
  .tbusiness__item-main_title p {
    font-size: 18px;
  }
}
.tbusiness__item-main_circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #F8DAD6;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  margin-top: 100px;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-main_circle {
    margin-top: 90px;
  }
}
.tbusiness__item-second {
  width: 300px;
  height: 440px;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  display: none;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-second {
    width: 260px;
    height: 400px;
  }
}
.tbusiness__item-second_title {
  width: 225px;
  height: 83px;
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 100px;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-second_title {
    width: 210px;
    height: 80px;
  }
}
.tbusiness__item-second_title p {
  font-size: 24px;
}
@media (width <= 65.06125rem) {
  .tbusiness__item-second_title p {
    font-size: 22px;
  }
}
.tbusiness__item-second_link {
  background-color: #2C3033;
  border-radius: 30px;
  padding: 10px 40px;
  font-family: var(--font-famaly-main);
  font-weight: 300;
  font-size: 18px;
  color: #FCFCFC;
  margin-top: 60px;
}
/* контейнер кнопок */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  margin: 20px auto 0;
  border: 2px solid #6AB293;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media (width <= 65.06125rem) {
  .slider-controls {
    width: 160px;
    height: 44px;
    margin-top: 16px;
  }
}

/* линия между кнопками */
.divider {
  width: 2px;
  height: 22px;
  background: #6AB293;
  flex-shrink: 0;
}

/* кнопки */
.tbusiness-button-prev,
.tbusiness-button-next {
  position: static;
  width: 50%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
}

.tbusiness-button-prev::after,
.tbusiness-button-next::after {
  font-size: 22px;
  font-weight: 700;
  color: #2C3033;
}

.tbusiness-button-prev:hover,
.tbusiness-button-next:hover {
  background: #6AB293;
}

.tbusiness-button-prev:hover::after,
.tbusiness-button-next:hover::after {
  color: #fff;
}

.slider-controls .divider {
  height: 100%;
}

.services_wtis {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .services_wtis {
    margin-top: 60px;
  }
}
.services_wtis_main-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .services_wtis_main-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.services_wtis_main-wrapper .team-block__title {
  max-width: 450px;
}
.services_wtis_body-wrapper {
  max-width: 500px;
  flex-shrink: 0;
}
@media (width <= 65.06125rem) {
  .services_wtis_body-wrapper {
    max-width: 45%;
  }
}
@media (width <= 47.99875rem) {
  .services_wtis_body-wrapper {
    max-width: 100%;
  }
}
.services_wtis__list {
  max-width: 580px;
  flex-grow: 1;
}
@media (width <= 47.99875rem) {
  .services_wtis__list {
    max-width: 100%;
  }
}
.services_wtis__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid #EEF2F0;
}
@media (width <= 47.99875rem) {
  .services_wtis__item {
    padding: 20px 16px 20px 16px;
    gap: 16px;
    margin-bottom: 12px;
  }
}
.services_wtis__item-icon_wrapper {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background-color: #f80505;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services_wtis__item-title {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2F3737;
}
@media (width <= 47.99875rem) {
  .services_wtis__item-title {
    font-size: 14px;
    line-height: 18px;
  }
}
.services_wtis__item-title span {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #2B363B;
}
@media (width <= 47.99875rem) {
  .services_wtis__item-title span {
    font-size: 14px;
    line-height: 18px;
  }
}
.services_wtis_ps {
  margin-top: 30px;
  background-color: #E0EBE6;
  border-radius: 20px;
  border: 1px solid #E9F2ED;
  padding: 25px;
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .services_wtis_ps {
    margin-top: 6px;
    padding: 17px 16px 17px 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.services_contur {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .services_contur {
    margin-top: 60px;
  }
}
.services_contur__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .services_contur__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .services_contur__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
    margin-top: 20px;
  }
}
.services_contur__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .services_contur__item {
    padding: 20px;
    border-radius: 12px;
  }
}
.services_contur__item-title {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #21282C;
}
@media (width <= 47.99875rem) {
  .services_contur__item-title {
    font-family: var(--font-famaly-second);
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #2B333B;
  }
}
.services_contur__ps {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 700px;
  text-align: center;
  border-radius: 20px;
  padding: 25px;
  background-color: #EEF6F2;
  border: 1px solid #E9F2ED;
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .services_contur__ps {
    font-family: var(--font-famaly-second);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #344256;
    background-color: #E0EBE6;
    padding: 14px 20px;
  }
}
.services_contur .team-block__title {
  margin-top: 16px;
  margin-bottom: 16px;
}

.services_process {
  margin-top: 70px;
}
@media (width <= 65.06125rem) {
  .services_process {
    margin-top: 60px;
  }
}
.services_process__ps {
  margin-top: 30px;
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #2B363B;
}
@media (width <= 47.99875rem) {
  .services_process__ps {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
  }
}
.services_process .business_expert__item-title {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #2B363B;
}
@media (width <= 47.99875rem) {
  .services_process .business_expert__item-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }
}
.services_process .business_expert__item-desc {
  color: #67777E;
}

.services_whois {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .services_whois {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .services_whois {
    margin-top: 40px;
  }
}
.services_whois-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}
@media (width <= 65.06125rem) {
  .services_whois-inner {
    gap: 24px;
  }
}
@media (width <= 47.99875rem) {
  .services_whois-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.services_whois__list {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (width <= 47.99875rem) {
  .services_whois__list {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #EDF3F1;
    border-radius: 20px;
    padding: 20px 12px;
  }
}
.services_whois__item {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
}
.services_whois__item:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
@media (width <= 47.99875rem) {
  .services_whois__item {
    display: block;
    padding: 10px;
    min-height: auto;
  }
}
.services_whois__item-text {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #21282C;
}
@media (width <= 47.99875rem) {
  .services_whois__item-text {
    font-family: var(--font-famaly-base);
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #73808C;
  }
}
.services_whois_body-wrapper {
  width: 45%;
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .services_whois_body-wrapper {
    order: 1;
    width: 90%;
    max-width: 500px;
  }
}

.services_consult .business_consult__title {
  margin-top: 30px;
  margin-bottom: 0px;
}
@media (width <= 47.99875rem) {
  .services_consult .business_consult__title {
    font-size: 18px;
    line-height: 22px;
    margin-top: 12px;
    margin-bottom: 0px;
  }
}

.outsourcing_title {
  margin-top: 40px;
}
@media (width <= 65.06125rem) {
  .outsourcing_title {
    margin-top: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_title {
    margin-top: 20px;
  }
}
.outsourcing_title-wrapper {
  padding: 85px 50px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background: center/cover no-repeat;
}
@media (width <= 65.06125rem) {
  .outsourcing_title-wrapper {
    padding: 65px 50px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_title-wrapper {
    padding: 50px 10px;
    border-radius: 12px;
  }
}
.outsourcing_title__body {
  max-width: 780px;
}
@media (width <= 47.99875rem) {
  .outsourcing_title__body {
    max-width: 500px;
  }
}
.outsourcing_title__title {
  font-size: 50px;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (width <= 65.06125rem) {
  .outsourcing_title__title {
    font-size: 40px;
    line-height: 42px;
    max-width: 620px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_title__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.outsourcing_title__desc {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
@media (width <= 47.99875rem) {
  .outsourcing_title__desc {
    font-size: 15px;
    line-height: 20px;
  }
}
.outsourcing_title__button {
  padding: 10px 40px;
}
@media (width <= 47.99875rem) {
  .outsourcing_title__button {
    font-size: 14px;
  }
}

.outsourcing_wtis {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_wtis {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis {
    margin-top: 30px;
  }
}
.outsourcing_wtis_main-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis_main-wrapper {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.outsourcing_wtis_body-wrapper {
  max-width: 780px;
}
@media (width <= 65.06125rem) {
  .outsourcing_wtis_body-wrapper {
    max-width: 500px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis_body-wrapper {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis-block__title {
    font-size: 18px;
  }
}
.outsourcing_wtis-block__desc {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 32px;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  border-radius: 10px;
}
@media (width <= 65.06125rem) {
  .outsourcing_wtis-block__desc {
    font-size: 20px;
    margin-top: 22px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis-block__desc {
    font-size: 15px;
    margin-top: 14px;
    padding: 14px;
    max-width: 500px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis_img_pc {
    display: none;
  }
}
.outsourcing_wtis_img_mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .outsourcing_wtis_img_mobile {
    display: block;
  }
}

.outsourcing_which {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_which {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which {
    margin-top: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which-block__title {
    font-size: 18px;
  }
}
.outsourcing_which-block__desc {
  max-width: 780px;
  margin-top: 32px;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}
@media (width <= 65.06125rem) {
  .outsourcing_which-block__desc {
    font-size: 20px;
    margin-top: 22px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which-block__desc {
    font-size: 15px;
    margin-top: 14px;
    max-width: 500px;
  }
}
.outsourcing_which_var-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 73.74875rem) {
  .outsourcing_which_var-list {
    gap: 16px;
  }
}
@media (width <= 65.06125rem) {
  .outsourcing_which_var-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 26px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-list {
    margin-top: 16px;
  }
}
.outsourcing_which_var-item {
  border-radius: 20px;
  border: 4px solid;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 73.74875rem) {
  .outsourcing_which_var-item {
    padding: 30px 24px;
    gap: 18px;
  }
}
@media (width <= 65.06125rem) {
  .outsourcing_which_var-item {
    max-width: 600px;
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-item {
    max-width: 480px;
    padding: 30px 20px;
    gap: 12px;
  }
}
.outsourcing_which_var-item-1 {
  border-color: #8FCBB1;
}
.outsourcing_which_var-item-2 {
  border-color: #A5B1C1;
}
.outsourcing_which_var-item-3 {
  border-color: #A9D2EE;
}
.outsourcing_which_var-title {
  font-family: var(--font-famaly-base);
  font-size: 32px;
  color: var(--color-main);
}
@media (width <= 73.74875rem) {
  .outsourcing_which_var-title {
    font-size: 28px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-title {
    font-size: 20px;
  }
}
.outsourcing_which_var-subtitle {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #8FCBB1;
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-subtitle {
    font-size: 16px;
  }
}
.outsourcing_which_var-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-main);
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-desc {
    font-size: 14px;
  }
}
.outsourcing_which_var-subdesc {
  font-family: var(--font-famaly-second);
  font-size: 18px;
  color: var(--color-main);
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-subdesc {
    font-size: 14px;
  }
}
.outsourcing_which_var-subitem {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-main);
}
@media (width <= 47.99875rem) {
  .outsourcing_which_var-subitem {
    font-size: 14px;
  }
}
.outsourcing_which_var-subitem::before {
  content: "•";
  color: var(--color-main);
  margin-right: 5px;
}

.outsourcing_directions {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_directions {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_directions {
    margin-top: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_title {
    font-size: 18px;
  }
}
.outsourcing_directions_desc {
  max-width: 900px;
  margin-top: 32px;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}
@media (width <= 65.06125rem) {
  .outsourcing_directions_desc {
    font-size: 20px;
    margin-top: 22px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_desc {
    font-size: 15px;
    margin-top: 14px;
    max-width: 500px;
  }
}
.outsourcing_directions_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 73.74875rem) {
  .outsourcing_directions_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (width <= 65.06125rem) {
  .outsourcing_directions_list {
    margin-top: 26px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_list {
    margin-top: 16px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.outsourcing_directions_item-link {
  display: block;
  height: 100%;
  width: 100%;
  padding: 18px 20px 40px 30px;
  background-color: #ffffff;
  border-radius: 30px;
  border: 2px solid transparent;
}
@media (width <= 65.06125rem) {
  .outsourcing_directions_item-link {
    padding: 18px 20px 30px 30px;
    border-radius: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_item-link {
    padding: 18px 20px 20px 20px;
    border-radius: 20px;
  }
}
@media (any-hover: hover) {
  .outsourcing_directions_item-link:hover {
    border: 2px solid #8FCBB1;
    box-shadow: 2px 2px 10px 2px rgba(34, 60, 80, 0.05);
  }
}
@media (any-hover: none) {
  .outsourcing_directions_item-link:active {
    border: 2px solid #8FCBB1;
    box-shadow: 2px 2px 10px 2px rgba(34, 60, 80, 0.05);
  }
}
.outsourcing_directions_item-subtitle {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #8FCBB1;
  text-align: right;
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_item-subtitle {
    font-size: 20px;
  }
}
.outsourcing_directions_item-title {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #2C3033;
  margin-bottom: 18px;
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_item-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.outsourcing_directions_item-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  color: #2C3033;
}
@media (width <= 47.99875rem) {
  .outsourcing_directions_item-desc {
    font-size: 15px;
  }
}

.outsourcing_reliability {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_reliability {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability {
    margin-top: 30px;
  }
}
.outsourcing_reliability .outsourcing_wtis-block__desc {
  padding: 0px;
  background-color: transparent;
}
.outsourcing_reliability_img-wrapper {
  display: none;
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability_img-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}
.outsourcing_reliability_list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .outsourcing_reliability_list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability_list {
    margin-top: 16px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.outsourcing_reliability_item {
  padding: 30px 20px 30px 30px;
  background-color: #ffffff;
  border-radius: 30px;
  border: 2px solid transparent;
}
@media (width <= 65.06125rem) {
  .outsourcing_reliability_item {
    padding: 30px 20px 30px 30px;
    border-radius: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability_item {
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
  }
}
.outsourcing_reliability_item-title {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #2C3033;
  margin-bottom: 18px;
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability_item-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.outsourcing_reliability_item-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  color: #2C3033;
}
@media (width <= 47.99875rem) {
  .outsourcing_reliability_item-desc {
    font-size: 15px;
  }
}

.outsourcing_price {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_price {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_price {
    margin-top: 60px;
  }
}
.outsourcing_price_main-wrapper {
  padding: 60px 40px;
  border-radius: 20px;
  border: 4px solid #8FCBB1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (width <= 65.06125rem) {
  .outsourcing_price_main-wrapper {
    gap: 30px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_price_main-wrapper {
    gap: 20px;
    padding: 30px 20px;
  }
}
.outsourcing_price_title {
  max-width: 740px;
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #21282C;
}
@media (width <= 47.99875rem) {
  .outsourcing_price_title {
    font-size: 18px;
    line-height: 22px;
  }
}
.outsourcing_price_desc {
  max-width: 740px;
  text-align: center;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #000000;
}
@media (width <= 47.99875rem) {
  .outsourcing_price_desc {
    font-size: 15px;
  }
}
.outsourcing_price_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  column-gap: 20px;
}
@media (width <= 65.06125rem) {
  .outsourcing_price_list {
    row-gap: 16px;
    column-gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_price_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
    column-gap: 10px;
  }
}
.outsourcing_price_item {
  max-width: 412px;
  display: flex;
  align-items: start;
  gap: 8px;
}
.outsourcing_price_item-number {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #D4AA9D;
}
@media (width <= 47.99875rem) {
  .outsourcing_price_item-number {
    font-size: 14px;
    width: 20px;
    height: 20px;
  }
}
.outsourcing_price_item-text {
  font-family: var(--font-famaly-base);
  font-size: 20px;
  color: #000000;
}
@media (width <= 47.99875rem) {
  .outsourcing_price_item-text {
    font-size: 15px;
  }
}
.outsourcing_price_subdesc {
  max-width: 740px;
  text-align: center;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #1D1D1B;
}
@media (width <= 47.99875rem) {
  .outsourcing_price_subdesc {
    font-size: 15px;
  }
}
.outsourcing_price__button {
  padding: 10px 40px;
}
@media (width <= 47.99875rem) {
  .outsourcing_price__button {
    font-size: 14px;
    padding: 10px 30px;
  }
}

.outsourcing_consult {
  margin-top: 80px;
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .outsourcing_consult {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .outsourcing_consult {
    margin-top: 60px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.outsourcing_consult_main-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult_main-wrapper {
    gap: 12px;
  }
}
.outsourcing_consult__subtitle {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  line-height: 20px;
  color: #508667;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult__subtitle {
    font-size: 12px;
  }
}
.outsourcing_consult__title {
  max-width: 750px;
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  color: #21282C;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.outsourcing_consult__desc {
  max-width: 550px;
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #677E73;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult__desc {
    font-family: var(--font-famaly-base);
    font-size: 15px;
    color: #000000;
    line-height: 20px;
  }
}
.outsourcing_consult_body-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult_body-wrapper {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.outsourcing_consult_item {
  width: 220px;
}
.outsourcing_consult_item-title {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 40px;
  color: #000000;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult_item-title {
    font-size: 24px;
  }
}
.outsourcing_consult_item-desc {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 1.1;
}
@media (width <= 47.99875rem) {
  .outsourcing_consult_item-desc {
    font-size: 16px;
  }
}
.outsourcing_consult_item-img-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.consultations_whneed {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .consultations_whneed {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_whneed {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.consultations_whneed .tsupport_models_title {
  margin-top: 0;
}
.consultations_whneed_main-wrapper {
  background-color: #EDF3F1;
  border-radius: 20px;
  padding: 15px 24px 30px 24px;
}
@media (width <= 47.99875rem) {
  .consultations_whneed_main-wrapper {
    padding: 15px 15px 20px 15px;
  }
}
.consultations_whneed_list {
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 12px;
}
.consultations_whneed_item {
  background-color: #FBFBF9;
  padding: 8px 16px;
  border: 1px solid #ECEEEE;
  border-radius: 9999px;
}
@media (width <= 47.99875rem) {
  .consultations_whneed_item {
    padding: 8px 14px;
  }
}
.consultations_whneed_item-text {
  font-family: var(--font-famaly-second);
  font-size: 15px;
  line-height: 24px;
  color: #334155;
}
@media (width <= 47.99875rem) {
  .consultations_whneed_item-text {
    font-size: 14px;
  }
}

.consultations_types {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .consultations_types {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_types {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.consultations_types_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .consultations_types_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.consultations_types_item {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .consultations_types_item {
    padding: 20px 20px 40px 30px;
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_types_item {
    gap: 12px;
    padding: 20px 20px 30px 20px;
  }
}
.consultations_types_item_1 {
  border: 4px solid #8FCBB1;
}
.consultations_types_item_2 {
  border: 4px solid #A5B1C1;
}
.consultations_types_item_3 {
  border: 4px solid #A9D2EE;
}
.consultations_types_item_4 {
  border: 4px solid #CAA1C0;
}
.consultations_types_item-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
  text-align: right;
}
.consultations_types_item-maintitle {
  font-family: var(--font-famaly-base);
  font-size: 32px;
  color: #0F172A;
}
@media (width <= 47.99875rem) {
  .consultations_types_item-maintitle {
    font-size: 22px;
  }
}
.consultations_types_item-title {
  font-family: var(--font-famaly-second);
  font-size: 18px;
  color: #334155;
}
@media (width <= 47.99875rem) {
  .consultations_types_item-title {
    font-size: 14px;
  }
}
.consultations_types_item-desc {
  font-family: var(--font-famaly-base);
  font-size: 15px;
  color: #475569;
  line-height: 24px;
}
@media (width <= 47.99875rem) {
  .consultations_types_item-desc {
    font-size: 15px;
    line-height: 1.1;
    color: #73808C;
  }
}

.consultations_wgets {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .consultations_wgets {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_wgets {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.consultations_wgets_list {
  border-radius: 20px;
  border: 2px solid #E2E8F0;
  background-color: #ffffff;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .consultations_wgets_list {
    border: 1px solid #E2E8F0;
  }
}
.consultations_wgets_item {
  padding: 24px 30px;
}
.consultations_wgets_item:not(:last-child) {
  border-bottom: 1px solid #E2E8F0;
}
.consultations_wgets_item {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (width <= 47.99875rem) {
  .consultations_wgets_item {
    padding: 15px 20px;
    gap: 16px;
  }
}
.consultations_wgets_item-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
}
.consultations_wgets_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #0F172A;
}
@media (width <= 47.99875rem) {
  .consultations_wgets_item-title {
    font-size: 14px;
  }
}
.consultations_wgets_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #475569;
}
@media (width <= 47.99875rem) {
  .consultations_wgets_item-desc {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 1.1;
  }
}

.consultations_links {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .consultations_links {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_links {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.consultations_links_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .consultations_links_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_links_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
}
.consultations_links_item {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 18px 20px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width <= 47.99875rem) {
  .consultations_links_item {
    padding: 16px 20px 20px 20px;
    gap: 1px;
  }
}
.consultations_links_item-subtitle {
  font-family: var(--font-famaly-base);
  font-size: 24px;
  color: #6AB293;
  text-align: right;
}
@media (width <= 47.99875rem) {
  .consultations_links_item-subtitle {
    font-size: 18px;
  }
}
.consultations_links_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0F172A;
}
@media (width <= 47.99875rem) {
  .consultations_links_item-title {
    font-size: 16px;
  }
}
.consultations_links_item-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 1.1;
  color: #475569;
}
@media (width <= 47.99875rem) {
  .consultations_links_item-desc {
    font-size: 18px;
  }
}
.consultations_links_item-link {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8FCBB1;
  display: flex;
  align-items: center;
}
.consultations_links_item-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/icons/arrow_link_gr.svg");
  background-size: contain;
  margin-left: 10px;
}

.consultations_consult {
  background-color: #FDFDFC;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (width <= 65.06125rem) {
  .consultations_consult {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (width <= 47.99875rem) {
  .consultations_consult {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.consultations_consult_main-wrapper {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consultations_consult_subtitle {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #508667;
  margin-bottom: 26px;
}
@media (width <= 47.99875rem) {
  .consultations_consult_subtitle {
    display: none;
  }
}
.consultations_consult_title {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #0F172A;
  margin-bottom: 8px;
}
@media (width <= 47.99875rem) {
  .consultations_consult_title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}
.consultations_consult_desc {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: #475569;
}
@media (width <= 47.99875rem) {
  .consultations_consult_desc {
    font-family: var(--font-famaly-base);
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
    line-height: 18px;
  }
}
.consultations_consult_subdesc {
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #64748B;
  margin-top: 16px;
}
@media (width <= 47.99875rem) {
  .consultations_consult_subdesc {
    display: none;
  }
}
.consultations_consult .business_consult__button {
  margin-top: 30px;
}
@media (width <= 47.99875rem) {
  .consultations_consult .business_consult__button {
    margin-top: 24px;
  }
}

.nalogi_ourapproach {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .nalogi_ourapproach {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .nalogi_ourapproach {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.nalogi_ourapproach_main-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  border: 4px solid #A5B1C1;
  padding: 40px;
}
@media (width <= 47.99875rem) {
  .nalogi_ourapproach_main-wrapper {
    padding: 20px;
    padding-bottom: 40px;
    border: 3px solid #A5B1C1;
  }
}
.nalogi_ourapproach .tsupport_models_subtitle {
  max-width: 700px;
}
.nalogi_ourapproach .tsupport_models_title {
  max-width: 700px;
}
@media (width <= 47.99875rem) {
  .nalogi_ourapproach .tsupport_models_title {
    margin-top: 8px;
  }
}
.nalogi_ourapproach .tsupport_models_desc {
  max-width: 900px;
}
@media (width <= 47.99875rem) {
  .nalogi_ourapproach .tsupport_models_desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    line-height: 1.1;
    color: #798686;
  }
}
.nalogi_ourapproach_list {
  margin: 0 auto;
  margin-top: 34px;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (width <= 47.99875rem) {
  .nalogi_ourapproach_list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }
}
.nalogi_ourapproach_item-text {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #2F3737;
}

.nalogi_profit {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .nalogi_profit {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .nalogi_profit {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.nalogi_profit_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .nalogi_profit_list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.nalogi_profit_item {
  border-radius: 20px;
  background-color: #ffffff;
  border: 4px solid;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 65.06125rem) {
  .nalogi_profit_item {
    padding: 30px 20px;
  }
}
@media (width <= 47.99875rem) {
  .nalogi_profit_item {
    border: 3px solid;
    padding: 20px 10px;
    max-width: 500px;
  }
}
.nalogi_profit_item_1 {
  border-color: #A5B1C1;
}
.nalogi_profit_item_2 {
  border-color: #8FCBB1;
}
.nalogi_profit_item_3 {
  border-color: #A9D2EE;
}
.nalogi_profit_item_4 {
  border-color: #D4AA9D;
}
.nalogi_profit_item_text {
  text-align: center;
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #212C28;
}
@media (width <= 47.99875rem) {
  .nalogi_profit_item_text {
    font-size: 14px;
    line-height: 22px;
  }
}

.personnel_title .outsourcing_title__title {
  max-width: 90%;
}
@media (width <= 47.99875rem) {
  .personnel_title .outsourcing_title__title {
    max-width: 100%;
  }
}

.personnel_complex .tsupport_models_title {
  max-width: 500px;
}
.personnel_complex .tsupport_complex_title-wrapper {
  max-width: 50%;
}
@media (width <= 47.99875rem) {
  .personnel_complex .tsupport_complex_title-wrapper {
    max-width: 100%;
  }
}
.personnel_steps {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .personnel_steps {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_steps {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.personnel_steps .tsupport_models_title {
  max-width: 700px;
}
.personnel_steps .business_expert__item-desc {
  color: #73808C;
}

.personnel_reliability {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .personnel_reliability {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_reliability {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.personnel_reliability .outsourcing_reliability_item-title {
  text-align: center;
  margin: 0;
}

.personnel_price {
  margin-top: 80px;
  background-color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (width <= 65.06125rem) {
  .personnel_price {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_price {
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.personnel_price .tsupport_models_title {
  text-align: center;
}
.personnel_price .tsupport_models_desc {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 26px;
}
@media (width <= 47.99875rem) {
  .personnel_price .tsupport_models_desc {
    margin-top: 12px;
    margin-bottom: 26px;
  }
}
.personnel_price_main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.personnel_price_body-wrapper {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #E0E6EB;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .personnel_price_body-wrapper {
    border: 2px solid #E0E6EB;
  }
}
.personnel_price_row-wrapper {
  border-top: 2px solid #E0E6EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
@media (width <= 47.99875rem) {
  .personnel_price_row-wrapper {
    padding: 16px 12px;
  }
}
.personnel_price_row-wrapper-main {
  background-color: #F9FAFB;
  border-top: none;
}
.personnel_price_row-title {
  font-family: var(--font-famaly-second);
  font-size: 16px;
  font-weight: 700;
  color: #2B333B;
  line-height: 24px;
}
@media (width <= 47.99875rem) {
  .personnel_price_row-title {
    font-size: 14px;
  }
}
.personnel_price_row-name {
  font-family: var(--font-famaly-second);
  font-size: 15px;
  font-weight: 400;
  color: #2B333B;
  line-height: 24px;
}
@media (width <= 47.99875rem) {
  .personnel_price_row-name {
    font-size: 14px;
  }
}
.personnel_price_row-price {
  font-family: var(--font-famaly-second);
  font-size: 14px;
  font-weight: 700;
  color: #81CAB4;
  line-height: 24px;
}
@media (width <= 47.99875rem) {
  .personnel_price_row-price {
    font-size: 14px;
  }
}
.personnel_price__button {
  padding: 10px 40px;
}
@media (width <= 47.99875rem) {
  .personnel_price__button {
    padding: 10px 30px;
    font-size: 16px;
  }
}

.personnel_links {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .personnel_links {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_links {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.personnel_links .tsupport_models_title {
  text-align: center;
  margin-bottom: 45px;
}
@media (width <= 65.06125rem) {
  .personnel_links .tsupport_models_title {
    margin-bottom: 30px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_links .tsupport_models_title {
    margin-bottom: 16px;
  }
}
.personnel_links_item {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #EEF0F1;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (any-hover: hover) {
  .personnel_links_item:hover {
    cursor: pointer;
    border: 1px solid var(--color-second);
    box-shadow: 2px 2px 8px 2px rgba(44, 48, 51, 0.05);
  }
}
@media (any-hover: none) {
  .personnel_links_item:active {
    cursor: pointer;
    border: 1px solid var(--color-second);
    box-shadow: 2px 2px 8px 2px rgba(44, 48, 51, 0.05);
  }
}
.personnel_links_item-link {
  padding: 15px 40px 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .personnel_links_item-link {
    padding: 15px 20px 15px 20px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_links_item-link {
    padding: 15px;
    gap: 16px;
  }
}
.personnel_links_item-number {
  width: 40px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.personnel_links_item-number img {
  height: 100%;
}
@media (width <= 47.99875rem) {
  .personnel_links_item-number {
    width: 30px;
    height: 50px;
  }
}
.personnel_links_item-body {
  width: 100%;
}
.personnel_links_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #2B333B;
  margin-bottom: 4px;
  max-width: 680px;
}
@media (width <= 47.99875rem) {
  .personnel_links_item-title {
    margin-bottom: 0px;
    font-size: 15px;
  }
}
.personnel_links_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #73808C;
  max-width: 680px;
}
@media (width <= 47.99875rem) {
  .personnel_links_item-desc {
    font-size: 13px;
    line-height: 18px;
  }
}
.personnel_links .support__category-icon {
  margin: 0;
}

.personnel_complex {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .personnel_complex {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .personnel_complex {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.personnel_complex_number-wrapper {
  width: 32px;
  height: 32px;
  background-color: #ECF4F0;
  border-radius: 50%;
  font-family: var(--font-famaly-main);
  font-size: 14px;
  color: #587E6E;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.personnel_complex .business_specific__text {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #798686;
}
@media (width <= 47.99875rem) {
  .personnel_complex .business_specific__text {
    font-size: 14px;
    line-height: 18px;
    color: #2B333B;
  }
}
.personnel_complex .business_specific__item {
  align-items: start;
}

.registration_whoservice {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .registration_whoservice {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .registration_whoservice {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.registration_whoservice_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .registration_whoservice_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .registration_whoservice_list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.registration_whoservice_item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 40px 40px;
}
@media (width <= 47.99875rem) {
  .registration_whoservice_item {
    border-radius: 12px;
    padding: 20px;
  }
}
.registration_whoservice_item-subtitle {
  text-align: right;
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
}
@media (width <= 47.99875rem) {
  .registration_whoservice_item-subtitle {
    font-family: var(--font-famaly-base);
    font-size: 12px;
    line-height: auto;
    color: #8FCBB1;
  }
}
.registration_whoservice_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #0F172A;
  margin-bottom: 20px;
  padding-right: 20px;
}
@media (width <= 47.99875rem) {
  .registration_whoservice_item-title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
  }
}
.registration_whoservice_item-desc {
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 1.1;
  color: #475569;
}
@media (width <= 47.99875rem) {
  .registration_whoservice_item-desc {
    font-size: 15px;
    color: #73808C;
  }
}

.registration_include {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .registration_include {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .registration_include {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.registration_include .tsupport_models_title {
  margin-bottom: 40px;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .registration_include .tsupport_models_title {
    text-align: left;
    margin-bottom: 16px;
  }
}
.registration_include .tsupport_models_subtitle {
  display: none;
}
@media (width <= 47.99875rem) {
  .registration_include .tsupport_models_subtitle {
    display: block;
  }
}
.registration_include_plus-wrapper {
  margin-top: 30px;
  border-radius: 20px;
  background-color: #E9F5EF;
  padding: 34px;
}
@media (width <= 47.99875rem) {
  .registration_include_plus-wrapper {
    border-radius: 12px;
    padding: 20px 20px;
  }
}
.registration_include_plus_title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #0F172A;
  display: flex;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .registration_include_plus_title {
    font-size: 14px;
  }
}
.registration_include_plus_title::before {
  content: url("../../assets/icons/plus_plus.svg");
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
}
.registration_include_plus_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media (width <= 47.99875rem) {
  .registration_include_plus_list {
    margin-top: 14px;
    gap: 12px;
  }
}
.registration_include_plus_item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.registration_include_plus_item_icon-wrapper {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.registration_include_plus_item_icon {
  width: 100%;
  height: 100%;
}
.registration_include_plus_item_text {
  font-family: var(--font-famaly-second);
  font-size: 15px;
  line-height: 24px;
  color: #334155;
}
@media (width <= 47.99875rem) {
  .registration_include_plus_item_text {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 1.1;
    color: #475569;
  }
}

.registration_whysafe {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .registration_whysafe {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .registration_whysafe {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.registration_whysafe .outsourcing_wtis-block__desc {
  padding: 0;
  max-width: 600px;
  background-color: transparent;
  margin-top: 26px;
  color: #475569;
}
@media (width <= 65.06125rem) {
  .registration_whysafe .outsourcing_wtis-block__desc {
    margin-top: 20px;
  }
}
@media (width <= 47.99875rem) {
  .registration_whysafe .outsourcing_wtis-block__desc {
    margin-top: 16px;
  }
}
.registration_whysafe_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .registration_whysafe_list {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .registration_whysafe_list {
    margin-top: 10px;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.registration_whysafe_item {
  border-radius: 20px;
  padding: 40px 40px 40px 40px;
  background-color: #ffffff;
}
@media (width <= 65.06125rem) {
  .registration_whysafe_item {
    padding: 30px 20px 30px 20px;
  }
}
@media (width <= 65.06125rem) {
  .registration_whysafe_item {
    border-radius: 12px;
  }
}
.registration_whysafe_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #0F172A;
  margin-bottom: 18px;
}
@media (width <= 47.99875rem) {
  .registration_whysafe_item-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 16px;
  }
}
.registration_whysafe_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #475569;
}
@media (width <= 65.06125rem) {
  .registration_whysafe_item-desc {
    line-height: 20px;
  }
}
@media (width <= 65.06125rem) {
  .registration_whysafe_item-desc {
    font-size: 14px;
    line-height: 1.1;
  }
}

.registration_ourservices {
  margin-top: 80px;
  background-color: #DEF0E8;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (width <= 65.06125rem) {
  .registration_ourservices {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .registration_ourservices {
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.registration_ourservices .tsupport_models_title {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 16px;
}
@media (width <= 47.99875rem) {
  .registration_ourservices .tsupport_models_title {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    text-align-last: left;
  }
}
.registration_ourservices .tsupport_models_desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-famaly-second);
  font-size: 18px;
  line-height: 28px;
  color: #475569;
}
@media (width <= 47.99875rem) {
  .registration_ourservices .tsupport_models_desc {
    width: 100%;
    margin: 0;
    text-align: left;
    font-family: var(--font-famaly-base);
    font-size: 15px;
    line-height: auto;
    line-height: 1.1;
  }
}
.registration_ourservices_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .registration_ourservices_list {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .registration_ourservices_list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.registration_ourservices_item {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 36px 26px 40px 32px;
}
@media (width <= 65.06125rem) {
  .registration_ourservices_item {
    padding: 30px 20px 30px 20px;
  }
}
@media (width <= 47.99875rem) {
  .registration_ourservices_item {
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
  }
}
.registration_ourservices_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #0F172A;
  border-bottom: 2px solid #8FCBB1;
  padding-bottom: 20px;
}
@media (width <= 47.99875rem) {
  .registration_ourservices_item-title {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 14px;
  }
}
.registration_ourservices_sublist {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .registration_ourservices_sublist {
    gap: 16px;
  }
}
.registration_ourservices_subitem_link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.registration_ourservices_subitem_text {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  color: #334155;
}
@media (width <= 47.99875rem) {
  .registration_ourservices_subitem_text {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 1.1;
  }
}
.registration_ourservices_subitem_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.registration_linkservices {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .registration_linkservices {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .registration_linkservices {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.registration_linkservices .tsupport_models_title {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 16px;
}
@media (width <= 47.99875rem) {
  .registration_linkservices .tsupport_models_title {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    text-align-last: left;
  }
}
.registration_linkservices_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (width <= 47.99875rem) {
  .registration_linkservices_list {
    gap: 24px;
    margin-top: 20px;
  }
}
.registration_linkservices_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #29303D;
}
@media (width <= 47.99875rem) {
  .registration_linkservices_item-title {
    font-size: 14px;
    line-height: 1.1;
  }
}
.registration_linkservices_sublist {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
@media (width <= 47.99875rem) {
  .registration_linkservices_sublist {
    gap: 8px;
    margin-top: 10px;
  }
}
.registration_linkservices_subitem {
  background-color: #ffffff;
  border: 2px solid #C7E5D8;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .registration_linkservices_subitem:hover {
    background-color: #C7E5D8;
  }
}
@media (any-hover: none) {
  .registration_linkservices_subitem:active {
    background-color: #C7E5D8;
  }
}
@media (width <= 47.99875rem) {
  .registration_linkservices_subitem {
    border: 2px solid #C7E5D8;
  }
}
.registration_linkservices_subitem_link {
  width: 100%;
  height: 100%;
  padding: 10px 16px;
}
@media (width <= 47.99875rem) {
  .registration_linkservices_subitem_link {
    padding: 8px 14px;
  }
}
.registration_linkservices_subitem_text {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
@media (width <= 47.99875rem) {
  .registration_linkservices_subitem_text {
    font-family: var(--font-famaly-base);
    font-size: 14px;
    line-height: 1.1;
    color: #334155;
  }
}

.tsupport_advantages {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .tsupport_advantages {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_advantages {
    margin-top: 30px;
  }
}
.tsupport_advantages_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 73.74875rem) {
  .tsupport_advantages_list {
    gap: 16px;
  }
}
@media (width <= 65.06125rem) {
  .tsupport_advantages_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.tsupport_advantages_item {
  background-color: #ffffff;
  border: 4px solid;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (width <= 73.74875rem) {
  .tsupport_advantages_item {
    padding: 30px 24px;
    gap: 18px;
  }
}
@media (width <= 65.06125rem) {
  .tsupport_advantages_item {
    max-width: 800px;
    gap: 16px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_advantages_item {
    max-width: 580px;
    padding: 30px 20px;
    gap: 12px;
  }
}
.tsupport_advantages_item_1 {
  border-color: #8FCBB1;
}
.tsupport_advantages_item_2 {
  border-color: #A5B1C1;
}
.tsupport_advantages_item_3 {
  border-color: #A9D2EE;
}
.tsupport_advantages_item-subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
  text-align: right;
}
.tsupport_advantages_item-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #212C28;
}
.tsupport_advantages_item-desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #727272;
}
.tsupport_advantages_item-subdesc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #727272;
  border-top: 1px solid #E9EDEB;
  padding-top: 5px;
}
.tsupport_advantages_item-subitem {
  font-family: var(--font-famaly-main);
  font-size: 16px;
  line-height: 24px;
  color: #727272;
}
@media (width <= 47.99875rem) {
  .tsupport_advantages_item-subitem {
    font-size: 14px;
  }
}
.tsupport_advantages_item-subitem::before {
  content: "•";
  color: #727272;
  margin-right: 5px;
}

.tsupport_models {
  margin-top: 80px;
  background-color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media (width <= 65.06125rem) {
  .tsupport_models {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_models {
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.tsupport_models_main-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.tsupport_models_subtitle {
  font-family: var(--font-famaly-main);
  font-weight: 200;
  font-size: 14px;
  line-height: 20px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .tsupport_models_subtitle {
    font-size: 12px;
  }
}
.tsupport_models_title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #21282C;
  margin-top: 16px;
  margin-bottom: 20px;
}
@media (width <= 47.99875rem) {
  .tsupport_models_title {
    font-size: 20px;
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.tsupport_models_desc {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .tsupport_models_desc {
    font-size: 14px;
    line-height: 18px;
  }
}
.tsupport_models_body-wrapper {
  border-radius: 20px;
  border: 4px solid #A5B1C1;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-top: 40px;
  padding: 40px;
}
@media (width <= 47.99875rem) {
  .tsupport_models_body-wrapper {
    margin-top: 20px;
    padding: 30px 14px;
    border: 3px solid #A5B1C1;
  }
}
.tsupport_models_body-title {
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #67777E;
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .tsupport_models_body-title {
    font-size: 16px;
    line-height: 16px;
    text-transform: none;
    color: #587E6E;
  }
}
.tsupport_models_body-list {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tsupport_models_body-item {
  display: flex;
  gap: 16px;
}
.tsupport_models_body-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ECF4F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #587E6E;
  flex-shrink: 0;
}
.tsupport_models_body-text {
  font-family: var(--font-famaly-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212C28;
}
@media (width <= 47.99875rem) {
  .tsupport_models_body-text {
    font-size: 14px;
    line-height: 24px;
  }
}
.tsupport_models_body-desc {
  padding-top: 25px;
  border-top: 1px solid #E9EDEB;
  font-family: var(--font-famaly-main);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #587E6E;
}
@media (width <= 47.99875rem) {
  .tsupport_models_body-desc {
    padding-top: 20px;
    font-size: 14px;
    line-height: 16px;
  }
}

.tsupport_complex {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .tsupport_complex {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_complex {
    margin-top: 40px;
  }
}
.tsupport_complex_body-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
@media (width <= 47.99875rem) {
  .tsupport_complex_body-wrapper {
    flex-wrap: wrap;
  }
}
.tsupport_complex_title-wrapper {
  max-width: 500px;
}
@media (width <= 47.99875rem) {
  .tsupport_complex_title-wrapper {
    width: 100%;
  }
}
.tsupport_complex_list {
  width: 50%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (width <= 65.06125rem) {
  .tsupport_complex_list {
    padding: 40px 30px;
    gap: 12px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_complex_list {
    width: 100%;
    padding: 25px 20px;
  }
}

.tsupport_steps {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .tsupport_steps {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .tsupport_steps {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.tsupport_steps .business_expert__list {
  margin-top: 30px;
}
.tsupport_steps .business_expert__item-desc {
  color: #2C3033;
}

.nfp_title {
  margin-bottom: 80px;
}
@media (width <= 47.99875rem) {
  .nfp_title {
    margin-bottom: 40px;
  }
}
.nfp_title .business_title-wrapper {
  background-size: 40%;
}
@media (width <= 47.99875rem) {
  .nfp_title .business_title-wrapper {
    background-size: 90%;
  }
}
.nfp_title .business_title__title {
  font-weight: 700;
}
.nfp_title .business_title__desc {
  font-family: var(--font-famaly-base);
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-main-title);
}
@media (width <= 47.99875rem) {
  .nfp_title .business_title__desc {
    font-size: 16px;
    line-height: 1.1;
    color: var(--color-main-title);
  }
}

.toutsourcing_models .tsupport_models_body-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.toutsourcing_models .tsupport_models_body-title {
  font-family: var(--font-famaly-main);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #21282C;
  text-transform: none;
}
@media (width <= 47.99875rem) {
  .toutsourcing_models .tsupport_models_body-title {
    font-size: 22px;
    line-height: 26px;
  }
}

.toutsourcing_steps_item {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
}
.toutsourcing_steps_item-subtitle {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toutsourcing_steps_item-subtitle img {
  height: 100%;
}
.toutsourcing_steps_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #344256;
  text-align: center;
  margin-top: 12px;
}
.toutsourcing_steps_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #65758B;
  text-align: center;
  margin-top: 8px;
}

.toutsourcing_profit {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .toutsourcing_profit {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit {
    margin-top: 60px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.toutsourcing_profit_body-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .toutsourcing_profit_body-wrapper {
    margin-top: 40px;
  }
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-wrapper {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toutsourcing_profit_body-plus {
  background-color: #F6FAF7;
  border-radius: 20px;
  border: 1px solid #E6EEE9;
  padding: 33px;
}
@media (width <= 65.06125rem) {
  .toutsourcing_profit_body-plus {
    padding: 20px;
  }
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-plus {
    padding: 20px;
  }
}
.toutsourcing_profit_body-plus_title-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
.toutsourcing_profit_body-plus_title-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #508667;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-plus_title-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}
.toutsourcing_profit_body-plus_title-icon img {
  width: 100%;
  height: 100%;
}
.toutsourcing_profit_body-plus_title {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #2B363B;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-plus_title {
    font-family: var(--font-famaly-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #21282C;
  }
}
.toutsourcing_profit_body-plus .business_specific__list {
  gap: 16px;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-plus .business_specific__list {
    background-color: transparent;
    margin-top: 10px;
    padding: 0;
  }
}
.toutsourcing_profit_body-plus .business_specific__item {
  gap: 12px;
}
.toutsourcing_profit_body-plus .business_specific__text {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2B363B;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-plus .business_specific__text {
    font-size: 14px;
  }
}
.toutsourcing_profit_body-minus {
  background-color: #F6F6F6;
  border-radius: 20px;
  padding: 33px;
}
@media (width <= 65.06125rem) {
  .toutsourcing_profit_body-minus {
    padding: 20px;
  }
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-minus {
    padding: 20px;
  }
}
.toutsourcing_profit_body-minus_title-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
.toutsourcing_profit_body-minus_title-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-minus_title-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
  }
}
.toutsourcing_profit_body-minus_title-icon img {
  width: 100%;
  height: 100%;
}
.toutsourcing_profit_body-minus_title {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-minus_title {
    font-family: var(--font-famaly-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #67777E;
  }
}
.toutsourcing_profit_body-minus .business_specific__list {
  gap: 16px;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-minus .business_specific__list {
    background-color: transparent;
    margin-top: 10px;
    padding: 0;
  }
}
.toutsourcing_profit_body-minus .business_specific__item {
  gap: 12px;
}
.toutsourcing_profit_body-minus .business_specific__text {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #67777E;
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_body-minus .business_specific__text {
    font-size: 14px;
  }
}
.toutsourcing_profit_desc_ps {
  max-width: 780px;
  margin: 0 auto;
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #2B363B;
}
@media (width <= 65.06125rem) {
  .toutsourcing_profit_desc_ps {
    margin-top: 30px;
  }
}
@media (width <= 47.99875rem) {
  .toutsourcing_profit_desc_ps {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}

.toutsourcing_advantages {
  margin-bottom: 80px;
}
@media (width <= 47.99875rem) {
  .toutsourcing_advantages {
    margin-bottom: 40px;
  }
}

.taxsalary_whofor .tsupport_models_desc {
  font-family: var(--font-famaly-second);
  font-size: 16px;
  line-height: 26px;
  color: #1D1D1B;
}

.taxsalary_process_ps {
  margin-top: 20px;
  padding: 14px 40px;
  background-color: #E0EBE6;
  font-family: var(--font-famaly-second);
  font-size: 16px;
  line-height: 24px;
  color: #344256;
  border: 1px solid #DFEAE4;
  border-radius: 20px;
}
@media (width <= 47.99875rem) {
  .taxsalary_process_ps {
    margin-top: 12px;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 20px;
  }
}
.taxsalary_process_ps a {
  color: #1D8F5F;
}

.taxsalary_wiswork .business_expert__list {
  grid-template-columns: repeat(5, 1fr);
}
@media (width <= 65.06125rem) {
  .taxsalary_wiswork .business_expert__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_wiswork .business_expert__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.taxsalary_wiswork .toutsourcing_steps_item {
  border: 1px solid #E1E7EF;
  padding: 24px 20px;
  position: relative;
}
.taxsalary_wiswork .toutsourcing_steps_item:not(:last-child)::after {
  content: "";
  /* Обязательно для background */
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  /* Центрирование */
  width: 24px;
  height: 24px;
  background-image: url("../../assets/icons/arrow_taxsalary_wiswork.svg");
  background-size: contain;
}
@media (width <= 47.99875rem) {
  .taxsalary_wiswork .toutsourcing_steps_item:not(:last-child)::after {
    display: none;
  }
}

.taxsalary_whyget {
  margin-top: 0;
}
@media (width <= 47.99875rem) {
  .taxsalary_whyget .team-block__desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    line-height: auto;
    color: #798686;
  }
}
.taxsalary_whyget_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .taxsalary_whyget_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_whyget_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
}
.taxsalary_whyget_item {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
}
@media (width <= 47.99875rem) {
  .taxsalary_whyget_item {
    padding: 20px;
    border-radius: 12px;
  }
}
.taxsalary_whyget_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #344256;
}
@media (width <= 47.99875rem) {
  .taxsalary_whyget_item-title {
    font-size: 14px;
    line-height: 16px;
    color: #2B333B;
  }
}
.taxsalary_whyget_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #65758B;
  margin-top: 14px;
}
@media (width <= 47.99875rem) {
  .taxsalary_whyget_item-desc {
    margin-top: 12px;
    font-family: var(--font-famaly-base);
    font-size: 15px;
    line-height: 1.1;
    color: #73808C;
  }
}

.taxsalary_results {
  margin-top: 80px;
}
@media (width <= 65.06125rem) {
  .taxsalary_results {
    margin-top: 60px;
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_results {
    margin-top: 40px;
  }
}
.taxsalary_results_list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width <= 65.06125rem) {
  .taxsalary_results_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_results_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.taxsalary_results_item {
  border: 2px solid;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 24px;
}
.taxsalary_results_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #344256;
}
@media (width <= 47.99875rem) {
  .taxsalary_results_item-title {
    font-size: 14px;
    line-height: 16px;
    color: #2B333B;
  }
}
.taxsalary_results_item-subtitle {
  margin-top: 4px;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #65758B;
}
.taxsalary_results_item-desc {
  margin-top: 16px;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #65758B;
}
@media (width <= 47.99875rem) {
  .taxsalary_results_item-desc {
    font-family: var(--font-famaly-base);
    font-size: 15px;
    line-height: 1.1;
    color: #73808C;
  }
}

.taxsalary_response {
  margin-bottom: 80px;
}
@media (width <= 65.06125rem) {
  .taxsalary_response {
    margin-bottom: 60px;
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_response {
    margin-bottom: 40px;
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_response .business_specific_body-wrapper {
    gap: 0;
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_response .business_specific__list {
    background-color: transparent;
    padding-bottom: 10px;
  }
}
.taxsalary_response_note {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 26px;
  max-width: 480px;
}
@media (width <= 47.99875rem) {
  .taxsalary_response_note {
    padding: 20px;
    border-radius: 12px;
  }
}
.taxsalary_response_note_title {
  font-family: var(--font-famaly-second);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #344256;
}
@media (width <= 47.99875rem) {
  .taxsalary_response_note_title {
    font-size: 14px;
    line-height: 16px;
    color: #2B333B;
  }
}
.taxsalary_response_note_desc {
  margin-top: 26px;
  font-family: var(--font-famaly-second);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4F4F4F;
}
@media (width <= 65.06125rem) {
  .taxsalary_response_note_desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (width <= 47.99875rem) {
  .taxsalary_response_note_desc {
    margin-top: 14px;
    font-size: 14px;
    line-height: 20px;
    color: #29303D;
  }
}

.taxsalary_trust {
  padding-top: 80px;
}
@media (width <= 47.99875rem) {
  .taxsalary_trust {
    padding-top: 40px;
  }
}

.taxsalary_slider {
  padding-bottom: 20px;
}

.tariffs_hero {
  background-color: #ffffff;
}
.tariffs_hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (width <= 47.99875rem) {
  .tariffs_hero-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.tariffs_hero_body {
  max-width: 620px;
}
@media (width <= 47.99875rem) {
  .tariffs_hero_body {
    max-width: 280px;
  }
}
.tariffs_hero_title {
  position: relative;
  font-size: 50px;
}
@media (width <= 47.99875rem) {
  .tariffs_hero_title {
    font-size: 26px;
    line-height: 32px;
  }
}
.tariffs_hero_title::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 280px;
  width: 248px;
  height: 101px;
  /* Добавление фоновой картинки */
  background-image: url("../../assets/images/bg/tariffs_hero_bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  /* Разместить поверх родителя или за ним */
}
@media (width <= 47.99875rem) {
  .tariffs_hero_title::after {
    top: -10px;
    left: 160px;
    width: 99px;
    height: 42px;
  }
}
.tariffs_hero_desc {
  font-family: var(--font-famaly-main);
  font-size: 18px;
  line-height: 28px;
  color: #67777E;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (width <= 47.99875rem) {
  .tariffs_hero_desc {
    font-family: var(--font-famaly-base);
    font-size: 16px;
    line-height: 1.1;
    color: #000000;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.tariffs_main {
  margin-top: 80px;
}
.tariffs_main_m-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tariffs_main_title {
  max-width: 750px;
  text-align: center;
  font-family: var(--font-famaly-base);
  font-size: 32px;
  color: #000000;
}
.tariffs_main_desc {
  max-width: 600px;
  text-align: center;
  font-family: var(--font-famaly-base);
  font-size: 18px;
  line-height: 1.1;
  color: #2C3033;
}

.tariffs_calculator {
  margin-top: 80px;
  padding-bottom: 80px;
}
.tariffs_calculator_main-wrapper {
  border-radius: 20px;
  border: 4px solid #6AB293;
  padding: 35px 80px;
  background-color: #ffffff;
}

.tariff-switcher {
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
}

.tariff-btn {
  padding: 10px 16px;
  border: 1px solid #2C3033;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  padding: 10px 64px;
}

.tariff-btn_l {
  border-radius: 50px 0 0 50px;
}

.tariff-btn_r {
  border-radius: 0 50px 50px 0;
}

.tariff-btn.active {
  background: #2C3033;
  color: #ffffff;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.tariff-table th,
.tariff-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.tariff-table th {
  background: #2C3033;
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  padding: 10px 0px;
}

.tariff-table tr:nth-child(even) {
  background: #f7f7f7;
}

.tariff_table_item-title {
  font-family: var(--font-famaly-second);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #333333;
  text-align: left;
  padding-left: 20px;
}

.tariff_table_item-desc {
  font-family: var(--font-famaly-second);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #2C3033;
  text-align: left;
  margin-top: 10px;
  padding-left: 20px;
  padding-bottom: 20px;
}

.tariff_table_item-name-ip {
  width: 28%;
  text-align: left;
}

.tariff_table_item-name-ooo {
  width: 31%;
  text-align: left;
}

.tariff_table_item-price-ip {
  width: 18%;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}

.tariff_table_item-price-ooo {
  width: 23%;
  font-family: var(--font-famaly-base);
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}

.cas {
  margin: 50px auto;
}

.cas-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cas-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .cas-row {
    grid-template-columns: 1fr;
  }
}
.cas-field {
  margin-bottom: 20px;
}

.cas-field__label {
  font-family: var(--font-famaly-base);
  font-size: 20px;
  margin-bottom: 8px;
  color: #000000;
}

.cas-radiobox-row,
.cas-radiobox-column {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cas-radiobox-column {
  flex-direction: column;
}

.cas-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

.cas-radio__input {
  accent-color: #000;
}

.cas-field2 {
  margin-bottom: 15px;
}

.cas-field2__label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
  display: block;
}

.cas-field2__input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.cas-field2__input:focus {
  border-color: #000;
  outline: none;
}

.cas-submit {
  margin-top: 25px;
}

.cas-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.cas-btn:hover {
  background: #333;
}

.cas-result {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;
  background: #f7f7f7;
}

.cas-result__tarif {
  font-size: 16px;
  margin-bottom: 10px;
}

.cas-result__price {
  font-size: 22px;
  font-weight: 600;
}

.cas-result {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;
  background: #f7f7f7;
}

.cas-result__tarif {
  font-size: 16px;
  margin-bottom: 10px;
}

.cas-result__price {
  font-size: 22px;
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map */
