@charset "UTF-8";

/* Base */

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --container-width: 1366px;
  --container-padding: 40px;
  --container-padding-tablet: 20px;
  --container-padding-mobile: 20px;
  --header-padding: 350px;
  --font-main: sans-serif;
  --basic-font: "Lato", sans-serif;
  --extra-font: "AAStetica", sans-serif;
  --basic-white: #FFFFFF;
  --basic-gold: #FFF1D7;
  --extra-gold: #FFD37E;
  --custom-gold: #D7A658;
  --new-gold: #FFF6E5;
  --basic-blue: #D7EBFF;
  --basic-black: #1D1D1D;
  --extra-black: #000000;
  --color-stripe: #2B2B2B;
  --color-placeholder: #222222;
  --extra-blue: #1D1F76;
  --basic-radius: 123px;
  --basic-gray: #E5E5E5;
  --extra-grey: #D7D7E7;
  --gray-border: #E3E3ED;
  --basic-red: #F62222;
  --text-notification: #1B1B1B;
  --extra-svg: #2D2D2D;
  --bg: #FFF6E5;
  --bg-tint: #F4F0E8;
  --card: #FFFFFF;
  --line: #EAE3D2;
  --text: #1D1D1D;
  --muted: #6B7280;
  --muted-soft: #94A3B8;
  --primary: #1D1F76;
  --primary-soft: #5358AE;
  --gold: #FFD37E;
  --gold-soft: #FFE9C4;
  --gold-rich: #C5A572;
  --ok: #15803D;
  --ok-bg: #DCFCE7;
  --wait: #B45309;
  --wait-bg: #FEF3C7;
  --info: #1D4ED8;
  --info-bg: #DBEAFE;
  --err: #B91C1C;
  --err-bg: #FEE2E2;
  --shadow-card: 0 6px 20px rgba(29, 29, 29, 0.06);
  --shadow-card-hover: 0 12px 28px rgba(29, 29, 29, 0.10);
  --shadow-navy: 0 14px 34px rgba(29, 31, 118, 0.24);
  --ease-lift: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: AAStetica;
  font-display: swap;
  src: url("../fonts/AAStetica-Medium.woff2") format("woff2"), url("../fonts/AAStetica-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: AAStetica;
  font-display: swap;
  src: url("../fonts/AAStetica-Regular.woff2") format("woff2"), url("../fonts/AAStetica-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url("../fonts/Lato-Medium.woff2") format("woff2"), url("../fonts/Lato-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Lato;
  font-display: swap;
  src: url("../fonts/Lato-Semibold.woff2") format("woff2"), url("../fonts/Lato-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@-webkit-keyframes push {
  0% {
    width: 14px;
    height: 14px;
  }

  100% {
    width: 84px;
    height: 84px;
  }
}

@keyframes push {
  0% {
    width: 14px;
    height: 14px;
  }

  100% {
    width: 84px;
    height: 84px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}

@-webkit-keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideOutToTop {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes slideOutToTop {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

html {
  height: auto;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--basic-font);
  text-wrap: balance;
  background-color: var(--basic-white);
  font-size: 1.6rem;
  min-height: var(--vh);
  height: 100%;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: var(--basic-white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--extra-gold);
  border-radius: 2px;
  height: 150px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

img {
  display: block;
}

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

.section {
  margin-bottom: 90px;
}

.section-140 {
  margin-bottom: 140px;
}

.re-captcha-site {
  margin: 15px 0;
}

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.btn-icon span {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--extra-blue);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--basic-white);
  padding: 16.5px 24px 16.5px 24px;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -webkit-transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.btn-icon span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background-color: var(--extra-gold);
  -webkit-transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

.btn-icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  background-color: var(--extra-gold);
  border-radius: 50%;
  margin-left: -15px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-icon i svg {
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-icon:disabled {
  cursor: not-allowed;
}

.btn-icon:disabled span {
  background-color: var(--basic-gray);
}

.btn-icon:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-icon:hover span {
  color: var(--basic-black);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.btn-icon:hover span::before {
  width: 100%;
}

.btn-icon:hover i {
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.btn-icon:hover i svg {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

.btn-icon--premium {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.25s ease;
  transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.25s ease;
  transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.25s ease;
  transition: gap 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.25s ease, -webkit-transform 0.25s ease;
}

.btn-icon--premium span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  padding: 0 24px;
  white-space: nowrap;
  background-color: transparent;
  background-image: linear-gradient(135deg, #1A1D6E 0%, #2A2E8E 100%);
  border: 1px solid rgba(255, 211, 126, 0.3);
  letter-spacing: 0.03em;
  -webkit-transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.btn-icon--premium span::before {
  display: none !important;
}

.btn-icon--premium i {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 0;
  background-color: transparent;
  background-image: radial-gradient(circle at 30% 25%, #FFF6E5 0%, #FFD37E 50%, #C49E4F 100%);
  border: 1px solid rgba(196, 158, 79, 0.5);
  color: var(--basic-black);
  -webkit-box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(0, 0, 0, 0.12);
  -webkit-transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: border-radius 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-icon--premium i svg {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon--premium:not(:disabled):hover {
  gap: 0;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-icon--premium:not(:disabled):hover span {
  color: var(--basic-white);
  -webkit-box-shadow: 0 8px 18px rgba(20, 22, 90, 0.35);
  box-shadow: 0 8px 18px rgba(20, 22, 90, 0.35);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-color: transparent;
}

.btn-icon--premium:not(:disabled):hover i {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-color: transparent;
  -webkit-box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 8px 18px rgba(196, 158, 79, 0.35);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 8px 18px rgba(196, 158, 79, 0.35);
}

.btn-icon--premium:not(:disabled):hover i svg {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

.btn-icon--premium:disabled {
  cursor: not-allowed;
}

.btn-icon--premium:disabled span {
  background-image: none;
  background-color: var(--basic-gray);
  border-color: transparent;
}

.form-block__content-right-btn-send.btn-icon:disabled span,
.modal-callback__bottom-btn.btn-icon:disabled span {
  color: var(--basic-black) !important;
}

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

.none {
  display: none !important;
}

.scroll-lock-ios {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

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

.no-scroll {
  overflow-y: hidden;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Round 20 (2026-05-16) — default value for --header-height set on the
 * root so .page-layout's padding-top has a sane fallback BEFORE the JS
 * (modules/global.js) measures the real header height. The default 90px
 * matches the rendered header at desktop width (logo card 65px + 25px
 * padding-top); on tablet/mobile the JS replaces it as soon as it runs
 * on DCL, and again on window.load + resize.
 *
 * Without this default, the var was undefined at first paint, calc()
 * collapsed to just 24px, and the hero rendered under the fixed header
 * — the user-visible CLS where "снимките се качват нагоре под бутоните,
 * после се връщат надолу". */

:root {
  --header-height: 90px;
}

/* Round 60.2 (2026-05-23) — CSS-level offset for native anchor scrolls
   (cross-page navigation to a #hash). Without this, browsers scroll
   the anchor flush with the viewport top → the fixed header overlaps
   the section title. With scroll-padding-top, the browser leaves
   enough room above the anchor for the header to fit. Complements
   the JS re-scroll-on-load handler in `modules/global.js` which
   corrects positions on iOS where the initial scroll fires before
   images/fonts have loaded. */

html {
  scroll-padding-top: var(--header-height, 90px);
}

/* Round 60.4 (2026-05-23) — `scroll-margin-top` on every <section> that
   serves as an anchor target. Applies the offset on the TARGET element
   rather than the scroll container. More reliable than html-level
   scroll-padding-top on iOS Safari, especially for native cross-page
   anchor scrolls where the initial scroll fires before scroll-padding
   has been processed. With this in place the browser lands at the
   right spot on first try, making the JS re-scroll handler (in
   modules/global.js) a true safety net for catastrophic drift only —
   no longer visible in the common case. The user reported "still jumps
   up/down occasionally" after 60.2/60.3 — this addresses it. */

section[id] {
  scroll-margin-top: var(--header-height, 90px);
}

.page-layout {
  padding-top: calc(var(--header-height) + 24px);
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.page-layout__employees {
  padding-top: var(--header-height);
}

.cookies {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 100%;
  max-width: 365px;
  z-index: 200;
}

.cookies__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  background-color: var(--basic-blue);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
}

.cookies__text {
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--text-notification);
  text-wrap: auto;
  letter-spacing: -0.6px;
}

.cookies__btn {
  width: 100%;
}

.cookies__btn span {
  width: 100%;
}

.cookies__link {
  display: inline-block;
  color: var(--extra-blue);
  border-bottom: 1px solid var(--extra-blue);
}

.cookies.slide-in {
  -webkit-animation: slideInFromBottom 0.4s ease forwards;
  animation: slideInFromBottom 0.4s ease forwards;
}

.cookies.slide-out {
  -webkit-animation: slideOutToTop 0.4s ease forwards;
  animation: slideOutToTop 0.4s ease forwards;
}

.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--basic-white);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 1s ease, visibility 1s ease;
  transition: opacity 1s ease, visibility 1s ease;
  pointer-events: none;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 84px;
  height: 84px;
  position: relative;
}

.loader::after,
.loader::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--basic-gold);
  -webkit-animation: push 1s infinite linear alternate;
  animation: push 1s infinite linear alternate;
}

.loader::after {
  top: auto;
  bottom: 0;
  left: 0;
  background: var(--extra-gold);
  animation-direction: alternate-reverse;
}

@-moz-document url-prefix()  {
  .body,
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--extra-gold) var(--basic-white);
  }
}

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

/* Контейнеры */

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

.container-full {
  padding: 0 var(--container-padding);
  max-width: 100%;
}

.container-left-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
}

.container-right-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
  margin-left: auto;
}

.container-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-half-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-half-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

/* Blocks */

.banner-company {
  position: relative;
  overflow: hidden;
}

.banner-company__left {
  background-color: var(--basic-gold);
  padding: 60px 65px 30px 72px;
  border-radius: 16px;
  width: 100%;
}

.banner-company__right {
  width: 100%;
  position: relative;
}

.banner-company__right-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--extra-blue);
  border-radius: var(--basic-radius);
}

.banner-company__right-icon svg {
  stroke: var(--basic-white);
}

.banner-company__right-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.banner-company__right-link span {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--basic-black);
}

.banner-company__right-figure {
  overflow: hidden;
  border-radius: 16px;
}

.banner-company__right-figure img {
  aspect-ratio: 638/660;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}

.banner-company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.banner-company__left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 40px;
}

.banner-company__left-top p {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.banner-company__left-link {
  margin-top: 10px;
}

.banner-company__left-figure {
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
}

.banner-company__left-figure img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 100/100;
  border-radius: 100px;
}

.banner-company__left-figure::after {
  content: "";
  background-image: url("../img/icon-quotation__new.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
  display: block;
}

.banner-company__left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding-top: 50px;
  max-width: 465px;
}

.banner-company__left-name {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: end;
}

.banner-company__right-banner {
  background-color: var(--extra-gold);
  border-radius: 16px;
  padding: 24px 30px 24px 30px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  max-width: 290px;
}

.banner-company__right-banner-content p {
  font-weight: 700;
  font-size: 0.7rem;
  text-wrap: auto;
}

.banner-company__left-blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.banner-company__left-blockquote p {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
  text-wrap: auto;
  line-height: 1.4;
}

.blog-listing {
  background: var(--bg);
  padding-bottom: 96px;
  color: var(--text);
}

.blog-grid-region {
  -webkit-transition: opacity 0.18s var(--ease-lift, ease);
  transition: opacity 0.18s var(--ease-lift, ease);
}

.blog-grid-region.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.blog-search {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 30;
}

.blog-search .container {
  max-width: 800px;
}

.blog-search-form {
  position: relative;
}

.blog-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary);
  opacity: 0.6;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 14px 24px 14px 52px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: #F4F4FB;
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  -webkit-transition: border 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.blog-search-input::-webkit-input-placeholder {
  color: var(--muted);
}

.blog-search-input::-moz-placeholder {
  color: var(--muted);
}

.blog-search-input:-ms-input-placeholder {
  color: var(--muted);
}

.blog-search-input::-ms-input-placeholder {
  color: var(--muted);
}

.blog-search-input::placeholder {
  color: var(--muted);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card);
  -webkit-box-shadow: 0 0 0 3px rgba(29, 31, 118, 0.12);
  box-shadow: 0 0 0 3px rgba(29, 31, 118, 0.12);
}

.blog-cats {
  background: transparent;
  padding: 32px 0 8px;
}

.blog-cats-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.blog-cats-strip::-webkit-scrollbar {
  height: 4px;
}

.blog-cats-strip::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px;
}

.blog-cat {
  white-space: nowrap;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--card);
  border: 1.5px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), background 0.18s, border-color 0.18s, color 0.18s;
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
}

.blog-cat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--card);
  -webkit-box-shadow: inset 0 -2px 0 0 var(--gold-rich), 0 6px 16px -6px rgba(29, 31, 118, 0.35);
  box-shadow: inset 0 -2px 0 0 var(--gold-rich), 0 6px 16px -6px rgba(29, 31, 118, 0.35);
}

.blog-cat:hover:not(.active) {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--primary);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 18px -8px rgba(29, 29, 29, 0.12);
  box-shadow: 0 8px 18px -8px rgba(29, 29, 29, 0.12);
}

.blog-hero {
  padding: 32px 0 56px;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--card) 70%);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  -webkit-box-shadow: var(--shadow-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.blog-hero-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold)), to(var(--gold-rich)));
  background: linear-gradient(90deg, var(--gold), var(--gold-rich));
}

.blog-hero-media {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  display: block;
  -webkit-box-shadow: var(--shadow-navy);
  box-shadow: var(--shadow-navy);
  -webkit-transition: -webkit-transform 0.4s var(--ease-lift);
  transition: -webkit-transform 0.4s var(--ease-lift);
  transition: transform 0.4s var(--ease-lift);
  transition: transform 0.4s var(--ease-lift), -webkit-transform 0.4s var(--ease-lift);
}

.blog-hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-hero-media:hover {
  -webkit-transform: scale(1.015);
  -ms-transform: scale(1.015);
  transform: scale(1.015);
}

.blog-hero-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  position: relative;
}

.blog-hero-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255, 211, 126, 0.5), transparent 60%);
}

.blog-hero-flag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 4px 12px -4px rgba(29, 31, 118, 0.4);
  box-shadow: 0 4px 12px -4px rgba(29, 31, 118, 0.4);
}

.blog-hero-star {
  color: var(--gold);
  font-size: 14px;
}

.blog-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}

.blog-hero-title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.blog-hero-title a:hover {
  color: var(--primary);
}

.blog-hero-excerpt {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.85;
  margin: 0 0 28px;
  max-width: 540px;
}

.blog-hero-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.blog-hero-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: var(--card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--card);
  -webkit-box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
  box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
}

.blog-hero-meta-text {
  font-size: 0.85rem;
  line-height: 1.45;
}

.blog-hero-meta-text strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.blog-hero-meta-text span {
  color: var(--muted);
}

.blog-search-banner,
.blog-cat-banner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  margin: 16px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
  -webkit-box-shadow: var(--shadow-card);
  box-shadow: var(--shadow-card);
}

.blog-search-banner strong,
.blog-cat-banner strong {
  color: var(--primary);
  font-weight: 700;
}

.blog-search-clear {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.blog-search-clear:hover {
  color: var(--gold-rich);
  text-decoration: underline;
}

.blog-grid-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 44px 0 22px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 36px;
  position: relative;
}

.blog-grid-head::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--gold);
}

.blog-grid-h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.3px;
}

.blog-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.blog-sort a {
  color: var(--muted);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 100px;
  font-weight: 600;
  -webkit-transition: all 0.18s var(--ease-lift);
  transition: all 0.18s var(--ease-lift);
}

.blog-sort a.active {
  background: var(--primary);
  color: var(--card);
  -webkit-box-shadow: inset 0 -2px 0 0 var(--gold-rich), 0 4px 10px -4px rgba(29, 31, 118, 0.35);
  box-shadow: inset 0 -2px 0 0 var(--gold-rich), 0 4px 10px -4px rgba(29, 31, 118, 0.35);
}

.blog-sort a:hover:not(.active) {
  color: var(--primary);
  background: var(--gold-soft);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  -webkit-transition: border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), border-color 0.18s;
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: var(--shadow-card);
  box-shadow: var(--shadow-card);
}

.blog-card:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: var(--shadow-card-hover);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold);
}

.blog-card:hover .blog-card-cat {
  background: var(--gold);
  color: var(--primary);
  -webkit-box-shadow: 0 4px 10px -4px rgba(255, 211, 126, 0.5);
  box-shadow: 0 4px 10px -4px rgba(255, 211, 126, 0.5);
}

.blog-card:hover .blog-card-title a {
  color: var(--primary);
}

.blog-card-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s var(--ease-lift);
  transition: -webkit-transform 0.5s var(--ease-lift);
  transition: transform 0.5s var(--ease-lift);
  transition: transform 0.5s var(--ease-lift), -webkit-transform 0.5s var(--ease-lift);
}

.blog-card-media:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.blog-card-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  position: relative;
}

.blog-card-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 211, 126, 0.4), transparent 55%);
}

.blog-card-body {
  padding: 22px 22px 22px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-card-cat {
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  color: var(--gold);
  background: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  -webkit-box-shadow: 0 4px 10px -4px rgba(29, 31, 118, 0.35);
  box-shadow: 0 4px 10px -4px rgba(29, 31, 118, 0.35);
  -webkit-transition: background 0.18s var(--ease-lift), color 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: background 0.18s var(--ease-lift), color 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: background 0.18s var(--ease-lift), color 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift);
  transition: background 0.18s var(--ease-lift), color 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 10px;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.blog-card-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--gold-rich);
  border-radius: 50%;
}

.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}

.blog-pagination .pagination,
.blog-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination li > a,
.blog-pagination li > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: all 0.18s var(--ease-lift);
  transition: all 0.18s var(--ease-lift);
}

.blog-pagination li.active > span,
.blog-pagination li.active > a {
  background: var(--primary);
  color: var(--card);
  border-color: var(--primary);
  -webkit-box-shadow: inset 0 -2px 0 0 var(--gold-rich);
  box-shadow: inset 0 -2px 0 0 var(--gold-rich);
}

.blog-pagination li > a:hover {
  background: var(--gold-soft);
  color: var(--primary);
  border-color: var(--gold);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 14px -6px rgba(29, 29, 29, 0.15);
  box-shadow: 0 6px 14px -6px rgba(29, 29, 29, 0.15);
}

.blog-pagination li.disabled > span {
  opacity: 0.4;
  cursor: default;
}

.blog-empty {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 56px 32px;
  text-align: center;
  margin: 32px 0;
  -webkit-box-shadow: var(--shadow-card);
  box-shadow: var(--shadow-card);
}

.blog-empty p {
  color: var(--muted);
  margin: 8px 0;
  font-size: 0.95rem;
}

.blog-empty a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.blog-share-cta {
  background: linear-gradient(135deg, #23267b, #15173f);
  color: var(--card);
  border-radius: 24px;
  padding: 48px 56px;
  margin: 80px 0 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-navy);
  box-shadow: var(--shadow-navy);
}

.blog-share-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold)), to(var(--gold-rich)));
  background: linear-gradient(90deg, var(--gold), var(--gold-rich));
}

.blog-share-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  color: var(--card);
  line-height: 1.2;
}

.blog-share-cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}

.blog-share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-share-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 211, 126, 0.14);
  color: var(--gold);
  border: 1px solid rgba(255, 211, 126, 0.32);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s var(--ease-lift);
  transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s var(--ease-lift);
  transition: transform 0.16s var(--ease-lift), box-shadow 0.16s var(--ease-lift), background 0.18s, color 0.18s, border-color 0.18s;
  transition: transform 0.16s var(--ease-lift), box-shadow 0.16s var(--ease-lift), background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s var(--ease-lift);
}

.blog-share-btn svg {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
}

.blog-share-btn:hover,
.blog-share-btn:focus-visible {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 22px -8px rgba(255, 211, 126, 0.55);
  box-shadow: 0 10px 22px -8px rgba(255, 211, 126, 0.55);
  outline: none;
}

.blog-share-btn.is-copied {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.blog-newsletter {
  background: linear-gradient(135deg, #23267b, #15173f);
  color: var(--card);
  border-radius: 24px;
  padding: 56px;
  margin: 80px 0 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-navy);
  box-shadow: var(--shadow-navy);
}

.blog-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold)), to(var(--gold-rich)));
  background: linear-gradient(90deg, var(--gold), var(--gold-rich));
}

.blog-newsletter h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  color: var(--card);
}

.blog-newsletter p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

.blog-newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.blog-newsletter-form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--card);
  font-family: inherit;
  -webkit-transition: background 0.18s, border-color 0.18s, -webkit-box-shadow 0.18s;
  transition: background 0.18s, border-color 0.18s, -webkit-box-shadow 0.18s;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s, -webkit-box-shadow 0.18s;
}

.blog-newsletter-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
  -webkit-box-shadow: 0 0 0 3px rgba(255, 211, 126, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 211, 126, 0.2);
}

.blog-newsletter-form button {
  background: linear-gradient(135deg, var(--gold), #F6B64A);
  color: #3A2A00;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s;
  transition: -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s;
  transition: transform 0.16s var(--ease-lift), box-shadow 0.16s;
  transition: transform 0.16s var(--ease-lift), box-shadow 0.16s, -webkit-transform 0.16s var(--ease-lift), -webkit-box-shadow 0.16s;
  font-family: inherit;
  white-space: nowrap;
}

.blog-newsletter-form button:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 24px rgba(255, 211, 126, 0.45);
  box-shadow: 0 10px 24px rgba(255, 211, 126, 0.45);
}

.blog-post {
  background: var(--bg);
  padding-bottom: 96px;
  color: var(--text);
}

.blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}

.blog-progress-bar {
  height: 100%;
  width: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--gold)));
  background: linear-gradient(90deg, var(--primary), var(--gold));
  -webkit-transition: width 0.1s ease-out;
  transition: width 0.1s ease-out;
}

.blog-post-hero {
  padding: 52px 0 0;
  background: var(--bg);
}

.blog-post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.blog-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 500;
}

.blog-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.blog-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.blog-post-cat {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 18px;
  background: var(--primary);
  border-radius: 100px;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 4px 12px -4px rgba(29, 31, 118, 0.4);
  box-shadow: 0 4px 12px -4px rgba(29, 31, 118, 0.4);
}

.blog-post-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -1.2px;
}

.blog-post-excerpt {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.85;
  margin: 0 0 36px;
  font-weight: 400;
}

.blog-post-byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.blog-post-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: var(--card);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 2px solid var(--card);
  -webkit-box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
  box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
}

.blog-post-byline-meta {
  font-size: 0.88rem;
  line-height: 1.45;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-post-byline-meta strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-post-byline-meta span {
  color: var(--muted);
}

.blog-post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.blog-post-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--line);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  -webkit-transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), background 0.18s, color 0.18s, border-color 0.18s;
  transition: transform 0.18s var(--ease-lift), box-shadow 0.18s var(--ease-lift), background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s var(--ease-lift), -webkit-box-shadow 0.18s var(--ease-lift);
}

.blog-post-share a:hover {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 18px -8px rgba(29, 31, 118, 0.4);
  box-shadow: 0 8px 18px -8px rgba(29, 31, 118, 0.4);
}

.blog-post-figure {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.blog-post-figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow-navy);
  box-shadow: var(--shadow-navy);
}

.blog-post-body {
  padding: 0 0 48px;
}

.blog-post-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text);
}

.blog-post-prose > p:first-child::first-letter {
  float: left;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
}

.blog-post-prose p {
  margin: 0 0 1.6em;
  color: var(--text);
}

.blog-post-prose h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 2.5em 0 0.8em;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.4em;
}

.blog-post-prose h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.blog-post-prose h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 2em 0 0.6em;
}

.blog-post-prose blockquote {
  margin: 2em 0;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 18px 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.55;
  -webkit-box-shadow: 0 4px 12px rgba(29, 31, 118, 0.08);
  box-shadow: 0 4px 12px rgba(29, 31, 118, 0.08);
}

.blog-post-prose blockquote p {
  margin: 0;
  color: var(--primary);
}

.blog-post-prose ul,
.blog-post-prose ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
  color: var(--text);
}

.blog-post-prose ul li,
.blog-post-prose ol li {
  margin-bottom: 0.5em;
}

.blog-post-prose ul li::marker,
.blog-post-prose ol li::marker {
  color: var(--gold-rich);
  font-weight: 700;
}

.blog-post-prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  -webkit-transition: color 0.18s, background 0.18s, padding 0.18s, margin 0.18s;
  transition: color 0.18s, background 0.18s, padding 0.18s, margin 0.18s;
  font-weight: 600;
}

.blog-post-prose a:hover {
  color: var(--gold);
  background: var(--primary);
  text-decoration: none;
  padding: 2px 6px;
  margin: -2px -6px;
  border-radius: 5px;
}

.blog-post-prose img,
.blog-post-prose video {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.6em 0;
  display: block;
  -webkit-box-shadow: var(--shadow-card);
  box-shadow: var(--shadow-card);
}

.blog-post-prose code {
  font-family: "SF Mono", Consolas, "Liberation Mono", monospace;
  background: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.88em;
  color: var(--primary);
  font-weight: 600;
}

.blog-post-prose pre {
  background: var(--text);
  color: var(--card);
  padding: 24px;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 0.92rem;
  line-height: 1.55;
  -webkit-box-shadow: var(--shadow-card-hover);
  box-shadow: var(--shadow-card-hover);
}

.blog-post-prose pre code {
  background: transparent;
  border: none;
  color: inherit;
  padding: 0;
  font-weight: 400;
}

.blog-post-prose strong {
  font-weight: 700;
  color: var(--text);
}

.blog-post-prose em {
  font-style: italic;
}

.blog-post-prose hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 3em 0;
  position: relative;
}

.blog-post-prose hr::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 0 4px var(--bg);
  box-shadow: 0 0 0 4px var(--bg);
}

.blog-post-cta {
  max-width: 800px;
  margin: 56px auto 0;
  background: linear-gradient(135deg, #23267b, #15173f);
  color: var(--card);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-navy);
  box-shadow: var(--shadow-navy);
}

.blog-post-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--gold)), to(var(--gold-rich)));
  background: linear-gradient(90deg, var(--gold), var(--gold-rich));
}

.blog-post-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--card);
  letter-spacing: -0.4px;
}

.blog-post-cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.6;
}

.blog-related-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 72px 0 22px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 32px;
  position: relative;
}

.blog-related-head::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--gold);
}

.blog-related-head h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.4px;
}

.blog-related-more {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.blog-related-more:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.banner-employees {
  background-color: var(--basic-gold);
  position: relative;
}

.banner-employees__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.banner-employees__group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--basic-blue);
}

.banner-employees__group.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.banner-employees__group-item.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--basic-white);
  border-radius: 16px;
  padding: 24px 24px 0 24px;
  min-height: 180px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.banner-employees__group-item.swiper-slide strong {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 700;
  font-size: 0.7rem;
  text-wrap: auto;
}

.banner-employees__strong {
  font-weight: 500;
  font-size: 1rem;
}

.banner-employees__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 89%;
}

.banner-employees__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}

.banner-employees__right-list--right .banner-employees__right-item--white {
  position: relative;
  padding: 0 0 0 0;
}

.banner-employees__right-list--right .banner-employees__right-item--white strong {
  font-family: var(--extra-font);
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  max-width: 100%;
}

.banner-employees__right-item--gold {
  background-color: var(--custom-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-employees__right-item--gold .banner-employees__right-figure::before {
  content: "";
  background-image: url("../img/stripe-gold.svg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.banner-employees__link span {
  min-width: 172px;
}

.banner-employees__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.banner-employees__box .h2 {
  line-height: 1.3;
}

.banner-employees__item p {
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.5;
}

.banner-employees__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
  padding-top: 80px;
  padding-bottom: 60px;
}

.banner-employees__right-item {
  border-radius: 16px;
}

.banner-employees__right-item--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding: 24px 0 0 24px;
  background-color: var(--basic-white);
}

.banner-employees__right-item strong {
  font-size: 1rem;
  font-weight: 500;
  max-width: 230px;
  font-family: var(--extra-font);
}

.banner-employees__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.banner-employees__right-item--black {
  background-color: var(--basic-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-employees__right-item--black .banner-employees__right-figure img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 315/340;
  height: 100%;
}

.banner-employees__right-item--black::before {
  content: "";
  display: block;
  background-color: var(--color-stripe);
  position: absolute;
  height: 1500px;
  width: 250px;
  left: 0;
  top: -50%;
  -webkit-transform: rotate(48deg) translateX(-50%);
  -ms-transform: rotate(48deg) translateX(-50%);
  transform: rotate(48deg) translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.banner-employees__right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.banner-employees__right-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  overflow: hidden;
}

.banner-employees::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 20px;
  min-height: 20px;
  display: block;
  position: absolute;
  top: 0;
  background-color: var(--basic-white);
  border-radius: 0 0 35px 35px;
  z-index: 1;
  pointer-events: none;
}

.banner-employees::after {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  min-height: 120px;
  display: block;
  background-color: var(--basic-white);
  border-radius: 35px 35px 0 0;
  z-index: 0;
  pointer-events: none;
}

.banner-partners {
  position: relative;
  overflow: hidden;
}

.banner-partners__left {
  background-color: var(--basic-gold);
  padding: 60px 65px 30px 72px;
  border-radius: 16px;
  width: 100%;
}

.banner-partners__right {
  width: 100%;
  position: relative;
}

.banner-partners__right-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--extra-blue);
  border-radius: var(--basic-radius);
}

.banner-partners__right-icon svg {
  stroke: var(--basic-white);
}

.banner-partners__right-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.banner-partners__right-link span {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--basic-black);
}

.banner-partners__right-figure {
  overflow: hidden;
  border-radius: 16px;
}

.banner-partners__right-figure img {
  aspect-ratio: 638/660;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}

.banner-partners__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.banner-partners__left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 80px;
}

.banner-partners__left-top p {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.banner-partners__left-link {
  margin-top: 10px;
}

.banner-partners__left-figure {
  position: relative;
  width: 100%;
}

.banner-partners__left-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 308/132;
}

.banner-partners__left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
  max-width: 505px;
}

.banner-partners__left-name {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: end;
}

.banner-partners__left-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.banner-partners__left-text p {
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--basic-black);
  text-wrap: auto;
}

.become-partner__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--basic-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.8%;
  flex: 0 0 32.8%;
  border-radius: 16px;
  height: 100%;
  min-height: 570px;
  overflow: hidden;
}

.become-partner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 30px 40px 0 40px;
}

.become-partner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}

.become-partner__step {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--basic-white);
  padding: 6px 25px 6px 25px;
  border-radius: var(--basic-radius);
  font-size: 0.6rem;
  font-weight: 400;
}

.become-partner__background {
  position: relative;
  z-index: 1;
  background-color: var(--basic-black);
  border-radius: 16px;
  overflow: hidden;
}

.become-partner__background::before {
  content: "";
  background-image: url("../img/stripe-become.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.become-partner__background img {
  padding-top: 30px;
}

.become-partner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.become-partner__text strong {
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--extra-font);
}

.become-partner__text p {
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.5;
}

.become-partner__figure {
  margin-top: auto;
  overflow: hidden;
  border-radius: 16px;
}

.become-partner__figure img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 422/245;
  border-radius: 16px;
}

.block-arguments {
  overflow: hidden;
}

.block-arguments__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.block-arguments__tabs-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.block-arguments__tabs-arrow--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.block-arguments__tabs-arrow.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.block-arguments__tabs-arrow.swiper-button-disabled svg {
  fill: var(--basic-gray);
}

.block-arguments__tabs-arrow .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-arguments__tabs-arrow .circle-progress circle {
  fill: none;
  stroke-width: 1;
}

.block-arguments__tabs-arrow .circle-progress .bg {
  stroke: var(--basic-gray);
}

.block-arguments__tabs-arrow .circle-progress .fg {
  stroke: var(--extra-blue);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.block-arguments__tabs-arrow:hover:not(.swiper-button-disabled) .circle-progress .fg {
  stroke-dashoffset: 0;
}

.block-arguments__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block-arguments__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.block-arguments__figure img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  aspect-ratio: 100/100;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.block-arguments__article {
  border-radius: 16px;
  width: 60%;
  -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
  cursor: pointer;
  position: relative;
}

.block-arguments__article--yellow {
  background-color: var(--basic-gold);
}

.block-arguments__article--yellow .block-arguments__count {
  color: var(--extra-gold);
}

.block-arguments__article--blue {
  background-color: var(--basic-blue);
}

.block-arguments__article--blue .block-arguments__count {
  color: var(--extra-blue);
}

.block-arguments__article.is-active {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  cursor: default;
}

.block-arguments__article.is-active .block-arguments__left {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.block-arguments__article.is-active:nth-child(1) .block-arguments__figure img {
  -webkit-transform: unset !important;
  -ms-transform: unset !important;
  transform: unset !important;
}

.block-arguments__content {
  margin-top: 40px;
}

.block-arguments__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 355px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.block-arguments__link {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.block-arguments__link:hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.block-arguments__count {
  font-weight: 500;
  font-family: var(--extra-font);
  font-size: 1.4rem;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.is-active .block-arguments__count {
  opacity: 1;
}

.block-arguments__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.block-arguments__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.block-arguments__column strong {
  font-weight: 500;
  font-family: var(--extra-font);
  font-size: 1.4rem;
}

.block-arguments__column p {
  font-weight: 400;
  font-size: 0.8rem;
  text-wrap: auto;
  line-height: 1.5;
}

.block-arguments__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
  min-height: 330px;
  width: 100%;
}

.block-compensation__title.h2 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.block-compensation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.block-compensation__icon {
  width: 34px;
  height: 34px;
  display: block;
  background-color: var(--extra-svg);
}

.block-compensation__article {
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  overflow: hidden;
}

.block-compensation__article--yellow {
  background-color: var(--basic-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
}

.block-compensation__article--blue {
  background-color: var(--basic-blue);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
  color: var(--extra-blue) !important;
}

.block-compensation__article--blue *,
.block-compensation__article--blue p,
.block-compensation__article--blue strong,
.block-compensation__article--blue em,
.block-compensation__article--blue span,
.block-compensation__article--blue a,
.block-compensation__article--blue b,
.block-compensation__article--blue i,
.block-compensation__article--blue mark,
.block-compensation__article--blue small,
.block-compensation__article--blue h1,
.block-compensation__article--blue h2,
.block-compensation__article--blue h3,
.block-compensation__article--blue h4,
.block-compensation__article--blue h5,
.block-compensation__article--blue h6 {
  color: var(--extra-blue) !important;
}

.block-compensation__article--gold {
  background-color: var(--extra-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
}

.block-compensation__article--gold:has(.block-compensation__column) {
  position: relative;
}

.block-compensation__article--gold:has(.block-compensation__column) .icon__harvard,
.block-compensation__article--gold:has(.block-compensation__column) .block-compensation__rank,
.block-compensation__article--gold:has(.block-compensation__column) .block-compensation__wrapper {
  display: none !important;
}

.block-compensation__article--gold:has(.block-compensation__column)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  border-radius: inherit;
}

.block-compensation__article--gold:has(.block-compensation__column)::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.block-compensation__article--gold:has(.block-compensation__column) {
  background-image: url("/img/icon-yoga.svg");
  background-repeat: no-repeat;
  background-position: bottom 18px left 18px;
  background-size: 38px 38px;
}

.block-compensation__article--gold:has(.block-compensation__column) .block-compensation__column {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  position: relative;
  z-index: 1;
}

.block-compensation__article--gold:has(.block-compensation__column) .block-compensation__column strong {
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--extra-blue);
}

.block-compensation__article--gold:has(.block-compensation__column) .block-compensation__column p {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--extra-blue);
  opacity: 0.85;
}

.block-compensation__article--pwc .block-compensation__block {
  padding-right: 165px;
  padding-top: 8px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
}

.block-compensation__article--pwc .block-compensation__number {
  right: 32px;
  top: 50px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 8px 14px;
  -webkit-box-shadow: 0 2px 8px rgba(29, 31, 118, 0.18);
  box-shadow: 0 2px 8px rgba(29, 31, 118, 0.18);
}

.block-compensation__article--pwc .block-compensation__text.block-compensation__flex {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 18px 20px;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 4px 14px rgba(29, 31, 118, 0.08);
  box-shadow: 0 4px 14px rgba(29, 31, 118, 0.08);
}

.block-compensation__article--pwc .block-compensation__text.block-compensation__flex .block-compensation__group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
}

.block-compensation__article--pwc .block-compensation__text.block-compensation__flex .block-compensation__group img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2.5px solid var(--basic-white);
  -webkit-box-shadow: 0 2px 8px rgba(29, 31, 118, 0.18);
  box-shadow: 0 2px 8px rgba(29, 31, 118, 0.18);
}

.block-compensation__article--pwc .block-compensation__text.block-compensation__flex p {
  font-size: 0.85rem;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
  color: var(--extra-blue) !important;
}

.block-compensation__article--navy {
  background-color: var(--extra-blue);
  color: var(--basic-white) !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
}

.block-compensation__article--navy *,
.block-compensation__article--navy p,
.block-compensation__article--navy strong,
.block-compensation__article--navy em,
.block-compensation__article--navy span,
.block-compensation__article--navy a,
.block-compensation__article--navy b,
.block-compensation__article--navy i,
.block-compensation__article--navy mark,
.block-compensation__article--navy small,
.block-compensation__article--navy h1,
.block-compensation__article--navy h2,
.block-compensation__article--navy h3,
.block-compensation__article--navy h4,
.block-compensation__article--navy h5,
.block-compensation__article--navy h6 {
  color: var(--basic-white) !important;
}

.block-compensation__logo {
  position: absolute;
  width: 140px;
  height: 140px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  right: 0;
  top: 0;
  pointer-events: none;
}

.block-compensation__number {
  background-color: var(--basic-white);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 10px 6px 10px;
  border-radius: 6px;
  position: absolute;
  right: 100px;
  top: 50%;
  -webkit-transform: translateX(50%) translateY(50%);
  -ms-transform: translateX(50%) translateY(50%);
  transform: translateX(50%) translateY(50%);
}

.block-compensation__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.block-compensation__group {
  width: auto;
}

.block-compensation__group p {
  width: 100%;
}

.block-compensation__article--relative {
  position: relative;
}

.block-compensation__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.block-compensation__box p {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
}

.block-compensation__box strong {
  font-size: 0.85rem;
  font-weight: 600;
  text-wrap: auto;
  line-height: 1.3;
}

.block-compensation__article--picture {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  padding: 0 0 0 0 !important;
}

.block-compensation__gallup {
  width: 110px;
  height: 36px;
}

.block-compensation__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.block-compensation__text p {
  font-weight: 400;
  font-size: 0.78rem;
  text-wrap: auto;
  line-height: 1.45;
}

.block-compensation__article--custom {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  padding: 0 0 0 0 !important;
  background-color: var(--extra-gold);
}

.block-compensation__article--custom-navy {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  padding: 0 0 0 0 !important;
  background-color: var(--extra-blue);
  color: var(--basic-white) !important;
}

.block-compensation__article--custom-navy *,
.block-compensation__article--custom-navy p,
.block-compensation__article--custom-navy strong,
.block-compensation__article--custom-navy em,
.block-compensation__article--custom-navy span,
.block-compensation__article--custom-navy a,
.block-compensation__article--custom-navy b,
.block-compensation__article--custom-navy i,
.block-compensation__article--custom-navy mark {
  color: var(--basic-white) !important;
}

.block-compensation__article--custom-navy .block-compensation__figure img {
  aspect-ratio: auto !important;
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
  width: 100%;
}

.block-compensation__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.block-compensation__column strong {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
}

.block-compensation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.block-compensation__wrapper svg {
  width: 60px;
  height: 30px;
}

.block-compensation__rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--basic-white);
  border-radius: 100px;
}

.block-compensation__picture img {
  width: 100%;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.block-compensation__figure img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 422/290;
  border-radius: 16px;
  width: 100%;
}

.card-features__content {
  max-width: 32.7%;
  width: 100%;
  background-color: var(--basic-gold);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-features__circle {
  position: absolute;
  top: -100%;
  right: 0;
  width: 246px;
  height: 1500px;
  z-index: -1;
  pointer-events: none;
  background-color: var(--new-gold);
  -webkit-transform: rotate(45deg) translateX(-50%);
  -ms-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
}

.card-features__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.card-features__figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.card-features__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
}

.card-features__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.card-features__right-desc {
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--basic-black);
  width: 68%;
}

.card-features__right-desc p {
  margin-bottom: 15px;
}

.card-features__right-desc strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--basic-black);
  display: block;
  margin-bottom: 20px;
}

.card-features__right-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--basic-gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 400;
}

.card-features__right-counter:before {
  counter-increment: section;
  content: "0" counter(section);
}

.card-features__right-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--extra-grey);
  padding-bottom: 30px;
  padding-top: 30px;
}

.card-features__right-list:first-child {
  padding-top: 0;
}

.card-features__right-block {
  margin-top: 40px;
  counter-reset: section;
}

.card-features__right-description {
  font-size: 0.85rem;
}

.card-features__right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-features__right-text {
  font-weight: 500;
  font-family: var(--extra-font);
  font-size: 0.995rem;
  color: var(--basic-black);
}

.card-features__right-text strong {
  font-size: 0.9rem;
}

.card-features__right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-features__right-desc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.card-features__right-desc-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}

.card-features__right-desc-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
  background-color: var(--extra-gold);
  border-radius: 50%;
  display: block;
}

.card-features__right-hold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  background-color: var(--basic-gold);
  border-radius: 16px;
  padding: 25px 25px 25px 25px;
  width: 80%;
  max-width: 280px;
  overflow: hidden;
}

.card-features__right-hold strong {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
}

.card-features__right-figure {
  width: 100%;
  height: 100%;
}

.card-features__right-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.employee-article__carousel.swiper {
  width: 100%;
  max-width: 590px;
  margin: 0 0 0 0;
  height: 100%;
}

.employee-article__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.employee-article__accordion {
  width: 100%;
  max-width: 450px;
}

.employee-article__figure {
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
}

.employee-article__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 320/455;
  min-height: 600px;
}

.employee-article__right-tooltip {
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  padding: 6px 25px 6px 25px;
  font-size: 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.employee-article__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 360px;
  width: 100%;
  margin-left: auto;
}

.employee-article__right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.employee-article__right-box strong {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
}

.employee-article__right-box p {
  font-weight: 400;
  font-size: 0.7rem;
}

/* Round 61.7 (2026-05-23) — hide BOTH apply buttons in the mobile
   filter drawer. Round 61.6 instrumentation proved the mirror-to-
   desktop pattern actually works (mobile pick fires mirror → desktop
   change handler → chips + map + sport-availability all refresh
   instantly). With instant filter functional, the apply buttons are
   redundant AND a UX trap — the user reported they were convinced the
   buttons "blocked" filter application. User closes sub-modal via the
   × top-right button or back-arrow; the main drawer closes via × too.

   Pre-61.7 this rule was reverted in 61.5 after the failed 61.3/61.4
   attempts. Now with mirror proven, the rule is back. */

.filter-aside__search[data-action=search-filter],
.filter-aside__bottom-btn[data-action=apply-inside-filter] {
  display: none !important;
}

.filter-aside {
  position: fixed;
  width: 100%;
  height: calc(100% - var(--header-height) - 40px);
  bottom: 0;
  background-color: var(--basic-white);
  border-radius: 16px 16px 0 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.4s, opacity 0.3s ease;
  transition: visibility 0s linear 0.4s, opacity 0.3s ease;
  z-index: 103;
}

.filter-aside.filter-show {
  -webkit-animation: slideInFromBottom 0.4s ease-out forwards;
  animation: slideInFromBottom 0.4s ease-out forwards;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.filter-aside.filter-hide {
  -webkit-animation: slideOutToTop 0.4s ease-in forwards;
  animation: slideOutToTop 0.4s ease-in forwards;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.filter-aside__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.filter-aside__container {
  height: 100%;
  padding: 25px 20px 25px 20px;
}

.filter-aside__overlay {
  height: 100%;
  overflow-y: auto;
  overflow-x: clip;
}

.filter-aside__overlay::-webkit-scrollbar {
  width: 4px;
  border-radius: 8px;
}

.filter-aside__overlay::-webkit-scrollbar-track {
  background: var(--basic-blue);
  border-radius: 8px;
}

.filter-aside__overlay::-webkit-scrollbar-thumb {
  background: var(--extra-blue);
  border-radius: 8px;
}

.filter-aside__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  background-color: var(--extra-blue);
}

.filter-aside__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.filter-aside__form {
  margin-top: 30px;
  height: calc(100% - 70px);
}

.filter-aside__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.filter-aside__menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--basic-white);
  border-radius: 16px 16px 0 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.4s, opacity 0.3s ease;
  transition: visibility 0s linear 0.4s, opacity 0.3s ease;
  z-index: 103;
}

.filter-aside__menu[aria-expanded=true] {
  -webkit-animation: slideInFromBottom 0.4s ease-out forwards;
  animation: slideInFromBottom 0.4s ease-out forwards;
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.filter-aside__menu.filter-hide {
  -webkit-animation: slideOutToTop 0.4s ease-in forwards;
  animation: slideOutToTop 0.4s ease-in forwards;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: visibility 0s linear 0.4s, opacity 0.4s ease;
  transition: visibility 0s linear 0.4s, opacity 0.4s ease;
}

.filter-aside__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.filter-aside__forward {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-aside__div {
  position: relative;
  margin-top: 30px;
}

.filter-aside__content-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter-aside__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 0.7rem;
}

.filter-aside__content-checkbox + .filter-aside__content-checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter-aside__content-checkbox + .filter-aside__content-checkbox::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--extra-blue);
  background-color: var(--basic-blue);
  border-radius: 1px;
  background: var(--basic-blue) center/50% no-repeat;
}

.filter-aside__content-checkbox:checked + .filter-aside__content-checkbox::before {
  background-color: var(--extra-blue);
  background-image: url("../img/icon-checkbox.svg");
  background-size: contain;
}

.filter-aside__content-radio + .filter-aside__content-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter-aside__content-radio + .filter-aside__content-radio::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--extra-blue);
  background-color: var(--basic-blue);
  border-radius: 100px;
  background: var(--basic-blue) center/50% no-repeat;
}

.filter-aside__content-radio:checked + .filter-aside__content-checkbox::before {
  background-color: var(--extra-blue);
  background-image: url("../img/icon-checkbox.svg");
  background-size: contain;
}

.filter-aside__content-radio:checked + .filter-aside__content-radio::before {
  border: 1px solid var(--extra-blue);
  background-color: var(--extra-blue);
}

.filter-aside__content-radio:checked + .filter-aside__content-radio::after {
  content: "";
  background-image: url("../img/icon-radio.svg");
  background-size: contain;
  background-position: center;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.filter-aside__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.filter-aside__bottom {
  margin-top: 30px;
}

.filter-aside__bottom-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--extra-blue);
  border-radius: 100px;
  padding: 16px 0 16px 0;
  width: 100%;
}

.filter-aside__bottom-btn span {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--basic-white);
}

.filter-aside__bottom-btn:disabled {
  background-color: var(--basic-gray);
  cursor: not-allowed;
  pointer-events: none;
}

.filter-aside__content {
  margin-top: 25px;
  overflow-y: auto;
  overflow-x: clip;
  max-height: 326px;
}

.filter-aside__content::-webkit-scrollbar {
  width: 4px;
  border-radius: 8px;
}

.filter-aside__content::-webkit-scrollbar-track {
  background: var(--basic-blue);
  border-radius: 8px;
}

.filter-aside__content::-webkit-scrollbar-thumb {
  background: var(--extra-blue);
  border-radius: 8px;
}

.filter-aside__content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-aside__content-list:last-child {
  margin-bottom: 0;
}

.filter-aside__content-icon {
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
}

.filter-aside__label {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.filter-aside__label.label--active {
  top: 10px;
  left: 20px;
  font-size: 0.5rem;
}

.filter-aside__input {
  width: 100%;
  background-color: var(--basic-blue);
  padding: 17px 20px 17px 20px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
}

.filter-aside__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-aside__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  gap: 10px;
}

.filter-aside__clear[aria-expanded=true] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-aside__clear {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.filter-aside__clear span {
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.filter-aside__apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter-aside__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--extra-blue);
  border-radius: 100px;
  padding: 16px 0 16px 0;
  width: 100%;
}

.filter-aside__search span {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--basic-white);
}

.filter-aside__search:disabled {
  background-color: var(--basic-gray);
  cursor: not-allowed;
  pointer-events: none;
}

.filter-aside__span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.filter-aside__add {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--basic-white) !important;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  background-color: var(--extra-blue);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.filter-aside__choice {
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--basic-black);
}

.filter-aside__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--basic-blue);
  border-radius: 100px;
  padding: 10px 20px 10px 20px;
  width: 100%;
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 102;
  -webkit-animation: fadeIn 0.3s ease-out forwards;
  animation: fadeIn 0.3s ease-out forwards;
}

.form-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.form-block__content-left-figure {
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
}

.form-block__content-left-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 638/700;
  border-radius: 16px;
}

.form-block__content-left {
  position: relative;
  width: 100%;
}

.form-block__content-left-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.form-block__content-left-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  background-color: var(--extra-blue);
  border-radius: 16px;
  padding: 30px 40px 30px 40px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 40px);
}

.form-block__content-left-banner strong {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 120%;
  color: var(--basic-white);
  font-family: var(--extra-font);
}

.form-block__content-left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.form-block__content-left-box p {
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 120%;
  color: var(--basic-white);
}

.form-block__content-left-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-block__content-left-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-block__content-left-item a span {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 120%;
  color: var(--basic-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-block__content-left-item a span:hover {
  color: var(--extra-gold);
}

.form-block__content-right {
  background-color: var(--extra-gold);
  border-radius: 16px;
  padding: 24px 40px 24px 40px;
  width: 100%;
  max-width: 638px;
}

.form-block__content-right strong {
  display: block;
  margin-bottom: 30px;
  color: var(--basic-black);
  font-size: 1.25rem;
}

.form-block__content-right-form {
  margin-top: 20px;
}

.form-block__content-right-li--error.is-active .form-block__content-right-label {
  color: var(--basic-red);
}

.form-block__content-right-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  position: relative;
  min-height: 55px;
}

.form-block__content-right-li.half-field {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 49%;
  flex: 1 0 49%;
}

.form-block__content-right-li.is-active .form-block__content-right-label {
  -webkit-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  transform: translateY(-12px);
  font-size: 0.4rem;
  -webkit-transition: font-size 0.2s ease, -webkit-transform 0.2s ease;
  transition: font-size 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, font-size 0.2s ease;
  transition: transform 0.2s ease, font-size 0.2s ease, -webkit-transform 0.2s ease;
}

.form-block__content-right-li.hidden-field {
  display: none;
}

.form-block__content-right-li.will-be-hidden {
  display: none;
}

.form-block__content-right-li.auto-resize-textarea .form-block__content-right-label {
  top: 20px;
}

.form-block__content-right-li.auto-resize-textarea.is-active .form-block__content-right-label {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.form-block__content-right-li.auto-resize-textarea.is-active .form-block__content-right-label br {
  display: none;
}

.form-block__content-right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: var(--basic-white);
  border-radius: var(--basic-radius);
  padding: 3px 5px 3px 5px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --magic-left-form: 0px;
  --magic-width-form: 0px;
}

.form-block__content-right-list::before {
  content: "";
  position: absolute;
  top: auto;
  left: var(--magic-left-form);
  width: var(--magic-width-form);
  height: 100%;
  max-height: 35px;
  background-color: var(--basic-blue);
  border-radius: var(--basic-radius);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}

.form-block__content-right-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 10px 10px 10px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-block__content-right-btn span {
  font-size: 0.7rem;
  font-weight: 500;
}

.form-block__content-right-btn:hover {
  background-color: var(--basic-blue);
  border-radius: 16px;
}

.form-block__content-right-btn-send span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 175px;
}

.form-block__content-right-input {
  width: 100%;
  padding: 13px 20px 13px 20px;
  border-radius: 100px;
  background-color: var(--basic-white);
  font-weight: 500;
  font-size: 0.7rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.form-block__content-right-input::-webkit-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-input::-moz-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-input:-ms-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-input::-ms-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-input::placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-input:hover {
  border-color: var(--extra-blue);
}

.form-block__content-right-input.has-error {
  border-color: var(--basic-red);
}

.form-block__content-right-textarea {
  width: 100%;
  padding: 20px 20px 10px 20px;
  border-radius: 16px;
  background-color: var(--basic-white);
  resize: none;
  font-weight: 500;
  font-size: 0.7rem;
  border: 1px solid transparent;
}

.form-block__content-right-textarea::-webkit-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-textarea::-moz-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-textarea:-ms-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-textarea::-ms-input-placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-textarea::placeholder {
  color: var(--color-placeholder);
}

.form-block__content-right-textarea:hover {
  border-color: var(--extra-blue);
}

.form-block__content-right-textarea.has-error {
  border-color: var(--basic-red);
}

.form-block__content-right-textarea:focus {
  outline: none;
}

.form-block__content-right-error {
  position: absolute;
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 120%;
  color: var(--basic-red);
  bottom: -10px;
}

.form-block__content-right-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 0.7rem;
  pointer-events: none;
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-block__content-right-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.form-block__content-right-block {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form-block__content-right-policy {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-wrap: auto;
}

.form-block__content-right-policy-link {
  color: var(--extra-blue);
}

.form-error-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: var(--basic-blue);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 120px;
  opacity: 0;
  -webkit-animation: slideInFromBottom 1s ease forwards;
  animation: slideInFromBottom 1s ease forwards;
}

.form-error-notification__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.form-error-notification__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.form-error-notification__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--basic-radius);
  border: 1px solid var(--extra-blue);
}

.form-error-notification__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--extra-font);
  max-width: 240px;
  margin-bottom: 0 !important;
}

.form-error-notification__text {
  font-size: 0.7rem;
  color: var(--text-notification);
  font-weight: 500;
}

.form-error-notification.slide-out {
  -webkit-animation: slideOutToTop 1s ease forwards;
  animation: slideOutToTop 1s ease forwards;
}

.form-success-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: var(--basic-blue);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 150px;
  opacity: 0;
  -webkit-animation: slideInFromBottom 1s ease forwards;
  animation: slideInFromBottom 1s ease forwards;
}

.form-success-notification__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.form-success-notification__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.form-success-notification__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--basic-radius);
  border: 1px solid var(--extra-blue);
}

.form-success-notification__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--extra-font);
  max-width: 240px;
  margin-bottom: 0 !important;
}

.form-success-notification__text {
  font-size: 0.7rem;
  color: var(--text-notification);
  font-weight: 500;
}

.form-success-notification.slide-out {
  -webkit-animation: slideOutToTop 1s ease forwards;
  animation: slideOutToTop 1s ease forwards;
}

/* Round 19 (2026-05-16) — anti-CLS for the HERO Swiper.
 * Round 21 fix (2026-05-16) — narrowed to ONLY the general-banner hero.
 *
 * The original round-19 rule was applied to EVERY .swiper:not(.swiper-
 * initialized), but some carousels (notably .geography-presence__carousel)
 * are NEVER initialised as a Swiper on desktop — the SCSS unsets the
 * swiper styles and turns them into a plain vertical scroll list. With
 * the broad rule, those carousels stayed permanently with only their
 * first slide visible — the user reported empty venue cards on the map
 * page.
 *
 * Now scoped to .general-banner__content-right.swiper specifically: the
 * hero IS always Swiper-initialized (general-banner.js does that on
 * every page that has it), so .swiper-initialized always lands within
 * ~200 ms and the rule self-disables.
 *
 * Why we still need this for the hero: pre-init the 3 slides render
 * vertically stacked (block flow) ⇒ hero ~3× tall ⇒ everything below
 * pushed way down ⇒ Swiper boots ⇒ slides collapse to horizontal ⇒
 * everything below SLIDES UP, sometimes under the fixed header. The
 * "снимки се качват нагоре под бутоните" CLS user report.
 */

.general-banner__content-right.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: block;
}

.general-banner__content-right.swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none !important;
}

.general-banner__content-left {
  width: 100%;
  background-color: var(--basic-gold);
  padding: 62px 62px 62px 62px;
  border-radius: 16px;
  max-width: 638px;
}

.general-banner__content-right {
  width: 100%;
}

.general-banner__content-grid--left .general-banner__content-item:nth-child(1) {
  grid-area: 1/2;
}

.general-banner__content-grid--left .general-banner__content-item:nth-child(2) {
  grid-area: 2/1;
}

.general-banner__content-grid--left .general-banner__content-item:nth-child(3) {
  grid-area: 3/2;
}

.general-banner__content-grid--left .general-banner__content-item:nth-child(4) {
  grid-area: 1/3;
  margin-right: 54px;
}

.general-banner__content-grid--left .general-banner__content-item:nth-child(4) figure {
  width: 100px;
  height: 100px;
}

.general-banner__content-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 35px;
  padding-top: 45px;
  position: relative;
}

.general-banner__content-figure::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--extra-blue);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
}

.general-banner__content-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.general-banner__content-box:not(:first-child) {
  padding-top: 40px;
}

.general-banner__content-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.general-banner__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.general-banner__content-row p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--basic-black);
  text-wrap: balance;
  max-width: 100%;
}

.general-banner__content-right-figure {
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.general-banner__content-right-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 638/660;
}

.general-banner__content-right-figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 638/660;
}

.general-banner__content-right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
  padding-left: 20px;
  padding-right: 20px;
}

.general-banner__content-right-item {
  pointer-events: all;
}

.general-banner__content-right-arrow-btn--next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.general-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.general-banner__content-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.general-banner__content-list .general-banner__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
}

.general-banner__content-list .general-banner__content-item strong {
  font-size: 1.4rem;
  font-family: var(--extra-font);
  font-weight: 500;
}

.general-banner__content-list .general-banner__content-item p {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--basic-black);
}

.general-banner__content-right-pagination.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  bottom: 10px;
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: 0 0 0 0;
}

.general-banner__content-right-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--extra-gold);
  width: 33px;
  opacity: 1;
  border-radius: var(--basic-radius);
}

.general-banner__content-right-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--basic-white);
  border-radius: 50%;
  opacity: 0.2;
  margin: 0 0 0 0 !important;
}

.general-employees {
  overflow: hidden;
}

.general-employees__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--extra-gold);
  border-radius: 16px;
}

.general-employees__left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.general-employees__left-content strong {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--basic-black);
  font-family: var(--extra-font);
}

.general-employees__left-content p {
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.general-employees__right {
  position: relative;
  width: 100%;
}

.general-employees__right-figure {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.general-employees__right-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 744/372;
}

.general-employees__left {
  padding: 55px 66px 55px 66px;
}

.general-employees__left-btn {
  margin-top: 40px;
}

.geography-presence {
  position: relative;
}

.geography-presence__select {
  width: auto;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.geography-presence__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  /*		@include mobile {*/
}

.geography-presence__result {
  width: 21%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.geography-presence__result span {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.geography-presence__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}

.geography-presence__span {
  font-weight: 400;
  font-size: 0.7rem;
}

.geography-presence__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.geography-presence__article.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 20px 0 20px 0;
}

.geography-presence__article.swiper-slide:first-child {
  border-bottom: unset;
}

.geography-presence__article.swiper-slide.geography-presence__empty {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -webkit-transform: unset !important;
  -ms-transform: unset !important;
  transform: unset !important;
}

.geography-presence__article-box {
  width: 33%;
}

.geography-presence__figure {
  overflow: hidden;
  position: relative;
}

.geography-presence__figure img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 134/160;
}

/* close .geography-presence — the .gp-gallery rules below are TOP-LEVEL so the
   body-level profile modal (#sk-profile-gallery) gets the same flex / scroll-
   snap / arrow styling, not just the in-section carousel. (2026-06-22 fix) */

/* 2026-06-21 — card image gallery: cover-first horizontal swipe strip
 * (CSS scroll-snap) + position dots + 1/N counter, and a branded "СК"
 * placeholder for venues with neither cover nor gallery. The strip carries
 * `swiper-no-swiping` so the inner swipe doesn't hijack the mobile card
 * carousel. __count/__dots are figure-children (fixed over the image);
 * __cover rides inside slide 0. */

.gp-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gp-gallery::-webkit-scrollbar {
  display: none;
}

.gp-gallery__slide {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  aspect-ratio: 134/160;
  scroll-snap-align: start;
}

.gp-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 16px;
  display: block;
}

.gp-gallery__count {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(29, 31, 118, 0.82);
  color: #FFFFFF;
  font: 700 10px/1.2 var(--basic-font, sans-serif);
  pointer-events: none;
  z-index: 2;
}

.gp-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
  z-index: 2;
}

.gp-gallery__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: width 0.2s ease, background 0.2s ease;
  transition: width 0.2s ease, background 0.2s ease;
}

.gp-gallery__dot.is-active {
  width: 16px;
  border-radius: 3px;
  background: #FFFFFF;
}

.gp-gallery {
  /* Prev/next arrows — a mouse can't swipe a horizontal scroll-snap
   * strip, so desktop needs click navigation. Hidden until the card
   * figure is hovered; always visible + larger in the modal. */
}

.gp-gallery__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 31, 118, 0.78);
  color: #FFFFFF;
  font: 700 18px/1 var(--basic-font, sans-serif);
  cursor: pointer;
  opacity: 0;
  z-index: 3;
  -webkit-transition: opacity 0.18s ease, background 0.18s ease;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.gp-gallery__nav:hover {
  background: var(--extra-blue, #1D1F76);
}

.gp-gallery__nav--prev {
  left: 6px;
}

.gp-gallery__nav--next {
  right: 6px;
}

.geography-presence__figure:hover .gp-gallery__nav {
  opacity: 1;
}

.geography-presence__figure--empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  aspect-ratio: 134/160;
  /* 2026-06-22 — premium "no photo yet" placeholder: the short "СК" mark
   * (favicon-v68b.svg gold app-icon) CONTAINED + centered on a navy
   * gradient with a soft gold glow + drop shadow. Never cropped. */
  background: radial-gradient(60% 50% at 50% 42%, rgba(255, 211, 126, 0.16), transparent 70%), radial-gradient(130% 120% at 50% 28%, #2E3091 0%, #1D1F76 58%, #14163F 100%);
  border: 0;
  border-radius: 16px;
}

.geography-presence__figure--empty .gp-gallery__ph {
  width: 58%;
  max-width: 110px;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 22px;
  -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  opacity: 1;
}

.geography-presence__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.geography-presence__inner {
  /* 2026-05-18 (round 29) — kill the double-margin bug.
   * `.geography-presence__map` has `margin-left: 15px` from its base
   * rule (line ~307) AND `.sk-map-frame` ALSO has `margin-left: 15px`.
   * Both apply — total left offset = 30 px, plus the map has
   * `width: 100%` so it overflows the frame to the right by 15 px,
   * making the map's right edge fall SHORT of the container right
   * relative to the search hub + form-block above/below.
   * Reset the inner map margin so only the frame's gap counts. */
}

.geography-presence__inner .sk-map-frame .geography-presence__map {
  margin-left: 0;
  margin-right: 0;
}

.geography-presence {
  /* 2026-05-17 — hide the venue-cards carousel on mobile/tablet-middle.
   * Reasoning:
   *   1) On narrow viewports the swiper produced a large dead white area
   *      below short cards (Swiper container height ≈ tallest slide,
   *      autoHeight tried to fix it but reintroduced render bugs).
   *   2) The map balloon now has a proper "Открыть профиль" CTA that
   *      opens the SAME ProfileModal a card click would, so users still
   *      have a path to venue details.
   *   3) The pagination dots also vanish to avoid a lonely strip.
   * Above tablet-middle the side-by-side desktop layout is unchanged. */
}

.geography-presence__pagination.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  top: unset !important;
  bottom: unset !important;
  position: static;
  margin: 0 0 0 0;
}

.geography-presence__pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--extra-gold);
  width: 33px;
  opacity: 1;
  border-radius: var(--basic-radius);
}

.geography-presence__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--basic-gray);
  border-radius: 50%;
  opacity: 0.2;
  margin: 0 0 0 0 !important;
}

.geography-presence__carousel.swiper {
  width: 100%;
}

.geography-presence__strong {
  font-weight: 500;
  font-size: 0.7rem;
}

.geography-presence__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 60%;
}

.geography-presence__div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.geography-presence__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.geography-presence__group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 10px 3px 10px;
  background-color: var(--basic-blue);
  border-radius: 5px;
}

.geography-presence__group-item span {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.geography-presence__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4.5px;
}

.geography-presence__group-item--last {
  background-color: var(--basic-white);
  border: 1px solid rgba(83, 88, 174, 0.2);
}

.geography-presence__map {
  width: 100%;
  height: 600px;
  margin-left: 15px;
  border-radius: 16px;
  overflow: hidden;
}

.geography-presence__block {
  margin-top: 30px;
}

.geography-presence__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: var(--basic-blue);
  border-radius: 100px;
  padding: 14px 14px 14px 14px;
  width: 100%;
}

.geography-presence__filter span {
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.1;
}

.ymaps-2-1-79-balloon__content {
  border-radius: 0 !important;
}

/* ============================================================ */

/* SK Map V2 — Variant A pins + profile modal + Light Beam fx   */

/*                                                              */

/* Added 2026-05-15. Replaces the old icon-image placemarks +   */

/* Yandex balloon with: gold-gradient drop pins (with pulse      */

/* ring), a custom profile modal (richer than balloon), and a   */

/* Light Beam reveal animation that plays on pin click.         */

/*                                                              */

/* All selectors are sk-prefixed and don't conflict with the    */

/* existing .geography-presence__* tree — safe to remove this   */

/* block alone if we ever want to roll back to icon-image pins. */

/* ============================================================ */

/* — Variant A pin: gold gradient drop with pulse ring —
 *
 * CRITICAL: Yandex's templateLayoutFactory positions the iconLayout's
 * top-left corner at the geographic coordinate. To anchor the visual pin
 * with its bottom-tip at the coordinate (the natural pin behaviour), we
 * negative-offset the container 18px left and 36px up. The companion
 * iconShape Rectangle [[-18,-36],[18,0]] in JS uses the same coords
 * relative to the geographic point, so click hit-testing matches the
 * visual pin.
 */

.sk-pin {
  position: absolute;
  left: -18px;
  top: -36px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  pointer-events: auto;
}

.sk-pin-a .sk-pin-body {
  display: block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFD37E 0%, #D7A658 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50% 50% 50% 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.sk-pin-a:hover .sk-pin-body {
  -webkit-transform: rotate(-45deg) scale(1.15);
  -ms-transform: rotate(-45deg) scale(1.15);
  transform: rotate(-45deg) scale(1.15);
}

.sk-pin-a .sk-pin-body::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50% 50% 50% 0;
  border: 2px solid #FFD37E;
  -webkit-animation: sk-pulse-ring 2s ease-out infinite;
  animation: sk-pulse-ring 2s ease-out infinite;
  opacity: 0;
}

/* 2026-05-18 (round 29) — white center dot inside each pin.
 * z-index keeps it above the rotated gradient body. Positioned at the
 * GEOMETRIC center of the pin head (not the rotated body). */

.sk-pin-a .sk-pin-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 50%;
  top: 12px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

/* 2026-06-15 — Premium-exclusive pin variant. Same teardrop geometry as
 * .sk-pin-a but a navy body with a gold rim + gold center dot, so
 * Premium-only venues read distinctly from the gold-gradient Gold-network
 * pins. Selected by PlacemarkFactory._getPinLayout('premium'). */

.sk-pin-prem .sk-pin-body {
  display: block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2E3091 0%, #1D1F76 100%);
  border: 3px solid #FFD37E;
  border-radius: 50% 50% 50% 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.sk-pin-prem:hover .sk-pin-body {
  -webkit-transform: rotate(-45deg) scale(1.15);
  -ms-transform: rotate(-45deg) scale(1.15);
  transform: rotate(-45deg) scale(1.15);
}

.sk-pin-prem .sk-pin-body::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50% 50% 50% 0;
  border: 2px solid #FFD37E;
  -webkit-animation: sk-pulse-ring 2s ease-out infinite;
  animation: sk-pulse-ring 2s ease-out infinite;
  opacity: 0;
}

.sk-pin-prem .sk-pin-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFD37E;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  top: 12px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

@-webkit-keyframes sk-pulse-ring {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes sk-pulse-ring {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

/* — Custom cluster icon (replaces Yandex's violet preset) —
 * Same gold gradient as individual pins, but a perfect circle (no drop tail)
 * and bigger (44x44) to read as "many venues here". Number of grouped venues
 * is rendered via templateLayoutFactory's $[properties.geoObjects.length].
 */

.sk-cluster {
  position: absolute;
  left: -22px;
  top: -22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  pointer-events: auto;
}

.sk-cluster-body {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFD37E 0%, #D7A658 100%);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1D1D1D;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--basic-font, sans-serif);
  position: relative;
}

.sk-cluster-body::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #FFD37E;
  -webkit-animation: sk-pulse-circle 2s ease-out infinite;
  animation: sk-pulse-circle 2s ease-out infinite;
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes sk-pulse-circle {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes sk-pulse-circle {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

/* — Map frame: positioning context for the controls + copyright overlay.
 * Yandex's Map() destroys the children of #map when it initialises, so the
 * controls live OUTSIDE #map but inside this wrapping frame.
 */

.sk-map-frame {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  margin-left: 15px;
  min-height: 600px;
}

.sk-map-frame .geography-presence__map {
  width: 100%;
  height: 100%;
  min-height: 600px;
  -webkit-filter: sepia(0.18) saturate(0.92) brightness(1.02);
  filter: sepia(0.18) saturate(0.92) brightness(1.02);
}

/* Yandex balloon — premium popup that appears above a pin on click.
 * 2026-05-17 v2: the first redesign broke the balloon entirely on prod —
 * `overflow: hidden !important` on the Yandex outer wrapper clipped the
 * tail/triangle, and the `[class*="ymaps-"][class*="balloon__content"]`
 * padding override + the keyframe animation interfered with Yandex's
 * internal show/hide flow. Now we ONLY style our own `.sk-balloon` inner
 * wrapper (the HTML we control) and apply a single subtle outer radius +
 * shadow. Yandex's internals are left alone so the balloon shows reliably. */

.ymaps-2-1-79-balloon,
.ymaps-3-balloon,
[class*=ymaps-][class*="-balloon "],
[class*=ymaps-][class$=-balloon] {
  border-radius: 16px !important;
  -webkit-box-shadow: 0 10px 28px rgba(29, 29, 29, 0.2), 0 2px 6px rgba(29, 29, 29, 0.08) !important;
  box-shadow: 0 10px 28px rgba(29, 29, 29, 0.2), 0 2px 6px rgba(29, 29, 29, 0.08) !important;
}

.sk-balloon {
  padding: 14px 22px 13px 18px;
  font-family: var(--basic-font, sans-serif);
  border-left: 3px solid var(--basic-gold, #FFD37E);
  min-width: 160px;
  max-width: 240px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF6E5), to(#FFFFFF));
  background: linear-gradient(180deg, #FFF6E5 0%, #FFFFFF 100%);
}

.sk-balloon-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.sk-balloon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD37E 0%, #C49E4F 100%);
  -webkit-box-shadow: 0 0 0 3px rgba(255, 211, 126, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 211, 126, 0.25);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-balloon-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--basic-black);
  display: block;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.sk-balloon-sub {
  font-size: 11px;
  color: rgba(29, 29, 29, 0.55);
  line-height: 1.3;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium CTA pill button INSIDE the balloon. Same visual language as the
 * site's other gold pill buttons (footer "Стать партнером", header nav)
 * — solid gold background, dark text, 100px radius, lift-on-hover shadow. */

.sk-balloon-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px 8px 18px;
  background: linear-gradient(135deg, #FFD37E 0%, #FFE9C4 100%);
  color: var(--basic-black, #1D1D1D);
  border: 0;
  border-radius: 100px;
  font: 600 12px/1 var(--basic-font, sans-serif);
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 6px rgba(196, 158, 79, 0.3);
  box-shadow: 0 2px 6px rgba(196, 158, 79, 0.3);
  -webkit-transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}

.sk-balloon-cta:hover {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #FFC961 0%, #FFD37E 100%);
  -webkit-box-shadow: 0 6px 14px rgba(196, 158, 79, 0.4);
  box-shadow: 0 6px 14px rgba(196, 158, 79, 0.4);
}

.sk-balloon-cta:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 5px rgba(196, 158, 79, 0.3);
  box-shadow: 0 2px 5px rgba(196, 158, 79, 0.3);
}

.sk-balloon-cta svg {
  width: 14px;
  height: 14px;
  display: block;
  -webkit-transition: -webkit-transform 0.18s ease;
  transition: -webkit-transform 0.18s ease;
  transition: transform 0.18s ease;
  transition: transform 0.18s ease, -webkit-transform 0.18s ease;
}

.sk-balloon-cta:hover svg {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

/* 2026-05-18 — Mobile gesture hint (v2).
 * Standard mobile map UX restored: 1 finger drags, 2 fingers zoom. Without
 * a hint, users on a phone may tap the map expecting a tooltip and end up
 * accidentally panning instead. Shows on viewports ≤ 768px (not gated on
 * pointer:coarse so it also appears in DevTools responsive). Persistent
 * until the user touches the map area; JS strips the data-sk-map-hint
 * attribute either on first touchstart/click or after a 15s safety timeout. */

.sk-map-hint {
  display: none;
}

@-webkit-keyframes skMapHintIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes skMapHintIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Tiny custom copyright that replaces Yandex's whole bottom branding pane.
 * Stays minimal so it doesn't compete with the rest of the design but still
 * meets the attribution requirement. */

.sk-map-copyright {
  position: absolute;
  bottom: 6px;
  right: 10px;
  font-size: 10px;
  color: var(--basic-black);
  opacity: 0.45;
  pointer-events: none;
  z-index: 50;
  font-family: var(--basic-font, sans-serif);
}

/* — Custom map controls (zoom + fullscreen) —
 * Replaces Yandex's default zoomControl slider. Positioned absolute over
 * the top-right corner of the map frame.
 */

.sk-map-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
  pointer-events: none;
  /* container passes through; buttons re-enable */
}

.sk-map-btn {
  width: 40px;
  height: 40px;
  background: var(--basic-white);
  border: 1px solid rgba(29, 31, 118, 0.08);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 16px rgba(29, 29, 29, 0.15);
  box-shadow: 0 4px 16px rgba(29, 29, 29, 0.15);
  pointer-events: auto;
  /* 2026-06-28 — colour-changing controls in the spirit of the PWA cabinet:
     white at rest → navy fill with a white icon on hover/active. */
  -webkit-transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.2s;
  transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.2s;
  transition: transform 0.18s, box-shadow 0.2s, background 0.18s, color 0.18s, border-color 0.18s;
  transition: transform 0.18s, box-shadow 0.2s, background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.2s;
  color: var(--extra-blue, #1D1F76);
  padding: 0;
}

.sk-map-btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background: var(--extra-blue, #1D1F76);
  border-color: var(--extra-blue, #1D1F76);
  color: #FFFFFF;
  -webkit-box-shadow: 0 8px 20px rgba(29, 31, 118, 0.3);
  box-shadow: 0 8px 20px rgba(29, 31, 118, 0.3);
}

.sk-map-btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.sk-map-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* CSS-based fullscreen — used as the FALLBACK for browsers without the
 * Fullscreen API (mainly iOS Safari which only allows requestFullscreen on
 * <video>). Pins #map to viewport so Yandex picks up the size change via
 * fitToViewport() in the JS handler. On modern desktop browsers + Android
 * we use the native Fullscreen API instead — see :fullscreen rule below.
 *
 * iOS-specific hardening (round 33):
 *   • explicit top/left/right/bottom instead of `inset` shorthand
 *     (Safari 14.x had inset bugs with position:fixed)
 *   • -webkit-transform: translateZ(0) forces a new compositing layer,
 *     which fixes "position:fixed gets clipped by ancestor stacking
 *     context" issues that show up when Yandex's tile container is
 *     transformed
 *   • height uses 100dvh (dynamic viewport height — accounts for the
 *     iOS Safari address bar) with 100vh as fallback for older browsers
 */

.geography-presence__map.is-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  width: 100dvw !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 9500 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  filter: none !important;
  -webkit-filter: none !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
}

/* Native Fullscreen API — browser sizes the element automatically. We just
 * neutralise the filter (same reasoning as above) and remove rounded corners
 * so the map looks edge-to-edge. The :fullscreen pseudo-class applies to
 * the element passed to requestFullscreen(). */

.geography-presence__map:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  background: #f0f0f0;
  /* hides any uninitialised pixels while tiles redraw */
}

.geography-presence__map:-ms-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  filter: none !important;
  background: #f0f0f0;
  /* hides any uninitialised pixels while tiles redraw */
}

.geography-presence__map:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  background: #f0f0f0;
  /* hides any uninitialised pixels while tiles redraw */
}

.geography-presence__map:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
  background: #f0f0f0;
}

/* When the map is fullscreen, the controls (zoom + fullscreen-toggle) live
 * INSIDE .sk-map-frame, not inside the map itself, so they don't move with
 * it. We pin them to the viewport top-right so the user can still click
 * the fullscreen button to exit + still zoom in/out while fullscreen.
 * Without this they got covered by the z:9500 map and the user had no
 * way back. The is-active state turns the toggle dark so it reads as
 * "engaged / click to exit". */

.sk-map-frame--fullscreen .sk-map-controls {
  position: fixed !important;
  top: 16px;
  right: 16px;
  z-index: 9510;
}

.sk-map-btn.is-active {
  background: var(--extra-blue, #1D1F76);
  border-color: var(--extra-blue, #1D1F76);
  color: var(--basic-white);
}

/* Stop background scrolling while the fullscreen map is open. */

body.sk-map-fullscreen-active {
  overflow: hidden;
}

/* 2026-06-28 — Cabinet-style fullscreen. The JS toggles .is-fullscreen on the
 * .geography-presence__content wrapper in BOTH the native-FS and CSS-fallback
 * paths, so styling the class alone covers both. The whole wrapper (filters +
 * venue list + map) fills the screen, so the filters and the venue list stay
 * visible beside the enlarged map — mirroring the PWA cabinet. #map is never
 * itself position:fixed (the wrapper is), avoiding the old Yandex white-screen.
 */

.geography-presence__content.is-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9500 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  margin: 0 !important;
  max-width: none !important;
  background: #FBF8F1;
  padding: 10px 14px 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  /* Drop the section title + the mobile gesture tip — maximise room for
     filters + list + map in the expanded view. */
}

.geography-presence__content.is-fullscreen .geography-presence__title,
.geography-presence__content.is-fullscreen .sk-map-tip {
  display: none;
}

.geography-presence__content.is-fullscreen {
  /* 2026-06-28 — make the MAP the hero in fullscreen: collapse the filter
     hub to a slim strip (no big heading/hint, tight padding) and narrow the
     venue list, so the map takes the lion's share of the space. */
}

.geography-presence__content.is-fullscreen .sk-search-hub {
  padding: 8px 12px 9px;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(196, 158, 79, 0.12);
  box-shadow: 0 2px 8px rgba(196, 158, 79, 0.12);
}

.geography-presence__content.is-fullscreen .sk-search-hub .sk-search-hub__heading,
.geography-presence__content.is-fullscreen .sk-search-hub .sk-search-hub__hint {
  display: none;
}

.geography-presence__content.is-fullscreen .sk-search-hub {
  /* 2026-06-28 — the head becomes a thin flow row holding ONLY the result
     count (left) + «Сбросить» chip (right), both static — so «Сбросить»
     no longer sits absolutely over the «Я здесь» button in the search bar
     below (user-reported overlap). */
}

.geography-presence__content.is-fullscreen .sk-search-hub .sk-search-hub__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  min-height: 0;
}

.geography-presence__content.is-fullscreen .sk-search-hub .geography-presence__result {
  position: static !important;
  top: auto !important;
  right: auto !important;
  margin: 0;
  max-width: none;
}

.geography-presence__content.is-fullscreen .sk-search-hub .sk-clear-chip {
  position: static !important;
  top: auto !important;
  right: auto !important;
  margin-left: auto;
}

.geography-presence__content.is-fullscreen .sk-search-hub .geography-presence__form {
  margin-top: 8px;
}

.geography-presence__content.is-fullscreen .sk-search-hub .sk-prox {
  margin: 0;
}

.geography-presence__content.is-fullscreen {
  /* 2026-06-28 — show the active-filter chips in fullscreen (the freed row
     from moving the radius status inline makes room). Keep a clear gap +
     hairline divider above them so they don't collide with the filter pills. */
}

.geography-presence__content.is-fullscreen .sk-filter-chips {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
  gap: 6px;
  margin: 9px 0 2px;
  padding-top: 9px;
  border-top: 1px solid rgba(215, 166, 88, 0.3);
}

.geography-presence__content.is-fullscreen .sk-filter-chips:empty {
  display: none;
}

.geography-presence__content.is-fullscreen {
  /* The list+map row fills all remaining height. */
}

.geography-presence__content.is-fullscreen .geography-presence__inner {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 0;
}

.geography-presence__content.is-fullscreen {
  /* Narrower venue list → the map becomes the hero. Fills the column
     height and scrolls inside it. */
}

.geography-presence__content.is-fullscreen .geography-presence__carousel.swiper {
  max-width: 300px !important;
  max-height: none !important;
  height: 100%;
}

.geography-presence__content.is-fullscreen .sk-map-frame {
  min-height: 0 !important;
  height: 100%;
  margin-left: 14px;
}

.geography-presence__content.is-fullscreen .geography-presence__map {
  min-height: 0 !important;
  height: 100% !important;
  -webkit-filter: none !important;
  filter: none !important;
}

.geography-presence__content.is-fullscreen {
  /* Keep the +/–/expand controls ON the map (top-right of the map frame),
     NOT viewport-fixed — otherwise they land over the filter bar. Overrides
     the .sk-map-frame--fullscreen position:fixed rule above. */
}

.geography-presence__content.is-fullscreen .sk-map-controls {
  position: absolute !important;
  top: 14px;
  right: 14px;
  z-index: 60;
}

/* — Yandex bottom-branding mask (aggressive) —
 * The previous selectors didn't catch enough. User reported promo button
 * "Создать свою карту" + "Яндекс Карти" logo still visible after the first
 * pass. Now we hide the entire bottom band of Yandex chrome (copyrights
 * pane, controls__bottom group, all anchor tags pointing to yandex domains)
 * and substitute our own minimal "© Яндекс" text via .sk-map-copyright.
 *
 * Selectors use partial-class matchers ([class*="..."]) because Yandex's
 * class prefixes include an API version (e.g. ymaps-2-1-79-) that bumps
 * with releases.
 */

.geography-presence__map [class*=copyrights-pane],
.geography-presence__map [class*=controls__bottom],
.geography-presence__map [class*=copyright__agreement],
.geography-presence__map [class*=copyright__link],
.geography-presence__map [class*=copyright__text],
.geography-presence__map [class*=copyright__layout],
.geography-presence__map [class*=copyrights-promo],
.geography-presence__map [class*=logo],
.geography-presence__map [class*=search],
.geography-presence__map [class*=gototaxi],
.geography-presence__map [class*=gotoymaps],
.geography-presence__map [class*=route-button],
.geography-presence__map a[href*=yandex],
.geography-presence__map [class*=map-copyrights],
.geography-presence__map [class*=external-link],
.geography-presence__map [class*=map-link],
.geography-presence__map [class*=promo-pane],
.geography-presence__map [class*=open-yandex],
.geography-presence__map [class*=open-in],
.geography-presence__map .ymaps3x0--promo-pane,
.geography-presence__map .ymaps3x0--external-link,
.geography-presence__map .ymaps3x0--open-yandex-maps {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* — Profile modal (replaces Yandex balloon) —
 *
 * Round 5 (2026-05-15) — back to old-school `display: none` / `display:
 * flex` toggling. The previous rounds tried clever opacity+visibility
 * tricks to keep the overlay always laid out so transitions would fire
 * cleanly. None of them reliably worked for the user — "screen blurs
 * but no profile" came back across multiple browsers and deploys.
 *
 * The new approach is brutally simple: the modal markup is pre-rendered
 * by Blade (no `innerHTML = …` at click time), and CSS just toggles
 * display. No transitions, no race conditions, no compositor weirdness.
 *
 * The light-beam animation provides the only motion; the modal just
 * appears.
 */

/* Round 7 (2026-05-15) — bulletproof CSS with !important on EVERY rule
 * that could possibly cause invisibility, plus z-index pushed to 999999
 * so nothing on the page can stack above. The modal is now at body-level
 * (via @stack) so there's no ancestor stacking context to worry about,
 * but we belt-and-suspenders the !important regardless. */

.sk-profile-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(29, 29, 29, 0.55) !important;
  backdrop-filter: blur(4px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999999 !important;
  padding: 20px;
}

.sk-profile-overlay.is-open {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sk-profile-modal {
  background: #FFFFFF !important;
  border-radius: 24px;
  width: 90% !important;
  max-width: 720px !important;
  min-width: 280px !important;
  margin: auto;
  max-height: 86vh !important;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  position: relative !important;
  opacity: 1 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  visibility: visible !important;
  z-index: 1 !important;
}

.sk-profile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 5;
  color: #1D1D1D;
}

.sk-profile-close:hover {
  background: #FFFFFF;
}

.sk-profile-gallery {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, #4a4a8a, #1d1f76);
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-profile-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 2026-06-21 — modal photo gallery: reuse the card's .gp-gallery (cover-first
 * swipe strip) but fill the fixed 240px modal banner instead of the card's
 * 134/160 portrait. Built by ProfileModal._populate() from the card's slides. */

.sk-profile-gallery .gp-gallery {
  height: 100%;
  width: 100%;
}

.sk-profile-gallery .gp-gallery__slide {
  aspect-ratio: auto;
  height: 100%;
}

.sk-profile-gallery .gp-gallery__slide img {
  border-radius: 0;
}

.sk-profile-gallery .geography-presence__figure--empty {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  /* beat `.sk-profile-gallery img { object-fit:cover }` so the СК mark stays
   * contained (not cropped to fill the 240px banner). */
}

.sk-profile-gallery .geography-presence__figure--empty .gp-gallery__ph {
  width: 104px;
  max-width: none;
  height: 104px;
}

.sk-profile-gallery .gp-gallery__nav {
  opacity: 1;
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.sk-profile-gallery .gp-gallery__count {
  left: 14px;
  right: auto;
  top: 14px;
}

.sk-profile-gallery .gp-gallery__dots {
  bottom: 12px;
}

.sk-profile-body {
  padding: 24px 28px;
  overflow-y: auto;
}

.sk-profile-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #1D1D1D;
}

.sk-profile-address {
  color: #666666;
  font-size: 13px;
  margin: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.sk-profile-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
  /* Soft scrollbar so users can see there's more if the list scrolls. */
}

.sk-profile-tags::-webkit-scrollbar {
  width: 6px;
}

.sk-profile-tags::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

.sk-profile-tags::-webkit-scrollbar-thumb {
  background: rgba(29, 31, 118, 0.25);
  border-radius: 4px;
}

.sk-profile-tags::-webkit-scrollbar-thumb:hover {
  background: rgba(29, 31, 118, 0.45);
}

/* 2026-05-17 — grouped tag layout. Was: one flat row of mixed pills with
 * sport types sliced to first 4. Now: 3 labelled sections (Тариф / Виды
 * спорта (count) / Дополнительно) with all pills shown. Each section has
 * a small uppercase label so users can scan by category instead of
 * parsing a jumble. The count after "Виды спорта" makes the breadth
 * obvious. */

.sk-tag-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.sk-tag-group-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(29, 29, 29, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 2px;
}

.sk-tag-group-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sk-tag {
  padding: 6px 14px;
  background: var(--basic-gold);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #1D1D1D;
}

.sk-tag-card {
  background: var(--extra-gold);
}

.sk-profile-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
}

.sk-cta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 14px 20px;
  background: var(--extra-blue);
  color: #FFFFFF;
  border: 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.sk-cta:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.sk-cta-secondary {
  background: transparent;
  color: #1D1D1D;
  border: 1.5px solid #1D1D1D;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sk-cta-secondary:hover {
  background: #1D1D1D;
  color: #FFFFFF;
}

/* 2026-05-18 — tertiary "Закрыть" action sits to the right of the primary
 * "Подробнее" + secondary "Я.Карти" CTAs. Quieter than secondary so the
 * eye still goes to the real next-steps. */

.sk-cta-tertiary {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 110px;
  background: transparent;
  color: rgba(29, 29, 29, 0.55);
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 600;
}

.sk-cta-tertiary:hover {
  color: #1D1D1D;
  background: transparent;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Allow the action row to wrap on narrow viewports so 3 buttons don't
 * overflow horizontally. */

.sk-profile-actions {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ==================================================================
 * 2026-05-18 — "Подробнее" expandable details panel.
 * Toggled visible by the JS in ProfileModal._populate(). Contains
 * structured rows for hours, phone, email, price, services with
 * prices, and the full description HTML from the admin panel.
 * ================================================================== */

.sk-profile-details {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF6E5), color-stop(80%, #FFFFFF));
  background: linear-gradient(180deg, #FFF6E5 0%, #FFFFFF 80%);
  border: 1px solid rgba(255, 211, 126, 0.55);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 6px 0 18px;
  max-height: 50vh;
  overflow-y: auto;
  /* Soft warm scrollbar to match palette */
}

.sk-profile-details::-webkit-scrollbar {
  width: 6px;
}

.sk-profile-details::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}

.sk-profile-details::-webkit-scrollbar-thumb {
  background: rgba(196, 158, 79, 0.45);
  border-radius: 4px;
}

.sk-profile-details::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 158, 79, 0.7);
}

.sk-detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px dashed rgba(196, 158, 79, 0.3);
}

.sk-detail-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.sk-detail-row:last-child {
  padding-bottom: 0;
}

.sk-detail-icon {
  font-size: 18px;
  line-height: 1.2;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.sk-detail-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.sk-detail-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(29, 29, 29, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.sk-detail-value {
  font-size: 14px;
  color: #1D1D1D;
  line-height: 1.45;
}

.sk-detail-value a {
  color: var(--extra-blue, #1D1F76);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sk-detail-value a:hover {
  color: #C49E4F;
}

.sk-detail-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.sk-detail-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.sk-detail-price {
  font-weight: 700;
  color: var(--extra-blue, #1D1F76);
  white-space: nowrap;
}

.sk-detail-rules {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.85);
  line-height: 1.5;
}

.sk-detail-rules p {
  margin: 0 0 8px;
}

.sk-detail-rules p:last-child {
  margin-bottom: 0;
}

.sk-detail-rules a {
  color: var(--extra-blue, #1D1F76);
  text-decoration: underline;
  word-break: break-word;
}

.sk-detail-rules ul,
.sk-detail-rules ol {
  padding-left: 20px;
  margin: 6px 0;
}

.sk-detail-rules li {
  margin-bottom: 4px;
}

.sk-detail-rules strong {
  font-weight: 700;
}

.sk-detail-empty {
  font-size: 13px;
  color: rgba(29, 29, 29, 0.5);
  text-align: center;
  padding: 20px 10px;
}

/* ──────────────────────────────────────────────────────────────────
 * 2026-05-28 Phase B+C — venue detail richer rows.
 * Description prose (О клубе), amenity chips, level pills + age line.
 * Reuses existing .sk-detail-row scaffolding from Round 14; these are
 * the inner-content classes for the new sections.
 * ────────────────────────────────────────────────────────────────── */

.sk-detail-prose {
  font-size: 13.5px;
  color: rgba(29, 29, 29, 0.85);
  line-height: 1.5;
}

.sk-detail-prose p {
  margin: 0 0 8px;
}

.sk-detail-prose p:last-child {
  margin-bottom: 0;
}

.sk-detail-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.sk-detail-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #f8f1e0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #15163b;
}

.sk-detail-chip__em {
  font-size: 13px;
  line-height: 1;
}

.sk-detail-levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin: 2px 0 8px;
}

.sk-detail-level {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7px 4px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid #e8e3d2;
  border-radius: 8px;
  color: #6B6D8F;
}

.sk-detail-level--active {
  background: var(--extra-blue, #1D1F76);
  color: #fff;
  border-color: var(--extra-blue, #1D1F76);
}

.sk-detail-age {
  font-size: 12px;
  color: #6B6D8F;
}

.sk-detail-age b {
  color: var(--extra-blue, #1D1F76);
  font-weight: 800;
}

body.sk-modal-open {
  overflow: hidden;
}

/* ==================================================================
 * 2026-05-18 (round 23) — Proximity search panel.
 * Located between the existing filter form and the map+carousel
 * layout. Lets users find venues near an address, metro station, or
 * their current geolocation, filtered by radius. Has an input with
 * autocomplete suggestions, a "use my location" button, and radius
 * pills. State + interactions wired in geography-presence.js.
 * ================================================================== */

.sk-prox {
  margin: 16px 0 0;
  font-family: var(--basic-font, sans-serif);
}

.sk-prox-inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF6E5), to(#FFFFFF));
  background: linear-gradient(180deg, #FFF6E5 0%, #FFFFFF 100%);
  border: 1px solid rgba(255, 211, 126, 0.6);
  border-radius: 16px;
  padding: 16px 18px;
  -webkit-box-shadow: 0 2px 10px rgba(29, 29, 29, 0.04);
  box-shadow: 0 2px 10px rgba(29, 29, 29, 0.04);
}

.sk-prox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.sk-prox-input-wrap {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid rgba(29, 29, 29, 0.1);
  border-radius: 100px;
  padding: 0 14px 0 16px;
  -webkit-transition: border-color 0.18s, -webkit-box-shadow 0.18s;
  transition: border-color 0.18s, -webkit-box-shadow 0.18s;
  transition: border-color 0.18s, box-shadow 0.18s;
  transition: border-color 0.18s, box-shadow 0.18s, -webkit-box-shadow 0.18s;
  min-height: 44px;
}

.sk-prox-input-wrap:focus-within {
  border-color: var(--extra-blue, #1D1F76);
  -webkit-box-shadow: 0 0 0 3px rgba(29, 31, 118, 0.1);
  box-shadow: 0 0 0 3px rgba(29, 31, 118, 0.1);
}

.sk-prox-icon {
  font-size: 16px;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-prox-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: 500 14px/1.4 sans-serif;
  color: var(--basic-black, #1D1D1D);
  padding: 10px 0;
  min-width: 0;
}

.sk-prox-input::-webkit-input-placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.sk-prox-input::-moz-placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.sk-prox-input:-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.sk-prox-input::-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.sk-prox-input::placeholder {
  color: rgba(29, 29, 29, 0.4);
}

.sk-prox-clear {
  background: transparent;
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  color: rgba(29, 29, 29, 0.45);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-prox-clear:hover {
  color: var(--basic-black);
  background: rgba(29, 29, 29, 0.06);
}

.sk-prox-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 28px rgba(29, 29, 29, 0.16);
  box-shadow: 0 12px 28px rgba(29, 29, 29, 0.16);
  max-height: 280px;
  overflow-y: auto;
  z-index: 80;
  padding: 6px;
}

.sk-prox-sg-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 9px 12px;
  border-radius: 8px;
  font: 500 13px/1.35 sans-serif;
  color: var(--basic-black, #1D1D1D);
  cursor: pointer;
}

.sk-prox-sg-item:hover,
.sk-prox-sg-item.is-active {
  background: rgba(255, 211, 126, 0.3);
}

.sk-prox-sg-item .sk-prox-sg-meta {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(29, 29, 29, 0.55);
  margin-top: 2px;
}

.sk-prox-sg-empty {
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(29, 29, 29, 0.55);
}

.sk-prox-geo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 100px;
  background: var(--extra-blue, #1D1F76);
  color: #FFFFFF;
  border: 0;
  font: 600 13px/1 sans-serif;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
  box-shadow: 0 2px 8px rgba(29, 31, 118, 0.25);
  -webkit-transition: background 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.18s;
  transition: background 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.18s;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, -webkit-transform 0.18s, -webkit-box-shadow 0.18s;
  min-height: 44px;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-prox-geo svg {
  width: 16px;
  height: 16px;
}

.sk-prox-geo:hover {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  background: #2D31A8;
  -webkit-box-shadow: 0 6px 14px rgba(29, 31, 118, 0.35);
  box-shadow: 0 6px 14px rgba(29, 31, 118, 0.35);
}

.sk-prox-geo:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.sk-prox-radius {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 12px;
}

.sk-prox.is-searching .sk-prox-radius {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sk-prox-radius-lead {
  font: 700 0.64rem/1 var(--basic-font, sans-serif);
  color: var(--basic-black, #1D1D1D);
  margin-right: 6px;
  white-space: nowrap;
}

.sk-prox-radius-lead:empty {
  display: none;
}

.sk-prox-radius-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(29, 29, 29, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.sk-prox-rkm {
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(29, 29, 29, 0.04);
  border: 1px solid transparent;
  color: var(--basic-black, #1D1D1D);
  font: 600 12px/1 sans-serif;
  cursor: pointer;
  -webkit-transition: background 0.15s, color 0.15s, border-color 0.15s;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sk-prox-rkm:hover {
  background: rgba(255, 211, 126, 0.4);
}

.sk-prox-rkm.is-active {
  background: var(--extra-blue, #1D1F76);
  color: #FFFFFF;
  border-color: var(--extra-blue, #1D1F76);
}

.sk-card-access {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.sk-card-access[hidden] {
  display: none;
}

.sk-ca-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  min-height: 33px;
  border-radius: 100px;
  background: var(--new-gold);
  border: 1px solid var(--extra-gold);
  font: 500 0.64rem/1 var(--basic-font, sans-serif);
  color: var(--basic-black);
  cursor: pointer;
  -webkit-box-shadow: 0 2px 6px rgba(215, 166, 88, 0.12);
  box-shadow: 0 2px 6px rgba(215, 166, 88, 0.12);
  -webkit-transition: background 0.2s, border-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, border-color 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.sk-ca-trigger:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background: var(--basic-gold);
  border-color: #D7A658;
  -webkit-box-shadow: 0 6px 16px rgba(215, 166, 88, 0.25);
  box-shadow: 0 6px 16px rgba(215, 166, 88, 0.25);
}

.sk-card-access.is-open .sk-ca-trigger {
  background: #FFFFFF;
  border-color: var(--extra-blue, #1D1F76);
  -webkit-box-shadow: 0 6px 18px rgba(29, 31, 118, 0.14);
  box-shadow: 0 6px 18px rgba(29, 31, 118, 0.14);
}

.sk-card-access.sk-ca-picked .sk-ca-trigger {
  border-color: var(--extra-blue, #1D1F76);
}

.sk-ca-dots {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 3px;
}

.sk-ca-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sk-ca-dot--gold {
  background: linear-gradient(135deg, #FFD37E, #D7A658);
  border: 1px solid #D7A658;
}

.sk-ca-dot--prem {
  background: var(--extra-blue, #1D1F76);
  border: 1px solid #FFD37E;
}

.sk-ca-chev {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 11px;
  height: 7px;
  opacity: 0.55;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.sk-card-access.is-open .sk-ca-chev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-ca-pop {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 60;
  width: 330px;
  max-width: calc(100vw - 48px);
  background: #FFFFFF;
  border: 1px solid rgba(29, 31, 118, 0.16);
  border-radius: 16px;
  -webkit-box-shadow: 0 18px 40px rgba(29, 29, 29, 0.16);
  box-shadow: 0 18px 40px rgba(29, 29, 29, 0.16);
  padding: 8px;
  display: none;
  -webkit-animation: fadeIn 0.22s ease;
  animation: fadeIn 0.22s ease;
}

.sk-card-access.is-open .sk-ca-pop {
  display: block;
}

.sk-ca-head {
  padding: 7px 12px 6px;
  font: 700 0.56rem/1 var(--basic-font, sans-serif);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(29, 29, 29, 0.45);
}

.sk-card-access__opt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 11px;
  cursor: pointer;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}

.sk-card-access__opt:hover {
  background: rgba(255, 211, 126, 0.18);
}

.sk-card-access__opt.is-active {
  background: rgba(29, 31, 118, 0.05);
}

.sk-ca-sw {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 13px;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  border-radius: 50%;
}

.sk-ca-sw--all {
  background: repeating-conic-gradient(#FFD37E 0 25%, #1D1F76 0 50%);
  border: 1px solid #cfc2a0;
}

.sk-ca-sw--gold {
  background: linear-gradient(135deg, #FFD37E, #D7A658);
  border: 1px solid #D7A658;
}

.sk-ca-sw--prem {
  background: var(--extra-blue, #1D1F76);
  border: 1px solid #FFD37E;
}

.sk-ca-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.sk-ca-t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  font: 700 0.72rem/1.2 var(--basic-font, sans-serif);
  color: var(--basic-black);
}

.sk-ca-n {
  font: 700 0.64rem/1 var(--basic-font, sans-serif);
  color: #D7A658;
}

.sk-ca-n:empty {
  display: none;
}

.sk-ca-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--extra-blue, #1D1F76);
  border: 1px solid #FFD37E;
  color: #FFD37E;
  font: 700 0.52rem/1.3 var(--basic-font, sans-serif);
  letter-spacing: 0.02em;
}

.sk-ca-d {
  display: block;
  margin-top: 3px;
  font: 400 0.63rem/1.35 var(--basic-font, sans-serif);
  color: rgba(29, 29, 29, 0.55);
}

.sk-ca-check {
  margin-left: auto;
  -ms-flex-item-align: center;
  align-self: center;
  color: var(--extra-blue, #1D1F76);
  font-size: 0.8rem;
  opacity: 0;
}

.sk-card-access__opt.is-active .sk-ca-check {
  opacity: 1;
}

.geography-presence__premium-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--extra-blue, #1D1F76);
  border: 1px solid #FFD37E;
  color: #FFD37E;
  font: 700 10.5px/1.3 sans-serif;
  white-space: nowrap;
  vertical-align: middle;
}

.sk-filter-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  min-height: 0;
  -webkit-transition: padding 0.2s ease, margin 0.2s ease;
  transition: padding 0.2s ease, margin 0.2s ease;
}

.sk-filter-chips.is-active {
  padding: 12px 0 6px 0;
  margin-top: 4px;
}

.sk-filter-chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  /* 2026-06-28 — smaller than the filter pills so the active selections read
     as a distinct, lighter summary row instead of blending into the gold
     filter dropdowns above. */
  padding: 4px 6px 4px 10px;
  background: linear-gradient(135deg, #FFF6E5 0%, #FFE9C4 100%);
  border: 1px solid rgba(255, 211, 126, 0.55);
  border-radius: 100px;
  -webkit-box-shadow: 0 1px 5px rgba(196, 158, 79, 0.1);
  box-shadow: 0 1px 5px rgba(196, 158, 79, 0.1);
  color: var(--basic-black, #1D1D1D);
  font: 500 10.5px/1 var(--basic-font, sans-serif);
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  -webkit-animation: skChipIn 0.25s ease both;
  animation: skChipIn 0.25s ease both;
}

.sk-filter-chip:hover {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 14px rgba(196, 158, 79, 0.22);
  box-shadow: 0 4px 14px rgba(196, 158, 79, 0.22);
  background: linear-gradient(135deg, #FFF6E5 0%, #FFD37E 100%);
}

.sk-filter-chip:hover .sk-filter-chip-x {
  background: rgba(29, 29, 29, 0.18);
  color: rgba(29, 29, 29, 0.95);
}

.sk-filter-chip:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.sk-filter-chip-text {
  white-space: nowrap;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.sk-filter-chip-x {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.08);
  color: rgba(29, 29, 29, 0.65);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: background 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, color 0.15s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@-webkit-keyframes skChipIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-4px) scale(0.96);
    transform: translateY(-4px) scale(0.96);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes skChipIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-4px) scale(0.96);
    transform: translateY(-4px) scale(0.96);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

.sk-prox-toast {
  position: absolute;
  top: 18px;
  right: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 44px);
  padding: 10px 16px;
  background: linear-gradient(135deg, #FFF6E5 0%, #FFE9C4 100%);
  border: 1px solid rgba(255, 211, 126, 0.6);
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(196, 158, 79, 0.2);
  box-shadow: 0 8px 24px rgba(196, 158, 79, 0.2);
  font: 500 12px/1.4 var(--basic-font, sans-serif);
  color: var(--basic-black, #1D1D1D);
  z-index: 100;
  opacity: 0;
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sk-prox-toast-icon {
  font-size: 14px;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sk-prox-toast-text {
  white-space: normal;
}

.sk-prox-toast-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.sk-prox-toast-hide {
  opacity: 0;
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* 2026-06-28 — the status now lives INSIDE .sk-prox-radius (a flex row), so it
 * sits inline right AFTER the «Без ограничения» pill (not pushed to the far
 * right) — that's where it reads most naturally next to the radius choices. */

.sk-prox-status {
  margin: 0 0 0 14px;
  -ms-flex-item-align: center;
  align-self: center;
  min-height: 0;
  font-size: 12px;
  color: rgba(29, 29, 29, 0.65);
  white-space: nowrap;
}

.sk-prox-status:empty {
  display: none;
}

.sk-prox-status.is-error {
  color: #B91C1C;
}

.sk-prox-status.is-success {
  color: #15803D;
}

.sk-prox-status.is-loading {
  color: var(--extra-blue, #1D1F76);
}

/* ==================================================================
 * 2026-05-18 (round 25) — Search-hub redesign v2.
 *
 * Layout per user feedback: filter chips LEFT, proximity search RIGHT
 * on the same horizontal level. Radius pills stay under the search bar
 * on the right column. Typography on the proximity bar tightened so it
 * reads as a peer of the filter dropdowns instead of dominating the
 * row.
 *
 *   ┌─────────────────────────────────────────────────────────────┐
 *   │ Найти спортивный объект                       Найдено 59    │
 *   │ Введите адрес...                                            │
 *   ├─────────────────────────────────────────────────────────────┤
 *   │ [Город][Распол][Спорт]      [Адрес, метро...]   [📍 Я здесь]│
 *   │                              Радиус: [1км][2км][3км][5км]…  │
 *   └─────────────────────────────────────────────────────────────┘
 *
 * Round 24 (the previous "stripe top, stripe bottom" arrangement) is
 * gone — the dashed divider, the bolted-on prox-panel margins, and the
 * always-on result-counter inside the form. Everything is now part of
 * one CSS grid.
 * ================================================================== */

.sk-search-hub {
  margin: 20px 0 0;
  padding: 12px 16px 11px;
  /* 2026-06-28 — denser ("Плътно") */
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFDF8), to(#FFFFFF));
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
  border: 1px solid rgba(255, 211, 126, 0.45);
  border-radius: 18px;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 32px rgba(196, 158, 79, 0.12), 0 2px 6px rgba(29, 29, 29, 0.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 32px rgba(196, 158, 79, 0.12), 0 2px 6px rgba(29, 29, 29, 0.04);
  position: relative;
}

.sk-search-hub__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}

.sk-search-hub__heading {
  display: block;
  font: 700 0.84rem/1.15 var(--basic-font, sans-serif);
  color: var(--basic-black, #1D1D1D);
  letter-spacing: -0.01em;
}

.sk-search-hub__hint {
  display: block;
  font: 400 0.63rem/1.4 var(--basic-font, sans-serif);
  color: rgba(29, 29, 29, 0.55);
}

.sk-search-hub {
  /* Reset-filters chip (round 33). Lives in the head strip top-right
   * area on desktop (positioned via the existing &__head flex/absolute
   * layout), collapses to a smaller pill on mobile. */
}

.sk-search-hub .sk-clear-chip {
  position: absolute;
  top: 12px;
  right: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(29, 29, 29, 0.12);
  color: rgba(29, 29, 29, 0.65);
  font: 600 0.6rem/1.1 var(--basic-font, sans-serif);
  cursor: pointer;
  -webkit-transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s;
  transition: background 0.18s, color 0.18s, border-color 0.18s, -webkit-transform 0.18s;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, -webkit-transform 0.18s;
}

.sk-search-hub .sk-clear-chip svg {
  width: 12px;
  height: 12px;
}

.sk-search-hub .sk-clear-chip:hover {
  background: rgba(29, 31, 118, 0.06);
  color: var(--extra-blue, #1D1F76);
  border-color: rgba(29, 31, 118, 0.3);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.sk-search-hub {
  /* ====== Single-column "search-hero" stack (2026-06-21, Variant Б) ======
   * Replaces the round-27 two-column grid, which left a tall empty left
   * column when many sport chips were active, cramped the search into a
   * narrow right column, and let the chips + tier filter auto-flow into
   * stray grid cells. Now a flex column; children are `order`-ed so the
   * proximity SEARCH is the hero row on top, then the filter dropdowns,
   * then the card-access tier filter, then the active-chip summary — each
   * full width. DOM order is unchanged (head, block, form, chips,
   * sk-card-access, prox), so no blade markup edits are needed. */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sk-search-hub__head {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  margin-bottom: 12px;
}

.sk-search-hub .geography-presence__block {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.sk-search-hub .geography-presence__form {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
}

.sk-search-hub .geography-presence__form::before {
  display: none;
}

.sk-search-hub .geography-presence__form {
  /* drop the dashed divider from round 24 */
}

.sk-search-hub {
  /* 2026-05-18 (round 28) — kill the .geography-presence__box outer
   * margin + center-alignment INSIDE the hub. That box has
   * `margin-top: 30px; align-items: center` globally so when stacked
   * into the grid left column it pushed the filter pills 30 px down
   * relative to the search bar in the right column, breaking the
   * "search bar bottom == filter pills bottom" alignment the user
   * wants. Inside the hub we anchor the box to the top, no margin. */
}

.sk-search-hub .geography-presence__box {
  margin-top: 0 !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  width: 100%;
}

.sk-search-hub .geography-presence__row {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.sk-search-hub .sk-prox {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0;
  width: 100%;
}

.sk-search-hub {
  /* 2026-06-28 — the tier filter now lives INSIDE .geography-presence__row
   * as a 4th dropdown pill, so it no longer needs the old stacked-section
   * spacing/divider. order:1 keeps it after the three filter pills. */
}

.sk-search-hub .sk-card-access {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.sk-search-hub .sk-filter-chips {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  gap: 6px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(215, 166, 88, 0.3);
}

.sk-search-hub .sk-filter-chips:empty {
  display: none;
}

.sk-search-hub .sk-prox-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sk-search-hub {
  /* On the new compact prox row, the result counter that used to sit
   * inside the form would now read as floating between the columns.
   * Move it visually to the top-right of the header strip. */
}

.sk-search-hub .geography-presence__result {
  position: absolute;
  top: 14px;
  right: 192px;
  /* clears the .sk-clear-chip (≈160px wide @ right:16) to its right */
  font-size: 11px;
  color: rgba(29, 29, 29, 0.65);
  font-weight: 600;
  text-align: right;
  max-width: 200px;
}

.sk-search-hub {
  /* Mobile filter button — same as round 24 but tighter typography. */
}

.sk-search-hub .geography-presence__block {
  margin-bottom: 8px;
}

.sk-search-hub .geography-presence__filter {
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 211, 126, 0.18);
  border: 1px solid rgba(255, 211, 126, 0.7);
  font: 600 12px/1 var(--basic-font, sans-serif);
  color: var(--basic-black, #1D1D1D);
  -webkit-transition: background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.sk-search-hub .geography-presence__filter span {
  color: inherit;
}

.sk-search-hub .geography-presence__filter:hover {
  background: rgba(255, 211, 126, 0.32);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(196, 158, 79, 0.2);
  box-shadow: 0 4px 12px rgba(196, 158, 79, 0.2);
}

/* ============ Proximity bar — round 26 ============
 * Per user feedback: search input + "Я здесь" button should be the
 * EXACT SAME HEIGHT and FONT SIZE as the left-side filter pills
 * (.select-filter__btn → min-height 44px, font 0.68rem). Radius pills
 * STAY SMALLER than the filter pills (compact pill row under the
 * search bar). Round 25 sized the prox too small; round 26 restores
 * parity with the filters. */

.sk-search-hub .sk-prox-input-wrap {
  min-height: 40px;
  /* 2026-06-28 — denser ("Плътно"): 52 → 40 */
  padding: 0 14px 0 15px;
  border: 1.5px solid rgba(215, 166, 88, 0.55);
  -webkit-box-shadow: 0 4px 14px rgba(196, 158, 79, 0.1);
  box-shadow: 0 4px 14px rgba(196, 158, 79, 0.1);
  border-radius: 100px;
}

.sk-search-hub .sk-prox-icon {
  font-size: 13px;
  margin-right: 7px;
}

.sk-search-hub .sk-prox-input {
  font: 500 0.73rem/1.1 sans-serif;
  /* hero search — slightly above the filter pills */
  padding: 8px 0;
}

.sk-search-hub .sk-prox-input::-webkit-input-placeholder {
  font: 500 0.73rem/1.1 sans-serif;
}

.sk-search-hub .sk-prox-input::-moz-placeholder {
  font: 500 0.73rem/1.1 sans-serif;
}

.sk-search-hub .sk-prox-input:-ms-input-placeholder {
  font: 500 0.73rem/1.1 sans-serif;
}

.sk-search-hub .sk-prox-input::-ms-input-placeholder {
  font: 500 0.73rem/1.1 sans-serif;
}

.sk-search-hub .sk-prox-input::placeholder {
  font: 500 0.73rem/1.1 sans-serif;
}

.sk-search-hub .sk-prox-clear {
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.sk-search-hub .sk-prox-geo {
  min-height: 40px;
  padding: 0 18px;
  font: 600 0.62rem/1.1 sans-serif;
  /* same scale as filter pills */
  background: linear-gradient(135deg, var(--extra-blue, #1D1F76) 0%, #2D31A8 100%);
  -webkit-box-shadow: 0 2px 6px rgba(29, 31, 118, 0.22);
  box-shadow: 0 2px 6px rgba(29, 31, 118, 0.22);
  border-radius: 100px;
}

.sk-search-hub .sk-prox-geo svg {
  width: 13px;
  height: 13px;
}

.sk-search-hub .sk-prox-geo:hover {
  background: linear-gradient(135deg, #2D31A8 0%, var(--extra-blue, #1D1F76) 100%);
}

/* 2026-06-28 — denser filter pills inside the hub (44 → 33px, tighter
 * padding + font). Scoped to .sk-search-hub so other .select-filter usages
 * (if any) are unaffected. */

.sk-search-hub .select-filter__btn {
  min-height: 33px;
  padding: 6px 13px;
  gap: 7px;
}

.sk-search-hub .select-filter__btn span {
  font: 500 0.64rem/1.1 sans-serif;
}

.sk-search-hub .select-filter__count {
  width: 17px;
  height: 17px;
  font-size: 0.55rem;
}

/* 2026-06-28 — on tablet/mobile the desktop filter row (.geography-presence__row)
 * is hidden by the base rule, because city/location/sport move into the
 * .filter-aside drawer behind the «Фильтр» button. The tier dropdown lives
 * inside that row now, so without this it would vanish on mobile (it used to
 * show as a standalone control). Un-hide the row there but reveal ONLY the tier
 * pill — the three desktop dropdowns stay hidden (the drawer owns them). */

/* Radius pills row — INTENTIONALLY SMALLER than the filter pills so it
 * reads as a secondary control, not a primary action. The "Радиус:"
 * label stays at the filter-pill-adjacent size for legibility. */

.sk-search-hub .sk-prox-radius {
  margin-top: 10px;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sk-search-hub .sk-prox-radius-label {
  color: rgba(29, 29, 29, 0.65);
  font: 600 0.58rem/1.1 sans-serif;
  letter-spacing: 0.06em;
  margin-right: 4px;
  text-transform: uppercase;
}

.sk-search-hub .sk-prox-rkm {
  padding: 4px 10px;
  min-height: 26px;
  font: 600 0.55rem/1 sans-serif;
  /* deliberately smaller than filter pills */
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 100px;
  -webkit-transition: background 0.15s, color 0.15s, border-color 0.15s, -webkit-transform 0.15s;
  transition: background 0.15s, color 0.15s, border-color 0.15s, -webkit-transform 0.15s;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, -webkit-transform 0.15s;
}

.sk-search-hub .sk-prox-rkm:hover {
  border-color: rgba(255, 211, 126, 0.8);
  background: rgba(255, 211, 126, 0.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.sk-search-hub .sk-prox-rkm.is-active {
  background: var(--extra-blue, #1D1F76);
  color: #FFFFFF;
  border-color: var(--extra-blue, #1D1F76);
  -webkit-box-shadow: 0 4px 10px rgba(29, 31, 118, 0.25);
  box-shadow: 0 4px 10px rgba(29, 31, 118, 0.25);
}

.sk-search-hub .sk-prox-status {
  margin: 0 0 0 12px;
  /* right after «Без ограничения» (2026-06-28) */
  font: 600 0.58rem/1.2 sans-serif;
}

.sk-search-hub .sk-prox-suggest {
  max-height: 240px;
}

.sk-search-hub .sk-prox-suggest .sk-prox-sg-item {
  padding: 9px 13px;
  font: 500 0.65rem/1.35 sans-serif;
}

.sk-search-hub .sk-prox-suggest .sk-prox-sg-meta {
  font-size: 0.55rem;
}

/* 2026-05-18 (round 32) — venue-vs-address suggestion distinction.
 * Local venue hits get a small gold badge "Наш объект" to the right
 * of the name + a left gold accent stripe so the user can scan the
 * merged list at a glance. Address suggestions render plain. */

.sk-prox-sg-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.sk-prox-sg-badge {
  font: 700 9px/1 var(--basic-font, sans-serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--extra-blue, #1D1F76);
  background: linear-gradient(135deg, #FFE9C4, #FFD37E);
  padding: 4px 8px;
  border-radius: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.sk-prox-sg-badge--metro {
  font-size: 10px;
  color: #FFFFFF;
  background: #D62027;
  -webkit-box-shadow: 0 1px 4px rgba(214, 32, 39, 0.3);
  box-shadow: 0 1px 4px rgba(214, 32, 39, 0.3);
}

.sk-prox-sg-item.sk-prox-sg-venue {
  position: relative;
  padding-left: 16px;
}

.sk-prox-sg-item.sk-prox-sg-venue::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFD37E), to(#C49E4F));
  background: linear-gradient(180deg, #FFD37E, #C49E4F);
}

/* 2026-05-18 (round 28) — the city-chip-with-× experiment from
 * round 26 was reverted at user request: a "second ×" kept appearing
 * (badge styled as a count indicator was perceived as a close icon
 * regardless of label). Reverted to the default "Город (1)" badge.
 * Leaving this comment as a marker so future rounds don't reintroduce
 * the same idea unaware. */

/* ==================================================================
 * 2026-05-18 — Inline gesture tip near the section title.
 * Discrete gold pill that explains the cooperative gesture model up
 * front, before the user reaches the map. Mobile-only (≤ 768px).
 * No dismiss — it's small enough to live there permanently and
 * solves the "users don't know to use 2 fingers" UX gap.
 * ================================================================== */

.sk-map-tip {
  display: none;
}

/* 2026-06-10 — Sport-direction chips in the proximity-search dropdown.
 * Additive feature: items WITHOUT an icon (venue, plain address) keep
 * the original block markup so their layout is unchanged. Items WITH
 * an icon (sport-type) use a flex-row wrapper introduced just for
 * them.
 *
 * Why a separate row layout: the existing .sk-prox-sg-item is
 * `display: block`, so a leading <span class="sk-prox-sg-icon">
 * would sit on its own line above the name. Switching the item to
 * flex only when an icon is present keeps the layout regression risk
 * at zero for the existing kinds. */

.sk-prox-sg-item.sk-prox-sg-metro,
.sk-prox-sg-item.sk-prox-sg-sport-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

/* Sport-type chip gets a soft gold tint so it reads as a category, not
 * a place pick. Metro rows stay plain — they're real place picks. */

.sk-prox-sg-item.sk-prox-sg-sport-type {
  background: rgba(218, 164, 65, 0.04);
}

.sk-prox-sg-item.sk-prox-sg-sport-type:hover,
.sk-prox-sg-item.sk-prox-sg-sport-type.is-active {
  background: rgba(218, 164, 65, 0.14);
}

.sk-prox-sg-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sk-prox-sg-icon svg {
  display: block;
}

.sk-prox-sg-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  /* let .sk-prox-sg-meta truncate inside flex */
}

/* Round 11 (2026-05-15) — Key reveal animation REMOVED per user.
 * The previous .sk-fx-light-beam / .sk-fx-key-svg rules and the
 * @keyframes sk-fx-key-draw have all been deleted. ProfileModal opens
 * directly without any introductory flourish. */

.sk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(15, 14, 28, 0.92);
  padding: 5vh 6vw;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.sk-lightbox.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.2s ease;
  animation: fadeIn 0.2s ease;
}

.sk-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  -webkit-box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  cursor: default;
}

.sk-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}

.sk-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.sk-lightbox__counter {
  position: absolute;
  top: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font: 600 0.8rem/1 var(--basic-font, sans-serif);
  letter-spacing: 0.04em;
}

.sk-lightbox__counter:empty {
  display: none;
}

.sk-lightbox__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background 0.18s, color 0.18s;
  transition: background 0.18s, color 0.18s;
}

.sk-lightbox__nav:hover {
  background: rgba(255, 211, 126, 0.92);
  color: var(--extra-blue, #1D1F76);
}

.sk-lightbox__nav--prev {
  left: 18px;
}

.sk-lightbox__nav--next {
  right: 18px;
}

.sk-profile-gallery .gp-gallery__slide img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

body.sk-lightbox-lock {
  overflow: hidden;
}

.header {
  padding-top: 25px;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 101;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}

.header.is-fixed {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header.is-fixed.is-visible {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 25px;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.header__content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--basic-gold);
  width: 100%;
  max-width: 15.78%;
  border-radius: var(--basic-radius);
  padding: 10px 15px;
}

.header__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  max-width: 9%;
  width: 100%;
}

.header__content-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--extra-gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__content-nav {
  margin-left: auto;
  margin-right: auto;
}

.header__content-right-burger[aria-expanded=true] .icon__burger {
  width: 12px;
  height: 12px;
}

.header__content-enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-width: 116px;
  min-height: 40px;
  gap: 16px;
  background-color: var(--basic-white);
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  width: 100%;
  padding-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__content-enter span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--basic-black);
}

.header__content-enter:hover .header__content-icon {
  background-color: var(--basic-blue);
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__content-open {
  position: relative;
  z-index: 101;
}

.header__content-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__content-right-item:nth-child(2) {
  display: none;
}

.header__content-right-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--basic-gray);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header__aside-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header__aside-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--basic-gray);
  padding: 30px 0 40px 0;
  margin-top: auto;
}

.header__aside-info-text {
  font-weight: 500;
  font-size: 0.9rem;
  font-family: var(--extra-font);
  width: 28%;
}

.footer {
  background-color: var(--basic-gold);
  position: relative;
}

.footer__content {
  padding-top: 280px;
  padding-bottom: 40px;
}

.footer__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.footer__content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 30px;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 70px;
}

.footer__content-center-contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__content-bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__content-bottom-item span {
  font-weight: 400;
  font-size: 0.7rem;
}

.footer__content-bottom-item span a {
  color: var(--extra-blue);
}

.footer__content-center-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0;
}

.footer__content-center-contacts-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.footer__content-center-contacts-box p {
  font-weight: 400;
  font-size: 1rem;
}

.footer__content-center-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__content-center-contacts-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--basic-black);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__content-center-contacts-item a span {
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__content-center-contacts-item a:hover {
  color: var(--extra-blue);
}

.footer__content-center-menu {
  background-color: var(--basic-white);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  width: 41.5%;
}

.footer__content-center-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 20px;
}

.footer__content-center-menu-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
}

.footer__content-center-menu-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__content-center-menu-group-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__content-center-menu-group-item a span {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.footer__content-center-menu-group-item a:hover {
  opacity: 0.7;
}

.footer__content-center-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--basic-blue);
  border-radius: 100px;
  padding: 10px 10px 10px 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer__content-center-menu-item a span {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.footer__content-center-menu-item a:hover {
  background-color: var(--basic-gold);
}

.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  min-height: 120px;
  background-color: var(--basic-white);
  border-radius: 0 0 35px 35px;
  display: block;
  position: absolute;
  top: 0;
  pointer-events: none;
}

.footer__content-center-banner.slider-banner {
  position: static;
  margin: 0 0 0 0;
  width: 100%;
  max-width: 100%;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  left: unset;
}

.footer__content-center-box {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 925px;
}

.icon__enter {
  width: 16px;
  height: 16px;
  color: var(--extra-black);
}

.icon__arrow {
  stroke: var(--extra-black);
}

.icon__arrow--slider {
  width: 32px;
  height: 32px;
  fill: var(--basic-white);
}

.icon__tabs {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  fill: var(--extra-blue);
}

.icon__burger {
  width: 16px;
  height: 16px;
  stroke: var(--extra-black);
}

.icon__custom {
  width: 20px;
  height: 20px;
  fill: var(--extra-blue);
}

.icon__group {
  width: 20px;
  height: 13px;
  fill: var(--extra-blue);
}

.icon__close {
  width: 12px;
  height: 12px;
  stroke: var(--extra-black);
}

.icon__select {
  width: 10px;
  height: 10px;
  stroke: var(--extra-blue);
  fill: transparent;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
}

.icon__calendar {
  width: 16px;
  height: 16px;
  stroke: var(--extra-black);
  fill: transparent;
}

.icon__pin {
  width: 16px;
  height: 16px;
  stroke: var(--extra-black);
  fill: transparent;
}

.icon-arrow--rotate {
  width: 10px;
  height: 12px;
  stroke: var(--extra-black);
}

.icon.icon__tabs {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  fill: var(--extra-black);
}

.icon__compensation {
  width: 25px;
  height: 30px;
  fill: var(--basic-white);
}

.icon__linkedin {
  width: 90px;
  height: 25px;
  fill: var(--extra-svg);
  opacity: 0.7;
}

.icon__pwc {
  width: 72px;
  height: 46px;
  fill: var(--extra-svg);
  opacity: 0.7;
}

.icon__gallup {
  fill: var(--extra-svg);
  width: 110px;
  height: 36px;
  opacity: 0.7;
}

.icon__hrdive {
  fill: var(--extra-svg);
  width: 105px;
  height: 28px;
  opacity: 0.7;
}

.icon__acoem {
  height: 80px;
  opacity: 0.7;
}

.icon__sportkey {
  width: 372px;
  height: 40px;
  fill: inherit;
}

.icon__filter {
  width: 14px;
  height: 14px;
  stroke: var(--extra-black);
  fill: transparent;
}

.icon__clear {
  width: 16px;
  height: 16px;
  fill: var(--basic-white);
}

.icon__forward {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  fill: var(--basic-black);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon__search {
  width: 16px;
  height: 16px;
  fill: var(--extra-blue);
}

.icon__rank {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  fill: var(--extra-blue);
}

.icon__employees {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  fill: var(--extra-blue);
}

.js-accordion-answer__group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  border: 1px solid var(--basic-gray);
  margin-left: auto;
}

.js-accordion-answer__group-icon svg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.js-accordion-answer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.js-accordion-answer__item {
  cursor: pointer;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 10px;
}

.js-accordion-answer__item:not(:first-child) {
  padding-top: 10px;
}

.js-accordion-answer__item:first-child {
  padding-bottom: 10px;
}

.js-accordion-answer__answer {
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  pointer-events: none;
  padding-left: 65px;
}

.js-accordion-answer__answer p {
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  text-wrap: auto;
}

.js-accordion-answer__answer p:not(:last-child) {
  margin-bottom: 10px;
}

.js-accordion-answer__item[aria-expanded=true] .js-accordion-answer__answer {
  pointer-events: all;
}

.js-accordion-answer__item[aria-expanded=true] .js-accordion-answer__group-icon svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.js-accordion-answer__item[aria-expanded=true] .js-accordion-answer__box {
  padding-bottom: 20px;
}

.js-accordion-answer__group-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 100px;
  border: 1px solid var(--basic-gray);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
}

.js-accordion-answer__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.js-accordion-answer__group-title {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.2;
  font-family: var(--extra-font);
}

.js-accordion-answer__recommend {
  margin-top: 20px;
}

.js-accordion-answer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.js-accordion-answer__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.js-accordion-answer__items-numbered li {
  display: list-item;
}

.js-accordion-answer__items-numbered li::marker {
  color: var(--extra-gold);
}

.js-accordion-answer__items-labeled li {
  position: relative;
}

.js-accordion-answer__items-labeled li::after {
  content: "";
  background-color: var(--extra-gold);
  position: absolute;
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  display: block;
  left: -15px;
}

.js-accordion-answer__items ~ p {
  margin-top: 10px;
}

.js-accordion-answer__link {
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--extra-blue);
}

.js-accordion__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
  border: 1px solid var(--basic-gray);
}

.js-accordion__recommend {
  margin-top: 20px;
}

.js-accordion__figure {
  display: block;
  margin-top: 20px;
  position: relative;
}

.js-accordion__figure img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.js-accordion__figure::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.js-accordion__box {
  padding: 24px 24px 24px 24px;
}

.js-accordion__item {
  display: block;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.js-accordion__item.is-active {
  background-color: var(--basic-gold);
}

.js-accordion__item.is-active .js-accordion__count {
  background-color: var(--basic-white);
}

.js-accordion__item:hover {
  background-color: var(--basic-gold);
}

.js-accordion__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.js-accordion__text {
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
}

.js-accordion__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.js-accordion__content p {
  font-weight: 400;
  font-size: 0.7rem;
  margin-top: 20px;
  padding-left: 70px;
}

.key-trends__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.key-trends__content-article {
  padding: 30px 40px 30px 40px;
  border-radius: 16px;
  overflow: hidden;
}

.key-trends__content-article--yellow {
  background-color: var(--basic-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21.62%;
  flex: 0 0 21.62%;
}

.key-trends__content-article--gold {
  background-color: var(--extra-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21.62%;
  flex: 0 0 21.62%;
}

.key-trends__content-article--large {
  background-color: var(--extra-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.8%;
  flex: 0 0 32.8%;
}

.key-trends__content-article--last {
  background-color: var(--basic-gold);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
}

.key-trends__content-article--blue {
  background-color: var(--basic-blue);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44%;
  flex: 0 0 44%;
}

.key-trends__content-article--image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 21.62%;
  flex: 0 0 21.62%;
  padding: 0 0 0 0 !important;
}

.key-trends__content-strong strong {
  font-weight: 500;
  font-size: 3.1rem;
}

.key-trends__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.key-trends__content-row p {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
}

.key-trends__rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--basic-white);
  border-radius: 100px;
}

.key-trends__content-group-figure {
  width: 94%;
}

.key-trends__content-group-figure img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
  aspect-ratio: 171/101;
}

.key-trends__content-group-icon {
  margin-top: auto;
}

.key-trends__content-height {
  gap: 48px;
}

.key-trends__content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.key-trends__content-group-text {
  width: 100%;
}

.key-trends__content-group-text strong {
  font-weight: 500;
  font-size: 3.1rem;
}

.key-trends__content-group-text strong span {
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--extra-font);
  margin-left: 10px;
}

.key-trends__content-group-text p {
  font-weight: 500;
  font-size: 0.7rem;
}

.key-trends__content-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.key-trends__figure {
  overflow: hidden;
  border-radius: 16px;
}

.key-trends__figure img {
  aspect-ratio: 278/320;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.key-trends__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.key-trends__content-text strong {
  display: block;
  font-family: var(--extra-font);
  font-weight: 500;
  font-size: 1rem;
}

.key-trends__content-text p {
  font-weight: 400;
  font-size: 0.8rem;
  text-wrap: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 60px 40px;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  background-color: var(--basic-white);
  border-radius: 16px;
}

.modal__close-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
}

.modal--preload {
  -webkit-transition: none;
  transition: none;
}

.modal.is-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  pointer-events: auto;
}

.modal iframe {
  max-width: 100%;
  border: none;
}

.modal__content.modal-callback {
  max-width: 1030px;
}

.modal-inner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-inner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal-inner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 580px;
}

.modal-inner__text time {
  font-weight: 700;
  font-size: 0.7rem;
}

.modal-inner__text h3 {
  max-width: 500px;
}

.modal-inner__figure {
  width: 100%;
  max-width: 280px;
  position: relative;
}

.modal-inner__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 278/333;
  border-radius: 16px;
}

.modal-inner__figure:after {
  content: "";
  background-image: url("../img/icon-quotation.svg");
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  display: block;
}

.modal-inner__div {
  font-size: 0.7rem;
  font-weight: 400;
}

.modal-inner__div p {
  margin-bottom: 20px;
}

.modal-inner__div p:last-child {
  margin-bottom: 0;
}

.modal-inner__thumbs-figure img {
  width: 44px;
  height: 42px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}

.modal-inner__block {
  width: 100%;
  max-width: 280px;
}

.modal-inner__slider.swiper {
  width: 100%;
  margin: 0 0 0 0;
}

.modal-inner__thumbs-slide.swiper-slide {
  border-radius: 100px;
  width: 100%;
  max-width: 46px !important;
  height: 46px;
  border: 2px solid transparent;
}

.modal-inner__thumbs-slide.swiper-slide.swiper-slide-thumb-active {
  border-color: var(--extra-gold);
}

.modal-inner .modal-inner__group-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  top: unset !important;
  left: unset !important;
  bottom: unset !important;
  right: unset !important;
  margin: 0 0 0 0 !important;
}

.modal-inner .modal-inner__group-arrow.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none !important;
}

.modal-inner .modal-inner__group-arrow.swiper-button-disabled svg {
  fill: var(--basic-gray);
}

.modal-inner .modal-inner__group-arrow .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-inner .modal-inner__group-arrow .circle-progress circle {
  fill: none;
  stroke-width: 1;
}

.modal-inner .modal-inner__group-arrow .circle-progress .bg {
  stroke: var(--basic-gray);
}

.modal-inner .modal-inner__group-arrow .circle-progress .fg {
  stroke: var(--extra-blue);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.modal-inner .modal-inner__group-arrow:hover .circle-progress .fg {
  stroke-dashoffset: 0;
}

.modal-inner .modal-inner__group-arrow::after {
  content: none !important;
}

.modal-inner .modal-inner__group-arrow.swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.modal-inner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.modal-callback__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.modal-callback__wrapper-left {
  width: 100%;
  max-width: 440px;
}

.modal-callback__wrapper-right {
  width: 100%;
  padding: 0 0 24px 40px;
}

.modal-callback__figure {
  overflow: hidden;
  height: 100%;
}

.modal-callback__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 440/655;
  border-radius: 16px;
}

.modal-callback__wrapper-right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal-callback .modal__close-btn {
  position: static;
}

.modal-callback__wrapper-right-text {
  font-weight: 400;
  font-size: 0.7rem;
  margin-top: 15px;
}

.modal-callback__wrapper-right-text p {
  line-height: 1.6;
}

.modal-callback__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.modal-callback__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  position: relative;
  min-height: 55px;
}

.modal-callback__item.half-field {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 48.9%;
  flex: 1 0 48.9%;
}

.modal-callback__item.is-active .modal-callback__label {
  -webkit-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  transform: translateY(-12px);
  font-size: 0.4rem;
  -webkit-transition: font-size 0.2s ease, -webkit-transform 0.2s ease;
  transition: font-size 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, font-size 0.2s ease;
  transition: transform 0.2s ease, font-size 0.2s ease, -webkit-transform 0.2s ease;
}

.modal-callback__item.auto-resize-textarea.is-active .modal-callback__label {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.modal-callback__item.auto-resize-textarea.is-active .modal-callback__label br {
  display: none;
}

.modal-callback__input {
  width: 100%;
  padding: 13px 20px 13px 20px;
  border-radius: 100px;
  background-color: var(--basic-blue);
  font-weight: 500;
  font-size: 0.7rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.modal-callback__input::-webkit-input-placeholder {
  color: var(--color-placeholder);
}

.modal-callback__input::-moz-placeholder {
  color: var(--color-placeholder);
}

.modal-callback__input:-ms-input-placeholder {
  color: var(--color-placeholder);
}

.modal-callback__input::-ms-input-placeholder {
  color: var(--color-placeholder);
}

.modal-callback__input::placeholder {
  color: var(--color-placeholder);
}

.modal-callback__input:hover {
  border-color: var(--extra-blue);
}

.modal-callback__input.has-error {
  border-color: var(--basic-red);
}

.modal-callback__textarea {
  width: 100%;
  padding: 20px 20px 10px 20px;
  border-radius: 16px;
  background-color: var(--basic-blue);
  resize: none;
  font-weight: 500;
  font-size: 0.7rem;
  border: 1px solid transparent;
}

.modal-callback__textarea:hover {
  border-color: var(--extra-blue);
}

.modal-callback__textarea.has-error {
  border-color: var(--basic-red);
}

.modal-callback__textarea:focus {
  outline: none;
}

.modal-callback__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 0.7rem;
  pointer-events: none;
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-callback__bottom {
  margin-top: 20px;
}

.modal-callback__bottom-btn span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 175px;
}

.modal-callback__error {
  font-weight: 400;
  font-size: 0.4rem;
  line-height: 120%;
  color: var(--basic-red);
  position: absolute;
  bottom: -7px;
}

.modal-callback__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 13px 20px 13px 20px;
  border-radius: 100px;
  background-color: var(--basic-blue);
  font-weight: 500;
  font-size: 0.7rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.modal-callback__inner {
  border-radius: 16px;
  padding-right: 20px;
  padding-top: 24px;
  border: 1px solid var(--extra-blue);
  height: auto;
  position: absolute;
  margin-top: 10px;
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
  width: 100%;
  z-index: 2;
  background-color: var(--basic-white);
}

.modal-callback__inner[aria-expanded=true] {
  display: block;
}

.modal-callback__inner-text {
  font-size: 0.7rem;
  color: var(--basic-black);
}

.modal-callback__inner-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.modal-callback__inner-input + .modal-callback__inner-checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal-callback__inner-input + .modal-callback__inner-checkbox::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--extra-blue);
  background-color: var(--basic-blue);
  border-radius: 1px;
  background: var(--basic-blue) center/50% no-repeat;
}

.modal-callback__inner-input:checked + .modal-callback__inner-checkbox::before {
  background-color: var(--extra-blue);
  background-image: url("../img/icon-checkbox.svg");
  background-size: contain;
}

.modal-callback__inner-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.modal-callback__scroll {
  max-height: 305px;
  overflow: auto;
  padding-left: 24px;
}

.modal-callback__scroll::-webkit-scrollbar {
  width: 4px;
  border-radius: 16px;
}

.modal-callback__scroll::-webkit-scrollbar-track {
  background: var(--basic-blue);
  border-radius: 16px;
}

.modal-callback__scroll::-webkit-scrollbar-thumb {
  background: var(--extra-blue);
  border-radius: 16px;
}

.modal-callback__block {
  margin-top: 20px;
  padding: 0 0 24px 24px;
}

.modal-callback__apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  padding: 16px 8px 16px 8px;
  border: 1px solid transparent;
  background-color: var(--extra-blue);
  width: 100%;
}

.modal-callback__apply span {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--basic-white);
}

.modal-callback__apply:disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border-color: var(--basic-gray);
}

.modal-callback__apply:disabled span {
  color: var(--basic-gray);
}

.mutual-settlements__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 82px;
}

.mutual-settlements__figure {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.mutual-settlements__figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(177.35deg, rgba(29, 29, 29, 0.07) 23.86%, rgba(29, 29, 29, 0.7) 123.4%);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.mutual-settlements__figure img {
  aspect-ratio: 350/440;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.mutual-settlements__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  max-width: 420px;
}

.mutual-settlements__box p {
  font-size: 0.8rem;
  font-weight: 400;
  max-width: 365px;
}

.mutual-settlements__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--basic-white);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 400;
}

.mutual-settlements__flex.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.mutual-settlements__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.mutual-settlements__left {
  width: 100%;
  max-width: 350px;
  height: 100%;
}

.mutual-settlements__right {
  width: 100%;
}

.mutual-settlements__item.swiper-slide {
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  min-height: 233px;
  background-color: var(--basic-gold);
}

.mutual-settlements__item.swiper-slide:first-child {
  background-color: var(--basic-blue);
}

.mutual-settlements__text strong {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
}

.nav-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.nav-menu__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  border-radius: var(--basic-radius);
  min-height: 40px;
  padding-right: 5px;
  padding-left: 5px;
}

.nav-menu__list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 20px 7px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-menu__list-item-link span {
  font-weight: 600;
  font-size: 0.71rem;
  line-height: 1.1;
  color: var(--basic-black);
}

.nav-menu__list-item-link:hover {
  background-color: var(--basic-gold);
  border-radius: 16px;
}

.nav-menu__list-item-link.is-active {
  background-color: var(--extra-gold);
  border-radius: 16px;
}

.nav-menu__list-items-left {
  background-color: var(--basic-blue);
}

.nav-menu__list-items-left .nav-menu__list-item-link:hover {
  opacity: 1 !important;
}

.nav-menu__list-items-right {
  background-color: var(--basic-gold);
}

.nav-menu .nav-menu__list-item .nav-menu__list-item-link:hover {
  opacity: 0.5;
}

.new-features {
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

.new-features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: var(--basic-blue);
  border-radius: var(--basic-radius);
  padding: 5px 5px 5px 5px;
  position: relative;
  --magic-left: 0px;
  --magic-width: 0px;
}

.new-features__list::before {
  content: "";
  position: absolute;
  top: auto;
  left: var(--magic-left);
  width: var(--magic-width);
  height: 100%;
  max-height: 35px;
  background-color: var(--extra-gold);
  border-radius: var(--basic-radius);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}

.new-features__new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: var(--container-padding);
}

.new-features__new h2 {
  margin-left: auto;
}

.new-features__new .new-features__tabs {
  margin-left: auto;
}

.new-features__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.new-features__left-tooltip {
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  padding: 6px 25px 6px 25px;
  font-size: 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}

.new-features__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 10px 10px 10px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.new-features__btn span {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--basic-black);
  display: block;
  white-space: nowrap;
}

.new-features__btn:hover {
  background-color: var(--extra-gold);
  border-radius: 16px;
}

.new-features__left-text {
  margin-top: 30px;
}

.new-features__left-text p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 0.85rem;
}

.new-features__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 355px;
}

.new-features__right-figure {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.new-features__right-figure img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.new-features__right-text {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--extra-font);
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  color: var(--basic-white);
}

.new-features__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.new-features__content {
  margin-top: 50px;
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.new-features__content[aria-expanded=true] {
  display: block;
}

.new-features__left-flex {
  width: 72%;
  margin: 0 0 0 0;
  overflow: hidden;
}

.new-features__right.swiper {
  overflow: visible;
}

.new-features__left-link {
  margin-top: auto;
}

.new-features__left-link span {
  width: 49%;
}

.new-features__right-slide.swiper-slide:first-child {
  height: auto;
}

.new-features__right-slide.swiper-slide:first-child .new-features__right-figure {
  height: 100%;
}

.new-features__right-slide.swiper-slide:first-child .new-features__right-figure::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.15%, rgba(29, 29, 29, 0.07)), color-stop(91.85%, rgba(29, 29, 29, 0.7)));
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.07) 16.15%, rgba(29, 29, 29, 0.7) 91.85%);
  border-radius: 16px;
  z-index: 1;
}

.new-features__right-slide.swiper-slide:not(:first-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--basic-gold);
  border-radius: 16px;
  height: auto;
  gap: 20px;
}

.new-features__right-slide.swiper-slide:hover .new-features__right-icon {
  background-color: var(--basic-blue);
}

.new-features__right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px 24px 0 24px;
}

.new-features__right-box span {
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  padding: 6px 25px 6px 25px;
  font-size: 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  background-color: var(--basic-white);
}

.new-features__right-box strong {
  font-weight: 500;
  font-size: 0.9rem;
  font-family: var(--extra-font);
}

.new-features__right-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 35px;
  left: 35px;
  z-index: 1;
  pointer-events: none;
  background-color: var(--extra-gold);
  border-radius: var(--basic-radius);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.new-features__content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}

.new-features__bottom-figure {
  overflow: hidden;
  position: relative;
}

.new-features__bottom-figure::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.15%, rgba(29, 29, 29, 0.07)), color-stop(91.85%, rgba(29, 29, 29, 0.7)));
  background: linear-gradient(180deg, rgba(29, 29, 29, 0.07) 16.15%, rgba(29, 29, 29, 0.7) 91.85%);
  border-radius: 16px;
}

.new-features__bottom-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.new-features__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  max-width: 350px;
}

.new-features__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 72%;
}

.new-features__bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}

.new-features__bottom-swiper.swiper {
  width: 100%;
  margin-top: 50px;
}

.new-features__information-text {
  font-weight: 400;
  font-size: 0.85rem;
  text-wrap: auto;
}

.new-features__information-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  min-height: inherit;
}

.new-features__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 420px;
  height: 100%;
  min-height: 215px;
}

.new-features__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
}

.new-features__tabs-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.new-features__tabs-arrow--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.new-features__tabs-arrow.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.new-features__tabs-arrow.swiper-button-disabled svg {
  fill: var(--basic-gray);
}

.new-features__tabs-arrow .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new-features__tabs-arrow .circle-progress circle {
  fill: none;
  stroke-width: 1;
}

.new-features__tabs-arrow .circle-progress .bg {
  stroke: var(--basic-gray);
}

.new-features__tabs-arrow .circle-progress .fg {
  stroke: var(--extra-blue);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.new-features__tabs-arrow:hover .circle-progress .fg {
  stroke-dashoffset: 0;
}

.new-features__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.new-features__bottom-slide.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: var(--basic-gold);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  min-height: 180px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.new-features__bottom-slide.swiper-slide:hover {
  background-color: var(--extra-gold);
}

.new-features__bottom-slide.swiper-slide.is-active {
  background-color: var(--extra-gold);
}

.new-features__bottom-icon {
  background-color: var(--basic-white);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: var(--basic-radius);
  margin-bottom: 20px;
}

.new-features__bottom-strong {
  font-weight: 700;
  font-size: 0.7rem;
  text-wrap: auto;
}

.new-features__group-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.new-features__group-arrow--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.new-features__group-arrow.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.new-features__group-arrow.swiper-button-disabled svg {
  fill: var(--basic-gray);
}

.new-features__group-arrow .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new-features__group-arrow .circle-progress circle {
  fill: none;
  stroke-width: 1;
}

.new-features__group-arrow .circle-progress .bg {
  stroke: var(--basic-gray);
}

.new-features__group-arrow .circle-progress .fg {
  stroke: var(--extra-blue);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.new-features__group-arrow:hover .circle-progress .fg {
  stroke-dashoffset: 0;
}

.new-features__information-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new-features__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.new-features__bottom-carousel-figure {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.new-features__bottom-carousel-figure img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  height: 100%;
}

.new-features__bottom-carousel-figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(177.35deg, rgba(29, 29, 29, 0.07) 23.86%, rgba(29, 29, 29, 0.7) 123.4%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 16px;
}

.new-features__content-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.new-features__right-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.not-found__left {
  background-color: var(--basic-gold);
  padding: 62px 62px 120px 62px;
  border-radius: 16px;
  width: 100%;
}

.not-found__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.not-found__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid var(--basic-gray);
  padding-bottom: 30px;
}

.not-found__left-box p {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.2rem;
  color: var(--basic-black);
}

.not-found__left-block p {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.2rem;
  color: var(--basic-black);
}

.not-found__left-counter {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.2rem;
  color: var(--basic-black);
  background-color: var(--basic-white);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.not-found__left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.not-found__left-link {
  color: var(--extra-blue);
  border-bottom: 1px solid var(--extra-blue);
}

.not-found__left-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.not-found__left-block {
  margin-top: 30px;
}

.not-found__left-block > p:nth-child(3) {
  margin-top: 30px;
}

.not-found__right {
  background-color: var(--basic-black);
  width: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.not-found__right-figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}

.not-found__right-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.not-found__right-figure::before {
  content: "";
  width: 100%;
  padding-top: 100%;
  display: block;
}

.not-found__right-figure::after {
  content: "";
  background-image: url("../img/icon-stripe-black.svg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.our-partners {
  background-color: var(--basic-gold);
  position: relative;
  overflow: hidden;
}

.our-partners::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  min-height: 120px;
  background-color: var(--basic-white);
  border-radius: 0 0 35px 35px;
  display: block;
  pointer-events: none;
}

.our-partners__marquee-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 4/1.5;
}

.our-partners__content {
  padding-top: 120px;
}

.our-partners__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.our-partners__box p {
  font-size: 0.85rem;
  font-weight: 400;
}

.our-partners__group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.our-partners__group {
  margin-left: auto;
}

.our-partners__marquee-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--basic-white);
  border-radius: 16px;
  min-height: 180px;
  width: 100% !important;
  max-width: 280px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.our-partners__marquee {
  margin-top: 50px;
  padding-bottom: 140px;
  overflow: hidden;
  position: relative;
}

.our-partners__marquee-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
}

/* ============================================================
 * Round 7 (2026-05-15) — Partner marquee navigation arrows.
 *
 * The auto-scroll itself is handled by the existing JS module
 * `our-partners-marquee.js` (clones slides, requestAnimationFrame-driven
 * translateX, pauses on hover, pauses when off-viewport). Round 7 only
 * adds the two manual navigation arrows the user requested — they call
 * `window.skMarquee.jog(±1)` exposed by the module to bump the position
 * by one tile width.
 * ============================================================ */

.sk-marquee {
  position: relative;
}

.sk-marquee-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--basic-white);
  border: 1px solid rgba(29, 29, 29, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 16px rgba(29, 29, 29, 0.18);
  box-shadow: 0 4px 16px rgba(29, 29, 29, 0.18);
  color: var(--basic-black);
  z-index: 5;
  top: calc(50% - 70px);
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.sk-marquee-arrow:hover {
  -webkit-transform: translateY(calc(-50% - 2px));
  -ms-transform: translateY(calc(-50% - 2px));
  transform: translateY(calc(-50% - 2px));
  -webkit-box-shadow: 0 8px 22px rgba(29, 29, 29, 0.28);
  box-shadow: 0 8px 22px rgba(29, 29, 29, 0.28);
  background: var(--basic-gold);
}

.sk-marquee-arrow:active {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 2px 6px rgba(29, 29, 29, 0.2);
  box-shadow: 0 2px 6px rgba(29, 29, 29, 0.2);
}

.sk-marquee-arrow--prev {
  left: 16px;
}

.sk-marquee-arrow--next {
  right: 16px;
}

.sk-marquee-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

.our-partners::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-height: 120px;
  min-height: 120px;
  background-color: var(--basic-white);
  border-radius: 35px 35px 0 0;
}

.page-company .new-features__left {
  margin-top: 40px;
}

.page-employees .h2 {
  text-align: center;
}

.page-employees .new-features__content-inner {
  margin-top: 40px;
}

.page-partners .page-partners__title {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.page-partners .partner-block {
  margin-top: 40px;
}

.partner-block__left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 360px;
}

.partner-block__left-carousel.swiper {
  max-width: inherit;
}

.partner-block__left {
  width: 100%;
  max-width: 360px;
}

.partner-block__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--extra-blue);
  width: 0%;
  -webkit-transition: width 0s linear;
  transition: width 0s linear;
}

.partner-block__right-carousel-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
  cursor: pointer;
}

.partner-block__right-carousel-slide:first-child {
  padding-top: 0;
}

.partner-block__right-carousel-slide::before {
  content: "";
  border-bottom: 1px solid var(--basic-gray);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.partner-block__right-carousel-slide.is-active .partner-block__right-carousel-text {
  opacity: 1;
}

.partner-block__left-carousel-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.partner-block__left-carousel-text > span {
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  padding: 6px 25px 6px 25px;
  font-size: 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--basic-white);
}

.partner-block__left-carousel-text strong {
  font-weight: 500;
  font-size: 1.25rem;
  font-family: var(--extra-font);
}

.partner-block__left-carousel-mobile {
  display: none;
}

.partner-block__left-carousel-figure {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.partner-block__left-carousel-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 4/3;
  min-height: 420px;
  border-radius: 16px;
}

.partner-block__left-carousel-figure::before {
  content: "";
  background: linear-gradient(177.35deg, rgba(29, 29, 29, 0.07) 23.86%, rgba(29, 29, 29, 0.7) 123.4%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.partner-block__right-carousel-strong {
  font-weight: 500;
  font-size: 0.9rem;
  width: 100%;
  display: block;
}

.partner-block__right-carousel-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner-block__right-carousel-text {
  font-weight: 400;
  font-size: 0.71rem;
  display: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.partner-block__right-carousel-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--basic-black);
  border: 1px solid var(--basic-gray);
}

.questions-answers-grid .js-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.questions-answers {
  margin-top: 140px;
}

.questions-answers__content-left-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background-color: var(--basic-white);
  padding: 24px 24px 24px 24px;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.questions-answers__content-left-btn span {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.questions-answers__content-left-btn.active {
  background-color: var(--basic-gold);
}

.questions-answers__content-left-btn:hover {
  background-color: var(--basic-gold);
}

.questions-answers__content-left-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.questions-answers__content-left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  background-color: var(--extra-gold);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  margin-top: 40px;
}

.questions-answers__content-left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.questions-answers__content-left-box p {
  font-weight: 400;
  font-size: 0.6rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.questions-answers__content-left-box:nth-child(2) > a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--basic-black);
}

.questions-answers__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 82px;
  margin-top: 40px;
}

.questions-answers__content-left {
  width: 100%;
  max-width: 350px;
}

.questions-answers__content-right {
  width: 100%;
}

.questions-answers__content-article {
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.questions-answers__content-article[aria-expanded=true] {
  display: block;
}

.reviews-slider__content-tooltip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--basic-gray);
  border-radius: var(--basic-radius);
  padding: 6px 25px 6px 25px;
  font-size: 0.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}

.reviews-slider__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviews-slider__content-box p {
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-wrap: auto;
}

.reviews-slider__content-box p:last-child {
  margin-bottom: 0;
}

.reviews-slider__content-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
}

.reviews-slider__content-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: var(--basic-radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.reviews-slider__content-arrow--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.reviews-slider__content-arrow.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.reviews-slider__content-arrow.swiper-button-disabled svg {
  fill: var(--basic-gray);
}

.reviews-slider__content-arrow .circle-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reviews-slider__content-arrow .circle-progress circle {
  fill: none;
  stroke-width: 1;
}

.reviews-slider__content-arrow .circle-progress .bg {
  stroke: var(--basic-gray);
}

.reviews-slider__content-arrow .circle-progress .fg {
  stroke: var(--extra-blue);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  -webkit-transition: stroke-dashoffset 1s linear;
  transition: stroke-dashoffset 1s linear;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.reviews-slider__content-arrow:hover .circle-progress .fg {
  stroke-dashoffset: 0;
}

.reviews-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-slider__content-right.swiper {
  width: 100%;
  max-width: 853px;
}

.reviews-slider__content-right-figure {
  overflow: hidden;
  width: 32.5%;
  position: relative;
  border-radius: 16px;
}

.reviews-slider__content-right-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 278/333;
  border-radius: 16px;
}

.reviews-slider__content-right-figure:after {
  content: "";
  background-image: url("../img/icon-quotation.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  display: block;
}

.reviews-slider__content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 26%;
}

.reviews-slider__content-right-slide.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.reviews-slider__content-right-div {
  margin-top: auto;
}

.reviews-slider__content-right-div .reviews-slider__content-right-modal {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--extra-blue);
  border-bottom: 1px solid var(--extra-blue);
}

.reviews-slider__content-right-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 495px;
}

.reviews-slider__content-right-text strong {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  font-family: var(--extra-font);
  margin-bottom: auto;
}

.reviews-slider__content-right-text p {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: auto;
  margin-bottom: auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviews-slider__content-right-text time {
  font-weight: 700;
  font-size: 0.7rem;
  margin-top: auto;
}

.running-slider {
  background-color: var(--basic-gold);
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 140px;
}

.running-slider__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.running-slider .container {
  padding-top: 120px;
}

.running-slider__content {
  padding-bottom: 120px;
  overflow: hidden;
}

.running-slider .running-marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  white-space: nowrap;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
}

.running-slider__top-slide,
.running-slider__bottom-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  background-color: var(--basic-white);
  border-radius: 16px;
  padding: 8px;
  width: 100%;
  margin-right: 10px;
  min-width: 250px;
}

.running-slider__top-figure,
.running-slider__bottom-figure {
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
}

.running-slider__top-figure img,
.running-slider__bottom-figure img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.running-slider__top-text,
.running-slider__bottom-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.running-slider__top-text strong,
.running-slider__bottom-text strong {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.3;
  text-wrap: auto;
}

.running-slider__top-text p,
.running-slider__bottom-text p {
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1;
}

.running-slider::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  position: absolute;
  top: 0;
  background-color: var(--basic-white);
  border-radius: 0 0 35px 35px;
  z-index: 0;
  pointer-events: none;
}

.running-slider::after {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 120px;
  position: absolute;
  bottom: 0;
  background-color: var(--basic-white);
  border-radius: 35px 35px 0 0;
  z-index: 0;
  pointer-events: none;
}

.select-filter__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  background-color: var(--new-gold);
  border: 1px solid var(--basic-gold);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  width: 100%;
  min-height: 44px;
  font-weight: 500;
  -webkit-box-shadow: 0 2px 6px rgba(215, 166, 88, 0.12);
  box-shadow: 0 2px 6px rgba(215, 166, 88, 0.12);
}

.select-filter__btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(215, 166, 88, 0.25);
  box-shadow: 0 6px 16px rgba(215, 166, 88, 0.25);
  border-color: var(--extra-gold);
  background-color: var(--basic-gold);
}

.select-filter__btn:hover {
  border-color: var(--extra-blue);
}

.select-filter__btn span {
  font: 500 0.68rem/1.1 sans-serif;
  color: var(--basic-black);
}

.select-filter__btn.is-active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select-filter__btn svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.select-filter__flex[aria-expanded=true] {
  display: block;
}

.select-filter__flex {
  border-radius: 16px;
  border: 1px solid var(--extra-blue);
  height: auto;
  position: absolute;
  margin-top: 10px;
  display: none;
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
  width: calc(100% + 90px);
  z-index: 50;
  background-color: var(--basic-white);
  padding: 24px 24px 24px 0;
}

.select-filter__count {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--extra-blue);
  border-radius: 100px;
  display: block;
  width: 20px;
  height: 20px;
  color: var(--basic-white) !important;
}

.select-filter__scroll {
  max-height: 350px;
  overflow-y: auto;
  padding: 0 24px 0 24px;
}

.select-filter__dropdown-icon {
  display: block;
  border-radius: 100px;
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8px;
  flex: 0 0 8px;
}

.select-filter__dropdown-item {
  border-radius: 8px;
  padding: 6px 8px;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.select-filter__dropdown-item:hover {
  background-color: var(--basic-gold);
}

.select-filter__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.select-filter__dropdown-item,
.select-filter__dropdown-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.select-filter__dropdown-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--basic-black);
}

.select-filter__dropdown-input + .select-filter__dropdown-checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select-filter__dropdown-input + .select-filter__dropdown-checkbox::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--extra-blue);
  background-color: var(--basic-blue);
  border-radius: 1px;
  background: var(--basic-blue) center/50% no-repeat;
}

.select-filter__dropdown-input:checked + .select-filter__dropdown-checkbox::before {
  background-color: var(--extra-blue);
  background-image: url("../img/icon-checkbox.svg");
  background-size: contain;
}

.select-filter__dropdown-input + .select-filter__dropdown-radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select-filter__dropdown-input + .select-filter__dropdown-radio::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--extra-blue);
  background-color: var(--basic-blue);
  border-radius: 100px;
  background: var(--basic-blue) center/50% no-repeat;
}

.select-filter__dropdown-input:checked + .select-filter__dropdown-radio::before {
  border: 1px solid var(--extra-blue);
  background-color: var(--extra-blue);
}

.select-filter__dropdown-input:checked + .select-filter__dropdown-radio::after {
  content: "";
  background-image: url("../img/icon-radio.svg");
  background-size: contain;
  background-position: center;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.select-filter__dropdown:first-child {
  margin-bottom: 20px;
}

.select-filter__dropdown:last-child {
  margin-bottom: 0;
}

.select-filter__item {
  width: 100%;
}

.select-filter__block {
  margin-top: 20px;
  padding: 0 0 0 24px;
}

.select-filter__apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  padding: 16px 8px 16px 8px;
  border: 1px solid transparent;
  background-color: var(--extra-blue);
  width: 100%;
}

.select-filter__apply span {
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1.1;
  color: var(--basic-white);
}

.select-filter__apply:disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border-color: var(--basic-gray);
}

.select-filter__apply:disabled span {
  color: var(--basic-gray);
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: var(--extra-blue);
  border-radius: 16px;
  left: 2px;
  right: 2px;
  opacity: 1;
  -webkit-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 7px;
  background-color: var(--basic-blue);
  border-radius: 16px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 7px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-map {
  margin-top: 90px;
}

.site-map__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.site-map__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-map__item a span {
  font-weight: 400;
  font-size: 1.5rem;
}

.slider-banner {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  background-color: var(--extra-gold);
  border-radius: 16px;
  width: calc(100% - 30px);
  max-width: 590px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider-banner__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.slider-banner__left strong {
  font-weight: 500;
  font-family: var(--extra-font);
  font-size: 0.9rem;
}

.slider-banner__left p {
  font-weight: 400;
  font-size: 0.78rem;
  text-wrap: auto;
}

.slider-banner__right {
  width: 100%;
  max-width: 170px;
  margin-left: auto;
}

.slider-banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.slider-banner__figure--qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 15px 15px 15px;
  background-color: var(--basic-white);
  border-radius: 16px;
}

.slider-banner__figure--qr img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 110px;
  max-width: 110px;
}

.slider-banner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px 35px;
}

.slider-banner__item {
  position: relative;
  overflow: hidden;
}

.slider-banner__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-banner__figcaption {
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--basic-black);
  text-align: center;
  font-family: var(--basic-font);
  padding-top: 20px;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
  /*
   --swiper-preloader-color: var(--swiper-theme-color);
   --swiper-wrapper-transition-timing-function: initial;
   */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Slide styles end */

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

.h1 {
  margin: 0 0 0 0;
  font-size: 7rem;
  font-weight: 700;
}

.h2 {
  margin: 0 0 0 0;
  font-size: 1.82rem;
  font-weight: 500;
  font-family: var(--extra-font);
}

.h3 {
  margin: 0 0 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--extra-font);
}

.h4 {
  margin: 0 0 0 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--extra-font);
}

/* No styles code below. Only in modules */

/* Не пишите CSS код ниже. Только в подключаемых файлах */

@media (min-width: 768px) {
  .banner-employees__group.swiper-wrapper {
    position: unset;
    width: inherit;
    height: inherit;
    z-index: unset;
    display: inherit;
    -webkit-transition-property: unset;
    transition-property: unset;
    -webkit-transition-timing-function: unset;
    transition-timing-function: unset;
    -webkit-box-sizing: unset;
    box-sizing: unset;
  }

  .banner-employees__group-item.swiper-slide {
    -ms-flex-negative: unset;
    flex-shrink: unset;
    width: inherit;
    height: inherit;
    position: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
  }

  .banner-employees__carousel.swiper {
    margin-left: unset;
    margin-right: unset;
    position: unset;
    overflow: unset;
    list-style: unset;
    padding: unset;
    z-index: unset;
    display: inherit;
  }

  .footer__content-center-box {
    min-width: 280px;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .js-accordion__figure {
    display: none;
  }

  .questions-answers__content-left-item.swiper-slide {
    -ms-flex-negative: unset;
    flex-shrink: unset;
    width: unset;
    height: unset;
    position: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
    display: block;
  }

  .questions-answers__content-left-list {
    position: unset;
    width: unset;
    height: unset;
    z-index: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: unset;
    transition-property: unset;
    -webkit-transition-timing-function: unset;
    transition-timing-function: unset;
    -webkit-box-sizing: unset;
    box-sizing: unset;
  }

  .questions-answers__content-left-box {
    margin-left: unset;
    margin-right: unset;
    position: unset;
    overflow: unset;
    list-style: unset;
    padding: unset;
    z-index: unset;
    display: inherit;
  }

  .slider-banner__left {
    max-width: 280px;
  }
}

@media (min-width: 1366px) {
  .block-arguments__title.h2 {
    margin-left: auto;
  }

  .card-features__right-flex {
    margin-top: 40px;
  }

  .card-features__right-hold strong br {
    display: none;
  }

  .general-banner__content-right-slide.swiper-slide:nth-child(3) .general-banner__content-right-figure img {
    -o-object-fit: unset;
    object-fit: unset;
  }

  .geography-presence__result {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .geography-presence__article.swiper-slide {
    -ms-flex-negative: unset;
    flex-shrink: unset;
    width: unset;
    height: unset;
    position: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    pointer-events: none;
    -webkit-transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .geography-presence__article.swiper-slide.is-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }

  .geography-presence__carousel-wrapper.swiper-wrapper {
    position: unset;
    width: unset;
    height: unset;
    z-index: unset;
    display: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
    -webkit-transition-timing-function: unset;
    transition-timing-function: unset;
    -webkit-box-sizing: unset;
    box-sizing: unset;
  }

  .geography-presence__carousel.swiper {
    margin-left: unset;
    margin-right: unset;
    position: unset;
    list-style: unset;
    padding: unset;
    z-index: unset;
    max-width: 405px;
    overflow: auto;
    max-height: 600px;
  }

  .geography-presence__carousel.swiper::-webkit-scrollbar {
    width: 7px;
    border-radius: 16px;
  }

  .geography-presence__carousel.swiper::-webkit-scrollbar-track {
    background: var(--basic-blue);
    border-radius: 28px;
  }

  .geography-presence__carousel.swiper::-webkit-scrollbar-thumb {
    width: 3px;
    background: var(--extra-blue);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }

@-moz-document url-prefix()  {
    .geography-presence__carousel.swiper {
      scrollbar-width: thin;
      scrollbar-color: var(--extra-blue) var(--basic-white);
    }
}

  .geography-presence__block {
    display: none;
  }

  .header__content-nav {
    margin-left: 30px;
  }

  .header__aside {
    display: none;
  }

  .mutual-settlements__carousel.swiper {
    margin-left: unset;
    margin-right: unset;
    position: unset;
    list-style: unset;
    padding: unset;
    z-index: unset;
    overflow: unset;
  }

  .mutual-settlements__flex.swiper-wrapper {
    position: unset;
    width: unset;
    height: unset;
    z-index: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
    -webkit-transition-timing-function: unset;
    transition-timing-function: unset;
    -webkit-box-sizing: unset;
    box-sizing: unset;
  }

  .mutual-settlements__item.swiper-slide {
    -ms-flex-negative: unset;
    flex-shrink: unset;
    width: unset;
    height: unset;
    position: unset;
    -webkit-transition-property: unset;
    transition-property: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 29.7%;
    flex: 1 1 29.7%;
  }

  .new-features__right-slide.swiper-slide:not(:first-child) .new-features__right-figure img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    aspect-ratio: 350/245;
  }

  .new-features__information {
    display: block;
    max-height: unset;
    height: auto;
  }

  .questions-answers__content-left-btn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1365px) {
  .container {
    padding: 0 var(--container-padding-mobile);
  }

  .container-right {
    padding-left: var(--container-padding-mobile);
  }

  .banner-company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner-company__left-bottom {
    max-width: 100%;
  }

  .banner-employees__left {
    width: 100%;
  }

  .banner-employees__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }

  .banner-employees__block {
    margin-top: 40px;
  }

  .banner-partners__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .become-partner__article {
    min-height: unset;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .become-partner__box {
    padding: 24px 24px 24px 24px;
  }

  .become-partner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .become-partner__background::before {
    background-size: auto;
  }

  .become-partner__background img {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .become-partner__figure img {
    aspect-ratio: 360/245;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .become-partner__figure {
    margin-top: 0;
    width: 100%;
  }

  .block-arguments__tabs {
    display: none;
  }

  .card-features__right-list {
    grid-template-columns: auto 1fr 1fr;
    gap: 12px;
  }

  .card-features__right-flex {
    gap: 22px;
  }

  .card-features__right-desc-list li {
    line-height: 1.4;
  }

  .card-features__right-hold strong br {
    display: none;
  }

  .card-features__right-hold {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .employee-article__accordion {
    max-width: 100%;
  }

  .employee-article__right {
    margin-left: unset;
    max-width: 100%;
  }

  .form-block__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form-block__content-left-banner {
    padding: 24px 24px 24px 24px;
  }

  .form-block__content-right {
    max-width: 100%;
  }

  .general-banner__content-left {
    max-width: 100%;
  }

  .general-banner__content-figure {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .geography-presence__row {
    display: none;
  }

  .geography-presence__result {
    width: 100%;
  }

  .geography-presence__article.swiper-slide {
    border: unset;
  }

  .geography-presence__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .geography-presence__carousel.swiper,
  .geography-presence__pagination.swiper-pagination {
    display: none !important;
  }

  .geography-presence__right {
    width: 100%;
  }

  .geography-presence__div {
    width: 100%;
  }

  .geography-presence__map {
    margin-left: unset;
    height: 520px;
  }

  .sk-map-frame {
    margin-left: 0;
    min-height: 520px;
  }

  .sk-map-frame .geography-presence__map {
    min-height: 520px;
  }

  .geography-presence__content.is-fullscreen {
    padding: 8px 10px 10px;
  }

  .geography-presence__content.is-fullscreen .geography-presence__carousel.swiper {
    max-width: 230px !important;
  }

  .geography-presence__content.is-fullscreen .sk-map-frame {
    margin-left: 10px;
  }

  .sk-search-hub {
    padding: 12px 13px 11px;
    border-radius: 16px;
  }

  .sk-search-hub .sk-clear-chip {
    position: static;
    margin-top: 6px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .sk-search-hub .geography-presence__result {
    position: static;
    margin-top: 8px;
    text-align: left;
  }

  .sk-search-hub .geography-presence__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 8px;
  }

  .sk-search-hub .geography-presence__row .geography-presence__select {
    display: none;
  }

  .sk-search-hub .geography-presence__ca {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .header__content-left {
    max-width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
    padding: 11px 15px 11px 15px;
  }

  .header__content-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
    width: auto;
    margin-left: unset;
  }

  .header__content-nav:not(._dynamic_adapt_) {
    display: none !important;
  }

  .header__content-nav._dynamic_adapt_ {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 485px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    gap: 40px;
  }

  .header__content {
    gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__content-right-item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__aside {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: var(--vh);
    background-color: var(--basic-white);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    /* Round 60.2 (2026-05-23) — `opacity` removed from the transition
       list. The slideIn / slideOut keyframes already animate opacity
       (0↔1) alongside the transform; keeping a parallel 0.3s opacity
       transition let iOS Safari momentarily paint the menu at "full
       opacity, translateX(100%)" before the animation took over,
       producing a 1–2-frame flicker the user reported as the menu
       "blinking when it opens". Visibility transition stays because
       it's the discrete property that holds the element renderable
       long enough for the animation to play out. */
    -webkit-transition: visibility 0.3s ease;
    transition: visibility 0.3s ease;
    /* Force a GPU layer so iOS Safari doesn't repaint the entire
       composited area when the animation runs over a complex page. */
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .header__aside.is-open {
    -webkit-animation: slideIn 0.5s forwards;
    animation: slideIn 0.5s forwards;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__aside.is-closing {
    -webkit-animation: slideOut 0.4s forwards;
    animation: slideOut 0.4s forwards;
    pointer-events: none;
  }

  .header__aside-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overflow-x: clip;
    padding: 92px 20px 24px 20px;
  }

  .header__aside-inner::-webkit-scrollbar {
    width: 4px;
    border-radius: 8px;
  }

  .header__aside-inner::-webkit-scrollbar-track {
    background: var(--basic-blue);
    border-radius: 8px;
  }

  .header__aside-inner::-webkit-scrollbar-thumb {
    background: var(--extra-blue);
    border-radius: 8px;
  }

  .header__content-open {
    background-color: var(--basic-white);
    -webkit-box-shadow: 0 4px 14px rgba(29, 29, 29, 0.06);
    box-shadow: 0 4px 14px rgba(29, 29, 29, 0.06);
  }

  .footer__content-center-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .key-trends__content-article:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 41%;
    flex: 0 1 41%;
  }

  .key-trends__content-article:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
  }

  .key-trends__content-article:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 41%;
    flex: 0 1 41%;
  }

  .key-trends__content-article:nth-child(4) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
  }

  .key-trends__content-article:nth-child(5) {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .key-trends__content-article:nth-child(6) {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 41%;
    flex: 0 1 41%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .key-trends__content-article:nth-child(7) {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
  }

  .key-trends__figure img {
    aspect-ratio: 420/320;
  }

  .mutual-settlements__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }

  .mutual-settlements__carousel.swiper {
    overflow: visible;
    width: 100%;
  }

  .mutual-settlements__flex.swiper-wrapper {
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    gap: unset;
    margin-top: auto;
  }

  .mutual-settlements__block {
    min-height: 185px;
  }

  .mutual-settlements__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
  }

  .mutual-settlements__item.swiper-slide {
    min-height: unset;
  }

  .nav-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .nav-menu__list-items-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    width: 100%;
    gap: 10px;
    padding: 0;
  }

  .nav-menu__list-items-left .nav-menu__list-item {
    width: 100%;
    margin: 0;
  }

  .nav-menu__list-items-left .nav-menu__list-item-link {
    background-color: var(--basic-blue);
    border-radius: 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    -webkit-box-shadow: 0 2px 6px rgba(29, 29, 29, 0.08);
    box-shadow: 0 2px 6px rgba(29, 29, 29, 0.08);
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  }

  .nav-menu__list-items-left .nav-menu__list-item-link:hover {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 5px 14px rgba(29, 29, 29, 0.14);
    box-shadow: 0 5px 14px rgba(29, 29, 29, 0.14);
  }

  .nav-menu__list-items-left .nav-menu__list-item-link span {
    font-size: 0.85rem;
    font-weight: 600;
  }

  .nav-menu__list-items-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
    width: 100%;
    gap: 8px;
    padding: 0;
    min-height: 0;
  }

  .nav-menu__list-items-right .nav-menu__list-item {
    width: 100%;
    margin: 0;
  }

  .nav-menu__list-items-right .nav-menu__list-item-link {
    background-color: var(--basic-gold);
    border-radius: 100px;
    padding: 12px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-shadow: 0 2px 6px rgba(29, 29, 29, 0.06);
    box-shadow: 0 2px 6px rgba(29, 29, 29, 0.06);
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  }

  .nav-menu__list-items-right .nav-menu__list-item-link:hover {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 5px 12px rgba(29, 29, 29, 0.12);
    box-shadow: 0 5px 12px rgba(29, 29, 29, 0.12);
  }

  .nav-menu__list-items-right .nav-menu__list-item-link span {
    font-size: 0.78rem;
    font-weight: 600;
  }

  .new-features__box {
    margin-left: unset;
  }

  .new-features__content-center {
    gap: 20px;
  }

  .new-features__column {
    width: 100%;
    padding-right: var(--container-padding-tablet);
  }

  .new-features__tabs {
    display: none;
  }

  .new-features__bottom-carousel-figure img {
    aspect-ratio: 350/420;
  }

  .new-features__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .not-found__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-employees .h2 {
    text-align: left;
  }

  .partner-block__right-carousel-slide.is-active .partner-block__right-carousel-text {
    display: block;
  }

  .partner-block__right-carousel-slide {
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .partner-block__left-carousel-mobile {
    display: none;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .partner-block__left-carousel-mobile img {
    aspect-ratio: 1/1 !important;
  }

  .partner-block__right-carousel-text {
    width: 100%;
  }

  .reviews-slider__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .reviews-slider__content-right.swiper {
    margin-top: 40px;
  }

  .reviews-slider__content-left {
    width: 100%;
  }

  .running-slider__top-slide,
  .running-slider__bottom-slide {
    min-width: 200px;
  }
}

@media (max-width: 1199px) {
  .blog-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 28px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-share-cta {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 28px;
  }

  .blog-share-buttons {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .blog-newsletter {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 28px;
  }

  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-cta {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .general-banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .sk-map-hint {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 14px;
    left: 14px;
    max-width: calc(100% - 76px);
    /* leaves room for the controls column */
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 211, 126, 0.7);
    border-radius: 12px;
    -webkit-box-shadow: 0 6px 16px rgba(29, 29, 29, 0.16);
    box-shadow: 0 6px 16px rgba(29, 29, 29, 0.16);
    font: 500 12px/1.35 var(--basic-font, sans-serif);
    color: var(--basic-black, #1D1D1D);
    z-index: 60;
    pointer-events: none;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-animation: skMapHintIn 0.4s ease-out;
    animation: skMapHintIn 0.4s ease-out;
  }

  .sk-map-hint-icon {
    font-size: 18px;
    line-height: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  /* Auto-dismiss: JS removes data-sk-map-hint on first interaction or
   * after 15s safety timeout → CSS hides it via this state. */

  .sk-map-hint:not([data-sk-map-hint]) {
    opacity: 0;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  /* Hide while map is fullscreen — user has opted into the full map UI. */

  .geography-presence__map:-webkit-full-screen ~ .sk-map-hint {
    display: none;
  }

  .geography-presence__map:-ms-fullscreen ~ .sk-map-hint {
    display: none;
  }

  .sk-map-frame--fullscreen .sk-map-hint,
  .geography-presence__map:fullscreen ~ .sk-map-hint {
    display: none;
  }

  .sk-filter-chip {
    padding: 6px 7px 6px 12px;
    font-size: 11px;
  }

  .sk-filter-chip-x {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .sk-prox-toast {
    top: 10px;
    right: 12px;
    left: 12px;
    max-width: none;
    font-size: 11px;
    padding: 8px 12px;
  }

  .sk-map-tip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 8px 0 16px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 246, 229, 0.95) 0%, rgba(255, 233, 196, 0.85) 100%);
    border: 1px solid rgba(255, 211, 126, 0.55);
    border-radius: 12px;
    -webkit-box-shadow: 0 2px 6px rgba(196, 158, 79, 0.1);
    box-shadow: 0 2px 6px rgba(196, 158, 79, 0.1);
    font: 400 12px/1.45 var(--basic-font, sans-serif);
    color: var(--basic-black, #1D1D1D);
  }

  .sk-map-tip strong {
    font-weight: 700;
  }

  .sk-map-tip-icon {
    font-size: 16px;
    line-height: 1.3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .sk-map-tip-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .section-140 {
    margin-bottom: 100px;
  }

  .cookies {
    max-width: calc(100% - 30px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .container-full {
    max-width: unset;
    padding: 0 var(--container-padding-mobile);
  }

  .container-left-50 {
    max-width: 100%;
  }

  .container-right-50 {
    max-width: 100%;
  }

  .container-half-left {
    padding: 0 var(--container-padding);
  }

  .container-half-right {
    padding: 0 var(--container-padding);
  }

  .banner-company__left {
    padding: 24px 14px 24px 14px;
  }

  .banner-company__right-figure img {
    aspect-ratio: 320/455;
  }

  .banner-company__left-top {
    padding-bottom: 30px;
  }

  .banner-company__left-bottom {
    padding-top: 30px;
    gap: 10px;
  }

  .banner-company__right-banner {
    max-width: 100%;
    padding: 24px 24px 24px 24px;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 30px);
  }

  .blog-hero-title {
    font-size: 1.5rem;
  }

  .blog-grid-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-post-hero-inner {
    padding: 0 20px;
  }

  .blog-post-title {
    font-size: 1.6rem;
    letter-spacing: -0.6px;
  }

  .blog-post-excerpt {
    font-size: 1rem;
  }

  .blog-post-figure img {
    border-radius: 14px;
  }

  .blog-post-prose {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .blog-post-prose h2 {
    font-size: 1.4rem;
  }

  .blog-post-prose blockquote {
    font-size: 1.05rem;
    padding: 22px 24px;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .banner-employees__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .banner-employees__group.swiper-wrapper {
    gap: unset;
  }

  .banner-employees__carousel.swiper {
    width: 100%;
  }

  .banner-employees__group-item.swiper-slide {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
    min-height: 150px;
  }

  .banner-employees__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner-employees__right-list--right .banner-employees__right-item--white {
    min-height: 160px;
    z-index: 1;
  }

  .banner-employees__right-list--right .banner-employees__right-item--white .banner-employees__right-figure {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .banner-employees__right-list--right .banner-employees__right-item--white .banner-employees__right-figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }

  .banner-employees__box .h2 {
    text-wrap: auto;
  }

  .banner-employees__content {
    padding-top: 40px;
  }

  .banner-employees__right-item--white {
    padding: 14px 0 0 14px;
    gap: 15px;
  }

  .banner-employees__right-item--black {
    display: none;
  }

  .banner-employees::before {
    max-height: 13px;
    min-height: 13px;
  }

  .banner-employees::after {
    max-height: 100px;
  }

  .banner-partners__left {
    padding: 24px 14px 24px 14px;
  }

  .banner-partners__right-figure img {
    aspect-ratio: 320/455;
  }

  .banner-partners__left-top {
    padding-bottom: 30px;
    gap: 15px;
  }

  .banner-partners__left-figure {
    width: 75%;
  }

  .banner-partners__left-bottom {
    max-width: 100%;
    gap: 10px;
  }

  .become-partner__article {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .block-arguments__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-arguments__figure img {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
  }

  .block-arguments__article {
    width: 100%;
  }

  .block-arguments__article.is-active .block-arguments__block {
    min-height: 330px;
  }

  .block-arguments__article:not(.is-active) .block-arguments__block {
    min-height: unset;
  }

  .block-arguments__left {
    gap: 20px;
    max-width: 100%;
  }

  .block-arguments__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .block-arguments__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    min-height: unset;
  }

  .block-compensation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .block-compensation__article {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 15px 15px 15px 15px;
  }

  .block-compensation__article--pwc {
    padding: 0 0 0 0;
  }

  .block-compensation__article--pwc .block-compensation__block {
    padding: 15px 15px 15px 15px;
  }

  .block-compensation__article--pwc .block-compensation__social {
    position: absolute;
    top: 0;
  }

  .block-compensation__article--pwc .block-compensation__block {
    padding-right: 0;
    padding-top: 160px;
  }

  .block-compensation__logo {
    position: static;
    width: 100%;
    height: 100%;
    min-height: 205px;
  }

  .block-compensation {
    margin-bottom: 0;
  }

  .card-features__content {
    max-width: 100%;
  }

  .card-features__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .card-features__right-desc {
    width: 100%;
  }

  .card-features__right-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
  }

  .card-features__right-desc-list li {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    text-wrap: auto;
  }

  .card-features__right-hold {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    padding: 15px 15px 15px 15px;
    gap: 12px;
  }

  .card-features__right-figure {
    height: 105px;
  }

  .card-features__right-figure img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right;
    object-position: right;
  }

  .employee-article__carousel.swiper {
    display: none;
  }

  .employee-article__accordion {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .employee-article__figure img {
    min-height: 455px;
  }

  .employee-article__right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .form-block__content-left-figure img {
    aspect-ratio: 320/500;
  }

  .form-block__content-left-banner {
    gap: 20px;
    width: calc(100% - 30px);
    left: 14px;
    bottom: 14px;
  }

  .form-block__content-left-box {
    gap: 15px;
  }

  .form-block__content-left-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .form-block__content-right {
    padding: 24px 14px 24px 14px;
  }

  .form-block__content-right-li {
    min-height: 45px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .form-block__content-right-btn {
    padding: 10px 5px 10px 5px;
  }

  .form-block__content-right-btn-send {
    width: 100%;
  }

  .form-block__content-right-btn-send span {
    min-width: unset;
    width: 100%;
  }

  .form-block__content-right-label {
    top: auto;
  }

  .form-block__content-right-block {
    width: 100%;
  }

  .form-block__content-right-policy {
    font-size: 12px;
  }

  .form-success-notification {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .general-banner__content-left {
    padding: 25px 15px 24px 15px;
  }

  .general-banner__content-link {
    min-width: 205px;
  }

  .general-banner__content-link span {
    min-width: 172px;
  }

  .general-banner__content-row p {
    max-width: 100%;
    text-wrap: auto;
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .general-banner__content-row {
    gap: 20px;
  }

  .general-banner__content-right-figure img {
    min-height: 500px;
  }

  .general-banner__content-right-figure video {
    min-height: 500px;
  }

  .general-banner__content-right-group {
    top: 42%;
  }

  .general-banner__content-list .general-banner__content-item {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 0.24fr 0.8fr;
    gap: 40px;
  }

  .general-banner__content-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .general-employees__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .general-employees__left-content p {
    line-height: 1.9;
  }

  .general-employees__right-figure {
    position: static;
  }

  .general-employees__right-figure img {
    width: auto;
    height: auto;
    aspect-ratio: 330/230;
  }

  .general-employees__left {
    padding: 24px 24px 0 24px;
  }

  .geography-presence__article.swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .geography-presence__article-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 12px;
  }

  .geography-presence__figure {
    width: 45%;
  }

  .geography-presence__figure--empty {
    width: 45%;
  }

  .geography-presence__map {
    margin-left: unset;
    height: 480px;
  }

  .geography-presence {
    margin-bottom: 40px;
  }

  .sk-map-frame {
    min-height: 480px;
  }

  .sk-map-frame .geography-presence__map {
    min-height: 480px;
  }

  .geography-presence__content.is-fullscreen {
    /* On phones the list+map stack; give the map a tall share. */
  }

  .geography-presence__content.is-fullscreen .geography-presence__carousel.swiper {
    max-width: none !important;
    height: auto;
    max-height: 32vh !important;
  }

  .geography-presence__content.is-fullscreen .sk-map-frame {
    margin-left: 0;
  }

  .sk-prox-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sk-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .sk-lightbox__nav--prev {
    left: 8px;
  }

  .sk-lightbox__nav--next {
    right: 8px;
  }

  .header__content-nav._dynamic_adapt_ {
    max-width: 100% !important;
  }

  .header__content-enter span {
    display: none;
  }

  .header__content-enter {
    width: 40px;
    min-width: unset;
    padding: 0 0 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__aside-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 0 30px 0;
  }

  .header__aside-info-text {
    width: 100%;
  }

  .header {
    padding-top: 15px;
  }

  .footer__content {
    padding-top: 200px;
    padding-bottom: 35px;
  }

  .footer__content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }

  .footer__content-top .footer__content-top-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 210px;
  }

  .footer__content-top .footer__content-top-item > a img {
    width: 100%;
  }

  .footer__content-top .footer__content-top-item > a span {
    min-width: 172px;
  }

  .footer__content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 40px;
    gap: 20px;
  }

  .footer__content-bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 20px;
  }

  .footer__content-bottom-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer__content-bottom-item:last-child {
    grid-column: 3/1;
  }

  .footer__content-bottom-item:nth-child(3) {
    grid-column: 3/1;
  }

  .footer__content-center-contacts {
    gap: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
  }

  .footer__content-center-menu {
    width: 100%;
  }

  .footer__content-center-menu-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 150px;
  }

  .footer::before {
    max-height: 100px;
    min-height: 100px;
  }

  .footer__content-center-banner.slider-banner {
    margin-top: 20px;
    max-width: 100%;
  }

  .footer__content-center-box {
    margin-top: 40px;
  }

  .icon__enter {
    width: 12px;
    height: 12px;
  }

  .js-accordion__item {
    margin-bottom: 10px;
    display: block;
  }

  .key-trends__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .key-trends__content-article--large {
    min-height: unset !important;
  }

  .key-trends__content-article--large .key-trends__content-block {
    min-height: 300px;
  }

  .key-trends__content-article {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 14px 14px 14px 14px;
  }

  .key-trends__content-group-figure {
    width: 40%;
  }

  .key-trends__content-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .key-trends__figure img {
    aspect-ratio: 320/240;
  }

  .modal__content {
    padding: 24px 24px 24px 24px;
  }

  .modal-inner__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }

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

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

  .modal-callback__wrapper-left {
    display: none;
  }

  .modal-callback__wrapper-right {
    padding: 0 0 0 0;
  }

  .modal-callback__item {
    min-height: 45px;
  }

  .modal-callback__label {
    left: 15px;
    top: 15px;
  }

  .mutual-settlements__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .mutual-settlements__figure img {
    aspect-ratio: 320/240;
  }

  .mutual-settlements__box {
    max-width: 100%;
  }

  .mutual-settlements__carousel.swiper {
    margin-top: 40px;
  }

  .mutual-settlements__left {
    max-width: unset;
  }

  .mutual-settlements__right {
    height: auto;
  }

  .new-features {
    padding-bottom: 40px;
  }

  .new-features__list::before {
    max-height: 32px;
  }

  .new-features__left-tooltip {
    display: none;
  }

  .new-features__btn span {
    font-size: 0.6rem;
  }

  .new-features__btn {
    padding: 10px 5px 10px 5px;
    font-size: 0.6rem;
  }

  .new-features__left-text p {
    font-size: 0.87rem;
    text-wrap: auto;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .new-features__left-box {
    max-width: 100%;
  }

  .new-features__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .new-features__content {
    margin-top: 30px;
  }

  .new-features__left-flex {
    width: 100%;
  }

  .new-features__right.swiper {
    margin-top: 30px;
  }

  .new-features__left-link span {
    min-width: 172px;
  }

  .new-features__right-slide.swiper-slide:not(:first-child) .new-features__right-figure {
    aspect-ratio: 320/180;
  }

  .new-features__right-slide.swiper-slide:not(:first-child) {
    gap: 15px;
  }

  .new-features__content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .new-features__bottom {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    max-width: 100%;
    padding-right: 20px;
  }

  .new-features__column {
    margin-top: 20px;
    padding-right: var(--container-padding-mobile);
  }

  .new-features__bottom-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .new-features__bottom-swiper.swiper {
    margin-top: 20px;
  }

  .new-features__information-link {
    min-width: 172px;
  }

  .new-features__information-link span {
    min-width: inherit;
  }

  .new-features__bottom-slide.swiper-slide {
    min-height: 175px;
    padding: 14px 14px 14px 14px;
  }

  .new-features__group {
    margin-right: unset;
  }

  .new-features__bottom-carousel-figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 320/240;
  }

  .not-found__left {
    padding: 14px 14px 14px 14px;
  }

  .our-partners::before {
    min-height: 100px;
    max-height: 100px;
  }

  .our-partners__marquee-figure img {
    aspect-ratio: 4/1;
  }

  .our-partners__content {
    padding-top: 100px;
  }

  .our-partners__box p {
    text-align: center;
    text-wrap: auto;
  }

  .our-partners__marquee-slide {
    min-height: 140px;
    max-width: 265px;
  }

  .our-partners__marquee {
    padding-bottom: 100px;
  }

  .our-partners::after {
    min-height: 100px;
    max-height: 100px;
  }

  .page-company .new-features__new {
    padding-right: 0;
  }

  .page-company .new-features__title {
    margin-left: unset;
    margin-right: unset;
  }

  .partner-block__left-top {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .partner-block__right-carousel-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .partner-block__left-carousel.swiper {
    display: none;
  }

  .partner-block__left {
    max-width: 100%;
  }

  .partner-block__right-carousel-slide.is-active .partner-block__left-carousel-mobile {
    display: block;
  }

  .partner-block__right-carousel-slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .partner-block__right-carousel-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .questions-answers-grid .js-accordion-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: unset;
  }

  .questions-answers {
    margin-top: 100px;
  }

  .questions-answers__content-left-btn {
    padding: 20px 24px 20px 24px;
  }

  .questions-answers__content-left-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .questions-answers__content-left-bottom {
    margin-top: 30px;
  }

  .questions-answers__content-left-box {
    overflow: visible;
  }

  .questions-answers__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .questions-answers__content-left {
    max-width: 100%;
    overflow: hidden;
  }

  .reviews-slider__content-tooltip {
    min-width: 134px;
  }

  .reviews-slider__content-group {
    display: none;
  }

  .reviews-slider__content-right-figure {
    width: 100%;
  }

  .reviews-slider__content-right-figure img {
    aspect-ratio: 278/283;
  }

  .reviews-slider__content-right-figure:after {
    width: 42px;
    height: 42px;
  }

  .reviews-slider__content-right-slide.swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .running-slider__content-title {
    text-align: left;
  }

  .running-slider .container {
    padding-top: 100px;
  }

  .running-slider__content {
    padding-bottom: 100px;
  }

  .running-slider__top-figure img,
  .running-slider__bottom-figure img {
    width: 80px;
    height: 80px;
  }

  .running-slider__top-figure,
  .running-slider__bottom-figure {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .running-slider::before {
    max-height: 100px;
  }

  .running-slider::after {
    max-height: 100px;
  }

  .running-slider {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .slider-banner__left {
    gap: 20px;
  }

  .slider-banner__right {
    display: none;
  }

  .slider-banner__box {
    padding: 24px 24px 24px 24px;
  }

  .slider-banner {
    bottom: 35px;
  }

  .h2 {
    line-height: 1.2;
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  body::-webkit-scrollbar {
    width: 5px;
  }

  .section {
    margin-bottom: 45px;
  }

  .container-left {
    padding-right: var(--container-padding);
  }

  .container-half-left {
    padding-left: var(--container-padding);
  }

  .container-half-right {
    padding-right: var(--container-padding);
  }

  .banner-employees__box .h2 {
    padding-bottom: 30px;
  }

  .banner-employees .container {
    padding-left: 85px;
    padding-right: 85px;
  }

  .become-partner__article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .become-partner__background img {
    padding-top: 50px;
  }

  .block-compensation__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .card-features__content {
    max-width: 100%;
    min-height: 415px;
  }

  .card-features__flex {
    gap: 42px;
  }

  .card-features__right-title.h2 {
    font-size: 1.62rem;
  }

  .card-features__right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .card-features__bottom {
    margin-top: 50px;
  }

  .card-features {
    margin-top: 140px;
  }

  .employee-article__right {
    max-width: 100%;
  }

  .general-banner__content-right-group {
    padding-left: 70px;
    padding-right: 70px;
  }

  .general-employees__left {
    padding: 40px 40px 40px 40px;
  }

  .geography-presence__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .geography-presence__article-box {
    width: 23.5%;
  }

  .footer__content {
    padding-bottom: 30px;
  }

  .footer__content-center {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__content-center-contacts-box p {
    font-size: 0.61rem;
  }

  .footer__content-center-menu {
    margin-left: auto;
    width: 100%;
  }

  .footer__content-center-banner.slider-banner {
    margin: 20px 0 0 0;
  }

  .footer__content-center-box {
    max-width: 280px;
    margin-top: 0;
  }

  .key-trends__content-article:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .key-trends__content-article:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .key-trends__content-article:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .key-trends__content-article:nth-child(4) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .key-trends__content-article:nth-child(5) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .key-trends__content-article:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .key-trends__content-article:nth-child(7) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .modal-inner__box {
    gap: 40px;
  }

  .new-features__list {
    min-width: 400px;
  }

  .new-features__bottom-flex {
    gap: 20px;
  }

  .new-features__bottom-swiper.swiper {
    margin-top: 30px;
  }

  .new-features__information-box {
    gap: 30px;
  }

  .new-features__information {
    max-width: 100%;
  }

  .new-features__information-group {
    margin-top: auto;
  }

  .new-features__content-inner {
    gap: 50px;
  }

  .our-partners__content {
    padding-top: 140px;
  }

  .partner-block__left-top {
    max-width: 350px;
  }

  .partner-block__right-carousel-slide.is-active .partner-block__right-carousel-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .partner-block__right-carousel-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .partner-block__right-carousel-text {
    opacity: 1;
    display: none;
    -webkit-animation: fadeIn 0.5s ease;
    animation: fadeIn 0.5s ease;
    width: 100%;
  }

  .questions-answers__content-left {
    max-width: 235px;
  }

  .reviews-slider__content-box {
    width: 66%;
  }

  .reviews-slider__content-group {
    margin-left: auto;
  }

  .reviews-slider__content-right-figure {
    width: 39.5%;
  }

  .reviews-slider__content-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .reviews-slider__content-right-slide.swiper-slide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .reviews-slider__content-right-text {
    max-width: 360px;
  }

  .running-slider__content-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }

  .select-filter__btn {
    padding: 10px 16px 10px 16px;
  }

  .h1 {
    font-size: 5.4rem;
  }
}

@media (max-height: 350px) {
  .header__aside-inner {
    padding-top: calc(var(--vh) / 2);
  }
}

@media (any-hover: hover) {
  .new-features__right-slide.swiper-slide:hover:not(:first-child) .new-features__right-figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 16px;
  }
}