/* [14:24:27] Автосборка watch-css.php | НЕ РЕДАКТИРУЙТЕ вручную */
@font-face {
  font-family: TTHovesProExpRegular;
  src: url("../fonts/TT_Hoves_Pro_Expanded_Regular.woff2") format("woff2"), url("../fonts/TT_Hoves_Pro_Expanded_Regular.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Expanded_Regular.ttf") format("truetype"), url("../fonts/TT_Hoves_Pro_Expanded_Regular.eot") format("embedded-opentype"), url("../fonts/TT_Hoves_Pro_Expanded_Regular.svg#TTHovesProExp-Rg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: TTHovesProExpMedium;
  src: url("../fonts/TT_Hoves_Pro_Expanded_Medium.woff2") format("woff2"), url("../fonts/TT_Hoves_Pro_Expanded_Medium.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Expanded_Medium.ttf") format("truetype"), url("../fonts/TT_Hoves_Pro_Expanded_Medium.eot") format("embedded-opentype"), url("../fonts/TT_Hoves_Pro_Expanded_Medium.svg#TTHovesProExp-Md") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: TTHovesProExpLight;
  src: url("../fonts/TT_Hoves_Pro_Expanded_Light.woff2") format("woff2"), url("../fonts/TT_Hoves_Pro_Expanded_Light.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Expanded_Light.ttf") format("truetype"), url("../fonts/TT_Hoves_Pro_Expanded_Light.eot") format("embedded-opentype"), url("../fonts/TT_Hoves_Pro_Expanded_Light.svg#TTHovesProExp-Lt") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: TTHovesProExpThin;
  src: url("../fonts/TT_Hoves_Pro_Expanded_Thin.woff2") format("woff2"), url("../fonts/TT_Hoves_Pro_Expanded_Thin.woff") format("woff"), url("../fonts/TT_Hoves_Pro_Expanded_Thin.ttf") format("truetype"), url("../fonts/TT_Hoves_Pro_Expanded_Thin.eot") format("embedded-opentype"), url("../fonts/TT_Hoves_Pro_Expanded_Thin.svg#TTHovesProExp-Th") format("svg");
  font-weight: normal;
  font-style: normal;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --font-family: "TTHovesProExpRegular", sans-serif;
  --font-medium: "TTHovesProExpMedium", sans-serif;
  --font-light: "TTHovesProExpLight", sans-serif;
  --font-thin: "TTHovesProExpThin", sans-serif;
  --color-primary: #76777A;
  --color-accent: #2ED9C3;
  --color-gray: #D9D8D6;
  --color-gray-1: #76777A;
  --color-gray-2: #A7A8A9;
  --color-dark: #212322;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  --spacing-xs: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 36px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;
  --spacing-5xl: 96px;
  --spacing-6xl: 120px;
}
html {
  width: 100%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-gray);
  background-color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 100%;
  padding: 0 14px;
  max-width: 1308px;
  box-sizing: border-box;
  margin: 0 auto;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-accent);
}
.btn {
  background: var(--color-accent);
  color: var(--color-dark);
  border: 2px solid var(--color-accent);
  padding: var(--spacing-md) var(--spacing-2xl);
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.btn:hover {
  background: var(--color-dark);
  color: var(--color-gray);
  border: 2px solid var(--color-dark);
}
.btn--lite {
  background: var(--color-dark);
  color: var(--color-gray);
}
.btn--lite:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}
.homepage {
  width: 100%;
  overflow: hidden;
}
.animate[data-animate="left"] {
  opacity: 0.1;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.animate[data-animate="left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate[data-animate="left"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  padding: 44px 0 var(--spacing-md);
  background: var(--color-dark);
}
@media (min-width: 961px) {
  .header {
    padding: var(--spacing-md) 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-lg);
}
.header .search-toggle, .header .header__menu-toggle, .header .header__lang-select, .header .header__lang-option {
  background: none;
  box-shadow: none;
  color: var(--color-gray);
  stroke: var(--color-gray);
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}
.header .search-toggle:hover, .header .header__menu-toggle:hover, .header .header__lang-select:hover, .header .header__lang-option:hover {
  color: var(--color-accent);
  stroke: var(--color-accent);
}
@media (max-width: 960px) {
  .header__logo {
    width: 70px;
  }
}
.header__nav {
  display: flex;
}
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__menu-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
@media (min-width: 961px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle span {
  position: absolute;
  width: 32px;
  height: 2px;
  display: block;
  top: 50%;
  left: 4px;
  background: var(--color-accent);
  transition: background 0.2s ease;
}
.header__menu-toggle span::before, .header__menu-toggle span::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 2px;
  display: block;
  left: 0;
  background: var(--color-accent);
  transition: transform 0.2s ease;
}
.header__menu-toggle span::before {
  top: -10px;
}
.header__menu-toggle span::after {
  top: 10px;
}
.header__menu-toggle.is-open span {
  background: none;
}
.header__menu-toggle.is-open span::before {
  transform: translateY(10px) rotate(45deg);
}
.header__menu-toggle.is-open span::after {
  transform: translateY(-10px) rotate(-45deg);
}
.menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-style: normal;
  font-weight: 283;
  font-size: clamp(14px, 0.8vw, 16px);
  line-height: 1.5;
  gap: clamp(var(--spacing-md), 1.7vw, var(--spacing-xl));
  text-transform: uppercase;
  list-style: none;
}
@media (max-width: 960px) {
  .header.is-open {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow-y: auto;
  }
}
body.no-scroll {
  overflow: hidden;
}
.mobile-menu {
  display: none;
  background: var(--color-dark);
}
.mobile-menu.is-open {
  display: block;
}
@media (min-width: 961px) {
  .mobile-menu, .mobile-menu.is-open {
    display: none;
  }
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin: 0;
  padding: var(--spacing-lg) 0 var(--spacing-xl);
  list-style: none;
}
.mobile-menu__link {
  display: block;
  color: var(--color-gray);
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-menu__link:hover, .mobile-menu__link:focus-visible {
  color: var(--color-accent);
}
.mobile-menu__link--toggle {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  width: 100%;
  padding: 0;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}
.mobile-menu__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.mobile-menu__item--parent.is-open .mobile-menu__arrow {
  transform: rotate(225deg);
}
.mobile-menu__sublist {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu__item--parent.is-open .mobile-menu__sublist {
  display: block;
}
.mobile-menu__subitem + .mobile-menu__subitem {
  margin-top: var(--spacing-xs);
}
.mobile-menu__sublink {
  color: var(--color-gray);
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-menu__sublink:hover, .mobile-menu__sublink:focus-visible {
  color: var(--color-accent);
}
.mobile-menu__sublink--toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-xs);
  width: 100%;
  padding: 2px var(--spacing-xs);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
}
.mobile-menu__sublink-arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gray);
  border-right: 2px solid var(--color-gray);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.mobile-menu__subitem--parent.is-open .mobile-menu__sublink-arrow {
  transform: rotate(135deg);
}
.mobile-menu__subsublist {
  display: none;
  margin: 0;
  padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-md);
  list-style: none;
}
.mobile-menu__subitem--parent.is-open .mobile-menu__subsublist {
  display: block;
}
.mobile-menu__subsubitem + .mobile-menu__subsubitem {
  margin-top: var(--spacing-xs);
}
.mobile-menu__subsublink {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-menu__subsublink:hover, .mobile-menu__subsublink:focus-visible {
  color: var(--color-accent);
}
.breadcrumbs {
  padding: var(--spacing-lg) 0;
  font-size: 12px;
  line-height: calc(20 / 12);
  color: var(--color-gray-1);
}
.hero-slider {
  position: relative;
  background-color: var(--color-gray);
  color: #fff;
  overflow: hidden;
}
.hero-slider__video {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  z-index: 1;
}
.hero-slider__video-inline {
  position: absolute;
  right: -36%;
  top: auto;
  transform: rotate(180deg);
  z-index: 2;
  width: 150%;
  aspect-ratio: 1.77;
  overflow: hidden;
  bottom: 0;
}
@media (min-width: 961px) {
  .hero-slider__video-inline {
    right: -18%;
    top: 8%;
    width: 88%;
    bottom: auto;
  }
}
.hero-slider__video video {
  width: 100%;
  top: 7px;
  position: relative;
}
.hero-slider .container {
  position: relative;
}
.hero-slider::before {
  width: 70%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 3;
  background: url("../images/hero-slider.png") right center no-repeat;
  background-size: contain;
  pointer-events: none;
  top: 0;
  right: 0;
}
@media (max-width: 960px) {
  .hero-slider::before {
    background-position: right bottom;
    z-index: 1;
    width: 100%;
  }
}
.hero-slider__slide {
  min-height: 510px;
  display: flex;
  align-items: center;
  aspect-ratio: 1.46;
}
.hero-slider__slide .container {
  width: 100%;
}
.hero-slider__title {
  font-family: var(--font-light);
  max-width: 627px;
  font-size: 56px;
  line-height: calc(64 / 56);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .hero-slider__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    width: 40%;
  }
}
@media (max-width: 767px) {
  .hero-slider__title {
    width: 90%;
  }
}
.hero-slider__subtitle {
  font-family: var(--font-light);
  max-width: 610px;
  font-size: 24px;
  line-height: calc(32 / 24);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .hero-slider__subtitle {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
}
.hero-slider__pagination {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  z-index: 2;
  position: absolute;
  top: var(--spacing-3xl) !important;
  left: 14px !important;
}
@media (max-width: 960px) {
  .hero-slider__pagination {
    top: var(--spacing-lg) !important;
    gap: var(--spacing-md);
  }
}
.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  padding: 0;
  border: none;
  background-color: var(--color-gray-1);
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: var(--spacing-3xl);
}
.hero-slider .swiper-pagination-bullet:hover {
  background-color: var(--color-accent);
}
.hero-slider .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}
@media (max-width: 767px) {
  .hero-slider__slide {
    aspect-ratio: 0.7;
  }
}
.js-video-aniamtion video {
  pointer-events: none;
}
.js-video-aniamtion video::-webkit-media-controls {
  display: none !important;
}
.we-are-here .container {
  height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .we-are-here .container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    gap: var(--spacing-md);
    height: auto;
  }
}
.we-are-here .container::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  display: block;
  position: absolute;
  bottom: -150px;
  left: 0;
  background: url("../images/we-are-here.png") bottom center no-repeat;
  background-size: auto;
  z-index: 3;
  pointer-events: none;
  display: none;
}
@media (max-width: 960px) {
  .we-are-here .container::after {
    position: relative;
    order: 2;
    aspect-ratio: 1.19;
    width: calc(100% + 14px);
    height: auto;
    background: url("../images/we-are-here-mobile.png") bottom center no-repeat;
    background-size: 100% auto;
    bottom: 0;
    left: 0;
  }
}
.we-are-here__video {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 960px) {
  .we-are-here__video {
    position: relative;
    height: 300px;
    order: 2;
  }
}
.we-are-here__video::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/assets/images/homepage/home-1.svg") 13% bottom no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 1270px) {
  .we-are-here__video::before {
    background: url("/assets/images/homepage/home-m-1.svg") 14px 46% no-repeat;
    width: 40%;
  }
}
.we-are-here__video-inline {
  height: 498px;
  margin-left: 22%;
  margin-bottom: 6%;
  z-index: 1;
}
@media (max-width: 960px) {
  .we-are-here__video-inline {
    position: relative;
    height: 300px;
    margin-left: 59%;
    margin-bottom: 0;
  }
}
.we-are-here__video-inline video {
  height: 100%;
  width: auto;
}
.we-are-here__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 80px;
  line-height: 1.1;
  color: var(--color-gray);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .we-are-here__title {
    font-size: 48px;
    line-height: calc(56 / 48);
    max-width: 90%;
    order: 1;
  }
}
.we-are-here__columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .we-are-here__columns {
    order: 3;
    flex-direction: column;
    gap: var(--spacing-md);
  }
}
.we-are-here__column--left {
  max-width: 389px;
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  margin-left: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .we-are-here__column--left {
    margin-left: 0;
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.we-are-here__column--right {
  max-width: 406px;
  font-style: normal;
  font-weight: 283;
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .we-are-here__column--right {
    font-size: 18px;
    line-height: calc(26 / 18);
  }
}
.case-studies {
  background: var(--color-gray);
  color: var(--color-dark);
}
.case-studies .container {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .case-studies .container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.case-studies__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .case-studies__head {
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
  }
}
.case-studies__intro {
  font-size: 32px;
  line-height: calc(40 / 32);
  color: var(--color-gray-1);
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 960px) {
  .case-studies__intro {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.case-studies__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: calc(64 / 56);
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .case-studies__title {
    font-size: 32px;
    line-height: calc(40 / 32);
  }
}
.case-studies__more-link {
  font-style: normal;
  font-weight: 283;
  font-size: 24px;
  line-height: 32px;
  text-align: right;
}
@media (max-width: 960px) {
  .case-studies__more-link {
    font-size: 18px;
    line-height: calc(26 / 18);
  }
}
.case-studies__head-nav {
  gap: 24px;
  justify-content: flex-end;
  margin-right: auto;
}
.cases-slider {
  position: relative;
}
.cases-slider__slide {
  box-sizing: border-box;
  background: var(--color-dark);
  color: var(--color-gray);
  height: auto;
}
.cases-slider .case-item {
  width: 100%;
}
.cases-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cases-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: stroke 0.2s ease;
  border: none;
  box-shadow: none;
  stroke: var(--color-gray-1);
}
.cases-slider__arrow:hover {
  stroke: var(--color-accent);
}
.cases-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
.cases-slider__arrow .cases-slider__arrow-icon {
  width: 40px;
  height: 40px;
}
.cases-slider__pagination {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  --swiper-pagination-bullet-horizontal-gap: 12px;
}
.cases-slider__pagination.swiper-pagination-bullets-dynamic {
  display: block;
  gap: 0;
  text-align: center;
  line-height: 0;
}
.cases-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  padding: 0;
  border: none;
  background-color: var(--color-gray-1);
  opacity: 1;
  cursor: pointer;
  transform: none;
  transition: background-color 0.2s ease;
}
.cases-slider .swiper-pagination-bullet:hover {
  background-color: var(--color-accent);
}
.cases-slider .swiper-pagination-bullet-active, .cases-slider .swiper-pagination-bullet-active-main, .cases-slider .swiper-pagination-bullet-active-prev, .cases-slider .swiper-pagination-bullet-active-next, .cases-slider .swiper-pagination-bullet-active-prev-prev, .cases-slider .swiper-pagination-bullet-active-next-next {
  transform: none;
}
.cases-slider .swiper-pagination-bullet-active, .cases-slider .swiper-pagination-bullet-active-main {
  background-color: var(--color-accent);
}
.cases-slider__nav {
  margin-top: var(--spacing-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cases-slider .expertise {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  padding: 4px 8px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}
.cases-slider .case-item__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
}
@media (max-width: 960px) {
  .cases-slider .case-item__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.cases-slider .case__preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
@media (max-width: 767px) {
  .cases-slider__controls {
    gap: 16px;
    padding: 0;
  }
  .cases-slider__arrow {
    width: 40px;
    height: 40px;
  }
}
.case-item {
  height: 100%;
  min-height: 480px;
  padding: var(--spacing-lg);
}
.case-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-2xl);
  width: 100%;
}
.case-item__left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.case-item__right {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .case-item__right {
    width: 32px;
    height: 32px;
  }
}
.case-item .btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-gray-1);
  font-size: 12px;
  line-height: 1;
}
.case-item .case__details {
  display: none;
  gap: var(--spacing-md);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-lg);
}
.case-item.is-open .case__details {
  display: flex;
  flex-direction: column;
}
.case__details-heading {
  font-size: 16px;
  line-height: calc(24 / 16);
  color: var(--color-gray-2);
  text-transform: lowercase;
  margin: 0 0 4px;
}
.case__details-text {
  font-size: 16px;
  line-height: calc(24 / 16);
  color: var(--color-gray);
}
.case__details-text p {
  margin-bottom: 1em;
}
.case__details-text p:last-child {
  margin-bottom: 0;
}
.country__heading, .client__heading {
  font-size: 14px;
  line-height: calc(22 / 14);
  color: var(--color-gray-2);
  margin-bottom: 6px;
  text-transform: lowercase;
}
.country__name {
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 14px;
  line-height: 1;
  padding: 4px 8px;
  display: inline-block;
  border-radius: 16px;
}
.core-values {
  width: 100%;
  overflow: hidden;
}
.core-values__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 216px;
}
@media (max-width: 960px) {
  .core-values__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    margin-bottom: var(--spacing-4xl);
  }
}
.core-values .container {
  position: relative;
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .core-values .container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.core-values .container::after {
  content: "";
  width: 871px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(100% - 600px);
  background: url("../images/core-values.png") top left no-repeat;
  background-size: 100%;
  display: none;
}
@media (max-width: 960px) {
  .core-values .container::after {
    display: none;
  }
}
.core-values__video {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.core-values__video::before {
  content: "";
  width: 562px;
  height: 100%;
  display: block;
  position: absolute;
  background: url("/assets/images/homepage/home-2.svg") top right no-repeat;
  right: -8%;
  top: 0;
  z-index: 2;
}
@media (max-width: 960px) {
  .core-values__video::before {
    display: none;
  }
}
.core-values__video-inline {
  position: absolute;
  aspect-ratio: 1.77;
}
.core-values__video-inline-1 {
  height: 482px;
  top: -2%;
  right: -31%;
}
@media (max-width: 960px) {
  .core-values__video-inline-1 {
    height: 172px;
    top: 7%;
    left: 48%;
    right: auto;
  }
}
.core-values__video-inline-2 {
  height: 637px;
  top: 36%;
  right: -41%;
}
@media (max-width: 960px) {
  .core-values__video-inline-2 {
    height: 244px;
    left: 27%;
    top: 38%;
    right: auto;
  }
}
.core-values__video-inline-3 {
  height: 658px;
  top: 65%;
  right: -43%;
}
@media (max-width: 960px) {
  .core-values__video-inline-3 {
    height: 252px;
    top: 65%;
    left: 24%;
    right: auto;
  }
}
.core-values__video-inline video {
  height: 100%;
  width: auto;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 650px;
  margin-bottom: 160px;
}
@media (max-width: 960px) {
  .values-list {
    gap: var(--spacing-4xl);
    margin-bottom: 0;
  }
}
.value-item {
  display: flex;
  gap: 146px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 840px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1320px) {
  .value-item {
    max-width: 740px;
    gap: 80px;
  }
}
@media (max-width: 960px) {
  .value-item {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}
@media (max-width: 960px) {
  .value-item::after {
    content: "";
    height: 252px;
    width: 100%;
    display: block;
    position: absolute;
    top: -110px;
    right: -14px;
  }
}
.value-item:first-child::after {
  background: url("../images/image-88.png") center right no-repeat;
  display: none;
}
.value-item:nth-child(2)::after {
  background: url("../images/image-89.png") center right no-repeat;
  display: none;
}
.value-item:last-child::after {
  background: url("../images/image-90.png") center right no-repeat;
  display: none;
}
.value-item .core-values__number {
  margin-top: 20px;
  color: var(--color-accent);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 64px;
}
.value-item__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  margin-bottom: var(--spacing-lg);
}
@media (max-width: 960px) {
  .value-item__title {
    font-size: 48px;
    line-height: calc(56 / 48);
  }
}
.value-item__text {
  font-style: normal;
  font-weight: 283;
  font-size: 24px;
  line-height: 1.33;
}
@media (max-width: 960px) {
  .value-item__text {
    font-size: 18px;
    line-height: calc(26 / 18);
  }
}
.solutions {
  background: var(--color-gray);
  color: var(--color-dark);
  padding: var(--spacing-4xl) 0;
}
@media (max-width: 960px) {
  .solutions {
    padding: var(--spacing-xl) 0;
  }
}
.solutions__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: calc(64 / 56);
  color: #212322;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .solutions__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    margin-bottom: var(--spacing-lg);
  }
}
.solutions__title .solutions__title-text {
  padding-bottom: var(--spacing-3xl);
  display: inline-block;
}
@media (max-width: 960px) {
  .solutions__title .solutions__title-text {
    padding-bottom: 0;
  }
}
.solutions__title::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 606px;
  height: 156px;
  display: block;
  background: url("../images/solution-heading.png") top right no-repeat;
  background-size: auto 100%;
  margin-bottom: -41px;
}
@media (max-width: 960px) {
  .solutions__title::after {
    width: 100%;
    margin-bottom: 0;
    height: 26px;
    background: url("../images/solution-heading-mobile.png") top right no-repeat;
    background-size: auto 100%;
    margin-right: -14px;
    margin-bottom: 10px;
  }
}
.solutions__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
}
@media (max-width: 960px) {
  .solutions__list {
    gap: var(--spacing-xs);
  }
}
.solutions__item {
  width: calc((100% - (40px * 2)) / 3);
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-lg);
  min-height: 360px;
  z-index: 2;
}
@media (max-width: 960px) {
  .solutions__item {
    width: 100%;
    min-height: 1px;
  }
}
.solutions__item-title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: var(--spacing-md);
}
@media (max-width: 960px) {
  .solutions__item-title {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.solutions__item-text {
  font-style: normal;
  font-weight: 283;
  font-size: 16px;
  line-height: 1.5;
}
.team {
  background: var(--color-gray);
  color: var(--color-dark);
  padding: var(--spacing-4xl) 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 960px) {
  .team {
    padding: var(--spacing-xl) 0;
  }
}
.team__head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 960px) {
  .team__head {
    margin: 0 0 var(--spacing-xl) 0;
  }
}
.team__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 1.14;
  margin-bottom: var(--spacing-2xl);
  max-width: 150px;
  margin-top: 58px;
}
@media (max-width: 960px) {
  .team__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    margin: 0;
  }
}
.team__decoration {
  position: relative;
}
.team__decoration::after {
  content: "";
  width: 793px;
  height: 250px;
  display: block;
  position: absolute;
  top: calc(var(--spacing-4xl) * -1);
  left: calc(100% - 24.5vw);
  background: url("../images/team.png") top left no-repeat;
  pointer-events: none;
}
@media (max-width: 960px) {
  .team__decoration::after {
    display: none;
  }
}
.team-slider {
  position: relative;
}
.team-slider__slide {
  box-sizing: border-box;
}
.team-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 146px;
}
@media (max-width: 960px) {
  .team-slider__controls {
    margin: 0;
  }
}
.team-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: stroke 0.2s ease;
  stroke: var(--color-gray-1);
}
.team-slider__arrow:hover {
  stroke: var(--color-accent);
}
.team-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
.team-slider__arrow .team-slider__arrow-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .team-slider__controls {
    gap: 16px;
  }
  .team-slider__arrow {
    width: 40px;
    height: 40px;
  }
  .team-slider__arrow .team-slider__arrow-icon {
    width: 20px;
    height: 20px;
  }
}
.team-slider .team-member {
  width: 100%;
}
.team-slider .team-member .team-member__img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: var(--spacing-md);
}
.team-slider .team-member .team-member__name {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 4px;
  color: var(--color-dark);
}
.team-slider .team-member .team-member__position {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-gray-2);
}
.team-slider .team-member .team-member__phone, .team-slider .team-member .team-member__email {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-2);
}
.team-slider .team-member .team-member__phone:hover, .team-slider .team-member .team-member__email:hover {
  color: var(--color-accent);
}
.team-slider .team-member .team-member__email {
  color: var(--color-gray-1);
}
.jurisdictions {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-dark);
  color: var(--color-gray);
}
@media (max-width: 960px) {
  .jurisdictions {
    padding: var(--spacing-xl) 0;
  }
}
.jurisdictions__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: calc(64 / 56);
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .jurisdictions__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
}
.jurisdictions__title .jurisdictions__title-text {
  margin-bottom: var(--spacing-3xl);
}
@media (max-width: 960px) {
  .jurisdictions__title .jurisdictions__title-text {
    margin-bottom: 0;
  }
}
.jurisdictions__title .jurisdictions__title-mark {
  width: 100%;
  position: relative;
  display: block;
}
.jurisdictions__title .jurisdictions__title-mark::after {
  content: "";
  width: 100%;
  height: 728px;
  display: block;
  position: absolute;
  z-index: 1;
  background: url("../images/jurisdictions-heading.png") bottom right no-repeat;
  background-size: auto 100%;
  bottom: -41px;
  right: 6px;
}
@media (max-width: 960px) {
  .jurisdictions__title .jurisdictions__title-mark::after {
    width: 100%;
    margin-bottom: 0;
    height: 26px;
    background: url("../images/solution-heading-mobile.png") top right no-repeat;
    background-size: auto 100%;
    margin-right: -14px;
    margin-bottom: 10px;
    position: relative;
    bottom: auto;
  }
}
.jurisdictions__intro {
  max-width: 85%;
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: var(--spacing-3xl);
}
@media (max-width: 960px) {
  .jurisdictions__intro {
    font-size: 20px;
    line-height: 1.4;
    max-width: 70%;
  }
}
.jurisdictions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  padding-left: 100px;
}
.jurisdictions__grid::after {
  content: "";
  width: 62px;
  height: 268px;
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: url("../images/jurisdictions-grid.png") bottom right no-repeat;
  background-size: 100%;
}
@media (max-width: 960px) {
  .jurisdictions__grid::after {
    display: none;
  }
}
@media (min-width: 960px) {
  .jurisdictions__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .jurisdictions__grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .jurisdictions__grid {
    grid-template-columns: 1fr 1fr 288px;
    gap: 40px;
  }
}
.jurisdictions__col {
  min-width: 0;
}
.jurisdictions__tabs, .jurisdictions__children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jurisdictions__tabs .jurisdictions__item, .jurisdictions__children .jurisdictions__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 960px) {
  .jurisdictions__children {
    display: none;
  }
}
.jurisdictions__tab, .jurisdictions__child-tab {
  display: block;
  width: 100%;
  padding: 20px 0 20px var(--spacing-lg);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  stroke: var(--color-gray);
  color: var(--color-gray);
  position: relative;
  font-style: normal;
  font-weight: 283;
  font-size: 18px;
  line-height: calc(26 / 18);
}
.jurisdictions__tab:hover, .jurisdictions__child-tab:hover {
  color: #fff;
}
.jurisdictions__tab.is-active, .jurisdictions__child-tab.is-active {
  color: var(--color-accent);
  stroke: var(--color-accent);
}
.jurisdictions__tab.is-active::before {
  content: "";
  position: absolute;
  left: -100px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
}
.jurisdictions__children {
  display: none;
}
.jurisdictions__children.is-active {
  display: block;
}
.jurisdictions__detail {
  display: none;
  height: 100%;
}
.jurisdictions__detail.is-active {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
@media (max-width: 960px) {
  .jurisdictions__detail.is-active {
    display: none;
  }
}
.jurisdictions__detail-media {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--color-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.jurisdictions__detail-media .jurisdictions__detail-img {
  width: 100%;
  object-fit: cover;
}
.jurisdictions__detail-caption {
  padding: var(--spacing-lg);
  font-size: 32px;
  line-height: calc(40 / 32);
  color: var(--color-dark);
}
.jurisdictions__detail-btn {
  display: block;
}
.stay-in-loop {
  padding: var(--spacing-4xl) 0;
}
@media (max-width: 960px) {
  .stay-in-loop {
    padding: var(--spacing-xl) 0;
  }
}
.stay-in-loop__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-3xl);
}
@media (max-width: 960px) {
  .stay-in-loop__head {
    margin-bottom: var(--spacing-xl);
    align-items: flex-end;
  }
}
.stay-in-loop__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 64px;
}
@media (max-width: 960px) {
  .stay-in-loop__title {
    font-size: 32px;
    line-height: calc(40 / 32);
  }
}
.news-slider {
  position: relative;
}
.news-slider__slide {
  box-sizing: border-box;
  height: auto;
}
.news-slider__nav {
  margin-top: var(--spacing-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.news-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.news-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: stroke 0.2s ease;
  stroke: var(--color-gray-1);
}
.news-slider__arrow:hover {
  stroke: var(--color-accent);
}
.news-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
.news-slider__arrow .news-slider__arrow-icon {
  width: 40px;
  height: 40px;
}
.news-slider__pagination {
  --swiper-pagination-bullet-horizontal-gap: 12px;
  transform: translateX(-17%) !important;
}
.news-slider .swiper-pagination-bullet, .news-slider .swiper-pagination-bullet-active, .news-slider .swiper-pagination-bullet-active-main, .news-slider .swiper-pagination-bullet-active-prev, .news-slider .swiper-pagination-bullet-active-next, .news-slider .swiper-pagination-bullet-active-prev-prev, .news-slider .swiper-pagination-bullet-active-next-next {
  width: 8px;
  height: 8px;
  border-radius: 0;
  padding: 0;
  border: none;
  background-color: var(--color-gray-1);
  opacity: 1;
  cursor: pointer;
  transform: none;
  transition: background-color 0.2s ease;
}
.news-slider .swiper-pagination-bullet:hover, .news-slider .swiper-pagination-bullet-active:hover, .news-slider .swiper-pagination-bullet-active-main:hover, .news-slider .swiper-pagination-bullet-active-prev:hover, .news-slider .swiper-pagination-bullet-active-next:hover, .news-slider .swiper-pagination-bullet-active-prev-prev:hover, .news-slider .swiper-pagination-bullet-active-next-next:hover {
  background-color: var(--color-accent);
}
.news-slider .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}
@media (max-width: 767px) {
  .news-slider__controls {
    gap: 16px;
  }
  .news-slider__arrow {
    width: 40px;
    height: 40px;
  }
  .news-slider__arrow .news-slider__arrow-icon {
    width: 20px;
    height: 20px;
  }
}
.news-item {
  background: var(--color-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  color: var(--color-dark);
  text-decoration: none;
  cursor: pointer;
  height: 100%;
  transition: background-color 0.2s ease;
}
.news-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}
.news-item__expertise {
  font-size: 14px;
  line-height: 1;
  padding: 4px 8px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-item__date {
  font-size: 14px;
  color: var(--color-dark);
}
.news-item__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 24px;
  line-height: 1.25;
  margin-top: auto;
}
.news-item__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.66;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-image);
  background-color: var(--color-gray-1);
}
.contacts {
  padding: var(--spacing-md) 0 0;
  color: var(--color-gray);
}
.contacts__title {
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  color: var(--color-gray);
  margin-bottom: var(--spacing-2xl);
  font-style: normal;
  font-weight: 283;
}
@media (max-width: 960px) {
  .contacts__title {
    font-size: 56px;
    line-height: calc(64 / 56);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
  }
}
@media (max-width: 960px) {
  .contacts__title::after {
    content: "";
    width: 100%;
    height: 25px;
    display: inline-block;
    background: url("../images/contacts/line-3.svg") bottom right no-repeat;
    margin-bottom: 12px;
  }
}
.contacts__box {
  position: relative;
}
.contacts__box::before {
  content: "";
  width: 100%;
  height: 80%;
  background: var(--color-gray);
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.contacts__row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--spacing-xl);
  align-items: start;
  padding: 0 var(--spacing-5xl) var(--spacing-4xl);
  position: relative;
  z-index: 2;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .contacts__row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    padding: 0 0 var(--spacing-xl);
  }
}
@media (min-width: 961px) {
  .contacts__row::before {
    content: "";
    width: 60px;
    height: 100%;
    background: url("../images/contacts/line-1.svg") bottom left no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 961px) {
  .contacts__row::after {
    content: "";
    width: calc(100% - 550px);
    height: calc(100% + 125px);
    background: url("../images/contacts/line-2.svg") top right no-repeat;
    position: absolute;
    top: -125px;
    right: 0;
  }
}
.contacts__mapbox {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 400px;
}
@media (max-width: 960px) {
  .contacts__mapbox {
    width: 100%;
    max-width: 100%;
    gap: var(--spacing-md);
  }
}
.contacts__map {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--color-primary);
}
@media (max-width: 960px) {
  .contacts__map {
    height: auto;
    aspect-ratio: 1;
  }
}
.contacts__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(0.95);
}
.contacts__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.contacts__map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 60px;
  height: auto;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}
.contacts__address {
  font-size: 24px;
  line-height: calc(32 / 24);
  font-style: normal;
  font-weight: 283;
}
@media (max-width: 960px) {
  .contacts__address {
    font-size: 20px;
    line-height: 1.4;
  }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--spacing-lg);
}
@media (max-width: 960px) {
  .contacts__info {
    width: 100%;
  }
}
.contacts__image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
}
@media (max-width: 960px) {
  .contacts__image {
    height: auto;
    aspect-ratio: 1.55;
  }
}
.contacts__subtitle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--spacing-lg);
  font-size: 32px;
  line-height: calc(40 / 32);
  color: var(--color-gray);
}
.contacts__email, .contacts__phone {
  font-size: 24px;
  line-height: calc(32 / 24);
  transition: color 0.2s ease;
  font-style: normal;
  font-weight: 283;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}
@media (max-width: 960px) {
  .contacts__email, .contacts__phone {
    font-size: 20px;
    line-height: 1.4;
  }
}
.contacts__email:hover, .contacts__phone:hover {
  color: var(--color-accent);
}
.page-pages-about .hero-slider {
  z-index: -1;
}
.page-pages-about .hero-slider__slide {
  aspect-ratio: 2;
  padding-top: 148px;
}
@media (max-width: 960px) {
  .page-pages-about .hero-slider__slide {
    height: 100vh;
    max-width: calc(100vw - 28px);
  }
}
@media (max-width: 365px) {
  .page-pages-about .hero-slider__slide {
    max-height: 600px;
  }
}
.page-pages-about .hero-slider__video-inline {
  top: 0;
  right: 0;
  aspect-ratio: 0.56;
  height: 100%;
  width: auto;
}
@media (max-width: 960px) {
  .page-pages-about .hero-slider__video-inline {
    aspect-ratio: 1.77;
    height: auto;
    width: 100%;
    bottom: 0;
    top: auto;
    transform: scale(1, 1);
  }
}
.page-pages-about .hero-slider__video-inline video {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 0;
  object-fit: cover;
}
@media (min-width: 961px) {
  .page-pages-about .hero-slider__video-inline video {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(90deg) scale(1.786);
  }
}
.page-pages-about .hero-slider__title {
  max-width: 884px;
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  color: var(--color-dark);
}
@media (max-width: 1320px) {
  .page-pages-about .hero-slider__title {
    font-size: 56px;
    max-width: 70%;
  }
}
@media (max-width: 960px) {
  .page-pages-about .hero-slider__title {
    max-width: 332px;
    height: 80px;
    font-size: 32px;
    line-height: 1.25;
    margin-top: -10px;
    margin-bottom: var(--spacing-xs);
    max-width: 100%;
  }
}
.page-pages-about .hero-slider__subtitle {
  max-width: 627px;
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-dark);
}
@media (max-width: 1320px) {
  .page-pages-about .hero-slider__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .page-pages-about .hero-slider__subtitle {
    font-size: 18px;
    line-height: 1.44;
    margin-bottom: var(--spacing-lg);
  }
}
.pageabout {
  width: 100%;
  overflow: hidden;
  margin-top: -148px;
}
.pageabout__story {
  position: relative;
}
.pageabout__story-heading {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 80px;
  line-height: 1.1;
  color: var(--color-gray);
  margin-bottom: var(--spacing-4xl);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__story-heading {
    font-size: 48px;
    line-height: 1.17;
  }
}
.pageabout__story h2 {
  margin-top: var(--spacing-4xl);
  position: relative;
}
@media (max-width: 960px) {
  .pageabout__story h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    display: flex;
    gap: var(--spacing-lg);
    justify-content: space-between;
    align-items: flex-end;
  }
  .pageabout__story h2::after {
    content: "";
    width: 66px;
    height: 66px;
    display: block;
    margin-bottom: -37px;
    background: url("/assets/images/about/about-m-1.svg") top right no-repeat;
  }
}
.pageabout__story-list {
  margin-left: 23vw;
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__story-list {
    margin-left: 0;
  }
}
.pageabout__story-item:not(:last-child) {
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .pageabout__story-item:not(:last-child) {
    margin-bottom: var(--spacing-3xl);
  }
}
.pageabout__story-item:first-child {
  position: relative;
}
.pageabout__story-item:first-child::before {
  content: "";
  width: 165px;
  height: 165px;
  display: block;
  position: absolute;
  right: calc(100% + 42px);
  bottom: 30px;
  background: url("/assets/images/about/about-1.svg") center no-repeat;
  background-size: contain;
}
@media (max-width: 960px) {
  .pageabout__story-item:first-child::before {
    display: none;
  }
}
@media (max-width: 960px) {
  .pageabout__story-item:first-child .pageabout__story-text {
    max-width: 100%;
  }
}
.pageabout__story-item:first-child .pageabout__story-text::after {
  content: "";
  width: 165px;
  height: 165px;
  display: block;
  position: absolute;
  left: calc(100% + 42px);
  top: 0;
  background: url("/assets/images/about/about-1.svg") center no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  z-index: 2;
}
@media (max-width: 960px) {
  .pageabout__story-item:first-child .pageabout__story-text::after {
    display: none;
  }
}
.pageabout__story-item:nth-child(2) {
  margin-left: 89px;
  position: relative;
}
@media (max-width: 960px) {
  .pageabout__story-item:nth-child(2) {
    margin-left: 0;
  }
  .pageabout__story-item:nth-child(2) .pageabout__story-title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: nowrap;
  }
  .pageabout__story-item:nth-child(2) .pageabout__story-title h3 {
    white-space: nowrap;
  }
  .pageabout__story-item:nth-child(2) .pageabout__story-title::after {
    content: "";
    width: 100%;
    height: 66px;
    display: block;
    background: url("/assets/images/about/about-m-2.svg") bottom right no-repeat;
    margin-left: var(--spacing-lg);
    top: -16px;
    position: relative;
  }
}
.pageabout__story-item:nth-child(2)::before {
  content: "";
  width: 458px;
  height: 704px;
  display: block;
  position: absolute;
  left: -224px;
  top: 44px;
  background: url("/assets/images/about/about-2.svg") center no-repeat;
}
@media (max-width: 960px) {
  .pageabout__story-item:nth-child(2)::before {
    display: none;
  }
}
.pageabout__story-item:nth-child(3) {
  margin-left: 400px;
  padding-bottom: 108px;
  position: relative;
  z-index: 4;
}
@media (max-width: 960px) {
  .pageabout__story-item:nth-child(3) {
    margin-left: 0;
    padding-bottom: var(--spacing-3xl);
  }
  .pageabout__story-item:nth-child(3) .pageabout__story-title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: nowrap;
    position: relative;
  }
  .pageabout__story-item:nth-child(3) .pageabout__story-title h3 {
    white-space: nowrap;
  }
  .pageabout__story-item:nth-child(3) .pageabout__story-title::after {
    content: "";
    width: 165px;
    height: 288px;
    display: block;
    background: url("/assets/images/about/about-m-2.svg") bottom right no-repeat;
    margin-left: var(--spacing-lg);
    bottom: 16px;
    position: absolute;
    right: 0;
  }
}
.pageabout__story-title {
  margin-bottom: var(--spacing-lg);
}
.pageabout__story-title h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  color: var(--color-gray);
}
@media (max-width: 960px) {
  .pageabout__story-title h3 {
    font-size: 56px;
    line-height: 1.14;
  }
}
.pageabout__story-title h3 strong {
  color: var(--color-accent);
  font-weight: normal;
}
.pageabout__story-text {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 283;
  font-size: 18px;
  line-height: 1.44;
  display: inline-block;
  color: var(--color-gray-2);
  position: relative;
  background: var(--color-dark);
}
@media (max-width: 960px) {
  .pageabout__story-text {
    font-size: 18px;
    line-height: 1.44;
    max-width: 80%;
  }
  .pageabout__story-text br {
    display: none;
  }
}
.pageabout__story-video-inline {
  position: absolute;
  width: 99.6vw;
  max-width: 1361px;
  bottom: 0;
  right: 57%;
  height: auto;
  aspect-ratio: 2.133;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 960px) {
  .pageabout__story-video-inline {
    display: none;
  }
}
.pageabout__story-video-inline video {
  width: 100%;
  height: auto;
}
.pageabout__benefits {
  background: var(--color-gray);
  padding-top: var(--spacing-4xl);
  position: relative;
}
@media (max-width: 960px) {
  .pageabout__benefits {
    padding-top: var(--spacing-2xl);
  }
}
.pageabout__benefits::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .pageabout__benefits::before {
    left: -14px;
  }
}
.pageabout__benefits::after {
  content: "";
  width: 328px;
  height: 712px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("/assets/images/about/about-3.png") top right no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1320px) {
  .pageabout__benefits::after {
    display: none;
  }
}
.pageabout__benefits-heading {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 1.14;
  position: relative;
  z-index: 2;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .pageabout__benefits-heading {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: var(--spacing-lg);
    white-space: nowrap;
  }
  .pageabout__benefits-heading::after {
    content: "";
    width: 100%;
    height: 26px;
    display: block;
    position: relative;
    background: url("/assets/images/about/about-m-2.svg") bottom left no-repeat;
    margin-right: -14px;
  }
}
.pageabout__benefits-list {
  margin-top: -15px;
  position: relative;
  z-index: 3;
  max-width: 730px;
  margin-left: auto;
}
@media (max-width: 1400px) {
  .pageabout__benefits-list {
    max-width: 880px;
  }
}
@media (max-width: 960px) {
  .pageabout__benefits-list {
    margin-top: 0;
  }
}
.pageabout__benefits-item {
  background: var(--color-dark);
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 14px;
  border-left: 12px solid var(--color-accent);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-lg);
}
@media (max-width: 960px) {
  .pageabout__benefits-item {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 18px;
    border-left: 6px solid var(--color-accent);
  }
}
.pageabout__benefits-item:not(:last-child) {
  margin-bottom: var(--spacing-md);
}
.pageabout__benefits-num {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-gray);
}
.pageabout__benefits-text {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-gray);
}
@media (max-width: 960px) {
  .pageabout__benefits-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.pageabout__company {
  background: var(--color-gray);
  position: relative;
  overflow: hidden;
}
.pageabout__company::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .pageabout__company::before {
    left: -14px;
  }
}
.pageabout__company .container {
  position: relative;
}
.pageabout__company .container::before {
  content: "";
  width: 150px;
  height: 100%;
  display: block;
  position: absolute;
  top: 30px;
  left: -137px;
  background: url("/assets/images/about/about-5.svg") top left no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .pageabout__company .container::before {
    display: none;
  }
}
.pageabout__company-heading {
  position: relative;
  z-index: 3;
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 1.14;
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-6xl);
  margin-bottom: var(--spacing-lg);
}
@media (max-width: 960px) {
  .pageabout__company-heading {
    margin-top: var(--spacing-2xl);
    font-size: 32px;
    line-height: 1.25;
  }
}
.pageabout__company-heading span {
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .pageabout__company-heading span {
    margin-bottom: 0;
  }
}
.pageabout__company-heading::after {
  content: "";
  width: 100%;
  height: 260px;
  display: block;
  position: relative;
  background: url("/assets/images/about/about-4.svg") bottom right no-repeat;
}
@media (max-width: 960px) {
  .pageabout__company-heading::after {
    display: none;
  }
}
.pageabout__company-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 71px;
  position: relative;
  z-index: 3;
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 1320px) {
  .pageabout__company-list {
    gap: var(--spacing-xl);
  }
}
@media (max-width: 960px) {
  .pageabout__company-list {
    flex-direction: column;
  }
}
.pageabout__company-item {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}
.pageabout__company-item:first-child {
  padding-right: 75px;
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-dark);
}
@media (max-width: 1320px) {
  .pageabout__company-item:first-child {
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .pageabout__company-item:first-child {
    font-size: 24px;
    line-height: 1.33;
    padding-right: 0;
  }
}
.pageabout__awards {
  background: var(--color-gray);
  position: relative;
  overflow: hidden;
}
.pageabout__awards::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .pageabout__awards::before {
    left: -14px;
  }
}
.pageabout__awards::after {
  content: "";
  width: 336px;
  height: 512px;
  display: block;
  position: absolute;
  top: 85px;
  left: 0;
  background: url("/assets/images/about/about-6.png") top right no-repeat;
  z-index: 3;
  pointer-events: none;
  background-size: auto 100%;
}
@media (max-width: 1400px) {
  .pageabout__awards::after {
    display: none;
  }
}
.pageabout__awards .container {
  position: relative;
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .pageabout__awards .container {
    padding-bottom: var(--spacing-xl);
  }
}
.pageabout__awards .container::before {
  content: "";
  width: 150px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -137px;
  background: url("/assets/images/about/about-5.svg") bottom left no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1320px) {
  .pageabout__awards .container::before {
    display: none;
  }
}
.pageabout__awards-heading {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__awards-heading {
    margin-bottom: var(--spacing-xl);
  }
}
.pageabout__awards .awards-slider {
  z-index: 4;
}
.pageabout__awards .awards-slider-box {
  position: relative;
}
.pageabout__awards .awards-slider-box::before {
  content: "";
  width: 150px;
  height: 150px;
  display: block;
  position: absolute;
  left: -150px;
  top: 10px;
  background: url("/assets/images/about/about-5.svg") top left no-repeat;
  background-size: 100%;
  z-index: 3;
  transform: rotate(270deg);
}
@media (max-width: 1320px) {
  .pageabout__awards .awards-slider-box::before {
    display: none;
  }
}
.pageabout__awards .awards-slider-box::after {
  content: "";
  width: 150px;
  height: 100%;
  display: block;
  position: absolute;
  right: -150px;
  top: 156px;
  background: url("/assets/images/about/about-5.svg") top left no-repeat;
  background-size: 100%;
  z-index: 3;
  transform: scaleX(-1);
}
@media (max-width: 1320px) {
  .pageabout__awards .awards-slider-box::after {
    display: none;
  }
}
.pageabout__awards .awards-slider__slide {
  max-width: 400px;
}
.pageabout__awards .awards-slider__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__awards .awards-slider__navigation {
    margin-top: var(--spacing-xs);
  }
}
.pageabout__awards .awards-slider__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
@media (max-width: 960px) {
  .pageabout__awards .awards-slider__nav {
    display: none;
  }
}
.pageabout__awards .awards-slider__arrow {
  stroke: var(--color-dark);
}
.pageabout__awards .awards-slider__pagination {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pageabout__awards .awards-slider__pagination .awards-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  padding: 0;
  border: none;
  background-color: var(--color-dark);
  opacity: 0.35;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.pageabout__awards .awards-slider__pagination .awards-slider__dot:hover {
  background-color: var(--color-accent);
  opacity: 1;
}
.pageabout__awards .awards-slider__pagination .awards-slider__dot.is-active {
  background-color: var(--color-accent);
  opacity: 1;
}
@media (max-width: 767px) {
  .pageabout__awards .awards-slider__navigation {
    flex-direction: column-reverse;
    gap: var(--spacing-md);
  }
  .pageabout__awards .awards-slider__arrow {
    width: 40px;
    height: 40px;
  }
  .pageabout__awards .awards-slider__arrow .awards-slider__arrow-icon {
    width: 20px;
    height: 20px;
  }
}
.pageabout__awards .award-card {
  background: none;
  padding: 0;
  clip-path: none;
}
.pageabout__awards .award-card__logo {
  width: 100%;
  margin-bottom: var(--spacing-md);
}
.pageabout__awards .award-card__content {
  height: auto;
}
.pageabout__awards .award-card__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-gray-1);
  margin-bottom: var(--spacing-xs);
}
.pageabout__awards .award-card__text {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  color: var(--color-dark);
}
.pageabout__philosophy {
  padding-top: var(--spacing-4xl);
  padding-bottom: 112px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .pageabout__philosophy {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.pageabout__philosophy .container {
  position: relative;
}
.pageabout__philosophy-heading {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 56px;
  line-height: 1.14;
  color: var(--color-gray);
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__philosophy-heading {
    margin-bottom: var(--spacing-xl);
    font-size: 32px;
    line-height: 1.25;
  }
}
.pageabout__philosophy-video {
  position: absolute;
  top: -20px;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .pageabout__philosophy-video {
    display: none;
  }
}
.pageabout__philosophy-video-inline {
  width: 53vw;
  position: absolute;
  z-index: 1;
  height: auto;
  top: -223px;
  right: -29vw;
}
.pageabout__philosophy-video-inline video {
  width: 100%;
}
.pageabout__philosophy-box {
  position: relative;
}
.pageabout__philosophy-box::before {
  content: "";
  width: 150px;
  height: 250px;
  background: url("/assets/images/about/about-7.svg") bottom left no-repeat;
  position: absolute;
  left: -150px;
  bottom: calc(100% - 33px);
  z-index: 2;
}
@media (max-width: 960px) {
  .pageabout__philosophy-box::before {
    display: none;
  }
}
.pageabout__philosophy-box::after {
  content: "";
  width: 150px;
  height: 250px;
  background: url("/assets/images/about/about-7.svg") bottom left no-repeat;
  position: absolute;
  left: -150px;
  top: calc(100% - 33px);
  z-index: 2;
  transform: scale(1, -1);
}
@media (max-width: 960px) {
  .pageabout__philosophy-box::after {
    display: none;
  }
}
.pageabout__philosophy-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
  position: relative;
}
@media (max-width: 960px) {
  .pageabout__philosophy-list {
    flex-direction: column;
    gap: 8px;
  }
}
.pageabout__philosophy-list::before {
  content: "";
  width: 150px;
  height: 250px;
  background: url("/assets/images/about/about-7.svg") bottom left no-repeat;
  position: absolute;
  right: -150px;
  bottom: calc(100% - 33px);
  z-index: 2;
  transform: scale(-1, 1);
}
@media (max-width: 960px) {
  .pageabout__philosophy-list::before {
    display: none;
  }
}
.pageabout__philosophy-item {
  width: calc(33.3% - ((40px * 2) / 3));
  padding: var(--spacing-lg);
  box-sizing: border-box;
  background: var(--color-gray);
  color: var(--color-dark);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .pageabout__philosophy-item {
    width: 100%;
  }
}
.pageabout__philosophy-num {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  display: inline-block;
}
.pageabout__philosophy-title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: var(--spacing-md);
}
@media (max-width: 960px) {
  .pageabout__philosophy-title {
    font-size: 24px;
    line-height: 1.33;
  }
}
.pageabout__philosophy-text {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 16px;
  line-height: 1.5;
}
.cases-page {
  background: var(--color-dark);
  color: var(--color-gray);
  width: 100%;
  overflow: hidden;
}
.cases-page__container {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .cases-page__container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.cases-page__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  color: var(--color-gray);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 960px) {
  .cases-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
  }
}
.cases-page__title span {
  flex-shrink: 0;
  padding-bottom: var(--spacing-4xl);
  display: inline-block;
}
@media (max-width: 960px) {
  .cases-page__title span {
    max-width: 210px;
    padding-bottom: var(--spacing-xl);
  }
}
.cases-page__title::before {
  content: "";
  width: 150px;
  height: 150px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -184px;
  background: url("../images/cases/head-left.png") top left no-repeat;
}
@media (max-width: 960px) {
  .cases-page__title::before {
    display: none;
  }
}
.cases-page__title::after {
  content: "";
  width: 100%;
  height: 150px;
  display: block;
  position: relative;
  margin-left: var(--spacing-2xl);
  background: url("../images/cases/head-right.png") top right no-repeat;
  overflow: hidden;
  margin-right: -75px;
}
@media (max-width: 960px) {
  .cases-page__title::after {
    height: 40px;
    margin-left: var(--spacing-xl);
    margin-right: -14px;
    background: url("../images/cases/title-mob.png") top right repeat-x;
    margin-bottom: var(--spacing-xl);
  }
}
.cases-page__box {
  background: var(--color-gray);
  position: relative;
}
.cases-page__box::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
}
.cases-page__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
  position: relative;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-2xl);
}
@media (min-width: 960px) {
  .cases-page__body {
    min-height: 1300px;
  }
}
@media (max-width: 960px) {
  .cases-page__body {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}
.cases-page__body::before {
  content: "";
  width: 488px;
  height: calc(100% - var(--spacing-4xl));
  max-height: 1464px;
  position: absolute;
  background: url("../images/cases/body-left.png") left bottom no-repeat;
  left: -189px;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 960px) {
  .cases-page__body::before {
    display: none;
  }
}
.cases-page__body::after {
  content: "";
  width: 49px;
  height: 100%;
  position: absolute;
  background: url("../images/cases/body-right.png") right bottom repeat-y;
  right: -75px;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 960px) {
  .cases-page__body::after {
    display: none;
  }
}
.cases-filter {
  position: sticky;
  top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  z-index: 5;
}
@media (max-width: 960px) {
  .cases-filter {
    position: static;
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }
}
.cases-filter__group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.cases-filter__label {
  font-family: var(--font-light);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-2);
}
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  width: 100%;
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--color-dark);
  background-color: var(--color-gray);
  border: 1px solid var(--color-gray-1);
  border-radius: 0;
  padding: var(--spacing-md);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.custom-select__trigger:hover, .custom-select__trigger:focus {
  outline: none;
  border-color: var(--color-accent);
}
.custom-select__value {
  text-align: left;
}
.custom-select__arrow {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--color-accent);
  border-bottom: 0;
  transition: transform 0.2s ease;
}
.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--color-gray);
  border: 1px solid var(--color-gray-1);
  z-index: 20;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 16px;
  color: var(--color-dark);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.custom-select__option:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
}
.custom-select__option.is-selected {
  background-color: var(--color-accent);
  color: var(--color-dark);
}
.cases-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  z-index: 4;
  position: relative;
}
.cases-list__empty {
  color: var(--color-gray-2);
  font-size: 18px;
}
.cases-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: var(--spacing-xl) 0 0;
  position: relative;
  z-index: 4;
}
.cases-more {
  font-family: var(--font-medium);
  font-size: 16px;
  color: var(--color-dark);
  background: transparent;
  border: 1px solid var(--color-gray-1);
  border-radius: 0;
  padding: var(--spacing-md) var(--spacing-2xl);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cases-more:hover:not(:disabled) {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}
.cases-more:disabled {
  cursor: default;
  opacity: 0.7;
}
.case-card {
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-xl) var(--spacing-2xl);
  display: flex;
  flex-direction: column;
}
@media (max-width: 960px) {
  .case-card {
    padding: var(--spacing-lg);
  }
}
.case-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: 14px;
  margin-bottom: var(--spacing-md);
}
.case-card__country {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 2px 8px 1px;
  border-radius: 16px;
  box-sizing: border-box;
}
.case-card__expertise {
  position: relative;
  padding: 2px 8px 1px;
  border-radius: 16px;
  box-sizing: border-box;
  border: 1px solid var(--color-accent);
}
.case-card__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 48px;
  line-height: calc(56 / 48);
  margin-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .case-card__title {
    font-size: 32px;
    line-height: calc(40 / 32);
    margin-bottom: var(--spacing-xl);
  }
}
.case-card__client {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--spacing-lg);
}
.case-card__client-label {
  font-size: 14px;
  line-height: calc(22 / 14);
  color: var(--color-gray-2);
}
.case-card__client-name {
  font-size: 16px;
  line-height: calc(24 / 16);
  color: var(--color-gray-3);
}
.case-card__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.case-card__details-inner {
  overflow: hidden;
  min-height: 0;
}
.case-card.is-open .case-card__details {
  grid-template-rows: 1fr;
  padding-bottom: var(--spacing-lg);
}
.case-card__section {
  margin-top: var(--spacing-md);
}
.case-card__section:first-child {
  margin-top: 0;
}
.case-card__section-title {
  font-size: 14px;
  line-height: calc(22 / 14);
  margin-bottom: var(--spacing-xs);
  font-style: normal;
  font-weight: 283;
  color: var(--color-gray-2);
}
.case-card__section-text {
  font-size: 16px;
  line-height: 1.5;
}
.case-card__section-text p {
  margin-bottom: 1em;
}
.case-card__section-text p:last-child {
  margin-bottom: 0;
}
.case-card__toggle {
  font-family: var(--font-family);
  align-self: flex-start;
  font-size: 16px;
  line-height: calc(24 / 16);
  background: transparent;
  display: block;
  padding: 11px var(--spacing-lg);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  text-align: center;
  color: var(--color-gray-3);
  border: 1px solid var(--color-gray);
  font-style: normal;
  font-weight: 283;
}
.case-card__toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.cases-more {
  padding: 11px var(--spacing-lg);
  border: 1px solid var(--color-gray-1);
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: var(--spacing-lg);
  background: transparent;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.5;
  transition: 0.3s;
}
.cases-more:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  cursor: pointer;
}
.cases-animation {
  position: absolute;
  height: calc(100% - var(--spacing-4xl));
  max-height: 1464px;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 960px) {
  .cases-animation {
    display: none;
  }
}
.cases-animation__video-inline {
  position: absolute;
  bottom: 0;
  left: -670px;
  width: 1512px;
  height: 850px;
  transform: rotate(-33deg);
  overflow: hidden;
}
.cases-animation__video-inline video {
  width: 100%;
  height: 100%;
  position: relative;
  bottom: -2px;
}
.team-page {
  padding: var(--spacing-4xl) 0 var(--spacing-2xl);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .team-page {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
  }
}
.team-page__title {
  font-family: var(--font-light);
  font-style: normal;
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
}
@media (max-width: 960px) {
  .team-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
    gap: var(--spacing-xs);
  }
}
.team-page__title span {
  display: inline-block;
  flex-shrink: 0;
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .team-page__title span {
    max-width: 180px;
    padding-bottom: var(--spacing-md);
  }
}
.team-page__title::after {
  content: "";
  width: 100%;
  height: 156px;
  display: block;
  position: relative;
  background: url("../images/team/title.png") top right no-repeat;
  margin-right: -75px;
}
@media (max-width: 960px) {
  .team-page__title::after {
    height: 30px;
    background: url("../images/team/title-mob.png") top right no-repeat;
    margin-right: -14px;
    margin-bottom: var(--spacing-5xl);
    margin-left: calc(var(--spacing-xl) * -1);
  }
}
.team-page__intro {
  max-width: 720px;
  padding-bottom: var(--spacing-4xl);
  font-size: 32px;
  line-height: calc(40 / 32);
  color: var(--color-gray-2);
  margin-right: 105px;
  max-width: 515px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 960px) {
  .team-page__intro {
    padding-bottom: var(--spacing-xl);
    font-size: 20px;
    line-height: 1.4;
  }
}
.team-page__intro :last-child {
  margin-bottom: 0;
}
.team-page__intro::after {
  content: "";
  pointer-events: none;
  width: 49px;
  height: 100%;
  background: url("../images/team/body.png") top left repeat-y;
  position: absolute;
  right: -166px;
  top: 0;
}
@media (max-width: 960px) {
  .team-page__intro::after {
    display: none;
  }
}
.team-page__empty {
  font-size: 16px;
  color: var(--color-gray-2);
}
@media (max-width: 960px) {
  .team-page__empty {
    display: none;
  }
}
.team-grid {
  background: var(--color-gray);
  position: relative;
  padding-top: var(--spacing-4xl);
  position: relative;
}
@media (max-width: 960px) {
  .team-grid {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
}
.team-grid::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .team-grid::before {
    left: -14px;
  }
}
.team-grid::after {
  content: "";
  pointer-events: none;
  width: 49px;
  height: 100%;
  background: url("../images/team/body.png") top left repeat-y;
  position: absolute;
  right: -62px;
  top: 0;
  z-index: 2;
}
@media (max-width: 960px) {
  .team-grid::after {
    display: none;
  }
}
.team-grid__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .team-grid__row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
}
@media (max-width: 560px) {
  .team-grid__row {
    grid-template-columns: 1fr;
  }
}
.team-grid__row:nth-child(odd) .team-grid__cell--empty:last-child span::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--spacing-xl) * -1);
  width: calc(100% + var(--spacing-xl) + 68px);
  height: 100%;
  background: url("../images/team/line-1.png") bottom right no-repeat;
  z-index: 2;
}
.team-grid__row:nth-child(even) .team-grid__cell--empty:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--spacing-xl) * -1);
  width: calc(100% + var(--spacing-xl));
  height: 100%;
  background: url("../images/team/line-2.png") top left no-repeat;
  z-index: 2;
}
.team-grid__cell {
  min-height: 1px;
  padding-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .team-grid__cell {
    padding-bottom: 0;
  }
}
.team-grid__cell--empty {
  position: relative;
}
.team-grid__cell--empty span {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  position: relative;
}
@media (max-width: 960px) {
  .team-grid__cell--empty {
    display: none;
  }
}
.member-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.member-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-gray-2);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 3;
}
.member-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 3;
}
.member-card__name {
  font-style: normal;
  font-weight: 283;
  font-size: 24px;
  line-height: calc(32 / 24);
  color: var(--color-dark);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .member-card__name {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.member-card__position {
  font-style: normal;
  font-weight: 283;
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-gray-1);
  position: relative;
  z-index: 3;
}
.member-detail {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .member-detail {
    padding: 0 0 var(--spacing-2xl);
  }
}
.member-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: calc(22 / 14);
  text-decoration: none;
  margin-bottom: var(--spacing-xl);
  transition: color 0.2s ease;
  color: var(--color-gray-1);
  cursor: pointer;
}
.member-detail__back:hover {
  color: var(--color-accent);
}
.member-detail__back span {
  color: var(--color-accent);
}
@media (max-width: 960px) {
  .member-detail__back {
    margin-bottom: var(--spacing-md);
  }
}
.member-detail__layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: var(--spacing-5xl);
  align-items: start;
  position: relative;
}
@media (max-width: 960px) {
  .member-detail__layout {
    display: block;
    width: 100%;
  }
}
@media (max-width: 960px) {
  .member-detail__layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}
.member-detail__aside {
  position: sticky;
  top: 40px;
  z-index: 3;
}
@media (max-width: 960px) {
  .member-detail__aside {
    position: static;
    top: auto;
    margin-bottom: var(--spacing-lg);
  }
}
.member-detail__aside-inner {
  display: flex;
  flex-direction: column;
}
.member-detail__photo {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-gray);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .member-detail__photo {
    aspect-ratio: 1;
    max-width: 400px;
  }
}
.member-detail__aside-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
  margin-bottom: var(--spacing-2xl);
}
.member-detail.is-scrolled .member-detail__aside-info {
  max-height: 200px;
  opacity: 1;
  margin-top: var(--spacing-md);
}
@media (max-width: 960px) {
  .member-detail.is-scrolled .member-detail__aside-info {
    display: none;
  }
}
.member-detail__aside-name {
  font-family: var(--font-light);
  color: var(--color-dark);
  font-weight: 283;
  font-size: 24px;
  line-height: calc(32 / 24);
  margin: 0 0 4px;
}
.member-detail__aside-position {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: var(--color-gray-1);
  margin: 0;
  max-width: 90%;
}
.member-detail__main {
  position: relative;
  z-index: 2;
}
.member-detail__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: 1;
  margin: 0 0 var(--spacing-lg);
}
.member-detail__title span {
  display: block;
}
@media (max-width: 960px) {
  .member-detail__title {
    line-height: 1.14;
  }
}
.member-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spacing-md);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 158px;
  max-width: 552px;
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .member-detail__meta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
  }
}
.member-detail__position {
  color: var(--color-gray-2);
}
@media (max-width: 960px) {
  .member-detail__position {
    max-width: 80%;
  }
}
.member-detail__email {
  color: var(--color-gray-2);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  align-items: center;
}
.member-detail__email::before {
  content: "";
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0IDNIMkMxLjczNDc4IDMgMS40ODA0MyAzLjEwNTM2IDEuMjkyODkgMy4yOTI4OUMxLjEwNTM2IDMuNDgwNDMgMSAzLjczNDc4IDEgNFYxMkMxIDEyLjI2NTIgMS4xMDUzNiAxMi41MTk2IDEuMjkyODkgMTIuNzA3MUMxLjQ4MDQzIDEyLjg5NDYgMS43MzQ3OCAxMyAyIDEzSDE0QzE0LjI2NTIgMTMgMTQuNTE5NiAxMi44OTQ2IDE0LjcwNzEgMTIuNzA3MUMxNC44OTQ2IDEyLjUxOTYgMTUgMTIuMjY1MiAxNSAxMlY0QzE1IDMuNzM0NzggMTQuODk0NiAzLjQ4MDQzIDE0LjcwNzEgMy4yOTI4OUMxNC41MTk2IDMuMTA1MzYgMTQuMjY1MiAzIDE0IDNaTTEyLjkgNEw4IDcuMzlMMy4xIDRIMTIuOVpNMiAxMlY0LjQ1NUw3LjcxNSA4LjQxQzcuNzk4NyA4LjQ2ODA2IDcuODk4MTMgOC40OTkxOCA4IDguNDk5MThDOC4xMDE4NyA4LjQ5OTE4IDguMjAxMyA4LjQ2ODA2IDguMjg1IDguNDFMMTQgNC40NTVWMTJIMloiIGZpbGw9IiMyRUQ5QzMiLz4KPC9zdmc+Cg==)  center no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  pointer-events: none;
}
.member-detail__email:hover {
  color: var(--color-accent);
}
.member-detail__description {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-dark);
  padding: 0 0 var(--spacing-2xl);
  max-width: 700px;
  position: relative;
  padding-top: var(--spacing-md);
}
@media (max-width: 960px) {
  .member-detail__description {
    padding-top: var(--spacing-xl);
    font-size: 18px;
    line-height: calc(26 / 18);
    margin-bottom: 0;
    padding-bottom: var(--spacing-lg);
  }
}
.member-detail__description p {
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
.member-detail__description p:last-child {
  margin-bottom: 0;
}
.member-detail__slider-head {
  display: flex;
  justify-content: flex-start;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .member-detail__slider-head {
    align-items: center;
  }
}
.member-detail__slider-title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .member-detail__slider-title {
    font-size: 24px;
  }
}
.member-detail__description, .member-detail__accordion, .member-detail__video, .member-detail__awards {
  position: relative;
}
.member-detail__description::before, .member-detail__accordion::before, .member-detail__video::before, .member-detail__awards::before {
  content: "";
  width: 200vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 960px) {
  .member-detail__description::before, .member-detail__accordion::before, .member-detail__video::before, .member-detail__awards::before {
    left: -14px;
    right: auto;
  }
}
.member-detail__accordion, .member-detail__video, .member-detail__awards, .member-detail__cases {
  padding-bottom: var(--spacing-xl);
  width: 100%;
}
@media (max-width: 960px) {
  .member-detail__accordion, .member-detail__video, .member-detail__awards, .member-detail__cases {
    padding-bottom: var(--spacing-lg);
    margin-bottom: 0;
  }
}
.member-detail__awards {
  position: relative;
}
.member-detail .case-studies {
  position: relative;
}
.member-accordion {
  position: relative;
}
@media (max-width: 960px) {
  .member-accordion {
    padding-bottom: var(--spacing-md);
  }
}
.member-accordion__item {
  position: relative;
  z-index: 2;
}
.member-accordion__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-2);
}
.member-accordion__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--spacing-md) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: var(--spacing-lg);
}
.member-accordion__toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--color-dark);
  position: relative;
}
.member-accordion__heading {
  font-size: 18px;
  line-height: calc(26 / 18);
  font-weight: 400;
  color: var(--color-dark);
  padding-right: var(--spacing-md);
  margin-right: auto;
}
.member-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.member-accordion__icon::before, .member-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.member-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.member-accordion__item.is-open .member-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.member-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.member-accordion__item.is-open .member-accordion__content {
  max-height: 600px;
}
.member-accordion__content-inner {
  padding: 0 calc(var(--spacing-lg) + 16px) var(--spacing-md) calc(var(--spacing-lg) + 8px);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
}
.member-accordion__content-inner p, .member-accordion__content-inner ul {
  margin-bottom: 1em;
}
.member-accordion__content-inner ul:last-child, .member-accordion__content-inner p:last-child {
  margin-bottom: 0;
}
.member-detail__video {
  width: 100%;
  position: relative;
}
@media (max-width: 960px) {
  .member-detail__video {
    padding-bottom: var(--spacing-md);
    max-width: 100%;
  }
}
.member-detail__video-box {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.7777777778;
  background-color: var(--color-dark);
  overflow: hidden;
}
.member-detail__video-box iframe {
  position: relative;
  z-index: 2;
}
.member-detail__video-title {
  font-size: 32px;
  line-height: calc(40 / 32);
  font-weight: 283;
  font-style: normal;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
}
.member-detail__video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  background: var(--color-gray-2);
}
.member-detail__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s ease, transform 0.2s ease;
}
.member-detail__video-play:hover {
  color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.member-detail__video-play svg {
  display: block;
  width: 100%;
  height: 100%;
}
.member-detail__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.member-detail__video.is-playing .member-detail__video-poster, .member-detail__video.is-playing .member-detail__video-play {
  display: none;
}
.awards-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.awards-slider__slide {
  box-sizing: border-box;
  height: auto;
  max-width: 235px;
}
.awards-slider__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.awards-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: stroke 0.2s ease;
  stroke: var(--color-gray-1);
}
.awards-slider__arrow:hover {
  stroke: var(--color-accent);
}
.awards-slider__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
.awards-slider__arrow .awards-slider__arrow-icon {
  width: 40px;
  height: 40px;
}
.award-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 24px 12px 16px;
  background: var(--color-dark);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.award-card__year {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 12px;
  line-height: calc(20 / 12);
  color: var(--color-accent);
}
.award-card__title {
  font-size: 14px;
  line-height: calc(22 / 14);
  font-weight: 400;
  color: var(--color-gray);
  margin: 0 0 4px;
}
.award-card__content {
  height: 66px;
  overflow: hidden;
}
.award-card__text {
  font-size: 12px;
  line-height: calc(20 / 12);
  color: var(--color-gray);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.award-card__text p:last-child {
  margin-bottom: 0;
}
.award-card:hover .award-card__content {
  overflow-y: auto;
}
.award-card:hover .award-card__text {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  display: block;
}
.solutions-page {
  width: 100%;
  overflow: hidden;
}
.solutions-page__container {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-4xl);
}
.solutions-page__title {
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  font-weight: normal;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--spacing-lg);
}
@media (max-width: 960px) {
  .solutions-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
  }
}
.solutions-page__title span {
  padding-bottom: var(--spacing-3xl);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .solutions-page__title span {
    padding-bottom: var(--spacing-lg);
  }
}
.solutions-page__title::after {
  content: "";
  width: 100%;
  height: 156px;
  margin-bottom: -15px;
  display: block;
  margin-right: -79px;
  background: url("../images/solutions/title.png") top right no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .solutions-page__title::after {
    background: url("../images/solutions/title-mob.png") top left repeat-x;
    margin-right: -14px;
    height: 56px;
    margin-bottom: auto;
    margin-top: 24px;
  }
}
.solutions-page__filters {
  padding-bottom: var(--spacing-2xl);
  position: relative;
}
@media (max-width: 960px) {
  .solutions-page__filters {
    overflow: auto;
  }
}
.solutions-page__filters-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.solutions-page__filters::after {
  content: "";
  width: 79px;
  height: 100%;
  display: block;
  background: url("../images/solutions/body.png") top right repeat-y;
  position: absolute;
  right: -79px;
  top: 15px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .solutions-page__filters::after {
    display: none;
  }
}
.solutions-page__filter {
  background: transparent;
  border: 1px solid var(--color-gray-1);
  color: var(--color-gray-2);
  padding: 11px 22px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: 70px;
}
.solutions-page__filter:hover:not(.is-active) {
  border-color: var(--color-accent);
}
.solutions-page__filter.is-active {
  border-color: var(--color-accent);
  color: var(--color-white);
}
.solutions-page__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  position: relative;
  background: var(--color-gray);
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .solutions-page__list {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
  }
}
.solutions-page__list::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .solutions-page__list::before {
    left: -14px;
  }
}
.solutions-page__list::after {
  content: "";
  width: 79px;
  height: 100%;
  display: block;
  background: url("../images/solutions/body.png") top right repeat-y;
  position: absolute;
  right: -79px;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .solutions-page__list::after {
    display: none;
  }
}
.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-xl);
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 960px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}
.solution-card.is-hidden {
  display: none;
}
.solution-card__left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.solution-card__title {
  margin: 0;
  font-family: var(--font-light);
  font-size: 48px;
  line-height: calc(56 / 48);
  font-weight: normal;
}
@media (max-width: 960px) {
  .solution-card__title {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.solution-card__desc {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: auto;
}
@media (max-width: 960px) {
  .solution-card__desc {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
}
.solution-card__video {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  margin-top: calc(var(--spacing-xl) * -1);
  bottom: calc(var(--spacing-xl) * -1);
  left: calc(var(--spacing-xl) * -1);
  max-height: 367px;
  margin-right: auto;
}
.solution-card__video::-webkit-media-controls {
  display: none !important;
}
@media (max-width: 960px) {
  .solution-card__video {
    display: none;
  }
}
.solution-card__right {
  display: flex;
  flex-direction: column;
}
.solution-card__accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-1);
}
.accordion-item:first-child {
  border-top: 1px solid rgba(33, 35, 34, 0.2);
}
.accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  background: transparent;
  border: none;
  padding: var(--spacing-md) 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-gray);
  font-family: var(--font-light);
  font-size: 20px;
}
@media (max-width: 960px) {
  .accordion-item__header {
    font-size: 18px;
    line-height: calc(26 / 18);
  }
}
.accordion-item__title {
  flex: 1;
}
.accordion-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 5px;
}
.accordion-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.accordion-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.accordion-item.is-open .accordion-item__icon::before {
  transform: translate(-50%, -50%) scaleY(0);
}
.accordion-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.accordion-item.is-open .accordion-item__content {
  grid-template-rows: 1fr;
}
.accordion-item__content-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
}
.accordion-item__content-inner p {
  margin: 0 0 var(--spacing-sm, 8px);
  font-size: 16px;
  line-height: 1.5;
}
.accordion-item__content-inner p:last-child {
  margin-bottom: 0;
}
.accordion-item__content-inner ul {
  margin-left: 18px;
  list-style: disc;
}
.accordion-item.is-open .accordion-item__content-inner {
  padding-bottom: var(--spacing-md);
}
.services-page {
  width: 100%;
  overflow: hidden;
}
.services-page__container {
  padding-top: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .services-page__container {
    padding-top: var(--spacing-lg);
  }
}
.services-page__title {
  margin: 0;
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  font-weight: normal;
  display: flex;
  justify-content: flex-start;
  gap: var(--spacing-xl);
  position: relative;
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .services-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
    margin-bottom: var(--spacing-md);
  }
}
.services-page__title::before {
  content: "";
  width: 156px;
  height: 482px;
  display: block;
  position: absolute;
  background: url("/assets/images/services/service-1.svg") top left no-repeat;
  left: -190px;
  top: 30px;
}
@media (max-width: 1320px) {
  .services-page__title::before {
    display: none;
  }
}
.services-page__title i {
  position: relative;
  display: block;
  width: 100%;
}
.services-page__title i::after {
  content: "";
  width: calc(100% + 174px);
  height: 482px;
  display: block;
  position: absolute;
  background: url("/assets/images/services/service-2.svg") top right no-repeat;
  right: -174px;
  top: 30px;
}
@media (max-width: 1320px) {
  .services-page__title i::after {
    display: none;
  }
}
.services-page__intro {
  margin-bottom: var(--spacing-xl);
  max-width: 760px;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-gray-2);
}
@media (max-width: 960px) {
  .services-page__intro {
    display: none;
  }
}
.services-page__filters {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .services-page__filters {
    padding-bottom: var(--spacing-xl);
    gap: 0;
  }
}
.services-page__filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-md);
}
.services-page__filters-row:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-gray-1);
  margin-bottom: 32px;
}
.services-page__filters-row--tools {
  justify-content: space-between;
}
@media (max-width: 960px) {
  .services-page__filters-row--tools {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    gap: 32px;
  }
}
.services-page__filter {
  background: transparent;
  border: 1px solid var(--color-gray-1);
  color: var(--color-gray-2);
  padding: 11px 22px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: 70px;
  white-space: nowrap;
}
.services-page__filter:hover:not(.is-active) {
  border-color: var(--color-accent);
}
.services-page__filter.is-active {
  border-color: var(--color-accent);
  color: var(--color-white);
}
.services-page__solution {
  width: 290px;
  max-width: 100%;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .services-page__solution {
    width: 100%;
  }
}
.services-page__types {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-shrink: 0;
}
.services-page__type {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  cursor: pointer;
  color: var(--color-gray-2);
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}
.services-page__type input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  background: var(--color-black);
}
.services-page__type:hover {
  color: var(--color-white);
}
.services-page__box {
  position: relative;
  padding-bottom: 32px;
}
@media (max-width: 960px) {
  .services-page__box {
    padding-bottom: var(--spacing-xs);
  }
}
.services-page__box::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: url("/assets/images/services/service-4.png") center no-repeat var(--color-gray);
  background-size: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .services-page__box::before {
    left: -14px;
    background: var(--color-gray);
  }
}
.services-page__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  position: relative;
  background: var(--color-gray);
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  width: 100%;
}
@media (max-width: 1308px) {
  .services-page__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .services-page__list {
    grid-template-columns: 1fr;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
  }
}
.services-page__empty {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  font-family: var(--font-light);
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-black);
}
@media (max-width: 960px) {
  .services-page__empty {
    font-size: 18px;
    padding: var(--spacing-xl) 0;
  }
}
.custom-select--pill .custom-select__trigger {
  background: transparent;
  color: var(--color-gray-2);
  padding: 11px 22px;
}
.custom-select--pill .custom-select__trigger:hover, .custom-select--pill .custom-select__trigger:focus {
  color: var(--color-white);
}
.custom-select--pill .custom-select__value {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-select--pill .custom-select__arrow {
  margin-left: var(--spacing-lg);
}
.services-more-wrap {
  position: relative;
  z-index: 4;
  margin-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .services-more-wrap {
    margin-bottom: var(--spacing-lg);
  }
}
.services-more {
  font-family: var(--font-light);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  background: transparent;
  border: 1px solid var(--color-gray-1);
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  text-align: center;
}
.services-more:hover:not(:disabled) {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}
.services-more:disabled {
  cursor: default;
  opacity: 0.7;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-lg);
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}
.service-card:first-child {
  position: relative;
}
.service-card:first-child::before {
  content: "";
  width: 156px;
  height: calc(100% + 60px);
  display: block;
  position: absolute;
  left: -189px;
  bottom: 0;
  background: url("/assets/images/services/service-3.svg") bottom left no-repeat;
  transform: scale(-1, 1);
}
@media (max-width: 1320px) {
  .service-card:first-child::before {
    display: none;
  }
}
.service-card:nth-child(8) {
  position: relative;
}
.service-card:nth-child(8)::before {
  content: "";
  width: 156px;
  height: calc((100% * 4) + (var(--spacing-xl) * 3) + 60px);
  display: block;
  position: absolute;
  right: -175px;
  bottom: 0;
  background: url("/assets/images/services/service-3.svg") bottom left no-repeat;
}
@media (max-width: 1320px) {
  .service-card:nth-child(8)::before {
    display: none;
  }
}
.service-card:nth-child(13) {
  position: relative;
}
.service-card:nth-child(13)::before {
  content: "";
  width: 150px;
  height: 850px;
  display: block;
  position: absolute;
  left: -189px;
  bottom: 0;
  background: url("/assets/images/services/service-5.svg") bottom left no-repeat;
}
@media (max-width: 1320px) {
  .service-card:nth-child(13)::before {
    display: none;
  }
}
.service-card:nth-child(14) {
  position: relative;
}
.service-card:nth-child(14)::before {
  content: "";
  width: 206px;
  height: 298px;
  display: block;
  position: absolute;
  right: -235px;
  top: calc(100% - 30px);
  background: url("/assets/images/services/service-6.svg") top right no-repeat;
}
@media (max-width: 1320px) {
  .service-card:nth-child(14)::before {
    display: none;
  }
}
.service-card.is-hidden {
  display: none;
}
.service-card__media {
  display: block;
  margin: calc(var(--spacing-lg) * -1);
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
}
.service-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__image {
  transform: scale(1.03);
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 32px;
}
.service-card__title {
  margin: 0;
  font-family: var(--font-light);
  font-size: 32px;
  line-height: 1.25;
  font-weight: normal;
}
.service-card__title a:hover {
  color: var(--color-accent);
}
.service-card__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-2);
}
.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: auto;
}
.service-card__tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  border-radius: 70px;
  padding: 1px 8px 2px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-gray);
  font-family: var(--font-light);
}
.service-card__tag--country {
  background: var(--color-accent);
  color: var(--color-dark);
}
.service-card__link {
  align-self: flex-start;
  font-size: 20px;
  line-height: 1.4;
  padding: 11px 0;
  font-family: var(--font-light);
}
.service-detail {
  background: var(--color-gray);
  margin-top: -68px;
  width: 100%;
  overflow: hidden;
}
.service-detail__container {
  padding-top: var(--spacing-6xl);
  padding-bottom: 160px;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .service-detail__container {
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-xl);
  }
}
.service-detail__title {
  margin: 0 0 var(--spacing-3xl);
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  font-weight: normal;
  max-width: 600px;
}
@media (max-width: 960px) {
  .service-detail__title {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 var(--spacing-xs);
  }
}
.service-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-3xl);
}
.service-detail__tag {
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 8px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
}
.service-detail__tag--country {
  background: var(--color-accent);
}
.service-detail__full {
  max-width: 730px;
  padding-bottom: var(--spacing-5xl);
  font-size: 24px;
  line-height: 1.33;
  color: var(--color-dark);
  position: relative;
  margin-bottom: var(--spacing-lg);
}
@media (max-width: 960px) {
  .service-detail__full {
    font-size: 18px;
    line-height: 1.44;
    padding-bottom: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
  }
}
.service-detail__full::after {
  content: "";
  width: 100vw;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/assets/images/services/service-7.svg") bottom right repeat-x;
}
@media (max-width: 960px) {
  .service-detail__full::after {
    height: 22px;
    background: url("/assets/images/services/service-m-2.svg") bottom right repeat-x;
  }
}
.service-detail__stats {
  margin: 0 0 var(--spacing-lg);
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-dark);
}
.service-detail__jump {
  margin-bottom: 160px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 105px;
}
@media (max-width: 960px) {
  .service-detail__jump {
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-direction: column;
  }
}
.service-detail__jump-label {
  display: block;
  font-family: var(--font-light);
  font-size: 18px;
  line-height: 1.44;
}
.service-detail__jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs) var(--spacing-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-detail__jump-link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-dark);
  transition: border-color 0.3s, color 0.3s;
}
.service-detail__jump-link:hover {
  text-decoration: none;
  color: var(--color-accent);
}
.service-detail__boxes {
  display: flex;
  flex-direction: column;
  gap: 160px;
  margin-bottom: 160px;
}
@media (max-width: 960px) {
  .service-detail__boxes {
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
}
@media (max-width: 960px) {
  .service-detail .case-studies {
    margin-bottom: var(--spacing-2xl);
  }
}
.service-detail .case-studies .container {
  padding: 0;
}
@media (max-width: 960px) {
  .service-detail .case-studies__head {
    flex-wrap: nowrap;
  }
}
@media (max-width: 960px) {
  .service-detail .case-studies__more-link {
    white-space: nowrap;
  }
}
@media (max-width: 960px) {
  .service-detail .case-studies .cases-slider__nav {
    display: none;
  }
}
.service-detail__related-heading {
  margin-bottom: var(--spacing-2xl);
  font-family: var(--font-light);
  font-size: 48px;
  line-height: 1.1;
  font-weight: normal;
}
@media (max-width: 960px) {
  .service-detail__related-heading {
    font-size: 32px;
    margin-bottom: var(--spacing-lg);
  }
}
.service-detail__related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}
@media (max-width: 960px) {
  .service-detail__related-list {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}
.service-detail .service-card:first-child::before {
  display: none;
}
.service-box {
  color: var(--color-dark);
  box-sizing: border-box;
}
.service-box__heading {
  margin: 0 0 var(--spacing-xl);
}
@media (max-width: 960px) {
  .service-box__heading {
    margin-bottom: var(--spacing-md);
  }
}
.service-box__heading h2 {
  font-family: var(--font-light);
  font-size: 56px;
  line-height: 1.14;
  font-weight: 283;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .service-box__heading h2 {
    font-size: 32px;
    line-height: 1.25;
  }
}
#section-6 .service-box__heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-2xl);
}
@media (max-width: 960px) {
  #section-6 .service-box__heading {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}
#section-6 .service-box__heading h3 {
  max-width: 500px;
  font-size: 48px;
  line-height: 1.67;
  font-family: var(--font-light);
  font-weight: 283;
  width: 100%;
}
@media (max-width: 960px) {
  #section-6 .service-box__heading h3 {
    font-size: 32px;
    line-height: 1.25;
  }
}
#section-6 .service-box__heading h3 + p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 440px;
}
.service-box__text {
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-black);
  font-family: var(--font-light);
  font-weight: 283;
}
@media (max-width: 960px) {
  .service-box__text {
    font-size: 14px;
    line-height: 1.57;
  }
}
.service-box__text h1, .service-box__text h2, .service-box__text h3, .service-box__text h4, .service-box__text h5, .service-box__text h6 {
  font-family: var(--font-light);
  font-weight: normal;
}
.service-box__text ul:not(:last-child), .service-box__text ol:not(:last-child), .service-box__text li:not(:last-child), .service-box__text p:not(:last-child) {
  margin-bottom: 1em;
}
.service-box__text ul, .service-box__text ol {
  padding-left: 30px;
}
.service-box__text table {
  width: 100%;
  margin-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .service-box__text table {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 960px) {
  .service-box__text table tr {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-gray-2);
  }
}
@media (min-width: 961px) {
  .service-box__text table td {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
  }
}
@media (min-width: 961px) {
  .service-box__text table td:first-child {
    width: 110px;
    border-bottom: 1px solid var(--color-gray-2);
    padding-right: var(--spacing-2xl);
  }
}
@media (min-width: 961px) {
  #section-12 .service-box__text table td:first-child {
    width: 330px;
  }
}
@media (min-width: 961px) {
  .service-box__text table td:nth-child(2) {
    padding-right: var(--spacing-2xl);
    border-bottom: 1px solid var(--color-gray-2);
  }
}
@media (min-width: 961px) {
  .service-box__text table td:nth-child(2):not(:last-child) {
    width: 436px;
  }
}
@media (min-width: 961px) {
  .service-box__text table td:nth-child(3) {
    padding-right: var(--spacing-2xl);
    border-bottom: 1px solid var(--color-gray-2);
  }
}
@media (min-width: 961px) {
  .service-box__text table td:nth-child(3):not(:last-child) {
    width: 440px;
  }
}
@media (min-width: 961px) {
  .service-box__text table td:last-child {
    display: flex;
    justify-content: flex-end;
  }
  .service-box__text table td:last-child a {
    white-space: nowrap;
    text-decoration: underline;
    text-align: right;
  }
  .service-box__text table td:last-child a:hover {
    text-decoration: none;
  }
}
.service-box--paddingLeft0 {
  padding-left: 0;
}
.service-box--paddingLeft0 h2, .service-box--paddingLeft0 p, .service-box--paddingLeft0 li {
  max-width: 950px;
}
.service-box--paddingLeft330 {
  padding-left: 330px;
}
@media (max-width: 960px) {
  .service-box--paddingLeft330 {
    padding-left: 0;
  }
}
.service-box--paddingLeft220 {
  padding-left: 220px;
}
@media (max-width: 960px) {
  .service-box--paddingLeft220 {
    padding-left: 0;
  }
}
.service-box--paddingLeft220#section-3 ul {
  display: flex;
  gap: 48px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: var(--spacing-xl);
  font-size: 18px;
  line-height: 1.44;
}
@media (max-width: 960px) {
  .service-box--paddingLeft220#section-3 ul {
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }
}
.service-box--paddingLeft220#section-3 ul strong {
  font-weight: 283;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  font-size: 20px;
  line-height: 1.4;
}
.mediahub-page {
  background: var(--color-dark);
  color: var(--color-gray);
  width: 100%;
  overflow: hidden;
}
.mediahub-page__container {
  padding-top: var(--spacing-xl);
}
@media (max-width: 960px) {
  .mediahub-page__container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.mediahub-page__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 96px;
  line-height: 1;
  color: var(--color-gray);
  margin: 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: var(--spacing-3xl);
}
@media (max-width: 960px) {
  .mediahub-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
  }
}
.mediahub-page__title span {
  padding-bottom: var(--spacing-3xl);
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .mediahub-page__title span {
    padding-bottom: var(--spacing-lg);
  }
}
.mediahub-page__title::after {
  content: "";
  width: 100%;
  height: 156px;
  margin-bottom: -15px;
  display: block;
  margin-right: -79px;
  background: url("../images/mediahub/title.png") top right no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .mediahub-page__title::after {
    background: url("../images/mediahub/title-mob.png") top left repeat-x;
    margin-right: -14px;
    height: 56px;
    margin-bottom: auto;
    margin-top: 24px;
  }
}
.mediahub-page__search {
  padding-bottom: var(--spacing-xl);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}
@media (max-width: 960px) {
  .mediahub-page__search {
    padding-bottom: var(--spacing-lg);
  }
}
.mediahub-page__search::before {
  content: "";
  width: 79px;
  height: 100%;
  display: block;
  background: url("../images/mediahub/body.png") top right repeat-y;
  position: absolute;
  right: -79px;
  top: 15px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .mediahub-page__search::before {
    display: none;
  }
}
.mediahub-page__search-input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-size: 24px;
  line-height: calc(32 / 24);
  color: var(--color-gray);
  background-color: var(--color-dark);
  border: 0;
  border-bottom: 1px solid var(--color-gray-1);
  border-radius: 0;
  padding: var(--spacing-md) var(--spacing-xs);
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzNCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTMuNzE0MyIgY3k9IjEzLjcxNDMiIHI9IjEyLjcxNDMiIHN0cm9rZT0iIzc2Nzc3QSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxsaW5lIHgxPSIyMy41NjY1IiB5MT0iMjIuMTQ5OSIgeDI9IjMyLjcwOTMiIHkyPSIzMS4yOTI3IiBzdHJva2U9IiM3Njc3N0EiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
  background-size: 32px;
  background-position: right center;
  background-repeat: no-repeat;
}
.mediahub-page__search-input::placeholder {
  color: var(--color-gray-2);
}
.mediahub-page__search-input:focus {
  border-color: var(--color-accent);
  color: var(--color-gray);
}
.mediahub-page__filters {
  padding-bottom: var(--spacing-2xl);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--spacing-xl);
}
@media (max-width: 960px) {
  .mediahub-page__filters {
    padding-bottom: var(--spacing-lg);
    flex-direction: column;
    gap: var(--spacing-md);
  }
}
.mediahub-page__filters::after {
  content: "";
  width: 79px;
  height: 100%;
  display: block;
  background: url("../images/mediahub/body.png") top right repeat-y;
  position: absolute;
  right: -79px;
  top: 15px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .mediahub-page__filters::after {
    display: none;
  }
}
.mediahub-page__filters-selects {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
  gap: var(--spacing-lg);
}
@media (max-width: 960px) {
  .mediahub-page__filters-selects {
    width: 100%;
    gap: var(--spacing-xs);
  }
}
.mediahub-page__filters-selects .custom-select {
  flex: 1 1 0;
  min-width: 200px;
}
.mediahub-page__filters-selects .custom-select__trigger {
  color: var(--color-gray);
  background: var(--color-dark);
  border: none;
  border-bottom: 1px solid var(--color-gray);
}
@media (max-width: 640px) {
  .mediahub-page__filters-selects {
    flex-direction: column;
  }
  .mediahub-page__filters-selects .custom-select {
    min-width: 100%;
  }
}
.mediahub-page__media-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.mediahub-page__type-btn {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-1);
  background: var(--color-dark);
  border: 1px solid var(--color-gray-1);
  border-radius: 0;
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border-radius: 56px;
  text-transform: lowercase;
}
@media (max-width: 960px) {
  .mediahub-page__type-btn {
    padding: 11px 24px;
  }
}
.mediahub-page__type-btn span {
  color: var(--color-accent);
}
.mediahub-page__type-btn:hover:not(.is-active) {
  border-color: var(--color-accent);
  color: var(--color-gray);
}
.mediahub-page__type-btn.is-active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}
.mediahub-page__content {
  position: relative;
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .mediahub-page__content {
    padding-bottom: 0;
  }
}
.mediahub-page__content::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .mediahub-page__content::before {
    left: -14px;
  }
}
.mediahub-page__content::after {
  content: "";
  width: 79px;
  height: 100%;
  display: block;
  background: url("../images/mediahub/body.png") top right repeat-y;
  position: absolute;
  right: -79px;
  top: 0;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  .mediahub-page__content::after {
    display: none;
  }
}
.mediahub-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  background: var(--color-gray);
  padding-top: var(--spacing-xl);
}
@media (max-width: 960px) {
  .mediahub-page__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}
@media (max-width: 640px) {
  .mediahub-page__list {
    grid-template-columns: 1fr;
  }
}
.mediahub-page__empty {
  grid-column: 1 / -1;
  color: var(--color-gray-2);
  font-size: 18px;
  position: relative;
  z-index: 4;
  color: var(--color-dark);
}
.mediahub-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark);
  position: relative;
  z-index: 4;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.mediahub-card:hover .mediahub-card__title {
  color: var(--color-accent);
}
.mediahub-card__image {
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  z-index: 0;
  aspect-ratio: 1.65;
  width: 100%;
  background-color: var(--color-gray-2);
}
@media (max-width: 960px) {
  .mediahub-card__image {
    aspect-ratio: 1.75;
  }
}
.mediahub-card__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  width: 100%;
  margin-bottom: auto;
}
.mediahub-card__type {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-gray);
  padding: 2px 8px 1px;
  border: 1px solid var(--color-accent);
  border-radius: 16px;
  box-sizing: border-box;
  font-size: 14px;
  text-transform: lowercase;
}
.mediahub-card__date {
  color: var(--color-gray);
  font-size: 14px;
  line-height: calc(22 / 14);
}
.mediahub-card__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-gray);
  margin: 0;
}
@media (max-width: 960px) {
  .mediahub-card__title {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}
.mediahub-more-wrap {
  display: flex;
  justify-content: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 4;
  width: 100%;
}
.mediahub-more {
  font-family: var(--font-medium);
  font-size: 16px;
  color: var(--color-dark);
  background: transparent;
  border: 1px solid var(--color-gray-1);
  border-radius: 0;
  padding: var(--spacing-md) var(--spacing-2xl);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  text-align: center;
}
.mediahub-more:hover:not(:disabled) {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}
.mediahub-more:disabled {
  cursor: default;
  opacity: 0.7;
}
.page-media .breadcrumbs {
  background: var(--color-gray);
}
.mediahub-detail {
  color: var(--color-dark);
  background: var(--color-gray);
}
.mediahub-detail__inner {
  position: relative;
  padding-bottom: var(--spacing-4xl);
}
.mediahub-detail__inner::before {
  content: "";
  width: 242px;
  height: 156px;
  display: block;
  position: absolute;
  top: 30px;
  right: -75px;
  background: url("../images/mediahub/top.png") top right no-repeat;
}
@media (max-width: 1320px) {
  .mediahub-detail__inner::before {
    display: none;
  }
}
.mediahub-detail__inner::after {
  content: "";
  width: 65px;
  height: calc(100% - 186px);
  position: absolute;
  top: 186px;
  right: -75px;
  display: block;
  background: url("../images/mediahub/right.png") top right repeat-y;
}
@media (max-width: 1320px) {
  .mediahub-detail__inner::after {
    display: none;
  }
}
.mediahub-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: calc(22 / 14);
  color: var(--color-dark);
  text-decoration: none;
  margin-bottom: var(--spacing-xl);
  transition: color 0.2s ease;
  cursor: pointer;
}
.mediahub-detail__back:hover {
  color: var(--color-accent);
}
.mediahub-detail__back span {
  color: var(--color-accent);
}
@media (max-width: 960px) {
  .mediahub-detail__back {
    margin-bottom: var(--spacing-md);
  }
}
.mediahub-detail__title {
  font-family: var(--font-light);
  font-weight: 283;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-dark);
  margin: 0 0 var(--spacing-xl);
  max-width: 709px;
}
@media (max-width: 960px) {
  .mediahub-detail__title {
    font-size: 32px;
  }
}
.mediahub-detail__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
  line-height: calc(24 / 16);
  color: var(--color-gray-2);
  margin: 0 0 var(--spacing-lg);
}
@media (max-width: 960px) {
  .mediahub-detail__meta {
    margin-bottom: var(--spacing-md);
  }
}
.mediahub-detail__date {
  color: var(--color-gray-2);
}
.mediahub-detail__dot {
  color: var(--color-accent);
}
.mediahub-detail__type {
  color: var(--color-gray-1);
  padding: 4px 16px;
  border: 1px solid var(--color-gray-1);
  text-transform: lowercase;
  border-radius: 80px;
}
.mediahub-detail__type span {
  color: var(--color-accent);
}
.mediahub-detail__accent {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  padding: 12px 16px;
  margin: 0 0 var(--spacing-xl);
  background: #F5F5F5;
  position: relative;
  display: inline-block;
}
.mediahub-detail__accent p:last-child {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .mediahub-detail__accent {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
  }
}
.mediahub-detail__accent::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--color-dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  vertical-align: middle;
  margin-right: 8px;
  position: absolute;
  top: 100%;
  left: 0;
}
.mediahub-detail__image {
  width: 100%;
  margin: 0 0 var(--spacing-xl);
}
.mediahub-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 960px) {
  .mediahub-detail__image {
    margin-bottom: var(--spacing-lg);
  }
}
.mediahub-detail__description {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: var(--color-dark);
  margin: 0 0 var(--spacing-xl);
  max-width: 709px;
}
@media (max-width: 960px) {
  .mediahub-detail__description {
    margin-bottom: var(--spacing-lg);
  }
}
.mediahub-detail__description p {
  margin: 0 0 1em;
  color: var(--color-dark);
}
.mediahub-detail__description h2, .mediahub-detail__description h3, .mediahub-detail__description h4 {
  font-family: var(--font-light);
  line-height: 1.3;
  font-weight: 283;
  margin: var(--spacing-lg) 0 var(--spacing-md);
}
.mediahub-detail__description h2 {
  font-size: 24px;
  line-height: calc(32 / 24);
}
.mediahub-detail__description h3 {
  font-size: 20px;
  line-height: 1.4;
}
.mediahub-detail__description h4 {
  font-size: 18px;
  line-height: calc(26 / 18);
}
.mediahub-detail__description a {
  color: var(--color-accent);
}
.mediahub-detail__description ul, .mediahub-detail__description ol {
  margin-left: var(--spacing-lg);
  margin-bottom: 1em;
  color: var(--color-gray-1);
}
.mediahub-detail__description table {
  width: 100%;
}
.mediahub-detail__description table tr td {
  padding: 4px var(--spacing-xs);
}
.mediahub-detail__description table tr td:not(:last-child) {
  border-right: 1px solid var(--color-gray-1);
}
.mediahub-detail__description table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-gray-1);
}
.mediahub-detail__description strong {
  font-weight: bold;
}
.mediahub-detail__quote {
  font-style: normal;
  font-weight: 283;
  font-size: 18px;
  line-height: 1.44;
  color: var(--color-gray-1);
  margin: 0 0 var(--spacing-xl);
  max-width: 709px;
}
@media (max-width: 960px) {
  .mediahub-detail__quote {
    margin-bottom: var(--spacing-lg);
  }
}
.mediahub-detail__quote p:first-child::before {
  content: '"';
  display: inline-block;
}
.mediahub-detail__quote p:last-child {
  margin-bottom: 0;
}
.mediahub-detail__quote p:last-child::after {
  content: '"';
  display: inline-block;
}
.mediahub-detail__authors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  max-width: 1006px;
}
@media (max-width: 960px) {
  .mediahub-detail__authors {
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
  }
}
.mediahub-detail__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);
  max-width: calc(33% - var(--spacing-lg));
}
@media (max-width: 960px) {
  .mediahub-detail__author {
    max-width: calc(50% - (var(--spacing-lg) / 2));
  }
}
.mediahub-detail__author-photo {
  width: 88px;
  height: 88px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-gray);
  flex-shrink: 0;
}
.mediahub-detail__author-info {
  display: flex;
  flex-direction: column;
}
.mediahub-detail__author-name {
  font-size: 18px;
  line-height: calc(26 / 18);
  color: var(--color-dark);
}
.mediahub-detail__author-position {
  font-size: 14px;
  line-height: calc(22 / 14);
  color: var(--color-gray-1);
  margin: 0;
}
.jurisdiction-page {
  width: 100%;
  overflow: hidden;
}
.jurisdiction-page__container {
  padding-top: var(--spacing-4xl, 80px);
}
@media (max-width: 960px) {
  .jurisdiction-page__container {
    padding-top: var(--spacing-2xl);
  }
}
.jurisdiction-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-xl, 40px);
  margin-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .jurisdiction-page__header {
    display: block;
    margin-bottom: var(--spacing-lg);
  }
}
.jurisdiction-page__title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-light);
  font-size: 128px;
  line-height: 1;
  font-weight: normal;
}
@media (max-width: 960px) {
  .jurisdiction-page__title {
    font-size: 56px;
    line-height: calc(64 / 56);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-md);
  }
  .jurisdiction-page__title span {
    flex-shrink: 0;
  }
  .jurisdiction-page__title::after {
    content: "";
    width: 100%;
    height: 35px;
    display: block;
    margin-right: -14px;
    position: relative;
    background: url("/assets/images/jurisdictions/jurisdiction-m-1.svg") center left repeat-x;
  }
}
.jurisdiction-page__intro {
  max-width: 560px;
  margin-left: auto;
  padding-right: 160px;
  padding-bottom: var(--spacing-xs, 8px);
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-gray-2);
  position: relative;
}
@media (max-width: 960px) {
  .jurisdiction-page__intro {
    max-width: none;
    margin-left: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 1.4;
    padding-right: 0;
  }
}
.jurisdiction-page__intro::after {
  content: "";
  display: block;
  width: 156px;
  top: 0;
  right: -80px;
  height: 200%;
  background: url("/assets/images/jurisdictions/jurisdiction-1.svg") top right no-repeat;
  position: absolute;
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-page__intro::after {
    display: none;
  }
}
.jurisdiction-page__video {
  position: relative;
  padding: var(--spacing-4xl) 0;
}
@media (max-width: 960px) {
  .jurisdiction-page__video {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
}
.jurisdiction-page__video::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  background-size: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .jurisdiction-page__video::before {
    left: -14px;
    background: var(--color-gray);
  }
}
.jurisdiction-page__video::after {
  content: "";
  display: block;
  width: 156px;
  top: 0;
  right: -80px;
  height: 100%;
  background: url("/assets/images/jurisdictions/jurisdiction-1.svg") bottom right no-repeat;
  position: absolute;
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-page__video::after {
    display: none;
  }
}
.jurisdiction-page__video-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-dark);
  width: 100%;
  z-index: 2;
  position: relative;
}
.jurisdiction-page__video-inline::before {
  content: "";
  display: block;
  width: 50vw;
  right: calc(100% - 350px);
  height: 156px;
  background: url("/assets/images/jurisdictions/jurisdiction-2.svg") top left no-repeat;
  position: absolute;
  top: calc(50% - 27px);
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-page__video-inline::before {
    width: 100vw;
    left: -14px;
    right: auto;
    height: 35px;
    background: url("/assets/images/jurisdictions/jurisdiction-m-1.svg") center left repeat-x;
  }
}
.jurisdiction-page__video-inline::after {
  content: "";
  display: block;
  width: 430px;
  right: -75px;
  height: 156px;
  background: url("/assets/images/jurisdictions/jurisdiction-2.svg") top right no-repeat;
  position: absolute;
  top: calc(50% - 27px);
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-page__video-inline::after {
    display: none;
  }
}
.jurisdiction-page__video-element, .jurisdiction-page__video-embed {
  display: block;
  height: 406px;
  aspect-ratio: 1.7777777778;
  background: var(--color-dark);
}
@media (max-width: 960px) {
  .jurisdiction-page__video-element, .jurisdiction-page__video-embed {
    height: 103px;
  }
}
.jurisdiction-page__video-element {
  pointer-events: none;
  -webkit-touch-callout: none;
}
.jurisdiction-page__video-element::-webkit-media-controls, .jurisdiction-page__video-element::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  pointer-events: none;
}
.jurisdiction-page__video-embed {
  position: relative;
}
.jurisdiction-page__video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.jurisdiction-page .case-studies .container {
  padding-top: 0;
  position: relative;
}
.jurisdiction-page .case-studies .container::after {
  content: "";
  display: block;
  width: 156px;
  top: 0;
  right: -66px;
  height: 100%;
  background: url("/assets/images/jurisdictions/jurisdiction-1.svg") bottom right no-repeat;
  position: absolute;
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-page .case-studies .container::after {
    display: none;
  }
}
.jurisdiction-page .stay-in-loop {
  position: relative;
}
.jurisdiction-page .stay-in-loop__title {
  position: relative;
  z-index: 2;
  color: var(--color-dark);
}
.jurisdiction-page .stay-in-loop .news-slider__arrow {
  stroke: var(--color-dark);
  z-index: 2;
}
.jurisdiction-page .stay-in-loop .news-item {
  background: var(--color-dark);
  color: var(--color-gray);
}
.jurisdiction-page .stay-in-loop .news-item__date {
  color: var(--color-gray);
}
.jurisdiction-page .stay-in-loop::before {
  content: "";
  width: 114vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  background-size: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .jurisdiction-page .stay-in-loop::before {
    left: -14px;
    background: var(--color-gray);
  }
}
.jurisdiction-services {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.jurisdiction-services::before {
  content: "";
  width: 114vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%) / 2) * -1);
  background: var(--color-gray);
  background-size: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1308px) {
  .jurisdiction-services::before {
    left: -14px;
    background: var(--color-gray);
  }
}
.jurisdiction-services .container {
  position: relative;
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-xl);
}
@media (max-width: 960px) {
  .jurisdiction-services .container {
    padding-bottom: var(--spacing-xl);
  }
}
.jurisdiction-services .container::after {
  content: "";
  display: block;
  width: 156px;
  top: 0;
  right: -66px;
  height: 100%;
  background: url("/assets/images/jurisdictions/jurisdiction-1.svg") bottom right no-repeat;
  position: absolute;
  z-index: 3;
}
@media (max-width: 960px) {
  .jurisdiction-services .container::after {
    display: none;
  }
}
.jurisdiction-services .service-card:first-child::before {
  display: none;
}
.jurisdiction-services__blocktitle {
  margin: 0 0 var(--spacing-xl);
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  font-weight: normal;
  color: var(--color-dark);
  position: relative;
  z-index: 4;
}
@media (max-width: 960px) {
  .jurisdiction-services__blocktitle {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
  }
}
.jurisdiction-services__filters {
  padding-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 4;
}
@media (max-width: 960px) {
  .jurisdiction-services__filters {
    padding-bottom: var(--spacing-xl);
  }
}
.jurisdiction-services__filters .custom-select--pill .custom-select__trigger {
  color: var(--color-dark);
  border-color: var(--color-dark);
  max-width: 290px;
}
@media (max-width: 450px) {
  .jurisdiction-services__filters .custom-select--pill .custom-select__trigger {
    max-width: 100%;
  }
}
.jurisdiction-services__solution {
  max-width: 420px;
}
.jurisdiction-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  background: var(--color-gray);
  padding: 0 0 var(--spacing-2xl);
  width: 100%;
}
@media (max-width: 960px) {
  .jurisdiction-services__list {
    grid-template-columns: 1fr;
    padding: 0 0 var(--spacing-lg);
    gap: var(--spacing-md);
  }
}
.jurisdiction-services__empty {
  padding: var(--spacing-2xl) 0;
  text-align: center;
  font-family: var(--font-light);
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-dark);
}
@media (max-width: 960px) {
  .jurisdiction-services__empty {
    font-size: 18px;
    padding: var(--spacing-lg) 0;
  }
}
.jurisdiction-advantages {
  width: 100%;
  position: relative;
}
.jurisdiction-advantages::before {
  content: "";
  width: 43%;
  aspect-ratio: 1.94;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/assets/images/jurisdictions/jurisdiction-3.png") bottom left no-repeat;
  z-index: 1;
}
@media (max-width: 960px) {
  .jurisdiction-advantages::before {
    display: none;
  }
}
.jurisdiction-advantages__container {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .jurisdiction-advantages__container {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    flex-direction: column;
    gap: var(--spacing-md);
  }
}
.jurisdiction-advantages__heading {
  font-family: var(--font-light);
  font-size: 56px;
  line-height: 1.14;
  font-weight: normal;
}
.jurisdiction-advantages__heading h1, .jurisdiction-advantages__heading h2, .jurisdiction-advantages__heading h3, .jurisdiction-advantages__heading h4, .jurisdiction-advantages__heading h5, .jurisdiction-advantages__heading h6, .jurisdiction-advantages__heading p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
@media (max-width: 960px) {
  .jurisdiction-advantages__heading {
    font-size: 32px;
    line-height: 1.25;
  }
}
.jurisdiction-advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) {
  .jurisdiction-advantages__list {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}
.jurisdiction-advantages__item {
  margin-bottom: var(--spacing-xl);
}
.jurisdiction-advantages__item-title {
  margin: 0 0 var(--spacing-md);
  font-family: var(--font-light);
  font-size: 32px;
  line-height: 1.14;
  font-weight: normal;
}
@media (max-width: 960px) {
  .jurisdiction-advantages__item-title {
    font-size: 24px;
    line-height: 1.33;
  }
}
.jurisdiction-advantages__item-text {
  font-size: 18px;
  line-height: 1.44;
}
.jurisdiction-advantages__item-text h1, .jurisdiction-advantages__item-text h2, .jurisdiction-advantages__item-text h3, .jurisdiction-advantages__item-text h4, .jurisdiction-advantages__item-text h5, .jurisdiction-advantages__item-text h6, .jurisdiction-advantages__item-text p {
  margin: 0 0 1em;
  font-size: inherit;
  line-height: inherit;
  font-weight: normal;
}
.jurisdiction-advantages__item-text ul, .jurisdiction-advantages__item-text ol {
  margin: 0 0 1em;
  padding-left: var(--spacing-lg);
}
.jurisdiction-others {
  width: 100%;
  position: relative;
  padding-bottom: 230px;
}
@media (max-width: 960px) {
  .jurisdiction-others {
    padding-bottom: 0;
  }
}
.jurisdiction-others__video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
@media (max-width: 960px) {
  .jurisdiction-others__video {
    display: none;
  }
}
.jurisdiction-others__video-inline {
  width: 45.39vw;
  aspect-ratio: 1.78;
  position: absolute;
  bottom: -7px;
  left: -17%;
}
.jurisdiction-others__video-inline video {
  height: 100%;
  width: auto;
}
.jurisdiction-others__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-6xl);
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}
@media (max-width: 960px) {
  .jurisdiction-others__container {
    flex-direction: column;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
}
.jurisdiction-others__title {
  flex: 0 0 60%;
  max-width: 60%;
  margin: 0;
  font-family: var(--font-light);
  font-size: 96px;
  line-height: 1;
  font-weight: normal;
}
@media (max-width: 960px) {
  .jurisdiction-others__title {
    flex-basis: auto;
    max-width: none;
    font-size: 28px;
  }
}
.jurisdiction-others__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 330px;
}
.jurisdiction-others__link {
  display: inline-block;
  align-items: center;
  gap: var(--spacing-md);
  font-family: var(--font-light);
  font-size: 18px;
  line-height: 1.44;
  width: 100%;
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: var(--spacing-lg);
}
.jurisdiction-others__link:hover, .jurisdiction-others__link:focus {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.jurisdiction-others__link:hover::after, .jurisdiction-others__link:focus::after {
  transform: translateX(4px);
}
.page-jurisdictions .footer {
  background: none;
  margin-top: -230px;
}
@media (max-width: 960px) {
  .page-jurisdictions .footer {
    margin-top: 0;
  }
}
.footer {
  background: var(--color-dark);
  color: var(--color-gray);
  padding: var(--spacing-4xl) 0;
}
@media (max-width: 960px) {
  .footer {
    padding: 0 0 var(--spacing-xl);
  }
}
@media (max-width: 960px) {
  .footer::before {
    content: "";
    width: 100%;
    height: 36px;
    display: block;
    position: relative;
    background: url("../images/footer-mob.png") top left repeat-x;
    margin-bottom: var(--spacing-md);
  }
}
.footer__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-2xl);
}
@media (max-width: 960px) {
  .footer__menu {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-direction: column;
  }
}
.footer__menu-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: var(--spacing-md);
}
@media (max-width: 960px) {
  .footer__menu-list {
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-xl);
    justify-content: flex-start;
  }
  .footer__menu-list li {
    min-width: 21%;
  }
}
.footer__menu-list:first-child {
  width: 30%;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .footer__menu-list:first-child {
    width: 100%;
  }
}
.footer__menu-list:last-child {
  width: calc(70% - var(--spacing-4xl));
  font-size: 14px;
  line-height: calc(22 / 14);
}
@media (max-width: 960px) {
  .footer__menu-list:last-child {
    width: 100%;
  }
}
.footer__row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 960px) {
  .footer__row {
    flex-direction: column;
    border-top: 1px solid var(--color-gray-1);
    padding-top: var(--spacing-md);
    align-items: flex-start;
    gap: var(--spacing-md);
  }
}
.footer__legal {
  max-width: 244px;
  font-size: 12px;
  line-height: calc(20 / 12);
}
@media (max-width: 960px) {
  .footer__legal {
    color: var(--color-gray-1);
  }
}
.footer__contacts {
  color: var(--color-gray-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 12px;
  line-height: calc(20 / 12);
}
