:root {
  --main-color: #F0F0F0;
  --color-title-white: #ffffff;
  --color-text-white: #E0E0E0;
  --color-text-black: #252525;
  --color-text-green: #2ECC71;
  --color-text-primary: #441551;

  --container: 1170px;

  --font-primary: 'Golos Text', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-helvetica: 'Helvetica', system-ui, -apple-system, sans-serif;
  --font-onest: 'Onest', system-ui, -apple-system, sans-serif;

  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-20: 20px;
  --font-size-36: 36px;
  --font-size-48: 48px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  overflow-x: clip;
}

@supports not (overflow: clip) {

  html,
  body {
    overflow-x: hidden;
  }
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.8);
  transform: none;
  transition: none;
  transition-delay: 0s;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-open .mobile-menu__overlay {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-14);
  color: var(--color-text-black);
  line-height: 1;
  font-weight: 400;
  background: var(--main-color);
}

img {
  max-width: 100%;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

body.no-scroll {
  overflow: hidden;
}

.btn {
  transition: all 0.4s;
}

.btn:hover {
  background: var(--color-text-green);
  border-color: var(--color-text-green);
  color: var(--color-title-white);
}

.btn img {
  transition: all 0.4s;
}

.btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(201deg) brightness(110%) contrast(101%);
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.subtitle {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: 0.36px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__item::after {
  content: ">";
  color: var(--color-title-white);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.breadcrumbs__item:nth-last-of-type(1)::after {
  content: none;
}



.breadcrumbs__link {
  color: var(--color-title-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-decoration: underline !important;
}

.breadcrumbs__current {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
}

.breadcrumbs__container--black .breadcrumbs__link {
  color: var(--color-text-black);
}

.breadcrumbs__container--black .breadcrumbs__item::after {
  color: var(--color-text-black);
}

.breadcrumbs__container--black .breadcrumbs__current {
  color: rgba(37, 37, 37, 0.58);
}

.sub__white {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.21);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  width: max-content;
}

.sub__white::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}

.sub__black {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(162, 116, 191, 0.15);
  color: #7B2D8B;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  width: max-content;
  text-transform: uppercase;
}

.sub__black::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}


.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
}

.header__top {
  height: 70px;
  padding: 8px 0;
  background-color: #F3F3F3;
}

.header__main {
  height: 56px;
  position: relative;
  display: flex;
  background-color: #7B2D8B;
}

.header.is-scrolled {
  transform: translateY(-70px);
}

.header__top-mobile {
  display: none;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-link {
  display: flex;
  width: 231px;
  height: 55px;
}

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

.header__top-list {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.header__top-link {
  color: var(--color-text-black);
  font-size: 15px;
  line-height: normal;
  display: flex;
  flex-direction: column;
}

.header__top-link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-text-black);
  transition: all 0.4s;
}

.header__top-link:hover::after {
  width: 100%;
}

.header__contacts {
  display: flex;
  align-items: center;
  gap: 73px;
}

.header__phones {
  display: flex;
  flex-direction: column;
}

.header__phones-link {
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1.25;
}

.header__lang {
  position: relative;
  display: flex;
  align-items: stretch;
  width: auto;
  min-width: 81px;
  height: 36px;
  padding: 0 12px;
  border-radius: 33px;
  background: #7B2D8B;
}

.lang-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}

.lang-dropdown__trigger:hover {
  opacity: 0.85;
}

.lang-dropdown__trigger:focus-visible {
  outline: 2px solid var(--color-title-white);
  outline-offset: 2px;
  border-radius: 4px;
}

.lang-dropdown__chevron {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: inherit;
  transition: transform 0.3s ease;
}

.lang-dropdown__chevron::before {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  background: url(../img/lang.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease, margin 0.3s ease;
}

.lang-dropdown.is-open .lang-dropdown__chevron,
.header__lang:hover .lang-dropdown__chevron,
.header__lang.is-active .lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1100;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 16px;
  background: var(--color-title-white);
  box-shadow: 0 8px 24px rgba(68, 21, 81, 0.18);
}

.lang-dropdown__menu>li {
  margin: 0;
}

.lang-dropdown__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: normal;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.lang-dropdown__option:hover,
.lang-dropdown__option:focus-visible {
  background: #F3E8F6;
  outline: none;
}

.lang-dropdown__option.is-selected {
  background: #7B2D8B;
  color: var(--color-title-white);
}

.lang-dropdown__option.is-selected:hover,
.lang-dropdown__option.is-selected:focus-visible {
  background: #6a2680;
}

@media (min-width: 769px) {
  .header__lang .lang-dropdown__menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header__lang:hover .lang-dropdown__menu,
  .header__lang.is-active .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .lang-dropdown--desktop .lang-dropdown__menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
    min-width: 300px;
    padding: 14px 16px;
    border-radius: 24px;
    background: #7B2D8B;
    box-shadow: 0 12px 32px rgba(68, 21, 81, 0.28);
  }

  .lang-dropdown--desktop .lang-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
  }

  .lang-dropdown--desktop .lang-dropdown__menu>li {
    display: flex;
    justify-content: center;
  }

  .lang-dropdown--desktop .lang-dropdown__option {
    width: auto;
    padding: 10px 14px;
    border-radius: 33px;
    color: var(--color-title-white);
    font-size: 15px;
    text-align: center;
  }

  .lang-dropdown--desktop .lang-dropdown__option:hover,
  .lang-dropdown--desktop .lang-dropdown__option:focus-visible {
    background: rgba(255, 255, 255, 0.14);
  }

  .lang-dropdown--desktop .lang-dropdown__option.is-selected {
    background: var(--color-title-white);
    color: var(--color-text-primary);
  }

  .lang-dropdown--desktop .lang-dropdown__option.is-selected:hover,
  .lang-dropdown--desktop .lang-dropdown__option.is-selected:focus-visible {
    background: var(--color-title-white);
    color: var(--color-text-primary);
  }
}

.header__main-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.header__main-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-title-white);
  font-size: 15px;
  line-height: normal;
  text-transform: uppercase;
}

.header__main-link::after {
  content: "";
  background: url(../img/arrow-nav-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 7px;
  transition: all 0.4s;
}

.header__main-item:hover .header__main-link::after {
  transform: rotate(180deg);
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__socials-link {
  width: 26px;
  height: 26px;
  display: flex;
  transition: all 0.4s;
}

.header__socials-link:hover {
  transform: scale(1.3);
}

.header__socials-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__submenu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  max-height: 0;
  overflow: hidden;
  background: #441551;
  transition: all 0.4s;
}

.header__main-item:hover .header__submenu {
  max-height: 500px;
  height: auto;
}

.header__submenu-list {
  display: flex;
  gap: 18px 130px;
  flex-wrap: wrap;
  padding: 34px 0;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.header__submenu-item {
  width: calc(50% - 65px);
}

.header__submenu-link {
  color: var(--color-title-white);
  font-size: 15px;
  font-weight: 400;
  width: max-content;
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.header__submenu-link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-title-white);
  transition: all 0.4s;
}

.header__submenu-link:hover::after {
  width: 100%;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  visibility: hidden;
  pointer-events: none;
  max-width: 360px;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-text-primary);
  transform: translateX(100%);
  transition: transform 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu__container {
  padding: 14px 20px 38px 20px;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu__header button {
  width: 32px;
  height: 32px;
  opacity: 1;
  transition: all 0.4s;
}

.mobile-menu__header .is-hidden {
  opacity: 0;
}

.mobile-menu__header button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu__lang {
  display: flex;
  align-items: stretch;
  width: 81px;
  height: 34px;
  padding: 0 10px;
  border-radius: 33px;
  background: #7B2D8B;
  margin: 0 auto;
}

.lang-dropdown--menu .lang-dropdown__trigger {
  font-size: 14px;
}

.lang-dropdown--menu .lang-dropdown__menu {
  bottom: calc(100% + 8px);
  top: auto;
}

.mobile-menu__body {
  display: flex;
  margin-bottom: 32px;
}

.mobile-menu__panel--main {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.mobile-menu__panel {
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-menu__panel.is-active {
  width: 100%;
  height: auto;
}

.mobile-menu__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  text-transform: uppercase;
}

.mobile-menu__list--secondary {
  align-items: center;
}

.mobile-menu__link {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  line-height: normal;
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu__phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__phone {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 180%;
  text-align: center;
}

.mobile-menu__socials {
  display: flex;
  width: 198px;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__socials-item {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero {
  background: linear-gradient(337deg, #7D5282 4.68%, #441551 74.31%);
  /* background: radial-gradient(241.65% 67.49% at 77.71% 64.37%, #7D5282 0%, #441551 100%); */
  min-height: calc(100vh - 126px);
  padding: 56px 0;
  display: flex;
  overflow-x: clip;
}

.hero__container {
  display: flex;
  align-items: center;
  gap: 100px;
}

.hero__content {
  max-width: 575px;
  width: 100%;
  flex-shrink: 0;
}

.hero__stats {
  flex: 1;
}

.hero__tags {
  display: flex;
  padding: 10px 16px 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.21);
  position: relative;
  margin-bottom: 40px;
  width: max-content;
}

.hero__tag {
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__tag::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-title-white);
}

.hero__title {
  color: var(--color-title-white);
  font-size: var(--font-size-48);
  font-weight: 700;
  letter-spacing: 0.48px;
  max-width: 300px;
  width: 100%;
  margin-bottom: 40px;
}

.hero__title span {
  color: var(--color-text-green);
}

.hero__tag:nth-of-type(1)::before {
  content: none;
}

.hero__tags::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-text-green);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__features {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 500;
}

.hero__feature::before {
  content: "";
  background: url(../img/Vector.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 12px;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__btn--primary {
  display: flex;
  max-width: 338px;
  width: 100%;
  padding: 18px 39px;
  justify-content: center;
  align-items: center;
  border-radius: 43px;
  background: linear-gradient(90deg, #6A3D71 0%, #441551 100%);
  box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.25);
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
}

.hero__btn--link {
  display: inline-flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid var(--color-title-white);
  color: var(--color-title-white);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  max-width: 330px;
  white-space: nowrap;
  width: 100%;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.hero__stat {
  display: flex;
  width: 282px;
  padding: 28px 13.726px 43.487px 12.478px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.10);
}

.hero__stat-value {
  color: var(--color-text-green);
  font-size: var(--font-size-48);
  font-weight: 700;
  letter-spacing: 0.48px;
}

.hero__stat-label {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 24px;
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
}

.hero__stat:nth-of-type(2) {
  transform: translateX(114px);
}

.responsibility {
  padding: 56px 0;
}

.responsibility__container {
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.responsibility__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.responsibility__logo {
  width: 56px;
  height: 68px;
}

.responsibility__description {
  max-width: 670px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.responsibility__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.responsibility__list {
  width: 100%;
  display: flex;
  gap: 30px;
}

.responsibility__item {
  flex: 1 1 calc(33.33% - 10px);
  display: flex;
  padding: 29px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  background: #E4E0EF;
}

.responsibility__item-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 24px;
}

.responsibility__item-title {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}

.responsibility__item-text {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-16);
  line-height: 133%;
}

.responsibility__link {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid #212121;
  color: #000;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
}

.service-sectors {
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
  padding: 56px 0;
}

.service-sectors__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.service-sectors__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-sectors__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.21);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  width: max-content;
}

.service-sectors__sub::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}

.service-sectors__title {
  color: var(--color-title-white);
  margin-bottom: 32px;
}

.service-sectors__description {
  max-width: 670px;
  width: 100%;
  color: var(--color-text-white);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.service-sectors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-sectors__item {
  flex: 1 1 calc(25% - 18px);
  display: flex;
  padding: 29px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.service-sectors__item::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 17px;
  background: url(../img/hover-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  opacity: 0;
  z-index: 2;
  transition: all 0.4s;
}

.service-sectors__item::after {
  content: "";
  background: linear-gradient(125deg, #792C88 9.96%, #5B1F6C 92.14%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}

.service-sectors__item:hover::after {
  opacity: 1;
}

.service-sectors__item:hover::before {
  opacity: 1;
}

.service-sectors__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  left: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.service-sectors__item:hover .service-sectors__icon {
  left: 50%;
  transform: translateX(-50%);
}

.service-sectors__item:hover .service-sectors__item-title {
  left: 50%;
  transform: translateX(-50%);
}

.service-sectors__item-title {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
  z-index: 2;
  left: 0;
  position: relative;
  transition: all 0.4s;
}

.working {
  padding: 56px 0;
}

.working__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.working__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  border-radius: 40px;
  background: rgba(162, 116, 191, 0.15);
  color: #7B2D8B;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.working__sub::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}

.working__title {
  margin-bottom: 32px;
}

.working__description {
  max-width: 542px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.working__main {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.working__image {
  width: 589px;
  height: 464px;
  aspect-ratio: 278/219;
  flex-shrink: 0;
}

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

.working__list {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 69px;
  width: 834px;
  flex-shrink: 0;
}

.working__item {
  width: 100%;
  max-width: 232px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.working__number {
  width: 60px;
  height: 60px;
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 60px;
  background: #7B2D8B;
  box-shadow: 0 0 26.8px 0 rgba(123, 45, 139, 0.49);
  color: var(--color-title-white);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.3px;
}

.working__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.working__item-title {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.working__item-text {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-16);
  line-height: 133%;
}

.working__item::before {
  content: "";
  background: url(../img/working__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 11px;
  position: absolute;
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
}

.working__item:nth-of-type(3n)::before {
  content: none;
}

.advantages {
  padding: 56px 0;
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.advantages__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.advantages__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.advantages__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.21);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  width: max-content;
}

.advantages__sub::before {
  content: "";
  background: var(--color-text-green);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.advantages__title {
  color: var(--color-title-white);
}

.advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.advantages__item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  display: flex;
  padding: 29px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.advantages__item::before {
  content: "";
  background: linear-gradient(125deg, #792C88 9.96%, #5B1F6C 92.14%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}

.advantages__item:hover::before {
  opacity: 1;
}

.advantages__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  left: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.advantages__item:hover .advantages__icon {
  left: 50%;
  transform: translateX(-50%);
}

.advantages__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  position: relative;
  z-index: 2;
}

.advantages__item-title {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.advantages__item-text {
  color: var(--color-text-white);
  font-size: var(--font-size-16);
  line-height: 1.2;
}

.cases {
  padding: 56px 0;
  overflow: hidden;
}

.cases__container {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.cases__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cases__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(162, 116, 191, 0.15);
  color: #7B2D8B;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.cases__sub::before {
  content: "";
  background: var(--color-text-green);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.cases__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 54px;
}

.cases__hero {
  padding: 24px 0 56px;
}

.cases__hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 970px;
  width: 100%;
  margin: 20px auto 32px;
  text-align: center;
}

.cases__hero-title {
  color: var(--color-text-black);
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: 0.36px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cases__hero-description {
  color: var(--color-text-black);
  font-size: var(--font-size-20);
  line-height: 30px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.cases__hero .cases__body {
  display: block;
  width: 100%;
}

.cases__body-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cases__body-tab {
  display: flex;
  min-height: 30px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1px solid rgba(153, 153, 153, 0.30);
  background: #FFF;
  color: var(--color-text-black);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cases__body-tab:hover,
.cases__body-tab:focus-visible {
  border-color: #7B2D8B;
  background: #7B2D8B;
  color: var(--color-title-white);
  outline: none;
}

.cases__body-tab.is-active {
  border-color: #7B2D8B;
  background: #7B2D8B;
  color: var(--color-title-white);
}

.cases__body-content {
  width: 100%;
}

.cases__body-item {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}

.cases__slide.is-hidden {
  display: none;
}

.cases__link-all {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid #212121;
  color: #000;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
}

.cases__swiper {
  width: 100%;
  overflow: hidden;
}

.cases__wrapper {
  display: flex;
}

.cases__slide {
  width: 374px !important;
  flex-shrink: 0;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 32px;
  background: #E4E0EF;
  transition: all 0.4s;
}

.cases__slide:hover {
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.cases__slide-sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #ECFAF2;
  color: #7B2D8B;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.cases__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.cases__item-title {
  color: var(--color-text-primary);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cases__card {
  display: flex;
  padding: 16px 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.38);
  transition: all 0.4s;
}

.cases__slide:hover .cases__card {
  background: rgba(46, 204, 113, 0.09);
}

.cases__card-value {
  color: var(--color-text-green);
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 24px;
}

.cases__card-label {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 24px;
}

.cases__description {
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 133%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.cases__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #7B2D8B;
  font-size: var(--font-size-16);
  font-weight: 500;
  left: 0;
  position: relative;
  line-height: normal;
  transition: all 0.4s;
}

.cases__slide:hover .cases__link {
  left: 50%;
  transform: translateX(-50%);
}

.cases__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.reviews__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #7B2D8B;
}

.reviews__pagination .swiper-pagination-bullet {
  background: #441551;
}

.swiper-pagination-bullet-active {
  background: var(--color-title-white);
}

.reviews__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-title-white);
}

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

.reviews {
  padding: 56px 0;
  overflow: hidden;
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.reviews__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.reviews__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.21);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.reviews__sub::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}

.reviews__title {
  color: var(--color-title-white);
}

.reviews__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reviews__swiper {
  width: 100%;
  overflow: hidden;
}

.reviews__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.reviews__slide {
  display: flex;
  width: 374px;
  height: 339px;
  padding: 29px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  transition: all 0.4s;
  overflow: hidden;
}

.reviews__slide::before {
  content: "";
  background: linear-gradient(125deg, #792C88 9.96%, #5B1F6C 92.14%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s;
}

.reviews__slide:hover::before {
  opacity: 1;
}

.reviews__slide:nth-last-of-type(1) {
  margin-right: 0 !important;
}

.reviews__icon {
  width: 31px;
  height: 25px;
  flex-shrink: 0;
}

.reviews__quote {
  color: var(--color-text-white);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 140%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  margin-top: auto;
}

.reviews__avatar {
  width: 49px;
  height: 49px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--color-title-white);
  font-size: 22px;
  font-weight: 600;
}

.reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__avatar--color1 {
  background: #2ECC71;
}

.reviews__avatar--color2 {
  background: #CC6B2E;
}

.reviews__avatar--color3 {
  background: #2ECCBF;
}

.reviews__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.reviews__author-name {
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 600;
}

.reviews__author-role {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  line-height: 1.3;
}

.reviews__author-role a {
  text-decoration: underline;
}

.reviews__badge {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 40px;
  background: rgba(236, 250, 242, 0.25);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.reviews__link-all {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid var(--color-title-white);
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
  width: max-content;
  margin: 0 auto;
}

.reviews__link-all-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(190deg) brightness(114%) contrast(101%);
}

.reviews__link-all:disabled,
.reviews__link-all.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.reviews__link-all[hidden] {
  display: none;
}

.feedback {
  padding: 56px 0;
}

.feedback__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.feedback__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.feedback__sub {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: rgba(162, 116, 191, 0.15);
  color: #7B2D8B;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.feedback__sub::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text-green);
}

.feedback__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.feedback__description {
  max-width: 643px;
  width: 100%;
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 30px;
}

.feedback__form {
  display: flex;
  max-width: 415px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feedback__field {
  width: 100%;
}

.feedback__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.feedback__input {
  display: flex;
  min-height: 48px;
  padding: 10px 12px 10px 17px;
  border-radius: 54px;
  border: 1px solid #D3D3D3;
  background: var(--color-title-white);
  width: 100%;
  color: #262626;
  font-family: "Golos Text";
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 140%;
}

.feedback__input::placeholder {
  color: #262626;
  font-family: "Golos Text";
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 140%;
}

.feedback__radio-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feedback__radio-title {
  color: var(--color-text-black);
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 133%;
}

.feedback__radio-options {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.feedback__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback__radio-text {
  color: var(--color-text-black);
  font-size: var(--font-size-14);
  line-height: 133%;
}

.feedback__radio-input:checked+.feedback__radio-text {
  color: #7B2D8B;
}

.feedback__textarea {
  display: flex;
  min-height: 93px;
  padding: 10px 12px 10px 17px;
  border-radius: 27px;
  border: 1px solid #D3D3D3;
  background: var(--color-title-white);
  resize: none;
  color: #262626;
  font-family: "Golos Text";
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}

.feedback__textarea::placeholder {
  color: #262626;
  font-family: "Golos Text";
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.4;
}

.feedback__input.wpcf7-not-valid,
.feedback__textarea.wpcf7-not-valid,
.feedback__input[aria-invalid="true"],
.feedback__textarea[aria-invalid="true"],
.wpcf7-form-control-wrap:has(.wpcf7-not-valid) .feedback__input,
.wpcf7-form-control-wrap:has(.wpcf7-not-valid) .feedback__textarea {
  border-color: #F04438;
}

.feedback__form .wpcf7-not-valid-tip,
.feedback__field .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  padding-left: 17px;
  color: #F04438;
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.3;
}

.feedback__form .wpcf7-response-output {
  display: none !important;
}

.calculator__result .wpcf7-response-output {
  display: none !important;
}

.calculator > .container > .wpcf7-response-output,
.calculator .container > .wpcf7-response-output {
  display: none !important;
}

.modal .feedback__form.is-sent > :not(.wpcf7-response-output):not(.modal__close),
.modal .feedback__form.sent > :not(.wpcf7-response-output):not(.modal__close) {
  display: none !important;
}

.modal .feedback__form.is-sent .wpcf7-response-output,
.modal .feedback__form.sent .wpcf7-response-output {
  display: flex !important;
  width: 100%;
  max-width: 360px;
  min-height: 60px;
  margin: 0 auto;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 7px;
  background: #7B2D8B;
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
}

.feedback__form.is-toast-sent .wpcf7-response-output {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10000;
  display: flex !important;
  width: 100%;
  max-width: min(520px, calc(100vw - 32px));
  min-height: 60px;
  margin: 0;
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 7px;
  background: #7B2D8B;
  box-shadow: 0 16px 48px rgba(35, 20, 45, 0.24);
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.feedback__form.is-toast-sent .wpcf7-response-output.is-toast-formatted {
  flex-direction: column;
}

.feedback__form.is-inline-sent > :not(.wpcf7-response-output) {
  display: none !important;
}

.feedback__form.is-inline-sent {
  max-width: 520px;
  align-items: center;
}

.feedback__form.is-inline-sent .wpcf7-response-output {
  display: flex !important;
  width: 100%;
  max-width: min(520px, calc(100vw - 32px));
  min-height: 60px;
  margin: 0 auto;
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 7px;
  background: #7B2D8B;
  box-shadow: 0 16px 48px rgba(35, 20, 45, 0.16);
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
}

.feedback__form.is-inline-sent .wpcf7-response-output.is-toast-formatted {
  flex-direction: column;
}

.calculator__result.is-sent .wpcf7-response-output,
.calculator__result.sent .wpcf7-response-output {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10000;
  display: flex !important;
  width: 100%;
  max-width: 360px;
  min-height: 60px;
  margin: 0;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 7px;
  background: #7B2D8B;
  box-shadow: 0 16px 48px rgba(35, 20, 45, 0.24);
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.calculator.is-sent .calculator__body {
  display: none !important;
}

.calculator.is-sent .container {
  gap: 40px;
}

.calculator.is-sent > .container > .wpcf7-response-output,
.calculator.is-sent .container > .wpcf7-response-output {
  display: flex !important;
  width: 100%;
  max-width: min(560px, calc(100vw - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 18px 28px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: #7B2D8B;
  box-shadow: 0 16px 48px rgba(35, 20, 45, 0.16);
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
}

.calculator__restore {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2ECC71;
  font: inherit;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.calculator__restore:hover,
.calculator__restore:focus-visible {
  color: var(--color-title-white);
}

.feedback__consent-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback__consent-text {
  color: var(--color-text-black);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 133%;
}

.feedback__submit {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 43px;
  border: 2px solid #212121;
  color: #000;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.feedback__submit:disabled,
.feedback__submit[disabled] {
  cursor: not-allowed;
}

.feedback__submit:disabled:hover,
.feedback__submit[disabled]:hover {
  background: transparent;
  border-color: #212121;
  color: #000;
}

.feedback__submit:disabled:hover img,
.feedback__submit[disabled]:hover img {
  filter: none;
}

.feedback__policy {
  color: var(--color-text-black);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 133%;
}

.feedback__radio-label,
.feedback__consent-label {
  cursor: pointer;
}

.feedback__radio-input,
.feedback__consent-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #c4c4c4;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  transition: all 0.2s ease;
}

.feedback__radio-input {
  border-radius: 50%;
}

.feedback__consent-input {
  border-radius: 4px;
}

.feedback__radio-input:hover,
.feedback__consent-input:hover {
  border-color: #7B2D8B;
}

.feedback__consent-input:checked {
  background-color: #7B2D8B;
  border-color: #7B2D8B;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.feedback__radio-input:checked {
  border-color: #7B2D8B;
  border-width: 2px;
}

.feedback__radio-input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #7B2D8B;
  border-radius: 50%;
}

.feedback__radio-input:focus-visible,
.feedback__consent-input:focus-visible {
  outline: 2px solid #7B2D8B;
  outline-offset: 2px;
}

.footer__top {
  background: #7B2D8B;
  padding: 40px 0;
}

.footer__nav {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1 1 calc(25% - 75px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer__title {
  color: #E98DFB;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: left;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: none;
  overflow: visible;
}

.footer__link {
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  line-height: normal;
}

.footer__container--middle {
  padding: 40px 0;
  background: #441551;
}

.footer__container--middle .footer__container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer__logo {
  width: 172px;
  height: 41px;
}

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

.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.footer__menu-link {
  color: var(--color-title-white);
  font-size: 15px;
  line-height: normal;
  display: flex;
  flex-direction: column;
}

.footer__menu-link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-title-white);
  transition: all 0.4s;
}

.footer__socials-link {
  width: 26px;
  height: 26px;
  display: flex;
  transition: transform 0.4s;
}

.footer__socials-link:hover {
  transform: scale(1.3);
}

.footer__menu-link:hover::after {
  width: 100%;
}

.footer__schedule {
  display: flex;
  max-width: 170px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__subtitle {
  color: var(--color-title-white);
  font-size: var(--color-title-white);
  font-weight: 600;
  line-height: 125.178%;
}

.footer__schedule-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.footer__schedule-text {
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  line-height: 125.178%;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer__contacts-link {
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  line-height: 125.178%;
}

.footer__email-link {
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  line-height: 125.178%;
  text-decoration: underline !important;
}

.footer__socials {
  display: flex;
  padding-top: 3px;
  align-items: center;
  gap: 24px;
}

.footer__socials-link {
  width: 26px;
  height: 26px;
}

.footer__socials-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__bottom {
  padding: 40px 0;
  background: #2E0938;
}

.footer__container--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__copyright-text {
  color: #BFBFBF;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.footer__policy-link {
  color: #BFBFBF;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline !important;
}

.footer__dev-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__dev-text {
  color: #BFBFBF;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;

}

.footer__dev-text strong {
  text-decoration: underline !important;
  font-weight: 400;
}

.footer__dev-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__dev-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__stat:nth-of-type(2) {
  margin-left: 114px;
}

.fixed-info {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  display: flex;
  gap: 33px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.fixed-info.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.fixed-info.is-visible.is-at-bottom {
  transform: translateY(-40px);
}

.fixed-info__chat {
  display: flex;
  gap: 9px;
}

.fixed-info__message {
  width: 225px;
  height: 56px;
  background: #7B2D8B;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.fixed-info__message::before {
  content: "";
  background: url(../img/vector2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11.5px;
  height: 9.5px;
  position: absolute;
  top: 100%;
  left: 0;
}

.fixed-info__message-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fixed-info__message-text {
  text-align: right;
  color: var(--color-title-white);
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
}

.fixed-info__call-btn {
  width: 57px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7B2D8B;
  color: var(--color-title-white);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.fixed-info__top-btn {
  width: 50px;
  height: 50px;
}

.fixed-info__top-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: none !important;
  animation: none !important;
}

.modal::before,
.modal::after {
  transition: none !important;
  animation: none !important;
}

.modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.modal.is-open {
  display: flex;
  pointer-events: all;
}

.modal__content {
  position: relative;
  z-index: 1;
  max-width: 647px;
  width: 100%;
  padding: 40px;
  border-radius: 29px;
  background: var(--color-text-white);
  transform: none;
  transition: none !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__title {
  color: #7B2D8B;
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
}

.modal__content .feedback__form {
  max-width: 100%;
}

.modal__text {
  color: #252525;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.modal.is-open .modal__content {
  transform: none;
}

.modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__close img {
  width: 100%;
  height: 100%;
}

.hero__contact {
  background: linear-gradient(337deg, #7D5282 4.68%, #441551 74.31%);
  padding: 24px 0 78px 0;
}

.hero__contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 970px;
  width: 100%;
  margin: 20px auto 40px auto;
}

.hero__contact-header .sub__white {
  margin-bottom: 24px;
}

.hero__contact-title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}

.hero__contact-description {
  max-width: 856px;
  width: 100%;
  margin: 0 auto;
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.hero__contact-body {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}

.hero__contact-address {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.hero__contact-item {
  width: calc(33.33% - 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero__contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.hero__contact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.hero__contact-text {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.hero__contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__contact-list-item {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-16);
  line-height: 133%;
}

.hero__contact-link {
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.hero__contact-link--email {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline !important;
}

.hero__contact-social {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.hero__contact-social-title {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.hero__contact-social-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
}

.hero__contact-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.maps {
  height: 329px;
  width: 100%;
}

.maps iframe {
  width: 100%;
  height: 100%;
}

.hero__contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  transition: transform 0.4s;
}

.hero__contact-social-link:hover {
  transform: scale(1.3);
}

.hero__contact-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pagination {
  width: 100%;
  margin-top: 10px;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.pagination__button--prev {
  margin-right: 14px;
}

.pagination__button--next {
  margin-left: 14px;
}

.pagination__item {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #FFF;
  color: #000;
  text-align: center;
  cursor: pointer;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination__item.is-active {
  background: #7B2D8B;
  color: var(--color-title-white);
}

.pagination__item:hover,
.pagination__item:focus-visible {
  background: #7B2D8B;
  color: var(--color-title-white);
  outline: none;
}

.cases__hero .cases__slide {
  width: calc(33.33% - 16px) !important;
}

.single-case__hero {
  padding: 24px 0 56px;
}

.single-case__hero-header {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-case__hero-title {
  color: var(--color-text-black);
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.single-case__hero-description {
  color: var(--color-text-black);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.single-case__description {
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-case__description p {
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.single-case__description h2,
.single-case__description h3,
.single-case__description h4 {
  color: var(--color-text-black);
  font-weight: 600;
  line-height: 1.25;
}

.single-case__description h2 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.single_page_text h2 {
  color: var(--color-text-black);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 8px;
}

.single_page_text table,
.single-case__hero-header table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 8px 0 20px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 5px 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  line-height: 1.45;
}

.single_page_text th,
.single_page_text td,
.single-case__hero-header th,
.single-case__hero-header td {
  min-width: 220px;
  padding: 24px 16px;
  border: 0;
  border-radius: 7px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.35;
}

.single_page_text thead th,
.single_page_text thead td,
.single-case__hero-header thead th,
.single-case__hero-header thead td {
  background: #7B2D8B;
  color: var(--color-title-white);
  font-weight: 600;
}

.single_page_text tbody th,
.single_page_text tbody td:first-child,
.single-case__hero-header tbody th,
.single-case__hero-header tbody td:first-child {
  background: #7B2D8B;
  color: var(--color-title-white);
  font-weight: 600;
  text-align: left;
}

.single_page_text tbody td,
.single-case__hero-header tbody td {
  background: #EBD2F0;
}

.single-case__description h3 {
  font-size: 20px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.single-case__description h4 {
  font-size: 18px;
}

.single-case__description ul,
.single-case__description ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
  margin: 0 0 8px;
}

.single-case__description ul {
  list-style: disc !important;
}

.single-case__description ol {
  list-style: decimal !important;
}

.single-case__description li {
  display: list-item;
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.single-case__description ul > li {
  list-style-type: disc;
}

.single-case__description ol > li {
  list-style-type: decimal;
}

.single-case__description strong,
.single-case__description b {
  font-weight: 600;
}

.single-case__description a {
  color: #7B2D8B;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-case__result {
  display: flex;
  align-items: center;
  gap: 62px 32px;
  flex-wrap: wrap;
}

.single-case__result-boxes {
  display: flex;
  gap: 24px;
  align-items: center;
}

.single-case__result-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

.single-case__result-box {
  display: flex;
  padding: 16px 24px;
  align-items: flex-start;
  gap: 24px;
  border-radius: 23px;
  background: var(--color-title-white);
}

.single-case__result-value {
  color: var(--color-text-green);
  font-size: 26px;
  font-weight: 600;
  line-height: 24px;
}

.single-case__result-label {
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1.5;
}

.single-case__result-values {
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.banner {
  margin-bottom: 56px;
}

.banner .container {
  border-radius: 32px;
  background: linear-gradient(337deg, #7D5282 4.68%, #441551 74.31%);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner__left h3 {
  color: #B740CE;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3px;
}

.banner__left p {
  color: var(--color-title-white);
  font-size: 20px;
  line-height: 30px;
}

.banner__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid var(--color-title-white);
  color: var(--color-title-white);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  transition: all 0.4s;
}

.banner__btn:hover {
  background: var(--color-text-green);
  border-color: var(--color-text-green);
  color: var(--color-title-white);
}

.constructing__hero {
  padding: 24px 0 0 0;
}

.constructing__hero .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.constructing__hero-boxs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.constructing__hero-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.constructing__hero-titles .sub__black {
  margin-bottom: 24px;
}

.constructing__hero-title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}

.constructing__hero-description {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.constructing__hero-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.constructing__hero-item {
  display: flex;
  min-height: 30px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1px solid rgba(153, 153, 153, 0.30);
  background: var(--color-text-green);
  color: #FFF;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.constructing__hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-16);
  line-height: 150%;
}

.constructing__hero-content strong {
  font-weight: 600;
}

.constructing__advantages {
  padding: 56px 0;
}

.constructing__advantages .container {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: center;
}

.constructing__advantages-boxs {
  display: flex;
  gap: 32px;
  width: 100%;
  flex-wrap: wrap;
}

.constructing__advantages-box {
  width: calc(50% - 16px);
  min-width: 280px;
  flex: 1;
  padding: 32px;
  border-radius: 32px;
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.constructing__advantages-title {
  color: #441551;
  font-size: 26px;
  font-weight: 600;
  line-height: 24px;
}

.constructing__advantages-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.constructing__advantages-item {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  font-size: 18px;
  line-height: 133%;
}

.constructing__advantages-list--error .constructing__advantages-item::before {
  content: "";
  background: url(../img/constructing__advantages-icon1.svg);
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.constructing__advantages-list--success .constructing__advantages-item::before {
  content: "";
  background: url(../img/constructing__advantages-icon2.svg);
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.global__hero .hero__container {
  gap: 112px;
}

.global__hero .hero__content {
  gap: 40px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  flex-shrink: 0;
}

.global__hero .hero__tags {
  margin-bottom: 0;
}

.global__hero .hero__title {
  max-width: 100%;
  margin: 0;
}

.global__hero .hero__description {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  line-height: 30px;
}

.global__hero .hero__btn--link {
  max-width: max-content;
}

.global__hero .hero__stat {
  width: 296px;
  height: 296px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.content {
  padding: 56px 0;
}

.content .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.content__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}

.content__description {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.content__subtitle {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 24px;
}

.content__description:nth-last-of-type(1) {
  margin-bottom: 0;
}

.banner--column {
  margin-bottom: 0;
}

.banner--column .container {
  padding: 40px;
  border-radius: 32px;
  gap: 20px;
  flex-direction: column;
}

.banner--column .banner__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.banner--column .banner__right p {
  flex: 1;
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  line-height: 26px;
}

.banner--column .banner__left {
  width: 100%;
  align-items: flex-start;
}

.work-practice {
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
  padding: 56px 0;
}

.work-practice .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}

.work-practice__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.work-practice__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 90px;
  counter-reset: work-practice-num;
}

.work-practice__item {
  width: calc(50% - 45px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  counter-increment: work-practice-num;
  position: relative;
}

.work-practice__item-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  position: relative;
}

.work-practice__item-icon::before {
  content: counter(work-practice-num, decimal-leading-zero);
  position: absolute;
  left: 43px;
  top: 28px;
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18px;
  display: flex;
  width: 39px;
  height: 39px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  border: 2px solid var(--color-title-white);
  background: var(--color-text-green);
  box-shadow: 0 5px 6.5px 0 rgba(0, 0, 0, 0.25);
}

.work-practice__item::before {
  content: "";
  background: url(../img/working__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 11px;
  position: absolute;
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
}

.work-practice__item:nth-of-type(2n)::before {
  content: none;
}

.work-practice__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-practice__item-contant {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-practice__item-title {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 22px;
}

.work-practice__item-text {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  line-height: 133%;
}

.content-column {
  padding: 56px 0;
}

.content-column .container {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.content-column__image {
  width: 492px;
  height: auto;
}

.content-column__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-column__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 450px;
}

.content-column__left h2 {
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.content-column__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-column__description p {
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.global-cards {
  padding: 56px 0;
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.global-cards .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.global-cards__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.global-cards__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.global-cards__description {
  max-width: 670px;
  width: 100%;
  color: #E0E0E0;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 1.5;
}

.global-cards__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.global-cards__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.global-cards__item {
  width: calc(33.33% - 16px);
  display: flex;
  padding: 29px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.global-cards__item::before {
  content: "";
  background: linear-gradient(125deg, #792C88 9.96%, #5B1F6C 92.14%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}

.global-cards__item:hover::before {
  opacity: 1;
}

.global-cards__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  left: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.global-cards__item:hover .global-cards__icon {
  left: 50%;
  transform: translateX(-50%);
}

.global-cards__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.global-cards__item-title {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 1.2;
}

.global-cards__item-text {
  color: var(--color-text-white);
  font-size: var(--font-size-16);
  line-height: 1.2;
}

.global-cards__btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid #212121;
  color: #000;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
  width: max-content;
  margin: 0 auto;
  border: 2px solid var(--color-title-white);
  color: var(--color-title-white);
  background: transparent;
}

.global-cards__btn:hover {
  background: var(--color-text-green);
  border-color: var(--color-text-green);
  color: var(--color-title-white);
}

.global-cards__btn img {
  transition: all 0.4s;
}

.global-cards__btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(201deg) brightness(110%) contrast(101%);
}

.faq {
  padding: 56px 0;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__title {
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.faq__accardion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__accardion-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: #7B2D8B;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  gap: 8px;
}

.faq__accardion-icon {
  height: 30px;
  width: 15px;
  flex-shrink: 0;
}

.faq__accardion-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s;
}

.faq__accardion-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0 28px 28px 28px;
  background: var(--color-title-white);
  position: relative;
  max-height: 0;
  margin: 0 0 0 55px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.faq__accardion-item.is-active .faq__accardion-content {
  max-height: 500px;
  margin-top: 45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.faq__accardion-text {
  padding: 24px;
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.faq__accardion-item.is-active .faq__accardion-icon img {
  transform: rotate(90deg);
}

.faq__accardion-content::after {
  content: "";
  background: url(../img/vector3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 32px;
  position: absolute;
  top: -30px;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq__accardion-item.is-active .faq__accardion-content::after {
  opacity: 1;
}

.global__hero--error {
  padding: 80px 0 0 0;
}

.global__hero--error .hero__container {
  align-items: flex-start;
  gap: 0;
}

.global__hero--error .hero__tags::before {
  background: #CC2E60;
}

.global__hero--error .hero__content {
  max-width: 430px;
}

.global__hero--error .hero__stats {
  width: 839px;
  height: 581px;
  flex-shrink: 0;
}

.global__hero--error .hero__stat {
  width: 100%;
  height: 100%;
  display: flex;
}

.global__hero--error .hero__stat picture {
  display: flex;
  width: 100%;
  height: 100%;
}

.global__hero--error .hero__stat img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global__hero--width-full {
  padding: 40px 0 65px 0;
  overflow: hidden;
}

.global__hero--width-full .hero__container {
  gap: 0;
}

.global__hero--width-full .hero__content {
  max-width: 520px;
}

.global__hero--width-full .hero__stats {
  width: 838px;
  min-width: 838px;
  height: 559px;
  flex-shrink: 0;
  padding: 0;
  transform: translateX(-80px);
}

.global__hero--width-full .hero__stat {
  width: 100%;
  height: 100%;
  display: flex;
}

.global__hero--width-full .hero__stat picture {
  display: flex;
  width: 100%;
  height: 100%;
}

.history {
  padding: 56px 0;
}

.history .container {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 64px;
  grid-template-areas:
    "header list"
    "card list";
  align-items: stretch;
}

.history__header {
  grid-area: header;
}

.history__list {
  grid-area: list;
}

.history__card {
  grid-area: card;
}

.history__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.history__title {
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.history__header-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.history__card {
  display: flex;
  padding: 39px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 332px;
  border-radius: 32px;
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.history__card-title {
  color: #7B2D8B;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3px;
}

.history__card-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 22px;
  line-height: 26px;
}

.history__card-link {
  display: flex;
  padding: 18px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid var(--color-text-green);
  color: var(--color-text-green);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
  transition: all 0.4s;
}

.history__card-link img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(94%) saturate(367%) hue-rotate(91deg) brightness(90%) contrast(86%);
}

.history__list {
  display: flex;
  width: 310px;
  flex-direction: column;
  gap: 24px;
}

.history__item {
  width: 100%;
  display: flex;
  padding: 29px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 32px;
  background: #E4E0EF;
  min-height: 138px;
}

.history__item-number {
  color: var(--color-text-green);
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.84px;
}

.history__item-number {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.history__item-number strong {
  font-size: 34px;
}

.history__item-title {
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 24px;
}

.global-cards--small-text .global-cards__item-title {
  font-size: 18px;
  line-height: 24px;
}

.content-column--big-img .container {
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
}


.content-column--big-img .content-column__left {
  min-width: 600px;
}

.content-column--big-img .content-column__right {
  width: 641px;
  height: 427px;
  min-width: 641px;
  transform: translateX(-60px);
}

.content-column--big-img .content-column__image {
  width: 100%;
  height: 100%;
}

.team {
  padding: 56px 0;
  overflow: hidden;
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.team .container {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__header .sub__white {
  margin-bottom: 24px;
  width: max-content;
}

.team__title {
  max-width: 790px;
  width: 100%;
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.36px;
  margin-bottom: 32px;
}

.team__title-description {
  max-width: 670px;
  width: 100%;
  color: var(--color-text-white);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 1.5;
}


.team__swiper {
  width: 100%;
  overflow: visible;
}

.team__wrapper {
  display: flex;
}

.team__slide {
  width: 374px !important;
  height: auto;
  flex-shrink: 0;
}

.team__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.team__nav-button[hidden],
.team__pagination.is-hidden {
  display: none !important;
}

.team__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: max-content;
  margin: 0;
}

.team__pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #7B2D8B;
}

.team__nav-button {
  width: 44px;
  height: 12px;
}

.team__nav-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(615%) hue-rotate(206deg) brightness(117%) contrast(100%);
}

.team__pagination .swiper-pagination-bullet-active {
  background: var(--color-text-green);
}

.team__nav-button.swiper-button-disabled {
  opacity: 0;
}

.team__card {
  display: flex;
  padding: 29px 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  align-self: stretch;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
}

.team__card-avatar {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.team__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.team__card-autor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.team__card-autor-name {
  color: var(--color-text-green);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
}

.team__card-autor-role {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.team__card-description {
  color: var(--color-title-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.team__card-description p {
  font-size: 15px;
  line-height: 1.2;
}

.team__card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.team__card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.team__card-item-title {
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1.2;
}

.team__card-item-value {
  font-size: 15px;
  line-height: 1.2;
}

.media__hero {
  padding-bottom: 68px;
}

.media__hero .constructing__hero-title {
  margin-bottom: 0;
}

.media__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.media__cards-item {
  display: flex;
  width: calc(33.33% - 16px);
  padding: 29px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  background: #E4E0EF;
  position: relative;
  overflow: hidden;
}

.media__cards-item::before {
  content: "";
  background: linear-gradient(125deg, #792C88 9.96%, #5B1F6C 92.14%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: all 0.4s;
}

.media__cards-item:hover::before {
  opacity: 1;
}

.media__cards-item-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  left: 0;
  position: relative;
  transition: all 0.4s;
  z-index: 2;
}

.media__cards-item-image img {
  width: 100%;
  height: 100%;
}

.media__cards-item:hover .media__cards-item-image {
  left: 50%;
  transform: translateX(-50%);
}

.media__cards-item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.media__cards-item-title {
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
  transition: all 0.4s;
}

.media__cards-item:hover .media__cards-item-title {
  color: var(--color-title-white);
}

.media__cards-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  left: 0;
  color: #7B2D8B;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  position: relative;
  z-index: 2;
  width: max-content;
  transition: all 0.4s;
}

.media__cards-item-link img {
  width: 25px;
  height: 7px;
  object-fit: contain;
  transform: rotate(180deg);
  transition: none;
}

.media__cards-item:hover .media__cards-item-link {
  color: #E98DFB;
}

.media__cards-item:hover .media__cards-item-link img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(81%) saturate(2606%) hue-rotate(220deg) brightness(99%) contrast(98%);
}

.media__hero .hero__container {
  gap: 20px;
}

.media__hero .hero__content {
  max-width: 578px;
}

.media__hero .hero__stats {
  width: 618px;
  height: 435px;
  min-width: 618px;
  transform: none;
}

.media__inner {
  padding: 24px 0 56px 0;
}

.media__inner .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.media__boxs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.media__titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.media__boxs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.media__boxs-link {
  display: flex;
  min-height: 30px;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1px solid rgba(153, 153, 153, 0.30);
  background: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  transition: all 0.4s;
}

.media__boxs-link:hover {
  background: #7B2D8B;
  border-color: #7B2D8B;
  color: var(--color-title-white);
}

.media__boxs-link--active {
  background: #7B2D8B;
  border-color: #7B2D8B;
  color: var(--color-title-white);
}

.media__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.media__content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.media__content-item {
  width: calc(33.33% - 16px);
  display: flex;
  min-width: 300px;
  flex: 1;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 32px;
  background: #E4E0EF;
  transition: all 0.4s;
}

.media__content-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.media__content-sub {
  display: flex;
  min-height: 30px;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: var(--color-text-green);
  color: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.media__content-time {
  color: #000;
  font-size: var(--font-size-14);
  line-height: 16px;
  text-transform: uppercase;
}

.media__content-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.media__content-title {
  color: #441551;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.media__content-description {
  font-size: var(--font-size-16);
  line-height: 133%;
}

.media__content--column .media__content-description {
  line-height: 1.45;
}

.media__content--column .media__content-description p {
  margin: 0 0 12px;
}

.media__content--column .media__content-description p:last-child {
  margin-bottom: 0;
}

.media__content--column .media__content-description br {
  display: block;
  content: "";
  margin-top: 8px;
}

.media__content-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  left: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  color: #7B2D8B;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: normal;
}

.media__content-item:hover {
  background: #FFF;
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.media__content-item:hover .media__content-link {
  left: 50%;
  transform: translateX(-50%);
}

.media__hero-content .pagination {
  margin-top: 0;
}

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

.media__hero2 .hero__stats {
  width: 545px;
  height: 585px;
  min-width: 545px;
}

.media__hero2 {
  padding: 33px 0 46px 0;
}

.media__hero2 .hero__container {
  gap: 66px;
}

.media__hero3 .hero__stats {
  width: 791px;
  min-width: 791px;
  height: 528px;
  transform: translateX(-50px);
}

.media__hero3 {
  padding: 57px 0 79px 0;
}

.media__content--column {
  flex-direction: column;
}

.media__content--column .media__content-item {
  width: 100%;
}

.single-case__hero--article .single-case__hero-header {
  gap: 0;
}

.single-case__hero--article .sub__black {
  margin-bottom: 24px;
}

.single-case__hero-time {
  color: #000;
  font-size: var(--font-size-14);
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.single-case__hero--article .single-case__hero-title {
  margin-bottom: 24px;
}

.single-case__hero--article .single-case__hero-description {
  font-size: var(--font-size-16);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-case__hero--article .single-case__hero-description strong {
  font-weight: 600;
}

.single-case__hero--article .single-case__hero-description li {
  font-size: var(--font-size-16);
  line-height: 1.5;
  font-weight: 400;
  list-style: disc;
}

.single-case__hero--article .single-case__hero-description ul,
.single-case__hero--article .single-case__hero-description ol {
  padding-left: 16px;
}

.single-case__hero--article .single-case__hero-description .numbered-list li {
  list-style: decimal;
}

.single-case__hero--article .single-case__hero-description:nth-last-of-type(1) {
  margin-bottom: 0;
}

.single-case__hero--article h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 24px;
}

.single-case__hero-image {
  max-width: 914px;
  height: 514px;
  width: 100%;
  margin: 0 auto 24px auto;
}

.single-case__hero-image img,
.single-case__hero-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-case__hero-btn {
  padding-top:40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #7B2D8B;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: normal;
}

.single-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(123, 45, 139, 0.08);
  margin-bottom: 24px;
}

.single-review__avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2ECC71;
  color: var(--color-title-white);
  font-size: 28px;
  font-weight: 600;
}

.single-review__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-review__name {
  color: var(--color-title-black);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.single-review__company {
  color: var(--color-text-black);
  font-size: var(--font-size-16);
  line-height: 1.4;
}

.single-review__position {
  color: var(--color-title-black);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1.4;
}

.single-review__company a,
.single-review__meta-value a {
  color: #7B2D8B;
  text-decoration: underline;
}

.single-review__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.single-review__meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(123, 45, 139, 0.06);
}

.single-review__meta-label {
  color: rgba(37, 37, 37, 0.58);
  font-size: var(--font-size-14);
  line-height: 16px;
}

.single-review__meta-value {
  color: var(--color-title-black);
  font-size: var(--font-size-16);
  font-weight: 600;
  line-height: 1.4;
}

.single-review__content {
  padding: 24px;
  border-radius: 24px;
  background: rgba(236, 250, 242, 0.6);
}

.hero--banner {
  padding-bottom: 107px;
}

.hero--banner .hero__container {
  gap: 80px;
}

.hero--banner .hero__content {
  max-width: 810px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero--banner .hero__tags {
  margin-bottom: 0;
}

.hero--banner .hero__title {
  max-width: 100%;
  margin-bottom: 0;
}

.hero--banner .hero__description {
  color: var(--color-title-white);
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 30px;
}

.hero--banner .hero__stats {
  width: 279px;
  height: 279px;
  flex-shrink: 0;
  flex: none;
}

.hero--banner .hero__stat {
  width: 100%;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
}

.registration__inner-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.registration__inner-title {
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.registration__inner-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.section-table {
  padding: 56px 0;
}

.section-table--gradient {
  background: radial-gradient(100% 67.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.section-table .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.section-table__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.section-table__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.section-table__scroll {
  width: calc(100% + 10px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-table__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 5px 6px;
}

.section-table__table th,
.section-table__table td {
  width: 20%;
  padding: 29px 16px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-title-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 12px;
  height: 106px;
  white-space: normal;
  word-break: break-word;
}

.section-table__table thead th {
  background: #7B2D8B;
  font-size: 18px;
  font-weight: 600;
}

.section-table__table thead th:first-child {
  background: transparent;
  padding: 0;
}

.section-table__table tbody th {
  background: #7B2D8B;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.section-table__table tbody td {
  background: rgba(255, 255, 255, 0.10);
}

.section-table__box-description {
  max-width: 808px;
  width: 100%;
  margin: 0 auto;
  color: var(--color-title-white);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.section-table__card {
  width: 100%;
  border-radius: 32px;
  background: var(--color-title-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.section-table__card-title {
  color: #7B2D8B;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3px;
}

.section-table__card-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 59px;
}

.section-table__card-description {
  font-size: var(--font-size-20);
  line-height: 26px;
  flex: 1;
  min-width: 280px;
}

.section-table__card-btn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 43px;
  border: 2px solid#2ECC71;
  color: #2ECC71;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: normal;
}

.section-table__card-btn img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(68%) saturate(466%) hue-rotate(93deg) brightness(95%) contrast(88%);
}

.section-title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.work-practice__steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.global-cards--white {
  background: #F0F0F0;
}

.global-cards--white .global-cards__title {
  color: #252525;
}

.global-cards--white .global-cards__item {
  background: #FFF;
  transition: all 0.4s;
  padding: 24px;
}

.global-cards--white .global-cards__item:hover {
  background: #E4E0EF;
}

.global-cards--white .global-cards__item-title {
  color: #441551;
}

.global-cards--white .global-cards__item-text {
  color: #252525;
}

.global-cards--white .global-cards__item::before {
  content: none;
}

.separately {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.separately .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.separately__icon {
  width: 110px;
  height: 110px;
}

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

.separately__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 886px;
}

.separately__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.separately__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.separately__description {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.hero--banner .hero__btn--link {
  max-width: max-content;
}

.section-table--white {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section-table--white .section-table__title {
  color: var(--color-text-black);
}

.section-table--white .section-table__table tbody td {
  background: #EBD2F0;
  color: var(--color-text-black);
}

.section-table--white .section-table__box-description {
  color: var(--color-text-black);
}

.faq--gradient {
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.faq--gradient .container {
  gap: 40px;
  align-items: center;
}

.faq--gradient .faq__title {
  color: var(--color-title-white);
}

.faq--gradient .faq__accardion-title {
  color: var(--color-title-white);
}

.faq--gradient .faq__accardion-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(302deg) brightness(102%) contrast(101%);
}

.faq--gradient .faq__accardion-content {
  background: rgba(255, 255, 255, 0.10);
}

.faq--gradient .faq__accardion-text {
  color: var(--color-title-white);
}

.faq--gradient .faq__accardion-content::after {
  background: url(../img/vector4.svg);
  top: -32px;
}

.section-table__card--gradient {
  background: radial-gradient(40% 100.18% at 88.65% 70.75%, #7D5282 0%, #441551 100%);
}

.section-table__card--gradient .section-table__card-description {
  color: var(--color-title-white);
}

.section-table__card--gradient .section-table__card-title {
  color: #B740CE;
}

.section-table__card--gradient .section-table__card-btn {
  border: 2px solid var(--color-title-white);
  color: var(--color-title-white);
  background: transparent;
}

.section-table__card--gradient .section-table__card-btn img {
  transition: none;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(302deg) brightness(102%) contrast(101%);
}

.section-table__card--gradient .section-table__card-btn:hover {
  background: #2ECC71;
  border-color: #2ECC71;
  color: var(--color-title-white);
}

.section-table__card--gradient .section-table__card-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(353deg) brightness(104%) contrast(101%);
}

.calculator {
  padding: 56px 0;
}

.calculator .container {
  max-width: 1040px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.calculator__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.calculator__title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.calculator__description {
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 1.5;
}

.calculator__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.calculator__text {
  max-width: 668px;
  width: 100%;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.calculator__text2 {
  width: 100%;
  max-width: 100%;
}

.calculator__text2 p {
  text-align: left;
}

.calculator__text ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
}

.calculator__text ul li {
  list-style: disc;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.calculator__box {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.calculator__params,
.calculator__result {
  width: calc(50% - 20px);
  min-width: 400px;
  display: flex;
  flex: 1;
  padding: 32px;
  flex-direction: column;
  border-radius: 32px;
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.calculator__params {
  gap: 32px;
  padding: 32px 24px;
}

.calculator__result {
  gap: 24px;
}

.calculator__group--none {
  display: none;
}

.calculator__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculator__group-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
}

.calculator__group-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.calculator__group-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.calculator__group-field {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #DADADA;
  border-radius: 40px;
  background: #F5F5F5;
  transition: border-color 0.2s ease;
  cursor: text;
  overflow: hidden;
  isolation: isolate;
}

.calculator__group-field:has(.feedback__radio-input:checked) {
  border-color: #252525;
  background: transparent;
  color: #252525;
}

.calculator__group-field:has(.feedback__radio-input:checked)::placeholder {
  color: #252525;
}

.calculator__group-field-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  cursor: text;
  pointer-events: none;
}

.calculator__group-field-label .feedback__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.calculator__group-field .calculator__input {
  position: relative;
  z-index: 2;
  width: 127px;
  min-width: 127px;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  border: none;
  background: transparent;
  color: rgba(38, 38, 38, 0.67);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.calculator__group-field .calculator__input::-webkit-outer-spin-button,
.calculator__group-field .calculator__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



.calculator__group-field .calculator__input:focus {
  outline: none;
}

.calculator__group-row>.calculator__input {
  width: 127px;
  min-width: 127px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #D3D3D3;
  background: #F9F9F9;
  border-radius: 40px;
  color: rgba(38, 38, 38, 0.67);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.calculator__group-row>.calculator__input::-webkit-outer-spin-button,
.calculator__group-row>.calculator__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator__group-row>.calculator__input:focus {
  background: transparent;
  border-color: #252525;
}

.calculator__group--prro {
  position: relative;
  z-index: 2;
}

.calculator__group-row>.feedback__radio-label {
  position: relative;
  z-index: 2;
}

.calculator__result-boxs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculator__price {
  display: flex;
  justify-content: center;
  color: var(--color-text-green);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.32px;
  gap: 4px;
}

.calculator__result-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.calculator__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calculator__form .feedback__input,
.calculator__result .feedback__input {
  border: 1px solid #D3D3D3;
  background: #F9F9F9;
}

.calculator__form .feedback__textarea,
.calculator__result .feedback__textarea {
  border: 1px solid #D3D3D3;
  background: #F9F9F9;
  height: 93px;
  min-height: 93px;
  max-height: 93px;
  overflow: auto;
}

.calculator__result .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.calculator__result>p {
  margin: 0;
}

.calculator__result>p>br {
  display: none;
}

.calculator__result>p:empty,
.calculator__result>p:has(> br:only-child) {
  display: none;
}

.calculator__result>p:not(.feedback__policy) {
  display: contents;
}

.calculator__result .wpcf7-spinner {
  display: none;
}

.calculator__result .feedback__policy {
  margin-top: 0;
}

.global-cards--arrow .work-practice__item {
  max-width: 295px;
  overflow: visible;
}

.global-cards--arrow .work-practice__item::before {
  content: "";
  background: url(../img/working__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 11px;
  position: absolute;
  right: -52px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.global-cards--arrow .work-practice__item:nth-last-of-type(3)::before,
.global-cards--arrow .work-practice__item:nth-last-of-type(1)::before {
  content: none;
}

.global-cards--arrow .global-cards__body {
  max-width: 1023px;
}

.global-cards--arrow .global-cards__list {
  gap: 32px 69px;
}

.global-cards--arrow {
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.banner--center .container {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.registration__inner-content--padding {
  align-items: flex-start;
  gap: 0;
}

.registration__inner-content--padding .registration__inner-title {
  margin-bottom: 40px;
}

.registration__inner-content--padding .registration__inner-description {
  margin-bottom: 32px;
}

.registration__inner-content--padding .registration__inner-description:nth-last-of-type(1) {
  margin-bottom: 0;
}

.registration__inner-subtitle {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 24px;
}

.work-practice--numbers .work-practice__item-icon::before {
  content: none;
}

.work-practice--numbers .work-practice__item-icon {
  display: flex;
  width: 39px;
  height: 39px;
  padding: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  border: 2px solid var(--color-title-white);
  background: var(--color-text-green);
  box-shadow: 0 5px 6.5px 0 rgba(0, 0, 0, 0.25);
}

.work-practice--numbers .work-practice__item-icon span {
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18px;
}

.work-practice--numbers .work-practice__item {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  padding: 24px;
  max-width: 551px;
  width: calc(50% - 34px);
}

.work-practice__list {
  gap: 32px 68px;
}

.tax-exemption {
  padding: 56px 0;
}

.tax-exemption .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.tax-exemption__title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.tax-exemption__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tax-exemption__list {
  display: flex;
  gap: 24px;
}

.tax-exemption__text {
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.tax-exemption__text strong {
  font-weight: 600;
}

.tax-exemption__item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 32px;
  background: var(--color-title-white);
}

.tax-exemption__item-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.tax-exemption__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tax-exemption__item-title {
  color: #441551;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 24px;
}

.tax-exemption__item-text {
  font-size: var(--font-size-16);
  line-height: 133%;
}

.fines-violations {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.fines-violations .container {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: center;
}

.fines-violations__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.fines-violations__list-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.fines-violations__list {
  display: flex;
  width: 100%;
  gap: 6px;
  flex-direction: column;
}

.fines-violations__item {
  display: flex;
  gap: 5px;
}

.fines-violations__item-title {
  background: #7B2D8B;
  font-size: 18px;
  font-weight: 600;
  padding: 21px 32px;
  border-radius: 12px;
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  width: calc(50% - 2.5px);
  text-align: left;
}

.fines-violations__item-text {
  padding: 21px 32px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-16);
  line-height: 1.2;
  width: calc(50% - 2.5px);
  text-align: left;
  display: flex;
  align-items: center;
}

.fines-violations__description {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--color-title-white);
  line-height: 1.5;
}

.global-cards--white .global-cards__content {
  gap: 16px;
}

.jurisdictions {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.jurisdictions .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}

.jurisdictions__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.jurisdictions__body {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.jurisdictions__body-item {
  width: calc(20% - 13px);
  padding: 13px 24px;
  min-height: 92px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  ;
}

.jurisdictions__body-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12)) drop-shadow(0 5px 6.5px rgba(0, 0, 0, 0.25));
}

.jurisdictions__body-item span {
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.jurisdictions__body-item--other {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.jurisdictions__body-item--other span {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.calculator__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.calculator__tab-btn {
  padding: 6px 24px;
  border-radius: 40px;
  border: 1px solid rgba(153, 153, 153, 0.30);
  background: var(--color-title-white);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  transition: all 0.4s;
}

.calculator__tab-btn:hover,
.calculator__tab-btn:focus-visible {
  border-color: #7B2D8B;
  background: #7B2D8B;
  color: var(--color-title-white);
  outline: none;
}

.calculator__tax-option--fop-only[hidden],
.calculator__tax-option--fop-only.is-hidden {
  display: none !important;
}

.calculator__tab-btn.is-active {
  border-color: #7B2D8B;
  background: #7B2D8B;
  color: var(--color-title-white);
  outline: none;
}

.calculator-tabs {
  padding: 56px 0;
}

.calculator-tabs>.container {
  max-width: 1040px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.calculator-tabs .calculator {
  padding: 0;
}

.calculator-tabs .calculator>.container {
  gap: 0;
}

.calculator-tabs__panel {
  margin-top: 40px;
}

.calculator-tabs__panel[hidden] {
  display: none;
}

.single-case__hero-header--prices {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.single-case__hero-header-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.prcie__boxs-section {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.prcie__boxs {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - (32px / 3));
  padding: 16px 16px 24px 16px;
  align-items: flex-start;
  gap: 16px;
  height: auto;
  border-radius: 32px;
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.prcie__boxs-header {
  display: flex;
  padding: 24px 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 23px;
  background: #F0F0F0;
}

.prcie__boxs-title {
  color: #441551;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 600;
  line-height: 26px;
}

.prcie__boxs-description {
  color: var(--color-text-green);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18px;
}

.prcie__boxs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.prcie__boxs-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
}

.prcie__boxs-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.prcie__boxs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.prcie__boxs-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.prcie__boxs-item-text {
  font-size: var(--font-size-16);
  line-height: 133%;
}

.work-practice__content-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.work-practice__content-subtitle {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 400;
  line-height: 1.5;
}

.work-practice__title-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.purchasing {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.purchasing .container {
  display: flex;
  flex-direction: column;
}

.purchasing__title {
  color: var(--color-title-white);
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
  margin-bottom: 40px;
}

.purchasing__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.purchasing__content-title {
  color: var(--color-title-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

.purchasing__content-description {
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

.purchasing__box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.purchasing__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.purchasing__item {
  display: flex;
  padding: 29px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.10);
  width: calc(25% - 12px);
  min-width: 220px;
}

.purchasing__item-image {
  width: 50px;
  height: 50px;
}

.purchasing__item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.purchasing__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.purchasing__item-title {
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.purchasing__item-description {
  color: #E0E0E0;
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.2;
}

.process {
  padding: 56px 0;
}

.process .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.process__title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.process__steps {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 69px;
}

.process__step {
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  position: relative;
}

.process__step-number {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: #7B2D8B;
  box-shadow: 0 0 26.8px 0 rgba(123, 45, 139, 0.49);
  color: var(--color-title-white);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3px;
}

.process__step-text {
  text-align: center;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 20px;
}

.process__step::before {
  content: "";
  background: url(../img/working__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 11px;
  position: absolute;
  right: -52px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.process__step:nth-of-type(4)::before,
.process__step:nth-last-of-type(1)::before {
  content: none;
}

.closing {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.closing .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.closing__title {
  color: var(--color-title-white);
  font-family: "Golos Text";
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.closing__content {
  display: flex;
  flex-direction: column;
}

.closing__content h3 {
  color: var(--color-title-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 24px;
}

.closing__content-description {
  margin-bottom: 32px;
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.closing__content-description:nth-last-of-type(1) {
  margin-bottom: 0;
}

.global-cards .global-cards__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.global-cards .global-cards__description {
  color: var(--color-text-black);
  text-align: center;
  font-size: var(--font-size-20);
  line-height: 30px;
}

.global-cards__description.global-cards__description--white {
  color: #E0E0E0;
}

.global-cards__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.global-cards__info-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.global-cards__info-item-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

.global-cards__info-item-description {
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
}

ul.global-cards__info-item-description {
  padding-left: 20px;
}

.global-cards__info-item-description li {
  list-style: decimal;
}

.industry-specific {
  padding: 56px 0;
}

.industry-specific .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.industry-specific__title {
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

.industry-specific .global-cards__item {
  width: calc(25% - 18px);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
  min-width: 220px;
  flex: 1;
}

.industry-specific--center .global-cards__item {
  background: #E4E0EF;
  align-items: center;
  box-shadow: none;
}

.industry-specific .global-cards__item:hover .global-cards__item-title {
  color: var(--color-title-white);
}

.industry-specific .global-cards__item:hover .global-cards__item-text {
  color: var(--color-title-white);
}

.industry-specific .global-cards__icon {
  width: 54px;
  height: 54px;
}

.industry-specific .global-cards__item-title {
  color: #7B2D8B;
}

.industry-specific .global-cards__item-text {
  color: var(--color-text-black);
}

.global-four-cards {
  padding: 56px 0;
}

.global-four-cards .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.global-four-cards-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.global-four-cards__title {
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.global-four-cards-header-description {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.global-four-cards__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.global-four-cards__item {
  width: calc(50% - 12px);
  display: flex;
  padding: 29px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 32px;
  background: var(--color-title-white);
  box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
}

.global-four-cards__item-icon {
  width: 54px;
  height: 54px;
}

.global-four-cards__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.global-four-cards__item-title {
  color: #7B2D8B;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.global-four-cards__item-text {
  font-size: 16px;
  line-height: 1.3;
}

.common-situations {
  padding: 56px 0;
  background: radial-gradient(40% 100.18% at 11.35% 70.75%, #7D5282 0%, #441551 100%);
}

.common-situations .container {
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
}

.common-situations__title {
  color: var(--color-title-white);
  text-align: center;
  font-size: var(--font-size-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.36px;
}

.common-situations__body {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.common-situations__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.common-situations__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.common-situations__item-left {
  max-width: 462px;
  width: 100%;
  flex-shrink: 0;
  color: var(--color-title-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.common-situations__item-right {
  flex: 1;
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-title-white);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
  margin-left: 10px;
  position: relative;
}

.common-situations__item-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 24px;
  height: 18px;
  background: rgba(255, 255, 255, 0.10);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.single-case__hero-header--prices--tov .prcie__boxs-section{
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.single-case__hero-header--prices--tov .prcie__boxs-section .prcie__boxs {
  width: calc(50% - 16px);
  padding: 32px;
}

.industry-specific--center .global-cards__item-title {
  color: #252525;
  text-align: center;
}

.industry-specific--center .global-cards__item-text {
  text-align: center;
}

.industry-specific--center .global-cards__item:hover .global-cards__icon {
  transform: none;
  left: 0;
}

















@media(max-width: 1200px) {

  :root {

    --container: calc(100% - 40px);
  }


  .subtitle {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.22px;
  }



  .header__main {
    display: none;
  }

  .header__top-nav {
    display: none;
  }

  .header__contacts {
    display: none;
  }

  .header__top-mobile {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header__mobile-contact {
    width: 32px;
    height: 32px;
    display: flex;
  }

  .header__mobile-contact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .header__top {
    height: 60px;
    background: var(--color-title-white);
    box-shadow: 0 6px 10.3px 0 rgba(0, 0, 0, 0.05);
    padding: 14px 0;
  }

  .header__logo-link {
    width: 134px;
    height: 32px;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 32px;
    height: 32px;
    padding: 3px 0;
  }

  .burger__line {
    background: #7B2D8B;
    height: 2px;
    width: 100%;
    border-radius: 99px;
  }

  .burger__line:nth-of-type(1),
  .burger__line:nth-of-type(3) {
    width: calc(100% - 8px);
    margin: 0 auto;
  }


  .hero__stats_consulting {
    display: none!important;
  }

  .hero__stats {
    display: none;
  }

  .hero {
    background: linear-gradient(337deg, #7D5282 4.68%, #441551 74.31%);
    padding: 53px 0;
    min-height: auto;
  }

  .working__image {
    display: none;
  }

  .working__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .working__list {
    width: 100%;
  }

  .working__item {
    max-width: calc(33.33% - 48px);
    width: 100%;
  }

  .footer__nav {
    gap: 32px;
  }

  .footer__col {
    flex: 1 1 calc(25% - 24px);
  }

  .cases__hero .cases__slide {
    width: calc(50% - 12px) !important;
  }

  .banner__left h3 br {
    display: none;
  }

  .global__hero--error .hero__stats {
    display: flex;
  }

  .global__hero--error .hero__container {
    flex-direction: column;
    align-items: center;
  }

  .global__hero--error .hero__content {
    max-width: 100%;
    gap: 32px;
  }

  .global__hero--width-full .hero__stats {
    display: flex;
    transform: none;
    min-width: auto;
    max-width: 840px;
    width: 100%;
    height: auto;
  }

  .global__hero--width-full .hero__content {
    max-width: 100%;
  }

  .global__hero--width-full .hero__container {
    gap: 0;
    flex-direction: column;
  }

  .content-column--big-img {
    padding: 40px 0;
  }

  .content-column--big-img .container {
    flex-direction: column;
  }

  .content-column--big-img .content-column__left {
    min-width: auto;
  }

  .content-column--big-img .content-column__right {
    transform: none;
    max-width: 640px;
    min-width: auto;
    height: auto;
    width: 100%;
  }

  .media__hero .hero__stats {
    max-width: 618px;
    margin: 0 auto;
  }

  .hero__title br {
    display: none;
  }

  .single-case__hero-image {
    height: auto;
  }

  .section-table {
    overflow: hidden;
  }

  .section-table__scroll {
    width: calc(100% + 20px);
    margin: 0 -10px 0 0;
  }

  .global-cards--arrow .global-cards__list {
    flex-direction: column;
    width: 100%;
    gap: 69px;
  }

  .global-cards--arrow .global-cards__body {
    width: 100%;
  }

  .global-cards--arrow .work-practice__item {
    max-width: 100%;
    width: 100%;
  }

  .global-cards--arrow .work-practice__item::before {
    transform: translateY(-50%) rotate(90deg);
    left: 46%;
    bottom: -42px;
    top: auto;
  }

  .global-cards--arrow .work-practice__item:nth-last-of-type(3)::before {
    content: "";
  }

  .hero--banner-mobile .hero__stats {
    display: flex;
    margin: 0 auto;
  }

  .hero--banner-mobile .hero__container {
    flex-direction: column;
    gap: 24px;
  }

  .tax-exemption__list {
    flex-wrap: wrap;
  }

  .tax-exemption__item {
    width: calc(50% - 12px);
    flex: none;
  }

  .jurisdictions__body-item {
    flex: 1;
  }

  .prcie__boxs-section {
    flex-direction: column;
  }

  .prcie__boxs {
    width: 100%;
  }

  .process__steps {
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 70px;
  }

  .process__step {
    max-width: 100%;
  }

  .process__step::before {
    transform: translateY(-50%) rotate(90deg);
    left: 48%;
    bottom: -42px;
    top: auto;
  }

  .process__step:nth-of-type(4)::before {
    content: "";
  }
  
  .single-case__hero-header--prices--tov .prcie__boxs-section .prcie__boxs {
    width: 100%;
  }

  .hero--banner .hero__container {
    flex-wrap: wrap;
  }

  .hero--banner-image .hero__stats {
    display: flex;
    margin: 0 auto;
  }

  .hero--banner.hero--banner-not-image .hero__stats{
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__container {
    align-items: flex-start;
  }

  .hero__tag {
    font-size: 12px;
    gap: 4px;
  }

  .hero__tags {
    margin-bottom: 15px;
    gap: 4px;
  }

  .hero__title {
    max-width: 100%;
    font-size: 32px;
    margin-bottom: 32px;
  }

  .hero__features {
    margin-bottom: 32px;
  }

  .hero__feature {
    font-size: var(--font-size-16);
  }

  .hero__actions {
    gap: 29px;
  }

  .hero__btn--primary {
    font-size: 16px;
    max-width: 320px;
  }

  .hero__btn--link {
    font-size: 16px;
    max-width: 320px;
  }

  .responsibility {
    padding: 40px 0;
  }

  .responsibility__container {
    gap: 24px;
  }

  .responsibility__header {
    gap: 0;
  }

  .responsibility__logo {
    width: 39px;
    height: 47px;
    margin-bottom: 24px;
  }

  .responsibility__title {
    margin-bottom: 16px;
  }

  .responsibility__description {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .responsibility__content {
    gap: 24px;
  }

  .responsibility__list {
    flex-direction: column;
    gap: 24px;
  }

  .responsibility__item {
    flex: 1;
    padding: 29px 16px;
    border-radius: 16px;
  }

  .responsibility__item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .responsibility__link {
    font-size: 14px;
    padding: 18px 16px;
    max-width: 320px;
    width: 100%;
  }

  .service-sectors {
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
    padding: 40px 0;
  }

  .service-sectors__container {
    gap: 32px;
  }

  .service-sectors__sub {
    font-size: 12px;
  }

  .service-sectors__title {
    margin-bottom: 16px;
  }

  .service-sectors__description {
    color: var(--color-title-white);
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .service-sectors__list {
    gap: 16px;
  }

  .service-sectors__item {
    flex: 1 1 calc(50% - 8px);
    min-height: 152px;
    padding: 29px 16px;
    border-radius: 16px;
    align-items: center;
    gap: 16px;
  }

  .service-sectors__item-title {
    font-size: var(--font-size-16);
    line-height: 1;
    text-align: center;
  }

  .working {
    padding: 40px 0;
  }

  .working__sub {
    font-size: 12px;
  }

  .working__title {
    margin-bottom: 16px;
  }

  .working__description {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .working__list {
    flex-direction: column;
    gap: 70px;
  }

  .working__item {
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .working__content {
    align-items: flex-start;
    justify-content: center;
  }

  .working__item-title {
    font-size: 18px;
  }

  .working__item-text {
    font-size: 14px;
    text-align: left;
  }

  .working__item::before {
    transform: rotate(90deg) translateX(-50%);
    top: calc(100% + 52px);
    left: 50%;
  }

  .advantages {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .advantages__container {
    gap: 24px;
  }

  .advantages__header {
    align-items: center;
  }

  .advantages__sub {
    font-size: 12px;
  }

  .advantages__list {
    gap: 16px;
  }

  .advantages__item {
    flex: 1 1 calc(50% - 8px);
    padding: 16px 12px;
    gap: 16px;
    border-radius: 16px;
  }

  .advantages__item-title {
    font-size: 15px;
  }

  .advantages__item-text {
    font-size: 14px;
  }

  .cases {
    padding: 40px 0;
  }

  .cases__container {
    gap: 24px;
  }

  .cases__header {
    align-items: center;
  }

  .cases__sub {
    font-size: 12px;
  }

  .cases__body {
    gap: 32px;
  }

  .cases__slide {
    max-width: 320px;
    width: 100% !important;
    border-radius: 16px;
    background: var(--color-title-white);
    box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
    padding: 24px;
  }

  .cases__slide-sub {
    background: #ECFAF2;
    font-size: 12px;
  }

  .cases__item-title {
    -webkit-line-clamp: 3;
  }

  .cases__card {
    border-radius: 23px;
    background: rgba(46, 204, 113, 0.09);
  }

  .reviews {
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .reviews__container {
    gap: 24px;
  }

  .reviews__sub {
    font-size: 12px;
  }

  .reviews__header {
    align-items: center;
  }

  .reviews__body {
    gap: 32px;
  }

  .reviews__slide {
    max-width: 320px;
    width: 100% !important;
    height: auto;
    padding: 29px 16px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.10);
    flex-shrink: 0;
  }

  .reviews__badge {
    font-size: 12px;
  }

  .cases__link-all {
    font-size: 14px;
    max-width: 320px;
    width: 100%;
  }

  .reviews__link-all {
    font-size: 14px;
    max-width: 320px;
    width: 100%;
  }

  .feedback {
    padding: 40px 0;
  }

  .feedback__container {
    gap: 24px;
  }

  .feedback__sub {
    font-size: 12px;
  }

  .feedback__box {
    gap: 16px;
  }

  .feedback__description {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .feedback__radio-group {
    flex-wrap: wrap;
    gap: 16px;
  }

  .feedback__submit {
    font-size: var(--font-size-14);
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__container--middle .footer__container {
    flex-direction: column;
    gap: 0;
  }

  .footer__container--bottom {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__title {
    cursor: pointer;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-size: var(--font-size-16);
    font-weight: 400;
    position: relative;
  }

  .footer__title::after {
    content: '';
    background: url(../img/arrow-nav.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 13px;
    height: 13px;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .footer__col.is-open .footer__title::after {
    transform: translateY(-50%) rotate(0deg);
  }

  .footer__list {
    max-height: 0;
    padding-left: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer__item:nth-of-type(1) {
    padding-top: 16px;
  }

  .footer__col {
    gap: 0;
  }

  .footer__container--middle {
    padding: 50px 0;
  }

  .footer__logo {
    margin-bottom: 24px;
  }

  .footer__menu {
    margin-bottom: 32px;
  }

  .footer__subtitle {
    font-size: var(--font-size-16);
  }

  .footer__schedule {
    margin-bottom: 32px;
  }

  .footer__bottom {
    padding: 32px 0;
  }

  .modal__content {
    max-width: 320px;
    padding: 19px 16px 24px 16px;
    border-radius: 29px;
  }

  .modal__title {
    font-size: var(--font-size-20);
  }

  .modal__close {
    top: 20px;
    right: 20px;
  }

  .modal__text {
    font-size: var(--font-size-16);
    line-height: 20px;
  }

  .fixed-info {
    display: none;
  }

  .service-sectors__item:hover .service-sectors__icon,
  .service-sectors__item:hover .service-sectors__item-title {
    left: 0;
    transform: none;
  }

  .hero__contact-title {
    max-width: 100%;
    font-size: 32px;
    margin-bottom: 32px;
  }

  .hero__contact-description {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .hero__contact-address {
    flex-direction: column;
  }

  .hero__contact-item {
    width: 100%;
  }

  .hero__contact-content {
    align-items: center;
  }

  .hero__contact-text {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .hero__contact-list-item {
    font-size: var(--font-size-14);
  }

  .hero__contact-social-title {
    font-size: var(--font-size-16);
  }

  .hero__contact-social-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sub__black {
    font-size: 12px;
  }

  .cases__hero-title {
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.28px;
    margin-bottom: 0;
  }

  .cases__hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .cases__hero-header {
    margin-bottom: 18px;
  }

  .cases__body-tabs {
    gap: 8px;
  }

  .cases__body-tab {
    font-size: 12px;
  }

  .cases__hero .cases__slide {
    min-width: 276px;
    flex: 1 1 100%;
    max-width: 100% !important;
    background: #E4E0EF;
  }

  .cases__hero .cases__card {
    background: rgba(255, 255, 255, 0.38);
  }

  .pagination__item:nth-of-type(1),
  .pagination__item:nth-of-type(2),
  .pagination__item:nth-of-type(3) {
    display: none;
  }

  .cases__hero .cases__slide:hover {
    background: var(--color-title-white);
    box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
  }

  .single-case__hero-title {
    font-size: 28px;
    letter-spacing: 0.28px;
  }

  .single-case__hero-description {
    font-size: 18px;
    line-height: 24px;
  }

  .single-review__author {
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
  }

  .single-review__avatar {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .single-review__name {
    font-size: 18px;
  }

  .single-review__meta {
    grid-template-columns: 1fr;
  }

  .single-review__content {
    padding: 16px;
    border-radius: 20px;
  }

  .single-case__result {
    flex-wrap: wrap;
    gap: 25px;
  }

  .single-case__result-boxes {
    gap: 16px;
    flex-wrap: wrap;
  }

  .single-case__result-value {
    font-size: 22px;
    line-height: 22px;
  }

  .single-case__result-label {
    font-size: var(--font-size-14);
  }

  .single-case__result-box {
    flex-wrap: wrap;
  }

  .single-case__result-title {
    font-size: 18px;
    line-height: 24px;
  }

  .banner .container {
    border-radius: 16px;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .banner__left {
    gap: 8px;
  }

  .banner__left h3 {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .banner__left p {
    font-size: 16px;
    line-height: 21px;
  }

  .banner__btn {
    font-size: 18px;
  }

  .constructing__hero-title {
    font-size: 28px;
    letter-spacing: 0.28px;
    margin-bottom: 24px;
  }

  .constructing__hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .constructing__hero-list {
    gap: 8px;
    align-items: center;
  }

  .constructing__hero-item {
    font-size: 12px;
  }

  .constructing__advantages {
    padding: 40px 0;
  }

  .constructing__advantages .container {
    gap: 32px;
  }

  .constructing__advantages-boxs {
    gap: 16px;
  }

  .constructing__advantages-box {
    width: calc(50% - 8px);
    padding: 16px 16px 24px 16px;
    border-radius: 16px;
    gap: 16px;
  }

  .constructing__advantages-title {
    font-size: 20px;
    line-height: 24px;
  }

  .constructing__advantages-item {
    gap: 8px;
    font-size: var(--font-size-14);
    line-height: 133%;
  }

  .constructing__advantages-list--error .constructing__advantages-item::before {
    width: 24px;
    height: 24px;
  }

  .constructing__advantages-list--success .constructing__advantages-item::before {
    width: 24px;
    height: 24px;
  }

  .banner--column .container {
    max-width: 100%;
  }

  .content {
    padding: 40px 0;
  }

  .content .container {
    gap: 40px;
  }

  .content__title {
    font-size: 22px;
    letter-spacing: 0.22px;
    margin-bottom: 16px;
  }

  .content__description {
    margin-bottom: 16px;
  }

  .content__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .banner--column .container {
    gap: 16px;
    padding: 24px 16px;
  }

  .banner--column .banner__left h3 {
    font-size: var(--font-size-20);
    letter-spacing: 0.2px;
  }

  .banner__right {
    flex-direction: column;
  }

  .banner--column .banner__right p {
    font-size: 16px;
    line-height: 21px;
  }

  .banner--column .banner__btn {
    font-size: 16px;
  }

  .work-practice {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .work-practice .container {
    gap: 32px;
  }

  .work-practice__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .work-practice__list {
    flex-direction: column;
    gap: 70px;
  }

  .work-practice__item {
    gap: 24px;
    width: 100%;
  }

  .work-practice__item-title {
    font-size: 18px;
    line-height: 22px;
  }

  .work-practice__item-text {
    font-size: var(--font-size-14);
    line-height: 133%;
  }

  .work-practice__item::before {
    transform: translateY(-50%) rotate(90deg);
    left: 50%;
    bottom: -60px;
    top: auto;
  }

  .work-practice__item:nth-of-type(2n)::before {
    content: "";
  }

  .work-practice__item:nth-last-of-type(1)::before {
    content: none;
  }

  .content-column {
    padding: 40px 0;
  }

  .content-column .container {
    gap: 0;
    flex-direction: column;
  }

  .content-column__left {
    min-width: auto;
    gap: 16px;
  }

  .content-column__left h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.22px;
  }

  .content-column__description p {
    font-size: var(--font-size-14);
  }

  .content-column__image {
    max-width: 492px;
    width: 100%;
  }

  .global-cards {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .global-cards .container {
    gap: 32px;
  }

  .global-cards__header {
    gap: 16px;
  }

  .global-cards__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .global-cards  .global-cards__description {
    font-size: 18px;
    line-height: 30px;
  }

  .global-cards__body {
    gap: 42px;
  }

  .global-cards__list {
    flex-direction: column;
    gap: 24px;
  }

  .global-cards__item {
    width: 100%;
  }

  .global-cards__item-title {
    font-size: 16px;
    line-height: 24px;
  }

  .global-cards__item-text {
    font-size: var(--font-size-14);
    color: #fff;
    line-height: 1.4;
  }

  .global-cards__btn {
    font-size: var(--font-size-14);
  }

  .faq {
    padding: 40px 0;
  }

  .faq .container {
    gap: 24px;
  }

  .faq__accardion-title {
    font-size: var(--font-size-16);
    gap: 16px;
  }

  .faq__accardion-content {
    margin-left: 0;
  }

  .faq__accardion-text {
    padding: 16px;
    font-size: var(--font-size-14);
  }

  .global__hero--error .hero__stats {
    max-width: 840px;
    width: 100%;
    height: auto;
  }

  .history {
    padding: 40px 0;
  }

  .history .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .history__header {
    gap: 16px;
  }

  .history__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .history__list {
    width: 100%;
    gap: 16px;
  }

  .history__item {
    min-height: 144px;
  }

  .history__item-title {
    font-size: var(--font-size-16);
    line-height: 24px;
  }

  .history__card {
    padding: 24px 16px;
    border-radius: 16px;
    gap: 16px;
    min-height: 276px;
  }

  .history__card-title {
    font-size: 20px;
    letter-spacing: 0.2px;
  }

  .history__card-description {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 21px;
  }

  .history__card-link {
    font-size: 15px;
  }

  .global-cards--small-text .global-cards__item-title {
    font-size: 15px;
    line-height: 1;
  }

  .team {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .team .container {
    gap: 24px;
  }

  .sub__white {
    font-size: 12px;
  }

  .team__title {
    font-size: 22px;
    letter-spacing: 0.22px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .team__title-description {
    font-size: 18px;
    line-height: 30px;
  }

  .team__card {
    padding: 29px 16px;
    border-radius: 16px;
  }

  .team__slide {
    width: 320px !important;
  }

  .media__cards {
    flex-direction: column;
    gap: 16px;
  }

  .media__cards-item {
    width: 100%;
  }

  .media__cards-item-title {
    font-size: 18px;
  }

  .media__hero {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .global__hero--width-full {
    padding: 40px 0 0 0;
  }

  .media__boxs-link {
    font-size: 12px;
  }

  .media__boxs-list {
    gap: 8px;
  }

  .media__title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.22px;
  }

  .media__boxs {
    gap: 24px;
  }

  .media__content-item {
    padding: 16px 16px 24px 16px;
    border-radius: 16px;
    min-width: 280px;
  }

  .media__content-sub {
    font-size: 12px;
  }

  .single-case__hero--article h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .hero--banner .hero__content {
    gap: 32px;
  }

  .hero--banner .hero__tags {
    margin-bottom: -8px;
  }

  .hero--banner .hero__description {
    font-size: 16px;
    line-height: 24px;
  }

  .registration__inner {
    padding: 40px 0;
  }

  .registration__inner .container {
    gap: 16px;
  }

  .registration__inner-content {
    gap: 16px
  }

  .registration__inner-title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .registration__inner-content {
    align-items: flex-start;
  }

  .section-table {
    padding: 40px 0;
  }

  .section-table--gradient {
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .section-table .container {
    gap: 32px;
  }

  .section-table__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .section-table__box-description {
    font-size: 15px;
  }

  .section-table__card {
    border-radius: 16px;
    padding: 24px 16px;
    align-items: center;
    box-shadow: 0 0 22.7px 0 rgba(210, 179, 229, 0.35);
  }

  .section-table__card-title {
    font-size: 20px;
    letter-spacing: 0.2px;
  }

  .section-table__card-box {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .section-table__card-description {
    font-size: var(--font-size-16);
    text-align: center;
    line-height: 21px;
  }

  .section-table__card-btn {
    font-size: 15px;
    padding: 18px 16px;
  }

  .section-table__table {
    width: auto;
    min-width: 0;
    table-layout: fixed;
  }

  .section-table__table th,
  .section-table__table td {
    height: 66px;
    padding: 16px 10px;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }

  .section-table__table thead th:not(:first-child) {
    width: 172px;
    min-width: 172px;
    max-width: 172px;
    font-size: 14px;
  }

  .section-table__table tbody th {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    font-size: 14px;
    line-height: 1.2;
    padding: 16px 8px;
  }

  .section-table__table tbody td {
    width: 172px;
    min-width: 172px;
    max-width: 172px;
    font-size: 14px;
    line-height: 1.2;
  }

  .section-title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .separately {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .separately .container {
    gap: 32px;
  }

  .separately__icon {
    width: 50px;
    height: 50px;
  }

  .separately__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .separately__description {
    font-size: 18px;
    line-height: 30px;
  }

  .section-table--white {
    padding: 0;
    gap: 32px;
  }

  .hero--banner .hero__btn--link span {
    display: none;
  }

  .calculator__params,
  .calculator__result {
    min-width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .calculator {
    padding: 40px 0;
  }

  .calculator .container {
    gap: 24px;
  }

  .calculator__header {
    gap: 24px;
  }

  .calculator__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .calculator__description {
    font-size: 15px;
    line-height: 150%;
  }

  .calculator__params {
    gap: 24px;
  }

  .calculator__group-title {
    font-size: var(--font-size-16);
    line-height: 133%;
  }

  .calculator__price {
    font-size: 28px;
    letter-spacing: 0.28px;
  }

  .calculator__result-text {
    font-size: 16px;
    line-height: 26px;
  }

  .calculator__text {
    font-size: 14px;
    line-height: 140%;
  }

  .calculator__form .feedback__submit {
    font-size: var(--font-size-16);
  }

  .registration__inner-content--padding .registration__inner-title {
    margin-bottom: 0;
  }

  .registration__inner-content--padding .registration__inner-description {
    margin-bottom: 0;
  }

  .registration__inner-subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }

  .work-practice--numbers .work-practice__list {
    width: 100%;
  }

  .work-practice--numbers .work-practice__item {
    width: 100%;
    max-width: 100%;
  }

  .work-practice--numbers .work-practice__item::before {
    bottom: -48px;
    left: 45%;
  }

  .tax-exemption {
    padding: 40px 0;
  }

  .tax-exemption .container {
    gap: 32px;
  }

  .tax-exemption__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .tax-exemption__list {
    flex-direction: column;
  }

  .tax-exemption__item {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .tax-exemption__item-icon {
    width: 40px;
    height: 40px;
  }

  .tax-exemption__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .tax-exemption__item-text {
    font-size: 14px;
    line-height: 133%;
  }

  .tax-exemption__text {
    font-size: 14px;
    line-height: 133%;
  }

  .fines-violations {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .fines-violations .container {
    gap: 32px;
  }

  .fines-violations__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .fines-violations__list-container {
    gap: 24px;
  }

  .fines-violations__item {
    gap: 6px;
  }

  .fines-violations__item-text {
    width: calc(50% - 3px);
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .fines-violations__item-title {
    padding: 19px 8px;
    font-size: 14px;
  }

  .global-cards.global-cards--white {
    background: #F0F0F0;
  }

  .global-cards--white .global-cards__item {
    padding: 16px;
  }

  .global-cards--white .global-cards__item .global-cards__icon {
    width: 40px;
    height: 40px;
  }

  .global-cards--white .global-cards__item-title {
    font-size: 18px;
  }

  .global-cards--white .global-cards__content {
    gap: 16px;
  }

  .jurisdictions {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .jurisdictions .container {
    gap: 32px;
  }

  .jurisdictions__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .jurisdictions__body-item {
    width: calc(50% - 8px);
    flex: none;
    min-height: 67px;
    gap: 8px;
    border-radius: 16px;
    padding: 8px;
    flex: 1;
    min-width: 140px;
  }

  .jurisdictions__body-item span {
    font-size: 13px;
  }

  .jurisdictions__body-item--other span {
    white-space: wrap;
  }

  .section-table__card .section-table__card-description {
    min-width: 100%;
  }

  .section-table__card .section-table__card-btn {
    padding: 18px 16px;
    font-size: var(--font-size-14);
  }

  .single-case__hero-header--prices {
    gap: 32px;
  }

  .prcie__boxs-section {
    gap: 24px;
  }

  .prcie__boxs {
    padding: 16px;
    border-radius: 16px;
  }

  .prcie__boxs-header {
    padding: 16px 0;
    gap: 8px;
    border-radius: 16px;
  }

  .prcie__boxs-title {
    font-size: 18px;
    line-height: 22px;
  }

  .prcie__boxs-description {
    font-size: var(--font-size-20);
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  .prcie__boxs-subtitle {
    font-size: var(--font-size-16);
  }

  .prcie__boxs-item-text {
    font-size: var(--font-size-14);
  }

  .calculator__text ul li {
    font-size: var(--font-size-16);
  }

  .calculator__text2 {
    font-size: var(--font-size-16);
  }

  .work-practice__content-header {
    gap: 24px;
  }

  .work-practice__content-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .work-practice__title-description {
    font-size: 14px;
    line-height: 1.2;
  }

  .work-practice__content .container {
    gap: 40px;
  }

  .purchasing {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .purchasing__title {
    font-size: 22px;
    letter-spacing: 0.22px;
    margin-bottom: 32px;
  }

  .purchasing__content {
    gap: 16px;
  }

  .purchasing__content-title {
    font-size: 18px;
    line-height: 20px;
  }

  .purchasing__list {
    flex-direction: column;
  }

  .purchasing__item {
    width: 100%;
    padding: 16px 12px;
    border-radius: 16px;
  }

  .purchasing__item-image {
    width: 40px;
    height: 40px;
  }

  .purchasing__item-title {
    font-size: 15px;
    line-height: 1;
  }

  .process {
    padding: 40px 0;
  }

  .process__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .process .container {
    gap: 24px;
  }

  .process__step {
    flex-direction: row;
    align-items: center;
  }

  .process__step-text {
    text-align: left;
    font-size: 14px;
    line-height: 133%;
  }

  .closing {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .closing .container {
    gap: 32px;
  }

  .closing__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .closing__content h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .closing__content-description {
    margin-bottom: 16px;
  }

  .closing__content-description:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .global-cards__info-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .global-cards__info-item {
    gap: 16px;
  }

  .global-cards__info {
    gap: 24px;
  }

  .industry-specific .global-cards__item {
    width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  .industry-specific .global-cards__icon {
    width: 40px;
    height: 40px;
  }

  .industry-specific .global-cards__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .global-four-cards {
    padding: 40px 0;
  }

  .global-four-cards .container {
    gap: 32px;
  }

  .global-four-cards__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .global-four-cards__list {
    flex-direction: column;
  }

  .global-four-cards__item {
    width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  .global-four-cards__item-icon {
    width: 40px;
    height: 40px;
  }

  .global-four-cards__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .global-four-cards__item-text {
    font-size: var(--font-size-14);
    line-height: 1.4;
  }

  .global-four-cards-header {
    gap: 24px;
  }

  .common-situations {
    padding: 40px 0;
    background: linear-gradient(359deg, #7D5282 29.36%, #441551 65.42%);
  }

  .common-situations .container {
    gap: 32px;
  }

  .common-situations__body {
    gap: 24px;
  }

  .common-situations__item {
    flex-direction: column;
    gap: 24px;
  }

  .common-situations__item-left {
    max-width: 100%;
  }

  .common-situations__item-right {
    width: 100%;
  }

  .common-situations__item-right::before {
    top: -18px;
    transform: none;
    left: 20px;
  }

  .single-case__hero-header--prices--tov .prcie__boxs-section .prcie__boxs {
    padding: 16px;
  }

  .industry-specific__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .faq__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .common-situations__title {
    font-size: 22px;
    letter-spacing: 0.22px;
  }
}
