/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

:root {
  --c-black: #000000;
  --c-text-black: #202020;
  --c-grey-dark-1: #666665;
  --c-grey-light-2: #AEAEAD;
  --c-grey-light-3: #F3F3F3;
  --c-grey-light-4: #F1F1F1;
  --c-grey-line: #CED3D6;
  --c-white: #FFFFFF;
  --c-blue-dark-bg: #184579;
  --c-blue-dark-bg-2: #1D5290;
  --c-blue-light-1: #0087BF;
  --c-blue-light-2: #6EBEDF;
  --c-blue-action: #1D63B4;
  --c-blue-muted: #89A2BF;
  --c-near-black: #1A1919;
  --c-red: #E8112F;
  --c-grey-light-5: #FBFAFB;
  --c-grey-light-6: #F6F6F6;
  --c-cyan: #0DAAEB;
  --text-base: var(--c-text-black);
  --text-strong: var(--c-black);
  --text-muted: var(--c-grey-dark-1);
  --text-faint: var(--c-grey-light-2);
  --text-on-brand: var(--c-white);
  --text-on-brand-muted: var(--c-blue-muted);
  --text-ghost: var(--c-grey-light-4);
  --text-heading: var(--c-near-black);
  --bg-page: var(--c-white);
  --bg-brand: var(--c-blue-dark-bg);
  --bg-surface: var(--c-white);
  --bg-surface-hover: var(--c-grey-light-3);
  --bg-panel: var(--c-grey-light-4);
  --bg-callout: var(--c-grey-light-5);
  --bg-table-stripe: var(--c-grey-light-6);
  --border: var(--c-grey-light-2);
  --border-card: var(--c-grey-line);
  --border-on-brand: rgba(255, 255, 255, 0.3);
  --border-on-brand-subtle: rgba(255, 255, 255, 0.2);
  --timeline-dot: var(--c-blue-action);
  --timeline-line: var(--c-grey-line);
  --brand: var(--c-blue-dark-bg);
  --brand-accent: var(--c-blue-light-1);
  --brand-tint: var(--c-blue-light-2);
  --accent: var(--c-blue-action);
  --bg-stat-highlight: var(--c-cyan);
  --hero-overlay: linear-gradient(90deg, rgba(29, 82, 144, 0.92) 40%, rgba(24, 69, 121, 0.18) 100%);
  --hero-overlay-side: linear-gradient(270deg, rgba(24, 69, 121, 0.2) 0%, rgba(29, 82, 144, 1) 48.483%);
  --stats-overlay: linear-gradient(270deg, rgba(24, 69, 121, 0.45) 0%, rgba(29, 82, 144, 0.45) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.46) 100%);
  --stats-overlay-side: linear-gradient(90deg, #184579 0%, #184579 32.4%, rgba(24, 69, 121, 0) 73.4%);
  --stats-overlay-side-r: linear-gradient(270deg, #184579 0%, #184579 32.4%, rgba(24, 69, 121, 0) 73.4%);
  --slide-overlay: rgba(0, 0, 0, 0.2);
  --danger: var(--c-red);
  --cta: var(--c-red);
  --btn-primary-bg: var(--c-blue-action);
  --btn-primary-bg-hover: var(--c-blue-dark-bg-2);
  --btn-primary-text: var(--c-white);
  --btn-ghost-bg: var(--c-white);
  --btn-ghost-text: var(--c-near-black);
  --font-sans: "Gilroy", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container-narrow: 1760px;
  --container-wide: 1880px;
  --gutter: 1.25rem;
}

@font-face {
  font-family: "Gilroy";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Thin.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Thin.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-ThinItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-UltraLight.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-UltraLight.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-UltraLightItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-UltraLightItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Light.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-LightItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Regular.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-RegularItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Medium.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-MediumItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Semibold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-SemiboldItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-SemiboldItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Bold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-BoldItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Extrabold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Extrabold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-ExtraboldItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-ExtraboldItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Black.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-BlackItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-BlackItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy Heavy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Heavy.woff") format("woff");
}
@font-face {
  font-family: "Gilroy Heavy";
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy/Gilroy-HeavyItalic.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-HeavyItalic.woff") format("woff");
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.icon--lg {
  font-size: 1.5rem;
}

.icon--xl {
  font-size: 2rem;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

#site-content {
  flex: 1 0 auto;
}

#site-header,
#site-footer {
  flex-shrink: 0;
}

.container {
  --_max: var(--container-narrow);
  width: min(100% - 2 * var(--gutter), var(--_max));
  margin-inline: auto;
}

.container--wide {
  --_max: var(--container-wide);
  --gutter: clamp(8px, 1.0662557781px + 1.8489984592vw, 20px);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-heading);
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2 {
  font-size: clamp(32px, 15.8212634823px + 4.3143297381vw, 60px);
  line-height: 1.25;
}

h3 {
  font-size: clamp(30px, 20.7550077042px + 2.4653312789vw, 46px);
  line-height: 1.26;
}

h4 {
  font-size: clamp(28px, 22.2218798151px + 1.5408320493vw, 38px);
  line-height: 1.25;
}

h5 {
  font-size: clamp(26px, 23.688751926px + 0.6163328197vw, 30px);
  line-height: 1.26;
}

h6 {
  font-size: clamp(22px, 20.844375963px + 0.3081664099vw, 24px);
  line-height: 1.25;
}

p {
  margin: 0 0 clamp(17px, 16.4221879815px + 0.1540832049vw, 18px);
  font-size: clamp(16px, 14.844375963px + 0.3081664099vw, 18px);
  line-height: clamp(20px, 16.5331278891px + 0.9244992296vw, 26px);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus-visible {
  color: var(--brand);
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

.lead {
  color: var(--text-heading);
  font-size: clamp(18px, 15.688751926px + 0.6163328197vw, 22px);
  font-weight: 400;
  line-height: clamp(22px, 19.688751926px + 0.6163328197vw, 26px);
}

.list li {
  font-size: clamp(16px, 14.844375963px + 0.3081664099vw, 18px);
  line-height: clamp(20px, 16.5331278891px + 0.9244992296vw, 26px);
  color: var(--text-base);
}

.list--plain li strong {
  font-weight: 700;
}

blockquote,
.content-quote__text {
  color: var(--text-heading);
  font-size: clamp(16px, 12.5331278891px + 0.9244992296vw, 22px);
  line-height: clamp(20px, 16.5331278891px + 0.9244992296vw, 26px);
}

.content-callout__title {
  color: var(--text-heading);
  font-size: clamp(22px, 20.844375963px + 0.3081664099vw, 24px);
  font-weight: 800;
  line-height: clamp(27px, 25.2665639445px + 0.4622496148vw, 30px);
  text-transform: uppercase;
}

.content-gallery__caption {
  color: var(--text-base);
  font-size: 16px;
  line-height: 24px;
}

.content-table th,
.content-table td {
  font-size: clamp(16px, 14.844375963px + 0.3081664099vw, 18px);
  line-height: clamp(20px, 16.5331278891px + 0.9244992296vw, 26px);
}

.content-table th {
  color: var(--text-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.content-table td {
  color: var(--text-base);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  border: 0;
  border-radius: 34px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn__label {
  display: inline-block;
}
.btn__icon {
  font-size: 13px;
}
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--btn-primary-bg-hover);
  color: var(--btn-primary-text);
}
.btn--ghost {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 22px;
}

.breadcrumbs__item {
  color: var(--text-muted);
  text-decoration: none;
}

a.breadcrumbs__item:hover {
  color: var(--text-base);
}

.breadcrumbs__item--current {
  color: var(--text-heading);
}

.breadcrumbs__sep {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumbs__chevron {
  font-size: 9px;
  transform: rotate(-90deg);
}

.breadcrumbs--hero {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.breadcrumbs--hero::-webkit-scrollbar {
  display: none;
}
.breadcrumbs--hero .breadcrumbs__item,
.breadcrumbs--hero .breadcrumbs__sep {
  color: var(--text-on-brand);
  flex-shrink: 0;
}
.breadcrumbs--hero .breadcrumbs__item {
  opacity: 0.7;
  white-space: nowrap;
}
.breadcrumbs--hero a.breadcrumbs__item:hover,
.breadcrumbs--hero .breadcrumbs__item--current {
  opacity: 1;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.0662557781px + 1.8489984592vw, 20px);
}

.page-header__title {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  font-size: clamp(32px, 15.8212634823px + 4.3143297381vw, 60px);
  line-height: 1.25;
}

.page-header--hero .page-header__title {
  color: var(--text-on-brand);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 8px 0;
}
.header__card {
  position: relative;
  border-radius: 36px;
  color: var(--text-on-brand);
  overflow: hidden;
}
.header__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to left, var(--brand), var(--c-blue-dark-bg-2));
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.header__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 10px 24px;
}
.header__logo {
  flex-shrink: 0;
  display: inline-flex;
}
.header__logo img {
  display: block;
  width: 156px;
  height: auto;
}
.header__nav {
  display: none;
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 34px;
  color: var(--text-on-brand);
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}
.header__nav-link:hover, .header__nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.header__nav-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 21px;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__nav-arrow {
  flex-shrink: 0;
  width: 10px;
  height: 6px;
}
.header__tagline {
  display: none;
  margin: 0;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  color: var(--text-on-brand);
  white-space: nowrap;
}
.header__tagline-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 144%;
  display: none;
}
.header__tagline-year {
  flex-shrink: 0;
  width: 75px;
  height: 36px;
}
.header__burger {
  flex-shrink: 0;
  margin-left: auto;
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text-on-brand);
}
.header__burger-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: width 0.2s, transform 0.2s, opacity 0.2s;
}
.header__burger-line:nth-child(1) {
  width: 20px;
}
.header__burger-line:nth-child(2) {
  width: 15px;
}
.header__burger-line:nth-child(3) {
  width: 15px;
}

@media (min-width: 1024px) {
  .header {
    padding: 14px 14px 0;
  }
  .header__card {
    border-radius: 40px;
  }
  .header__bar {
    min-height: 64px;
    gap: 16px;
    padding: 8px 28px;
  }
  .header__logo img {
    width: 190px;
  }
  .header__nav {
    display: block;
    margin-inline: auto;
  }
  .header__tagline {
    display: flex;
  }
  .header__burger {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header__bar {
    min-height: 70px;
    padding: 9px 30px;
  }
  .header__logo img {
    width: 210px;
  }
  .header__tagline-text {
    display: block;
  }
}
@media (min-width: 1024px) {
  .header__card {
    overflow: visible;
  }
  .header__nav-item--has-dropdown {
    position: relative;
  }
  .header__nav-arrow {
    transition: transform 0.2s ease;
  }
  .header__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 10;
    min-width: 226px;
    padding: 10px;
    border-radius: 26px;
    background: var(--bg-surface);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .header__dropdown::before {
    content: "";
    position: absolute;
    inset: -10px 0 auto 0;
    height: 10px;
  }
  .header__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .header__submenu-link {
    display: block;
    padding: 10px 16px;
    border-radius: 26px;
    color: var(--text-base);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }
  .header__submenu-link:hover, .header__submenu-link:focus-visible {
    background: var(--bg-surface-hover);
  }
  .header__nav-item--has-dropdown:hover .header__dropdown, .header__nav-item--has-dropdown:focus-within .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__nav-item--has-dropdown:hover .header__nav-link, .header__nav-item--has-dropdown:focus-within .header__nav-link {
    background: var(--bg-surface);
    border-color: transparent;
    color: var(--text-base);
  }
  .header__nav-item--has-dropdown:hover .header__nav-arrow, .header__nav-item--has-dropdown:focus-within .header__nav-arrow {
    transform: rotateX(180deg);
  }
}
@media (min-width: 1440px) {
  .header {
    padding: 20px 20px 0;
  }
  .header__card {
    border-radius: 44px;
  }
  .header__bar {
    min-height: 78px;
    padding: 10px 32px;
  }
  .header__logo img {
    width: 230px;
  }
  .header__nav-link {
    padding: 12px 22px;
  }
  .header__nav-label {
    font-size: 15px;
  }
  .header__tagline {
    display: flex;
    margin-left: 0;
  }
  .header__tagline-text {
    font-size: 18px;
  }
  .header__tagline-year {
    width: 84px;
    height: 40px;
  }
}
.page-index .header {
  position: fixed;
  inset: 10px 0 auto 0;
  transition: top 0.3s ease;
}
.page-index .header__card::before {
  opacity: 0;
}
.page-index .header--scrolled {
  inset: 0 0 auto 0;
}
.page-index .header--scrolled .header__card::before {
  opacity: 1;
}

.hero {
  position: relative;
  --hero-gutter: clamp(8px, 1.0662557781px + 1.8489984592vw, 20px);
  width: min(100% - 2 * var(--hero-gutter), var(--container-wide));
  margin-inline: auto;
  padding-top: clamp(16px, -3.6456086287px + 5.2388289676vw, 50px);
}

.hero__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(30px, -10.4468412943px + 10.7858243451vw, 100px) clamp(12px, -15.7349768875px + 7.3959938367vw, 60px);
  border-radius: clamp(38px, 34.5331278891px + 0.9244992296vw, 44px);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
}

.hero--overlay-side .hero__overlay {
  background: var(--hero-overlay-side);
}

.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  color: var(--text-on-brand);
  pointer-events: none;
}

.hero__drop {
  position: absolute;
  transform: translate(-50%, -50%);
  fill: none;
}

.hero__drop--1 {
  width: clamp(188.24px, -434.7742526965px + 166.1371340524vw, 1266.47px);
  height: clamp(235.52px, -543.9657473035px + 207.8628659476vw, 1584.55px);
  left: calc(50% + clamp(94.38px, -122.588412943px + 57.8582434515vw, 469.88px));
  top: calc(50% - clamp(13px, -25.7134052388px + 10.3235747304vw, 80px));
  opacity: 0.4;
}

.hero__drop--2 {
  width: clamp(65.04px, -90.6514483821px + 41.5177195686vw, 334.49px);
  height: clamp(81.37px, -113.4277657935px + 51.9460708783vw, 418.5px);
  left: calc(50% + clamp(94.38px, -122.588412943px + 57.8582434515vw, 469.88px));
  top: calc(50% - clamp(0px, -4.6224961479px + 1.2326656394vw, 8px));
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero .page-header {
  gap: clamp(8px, -5.8674884438px + 3.6979969183vw, 32px);
}

.hero__buttons {
  display: flex;
  gap: 4px;
  margin-top: 16px;
  padding-inline: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero__buttons::-webkit-scrollbar {
  display: none;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: clamp(9px, 6.1109399076px + 0.7704160247vw, 14px) clamp(20px, 14.2218798151px + 1.5408320493vw, 30px);
  border: 1px solid transparent;
  border-radius: 34px;
  font-size: clamp(14px, 13.4221879815px + 0.1540832049vw, 15px);
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.hero__btn--primary {
  background: var(--btn-primary-bg);
  color: var(--text-on-brand);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus-visible {
  background: var(--btn-primary-bg-hover);
  color: var(--text-on-brand);
}

.hero__btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-heading);
}

.hero__btn--ghost:hover,
.hero__btn--ghost:focus-visible {
  background: var(--bg-panel);
  color: var(--text-heading);
}

.hero__btn-icon {
  font-size: clamp(12px, 11.4221879815px + 0.1540832049vw, 13px);
}

@media (min-width: 768px) {
  .hero__banner {
    min-height: clamp(320px, -220px + 70.3125vw, 500px);
  }
}
@media (min-width: 1024px) {
  .hero--overlay-side .hero__bg {
    left: auto;
    right: 0;
    width: 54%;
  }
  .hero--has-buttons .hero__banner {
    justify-content: flex-start;
  }
  .hero--has-buttons .hero__overlay {
    background: var(--hero-overlay-side);
  }
  .hero__buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    z-index: 4;
    margin-top: 0;
    padding-inline: 60px;
    gap: 14px;
    justify-content: flex-start;
    overflow-x: visible;
  }
  .hero__btn--primary {
    background: var(--bg-surface);
    color: var(--text-heading);
  }
  .hero__btn--primary:hover,
  .hero__btn--primary:focus-visible {
    background: var(--bg-surface-hover);
    color: var(--text-heading);
  }
  .hero__btn--ghost {
    border-color: var(--border-on-brand);
    color: var(--text-on-brand);
  }
  .hero__btn--ghost:hover,
  .hero__btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-on-brand);
  }
}
.footer {
  padding: 0 8px 8px;
  background: var(--bg-page);
}
.footer__card {
  border-radius: 38px;
  padding: 30px 0;
  background: linear-gradient(to left, var(--brand), var(--c-blue-dark-bg-2));
  color: var(--text-on-brand);
}
.footer__wrap {
  width: 100%;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__top {
  order: 2;
  display: flex;
  align-items: center;
}
.footer__logo, .footer__sep, .footer__lead {
  display: none;
}
.footer__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.footer__social {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--text-on-brand);
  transition: background-color 0.2s, color 0.2s;
}
.footer__social .icon {
  font-size: 22px;
}
.footer__social:hover, .footer__social:focus-visible {
  background: var(--text-on-brand);
  color: var(--brand);
}
.footer__middle {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--text-on-brand-muted);
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-on-brand);
  text-decoration: none;
}
.footer__link:hover, .footer__link:focus-visible {
  text-decoration: underline;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__phone-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--text-on-brand-muted);
}
.footer__phone {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-on-brand);
  text-decoration: none;
}
.footer__address {
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-on-brand);
  opacity: 0.6;
}
.footer__cta {
  align-self: flex-start;
}
.footer__bottom {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__copy {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-on-brand-muted);
}
.footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__legal-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-on-brand-muted);
  text-decoration: none;
}
.footer__legal-link:hover, .footer__legal-link:focus-visible {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer {
    padding: 0 20px 20px;
  }
  .footer__card {
    border-radius: 44px;
    padding: 64px 0 48px;
  }
  .footer__wrap {
    width: min(100% - 2 * var(--gutter), var(--container-narrow));
    margin-inline: auto;
    padding-inline: 0;
    gap: 48px;
  }
  .footer__middle {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .footer__nav-group {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 40px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .footer__col {
    width: calc(50% - 20px);
    gap: 24px;
  }
  .footer__col-title {
    font-size: 18px;
    line-height: 22px;
  }
  .footer__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px;
  }
  .footer__link {
    font-size: 18px;
    line-height: 22px;
  }
  .footer__contacts {
    flex: 1 1 100%;
    align-items: flex-start;
    gap: 28px;
  }
  .footer__phone-block {
    gap: 12px;
  }
  .footer__label {
    font-size: 18px;
    line-height: 22px;
  }
  .footer__phone {
    font-size: 32px;
  }
  .footer__address {
    font-size: 18px;
    line-height: 26px;
  }
  .footer__bottom {
    gap: 16px;
  }
  .footer__copy {
    line-height: normal;
  }
  .footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 30px;
  }
  .footer__legal-link {
    line-height: normal;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    order: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px 42px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer__logo {
    display: inline-flex;
    flex-shrink: 0;
  }
  .footer__logo img {
    width: 290px;
    max-width: 100%;
    height: auto;
  }
  .footer__sep {
    display: none;
  }
  .footer__socials {
    order: 1;
    flex-shrink: 0;
    margin-left: auto;
  }
  .footer__social {
    width: 50px;
    height: 50px;
  }
  .footer__social .icon {
    font-size: 24px;
  }
  .footer__lead {
    order: 2;
    display: block;
    flex: 1 1 100%;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
  }
  .footer__lead-strong {
    color: var(--text-on-brand);
  }
  .footer__lead-muted {
    color: var(--text-on-brand-muted);
  }
  .footer__middle {
    order: 0;
    flex-wrap: nowrap;
    gap: 22px;
  }
  .footer__nav-group {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
    gap: 22px;
  }
  .footer__col {
    width: 275px;
    min-width: 0;
    gap: 28px;
  }
  .footer__list {
    gap: 22px;
  }
  .footer__contacts {
    flex: 0 0 auto;
    gap: 28px;
  }
  .footer__bottom {
    order: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 22px;
  }
}
@media (min-width: 1440px) {
  .footer__top {
    flex-wrap: nowrap;
    gap: 42px;
    padding-bottom: 60px;
  }
  .footer__sep {
    display: inline;
    flex-shrink: 0;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    color: var(--text-on-brand);
  }
  .footer__socials {
    order: 0;
    margin-left: 0;
  }
  .footer__lead {
    order: 0;
    flex: 1;
    min-width: 240px;
    font-size: 22px;
    line-height: normal;
  }
}
@media (min-width: 1500px) {
  .footer__col--brands {
    width: auto;
    padding-right: 52px;
  }
  .footer__col--brands .footer__list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    justify-content: start;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
  .footer__col--brands .footer__link {
    white-space: nowrap;
  }
}
.history {
  padding-block: 24px 60px;
}

.history__hero {
  padding-top: 40px;
}

.history-hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--bg-panel);
  border-radius: 34px;
  padding: 20px;
}

.history-hero__media {
  flex-shrink: 0;
}

.history-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  -o-object-fit: cover;
     object-fit: cover;
}

.history-hero__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.history-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.history-hero__title {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  font-size: 32px;
  line-height: 1.1;
}

.history-hero__lead {
  margin: 0;
  color: var(--text-base);
  font-size: 18px;
  line-height: 26px;
}

.history-hero__text {
  color: var(--text-base);
  font-size: 18px;
  line-height: 26px;
}
.history-hero__text > p {
  margin: 0;
}
.history-hero__text > p + p {
  margin-top: 18px;
}

.history__timeline {
  padding-top: 60px;
}

.history__timeline-head {
  text-align: center;
  margin-bottom: 24px;
}

.history__timeline-title {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
  font-size: 28px;
  line-height: 1.15;
}

.history__timeline-subtitle {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 26px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: var(--line-top, 12px);
  height: var(--line-height, auto);
  bottom: 12px;
  left: 0;
  width: 1px;
  background: var(--timeline-line);
}

.timeline__col {
  display: contents;
}

.history-card {
  position: relative;
}

.history-card__dot {
  position: absolute;
  top: 31px;
  left: -28px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--timeline-dot);
  transform: translateX(-50%);
}

.history-card__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--border-card);
  border-radius: 34px;
  padding: 20px;
}

.history-card__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 56px;
}

.history-card__ghost {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  line-height: 1;
  color: var(--text-ghost);
  font-size: 75px;
}

.history-card__year {
  position: relative;
  font-weight: 800;
  color: var(--text-heading);
  font-size: 40px;
  line-height: 1;
}

.history-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-card__text {
  overflow: hidden;
  max-height: 234px;
  color: var(--text-base);
  font-size: 18px;
  line-height: 26px;
}
.history-card__text > p {
  margin: 0;
}
.history-card__text > p + p {
  margin-top: 26px;
}

.history-card__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.history-card__icon {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.history-card.is-expandable .history-card__toggle {
  display: inline-flex;
}

.history-card.is-expanded .history-card__text {
  height: auto;
  max-height: none;
}
.history-card.is-expanded .history-card__icon {
  transform: rotate(45deg);
}

@media (min-width: 1024px) {
  .history {
    padding-block: 50px 100px;
  }
  .history__hero {
    padding-top: 50px;
  }
  .history-hero {
    flex-direction: row;
    align-items: center;
    gap: 50px;
    border-radius: 44px;
    padding: 80px 60px;
  }
  .history-hero__media {
    width: 870px;
    max-width: 50%;
  }
  .history-hero__img {
    height: 728px;
  }
  .history-hero__info {
    flex: 1 1 0;
    min-width: 0;
    gap: 50px;
  }
  .history-hero__title {
    font-size: 60px;
    line-height: 75px;
  }
  .history-hero__lead {
    font-size: 22px;
  }
  .history__timeline {
    padding-top: 100px;
  }
  .history__timeline-head {
    margin-bottom: 50px;
  }
  .history__timeline-title {
    font-size: 60px;
    line-height: 75px;
  }
  .history-card__inner {
    padding: 34px;
  }
  .history-card__head {
    min-height: 75px;
  }
  .history-card__ghost {
    font-size: 100px;
  }
  .history-card__year {
    font-size: 60px;
    line-height: 75px;
  }
  .history-card__text {
    height: 284px;
    max-height: none;
  }
}
@media (min-width: 1200px) {
  .timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
    padding-left: 0;
  }
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline__col {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    gap: 50px;
  }
  .timeline__col--right {
    margin-top: 130px;
  }
  .history-card__dot {
    top: 44px;
  }
  .timeline__col--left .history-card__dot {
    left: auto;
    right: -50px;
    transform: translateX(50%);
  }
  .timeline__col--right .history-card__dot {
    left: -50px;
    transform: translateX(-50%);
  }
}
.pub-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.pub-card__media {
  width: 100%;
  aspect-ratio: 452.63/260;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-panel);
}

.pub-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pub-card__date {
  margin: 0;
  padding: 12px 0 8px;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 20px;
}

.pub-card__title {
  margin: 0;
  color: var(--text-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-transform: none;
  transition: color 0.2s;
}

.pub-card__excerpt {
  margin: 22px 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  color: var(--text-base);
  font-size: 16px;
  line-height: 20px;
}

.pub-card:hover .pub-card__title,
.pub-card:focus-visible .pub-card__title {
  color: var(--brand-accent);
}

@media (min-width: 1024px) {
  .pub-card__media {
    border-radius: 34px;
  }
  .pub-card__date {
    padding: 20px 0 14px;
    font-size: 15px;
    line-height: 22px;
  }
  .pub-card__title {
    font-size: 22px;
    line-height: 26px;
  }
  .pub-card__excerpt {
    font-size: 18px;
    line-height: 26px;
  }
}
.cat-card {
  position: relative;
  aspect-ratio: 359/248;
  border-radius: 30px;
  perspective: 1600px;
}

.cat-card__flip {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card--expandable .cat-card__flip {
  will-change: transform;
}

.cat-card--expandable:hover .cat-card__flip,
.cat-card--expandable:focus-within .cat-card__flip {
  transform: rotateY(180deg);
}

.cat-card__face {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cat-card__face--front {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-panel);
}

.cat-card__face--back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--accent);
  color: var(--text-on-brand);
  transform: rotateY(180deg);
  pointer-events: none;
}

.cat-card--expandable:hover .cat-card__face--back,
.cat-card--expandable:focus-within .cat-card__face--back {
  pointer-events: auto;
}

.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cat-card__label {
  position: relative;
  padding: 12px 28px;
  border-radius: 34px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}

.cat-card__panel-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat-card__title {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.cat-card__desc {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1024px) {
  .cat-card {
    border-radius: 34px;
  }
  .cat-card__face--front {
    padding: 30px;
  }
  .cat-card__face--back {
    gap: 22px;
    padding: 30px;
  }
  .cat-card__label {
    padding: 14px 42px;
    font-size: 15px;
  }
  .cat-card__panel-text {
    gap: 22px;
  }
  .cat-card__title {
    font-size: 22px;
  }
  .cat-card__desc {
    font-size: 18px;
    line-height: 26px;
    -webkit-line-clamp: 6;
  }
  .cat-grid {
    gap: 22px;
  }
  .cat-grid--3,
  .cat-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-grid--3 .cat-card,
  .cat-grid--6 .cat-card {
    aspect-ratio: 1/1;
  }
  .cat-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid--2 .cat-card {
    aspect-ratio: 869/600;
  }
}
.corp__grids {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 0;
}

.corp__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 64px;
}

.corp__text-title {
  margin: 0;
  color: var(--text-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.corp__text-body {
  color: var(--text-base);
}

@media (min-width: 1024px) {
  .corp__grids {
    gap: 50px;
    padding: 50px 0;
  }
  .corp__text {
    gap: 32px;
    padding: 50px 0 100px;
  }
  .corp__text-title {
    font-size: 46px;
    line-height: 58px;
  }
}
.slider {
  position: relative;
  --swiper-pagination-bullet-size: 9px;
  --swiper-pagination-bullet-horizontal-gap: 12px;
  --swiper-pagination-color: var(--text-heading);
  --swiper-pagination-bullet-inactive-color: var(--text-heading);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.slider .swiper {
  border-radius: 30px;
  overflow: hidden;
}

.slider__img {
  display: block;
  width: 100%;
  aspect-ratio: 1880/760;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider .swiper-pagination {
  position: static;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.slider .swiper-pagination-bullet {
  transition: opacity 0.2s;
}

.slider .swiper-pagination-bullet-active {
  position: relative;
}

.slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.slider__nav {
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: none;
  width: 100px;
  height: 102px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-white);
  cursor: pointer;
}
.slider__nav--drop {
  bottom: -1;
}

.slider__nav--prev {
  left: 0;
}
.slider__nav--prev .slider__nav-drop {
  left: -1px;
  bottom: -1px;
  transform: rotateY(180deg);
}

.slider__nav--next {
  right: 0;
}
.slider__nav--next .slider__nav-drop {
  right: -1px;
  bottom: -1px;
}

.slider__nav-drop {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slider__nav-face {
  position: absolute;
  bottom: 4px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  transition: background-color 0.2s, color 0.2s;
}

.slider__nav--next .slider__nav-face {
  left: auto;
  right: 0;
}

.slider__nav--prev .slider__nav-icon {
  transform: rotate(180deg);
}

.slider__nav-icon {
  font-size: 18px;
}

.slider__nav:hover .slider__nav-face,
.slider__nav:focus-visible .slider__nav-face {
  background: var(--brand);
  color: var(--text-on-brand);
}

.slider__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

@media (min-width: 1024px) {
  .slider {
    --swiper-pagination-bullet-horizontal-gap: 14px;
    --swiper-pagination-color: var(--c-white);
    --swiper-pagination-bullet-inactive-color: var(--c-white);
    --swiper-pagination-bullet-inactive-opacity: 0.75;
  }
  .slider .swiper {
    border-radius: 44px;
  }
  .slider .swiper-pagination {
    position: absolute;
    bottom: 28px;
    left: 100px;
    right: 100px;
    margin-top: 0;
  }
  .slider .swiper-pagination-bullet-active::after {
    inset: -10px;
    border-color: rgba(255, 255, 255, 0.4);
  }
  .slider__nav {
    display: block;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 4.2218798151px + 1.5408320493vw, 20px);
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: clamp(8px, 6.844375963px + 0.3081664099vw, 10px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination__item {
  display: flex;
}

.pagination__page,
.pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 37.3775038521px + 1.2326656394vw, 50px);
  height: clamp(42px, 37.3775038521px + 1.2326656394vw, 50px);
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: var(--bg-surface);
  color: var(--text-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

a.pagination__page:hover,
.pagination__arrow:hover {
  border-color: var(--btn-primary-bg);
  color: var(--btn-primary-bg);
}

.pagination__page.is-active {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: var(--text-on-brand);
}

.pagination__arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination__arrow-icon {
  font-size: 18px;
}

.pagination__arrow-icon--prev {
  transform: rotate(180deg);
}

.press-center {
  padding-bottom: 60px;
}

.news {
  padding-top: 24px;
}

.news__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
}

.news__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-base);
}

.news__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.news__more {
  margin-top: 24px;
}

.more {
  padding-top: 48px;
}

.more__head {
  margin-bottom: 24px;
  text-align: center;
}

.more__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-heading);
}

.more__subtitle {
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-base);
}

@media (min-width: 640px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 22px;
         column-gap: 22px;
    row-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .press-center {
    padding-bottom: 100px;
  }
  .news {
    padding-top: 100px;
  }
  .news__title {
    font-size: 60px;
    line-height: 75px;
  }
  .news__subtitle {
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-heading);
  }
  .news__grid {
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }
  .news__more {
    margin-top: 50px;
  }
  .more {
    padding-top: 100px;
  }
  .more__head {
    margin-bottom: 40px;
  }
  .more__title {
    font-size: 60px;
    line-height: 75px;
  }
  .more__subtitle {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.4;
  }
}
@media (min-width: 1440px) {
  .news__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.news-list {
  padding-block: 24px 60px;
}

.news-list__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.news-list__footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

@media (min-width: 640px) {
  .news-list__grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 22px;
         column-gap: 22px;
    row-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .news-list {
    padding-block: 40px 100px;
  }
  .news-list__grid {
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }
  .news-list__footer {
    margin-top: 50px;
    gap: 32px;
  }
}
.not-found {
  padding-block: 8px;
}

.not-found__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}

.not-found__btn {
  width: -moz-fit-content;
  width: fit-content;
}

.not-found__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.not-found__code {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 100px 20px 20px;
  border-radius: 30px;
  background: var(--btn-primary-bg);
  color: var(--text-on-brand);
}

.not-found__number {
  margin: 0;
  font-size: 140px;
  font-weight: 700;
  line-height: 0.9;
}

.not-found__caption {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.not-found__panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border-card);
  border-radius: 30px;
}

.not-found__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.not-found__title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
  text-transform: uppercase;
  color: var(--text-heading);
}

.not-found__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-base);
}

.not-found__media {
  display: none;
  position: relative;
}

.not-found__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1394/1589;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 44px;
}

.not-found__wordmark {
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  width: 46%;
  max-width: 512px;
  height: auto;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .not-found {
    padding-block: 20px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .not-found .container {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .not-found__inner {
    flex: 1;
    flex-direction: row;
    gap: 22px;
  }
  .not-found__col {
    gap: 22px;
  }
  .not-found__code,
  .not-found__panel {
    flex-basis: 0;
  }
  .not-found__code {
    justify-content: flex-end;
    padding: 30px;
    border-radius: 34px;
  }
  .not-found__number {
    font-size: 340px;
  }
  .not-found__caption {
    font-size: 22px;
    line-height: 26px;
  }
  .not-found__panel {
    padding: 30px;
    border-radius: 34px;
  }
  .not-found__title {
    font-size: 46px;
    line-height: 58px;
  }
  .not-found__lead {
    font-size: 18px;
    line-height: 26px;
  }
  .not-found__btn {
    align-self: flex-start;
  }
  .not-found__media {
    display: block;
    flex: 1 1 0;
    min-width: 0;
  }
  .not-found__img {
    aspect-ratio: auto;
  }
}
.ksb {
  padding-block: clamp(24px, 14.7550077042px + 2.4653312789vw, 40px) clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
}

.content > * {
  margin: 0;
}

.content > * + * {
  margin-top: clamp(24px, 8.9768875193px + 4.0061633282vw, 50px);
}

.content-group {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 19.3775038521px + 1.2326656394vw, 32px);
}

.content-group > * {
  margin: 0;
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 8.9768875193px + 4.0061633282vw, 50px);
}

.content-columns__col > *:last-child {
  margin-bottom: 0;
}

.content-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 6.2218798151px + 1.5408320493vw, 22px);
}

.content-gallery__cell {
  position: relative;
  border-radius: clamp(30px, 21.9106317411px + 2.157164869vw, 44px);
  overflow: hidden;
  background: var(--bg-panel);
  aspect-ratio: 869/800;
}

.content-gallery--one .content-gallery__cell {
  aspect-ratio: 1760/760;
}

.content-gallery--three .content-gallery__cell:not(:first-child) {
  aspect-ratio: 869/389;
}

.content-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-gallery__caption {
  grid-column: 1/-1;
}

.content-quote {
  display: flex;
  gap: clamp(12px, 7.3775038521px + 1.2326656394vw, 20px);
  align-items: flex-start;
  padding: clamp(20px, 14.2218798151px + 1.5408320493vw, 30px);
  border: 1px solid var(--border-card);
  border-radius: clamp(30px, 27.688751926px + 0.6163328197vw, 34px);
}

.content-quote__mark {
  flex-shrink: 0;
  margin-top: clamp(6px, 4.844375963px + 0.3081664099vw, 8px);
  color: var(--btn-primary-bg);
  font-size: 16px;
}

.content-callout {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 19.9553158706px + 1.0785824345vw, 31px);
  padding: 20px;
  border: 1px solid var(--border-card);
  border-radius: clamp(30px, 27.688751926px + 0.6163328197vw, 34px);
}

.content-callout__head {
  display: flex;
  gap: clamp(12px, 7.3775038521px + 1.2326656394vw, 20px);
  align-items: center;
}

.content-callout__head::before {
  content: "";
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
}

.content-callout__body {
  padding: clamp(20px, 14.2218798151px + 1.5408320493vw, 30px);
  border-left: 2px solid var(--btn-primary-bg);
  border-radius: 0 16px 16px 0;
  background: var(--bg-callout);
}

.content-callout__body p:last-child {
  margin-bottom: 0;
}

.list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 19.3775038521px + 1.2326656394vw, 32px);
}

.list--bullet li,
.list--number li {
  display: flex;
  gap: clamp(12px, 7.3775038521px + 1.2326656394vw, 20px);
  align-items: flex-start;
}

.list--bullet li::before {
  content: "";
  flex-shrink: 0;
  width: clamp(12px, 10.2665639445px + 0.4622496148vw, 15px);
  height: clamp(12px, 10.2665639445px + 0.4622496148vw, 15px);
  margin-top: 4px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
}

.list--number {
  counter-reset: content-list;
}

.list--number li {
  counter-increment: content-list;
  align-items: center;
}

.list--number li::before {
  content: counter(content-list);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  color: var(--text-on-brand);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.content-divider {
  border: 0;
  border-top: 1px solid var(--border-card);
}

.content-table {
  width: 100%;
  overflow-x: auto;
}

.content-table table {
  width: 810px;
  border-collapse: collapse;
}

.content-table th,
.content-table td {
  padding: 16px 0;
  text-align: left;
  white-space: nowrap;
}

.content-table th:first-child,
.content-table td:first-child {
  padding-left: 14px;
}

.content-table th:not(:first-child),
.content-table td:not(:first-child) {
  width: 145px;
}

.content-table tbody tr:nth-child(odd) td {
  background: var(--bg-table-stripe);
}

.content-table tbody tr:nth-child(odd) td:first-child {
  border-radius: 34px 0 0 34px;
}

.content-table tbody tr:nth-child(odd) td:last-child {
  border-radius: 0 34px 34px 0;
}

@media (min-width: 1024px) {
  .content-columns--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-columns--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .content-callout {
    padding: 32px 30px 30px 42px;
  }
  .content-gallery--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-gallery--three {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 389fr 389fr;
  }
  .content-gallery--three .content-gallery__cell:first-child {
    grid-row: 1/3;
    aspect-ratio: auto;
  }
  .content-gallery--three .content-gallery__cell {
    aspect-ratio: 869/389;
  }
  .content-table {
    overflow-x: visible;
  }
  .content-table th:first-child,
  .content-table td:first-child {
    width: 300px;
  }
  .content-table th:not(:first-child),
  .content-table td:not(:first-child) {
    width: 150px;
  }
}
.manager-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manager-card--panel {
  background: var(--bg-panel);
  border-radius: 30px;
  padding: 20px;
}

.manager-card__media {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manager-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 319/267;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.manager-card__photo--placeholder {
  background: var(--bg-panel);
}

.manager-card__quote {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0;
}

.manager-card__bubble {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  color: var(--bg-surface);
}

.manager-card__bubble-top {
  flex: 1;
  min-height: 0;
  background: currentColor;
  border-radius: 18px 18px 0 0;
}

.manager-card__bubble-btm {
  flex-shrink: 0;
  width: 100%;
  margin-top: -1px;
  transform: scaleY(-1);
}
.manager-card__bubble-btm path {
  fill: currentColor;
}

.manager-card__bubble-btm--mobile {
  aspect-ratio: 318/66.5;
}

.manager-card__bubble-btm--desktop {
  display: none;
  aspect-ratio: 546/117.446;
}

.manager-card__quote-text {
  position: relative;
  min-height: 130px;
  margin: 0;
  padding: 18px 16px 18px 16px;
  color: var(--text-base);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.manager-card__quote-body p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.manager-card__quote-body p:first-child {
  text-indent: 21px;
}

.manager-card__quote-body p + p {
  margin-top: 2px;
  padding-left: 46px;
}

.manager-card__quote-mark {
  position: absolute;
  color: var(--accent);
  font-size: 46px;
  line-height: 1;
  pointer-events: none;
}

.manager-card__quote-mark--open {
  top: 6px;
  left: 14px;
}

.manager-card__quote-mark--close {
  right: 18px;
  bottom: 8px;
}

.manager-card__quote-btn {
  position: absolute;
  left: 4px;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-near-black);
  color: var(--text-on-brand);
}

.manager-card__quote-icon {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
}

.manager-card__title {
  margin: 0;
  color: var(--text-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.manager-card__lead {
  color: var(--text-base);
}
.manager-card__lead p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.manager-card__lead p + p {
  margin-top: 12px;
}

.manager-card__bio {
  color: var(--text-base);
}
.manager-card__bio p {
  font-size: 16px;
  line-height: 24px;
}

.manager-card__cta {
  display: flex;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .manager-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto auto auto auto 1fr;
    grid-template-areas: "media ." "media title" "media lead" "media bio" "media cta" "media .";
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 0;
  }
  .manager-card--reverse {
    grid-template-areas: ". media" "title media" "lead media" "bio media" "cta media" ". media";
  }
  .manager-card__lead {
    grid-area: lead;
    align-self: start;
    margin-bottom: 18px;
  }
  .manager-card__cta {
    grid-area: cta;
    align-self: start;
    margin-top: 6px;
  }
  .manager-card--panel {
    border-radius: 34px;
    padding: 40px;
  }
  .manager-card__media {
    grid-area: media;
    align-self: start;
  }
  .manager-card__title {
    grid-area: title;
    align-self: end;
    margin-bottom: 24px;
    font-size: clamp(24px, 3.4vw, 34px);
  }
  .manager-card__bio {
    grid-area: bio;
    align-self: start;
  }
  .manager-card__bio p + p {
    margin-top: 16px;
  }
}
@media (min-width: 1024px) {
  .manager-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto auto auto auto 1fr;
    grid-template-areas: "media ." "media title" "media lead" "media bio" "media cta" "media .";
    -moz-column-gap: clamp(24px, 3vw, 50px);
         column-gap: clamp(24px, 3vw, 50px);
    row-gap: 0;
  }
  .manager-card--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    grid-template-areas: ". media" "title media" "lead media" "bio media" "cta media" ". media";
  }
  .manager-card__lead {
    grid-area: lead;
    align-self: start;
    margin-bottom: 24px;
  }
  .manager-card__lead p {
    font-size: 22px;
    line-height: 28px;
  }
  .manager-card__cta {
    grid-area: cta;
    align-self: start;
    margin-top: 10px;
  }
  .manager-card--panel {
    border-radius: 44px;
    padding: 80px 60px;
  }
  .manager-card__media {
    grid-area: media;
    display: block;
    width: 100%;
    max-width: 870px;
    aspect-ratio: 870/728;
    border-radius: 34px;
    justify-self: start;
  }
  .manager-card--reverse .manager-card__media {
    justify-self: end;
  }
  .manager-card__photo {
    position: absolute;
    inset: 0;
    height: 100%;
    border-radius: inherit;
  }
  .manager-card__quote {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: 318px;
  }
  .manager-card__bubble {
    opacity: 0.93;
  }
  .manager-card__title {
    grid-area: title;
    align-self: end;
    margin-bottom: clamp(24px, 3vw, 50px);
    font-size: clamp(34px, 3.3vw, 60px);
    line-height: 1.12;
  }
  .manager-card__bio {
    grid-area: bio;
    align-self: start;
  }
  .manager-card__bio p {
    font-size: 18px;
    line-height: 26px;
  }
  .manager-card__bio p + p {
    margin-top: 18px;
  }
}
@media (min-width: 1440px) {
  .manager-card__quote {
    left: 40px;
    bottom: 40px;
    width: 546px;
    max-width: calc(100% - 80px);
  }
  .manager-card__quote-text {
    min-height: 224px;
    padding: 33px 28px 20px 30px;
    font-size: 22px;
    line-height: 26px;
  }
  .manager-card__quote-body p:first-child {
    text-indent: 36px;
  }
  .manager-card__quote-body p + p {
    margin-top: 3px;
    padding-left: 79px;
  }
  .manager-card--reverse .manager-card__quote-body p + p {
    padding-left: 0;
    padding-right: 79px;
  }
  .manager-card__quote-mark {
    font-size: 70px;
  }
  .manager-card__quote-mark--open {
    top: 20px;
    left: 30px;
  }
  .manager-card__quote-mark--close {
    top: auto;
    bottom: -20px;
    left: auto;
    right: 36px;
  }
  .manager-card--reverse .manager-card__quote-mark--close {
    left: auto;
    right: 104px;
  }
  .manager-card__quote-btn {
    left: 4px;
    bottom: 3px;
    width: 60px;
    height: 60px;
  }
  .manager-card__quote-icon {
    width: 15px;
    height: 15px;
  }
  .manager-card__bubble-top {
    border-radius: 34px 34px 0 0;
  }
  .manager-card__bubble-btm--mobile {
    display: none;
  }
  .manager-card__bubble-btm--desktop {
    display: block;
  }
  .manager-card--reverse .manager-card__bubble-btm {
    transform: scale(-1, -1);
  }
  .manager-card--reverse .manager-card__quote-icon {
    transform: rotate(90deg);
  }
  .manager-card--reverse .manager-card__quote {
    left: auto;
    right: 40px;
  }
  .manager-card--reverse .manager-card__quote-btn {
    left: auto;
    right: 4px;
  }
}
.management__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
}

.management__intro-title {
  margin: 0;
  color: var(--text-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.management__intro-body {
  color: var(--text-base);
}

.management__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .management__intro {
    gap: 32px;
    padding: 50px 0;
  }
  .management__intro-title {
    font-size: 60px;
    line-height: 75px;
  }
  .management__cards {
    gap: 60px;
    padding-bottom: 60px;
  }
}
.contacts-info {
  padding-top: 24px;
  padding-bottom: 30px;
}
@media (min-width: 640px) {
  .contacts-info {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .contacts-info {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

.contacts-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .contacts-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .contacts-info__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.contacts-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 640px) {
  .contacts-info__item {
    align-items: flex-start;
    gap: 22px;
    text-align: left;
  }
}

.contacts-info__icon {
  font-size: 54px;
  color: var(--accent);
}
@media (min-width: 1024px) {
  .contacts-info__icon {
    font-size: 60px;
  }
}

.contacts-info__title {
  margin: 0;
  font-weight: 800;
  font-size: 22px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--text-heading);
  min-height: 54px;
}
@media (min-width: 1024px) {
  .contacts-info__title {
    min-height: 60px;
    font-size: 24px;
    line-height: 30px;
  }
}

.contacts-info__text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-base);
}
@media (min-width: 1024px) {
  .contacts-info__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.contacts-form-section {
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .contacts-form-section {
    padding-bottom: 100px;
  }
}

.contacts-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 30px 20px;
  background: var(--bg-panel);
  border-radius: 30px;
}
@media (min-width: 1024px) {
  .contacts-form {
    gap: 50px;
    padding: 80px 60px;
    border-radius: 44px;
  }
}

.contacts-form__title {
  margin: 0;
  width: 100%;
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-heading);
}
@media (min-width: 1024px) {
  .contacts-form__title {
    font-size: 46px;
    line-height: 58px;
  }
}

.contacts-form__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
@media (min-width: 1024px) {
  .contacts-form__body {
    width: 970px;
    max-width: 100%;
  }
}

.contacts-form__row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 1024px) {
  .contacts-form__row {
    flex-direction: row;
    gap: 50px;
  }
}

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 1024px) {
  .contacts-form__field {
    flex: 1 1 0;
    min-width: 0;
  }
}

.contacts-form__field--full {
  width: 100%;
}

.contacts-form__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-base);
}
@media (min-width: 1024px) {
  .contacts-form__label {
    font-size: 18px;
    line-height: 26px;
  }
}

.contacts-form__req {
  color: var(--accent);
}

.contacts-form__input,
.contacts-form__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
  color: var(--text-base);
  background: var(--bg-surface);
  border: 0;
  outline: none;
}
@media (min-width: 1024px) {
  .contacts-form__input,
  .contacts-form__textarea {
    font-size: 18px;
    line-height: 26px;
  }
}
.contacts-form__input::-moz-placeholder, .contacts-form__textarea::-moz-placeholder {
  color: var(--text-faint);
}
.contacts-form__input::placeholder,
.contacts-form__textarea::placeholder {
  color: var(--text-faint);
}
.contacts-form__input:focus-visible,
.contacts-form__textarea:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}

.contacts-form__input {
  height: 46px;
  padding: 0 26px;
  border-radius: 34px;
}

.contacts-form__textarea {
  height: 120px;
  padding: 30px;
  border-radius: 30px;
  resize: none;
}
@media (min-width: 1024px) {
  .contacts-form__textarea {
    height: 140px;
  }
}

.contacts-form__actions {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.contacts-form__submit {
  width: 100%;
  padding: 16px 40px;
}
@media (min-width: 640px) {
  .contacts-form__submit {
    width: auto;
    padding: 19px 40px;
  }
}

.contacts-form__note {
  margin: 0;
  max-width: 970px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: var(--text-muted);
}

.home-hero {
  position: relative;
  padding: 20px;
}

.home-hero__card {
  position: relative;
  height: calc(100vh - 40px);
  border-radius: 44px;
  overflow: hidden;
}

.home-hero__swiper,
.home-hero__swiper .swiper-wrapper,
.home-hero__slide {
  height: 100%;
}

.home-hero__media {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-hero__scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 152px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 28, 72, 0.8) 0%, rgba(2, 28, 72, 0) 100%);
}

.home-hero__drop {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  color: var(--c-white);
  opacity: 0.1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.home-hero__drop--lg {
  width: 1266px;
  height: 1585px;
  margin-top: -50px;
}

.home-hero__drop--sm {
  width: 466px;
  height: 583px;
  margin-top: 22px;
}

.home-hero__card .home-hero__pagination {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  width: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-hero__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  background: var(--c-white);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.home-hero__pagination .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.home-hero__pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.home-hero__nav {
  position: absolute;
  bottom: 20px;
  z-index: 4;
  width: 101px;
  height: 106px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-white);
  cursor: pointer;
}

.home-hero__nav--prev {
  left: 20px;
}
.home-hero__nav--prev .home-hero__nav-drop {
  transform: rotateY(180deg);
}

.home-hero__nav--next {
  right: 20px;
}

.home-hero__nav-drop {
  position: absolute;
  bottom: -2px;
  left: -1px;
  width: 100%;
  height: 100%;
}

.home-hero__nav-face {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  transition: background-color 0.2s, color 0.2s;
}

.home-hero__nav--next .home-hero__nav-drop {
  left: auto;
  right: -1px;
}

.home-hero__nav--next .home-hero__nav-face {
  left: auto;
  right: 0;
}

.home-hero__nav-icon {
  font-size: 18px;
}

.home-hero__nav--prev .home-hero__nav-icon {
  transform: rotate(180deg);
}

.home-hero__nav:hover .home-hero__nav-face,
.home-hero__nav:focus-visible .home-hero__nav-face {
  background: var(--brand);
  color: var(--text-on-brand);
}

.home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-on-brand);
  transform: translateX(-50%);
  animation: home-hero-bounce 2s ease infinite;
}

.home-hero__scroll-icon {
  font-size: 28px;
}

.home-hero__scroll:hover,
.home-hero__scroll:focus-visible {
  opacity: 0.7;
}

@keyframes home-hero-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__scroll {
    animation: none;
  }
}
.brands {
  padding: 60px 0 40px;
}
@media (min-width: 1024px) {
  .brands {
    padding: 80px 0 50px;
  }
}

.brands__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.brands__title {
  margin: 0;
}
@media (min-width: 1024px) {
  .brands__title {
    max-width: 1212px;
  }
}

.brands__subtitle {
  margin: 0;
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 1024px) {
  .brands__subtitle {
    font-size: 22px;
  }
}

.brands__marquee {
  margin-top: 32px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .brands__marquee {
    margin-top: 50px;
  }
}

.brands__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: brands-scroll 36s linear infinite;
}

.brands__cell {
  flex: 0 0 423.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  padding: 64px 40px;
  margin-right: 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 34px;
  overflow: hidden;
}

.brands__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
  }
}
.text-marquee {
  overflow: hidden;
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .text-marquee {
    padding: 50px 0;
  }
}

.text-marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: var(--text-ghost);
  animation: text-marquee-scroll var(--marquee-duration, 80s) linear infinite;
}

.text-marquee__item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.text-marquee__text {
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-marquee__sep {
  flex: none;
  width: 25px;
  height: 31px;
}

@keyframes text-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .text-marquee__track {
    animation: none;
  }
}
.career {
  margin-top: 60px;
}

.career__panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 30px;
  border-radius: 24px;
  background: var(--bg-panel);
}

.career__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.career__title--top {
  display: none;
}

.career__lead {
  margin: 0;
  color: var(--text-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.career__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career__feature {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.career__feature-label {
  flex-shrink: 0;
  color: var(--c-near-black);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.career__feature-text {
  margin: 0;
  color: var(--text-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.career__grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.career__col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.career-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
}

.career-card--short {
  aspect-ratio: 406.5/306;
  padding: 20px;
}

.career-card--tall {
  aspect-ratio: 406.5/400;
}

.career-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.career-card__tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 14px 42px;
  border-radius: 34px;
  color: var(--text-on-brand);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  white-space: nowrap;
}

.career-card__tag--charity {
  background: #37b760;
}

.career-card__tag--work {
  background: #f79009;
}

.career-card__tag--sport {
  background: #0daaeb;
}

.career-card--info {
  justify-content: center;
  gap: 22px;
  background: var(--accent);
  color: var(--text-on-brand);
}

.career-card__info-title {
  margin: 0;
  color: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
}

.career-card__info-text {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

@media (min-width: 1024px) {
  .career {
    margin-top: 100px;
  }
  .career__panel {
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 50px;
    padding: 60px;
    border-radius: 44px;
  }
  .career__title--top {
    display: block;
    flex: 0 0 100%;
  }
  .career__title--inline {
    display: none;
  }
  .career__info {
    flex: 840 1 0;
    min-width: 0;
    max-width: 840px;
    gap: 50px;
  }
  .career__lead {
    font-size: 22px;
  }
  .career__features {
    gap: 30px;
  }
  .career__grid {
    flex: 870 1 0;
    min-width: 0;
    max-width: 870px;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
  }
  .career__col {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (min-width: 1880px) {
  .career__panel {
    flex-wrap: nowrap;
    padding: 80px 60px;
  }
  .career__title--top {
    display: none;
  }
  .career__title--inline {
    display: block;
  }
  .career__intro {
    gap: 21px;
  }
  .career__feature {
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
  }
  .career__feature-label {
    flex: 0 0 224px;
    width: 224px;
  }
}
@media (min-width: 1024px) and (max-width: 1879.98px) {
  .career-card--info {
    gap: 14px;
    padding: 18px;
    overflow: visible;
  }
  .career-card__info-title {
    font-size: 15px;
  }
  .career-card__info-text {
    font-size: 13px;
    line-height: 18px;
  }
}
.home-stats {
  margin-top: 60px;
}

.home-stats__panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  isolation: isolate;
}

.home-stats__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-stats__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--stats-overlay);
}

.home-stats__grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-stats__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-stats__title {
  margin: 0;
  color: var(--text-on-brand);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.home-stats__lead {
  margin: 0;
  color: var(--text-on-brand);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

.home-stats__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 30px;
  border-radius: 34px;
  color: var(--text-on-brand);
}

.home-stats__card--outline {
  border: 1px solid var(--border-on-brand-subtle);
}

.home-stats__card--cyan {
  background: var(--bg-stat-highlight);
}

.home-stats__card--accent {
  background: var(--accent);
}

.home-stats__value {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 100px);
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.home-stats__value--dark {
  color: var(--text-heading);
}

.home-stats__label {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: normal;
}

.home-stats__label--dark {
  color: var(--text-heading);
}

.home-stats__btn {
  align-self: flex-start;
  padding: 19px 40px;
  border-radius: 34px;
}

.home-stats__product {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg-surface);
}

.home-stats__swiper {
  height: 100%;
}

.home-stats__slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  min-height: 360px;
  padding: 30px;
}

.home-stats__slide .home-stats__label {
  max-width: 75%;
}

.home-stats__bottle {
  position: relative;
  flex: 1;
  min-height: 0;
  pointer-events: none;
}

.home-stats__bottle-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.home-stats__taste {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 93px;
  height: auto;
}

.home-stats__next {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--border-card);
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-heading);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.home-stats__next:hover,
.home-stats__next:focus-visible {
  background: var(--accent);
  color: var(--text-on-brand);
  border-color: var(--accent);
}

.home-stats__next-icon {
  font-size: 15px;
}

@media (min-width: 1024px) {
  .home-stats {
    margin-top: 50px;
  }
  .home-stats__panel {
    padding: 40px;
    border-radius: 44px;
  }
  .home-stats__overlay {
    background: var(--stats-overlay-side), var(--stats-overlay);
  }
  .home-stats__grid {
    display: grid;
    grid-template-columns: minmax(0, 488fr) minmax(0, 488fr) minmax(0, 359fr) minmax(0, 359fr);
    grid-template-rows: minmax(280px, auto) minmax(259px, 1fr) minmax(259px, 1fr);
    gap: 16px;
  }
  .home-stats__intro {
    grid-column: 1/3;
    grid-row: 1;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
  }
  .home-stats__card--pos-1 {
    grid-column: 1;
    grid-row: 2;
  }
  .home-stats__card--pos-2 {
    grid-column: 2;
    grid-row: 2;
  }
  .home-stats__card--pos-3 {
    grid-column: 3;
    grid-row: 2;
  }
  .home-stats__card--pos-4 {
    grid-column: 3;
    grid-row: 1;
  }
  .home-stats__card--pos-5 {
    grid-column: 1;
    grid-row: 3;
  }
  .home-stats__card--pos-6 {
    grid-column: 2;
    grid-row: 3;
  }
  .home-stats__card--pos-7 {
    grid-column: 3;
    grid-row: 3;
  }
  .home-stats__product {
    grid-column: 4;
    grid-row: 1/4;
  }
  .home-stats__card {
    padding: 24px;
  }
  .home-stats__btn {
    padding: 16px 24px;
  }
}
@media (min-width: 1440px) {
  .home-stats__panel {
    padding: 60px;
  }
  .home-stats__grid {
    gap: 22px;
  }
  .home-stats__card {
    padding: 30px;
  }
  .home-stats__btn {
    padding: 19px 40px;
  }
}
.home-news {
  margin-top: 60px;
  margin-bottom: 60px;
}

.home-news__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.home-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-news__title {
  margin: 0;
}

.home-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
}

@media (min-width: 768px) {
  .home-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-news {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .home-news__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about {
  padding-block: 24px 60px;
}

.about__ceo {
  margin-top: 30px;
}

.about-brands {
  margin-top: 50px;
}

@media (min-width: 1024px) {
  .about {
    padding-block: 50px 100px;
  }
  .about__ceo {
    margin-top: 50px;
  }
  .about-brands {
    margin-top: 100px;
  }
}
.about-team {
  margin-top: 50px;
  overflow: hidden;
}

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

.about-team__title {
  margin: 0;
}

.about-team__subtitle {
  margin: 12px auto 0;
  max-width: 1010px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 24px;
}

.about-team__carousel {
  position: relative;
  margin-top: 30px;
}

.about-team__swiper {
  overflow: hidden;
}

.about-team__slide {
  width: 280px;
  height: auto;
}
.about-team__slide .cat-card {
  aspect-ratio: 1/1;
}
.about-team__slide .cat-card__face--back {
  will-change: transform;
}

.about-team__nav {
  position: absolute;
  bottom: -1px;
  z-index: 3;
  display: none;
  width: 127px;
  height: 134px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-white);
  cursor: pointer;
}

.about-team__nav--prev {
  left: 0;
}
.about-team__nav--prev .about-team__nav-drop {
  left: -1px;
  bottom: -1px;
  transform: rotateY(180deg);
}

.about-team__nav--next {
  right: 0;
}
.about-team__nav--next .about-team__nav-drop {
  right: -1px;
  bottom: -1px;
}

.about-team__nav-drop {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-team__nav-face {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  transition: background-color 0.2s, color 0.2s;
}

.about-team__nav--next .about-team__nav-face {
  left: auto;
  right: 20px;
}

.about-team__nav--prev .about-team__nav-icon {
  transform: rotate(180deg);
}

.about-team__nav-icon {
  font-size: 18px;
}

.about-team__nav:hover .about-team__nav-face,
.about-team__nav:focus-visible .about-team__nav-face {
  background: var(--brand);
  color: var(--text-on-brand);
}

.about-team__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

@media (min-width: 640px) {
  .about-team__slide {
    width: 340px;
  }
}
@media (min-width: 1024px) {
  .about-team {
    margin-top: 100px;
  }
  .about-team__subtitle {
    margin-top: 21px;
    font-size: 18px;
    line-height: 26px;
  }
  .about-team__carousel {
    margin-top: 50px;
  }
  .about-team__slide {
    width: 423.5px;
  }
  .about-team__nav {
    display: block;
  }
}
.strategy {
  padding-block: 50px 100px;
}

.strategy__sections {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.strategy__section {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background: var(--c-grey-light-2);
  isolation: isolate;
}

.strategy__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.strategy__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--stats-overlay);
}

.strategy__section--mask-right .strategy__overlay {
  background: var(--stats-overlay-side), var(--stats-overlay);
}

.strategy__section--mask-left .strategy__overlay {
  background: var(--stats-overlay-side-r), var(--stats-overlay);
}

.strategy__drop {
  display: none;
}

.strategy__drop-img {
  display: block;
  width: 100%;
  height: auto;
}

.strategy__icon {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 16.8%;
}

.strategy__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 24px;
}

.strategy__media {
  display: none;
}

.strategy__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--text-on-brand);
}

.strategy__head {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.strategy__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.17;
  color: var(--text-on-brand);
  font-size: 36px;
}

.strategy__lead {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-on-brand);
  font-size: 18px;
}

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

.strategy__advantage {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 1.44;
  color: var(--text-on-brand);
}

.strategy__advantage-label {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 18px;
}

.strategy__advantage-text {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-weight: 400;
  line-height: 1.44;
  font-size: 18px;
}

.strategy__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.strategy__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.44;
  color: var(--text-on-brand);
}

.strategy__list-marker {
  flex: 0 0 auto;
  width: 15px;
  height: 19px;
  margin-top: 4px;
  color: var(--brand-accent);
}

@media (min-width: 1024px) {
  .strategy__sections {
    margin-top: 50px;
    gap: 100px;
  }
  .strategy__section {
    display: flex;
    align-items: center;
    min-height: 888px;
  }
  .strategy__drop {
    display: block;
    position: absolute;
    top: 40%;
    z-index: -1;
    width: 57.8%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .strategy__section--mask-right .strategy__drop {
    left: 73.2%;
  }
  .strategy__section--mask-left .strategy__drop {
    left: 26.8%;
  }
  .strategy__inner {
    padding: 80px 60px;
  }
  .strategy__section--reverse .strategy__inner {
    flex-direction: row-reverse;
  }
  .strategy__media {
    display: block;
    flex: 0 0 870px;
    align-self: stretch;
  }
  .strategy__content {
    gap: 50px;
  }
  .strategy__title {
    font-size: 60px;
  }
  .strategy__lead {
    font-size: 22px;
  }
  .strategy__advantages {
    gap: 30px;
  }
  .strategy__advantage {
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
  }
  .strategy__advantage-label {
    flex: 0 0 224px;
    width: 224px;
  }
}
.info-banner__row {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 8.9768875193px + 4.0061633282vw, 50px);
  padding: clamp(20px, -3.1124807396px + 6.1633281972vw, 60px);
  border-radius: clamp(24px, 12.4437596302px + 3.0816640986vw, 44px);
}

.info-banner--panel .info-banner__row {
  background: var(--bg-panel);
}

.info-banner__media {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 870/728;
}

.info-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-banner__img--placeholder {
  display: block;
  background: var(--bg-panel);
}

.info-banner--panel .info-banner__img--placeholder {
  background: var(--bg-surface-hover);
}

.info-banner__info {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 8.9768875193px + 4.0061633282vw, 50px);
  min-width: 0;
}

.info-banner__title {
  margin: 0;
}

.info-banner__text {
  color: var(--text-base);
}

.info-banner__text .lead {
  color: var(--text-heading);
}

@media (min-width: 1024px) {
  .info-banner__row {
    flex-direction: row;
    align-items: center;
  }
  .info-banner__media {
    flex: 870 1 0;
    max-width: 870px;
  }
  .info-banner__info {
    flex: 840 1 0;
    max-width: 840px;
  }
  .info-banner--reverse .info-banner__media {
    order: 2;
  }
  .info-banner--reverse .info-banner__info {
    order: 1;
  }
}
@media (min-width: 1880px) {
  .info-banner__row {
    padding: 80px 60px;
  }
}
.all-water {
  padding-bottom: clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
}

.all-water > .container {
  margin-top: clamp(30px, -10.4468412943px + 10.7858243451vw, 100px);
}

.all-water__note {
  margin: 0;
  color: var(--text-base);
  font-size: clamp(16px, 14.844375963px + 0.3081664099vw, 18px);
  font-weight: 400;
  line-height: clamp(20px, 16.5331278891px + 0.9244992296vw, 26px);
}

.doc-card {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.doc-card__thumb {
  position: relative;
  aspect-ratio: 162/103;
  border-radius: clamp(24px, 18.2218798151px + 1.5408320493vw, 34px);
  background: var(--bg-panel);
}

.doc-card__icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 75.7318952234px + 6.4714946071vw, 142px);
  height: clamp(100px, 75.7318952234px + 6.4714946071vw, 142px);
  border-radius: clamp(24px, 18.2218798151px + 1.5408320493vw, 34px);
  background: var(--bg-surface);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.doc-card__pdf {
  width: clamp(41px, 31.1771956857px + 2.6194144838vw, 58px);
  height: clamp(50px, 37.2881355932px + 3.3898305085vw, 72px);
}

.doc-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 6.2218798151px + 1.5408320493vw, 22px);
  padding-top: clamp(12px, 7.3775038521px + 1.2326656394vw, 20px);
}

.doc-card__text {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 4.5331278891px + 0.9244992296vw, 14px);
}

.doc-card__title {
  margin: 0;
  font-size: clamp(18px, 15.688751926px + 0.6163328197vw, 22px);
  font-weight: 500;
  line-height: normal;
  text-transform: none;
  color: var(--text-base);
}

.doc-card__meta {
  margin: 0;
  font-size: clamp(14px, 13.4221879815px + 0.1540832049vw, 15px);
  font-weight: 400;
  line-height: clamp(20px, 18.844375963px + 0.3081664099vw, 22px);
  color: var(--text-faint);
}

.doc-card__btn {
  width: 48px;
  height: 46px;
  padding: 0;
  gap: 0;
  justify-content: center;
}

.doc-card__btn .btn__label {
  display: none;
}

.doc-card__btn .btn__icon {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .doc-card__btn {
    width: auto;
    height: auto;
    padding: 14px 30px;
    gap: 14px;
  }
  .doc-card__btn .btn__label {
    display: inline-block;
  }
}
.documents {
  padding-block: clamp(24px, 8.9768875193px + 4.0061633282vw, 50px) clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
}

.doc-filter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-bottom: clamp(24px, 20.5331278891px + 0.9244992296vw, 30px);
  border-bottom: 1px solid var(--border-card);
}

.doc-filter__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--text-base);
  white-space: nowrap;
}

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

.doc-filter__select {
  width: 100%;
  height: 46px;
  padding: 0 48px 0 26px;
  border: 1px solid var(--border-card);
  border-radius: 34px;
  background-color: var(--bg-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M0.985 3.5 6 8.5 11.014 3.5' stroke='%23AEAEAD' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 26px center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-base);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.documents__groups {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, -10.4468412943px + 10.7858243451vw, 100px);
  margin-top: clamp(30px, -10.4468412943px + 10.7858243451vw, 100px);
}

.doc-section__title {
  font-size: clamp(30px, 24.2218798151px + 1.5408320493vw, 40px);
  line-height: 1.25;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: clamp(12px, 6.2218798151px + 1.5408320493vw, 22px);
       column-gap: clamp(12px, 6.2218798151px + 1.5408320493vw, 22px);
  row-gap: clamp(26px, 17.9106317411px + 2.157164869vw, 40px);
  margin-top: clamp(20px, 14.2218798151px + 1.5408320493vw, 30px);
}

.documents__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 16.2218798151px + 1.5408320493vw, 32px);
  margin-top: clamp(40px, 34.2218798151px + 1.5408320493vw, 50px);
}

@media (min-width: 640px) {
  .doc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .doc-filter {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
  }
  .doc-filter__controls {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .doc-filter__select {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .doc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .doc-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.brand-slider {
  position: relative;
  --swiper-pagination-bullet-size: 9px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-color: var(--c-white);
  --swiper-pagination-bullet-inactive-color: var(--c-white);
  --swiper-pagination-bullet-inactive-opacity: 0.75;
}

.brand-slider .swiper {
  border-radius: 30px;
  overflow: hidden;
}

.brand-slider__slide {
  position: relative;
}

.brand-slider__img {
  display: block;
  width: 100%;
  aspect-ratio: 1880/760;
  -o-object-fit: cover;
     object-fit: cover;
}

.brand-slider__overlay {
  position: absolute;
  inset: 0;
  background: var(--slide-overlay);
  pointer-events: none;
}

.brand-slider__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  padding: 30px;
  color: var(--text-on-brand);
}

.brand-slider__logo {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  padding: 6px 10px;
  background: var(--c-white);
  border-radius: 3px;
}

.brand-slider__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-slider__text {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-on-brand);
}

.brand-slider .swiper-pagination {
  position: static;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}

.brand-slider .swiper-pagination-bullet {
  transition: opacity 0.2s;
}

.brand-slider .swiper-pagination-bullet-active {
  position: relative;
}

.brand-slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.brand-slider__nav {
  position: absolute;
  bottom: 0;
  z-index: 3;
  display: none;
  width: 100px;
  height: 102px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-white);
  cursor: pointer;
}

.brand-slider__nav--prev {
  left: 0;
}
.brand-slider__nav--prev .brand-slider__nav-drop {
  left: -1px;
  bottom: -1px;
  transform: rotateY(180deg);
}

.brand-slider__nav--next {
  right: 0;
}
.brand-slider__nav--next .brand-slider__nav-drop {
  right: -1px;
  bottom: -1px;
}

.brand-slider__nav-drop {
  position: absolute;
  width: 100%;
  height: 100%;
}

.brand-slider__nav-face {
  position: absolute;
  bottom: 4px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  transition: background-color 0.2s, color 0.2s;
}

.brand-slider__nav--next .brand-slider__nav-face {
  left: auto;
  right: 0;
}

.brand-slider__nav--prev .brand-slider__nav-icon {
  transform: rotate(180deg);
}

.brand-slider__nav-icon {
  font-size: 18px;
}

.brand-slider__nav:hover .brand-slider__nav-face,
.brand-slider__nav:focus-visible .brand-slider__nav-face {
  background: var(--brand);
  color: var(--text-on-brand);
}

.brand-slider__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

@media (min-width: 1024px) {
  .brand-slider {
    --swiper-pagination-bullet-horizontal-gap: 14px;
  }
  .brand-slider .swiper {
    border-radius: 44px;
  }
  .brand-slider__content {
    gap: 32px;
    padding: 100px 60px;
  }
  .brand-slider__logo {
    max-width: 363px;
  }
  .brand-slider__title {
    font-size: 60px;
  }
  .brand-slider__text {
    max-width: 870px;
    font-size: 18px;
    line-height: 26px;
  }
  .brand-slider .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 100px;
    right: 100px;
    margin-top: 0;
  }
  .brand-slider .swiper-pagination-bullet-active::after {
    inset: -10px;
  }
  .brand-slider__nav {
    display: block;
  }
}
.brand-card {
  position: relative;
  display: block;
  aspect-ratio: 869/580;
  border-radius: 30px;
  perspective: 1600px;
}

.brand-card__flip {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.brand-card:hover .brand-card__flip,
.brand-card:focus-within .brand-card__flip {
  transform: rotateY(180deg);
}

.brand-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.brand-card__face--front {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
}

.brand-card__face--back {
  transform: rotateY(180deg);
}

.brand-card__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.brand-card__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1024px) {
  .brand-card {
    border-radius: 34px;
  }
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
.brands-page {
  padding-bottom: 60px;
}

.brands-page__promo {
  margin-top: 30px;
}

.brands-page__brands {
  margin-top: 50px;
}

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

.brands-page__title {
  margin: 0;
}

.brands-page__intro {
  margin: 16px auto 0;
  max-width: 1760px;
  color: var(--text-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.brands-page__brands .brand-grid {
  margin-top: 30px;
}

.brands-page__extra {
  margin-top: 50px;
  overflow: hidden;
}

.brands-page__carousel {
  position: relative;
  margin-top: 30px;
}

.brands-page__swiper {
  overflow: hidden;
}

.brands-page__slide {
  width: 280px;
  height: auto;
}
.brands-page__slide .cat-card {
  aspect-ratio: 1/1;
}
.brands-page__slide .cat-card__face--back {
  will-change: transform;
}

.brands-page__nav {
  position: absolute;
  bottom: -1px;
  z-index: 3;
  display: none;
  width: 127px;
  height: 134px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-white);
  cursor: pointer;
}

.brands-page__nav--prev {
  left: 0;
}
.brands-page__nav--prev .brands-page__nav-drop {
  left: -1px;
  bottom: -1px;
  transform: rotateY(180deg);
}

.brands-page__nav--next {
  right: 0;
}
.brands-page__nav--next .brands-page__nav-drop {
  right: -1px;
  bottom: -1px;
}

.brands-page__nav-drop {
  position: absolute;
  width: 100%;
  height: 100%;
}

.brands-page__nav-face {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  transition: background-color 0.2s, color 0.2s;
}

.brands-page__nav--next .brands-page__nav-face {
  left: auto;
  right: 20px;
}

.brands-page__nav--prev .brands-page__nav-icon {
  transform: rotate(180deg);
}

.brands-page__nav-icon {
  font-size: 18px;
}

.brands-page__nav:hover .brands-page__nav-face,
.brands-page__nav:focus-visible .brands-page__nav-face {
  background: var(--brand);
  color: var(--text-on-brand);
}

.brands-page__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.brands-page__info {
  margin-top: 50px;
}

@media (min-width: 1024px) {
  .brands-page {
    padding-bottom: 100px;
  }
  .brands-page__promo {
    margin-top: 50px;
  }
  .brands-page__brands {
    margin-top: 100px;
  }
  .brands-page__intro {
    margin-top: 21px;
    font-size: 22px;
    line-height: 30px;
  }
  .brands-page__brands .brand-grid {
    margin-top: 50px;
  }
  .brands-page__extra {
    margin-top: 100px;
  }
  .brands-page__carousel {
    margin-top: 50px;
  }
  .brands-page__slide {
    width: 423.5px;
  }
  .brands-page__nav {
    display: block;
  }
  .brands-page__info {
    margin-top: 100px;
  }
}
.vac-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s;
}

.vac-card__head {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 8px;
}

.vac-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-transform: none;
  color: var(--text-heading);
  transition: color 0.2s;
}

.vac-card__badge {
  align-self: flex-start;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 34px;
  background: var(--danger);
  color: var(--text-on-brand);
}

.vac-card__badge-icon {
  font-size: 18px;
}

.vac-card__badge-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vac-card__excerpt {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-base);
}

.vac-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-heading);
}

.vac-card__location,
.vac-card__salary {
  white-space: nowrap;
}

.vac-card:hover .vac-card__title,
.vac-card:focus-visible .vac-card__title {
  color: var(--brand-accent);
}

.vac-card:hover {
  border-color: var(--text-faint);
}

@media (min-width: 1024px) {
  .vac-card {
    gap: 22px;
    padding: 34px;
    border-radius: 34px;
  }
  .vac-card__head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  .vac-card__title {
    font-size: 22px;
    line-height: 26px;
  }
  .vac-card__excerpt {
    font-size: 18px;
    line-height: 26px;
  }
  .vac-card__meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    line-height: 26px;
  }
}
.vacancies-page {
  padding-block: 16px 50px;
}

.vac-filter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-card);
}

.vac-filter__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--text-heading);
  white-space: nowrap;
}

.vac-filter__search {
  position: relative;
  flex: none;
}

.vac-filter__input {
  width: 100%;
  height: 46px;
  padding: 0 52px 0 26px;
  border: 1px solid var(--border-card);
  border-radius: 34px;
  background: var(--bg-surface);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-base);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.vac-filter__input::-webkit-search-cancel-button {
  display: none;
}

.vac-filter__input::-moz-placeholder {
  color: var(--text-base);
  opacity: 1;
}

.vac-filter__input::placeholder {
  color: var(--text-base);
  opacity: 1;
}

.vac-filter__search-icon {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--text-heading);
  pointer-events: none;
}

.vac-filter__select {
  width: 100%;
  height: 46px;
  padding: 0 48px 0 26px;
  border: 1px solid var(--border-card);
  border-radius: 34px;
  background-color: var(--bg-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M0.985 3.5 6 8.5 11.014 3.5' stroke='%23AEAEAD' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 26px center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--text-base);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.vacancies-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.vacancies-page__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .vacancies-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .vacancies-page {
    padding-block: 50px 100px;
  }
  .vac-filter {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
  }
  .vac-filter__search {
    flex: 1 1 280px;
  }
  .vac-filter__select {
    width: auto;
  }
  .vacancies-page__grid {
    row-gap: 50px;
    margin-top: 100px;
  }
  .vacancies-page__footer {
    gap: 32px;
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .vacancies-page__grid {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
}
body {
  font-family: var(--font-sans);
  color: var(--text-base);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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