/* header */
.header {
  position: sticky;
  top: 0;
  background: var(--gray-3);
  z-index: 500;
  padding: 1rem 0;
}

.admin-bar .header {
  top: 32px;
}

/* @media (max-width: 888px) {
  body {
    font-size: 14px;
  }
} */

.header .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: space-between;
  align-items: center;
  max-width: calc(1200px + calc(18px * 2));
}

.header__logo {
  margin: 0;
}

.header__logo-link {
  display: flex;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 0;
  height: 36px;
  padding: 0.5rem;
  margin: 0 -0.5rem;
  color: var(--white);
  text-align: center;
}

.header__logo-link svg {
  width: 120px;
  height: auto;
}


.nav {
  position: relative;
  font: var(--text-b3);
  font-weight: 600;
  margin: 0 1.5em 0 auto;
}

.nav .nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  /* background: var(--gray-3); */
}

.nav .menu-item {
  position: relative;
}

.nav .menu-item-has-children>.menu-link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E");
  display: inline-block;
  vertical-align: middle;
  margin: -0.15em 0 -0.4em 0;
}

.nav .menu-link {
  display: block;
  padding: 0.5em 1.43em 0.6em;
  /* padding: 1.545em 4em; */
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color calc(var(--as) / 2) var(--atf);
}

.nav .menu-link:hover {
  color: var(--color-2);
  text-decoration: underline;
}

.nav span.menu-link,
.nav .menu-link:not([href]) {
  cursor: default;
  color: var(--white);
  text-decoration: none;
}

.nav .current-menu-item>a.menu-link {
  color: var(--color-2);
}

.nav .current-menu-item>a.menu-link.sub-menu-link {
  color: var(--white);
  text-decoration: none;
  background: var(--black);
}

.nav .sub-menu {
  background: var(--gray-3);
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-2em);
  transition: all var(--as) var(--atf);
}

.nav .sub-menu .menu-item {
  white-space: nowrap;
}

.nav .sub-menu span.menu-link {
  background: transparent !important;
}

.nav .sub-menu .menu-link {
  border-radius: 0;
}

.nav .sub-menu .menu-link:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.nav .menu-item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav .menu-item_data-security {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}



.header__button-burger {
  background: transparent;
  color: var(--white);
  border: 0 none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  display: none;
}

.header__button-burger svg {
  display: block;
}

.header-mobile {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  color: var(--black);
  z-index: 1000;
}

.header-mobile .header__button-burger {
  position: relative;
  z-index: 500;
}

.header-mobile .header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-mobile .header__button {
  width: 100%;
  display: block;
}

.header .header-mobile .button-block {
  display: block;
}

.header-mobile .nav {
  width: 100%;
  margin: 0;
  display: block;
}

.header-mobile .nav__list {
  display: block;
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-mobile .menu-item {
  margin: 0.5rem 0;
}

.header-mobile .menu-link {
  color: var(--black);
  background: transparent;
  text-align: left;
  padding: 14px 0;
  font: var(--text-b3);
  font-weight: 600;
  position: relative;
}

.header-mobile .sub-menu {
  position: relative;
  color: var(--black);
  background: transparent;
  transform: none;
  transition: none;
  visibility: visible;
  opacity: 1;
  padding: 0 1rem;
  border: 1px solid var(--gray-1);
  box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08),
    0px 4px 6px -2px rgba(10, 13, 18, 0.03);
  border-radius: var(--radius);
}

.header-mobile .sub-menu .menu-item {
  margin: 0;
}

.header-mobile .sub-menu .menu-link {
  font: var(--text-b3);
  background: transparent;
}


.header-mobile .menu-link:hover,
.header-mobile .sub-menu .menu-link:hover {
  color: var(--color-2);
  background: transparent;
  text-decoration: none;
}

.header-mobile .current-menu-item>a.menu-link.sub-menu-link {
  background: transparent;
  color: var(--color-2);
}


.header-mobile .menu-item-has-children>.menu-link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E");
  ;
  display: inline-block;
  vertical-align: middle;
  margin: -0.15em 0 -0.4em 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


.header-mobile__contacts {
  margin: 2rem 0;
  border-top: 2px solid var(--gray-1);
  padding: 1.5rem 0 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font: var(--text-b3);
  gap: 0.5rem;
}

.header-mobile__contacts__item {
  margin: 0.75rem 0 0;
}

.header-mobile__contacts__item:first-child {
  margin-top: 0;
}

.header-mobile__contacts__link {
  display: flex;
  text-decoration: none;
  gap: 0.5rem;
  align-items: center;
}

.header-mobile__contacts__icon img {
  vertical-align: middle;
}


.header-mobile__header {
  background: var(--gray-3);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 1rem 0;
}

.header-mobile__scroll {
  padding: 12px 24px 24px;
  margin: 68px 0 0;
  max-height: calc(100vh - 68px);
  height: calc(100vh - 68px);
  overflow: auto;
}



/* footer */
.footer {
  margin: 0;
  background: var(--white);
}

.footer__about {
  padding: 6.125em 0 4.5em;
  border-bottom: 1px solid var(--gray-1);
}

.footer-ceo {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}


.footer-ceo-info {
  display: flex;
  gap: 2.5rem;
}

.footer-ceo-info__avatar {
  margin: 0;
}

.footer-ceo-info__info {
  max-width: 675px;
}

.footer-ceo-info__text {
  font: var(--text-b1);
  position: relative;
}

.footer-ceo-info__text p {
  margin: 0.5em 0;
}

.footer-ceo-info__text::after {
  content: url("./../images/icons/quote.svg");
  position: absolute;
  left: -0.9em;
  top: -0.7em;
  z-index: 1;
  opacity: 0.1;
}

.footer-ceo-info__name {
  margin: 1.5em 0 0;
}


.footer-ceo-contacts {
  min-width: 155px;
  margin: 0.65em 0 0;
}

.footer-ceo-contacts_title {
  font: var(--text-b2);
  font-weight: 600;
}

.footer-ceo-contacts__list {
  font: var(--text-b3);
  margin: 1em 0 0;
}

.footer-ceo-contacts__item {
  margin: 0.85em 0 0;
}

.footer-ceo-contacts__item:first-child {
  margin-top: 0;
}

.footer-ceo-contacts__link {
  display: inline-flex;
  flex-direction: row;
  gap: 0.6em;
  text-decoration: none;
}

.footer-ceo-contacts__link:hover {
  text-decoration: underline;
}

.footer-ceo-contacts__icon img {
  vertical-align: middle;
}

/* .footer-ceo-info__info {
  max-width: 410px;
} */


.footer-nav {
  padding: 3.25em 0 2em;
}

.footer-nav .button-circle_top {
  position: absolute;
  right: 0;
  transform: translateX(calc(32px * -1));
  bottom: 0;
}

.footer-nav__row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.footer-nav__coll {
  max-width: calc(25% - 1rem);
}


.footer-nav__logo {
  font-size: 0;
  line-height: 0;
  color: var(--black);
}

.footer-nav__logo svg {
  width: 160px;
  height: auto;
}

.footer-nav__addr {
  font: var(--text-b3);
  margin: 1.1em 0 0;
  color: var(--text);
}

.footer-nav__addr b {
  color: var(--black);
}

.footer-nav__soclinks {
  margin: 1.25em 0 0;
  display: flex;
  gap: 12px;
}



.footer-nav-list {
  margin: 0;
  padding: 0.25em 0 0;
  list-style: none;
}

.footer-nav-list .menu-item {
  margin: 0.55em 0 0;
  font: var(--text-b3);
  color: var(--text);
}

.footer-nav-list .menu-item.menu-item_header {
  font: var(--text-b3);
  font-weight: 600;
  color: var(--black);
  margin: 0 0 1.1em;
}

.footer-nav-list .menu-item.menu-item_text {
  color: var(--text);
  opacity: 0.4;
}

.footer-nav-list .menu-item:first-child {
  margin-top: 0;
}

.footer-nav-list .menu-link {
  text-decoration: none;
}

.footer-nav-list .menu-link:hover {
  text-decoration: underline;
}

.footer-nav-list .menu-link:not([href]) {
  text-decoration: none;
  cursor: default;
}



.footer-copy-info {
  margin: 5.35em 0 2em;
  padding: 0;
  display: flex;
  gap: 1.25em;
  font: var(--text-b1);
  position: relative;
}

.footer-copy-info__item {
  opacity: 0.4;
}

.footer-copy-info a {
  text-decoration: none;
}

.footer-copy-info .button-circle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


/* hero-section_main */
.hero-section_main {
  overflow: hidden;
  padding: 0 0 0.25em;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5em 0 0.4em;
}

.hero__content {
  flex: 0 0 44.5%;
  padding: 0 0 1.5em;
}

.hero__content .button-block {
  margin: 1em 0 0;
}

/* .hero__content .button {
  width: 100%;
  max-width: 465px;
} */

.hero__content .button::after {
  display: none;
}

.hero__images {
  position: relative;
  /* padding: 38% 0 0; */
  margin: 0em 0 0 3.75%;
  /* width: 36%; */
  width: 52%;
  /* width: 52%; */
}

.hero__image {
  position: absolute;
  left: 0;
  top: 0;
  user-select: none;
  will-change: transform;
  transform: translateY(0);
  /* width: 110%; */
  /* animation: sway calc(var(--as) * 8) infinite var(--atf) alternate; */
}

.hero__image:nth-child(1) {
  top: 0;
  left: 0;
  position: relative;
}

.hero__image:nth-child(2) {
  top: 1.85em;
  left: 7.5em;
  animation-delay: var(--as);
}

.hero__image:nth-child(3) {
  top: calc(1.85em * 2);
  left: calc(7.5em * 2);
  animation-delay: calc(var(--as) * 2);
}

@keyframes sway {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(1em);
  }
}



.hero-slider {
  display: none;
  margin: 5em -4em 0;
}

.about-hero-section .hero-slider {
  margin-bottom: 3em;
}

.about-hero-section .hero-slider .about-hero-slider__tag {
  margin: 0 auto 1em;
}

.hero-slider__item {
  padding: 0 0.75em;
  text-align: center;
}

.hero-slider__image {
  width: 480px;
  height: auto;
}


.hero-section_mdm .hero,
.hero-section_srm .hero {
  align-items: center;
}


/*blog-hero-section */
.blog-hero-section {
  /* background: #2B2B2B url("./../images/hero-blog.png") no-repeat 50% 50%; */
  background: #2B2B2B;
  background-size: auto 100%;
  padding: 8em 0 5em;
  overflow: hidden;
}

.blog-hero {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.blog-hero__content {
  max-width: 530px;
  flex: 0 0 53%;
  margin: -3.5em 0 0;
}

.title.blog-hero__title {
  margin: -0.25em 0 0.35em;
}

.title.blog-hero__title span {
  color: var(--color-2);
}

.blog-hero__text {
  font: var(--text-b2);
}

.hero-tags {
  margin: 0 0 1.75em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
}

.hero-tags__item {
  font: var(--text-b3);
  background: var(--color-5);
  display: inline-block;
  padding: 0.15em 1.35em 0.25em;
  color: var(--color-2);
  border-radius: 2em;
}


.blog-hero__images {
  position: relative;
  margin: 0 -1.25em 0 0;
}

.blog-hero__images img {
  max-width: 100%;
}

.blog-hero__image:nth-child(2) {
  position: absolute;
  left: -16%;
  top: 14%;
  width: auto;
  height: auto;
  max-width: 27%;
  user-select: none;
  will-change: transform;
  transform: translateY(0);
  animation: heroImage calc(var(--as) * 20) infinite var(--atf) alternate;
}

.blog-hero__image:nth-child(3) {
  position: absolute;
  left: 30%;
  top: 61%;
  width: auto;
  height: auto;
  max-width: 58%;
  user-select: none;
  will-change: transform;
  transform: translateY(0);
  animation: heroImage calc(var(--as) * 30) infinite var(--atf) alternate;
}

@keyframes heroImage {
  0% {
    transform: translateX(0) translateX(0) scale(1);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}


.hero-form {
  max-width: 552px;
}

.hero-form a {
  color: inherit;
}

.hero-form__title {
  margin: 0 0 1.25em;
}

.hero-form .form {
  flex-wrap: nowrap;
  flex-direction: column;
}


/* blog-hero-section */
.blog-section {
  padding: 5.2em 0 4em;
  background: var(--gray-1);
}

.tabs__links-container,
.blog-categoties-container {
  text-align: center;
}

.tabs__links,
.blog-categoties {
  padding: 0.25rem;
  display: inline-flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0.25rem;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  /* background: var(--white); */
}

.tabs__link,
.blog-categoties__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-1);
  color: var(--gray-2);
  font: var(--text-b3);
  cursor: pointer;
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  transition: all var(--as) var(--atf);
  user-select: none;
  min-width: 108px;
  text-decoration: none;
}

.tabs__link:hover,
.blog-categoties__link:hover {
  color: var(--gray-3);
}

.tabs__link.tabs__link_active,
.blog-categoties__link.blog-categoties__link_active {
  background: var(--color-2);
  color: var(--white);
  cursor: default;
}

.tabs__link-icon,
.blog-categoties__icon {
  line-height: 0;
}

.tabs__link-icon svg,
.blog-categoties__icon svg {
  width: 1.5rem;
  height: auto;
}


/* tabs */
.tabs {
  margin: 4em 0 0;
  /* overflow: hidden; */
}

.tabs__list {
  margin: 2em 0 0;
}

.tabs__item {
  opacity: 0.5;
  transform: translateY(-2em);
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all calc(var(--as) * 2) var(--atf);
}

.tabs__item.tabs__item_active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  height: auto;
}




.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin: 3em 0 0;
  border-radius: 10px;
  overflow: hidden;
}

/* .blog-cards__wrapper {
  gap: 2em;
} */

.blog-cards .blog__item {
  max-width: calc(50% - 1em);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}

.blog-card__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--gray-2);
  position: relative;
  padding: 56% 0 0;
  border-radius: 10px;
  margin: 0;
  position: relative;
  overflow: hidden;
}



.blog-card__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  max-width: 645px;
}

.blog-card__content {
  padding: 2em;
}

.blog-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: var(--text-b2);
}

.blog-card__info-left {
  display: flex;
  align-items: center;
}

.blog-card__info-right {
  text-align: right;
  padding: 0.25em 0;
  font: var(--text-b4);
  font-weight: 600;
  /* color: var(--gray-2); */
}

.blog-card__info-right .blog-card__date {
  display: none;
}

.blog-card_case .blog-card__info-right .blog-card__date {
  display: block;
  margin: 0;
}

.blog-card_case .blog-card__info-left .blog-card__date {
  display: none;
}

.blog-card__info-left .blog-card__logo {
  position: relative;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  width: 55%;
  max-width: 150px;
  margin: 0 0 0 1.5em;
}


.blog-card__category {
  display: flex;
  padding: 0.65em 1em;
  background: var(--gray-1);
  color: var(--gray-2);
  margin: 0 0.5em 0 0;
  border-radius: 6px;
}

.blog-card__date {
  margin: 0 0 0 1em;
  font: var(--text-b4);
}

.blog-card__category-icon {
  line-height: 0;
  margin: 0 0.75em 0 0;
}

.blog-card__category-icon svg {
  width: 24px;
  height: 24px;
}

.blog-card__title {
  margin: 1em 0 0;
  font: var(--text-b0);
}

.blog-card__text {
  font: var(--text-b3);
  margin: 0.75em 0px 0px;
}

.blog-card__button {
  margin: 2.75em 0 0;
}


.page-related-blog-section {
  margin: 1em 0 4em;
}

.page-related-blog-title {
  margin: 1.25em 0 1rem;
  padding: 0 135px 0 0;
}



.blog-cards__navigation {
  position: absolute;
  top: 0;
  right: 32px;
  z-index: 10;
  display: block;
}

.blog-cards__navigation_disable {
  display: none;
}

.blog-cards__pagination {
  display: inline-block;
  vertical-align: top;
  width: 3.5rem;
  font: var(--text-b1);
  color: var(--color-2);
  line-height: 2rem;
  text-align: center;
}

.blog-cards__prev,
.blog-cards__next {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: all var(--as) var(--atf);
}

.blog-cards__prev:hover,
.blog-cards__next:hover {
  background: var(--color-1);
}

.blog-cards__prev svg,
.blog-cards__next svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}


.blog-cards__prev.swiper-button-disabled,
.blog-cards__next.swiper-button-disabled {
  opacity: 1;
  cursor: not-allowed;
  color: var(--gray-2);
  background: var(--white);
}



.video-page {
  display: flex;
  justify-content: space-between;
  margin: 2.25em 0 0;
  gap: 2em;
}

.video-page__content {
  flex: 0 0 64%;
}

.video-page__text {
  margin: 1.35em 0;
}

.video-page__video {
  margin: 2.5em 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-page__sidebar {
  flex: 0 0 25%;
  padding: 0.5em 0 0;
}

.video-page__sidebar .tags {
  margin: 0 0 2em;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-page__video-links {
  margin: 2.5rem 0 4rem;
  display: flex;
  gap: 1.5rem;
}



.speakers {
  margin: 2.125em 0;
}

.speakers__title {
  font: var(--text-b3);
  font-weight: 600;
  margin: 0 0 1em;
}

.speakers__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 1.125em 0;
}

.speakers__item {
  display: flex;
  gap: 1em;
  padding: 0 0 0.025em;
}

.speakers__avatar {
  line-height: 0;
  width: 65px;
}

.speakers__avatar-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}

.speakers__header {
  font: var(--text-b1);
  font-weight: 600;
  margin: 0 0 0.25em;
}

.speakers__text {
  font: var(--text-b4);
  color: var(--gray-3);
}


/* .blog-page__video-links .button {} */

/* .blog-card__button .button {
  width: 100%;
  max-width: 250px;
} */


/* .blog-card_orange {
  max-width: 100%;
  width: 100%;
}

.blog-card_orange .blog-card__image {
  padding: 32.35% 0 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
} */

/* .blog-card_orange .blog-card__info {
  font: var(--text-b0);
}
*/


/*

.blog-card_orange .blog-card__title {
  margin: 1.15em 0 0.35em;
}

.blog-card_orange .blog-card__text {
  font: var(--text-b0);
}

.blog-card_orange .blog-card__button {
  margin: 4em 0 0;
}
  */



/* hero-section_pilot */
/* .hero-section_pilot {
  background: var(--white);
} */

.hero__content-title {
  margin: 0;
}

.hero-section_pilot .hero__text {
  font: var(--text-b2);
  margin: 0.75em 0 0;
}

.hero__info {
  margin: 1em 0;
}

.hero__info-title {
  font: var(--text-b1);
  font-weight: 600;
}

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

.hero__info ul li {
  margin: 0.45em 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

.hero__info ul li::after {
  content: url("./../images/icons/check-orange.svg");
  position: absolute;
  left: 0;
  top: 0.15em;
}


.hero-section_pilot .pilot-rocket {
  right: 10%;
  bottom: -2.5em;
  top: auto;
}

.pilot-hero__images .pilot-rocket__image {
  max-width: 760px;
}


/* pilot-clients-section */
.pilot-clients-section {
  padding: 1.5em 0;
  background: var(--white);
  position: relative;
}

.pilot-clients-section .clients {
  margin: 0;
}

.pilot-clients {
  overflow: hidden;
}


/* step-pilot-section */
.step-pilot-section {
  padding: 7.5em 0 8em;
  /* background: var(--white); */
}

.step-pilot__list {
  margin: 4em auto 0;
  /* max-width: 1136px; */
}

.step-pilot__item {
  margin: 0 0 0.75em;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.step-pilot__item:last-child {
  padding-bottom: 0;
}

.step-pilot__item::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 1em);
  position: absolute;
  left: 4.5rem;
  top: 0;
  background: var(--color-2);
}

.step-pilot__content {
  flex: 0 0 76%;
  padding: 0 0 0 6em;
}

.step-pilot-bonus+.step-pilot__content {
  flex: 0 0 67%;
}

.step-pilot__num {
  position: absolute;
  left: 0;
  top: 3px;
  font: var(--text-h4);
  font-weight: bold;
  color: var(--color-2);
}

.step-pilot__icon {
  background: var(--color-5);
  color: var(--color-2);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-pilot__icon svg {
  width: 24px;
  height: 24px;
}

.step-pilot__title {
  margin: 0.85rem 0 0;
}

.step-pilot__text {
  font: var(--text-b3);
  line-height: 1.35;
  margin: 1.25em 0 0;
}

.step-pilot__text p {
  margin: 1.35em 0;
}

.step-pilot__text ul {
  margin: 1.35em 0;
  padding: 0 0 0 1.5em;
}

.step-pilot__text li {
  margin: 0.5em 0;
}

.step-pilot__text li:first-child {
  margin-top: 0;
}

.step-pilot__text span {
  color: var(--color-2);
}

.step-pilot-bonus {
  margin: 3.25em 0 0 4.125%;
  padding: 0;
  max-width: 27%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.step-pilot-bonus__title {
  font: var(--text-s2);
  color: var(--color-2);
}

.step-pilot-bonus__title svg {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  margin: -0.1em 0.05em 0 0;
}

.step-pilot-bonus__text {
  margin: 1.25em 0 0;
  font: var(--text-b3);
  color: var(--color-2);
}

.step-pilot__button-block {
  text-align: center;
  margin: 3em 0 0;
}



/* evaluate-results-section */
.evaluate-results-section {
  padding: 5em 0 4em;
  background: var(--gray-3);
  color: var(--white);
}

.evaluate-results {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.evaluate-results__title {
  margin: 0 0 0.5em;
  flex: 0 0 50%;
}

.evaluate-results__content {
  font: var(--text-b1);
  flex: 0 0 50%;
}

.evaluate-results__text {
  margin: 0.15em 0 0 1em;
}

.evaluate-results__text p {
  margin: 1em 0;
}

.evaluate-results__text p:first-child {
  margin-top: 0;
}

.evaluate-results__text span {
  color: var(--color-2);
}


/* resources-pilot-section */
.resources-pilot-section {
  padding: 7.75em 0;
}

.resources-pilot-list {
  margin: 4em 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2em;
}

.resources-pilot-list__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2em;
}


.resources-pilot-content,
.resources-pilot-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2em;
}

.resources-pilot-info {
  min-width: 32.85%;
}


.resources-pilot-content__text,
.resources-pilot-info__text {
  font: var(--text-b2);
  line-height: 1.35;
}

.resources-pilot-content__text p,
.resources-pilot-info__text p {
  margin: 0.5em 0;
}

.resources-pilot-content__title {
  margin: -0.5em 0 1em !important;
}

.resources-pilot-info__title {
  color: var(--color-2);
  margin: 0.5em 0;
}

.resources-pilot-info__icons {
  color: var(--color-2);
  line-height: 0;
}

.resources-pilot-info__icons svg {
  width: auto;
  height: 24px;
}


/* tech-package-section */
.tech-package-section {
  padding: 5em 0;
  background: var(--white);
}

.tech-package {
  display: flex;
  gap: 5em;
}

.tech-package__image,
.tech-package__content {
  width: calc(50% - 2.5em);
}

.tech-package__image {
  background: url("./../images/tech-package-back.png") no-repeat 50% 50%;
  background-size: cover;
  border-radius: var(--radius);
}

.tech-package__content {
  background: var(--white);
}

.tech-package__title {
  margin: 0 0 1em;
}

.tech-package__text {
  font: var(--text-b2);
}

.tech-package__text p {
  margin: 0.5em 0;
}

.tech-package__text ol {
  margin: 0.5em 0 1.75em;
  padding: 0 0 0 1.35em;
}

.tech-package__text li {
  margin: 0.52em 0 0;
}

.tech-package__text li:first-child {
  margin-top: 0;
}

.tech-package__button-block {
  margin: 4.25em 0 0;
}


/* documents-pilot-section */
.documents-pilot-section {
  padding: 5.75em 0 6em;
}

.document-pilot {
  display: flex;
  justify-content: space-between;
  margin: 2.75em 0 0;
}

.documents-pilot-subtitle {
  text-align: center;
}

.documents-pilot-content {
  width: 59%;
}

.documents-pilot__text {
  margin: 1.75em 0 0;
  font: var(--text-b2);
  line-height: 1.35;
}

.documents-pilot__text p {
  margin: 0.5em 0;
}

.documents-pilot__text ol {
  margin: 0.5em 0 1.75em;
  padding: 0 0 0 1.35em;
}


/* .documents-pilot__text p span,
.documents-pilot__text ol span,
.documents-pilot__text li::marker {
  color: var(--color-2);
} */

.documents-pilot__text p span,
.documents-pilot__text ol span {
  color: var(--color-2);
}

.documents-pilot__text li {
  margin: 0.52em 0 0;
}

.documents-pilot__text li:first-child {
  margin-top: 0;
}

.documents-pilot__important {
  background: url("./../images/icons/important-icon.svg") no-repeat 0 50%;
  margin: 1.5em 0 0;
  font: var(--text-b2);
  padding: 0 10px 0 55px;
}

.documents-pilot-info {
  width: 29%;
  margin: 1.5em 0 0;
  text-align: center;
}

.documents-pilot-info__link {
  display: block;
  position: relative;
  text-align: center;
  color: var(--color-2);
  text-decoration: none;
  border: 0 none;
  background: none;
  cursor: pointer;
  margin: 0 auto 1rem;
}

.documents-pilot-info__image {
  max-width: 100%;
}

.documents-pilot-info__link::after {
  content: url("./../images/icons/plus.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--as) var(--atf);
}

.documents-pilot-info__link:hover::after {
  opacity: 0.75;
}


.documents-pilot-info__info {
  margin: 0.4em 0 0;
  font: var(--text-b1);
  color: var(--color-2);
}


/* price-pilot-section */
.price-pilot-section {
  padding: 5.75em 0;
  background: var(--black);

}

.price-pilot__title {
  margin: 0 0 0.25em;
  color: var(--white);
}

.price-pilot__subtitle {
  color: var(--white);
  text-align: center;
  margin: 0;
  font: var(--text-b0);
}

.price-pilot__list {
  margin: 3.125em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}

.price-pilot__item {
  flex: 0 0 calc(50% - 1em);
  padding: 2em;
  background: var(--white);
  border-radius: 10px;
}

.price-pilot__icon {
  display: flex;
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--color-5);
  color: var(--color-2);
}

/* .price-pilot__icon img,
.price-pilot__icon svg {
  width: 24px;
  height: 24px;
} */

.price-pilot__name {
  margin: 1.5em 0 0.55em;
  color: var(--color-2);
}

.price-pilot__text {
  font: var(--text-b1);
  line-height: 1.35;
}

.price-pilot__button-block {
  margin: 3em 0 0;
  text-align: center;
}


/* pilot-integration-section */
.pilot-integration-section {
  padding: 6em 0 10em;
}

.pilot-integration {
  display: flex;
  justify-content: space-between;
  gap: 1.5em;
  margin: 2.75em 0 0;
}

.pilot-integration__content {
  width: 49%;
  font: var(--text-b2);
}

.pilot-integration__content p {
  margin: 1.75em 0 0;
}

.pilot-integration__content p:first-child {
  margin-top: 0;
}

.pilot-integration__content ol {
  margin: 1.75em 0;
  padding: 0 0 0 1.35em;
}

.pilot-integration__content p span,
.pilot-integration__content ol span,
.pilot-integration__content li::marker {
  color: var(--color-2);
}

.pilot-integration__content li {
  margin: 1.75em 0 0;
}

.pilot-integration__content li:first-child {
  margin-top: 0;
}

.pilot-integration__info {
  width: 42.3%;
}

.pilot-integration-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-items: stretch;
  font: var(--text-b2);
  gap: 4em 3em;
}


.pilot-integration-info__white {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  padding: 2.25em 2em 2em;
  background: var(--white);
}

.pilot-integration-info__row {
  position: relative;
  text-align: center;
  margin: 3.5em 0 0;
}

.pilot-integration-info__row::before {
  content: url("./../images/icons/arrow-bottom-gray.svg");
  position: absolute;
  top: -2.75em;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
}

.pilot-integration-info__row:first-child {
  margin-top: 0;
}

.pilot-integration-info__white .pilot-integration-info__row:first-child::before {
  display: none;
}

.pilot-integration-info__orange {
  display: flex;
  text-align: center;
  flex-direction: row;
  gap: 4em 3em;
}

.pilot-integration-info__orange .pilot-integration-info__row {
  position: relative;
  border-radius: 10px;
  max-width: calc(60% - 1.5em);
  padding: 1.5em;
  text-align: center;
  margin: 0;
  color: var(--white);
  background: var(--color-2);
}

.pilot-integration-info__orange .pilot-integration-info__row::before {
  content: url("./../images/icons/arrow-bottom-orange.svg");
}


/* hero-section_plm */
.hero-section_plm {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

/* .hero-section_plm .hero {
  padding: 4em 0 0;
  display: flex;
  justify-content: space-between;
  margin: 0 0 -8.5em;
} */

/* .hero-section_plm .hero__content {
  margin: -4.75em 0 0;
  padding: 0 4% 0 0;
} */

.hero-subheader {
  margin: 0 0 1em;
  display: flex;
  align-items: center;
}

.hero-subheader__logo svg {
  width: 120px;
  height: auto;
}

.hero-subheader__tag {
  font: var(--text-b3);
  font-weight: 600;
  background: var(--color-5);
  display: inline-block;
  padding: 0.15em 1.35em 0.25em;
  margin: -0.25em 0 0 0.65em;
  border-radius: 2em;
  color: var(--color-2);
}

.hero-section__title {
  margin: 0;
}

.hero__screens {
  width: 42.25%;
  line-height: 0;
}

.hero__screen {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid var(--black);
  margin: 0;
}

.plm-clients-section {
  padding: 1.25em 0;
  background: var(--white);
}

.plm-clients {
  overflow: hidden;
}

.hero-section_srm {
  background: var(--white);
}

.hero-section_srm .hero__content {
  width: 65%;
}

.hero__text {
  font: var(--text-b2);
  margin: 1em 0 0;
}


/* plm-services-section */
.plm-services-section {
  padding: 8em 0;
}

.plm-services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}

.plm-services__item {
  width: calc(50% - 1em);
  border-radius: var(--radius);
  padding: 2em 2em 1.5em;
  background: var(--white);
}

.plm-services__num {
  font: var(--text-h4);
  color: var(--color-2);
  margin: 0 0 0.65em;
}

.plm-services__title {
  margin: 0 0 1.25em;
}

.plm-services__text {
  font: var(--text-b2);
}

.plm-services__text p {
  margin: 0.85em 0 0;
}

.plm-services__text p span {
  font-weight: 600;
  color: var(--color-2);
}


.info-services-section {
  text-align: center;
  padding: 8em 0;
}

.info-services-section_404 {
  padding: 2em 0;
}

.info-services__header {
  font: var(--text-h3);
}

.info-services__text {
  margin: 1.5em auto 0;
  font: var(--text-b2);
  max-width: 830px;
}

.info-services__text a {
  color: var(--color-2);
}


.info-services__present {
  margin: 4em 0 0;
}

.info-services__present-info {
  margin: 1.75em 0 0;
  font: var(--text-b4);
  color: var(--gray-2);
}

.info-services__present-info span {
  margin: 0 0.5em;
  display: inline-block;
  color: var(--gray-2);
  text-transform: uppercase;
}

.info-services__present-image {
  margin: 4em 0 1.85em;
  text-align: center;
  line-height: 0;
  position: relative;
}

.info-services__present-image.info-services__present-image__line::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--gray-2);
  position: absolute;
  top: 100%;
  left: 16.75%;
  right: 16.75%;
}

.info-services__present-image img {
  max-width: 90%;
}


/* integration-section */
.integration-section {
  padding: 5.5em 0 7.5em;
  background: var(--gray-1);
}

.integration {
  text-align: center;
}

.integration-info {
  margin: 4em 0 2.75em;
}

.integration__title {
  margin: 0 0 0.5em;
}

.integration__text {
  font: var(--text-b1);
}

.integration__tags {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  flex-wrap: wrap;
}

.integration__tag {
  font: var(--text-b3);
  background: var(--color-5);
  display: inline-block;
  padding: 0.3em 1.95em 0.3em;
  border-radius: 2em;
  color: var(--color-2);
  min-width: 86px;
}


.integration__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  margin: 2em 0 0;
}

.integration__item {
  padding: 2em 2em 1.5em;
  border-radius: var(--radius);
  background: var(--white);
  width: calc(50% - 1em);
}

.integration__item-name {
  color: var(--color-2);
}

.integration__item-text {
  font: var(--text-b3);
}

.integration__item-text p {
  margin: 1em 0;
}

.integration__item-text ul {
  margin: 1em 0;
  line-height: 1.4;
  padding: 0 0 0 1.5em;
  list-style: none;
}

.integration__item-text li {
  margin: 0.6em 0;
  position: relative;
}

.integration__item-text li:first-child {
  margin-top: 0;
}

.integration__item-text li::before {
  content: "\2022";
  position: absolute;
  display: block;
  left: -1.05em;
  top: 0;
}


/* modules-info-section */
.modules-info-section {
  padding: 0;
}

.modules-info-section .container_max {
  padding: 8em 0 8em;
  background: var(--white);
  border-radius: var(--big-radius);
}

.modules-info__text {
  margin: 0;
  text-align: center;
}

.modules-info__title {
  margin: 0;
}

.modules-info__subtitle {
  margin: 1.75em auto 0;
  max-width: 828px;
  font: var(--text-b1);
}

.modules__list {
  margin: 4em 0 0;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5em; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(6, 1fr); */
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

/* .modules__coll {
  width: calc(33% - 0.75em);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5em;
} */

.modules__item {
  border-radius: var(--radius);
  padding: 2em;
  /* padding: 4em 3em 2.75em; */
  background: var(--gray-1);
  flex: 0 100%;
}

/* .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(9, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
} */

/*
https: //cssgrid-generator.netlify.app/
*/

.modules__item_1 {
  grid-area: 1 / 1 / 3 / 2;
}

.modules__item_2 {
  grid-area: 3 / 1 / 4 / 2;
}

.modules__item_3 {
  grid-area: 4 / 1 / 7 / 2;
}

.modules__item_4 {
  grid-area: 1 / 2 / 3 / 3;
}

.modules__item_5 {
  grid-area: 3 / 2 / 5 / 3;
}

.modules__item_6 {
  grid-area: 5 / 2 / 7 / 3;
}

.modules__item_7 {
  grid-area: 1 / 3 / 3 / 4;
}

.modules__item_8 {
  grid-area: 3 / 3 / 4 / 4;
}

.modules__item_9 {
  grid-area: 4 / 3 / 7 / 4;
}

/* .modules__item_1 {
  grid-area: 1 / 1 / 5 / 2;
}

.modules__item_2 {
  grid-area: 5 / 1 / 8 / 2;
}

.modules__item_3 {
  grid-area: 8 / 1 / 13 / 2;
}

.modules__item_4 {
  grid-area: 1 / 2 / 5 / 3;
}

.modules__item_5 {
  grid-area: 5 / 2 / 10 / 3;
}

.modules__item_6 {
  grid-area: 10 / 2 / 13 / 3;
}

.modules__item_7 {
  grid-area: 1 / 3 / 5 / 4;
}

.modules__item_8 {
  grid-area: 5 / 3 / 8 / 4;
}

.modules__item_9 {
  grid-area: 8 / 3 / 13 / 4;
} */


.modules__icon {
  background: var(--color-5);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-2);
  margin: 0 0 0.75rem;
}


.modules__name {
  font: var(--text-b0);
  font-weight: 600;
}

.modules__text ul {
  margin: 1em 0 0;
  line-height: 1.4;
  padding: 0 0 0 1.5em;
  list-style: none;
}

.modules__text li {
  margin: 0.6em 0;
  position: relative;
}

.modules__text li:first-child {
  margin-top: 0;
}

.modules__text li::before {
  content: "\2022";
  position: absolute;
  display: block;
  left: -1.05em;
  top: 0;
}


/* .modules__item_big .modules__name {
  font: var(--text-s1);
} */


.history-data-section {
  padding: 8em 0 5em;
}

.history-data {
  margin: 0;
}

.history-data__title {
  margin: 0 0 1.25rem;
}

.history-data__title,
.history-data__sub-title {
  text-align: center;
}

.history-data__list {
  margin: 5em 0 0;
}

.history-data__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3.75rem;
}

.history-data__info-item {
  margin: 3em 0 0;
}

.history-data__info-item:first-child {
  margin-top: 0;
}

.history-data__item_line {
  text-align: center;
  justify-content: center;
  color: var(--color-2);
  padding: 1em 0 3em;
  background: url("./../images/plm-line.svg") no-repeat;
  background-size: 83% auto;
  background-position: center;
}

.history-data__item_reverse .history-data__image {
  flex: 0 0 50%;
}

.history-data__image img {
  max-width: 100%;
  height: auto;
}

.history-data__item.history-data__item_reverse {
  flex-direction: row-reverse;
}

.history-data__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.25rem;
}

.history-data__num {
  font: var(--text-h4);
  font-weight: bold;
  color: var(--color-2);
}

.history-data__name {
  font: var(--text-b0);
  font-weight: 600;
}

.history-data__text {
  font: var(--text-b2);
}




/* sistem-info-section */
.sistem-info-section {
  padding: 10em 0 9.65em;
}

.sistem-info {
  text-align: center;
}

.sistem-info__title {
  margin: 0 0 0.25em;
}

.sistem-info__text {
  font: var(--text-b0);
  max-width: 1220px;
  margin: 0 auto;
}

.sistem-info__text p {
  margin: 0.75em 0;
}

.sistem-info__text p:first-child {
  margin-top: 0;
}

.sistem-info__list {
  text-align: left;
  margin: 3.75em 0 6em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.sistem-info__list:last-child {
  margin-bottom: 0;
}

.sistem-info__item {
  width: calc(50% - 1em);
  padding: 2em;
  border-radius: var(--radius);
  background: var(--white);
}

.sistem-info__item.sistem-info__item_small {
  width: calc(23% - calc(2em / 3));
}

.sistem-info__name {
  display: flex;
  margin: 0 0 0.5em;
  flex-direction: column;
  /* align-items: center; */
}

.sistem-info__title {
  font: var(--text-b0);
  font-weight: bold !important;
}

.sistem-info__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin: 0 0 1rem;
  background: var(--color-5);
}

.sistem-info__icon svg {
  color: var(--color-2);
}

.sistem-info__content {
  font: var(--text-b2);
}



/* products-section */
.products-section {
  padding: 8em 0;
}

.products__list {
  margin: 4em 0 0;
}

.products__item {
  margin: 1.75em 0 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5em;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.products__item:first-child {
  margin-top: 0;
}

.products__content {
  width: 52%;
}

.products__image {
  margin: 0 0 0 5%;
  width: 43%;
}

.products__image img {
  width: 100%;
  height: auto;
}

.products__tag {
  font: var(--text-b4);
  background: var(--color-5);
  display: inline-block;
  padding: 0.25em 1em;
  border-radius: 2em;
  color: var(--color-2);
}

.products__name {
  margin: 0.55em 0 0.3em;
}

.products__info {
  margin: 0.5em 0 0;
}

.products__icon {
  font-size: 0;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  margin: -4px;
}

.products__button {
  margin: 1.5em 0 0;
}


/* feedback */
.feedback {
  margin: 0;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  background: var(--gray-1);
  border-radius: var(--radius);
}

.feedback__info {
  width: 32%;
}

.feedback__form {
  width: 63.25%;
}

.feedback__text {
  font: var(--text-b1);
  margin: 1.5em 7% 0 0;
}

.feedback__text p {
  margin: 0.85em 0;
}

.form {
  margin: 0;
  font: var(--text-b2);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

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

.form__item.form__item_50 {
  max-width: calc(50% - 1rem);
}

.form__name {
  margin: 0.25em 0 0.3em;
}

.form input[type=text],
.form input[type=email],
.form textarea {
  border: 1px solid var(--gray-2);
  background: var(--white);
  padding: 0.5em 1em;
  font: var(--text-b2);
  width: 100%;
  border-radius: var(--radius);
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form textarea:focus {
  border-color: var(--gray-2);
  outline: var(--gray-2) solid 1px;
}

.form input[type=text],
.form input[type=email] {
  height: 3em;
}

.form textarea {
  min-height: 8em;
  resize: vertical;
}

.form__checkbox-label {
  margin: 0;
}

.form__checkbox-label input {
  position: absolute;
  left: -200vw;
}

.form__checkbox-label .checkbox {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin: -0.125em 0.5em 0 0;
}

.form__checkbox-label .checkbox svg {
  width: 24px;
  height: 24px;
  color: var(--gray-2);
  /* border: 1px solid var(--gray-2); */
  transition: color var(--as) var(--atf);
  border-radius: var(--radius);
}

/* .form__checkbox-label:hover .checkbox svg {
  color: var(--gray-3);
} */

.form__checkbox-label input[type=checkbox]:checked+.checkbox svg {
  color: var(--color-2);
}

.form__item .button {
  margin: 0.2em 0 0;
  /* width: 100%;
  max-width: 320px; */
}

/* form data */
.error-message {
  color: red;
  font-size: 14px;
  display: none;
}

.success-message {
  color: green;
  font-size: 14px;
  display: none;
}


/* requirements-section */
.requirements-section {
  padding: 8.25em 0 6em;
  background: var(--white);
}

.requirements-section .title {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-section_plm .tabs {
  margin-top: 4em;
}



/* card__list */
.card {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.card__list {
  display: flex;
  gap: 1.5em;
}

.card__list.card__list_full-size {
  flex-direction: column;
}

.card__list.card__list_full-size .card__item {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.card__list.card__list_full-size .card__image {
  max-width: 50%;
  margin: 0;
  max-height: 395px;
}

.card__list.card__list_full-size .card__info {
  max-width: 49%;
}


.card__item {
  background: var(--gray-1);
  border-radius: var(--radius);
  padding: 2em;
  width: 33%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.card__name {
  margin: 0;
}

.card__info {
  font: var(--text-b3);
  margin: 0 1em 2.5em 0;
}

.card__info p {
  margin: 1em 0;
}

.card__info ul {
  margin: 1em 0;
  line-height: 1.4;
  padding: 0 0 0 1.5em;
  list-style: none;
}

.card__info li {
  margin: 0.6em 0;
  position: relative;
}

.card__info li:first-child {
  margin-top: 0;
}

.card__info li::before {
  content: "\2022";
  position: absolute;
  display: block;
  left: -1.05em;
  top: 0;
}

.card__image {
  position: relative;
  left: -4px;
  overflow: hidden;
  width: 486px;
  margin: auto 0 0;
  font-size: 0;
}

.card__icon {
  font-size: 0;
  width: 100%;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.card__tags {
  margin: 7.35em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
}

.card__tags-item {
  font: var(--text-b3);
  padding: 0.75rem 0.8rem;
  white-space: nowrap;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  box-sizing: border-box;
  flex: 0 0 calc((100% - 1rem) / 3);
  max-width: calc((100% - 1rem) / 3);
}

.card__tags-item_50 {
  flex: 0 0 calc((100% - 0.5rem) / 2);
  max-width: calc((100% - 0.5rem) / 2);
}


.card-partners {
  margin: 2.25em 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
  font: var(--text-b2);
}

.card-partners__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.card-partners__item {
  text-align: center;
  line-height: 0;
  min-width: 155px;
}

.card-partners__icon {
  max-height: 4em;
  width: auto;
}


/* .requirements-section_plm .card__image {
  margin-top: 0;
} */

.requirements-section_plm .card__info {
  margin-bottom: 2.75em;
}


/* effectiveness-section */
.effectiveness-section {
  padding: 7.75em 0 8em;
}

.effectiveness-section_title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.effectiveness__list {
  display: flex;
  gap: 4.68em;
  margin: 4em 0 0;
}

.effectiveness__item {
  width: 33.333%;
}

.effectiveness__count {
  font: var(--text-h1);
  color: var(--color-2);
  text-align: center;
}

.effectiveness__name {
  font: var(--text-s2);
  color: var(--color-2);
  margin: 0.35em 0 0;
}

.effectiveness__info {
  font: var(--text-b2);
  margin: 0.5em 0 0;
}

.effectiveness__info p {
  margin: 0.15em 0 0;
}


/* pilot-section */
.pilot-section {
  margin: 0;
}

.pilot-section .container_max {
  border-radius: var(--big-radius);
  background: var(--black);
  color: var(--white);
}

.pilot {
  padding: 4.25em 0 4em;
  position: relative;
}

.pilot-intro__subtitle {
  font: var(--text-b4);
}

.pilot-intro__subtitle svg {
  position: relative;
  top: 2px;
}

.pilot-intro__tag {
  font: var(--text-b4);
  text-transform: uppercase;
  font-weight: 600;
  background: var(--color-5);
  display: inline-block;
  padding: 0.1em 1em 0.15em;
  margin: 0 0 0 0.5em;
  border-radius: 2em;
  color: var(--color-2);
}

.pilot-rocket {
  line-height: 0;
  position: absolute;
  right: -3px;
  top: 67px;
  z-index: 0;
  transform-origin: 50% 50%;
  animation: rocketFloat calc(var(--as) * 30) var(--atf) infinite;
}

.pilot-rocket__image {
  max-width: 570px;
}

@keyframes rocketFloat {
  0% {
    transform: translateX(0) translateX(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) translateX(20px) rotate(-5deg) scale(1.05);
  }

  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
}

.pilot-intro,
.pilot__list {
  position: relative;
  z-index: 10;
}

.pilot-intro {
  max-width: 55%;
}

.pilot-intro__title {
  margin: 0.5em 0 0;
}

.pilot-intro__info {
  font: var(--text-b2);
  max-width: 90%;
  margin: 1.5em 0 0;
}

.pilot-intro__info p {
  margin: 0.1em 0;
}

.pilot__list {
  margin: 3.85em 0 0;
  display: flex;
  gap: 2em;
}

.pilot__item {
  border-radius: 1em;
  padding: 2em;
  /* padding: 2.5em 3em 4em; */
  background: var(--gray-4);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  backdrop-filter: blur(10px);
}

.pilot__item_1 {
  width: 33.35%;
  justify-content: space-between;
}

.pilot__item_2 {
  height: 50%;
  width: 100%;
}

.pilot__item_3,
.pilot__item_4 {
  width: 50%;
  /* height: 100%; */
}

.pilot__item-right {
  display: flex;
  flex-direction: column;
  width: 64%;
  gap: 2em;
}

.pilot__item-bottom {
  display: flex;
  gap: 2em;
}


.pilot__image {
  margin: 0 0 0.5em;
}

.pilot__icon {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--color-5);
}

.pilot__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-2);
}


.pilot__content {
  margin: 0;
}

.pilot__item_1 {
  background: var(--color-2);
}

.pilot__item_1 .pilot__icon {
  background: var(--white);
}

.pilot__name {
  margin: 0 0 0.275em;
}

.pilot__info {
  font: var(--text-b2);
  margin: 0.25em 0 0;
}

.pilot__info p {
  margin: 0.25em 0 0;
}

.pilot__info b {
  color: var(--color-2);
}


.pilot__buttons {
  text-align: center;
  margin: 4em 0 0;
}



/* cases-section */
.cases-section {
  padding: 8em 0 4em;
}

.cases {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.cases-start,
.cases-list {
  flex: 0 0 calc(50% - 1em);
  overflow: hidden;
}


.cases-container {
  margin: 0.1em 0 0;
  padding: 3.3em 0 0;
  position: relative;

}

.cases-container .slider-cases {
  border-radius: var(--radius);
  overflow: hidden;
}

.cases__navigation {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
}

.cases__prev,
.cases__next {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: all var(--as) var(--atf);
}

.cases__prev.swiper-button-disabled,
.cases__next.swiper-button-disabled {
  opacity: 1;
  cursor: not-allowed;
  color: var(--gray-2);
  background: var(--white);
}

.cases__pagination {
  display: inline-block;
  vertical-align: top;
  width: 3.5rem;
  font: var(--text-b1);
  color: var(--color-2);
  line-height: 2rem;
  text-align: center;
}



.blog__item {
  flex-shrink: 0;
  width: 100%;
  /* height: 100%; */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.cases-start__tag {
  background: var(--color-5);
  display: inline-block;
  padding: 0.1em 1em 0.25em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  text-transform: uppercase;
}

.cases-start__title {
  margin: 0.15em 0 0;
}

.cases-start__title span {
  color: var(--color-2);
}

.cases-start__info {
  max-width: 500px;
  margin: 1.35em 0 0;
  font: var(--text-b1);
}



.blog__images {
  font-size: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--gray-2);
  position: relative;
  padding: 56.25% 0 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog__images__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  max-width: 645px;
}

.blog__content {
  padding: 2em;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.blog__content-top {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

.blog__info {
  min-width: 120px;
  padding: 0.25em 0;
  float: right;
  font: var(--text-b4);
  font-weight: 600;
  color: var(--gray-2);
}

.blog__info span {
  margin: 0 0 0 0.5em;
}

.blog__logo {
  margin: 1.75em 0 1em;
  line-height: 0;
  min-height: 35px;
  display: none;
}

.blog__logo-icon {
  height: 35px;
  width: auto;
}

.blog__name {
  font: var(--text-b0);
  margin: 1em 0 0;
  display: -webkit-box;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__text {
  font: var(--text-b3);
  margin: 0.75em 0 0;
  display: -webkit-box;
  line-clamp: 3;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__full-link {
  margin: 2em 0 0;
}


.blog__item.blog__item_orange {
  background: var(--color-2);
  color: var(--white);
}

.blog__item.blog__item_orange .blog__info {
  color: var(--white);
}

.blog__item.blog__item_orange .tags-item__tag {
  color: var(--white);
  border-color: var(--white);
}

.blog__item.blog__item_orange .button {
  background: var(--white);
  color: var(--color-2);
}



/* stages-section */
.stages-section {
  padding: 6em 0 8em;
}

.stages__number {
  font: var(--text-h4);
  color: var(--color-2);
  margin: 0 0 1.5rem;
}

.stages__title {
  max-width: 720px;
  margin: 0 auto;
}

.stages__title span {
  color: var(--color-2);
}

.stages {
  margin: 4em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.stages__item {
  background: var(--white);
  width: calc(50% - 1em);
  padding: 2em;
  border-radius: var(--radius);
}

.stages__info {
  font: var(--text-b2);
}

.stages__info p {
  margin: 0.5em 0 0;
}

.stages__info span {
  color: var(--color-2);
}


/* why-section */
.why-section {
  margin: 0;
  padding: 4.8em 0 6em;
  background: var(--white);
}


.why {
  margin: 4em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}


.why__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: calc(calc(100% / 3) - calc(2em * 2 / 3));
  padding: 2em;
  border-radius: var(--radius);
  background: var(--gray-1);
}

.why__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-5);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.5em;
}

.why__icon svg {
  color: var(--color-2);
  width: 24px;
  height: 24px;
}


.why__name {
  margin: 0.25em 0 0.35em;
}

.why__info {
  font: var(--text-b2);
}


/* with-support-section */
.with-support-section {
  padding: 7em 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.working-us-section+.with-support-section {
  padding-top: 0;
  background: var(--white);
}

.card-partners_with-support {
  margin: 5em 0 0;
}

.card-partners_with-support:first-child {
  margin-top: 0;
}

.card-partners_with-support .card-partners__items {
  margin: 1.5em 0 0;
  gap: 1rem;
}

.card-partners_with-support .card-partners__icon {
  max-height: 3rem;
}


/* reviews-section */
.reviews-section {
  padding: 8em 0 5em;
}


.reviews-container {
  position: relative;
  margin: 4em 0 0;
}

.reviews {
  position: relative;
}

.reviews__navigation {
  position: absolute;
  top: -6.75rem;
  right: 0;
  z-index: 10;
  display: block;
}

.slider-reviews {
  overflow: hidden;
  border-radius: 1rem;
}

.reviews__navigation_disable {
  display: none;
}

.reviews__pagination {
  display: inline-block;
  vertical-align: top;
  width: 3.5rem;
  margin: 0 -0.5rem;
  font: var(--text-b1);
  color: var(--gray-2);
  line-height: 2rem;
  text-align: center;
}

.reviews__prev,
.reviews__next {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: all var(--as) var(--atf);
}

.reviews__prev:hover,
.reviews__next:hover {
  background: var(--color-1);
}

.reviews__prev svg,
.reviews__next svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}


.reviews__prev.swiper-button-disabled,
.reviews__next.swiper-button-disabled {
  opacity: 1;
  cursor: not-allowed;
  color: var(--gray-2);
  background: var(--white);
}


.reviews__item {
  padding: 2.5em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 1rem;
}

.reviews__avatar {
  max-width: 256px;
  height: 256px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--gray-1);
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

/* Скелетон */
.reviews__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gray-1) 30%, var(--gray-2) 50%, var(--gray-1) 70%);
  animation: shimmer calc(var(--as) * 10) infinite;
  z-index: 0;
  transform: rotate(45deg);
  opacity: 0.5;
}

.reviews__avatar.loaded::after {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: -256px 0;
  }

  100% {
    background-position: 256px 0;
  }
}

.reviews__avatar img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}


.reviews__autor {
  width: 100%;
  flex-shrink: 0;
  margin: 2em 0 0;
  display: flex;
  gap: 1em;
  align-items: stretch;
}

.reviews__autor-logo {
  max-width: 130px;
  padding: 0 1em 0 0;

  border-right: 1px solid var(--gray-1);
  display: flex;
  align-items: center;
}

.reviews__autor-logo img {
  max-width: 113px;
}

.reviews__autor-name {
  font: var(--text-b2);
  font-weight: 600;
}

.reviews__autor-info {
  font: var(--text-b2);
  font-weight: normal;
}

.reviews__title {
  margin: 0;
}

.reviews__title span {
  color: var(--color-2);
}




.reviews__info {
  font: var(--text-b2);
  margin: 0 0 0 4em;
}



.reviews__text {
  position: relative;
  margin: 0.5em 0 0;
  font: var(--text-b2);
}

.reviews__text p {
  margin: 0.5em 0;
}

.reviews__text p:first-child {
  margin-top: 0;
}

/* .reviews__text::before {
  content: url(./../images/icons/quote.svg);
  position: absolute;
  left: -1.5em;
  top: -1.5em;
  opacity: 0.3;
} */


/* feedback-section */
.feedback-section {
  padding: 0;
  margin: 4.5em 0 8em;
}


.feedback-form .feedback {
  background: transparent;
  padding: 0;
}

.feedback-form .form input[type=text],
.feedback-form .form input[type=email],
.feedback-form .form textarea {
  background: var(--white);
}

.feedback-form .feedback__info {
  width: 43%;
}

.feedback-form .feedback__form {
  width: 52%;
}


.modal .feedback-section {
  margin: 0;
}

.modal .feedback-form .feedback {
  padding: 2em;
}



/* about-hero-section */
.about-hero-section {
  background: var(--white);
  padding: 5em 0 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-section_pilot {
  background: var(--white);
}

.about-hero__content {
  padding: 1em 0 5.125em;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero__info {
  font: var(--text-b2);
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}

.about-hero-icons {
  display: flex;
  justify-content: center;
}

.about-hero-icons__item {
  margin: 0 0 0 1.25em;
}

.about-hero-icons__item:first-child {
  margin-left: 0;
}

/* .about-hero-icons__icon {
  user-select: none;
} */

.about-hero-slider {
  margin: 0;
  position: relative;
  max-height: 475px;
  padding: 30% 0 0;
  /* margin: 0 0 -20%;
    position: relative;
    max-height: 475px;
    padding: 50% 0 0; */
  /* margin: 0 0 -10.25em;
    position: relative;
    max-height: 475px;
    padding: 50.55% 0 0; */
}

.about-hero-slider__item {
  position: absolute;
  left: 50%;
  width: 70%;
  bottom: 0;
  transform-origin: bottom;
  transition: transform calc(var(--as) * 2) var(--atf);
}

/* Центральный слайд */
.about-hero-slider__item.active {
  transform: translateX(-50%) scale(1);
  z-index: 10;
  opacity: 50;
}

/* Левый слайд */
.about-hero-slider__item.left {
  transform: translateY(0) translateX(-140%) scale(0.75);
  z-index: 10;
}

/* Правый слайд */
.about-hero-slider__item.right {
  transform: translateY(0) translateX(40%) scale(0.75);
  z-index: 5;
}

/* Прячем текст у боковых слайдов */
/* .about-hero-slider__item.left .about-hero-slider__name,
.about-hero-slider__item.right .about-hero-slider__name {
  opacity: 0;
} */


.about-hero-slider__image {
  margin: 0;
  padding: 42% 0 0;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}


.about-hero-slider__name {
  text-align: center;
  margin: 0 0 0.8em;
  transition: opacity calc(var(--as) * 2) var(--atf);
}

.about-hero-slider__tag {
  background: var(--color-5);
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 1em 0.25em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  text-transform: uppercase;
  margin: 0 0.5em 0 0;
}






/* about-info-section */
.about-info-section {
  padding: 5.85em 0 4em;
  background: var(--gray-3);
  color: var(--white);
}

.about-info-section .title {
  white-space: nowrap;
  margin-top: -0.25em;
}

.about-info__content {
  padding: 0;
  display: flex;
  gap: 140px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}

.about-info__text {
  font: var(--text-b1);
  max-width: 583px;
  margin: -0.65em 0 0;
}

.about-info__text p {
  margin: 0.85em 0;
}

.about-info__text p:first-child {
  margin-top: 0
}


/* clients-section */
.clients-section {
  padding: 8em 0 1em;
}

.clients {
  display: flex;
  /* flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center; */
  margin: 0.5em 0;
  overflow-x: hidden;
}

.clients-section_main {
  margin: 0;
  padding: 1.5em 0;
  background: var(--white);
}

.clients-section_main .clients {
  margin: 0;
}


/* marquee */
.clients {
  overflow: hidden;
  position: relative;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee::after,
.marquee::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 50;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 246, 247, 1) 0%, rgba(245, 246, 247, 0) 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(245, 246, 247, 1) 0%, rgba(245, 246, 247, 0) 100%);
}

.marquee_white::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee_white::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee__inner {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 5.9rem;
  padding: 0 2.95rem;
  animation: marquee 25s linear infinite;
}

.clients__item {
  line-height: 0;
  flex: 0 0 auto;
  /* padding: 0 30px; */
}

/* .clients__icon {
  height: 40px;
  width: auto;
} */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




/* leadership-section */
.leadership-section {
  padding: 3.5em 0 7.5em;
}

.leadership {
  max-width: 1406px;
  margin: 4em auto 0;
  display: flex;
  gap: 30px;
}

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

.leadership__photo {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 77.5% 0 0;
  border-radius: 1rem;
  margin: 0 0 1.25em;
}

.leadership-name-block {
  padding: 0;
}

.leadership__name {
  font: var(--text-s2);
  font-weight: 600;
  margin: 0;
}

.leadership__job {
  font: var(--text-b3);
  color: var(--gray-2);
  margin: 1.25em 0 0;
}

.leadership__info {
  padding: 0.95em 0 0;
}

.leadership__tag {
  font: var(--text-b4);
  text-transform: uppercase;
  font-weight: 600;
  background: var(--color-5);
  display: inline-block;
  padding: 0.2em 1em 0.25em;
  margin: 0 0.25em 0 0;
  border-radius: 2em;
  color: var(--color-2);
}

.leadership__text {
  margin: 0;
}

.leadership__text ul {
  padding: 0 0 0 0.5em;
  margin: 0;
  list-style: none;
  font: var(--text-b2);
}

.leadership__text li {
  position: relative;
  padding: 0 0 0.5em 1em;
}

.leadership__text li::after {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
}


/* working-us-section */
.working-us-section {
  padding: 8em 0 5em;
  background: var(--white);
}

.working-us {
  margin: 3.95em 0 0;
  display: flex;
  gap: 2rem;
}

.working-us__item {
  width: 100%;
  padding: 2em;
  background: var(--gray-1);
  border-radius: var(--radius);
}

.working-us__icon {
  border-radius: var(--radius);
  text-align: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
}

.working-us__icon img {
  width: 24px;
  height: 24px;
}

.working-us__name {
  margin: 0.5em 0 0;
  font: var(--text-s2);
}

.working-us__info {
  margin: 1em 0 0;
  font: var(--text-b2);
}


.working-us__item:nth-child(1) {
  background: var(--black);
  color: var(--white);
}

.working-us__item:nth-child(2) {
  background: var(--color-2);
  color: var(--white);
}

.working-us__item:nth-child(1) .working-us__icon {
  color: var(--black);
}

.working-us__item:nth-child(2) .working-us__icon {
  color: var(--color-2);
}

/* .working-us__item:nth-child(1) .working-us__name,
.working-us__item:nth-child(2) .working-us__name {
  color: var(--white);
}

.working-us__item:nth-child(1) .working-us__icon,
.working-us__item:nth-child(2) .working-us__icon {
  background: var(--white);
} */




/* join-team-section */
.join-team-section {
  padding: 7.6em 0 8em;
}

.join-team {
  display: flex;
  gap: 80px;
}

.join-team__photo {
  font-size: 0;
  overflow: hidden;
  width: 560px;
}

.join-team__photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.join-team__info {
  width: 45%;
}

.join-team__subtitle {
  color: var(--color-2);
  font-weight: 600;
  margin: 2rem 0 0;
}

.join-team__name {
  margin-top: 0.5rem;
}

.join-team__text {
  margin: 1.25em 0 0;
  font: var(--text-b2);
}

.join-team__button-block {
  margin: 1em 0 0;
}

/* .join-team__button-block .button {
  width: 100%;
  max-width: 11.25em;
  font: var(--text-s2);
} */


/* blog-page-section */
.blog-page-section {
  padding: 5em 0 2em;
  overflow: hidden;
}

.blog-page__back {
  margin: 0 0 2em;
}

.blog-page__back-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-2);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.blog-page__back-link::before {
  content: url("./../images/icons/arrow-left-orange.svg");
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em 0 0;
}


.breadcrumbs {
  font: var(--text-b4);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: var(--color-2);
  margin: 0.25em 0 2em -0.5em;
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.breadcrumbs a,
.breadcrumbs span {
  vertical-align: middle;
  display: inline-block;
  margin: 0 0.75em 0 0.5em;
}

/* .breadcrumbs a:first-child,
.breadcrumbs span:first-child {
  margin-left: 0;
} */

.breadcrumbs a {
  text-decoration: none;
  color: var(--color-2);

}

.breadcrumbs a:hover {
  text-decoration: underline;
}



.tags {
  display: block;
}

.tags-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
}

.tags-item__tag {
  background: var(--color-5);
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 1em 0.125em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: default;
}


.blog-page__image-container {
  position: relative;
}

.blog-page__image-container .tags {
  position: absolute;
  right: 0;
  top: -2.65em;
  z-index: 10;
}



.blog-page__image {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--gray-2);
  overflow: hidden;
  border-radius: var(--radius);
  padding: 44% 0 0;
  margin: 0 0 1.5em;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.blog-page__image_img {
  padding: 0;
}

/* .blog-page__image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
} */


.blog-page__info-page {
  /* border-top: 1px solid var(--gray-2); */
  font: var(--text-b4);
  color: var(--gray-3);
  display: flex;
  justify-content: space-between;
  padding: 0.75em 0;
}

.blog-page__brief {
  margin: 4.5em 0 5em;
  position: relative;
}

.blog-page__brief-text {
  margin: 1.3em 1% 0 0;
}

.blog-page__results {
  position: relative;
  padding: 5em 0 3em;
  background: var(--color-2);
  color: var(--white);
}

.blog-page__results .page-container {
  max-width: none;
}


.blog-page__results::after,
.blog-page__results::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--color-2);
  width: 100vw;
}

.blog-page__results::after {
  left: 100%;
}

.blog-page__results::before {
  right: 100%;
}


.blog-page__results .page-container {
  display: flex;
  align-items: center;
}

.blog-page__results-content {
  width: 55%;
  padding: 0 5% 0 0;
  border-right: 1px solid var(--white);
}

.blog-page__results-info {
  width: 43%;
  padding: 0 0 0 5.5%;
}

.blog-page__results-infoItem {
  margin: 2em 0 0;
  display: flex;
  align-items: center;
}

.blog-page__results-infoItem:first-child {
  margin-top: 0;
}

.blog-page__results-infoItem .blog-page__results-text {
  margin: 0;
}

.blog-page__results-icon {
  /* text-align: center; */
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 2em 0 0;
}

.circle-chart__circle {
  animation: circle-chart-fill 1s reverse;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-dasharray: 260 294;
  /* 260 is the circumference of the circle */
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 294;
  }
}

.blog-page__results-iconText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: var(--text-b4);
  /* line-height: 0.875; */
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}

.blog-page__results-iconText font {
  font: var(--text-s2);
}

.blog-page__results-text {
  margin: 0.9em 0 0;
  /* font: var(--text-b2); */
  /* line-height: 1.3; */
}

.blog-page__results-text p {
  margin: 0.65em 0;
}

.blog-page__results-text ul {
  margin: 1.25em 0;
  padding: 0;
  list-style: none;
}

.blog-page__results-text li {
  margin: 0.65em 0;
  padding: 0 0 0 2em;
  position: relative;
}

.blog-page__results-text li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-image: url("./../images/icons/ol-li.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 1em;
  width: 1em;
  height: 1em;
}


.blog-page__results-title {
  margin-bottom: 0.75em;
}

.blog-page__content {
  padding: 5.5em 0 0;
}

.blog-page__content .text {
  margin: 0 0 2.75em;
}

.blog-page__content .title_h5 {
  margin-top: 1em;
}

.page-info {
  margin: -3em 0 0;
  margin: 0 0 3em;
}

.page-info__item {
  position: relative;
  border-bottom: 1px solid var(--gray-2);
  padding: 0.7em 0 1.9em;
}

.page-info__item:last-child {
  border-bottom: 0 none;
}

.page-info__item:after {
  content: "+";
  font-size: 25px;
  text-align: center;
  line-height: 26px;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-2);
  border-radius: 50%;
  position: absolute;
  right: 0.4em;
  top: 0.95em;
  color: var(--color-2);
  cursor: pointer;
}

.page-info__item-name {
  font: var(--text-s2);
  padding: 0.45em 3rem 1.125em 0;
}

.page-info__item-text {
  font: var(--text-b2);
  padding: 0;
}

.page-info__item-image {
  line-height: 0;
}

.page-info__item-image {
  line-height: 0;
  margin: 0 0.35em 1.5em;
}

.page-info__item-image img {
  border: 4px solid var(--black);
  border-bottom: 0 none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  max-width: 100%;
}

.page-info__item-content {
  transform: translateY(-1em);
  visibility: hidden;
  height: 0;
  opacity: 1;
  overflow: hidden;
  transition: all calc(var(--as) * 2) var(--atf);
}

.page-info__item.page-info__item_active .page-info__item-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  height: auto;
}

.page-info__item.page-info__item_active.page-info__item:after {
  content: "-";
}


/* modal */
.no-scroll {
  overflow: visible;
}

.no-scroll body {
  width: auto;
  margin-right: calc(var(--scrollbar-width, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.modal {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  position: fixed;
  z-index: 2000;
  overflow: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(5px);
  background-color: var(--gray-4);
  opacity: 0;

  visibility: hidden;
  transition: opacity var(--as) var(--atf), visibility 0s var(--as);
}

.modal .feedback-form .feedback {
  margin: 0;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--as) var(--atf);
}

.modal-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2em;
}

.modal-content {
  background-color: var(--white);
  margin: 0 auto;

  border: 1px solid var(--gray-4);
  border-radius: var(--radius);
  /* width: 80%; */
  position: relative;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform var(--as) var(--atf);

  max-width: 1280px;

  min-width: 300px;
  min-height: 100px;

  /* display: flex;
  justify-content: center;
  align-items: center;

  margin: auto;
  height: 100%; */
  border-radius: calc(var(--radius) * 2);
}

.modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
}

.modal-content .container {
  padding: 0;
  width: auto;
}

.modal.open .modal-content {
  transform: translateY(0);
  /* Окно будет плавно подниматься */
}

.modal-close {
  color: var(--color-2);
  font-size: 2.5em;
  font-weight: normal;
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  cursor: pointer;
  z-index: 2001;
  transition: color var(--as) var(--atf);
  border-radius: var(--radius);
}

.modal-close:hover,
.modal-close:focus {
  color: var(--color-1);
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}


.events-modal {
  max-width: 100%;
}

.events-modal__header {
  margin: 3.75em 0 2em;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.events-modal__back {
  padding: 0;
  border: 0 none;
  background: transparent;
  color: var(--color-2);
  font: var(--text-b4);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.events-modal__back svg {
  display: inline-block;
  margin: -0.125rem 0.25rem 0 0;
  vertical-align: middle;
}

.events-modal__status {
  margin: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  font: var(--text-b4);
}

.events-modal__status_bottom {
  display: none;
}

.events-modal__top-date {
  font-weight: 500;
}

.events-modal__status-label {
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  color: var(--gray-2);
  border: 1px solid var(--gray-2);
  border-radius: 2em;
  padding: 0.2em 1em 0.125em;
}


.events-modal__header-img {
  width: 100%;
  height: auto;
}

.events-modal__body {
  margin: 0 auto;
}

.events-modal__footer {
  /* background: url("../images/"); */
  padding: 6em 0 15em;
  line-height: 0;
  background: url("./../images/ofc/events-modal-bg.png") no-repeat 50% 101%;
  background-size: 100% auto;
}

.events-modal__header,
.events-modal__body {
  padding: 0 7.5em;
}

.events-modal__galery {
  margin: 0 auto;
  padding: 0 7.5em;
}

.events-modal__galery-item {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 0 !important;
}

.events-modal__date {
  font: var(--text-b1);
  font-weight: bold;
  color: var(--color-2);
}

.events-modal__text {
  font: var(--text-b1);
  margin: 1em 0 2em;
}

.events-modal__speakers {
  margin: 2em 0;
  font: var(--text-b1);
}

.events-modal__speaker {
  margin: 2em 0 0;
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

.events-modal__speaker:first-child {
  margin-top: 0;
}


.events-modal__speaker-left {
  width: 280px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: flex-start;
  gap: 1em;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0.125em 1em 0 0;
}

.events-modal__speaker-avatar {
  margin: 0 0 0.5em;
  line-height: 0;
  width: 90px;
  flex: 0 0 90px;
  overflow: hidden;
  border-radius: 50%;
}

.events-modal__speaker-avatar img {
  margin: 0;
  border-radius: 50%;
}

.events-modal__speaker-logo {
  width: 100px;
  line-height: 0;
  margin: 0 0 0.5em;
}


.events-modal__speaker-name {
  margin: 0 0 0.5em;
  font-weight: bold;
  font: var(--text-b2);
  font-weight: 600;
}

.events-modal__speaker-info {
  font: var(--text-b4);
}

.events-modal__info-title {
  font-weight: bold;
}




.events-modal__buttons {
  text-align: center;
  margin: 6.875em 0 0;
}



.wp-video-shortcode .mejs-controls .mejs-time-rail .mejs-time-current {
  background: var(--color-2);
}

.wp-video-shortcode.mejs-container,
.wp-video-shortcode.mejs-container .mejs-controls {
  background: var(--black);
}



/* omnidata-fashion-club */
.hero-section_ofc {
  padding: 0 0 3.25em;
  background: var(--black);
  color: var(--white);
}

.hero-section_ofc .hero {
  padding: 2.5em 0 0.4em;
  justify-content: space-between;
}

.hero-section_ofc .hero__screens {
  width: 50.25%;
}

.hero-section_ofc .hero__screen {
  border: 0 none;
  border-radius: 0;
  text-align: right;
}

.hero-section_ofc .hero__screen-img {
  display: inline-block;
  max-width: 100%;
}

.hero-section_ofc .hero__screen-img_small {
  display: none;
}

.hero__content_ofc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.hero__content_ofc-header {
  padding: 0 0 7rem;
}

.hero-section__sub-title {
  margin: 0.65em 0 0;
  max-width: 800px;
}

.hero__content_ofc-club {
  position: absolute;
  left: 0;
  bottom: 1rem;
}

.hero__content_ofc-club-header {
  font: var(--text-b3);
  max-width: 430px;
  margin: 0 0 1.45em;
}

.hero-members {
  margin: -9.5em 0 0 0.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}

.hero-members__info-header {
  font: var(--text-h4);
  margin: -0.1em 0 0.15em;
}

.hero-members__info-text {
  font: var(--text-b3);
}


.ofc-members-section {
  padding: 4.5em 0 4.5em;
}

.ofc-members {
  display: flex;
  gap: 2.5em 3em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ofc-members__item {
  max-height: 50px;
}

.odc-club-section {
  padding: 6em 0 4em;
}

.odc-club {
  display: flex;
  gap: 5em;
}


.odc-club__content {
  width: 50%;
}

.odc-club__content-text {
  margin: 1.5em 0 0;
  font: var(--text-b2);
}



.odc-club__tabs-links {
  font: var(--text-b1);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.25em 0 0;
}

.odc-club__tabs-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0.5em;
  padding: 1.35em 0;
  cursor: pointer;
  border-top: 1px solid var(--gray-2);
  transition: all var(--as) var(--atf);
}

.odc-club__tabs-name {
  font-weight: 600;
}

.odc-club__tabs-link:first-child {
  border-top: 0 none;
}

.odc-club__tabs-link:hover {
  color: var(--color-2);
}

.odc-club__tabs-link_active {
  color: var(--color-2);
  cursor: default;
}

.odc-club__tabs-icon {
  line-height: 0;
}

.odc-club__tabs-icon svg {
  width: 24px;
  height: 24px;
}


.odc-club__tabs {
  width: 50%;
}

.odc-club__tabs-item {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all var(--as) var(--atf);
}

.odc-club__tabs-item_active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.odc-club__tabs-item-background {
  padding: 76% 0 0;
  background: #ddd;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--radius);
  margin: 0 0 1.75em;
  overflow: hidden;
}

.odc-club__tabs-item-header {
  font: var(--text-b1);
  font-weight: 600;
}

.odc-club__tabs-item-content {
  margin: 0 8% 0 0;
  font: var(--text-b2);
}


.events-section {
  padding: 4.5em 0;
}

.events {
  margin: 4em 0 0;
  position: relative;
  overflow: visible;
  /* display: flex;
  gap: 3.75em; */
}


.events__item {
  background: var(--white);
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
}

.events__navigation {
  position: absolute;
  top: -5.5rem;
  right: 0;
  z-index: 10;
  display: block;
}

.events__navigation_disable {
  display: none;
}

.events__pagination {
  display: inline-block;
  vertical-align: top;
  width: 3.5rem;
  font: var(--text-b1);
  color: var(--color-2);
  line-height: 2rem;
  text-align: center;
}

.events__prev,
.events__next {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: all var(--as) var(--atf);
}

.events__prev:hover,
.events__next:hover {
  background: var(--color-1);
}

.events__prev svg,
.events__next svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}


.events__prev.swiper-button-disabled,
.events__next.swiper-button-disabled {
  opacity: 1;
  cursor: not-allowed;
  color: var(--gray-2);
  background: var(--white);
}


.events__item-date {
  font: var(--text-h1);
  font-weight: 500;
  text-align: center;
  padding: 0.35em 0;
  border-bottom: 1px solid var(--color-2);
}

.events__item-content {
  padding: 2em;
}

.events__item-status {
  background: var(--color-5);
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 1em 0.125em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.events__item-title {
  margin: 0.5em 0 1em;
  font: var(--text-b1);
  font-weight: 600;
}

.events__item-text {
  margin: 0.45em 0;
  font: var(--text-b2);
}

.events__item-button {
  margin: 2em 0 0;
  min-height: 1.5em;
}

.events__item_completed .events__item-date {
  color: var(--gray-2);
  border-bottom-color: var(--gray-2);
}

.events__item_completed .events__item-status {
  background: var(--gray-1);
  color: var(--gray-2);
}


.ofc-guide {
  padding: 4.5em 0 3.5em;
  display: flex;
  justify-content: space-between;
  gap: 5em;
}


.ofc-guide-section {
  padding: 1em 0;
}

.ofc-guide__left {
  width: 50%;
}

.ofc-guide__right {
  width: 46.5%;
}

.ofc-guide__subtitle {
  font: var(--text-b4);
  color: var(--color-2);
}

.ofc-guide__tag {
  background: var(--color-5);
  display: inline-block;
  vertical-align: middle;
  padding: 0.2em 1em 0.125em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0.25em 0 0;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.ofc-guide__title {
  margin: 0.15em 0 0.65em;
}

.ofc-guide__text {
  font: var(--text-b2);
}

.ofc-guide__text svg {
  vertical-align: middle;
  color: var(--color-2);
  margin: 0 0.5em 0 0;
}

.ofc-guide__image {
  text-align: center;
  margin: 0 0 -2em;
}

.ofc-guide__image img {
  margin: 0 3em 0 0;
  max-width: 100%;
  height: auto;
}


.ofc-guide-info__block {
  position: relative;
  margin: -0.25em 0 0;
}

.ofc-guide-info__item {
  flex-shrink: 0;
}

.ofc-guide-info__subtitle {
  background: var(--color-5);
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 1em 0.125em;
  border-radius: 2em;
  color: var(--color-2);
  font: var(--text-b4);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.65em 0 0;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.ofc-guide-info__title {
  font: var(--text-b1);
  font-weight: 600;
  margin: 1.75rem 0 0.75em;
}

.ofc-guide-info__text {
  font: var(--text-b2);
}

.ofc-guide-info__button {
  margin: 2em 0 0;
}

.ofc-guide-info__info {
  margin: 0.65em 0 1.35em 1rem;
  display: inline-block;
  color: var(--color-2);
  font: var(--text-b4);
  text-transform: uppercase;
  font-weight: normal;
}

.ofc-guide-info__info span {
  margin: 0 0.7em 0 0;
  display: inline-block;
}


.ofc-guide-info__navigation {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
}

.ofc-guide-info__navigation_disable {
  display: none;
}

.ofc-guide-info__pagination {
  display: inline-block;
  vertical-align: top;
  width: 3.5rem;
  font: var(--text-b1);
  color: var(--color-2);
  line-height: 2rem;
  text-align: center;
}

.ofc-guide-info__prev,
.ofc-guide-info__next {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--color-2);
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  transition: all var(--as) var(--atf);
}

.ofc-guide-info__prev:hover,
.ofc-guide-info__next:hover {
  background: var(--color-1);
}

.ofc-guide-info__prev svg,
.ofc-guide-info__next svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}


.ofc-guide-info__prev.swiper-button-disabled,
.ofc-guide-info__next.swiper-button-disabled {
  opacity: 1;
  cursor: not-allowed;
  color: var(--gray-2);
  background: var(--white);
}


.photo-events-section {
  padding: 2.3em 0 5em;
}

.photo-events-slider {
  position: relative;
  margin: 4em 0 0;
}

.photo-events__item {
  background-color: var(--gray-2);
  flex-shrink: 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  /* padding: 28.2% 0 0; */
  /* margin: 0 3em; */
  max-width: 860px;
  width: 860px;
  height: 537px;
}

.photo-events__scrollbar {
  position: absolute;
  top: auto !important;
  bottom: -2em !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10;
  width: 120px !important;
  height: 8px !important;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--gray-4);
  border-radius: var(--radius);
  transition: all var(--as) var(--atf);
}

.swiper-scrollbar-drag {
  background-color: var(--color-2);
}


.video-channel-section {
  padding: 6em 0;
  text-align: center;
}

.video-channel__text {
  font: var(--text-b2);
  max-width: 90%;
  margin: 0 auto;
}

.video-channel__text span {
  color: var(--color-2);
}

.video-channel__list {
  margin: 4em 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.video-channel__item {
  width: 50%;
  text-align: center;
}

.video-channel__image {
  padding: 56.25% 0 0;
  /* padding: 64.6% 0 0; */
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-channel__video-links {
  margin: 1.5em 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}


.fashion-club-banner-section {
  padding: 6em 0 8em;
}

.fashion-club-banner {
  border-radius: var(--big-radius);
  position: relative;
  overflow: hidden;
  padding: 5em 4.5em;
  background-position: 100% 50%;
  background-image: url("./../images/ofc/fashion-club-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
}


.fashion-club-banner__content,
.fashion-club-banner__link {
  position: relative;
  z-index: 5;
}

.fashion-club-banner__content {
  max-width: 48%;
}

.fashion-club-banner__header {
  color: var(--color-2);
  margin: 0.125em 0 0.2em;
}

.fashion-club-banner__link {
  margin: 12.5em 0 0;
}


.info-banner-section {
  padding: 8em 0;
}

.info-banner {
  background: var(--black) url("./../images/data-security/info-banner-bg.png") no-repeat 50% 50%;
  background-size: cover;
  color: var(--white);
  border-radius: 16px;
  padding: 6em 2em;
  text-align: center;
}

.info-banner__content {
  max-width: 845px;
  margin: 0 auto;
}

.info-banner__header {
  margin: 0.75rem 0 1.5rem;
}

.info-banner__text {
  font: var(--text-b1);
  margin: 1.5rem 0 4rem;
}



.info-tests-section {
  padding: 8em 0;
  background: var(--white);
}

.info-tests__title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-tests__info {
  font: var(--text-b1);
  text-align: center;
  max-width: 900px;
  margin: 0.25rem auto 0;
}

.info-tests__list {
  display: flex;
  margin: 4em 0;
  border: 1px solid var(--color-2);
  border-radius: 16px;
  padding: 3.65em 2.5em;
  gap: 3em;
}

.info-tests__column {
  width: 50%;
}

.info-tests__item {
  margin: 1.5em 0 0;
}

.info-tests__item:first-child {
  margin-top: 0;
}

.info-tests__num {
  font: var(--text-h4);
  color: var(--color-2);
  margin: 0 0 0.5em;
}

.info-tests__name {
  font: var(--text-b0);
  margin: 0 0 0.65em;
}

.info-tests__text {
  font: var(--text-b2);
}

.info-tests__button {
  text-align: center;
}


.data-loss-section {
  padding: 8em 0;
}

.data-loss__title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.data-loss__info {
  font: var(--text-b1);
  text-align: center;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.data-loss__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin: 4em 0 0;
}

.data-loss__item {
  flex: 0 0 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  border-radius: var(--radius);
  background: var(--white);
  padding: 2rem;
}

.data-loss__icon {
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: var(--radius);
  background: var(--color-5);
  color: var(--color-2);
  justify-content: center;
  align-items: center;
  margin: 0 0 1rem;
}

.data-loss__name {
  font: var(--text-b1);
  margin: 0 0 1rem;
}