/*
Theme Name: Albino
Author: Codex
Description: Custom WordPress theme built for ACF Flexible Content.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: albino
*/

:root {
  --albino-bg: #f9f9f9;
  --albino-surface: #ffffff;
  --albino-ink: #151515;
  --albino-muted: #69675f;
  --albino-line: #d9d3c7;
  --albino-accent: #0f766e;
  --albino-accent-ink: #ffffff;
  --albino-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--albino-bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--albino-ink);
  background: var(--albino-bg);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 0;
  background: var(--albino-bg);
  color: #323540;
  padding: 0;
}

.site-header__inner,
.site-footer__inner,
.section__inner {
  width: min(calc(100% - 32px), var(--albino-max));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, calc(100vw - 1144px), 269px);
  width: min(calc(100% - 32px), 1440px);
  min-height: 0;
}

.site-header__logo {
  display: block;
  flex: 0 0 148px;
  width: 148px;
  padding: 10px;
  outline: 0;
  text-decoration: none;
}

.site-header__logo img {
  width: 128px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 45px;
  width: 774px;
  height: 49px;
  padding: 11px 22px 11px 26px;
  border-radius: 12px;
  background: #f5f5f5;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 31px;
  width: 622px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu a,
.site-header__language,
.site-header__button {
  display: inline-flex;
  align-items: center;
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-header__menu a:hover,
.site-header__language:hover {
  color: #4871ab;
}

.site-header__language {
  gap: 8px;
  flex: 0 0 auto;
}

.site-header__language-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.site-header__language-arrow {
  width: 11px;
  height: 6px;
  object-fit: contain;
  transform: rotate(180deg);
}

.site-header__button {
  justify-content: center;
  width: 180px;
  height: 49px;
  padding: 11px 19px;
  border-radius: 12px;
  background: #3f71a9;
  color: #fff;
}

.site-header__button:hover {
  background: #356294;
}

.site-header__toggle,
.hoff-header__toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 49px;
  height: 49px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #3f71a9;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header__toggle:hover,
.hoff-header__toggle:hover {
  background: #356294;
}

.site-header__toggle-line,
.hoff-header__toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  margin-left: -10px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle-line:nth-child(1),
.hoff-header__toggle-line:nth-child(1) {
  transform: translateY(-6px);
}

.site-header__toggle-line:nth-child(3),
.hoff-header__toggle-line:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(1),
.hoff-header.is-menu-open .hoff-header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(2),
.hoff-header.is-menu-open .hoff-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(3),
.hoff-header.is-menu-open .hoff-header__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
}

.site-header__logo:focus-visible,
.site-header__menu a:focus-visible,
.site-header__language:focus-visible,
.site-header__button:focus-visible,
.site-header__toggle:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.site-main {
  min-height: calc(100vh - 153px);
}

.site-footer {
  border-top: 0;
}

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 68vh;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--albino-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.rich-text h2 {
  margin: 0;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(48px, 9vw, 112px);
}

.hero__text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--albino-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 32px;
  padding: 0 22px;
  border-radius: 6px;
  background: var(--albino-accent);
  color: var(--albino-accent-ink);
  font-weight: 700;
  text-decoration: none;
}

.rich-text {
  background: var(--albino-surface);
  border-block: 1px solid var(--albino-line);
}

.rich-text__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
}

.rich-text h2 {
  font-size: clamp(32px, 5vw, 64px);
}

.rich-text__body {
  color: var(--albino-muted);
  font-size: 18px;
}

.rich-text__body > :first-child {
  margin-top: 0;
}

.rich-text__body > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .site-header__inner {
    position: relative;
    gap: 16px;
    justify-content: space-between;
    min-height: 69px;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__actions {
    position: absolute;
    z-index: 60;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(31, 48, 74, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-menu-open .site-header__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__nav {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 14px 16px;
  }

  .site-header__menu {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .site-header__menu a {
    width: 100%;
    padding: 9px 0;
    white-space: normal;
  }

  .site-header__language {
    align-self: flex-start;
    padding: 6px 0;
  }

  .site-header__button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 58vh;
  }

  .rich-text__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: var(--albino-bg);
  }

  .site-header__inner {
    align-items: center;
    gap: 12px;
    width: calc(100% - 32px);
    min-height: 52px;
  }

  .site-header__logo {
    flex-basis: 112px;
    width: 112px;
    padding: 6px 0;
  }

  .site-header__logo img {
    width: 98px;
  }

  .site-header__actions {
    gap: 8px;
    padding: 10px;
  }

  .site-header__nav {
    height: auto;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .site-header__toggle {
    width: 42px;
    height: 40px;
    border-radius: 10px;
  }

  .site-header__language-icon {
    width: 14px;
    height: 14px;
  }

  .site-header__language-arrow {
    display: none;
  }

  .site-header__language,
  .site-header__button {
    font-size: 15px;
  }

  .site-header__button {
    min-height: 44px;
    height: auto;
    white-space: normal;
  }
}

.home .site-header {
  display: none;
}

.home .site-main {
  min-height: 0;
}

.hoff-landing {
  --hoff-blue: #2861b7;
  --hoff-blue-dark: #194779;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--albino-bg);
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hoff-landing__blue {
  position: relative;
  height: 1018px;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 95%, rgba(70, 134, 255, 0.78) 0, rgba(70, 134, 255, 0.38) 24%, rgba(70, 134, 255, 0) 58%),
    radial-gradient(circle at 82% 12%, rgba(43, 107, 191, 0.38) 0, rgba(43, 107, 191, 0) 34%),
    linear-gradient(180deg, #1c4b80 0%, #2f6fd4 100%);
}

.hoff-landing__object {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: max(1440px, 100vw);
  height: 1018px;
  max-width: none;
  object-fit: cover;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.hoff-header {
  position: absolute;
  z-index: 4;
  top: 30px;
  left: 30px;
  right: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 69px;
  margin: 0;
}

.hoff-header__logo {
  display: flex;
  align-items: center;
  width: 148px;
  padding: 10px;
  outline: none;
  text-decoration: none;
}

.hoff-header__logo:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.hoff-header__logo img {
  width: 128px;
  height: auto;
  max-width: none;
}

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

.hoff-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 774.215px;
  height: 49px;
  padding: 11px 22px 11px 26px;
  border-radius: 12px;
  background: #f5f5f5;
}

.hoff-header__nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
  width: 622px;
  height: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hoff-header__nav a,
.hoff-header__language,
.hoff-header__button {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.hoff-header__nav a,
.hoff-header__language {
  color: #323540;
}

.hoff-header__language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hoff-header__language-icon {
  width: 15.431px;
  height: 15.431px;
}

.hoff-header__language-arrow {
  width: 10.516px;
  height: 5.833px;
  transform: rotate(180deg);
}

.hoff-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 49px;
  padding: 11px 19px;
  border-radius: 12px;
  background: #3f71a9;
  color: #fff;
}

.hoff-header__button:hover {
  background: #4d82bd;
}

.hoff-header__nav a:focus-visible,
.hoff-header__language:focus-visible,
.hoff-header__button:focus-visible,
.hoff-header__toggle:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-landing__hero {
  position: relative;
  z-index: 2;
  width: 761px;
  padding-top: 188px;
  padding-left: 42px;
}

.hoff-landing__hero h1 {
  width: 761px;
  margin: 0;
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hoff-landing__lead {
  width: 411px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.hoff-landing__lead p {
  margin: 0;
}

.hoff-landing__cta {
  display: grid;
  grid-template-columns: 50px 159px;
  gap: 5px;
  width: 214px;
  height: 50px;
  margin-top: 30px;
  color: #fff;
  text-decoration: none;
}

.hoff-landing__cta-icon,
.hoff-landing__cta-label {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: 6px;
  background: rgba(63, 113, 169, 0.61);
}

.hoff-landing__cta-icon {
  justify-content: center;
}

.hoff-landing__cta-icon img {
  width: 24px;
  height: 24px;
}

.hoff-landing__cta-label {
  justify-content: flex-start;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.hoff-landing__cta:hover .hoff-landing__cta-icon,
.hoff-landing__cta:hover .hoff-landing__cta-label {
  background: rgba(78, 131, 190, 0.72);
}

.hoff-landing__features-head {
  position: absolute;
  z-index: 2;
  top: 674px;
  left: 39.5px;
  right: 39.5px;
}

.hoff-landing__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  text-decoration: none;
}

.hoff-landing__scroll img {
  width: 18px;
  height: 10px;
}

.hoff-landing__features-head h2 {
  position: relative;
  margin: 43px 0 0;
  padding-bottom: 28px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hoff-landing__features-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.hoff-landing__cards-wrap {
  --hoff-cards-overlap: 148px;
  position: relative;
  z-index: 3;
  margin-top: calc(var(--hoff-cards-overlap) * -1);
  padding: 0 39.5px 20px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--hoff-cards-overlap),
    var(--albino-bg) var(--hoff-cards-overlap),
    var(--albino-bg) 100%
  );
}

.hoff-landing__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  max-width: 1361px;
  margin: 0 auto;
}

.hoff-card {
  height: 340px;
  padding: 29px 25px 28px;
  border-radius: 22px;
  background: #fff;
  color: #060607;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
}

.hoff-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #4871ab;
}

.hoff-card__icon img {
  width: 59px;
  height: 59px;
  object-fit: contain;
}

.hoff-card h3 {
  width: 239px;
  margin: 37px 0 0;
  color: #060607;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-card p {
  width: min(100%, 280px);
  margin: 24px 0 0;
  color: #323540;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
}

.hoff-about {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 56px 0 0;
}

.hoff-about__inner {
  position: relative;
  width: min(calc(100% - 52px), 1397px);
  margin: 0 auto;
}

.hoff-about h2 {
  margin: 0 0 24px;
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hoff-about__swiper {
  width: 100%;
}

.hoff-about .swiper-slide.hoff-about__slide {
  display: grid;
  grid-template-columns: 369px 568px 452px;
  gap: 4px;
  align-items: center;
  width: 100%;
  min-height: 390px;
}

.hoff-about__image {
  width: 369px;
  padding: 10px;
}

.hoff-about__image img {
  width: 349px;
  aspect-ratio: 349 / 332;
  border-radius: 8px;
  object-fit: cover;
}

.hoff-about__year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 568px;
  min-height: 250px;
}

.hoff-about__year span {
  display: block;
  color: #4871ab;
  font-size: 225px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hoff-about__copy {
  width: 452px;
}

.hoff-about__copy h3 {
  width: 452px;
  margin: 0;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hoff-about__text {
  width: 421px;
  margin-top: 26px;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hoff-about__text p {
  margin: 0;
}

.hoff-about__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 50px;
  margin-top: 28px;
  border-radius: 6px;
  background: rgba(212, 212, 212, 0.31);
  color: #a5a7ac;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.hoff-about__nav {
  position: absolute;
  z-index: 2;
  top: 363px;
  left: 50%;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.hoff-about__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 40px;
  background: rgba(212, 212, 212, 0.31);
  color: #323540;
  cursor: pointer;
  font: inherit;
}

.hoff-about__nav--next {
  background: #323540;
  color: #fff;
}

.hoff-about__nav-button span {
  display: block;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.hoff-about__nav-button:focus-visible,
.hoff-about__timeline-button:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-about__timeline {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 106px;
  min-height: 60px;
  margin-top: 39px;
  padding: 0 195px 0 0;
}

.hoff-about__timeline::before {
  content: "";
  position: absolute;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  bottom: 14px;
  height: 1px;
  background: #d4d4d4;
}

.hoff-about__timeline::after {
  content: "";
  position: absolute;
  left: calc((100vw - 100%) / -2);
  bottom: 14px;
  width: calc(50% - 134px);
  height: 1px;
  background: #3f71a9;
}

.hoff-about__timeline-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 60px;
  background: #a5a7ac;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.hoff-about__timeline-button span {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hoff-about__timeline-button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d4d4d4;
  transform: translateX(-50%);
}

.hoff-about__timeline-button.is-active {
  background: #3f71a9;
}

.hoff-about__timeline-button.is-active::after {
  background: #4871ab;
}

.hoff-stats {
  background: var(--albino-bg);
  padding: 42px 0 58px;
  color: #323540;
}

.hoff-stats__inner {
  display: grid;
  grid-template-columns: 362px minmax(0, 516.9px) minmax(0, 516.9px);
  gap: 12px;
  width: min(calc(100% - 6px), 1434px);
  margin: 0 auto;
}

.hoff-stats__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hoff-stats__column--right {
  gap: 11px;
}

.hoff-stats__intro,
.hoff-stats__metric,
.hoff-stats__cta {
  border-radius: 22px;
}

.hoff-stats__intro {
  display: flex;
  flex-direction: column;
  height: 310.688px;
  padding: 29px 18px 51px;
  background: #fff;
}

.hoff-stats__intro h2 {
  margin: 0;
  color: #060607;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-stats__intro-text {
  width: 100%;
  max-width: 327px;
  margin-top: 42px;
  color: #323540;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-stats__intro-text p {
  margin: 0;
}

.hoff-stats__intro-text p + p {
  margin-top: 19px;
}

.hoff-stats__intro-text span {
  color: #3f71a9;
}

.hoff-stats__metric {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: #323540;
}

.hoff-stats__metric--light_blue {
  background: #d4e2f1;
}

.hoff-stats__metric--blue {
  background: #4871ab;
  color: #fff;
}

.hoff-stats__metric--dark {
  background: #151616;
  color: #fff;
}

.hoff-stats__metric-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hoff-stats__value,
.hoff-stats__label,
.hoff-stats__text {
  position: relative;
  z-index: 1;
}

.hoff-stats__value {
  margin: 0;
  color: #3f71a9;
  font-size: 100px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.hoff-stats__metric--blue .hoff-stats__value,
.hoff-stats__metric--dark .hoff-stats__value {
  color: #fff;
}

.hoff-stats__label {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-stats__text {
  margin-top: auto;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-stats__text p {
  margin: 0;
}

.hoff-stats__column--left .hoff-stats__metric {
  height: 468px;
  padding: 32px 28px 47px;
}

.hoff-stats__column--left .hoff-stats__metric-bg {
  top: 102px;
  left: 0;
  width: 293px;
  opacity: 0.15;
  transform: rotate(-12deg);
}

.hoff-stats__column--center .hoff-stats__metric:first-child,
.hoff-stats__column--right .hoff-stats__metric:first-child {
  height: 408.688px;
}

.hoff-stats__column--center .hoff-stats__metric:first-child {
  padding: 22px 50px 64px 33px;
}

.hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__label {
  margin-top: 66px;
}

.hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__text {
  margin-top: 50px;
}

.hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__metric-bg {
  right: 30px;
  bottom: 0;
  width: 418px;
  opacity: 0.05;
}

.hoff-stats__column--center .hoff-stats__metric:nth-child(2) {
  height: 369px;
  padding: 21px 49px 42px 33px;
}

.hoff-stats__column--center .hoff-stats__metric:nth-child(2) .hoff-stats__label {
  margin-top: 50px;
}

.hoff-stats__column--right .hoff-stats__metric:first-child {
  padding: 22px 50px 54px 28px;
}

.hoff-stats__column--right .hoff-stats__metric:first-child .hoff-stats__label {
  margin-top: 8px;
}

.hoff-stats__column--right .hoff-stats__metric:nth-child(2) {
  height: 257px;
  padding: 21px 27px 96px;
}

.hoff-stats__column--right .hoff-stats__metric:nth-child(2) .hoff-stats__metric-bg {
  top: 24px;
  right: 8px;
  width: 226px;
  opacity: 0.08;
  transform: rotate(13deg);
}

.hoff-stats__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  padding: 0 56px 0 28px;
  overflow: hidden;
  background: #3f71a9;
  color: #fff;
  text-decoration: none;
}

.hoff-stats__cta img {
  width: 206px;
  opacity: 0.3;
}

.hoff-stats__cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 50px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-stats__cta:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-motion-ready .hoff-stats__reveal {
  opacity: 0;
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.18, 1),
    transform 920ms cubic-bezier(0.2, 0.7, 0.18, 1);
  transition-delay: var(--hoff-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.hoff-motion-ready .hoff-stats__reveal--from-top {
  transform: translate3d(0, -54px, 0) scaleY(0.88);
  transform-origin: top center;
}

.hoff-motion-ready .hoff-stats__reveal--from-bottom {
  transform: translate3d(0, 54px, 0) scaleY(0.88);
  transform-origin: bottom center;
}

.hoff-motion-ready .hoff-stats__reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleY(1);
}

.hoff-beltop {
  background: #003d48;
  color: #fff;
  padding: 50px 53px 76px 34px;
}

.hoff-beltop__inner {
  display: grid;
  grid-template-columns: 482px minmax(0, 859px);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(100%, 1367.5px);
  margin: 0 auto;
}

.hoff-beltop__hero-image {
  position: relative;
  width: 462px;
  height: 654px;
  margin: 10px;
  overflow: hidden;
  border-radius: 15px;
}

.hoff-beltop__hero-image img {
  position: absolute;
  top: -37.16%;
  left: -95.67%;
  width: 415.58%;
  max-width: none;
  height: 155.96%;
  object-fit: cover;
}

.hoff-beltop__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 58px;
  width: 100%;
}

.hoff-beltop__logo {
  position: relative;
  width: 244px;
  height: 71px;
  overflow: hidden;
}

.hoff-beltop__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hoff-beltop__products {
  display: grid;
  grid-template-columns: 270px 270px 271px;
  gap: 24px;
  width: 100%;
}

.hoff-beltop__product {
  min-width: 0;
}

.hoff-beltop__product img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  object-fit: cover;
}

.hoff-beltop__product h3 {
  margin: 19px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-beltop__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: min(100%, 674px);
}

.hoff-beltop__text {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-beltop__text p {
  margin: 0;
}

.hoff-beltop__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 50px;
  border-radius: 6px;
  background: rgba(212, 212, 212, 0.16);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.hoff-beltop__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hoff-albino-products {
  background: var(--albino-bg);
  color: #212121;
  padding: 70px 0 78px;
}

.hoff-albino-products__inner {
  display: grid;
  grid-template-columns: 564px 790px;
  align-items: end;
  gap: 17px;
  width: min(calc(100% - 68px), 1371px);
  margin: 0 auto;
}

.hoff-albino-products__left {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 564px;
}

.hoff-albino-products__logo {
  width: 227px;
  padding: 10px;
}

.hoff-albino-products__logo img {
  width: 207px;
  aspect-ratio: 918 / 296;
  object-fit: contain;
  object-position: left bottom;
}

.hoff-albino-products__hero-image {
  width: 100%;
  padding: 10px;
}

.hoff-albino-products__hero-image img {
  width: 100%;
  height: 471px;
  border-radius: 12px;
  object-fit: cover;
}

.hoff-albino-products__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 27px;
  width: 790px;
}

.hoff-albino-products__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  width: 626px;
}

.hoff-albino-products__text {
  color: #212121;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-albino-products__text p {
  margin: 0;
}

.hoff-albino-products__button {
  display: inline-grid;
  grid-template-columns: 50px 159px;
  gap: 5px;
  color: #a5a7ac;
  text-decoration: none;
}

.hoff-albino-products__button-icon,
.hoff-albino-products__button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 6px;
  background: rgba(212, 212, 212, 0.31);
}

.hoff-albino-products__button-icon {
  width: 50px;
}

.hoff-albino-products__button-icon img {
  width: 24px;
  height: 24px;
}

.hoff-albino-products__button-label {
  width: 159px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.hoff-albino-products__button:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-albino-products__items {
  display: grid;
  grid-template-columns: 255px 252px 255px;
  gap: 14px;
  width: 100%;
}

.hoff-albino-products__item {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.hoff-albino-products__item h3 {
  width: 100%;
  margin: 0;
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-albino-products__item img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
}

.hoff-albino-products__item:nth-child(2) img {
  height: auto;
  aspect-ratio: 295 / 304;
  border-radius: 15px;
}

.hoff-offices {
  background: var(--albino-bg);
  color: #fff;
  padding: 0 0 70px;
}

.hoff-offices__inner {
  position: relative;
  width: min(calc(100% - 40px), 1400px);
  min-height: 625px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #23252a;
  padding: 36px 2px 27px 862px;
}

.hoff-offices__map {
  position: absolute;
  top: 19px;
  left: -450px;
  width: 1217px;
  height: 600px;
  pointer-events: none;
}

.hoff-offices__earth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hoff-offices__path {
  position: absolute;
  top: 186px;
  left: 821px;
  width: 202px;
  height: 132px;
}

.hoff-offices__marker {
  position: absolute;
  width: 25px;
  height: 31px;
  object-fit: contain;
}

.hoff-offices__marker--china {
  top: 249px;
  left: 909px;
  width: 16px;
  height: 20px;
}

.hoff-offices__marker--central {
  top: 211px;
  left: 772px;
}

.hoff-offices__marker--north {
  top: 105px;
  left: 888px;
}

.hoff-offices__country {
  position: absolute;
  top: 247px;
  left: 937px;
  display: inline-flex;
  align-items: center;
  min-width: 75px;
  height: 32px;
  padding: 0 11px;
  border-radius: 6px;
  background: #fff;
  color: #323540;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-offices__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  width: 492px;
}

.hoff-offices__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 459px;
}

.hoff-offices__content h2 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.hoff-offices__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-height: 465px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #fff rgba(255, 255, 255, 0.15);
  scrollbar-width: thin;
}

.hoff-offices__list::-webkit-scrollbar {
  width: 11px;
}

.hoff-offices__list::-webkit-scrollbar-track {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
}

.hoff-offices__list::-webkit-scrollbar-thumb {
  border-radius: 22px;
  background: #fff;
}

.hoff-offices__panel.is-scrollable .hoff-offices__list {
  scrollbar-width: none;
}

.hoff-offices__panel.is-scrollable .hoff-offices__list::-webkit-scrollbar {
  display: none;
}

.hoff-offices__card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  height: 111px;
  padding: 12px 70px 7px 20px;
  border-radius: 22px;
  background: #fff;
  color: #323540;
}

.hoff-offices__card-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 171px;
}

.hoff-offices__card h3,
.hoff-offices__card p {
  margin: 0;
}

.hoff-offices__card h3 {
  color: #323540;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-offices__card p {
  color: #a5a7ac;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-offices__phones {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.hoff-offices__phones a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.hoff-offices__phones a:nth-child(2) {
  padding: 10px;
}

.hoff-offices__phones img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hoff-offices__phones a:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-offices__scrollbar {
  position: relative;
  display: none;
  flex: 0 0 11px;
  width: 11px;
  height: 465px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.hoff-offices__scrollbar span {
  display: block;
  width: 11px;
  height: var(--hoff-offices-scroll-thumb, 195px);
  border-radius: 22px;
  background: #fff;
  transform: translateY(var(--hoff-offices-scroll-offset, 0px));
  touch-action: none;
  user-select: none;
  will-change: height, transform;
}

.hoff-offices__panel.is-scrollable .hoff-offices__scrollbar {
  display: block;
}

.hoff-partners {
  --hoff-partners-progress: 9.84%;
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 0 0 84px;
}

.hoff-partners__inner {
  display: flex;
  flex-direction: column;
  gap: 58px;
  width: min(calc(100% - 31px), 1409px);
  margin: 0 auto;
  overflow: hidden;
}

.hoff-partners__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1369px);
}

.hoff-partners__head h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.hoff-partners__nav {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 135px;
  height: 62px;
}

.hoff-partners__nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: rgba(63, 113, 169, 0.36);
  cursor: pointer;
  transition: opacity 180ms ease, background-color 180ms ease;
}

.hoff-partners__nav-button::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hoff-partners__nav--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.hoff-partners__nav--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.hoff-partners__nav-button:hover {
  background: rgba(63, 113, 169, 0.52);
}

.hoff-partners__nav-button:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.hoff-partners__nav-button.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.hoff-partners__body {
  --hoff-partners-copy-mask: 554px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 187px;
  width: 100%;
  isolation: isolate;
}

.hoff-partners__body::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--hoff-partners-copy-mask);
  background: var(--albino-bg);
  pointer-events: none;
}

.hoff-partners__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  flex: 0 0 367px;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
  width: 367px;
  color: #323540;
  line-height: 1.15;
}

.hoff-partners__copy h3 {
  width: 100%;
  margin: 0;
  color: #060607;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-partners__text {
  color: #323540;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hoff-partners__text p {
  margin: 0;
}

.hoff-partners__swiper {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.hoff-partners__slide {
  width: 250px;
}

.hoff-partners__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 248px;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
}

.hoff-partners__logo-card img {
  width: 206px;
  max-width: 100%;
  max-height: 134px;
  object-fit: contain;
}

.hoff-partners__logo-card span {
  color: #a5a7ac;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.hoff-partners__progress {
  width: min(100%, 1353px);
  height: 2px;
  background: #a5a7ac;
}

.hoff-partners__progress span {
  display: block;
  width: var(--hoff-partners-progress);
  min-width: 133px;
  max-width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: width 320ms ease;
}

.albino-partner-form {
  background: var(--albino-bg);
  color: #fff;
  padding: 0 0 57px;
}

.albino-partner-form__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(48px, calc(100vw - 1037px), 372px);
  width: min(100%, 1440px);
  min-height: 387px;
  margin: 0 auto;
  padding: 53px 62px 85px 40px;
  border-radius: 30px;
  background: #4871ab;
}

.albino-partner-form__title {
  flex: 0 0 auto;
  margin: 0;
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.albino-partner-form__form {
  flex: 0 0 483px;
  width: 483px;
  max-width: 100%;
}

.albino-partner-form .wpcf7 {
  width: 100%;
}

.albino-partner-form .hidden-fields-container {
  display: none;
}

.albino-partner-form .wpcf7 form,
.albino-partner-form__fields {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin: 0;
}

.albino-partner-form p {
  margin: 0;
}

.albino-partner-form__fields > p {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.albino-partner-form__fields > p > br {
  display: none;
}

.albino-partner-form__field {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
}

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

.albino-partner-form input[type="text"],
.albino-partner-form input[type="tel"] {
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 0 0 29px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  outline: 0;
}

.albino-partner-form input[type="text"]::placeholder,
.albino-partner-form input[type="tel"]::placeholder {
  color: #fff;
  opacity: 1;
}

.albino-partner-form input[type="text"]:focus,
.albino-partner-form input[type="tel"]:focus {
  border-bottom-color: #fff;
}

.albino-partner-form__actions {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.albino-partner-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 177px;
  height: 50px;
  min-height: 0;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.albino-partner-form input[type="submit"]:hover {
  background: #eef3fa;
}

.albino-partner-form input[type="submit"]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.albino-partner-form .wpcf7-spinner {
  position: absolute;
  margin: 14px 0 0 12px;
}

.albino-partner-form .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.albino-partner-form .wpcf7 form .wpcf7-response-output {
  margin: -24px 0 0;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.albino-partner-form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.albino-partner-lead {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 0;
}

.albino-partner-lead__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 356px);
  width: min(100%, 1440px);
  min-height: 485px;
  margin: 0 auto;
}

.albino-partner-lead__form-panel {
  padding: 64px 48px 56px 40px;
  background: var(--albino-bg);
}

.albino-partner-lead__form-panel h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 37px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.albino-partner-lead__intro {
  max-width: 360px;
  margin-top: 18px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.albino-partner-lead__intro p,
.albino-partner-lead__contact-text p {
  margin: 0;
}

.albino-partner-lead__form {
  max-width: 514px;
  margin-top: 43px;
}

.albino-partner-lead .wpcf7,
.albino-partner-lead .wpcf7 form {
  width: 100%;
}

.albino-partner-lead .hidden-fields-container,
.albino-partner-lead__fields > p > br {
  display: none;
}

.albino-partner-lead .wpcf7 form,
.albino-partner-lead__fields,
.albino-partner-lead__fields > p {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
}

.albino-partner-lead p {
  margin: 0;
}

.albino-partner-lead__field {
  position: relative;
  display: block;
  width: 100%;
  height: 43px;
  margin: 0;
}

.albino-partner-lead .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.albino-partner-lead input[type="text"],
.albino-partner-lead input[type="tel"] {
  display: block;
  width: 100%;
  height: 43px;
  margin: 0;
  padding: 0 0 19px;
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  outline: 0;
}

.albino-partner-lead input[type="text"]::placeholder,
.albino-partner-lead input[type="tel"]::placeholder {
  color: #a5a7ac;
  opacity: 1;
}

.albino-partner-lead input[type="text"]:focus,
.albino-partner-lead input[type="tel"]:focus {
  border-bottom-color: #1a1a1a;
}

.albino-partner-lead__actions {
  display: flex;
  align-items: center;
  min-height: 37px;
  margin-top: 8px;
}

.albino-partner-lead input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 133px;
  height: 37px;
  min-height: 0;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 3px;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.albino-partner-lead input[type="submit"]:hover {
  background: #2f333a;
  transform: translateY(-1px);
}

.albino-partner-lead input[type="submit"]:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.albino-partner-lead .wpcf7-spinner {
  position: absolute;
  margin: 9px 0 0 10px;
}

.albino-partner-lead .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 3px);
  color: #c61d1d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.albino-partner-lead .wpcf7 form .wpcf7-response-output {
  margin: -10px 0 0;
  padding: 9px 10px;
  border-color: rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1.25;
}

.albino-partner-lead .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.albino-partner-lead__contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 485px;
  padding: 56px 33px 48px;
  background: #2852cf;
  color: #fff;
}

.albino-partner-lead__contact-panel h3 {
  max-width: 260px;
  margin: 0;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.albino-partner-lead__contact-text {
  max-width: 250px;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.albino-partner-lead__contacts {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
}

.albino-partner-lead__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.albino-partner-lead__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.albino-partner-lead__contact-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.albino-partner-lead__contact-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.albino-partner-lead__contact-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-partner-lead__contact-copy a,
.albino-partner-lead__contact-copy strong {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-decoration: none;
}

.albino-partner-lead__contact-copy a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.albino-blog {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 0 0 96px;
}

.albino-blog__inner {
  width: min(calc(100% - 67px), 1373px);
  margin: 0 auto;
}

.albino-blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 50px;
}

.albino-blog__head--archive {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  margin-bottom: 35px;
}

.albino-blog__breadcrumbs {
  margin: 0 0 7px;
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.albino-blog__head h1,
.albino-blog__head h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-blog__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 50px;
  border-radius: 8px;
  background: #4871ab;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.albino-blog__all:hover {
  background: #3f6598;
}

.albino-blog__all:focus-visible,
.albino-blog-card__link:focus-visible,
.albino-single__content a:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.albino-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 13px;
}

.albino-blog-card {
  min-width: 0;
  border-radius: 12px;
}

.albino-blog-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.albino-blog-card__image {
  width: 100%;
  aspect-ratio: 449 / 446;
  border-radius: 12px;
  overflow: hidden;
}

.albino-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.albino-blog-card__link:hover .albino-blog-card__image img {
  transform: scale(1.035);
}

.albino-blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 19px;
  margin-top: 18px;
}

.albino-blog-card__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 409px);
  min-height: 90px;
}

.albino-blog-card h2,
.albino-blog-card h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-blog-card p {
  margin: 0;
  color: #323540;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.albino-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.albino-blog-card__more {
  position: relative;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: #eef0f4;
  transition: background-color 180ms ease;
}

.albino-blog-card__more::before,
.albino-blog-card__more::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background: #8f98a6;
  transform: translate(-50%, -50%);
}

.albino-blog-card__more::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.albino-blog-card time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #323540;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
}

.albino-blog-card time img {
  width: 24.5px;
  height: 24.5px;
  object-fit: contain;
}

.albino-blog-card__link:hover .albino-blog-card__more {
  background: #dde3ed;
}

.albino-blog--archive {
  padding: 6px 0 96px;
}

.albino-posts-page {
  background: var(--albino-bg);
}

.albino-single {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 38px 0 96px;
}

.albino-single__top {
  width: min(calc(100% - 67px), 1354px);
  margin: 0 auto 47px;
}

.albino-single__breadcrumbs {
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.albino-single__article {
  width: min(calc(100% - 80px), 792px);
  margin: 0 auto;
}

.albino-single__image {
  aspect-ratio: 792 / 596;
  overflow: hidden;
  border-radius: 12px;
}

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

.albino-single__body {
  margin-top: 47px;
}

.albino-single__title {
  margin: 0;
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.albino-single__content {
  margin-top: 44px;
  color: #212121;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.albino-single__content > :first-child {
  margin-top: 0;
}

.albino-single__content > :last-child {
  margin-bottom: 0;
}

.albino-single__content p {
  margin: 0 0 38px;
}

.albino-single__content h2,
.albino-single__content h3,
.albino-single__content h4 {
  margin: 44px 0 20px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.2;
}

.albino-single__content h2 {
  font-size: 30px;
}

.albino-single__content h3 {
  font-size: 26px;
}

.albino-single__content ul,
.albino-single__content ol {
  margin: 0 0 38px;
  padding-left: 1.25em;
}

.albino-single__content a {
  color: #3f71a9;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.albino-single__content a:hover {
  color: #345f91;
}

.albino-single__meta {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 91px;
}

.albino-single__share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.albino-single__share-label {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
}

.albino-single__share-buttons {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.albino-single__share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.albino-single__share-button img {
  width: 43px;
  height: 43px;
  filter: brightness(0);
  object-fit: contain;
}

.albino-single__share-button:hover {
  background: #f4f7fb;
  transform: translateY(-1px);
}

.albino-single__copy {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 257px;
  height: 43px;
  padding: 0 0 0 24px;
  border: 0;
  border-radius: 60px;
  background: #f4f4f4;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.05;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 180ms ease;
}

.albino-single__copy:hover,
.albino-single__copy.is-copied {
  background: #e9edf3;
}

.albino-single__copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #151515;
  color: #fff;
}

.albino-single__copy-icon svg {
  width: 20px;
  height: 20px;
}

.albino-single__date {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #595959;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.albino-single__date img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.albino-single__share-button:focus-visible,
.albino-single__copy:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 3px;
}

.albino-single-related {
  margin-top: 170px;
  overflow: hidden;
}

.albino-single-related__inner {
  width: min(calc(100% - 67px), 1354px);
  margin: 0 auto;
}

.albino-single-related__head {
  width: 100%;
  margin-bottom: 53px;
}

.albino-single-related .albino-blog__head h2 {
  font-size: 45px;
  line-height: 1.1;
}

.albino-single-related .albino-blog__all {
  width: 180px;
  height: 49px;
  border-radius: 12px;
  background: #3f71a9;
  font-size: 17px;
  line-height: 1.6;
}

.albino-single-related .albino-blog__all:hover {
  background: #356294;
}

.albino-single-related__swiper {
  overflow: hidden;
}

.albino-single-related .swiper-wrapper {
  align-items: stretch;
}

.albino-single-related .albino-blog-card.swiper-slide {
  width: 413px;
  height: auto;
}

.albino-single-related .albino-blog-card__link {
  height: 100%;
}

.albino-single-related .albino-blog-card__image {
  width: calc(100% - 20px);
  height: 400px;
  margin: 10px 10px 0;
  aspect-ratio: auto;
}

.albino-single-related .albino-blog-card__body {
  width: calc(100% - 20px);
  margin: 7px 10px 0;
  gap: 17px;
}

.albino-single-related .albino-blog-card__copy {
  width: min(100%, 367px);
  gap: 11px;
  min-height: 91px;
}

.albino-single-related .albino-blog-card__more {
  width: 45px;
  height: 45px;
}

.albino-single-related .albino-blog-card__more::before,
.albino-single-related .albino-blog-card__more::after {
  width: 22px;
}

.albino-single-related .albino-blog-card time img {
  width: 22px;
  height: 22px;
}

.albino-single-contact {
  margin-top: 112px;
}

.albino-page-heading {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 72px 0 51px;
}

.albino-page-heading__inner {
  width: min(calc(100% - 80px), 1368px);
  margin: 0 auto;
}

.albino-page-heading__breadcrumbs {
  margin: 0 0 8px;
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.albino-page-heading h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-contacts-info {
  overflow-x: clip;
  background: var(--albino-bg);
  color: #323540;
  padding: 0 0 80px;
}

.albino-contacts-info__inner {
  display: grid;
  grid-template-columns: minmax(320px, 557px) minmax(420px, 1fr);
  gap: clamp(58px, 8vw, 116px);
  align-items: center;
  width: min(calc(100% - 80px), 1368px);
  margin: 0 auto;
}

.albino-contacts-info__office {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

.albino-contacts-info__photo {
  width: 100%;
  aspect-ratio: 557 / 364;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: rgba(81, 81, 81, 0.05);
}

.albino-contacts-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.albino-contacts-info__card {
  min-height: 155px;
  padding: 24px 21px 24px;
  border-radius: 20px;
  background: #fff;
}

.albino-contacts-info__card h2 {
  margin: 0 0 16px;
  color: #484848;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.albino-contacts-info__details {
  display: grid;
  grid-template-columns: minmax(0, 204px) minmax(0, 187px);
  gap: 42px;
  margin: 0;
}

.albino-contacts-info__details div {
  min-width: 0;
}

.albino-contacts-info__details dt {
  margin: 0 0 7px;
  color: #484848;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.albino-contacts-info__details dd {
  margin: 0;
  color: #4871ab;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.albino-contacts-info__details a {
  color: inherit;
  text-decoration: none;
}

.albino-contacts-info__details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.albino-contacts-info__map {
  position: relative;
  width: 100%;
  height: 511px;
  min-width: 0;
  overflow: hidden;
}

.albino-contacts-info__map img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.albino-contacts-info__map--single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.albino-contacts-info__map-earth {
  top: 0;
  left: -61%;
  width: 176%;
  height: 119%;
  z-index: 0;
  filter: contrast(1.1) brightness(0.88);
  opacity: 0.78;
}

.albino-contacts-info__map--single .albino-contacts-info__map-earth {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.albino-contacts-info__map-path {
  top: 30.3%;
  left: 42.1%;
  width: 25.4%;
  height: 23.8%;
  z-index: 1;
  filter: brightness(0) saturate(100%) invert(43%) sepia(24%) saturate(1136%) hue-rotate(178deg) brightness(91%) contrast(90%);
}

.albino-contacts-info__marker {
  width: 25px;
  height: 31px;
  object-fit: contain;
  z-index: 2;
  filter: brightness(0) saturate(100%) invert(32%) sepia(88%) saturate(2146%) hue-rotate(341deg) brightness(104%) contrast(91%);
}

.albino-contacts-info__marker--china {
  top: 34.1%;
  left: 55%;
  width: 18px;
  height: 23px;
}

.albino-contacts-info__marker--central {
  top: 30.3%;
  left: 36.1%;
}

.albino-contacts-info__marker--north {
  top: 16.7%;
  left: 53.9%;
}

.albino-contacts-info__country {
  position: absolute;
  top: 44.2%;
  left: 57.8%;
  display: inline-flex;
  align-items: center;
  min-width: 75px;
  height: 31px;
  padding: 0 11px;
  border-radius: 6px;
  background: #fff;
  color: #323540;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  z-index: 3;
}

.albino-partners-grid {
  background: var(--albino-bg);
  color: #1a1a1a;
  padding: 0;
  overflow-x: clip;
}

.albino-partners-grid__inner {
  width: min(calc(100% - 80px), 1368px);
  margin: 0 auto;
}

.albino-partners-grid__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
}

.albino-partner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 425px;
  padding: 78px 42px 44px;
  border-right: 1px solid #d8dce1;
  border-bottom: 1px solid #d8dce1;
}

.albino-partner-card:nth-child(3n) {
  border-right: 0;
}

.albino-partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 146px;
}

.albino-partner-card__logo img {
  width: 238px;
  max-width: 82%;
  max-height: 145px;
  object-fit: contain;
}

.albino-partner-card__copy {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 45px;
}

.albino-partner-card h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.albino-partner-card__text {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.albino-partner-card__text p {
  margin: 0;
}

.albino-team-grid {
  overflow-x: clip;
  padding: 10px 0 88px;
  background: var(--albino-bg);
  color: #1a1a1a;
}

.albino-team-grid__inner {
  width: min(calc(100% - 80px), 1177px);
  margin: 0 auto;
}

.albino-team-grid__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 31px;
}

.albino-team-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
  background: transparent;
}

.albino-team-card__photo {
  width: 100%;
  aspect-ratio: 379 / 527;
  object-fit: cover;
  background: #e5e5e5;
}

.albino-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 0;
  padding: 0;
}

.albino-team-card h2 {
  margin: 0;
  color: #212121;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.albino-team-card__position {
  margin-top: 0;
  color: #717171;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.albino-vacancies {
  overflow: hidden;
  padding: 32px 0 60px;
  background: #4d78b0;
  color: #fff;
}

.albino-vacancies--related {
  padding: 0 0 60px;
  background: var(--albino-bg);
  color: #1a1a1a;
}

.albino-vacancies + .albino-contact-form {
  --albino-vacancies-contact-overlap: 64px;
  margin-top: calc(-1 * var(--albino-vacancies-contact-overlap));
  padding-top: var(--albino-vacancies-contact-overlap);
  background: #4d78b0;
}

.albino-vacancies__inner {
  width: min(calc(100% - 80px), 1404px);
  margin: 0 auto;
}

.albino-vacancies__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.albino-vacancies h2 {
  margin: 0;
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.albino-vacancies--related h2 {
  color: #1a1a1a;
}

.albino-vacancies__nav {
  display: none;
  flex: 0 0 auto;
  gap: 8px;
}

.albino-vacancies__arrow {
  position: relative;
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 50%;
  background: #d4e4f6;
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.albino-vacancies__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.albino-vacancies__arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.albino-vacancies__arrow--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.albino-vacancies__arrow:hover {
  background: #4e7eb8;
}

.albino-vacancies__arrow:focus-visible {
  outline: 2px solid #4e7eb8;
  outline-offset: 3px;
}

.albino-vacancies__arrow.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.albino-vacancies__swiper {
  margin-top: 37px;
  overflow: visible;
}

.albino-vacancies__wrapper {
  align-items: stretch;
}

.albino-vacancy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 436px;
  height: auto;
  min-height: 458px;
  padding: 21px 11px 24px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #1a1a1a;
}

.albino-vacancy-card h3 {
  margin: 0;
  color: #212121;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-card__responsibilities {
  margin-top: 32px;
}

.albino-vacancy-card__responsibilities h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-card__responsibilities ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 27px 0 0;
  padding: 0 0 0 27px;
}

.albino-vacancy-card__responsibilities li {
  padding-left: 0;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 177px;
  height: 50px;
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(20, 28, 77, 0.16);
  color: #878787;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.albino-vacancy-card.swiper-slide-active .albino-vacancy-card__link {
  background: #4871ab;
  color: #fff;
}

.albino-vacancy-card__link:hover {
  background: #3f6b9f;
  color: #fff;
}

.albino-vacancy-card__link:focus-visible {
  outline: 2px solid #4e7eb8;
  outline-offset: 3px;
}

.albino-partnership-steps {
  background: #4871ab;
  color: #fff;
  padding: 0;
  overflow-x: clip;
}

.albino-partnership-steps__inner {
  box-sizing: border-box;
  width: min(100%, 1440px);
  min-height: 896px;
  margin: 0 auto;
  padding: 43px 48px 70px 36px;
}

.albino-partnership-steps h2 {
  margin: 0;
  padding: 10px;
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.albino-partnership-steps__layout {
  --partnership-media-height: clamp(500px, 43.125vw, 621px);
  display: grid;
  grid-template-columns: minmax(280px, 373px) minmax(240px, 345px) minmax(420px, 568px);
  column-gap: clamp(20px, 2.4vw, 35px);
  align-items: start;
  margin-top: 51px;
}

.albino-partnership-steps__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: var(--partnership-media-height);
  padding-right: 35px;
  border-right: 2px solid rgba(255, 255, 255, 0.34);
}

.albino-partnership-steps__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.albino-partnership-steps__tab {
  position: relative;
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 0 0 0 52px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.28);
  font: inherit;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.albino-partnership-steps__tab::before,
.albino-partnership-steps__tab::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 180ms ease;
}

.albino-partnership-steps__tab::before {
  top: 16px;
  left: 0;
  width: 37px;
  height: 2px;
  background: #fff;
}

.albino-partnership-steps__tab::after {
  top: 10px;
  left: 24px;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.albino-partnership-steps__tab:hover,
.albino-partnership-steps__item.is-active .albino-partnership-steps__tab {
  color: #fff;
}

.albino-partnership-steps__tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
  border-radius: 4px;
}

.albino-partnership-steps__item.is-active .albino-partnership-steps__tab::before,
.albino-partnership-steps__item.is-active .albino-partnership-steps__tab::after {
  opacity: 1;
}

.albino-partnership-steps__features {
  width: 204px;
}

.albino-partnership-steps__feature[hidden],
.albino-partnership-steps__content[hidden],
.albino-partnership-steps__image[hidden] {
  display: none;
}

.albino-partnership-steps__feature {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.albino-partnership-steps__feature p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.albino-partnership-steps__feature img {
  display: block;
  width: 204px;
  height: 231px;
  object-fit: cover;
  object-position: 45% 50%;
}

.albino-partnership-steps__content-panels {
  min-height: var(--partnership-media-height);
}

.albino-partnership-steps__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: var(--partnership-media-height);
  padding: 0 0 10px;
}

.albino-partnership-steps__content h3 {
  max-width: 294px;
  margin: -5px 0 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 43px;
  letter-spacing: 0;
}

.albino-partnership-steps__text {
  max-width: 320px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.albino-partnership-steps__text p {
  margin: 0;
}

.albino-partnership-steps__images {
  width: 568px;
  max-width: 100%;
}

.albino-partnership-steps__image {
  width: 100%;
}

.albino-partnership-steps__image img {
  display: block;
  width: 100%;
  height: var(--partnership-media-height);
  object-fit: cover;
  object-position: center;
}

.albino-contact-form {
  --albino-contact-footer-overlap: 72px;
  position: relative;
  z-index: 1;
  background: var(--albino-bg);
  color: #fff;
  padding: 0;
  margin-bottom: calc(-1 * var(--albino-contact-footer-overlap));
}

.albino-contact-form__inner {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 150px);
  width: 100%;
  min-height: 490px;
  margin: 0;
  padding: 40px max(46px, calc((100vw - 1368px) / 2 + 46px)) calc(44px + var(--albino-contact-footer-overlap));
  border-radius: 22px 22px 0 0;
  background: #4f79b2;
}

.albino-contact-form__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.albino-contact-form__title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.albino-contact-form__contacts {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 58px 0 46px;
}

.albino-contact-form__contact {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.albino-contact-form__contact-icon,
.albino-contact-form__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.albino-contact-form__contact-icon {
  width: 56px;
  height: 56px;
}

.albino-contact-form__contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.albino-contact-form__contact-copy {
  min-width: 0;
}

.albino-contact-form__contact-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.albino-contact-form__contact-value {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-decoration: none;
}

.albino-contact-form__contact-value:hover {
  color: #fff;
}

.albino-contact-form__socials {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.albino-contact-form__socials a,
.albino-contact-form__socials img {
  width: 46px;
  height: 46px;
}

.albino-contact-form__socials img {
  object-fit: contain;
}

.albino-contact-form__form {
  align-self: start;
  min-width: 0;
  padding-top: 8px;
  color: #fff;
}

.albino-contact-form__form-title {
  max-width: 680px;
  margin: 0 0 46px;
  color: #fff;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.albino-contact-form .wpcf7,
.albino-contact-form .wpcf7 form {
  width: 100%;
}

.albino-contact-form .hidden-fields-container {
  display: none;
}

.albino-contact-form .wpcf7 form,
.albino-contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
}

.albino-contact-form p {
  margin: 0;
}

.albino-contact-form__fields > p {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.albino-contact-form__fields > p > br {
  display: none;
}

.albino-contact-form__field {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}

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

.albino-contact-form input[type="text"],
.albino-contact-form input[type="tel"],
.albino-contact-form input[type="email"],
.albino-contact-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  outline: 0;
}

.albino-contact-form input[type="text"],
.albino-contact-form input[type="tel"],
.albino-contact-form input[type="email"] {
  height: 54px;
  padding: 0 0 22px;
}

.albino-contact-form textarea {
  height: 122px;
  min-height: 122px;
  resize: vertical;
  padding: 0 0 16px;
}

.albino-contact-form input[type="text"]::placeholder,
.albino-contact-form input[type="tel"]::placeholder,
.albino-contact-form input[type="email"]::placeholder,
.albino-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.albino-contact-form input[type="text"]:focus,
.albino-contact-form input[type="tel"]:focus,
.albino-contact-form input[type="email"]:focus,
.albino-contact-form textarea:focus {
  border-bottom-color: #fff;
}

.albino-contact-form__actions {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.albino-contact-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 44px;
  min-height: 0;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: #101010;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.albino-contact-form input[type="submit"]:hover {
  background: #1f1f1f;
}

.albino-contact-form input[type="submit"]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.albino-contact-form .wpcf7-spinner {
  position: absolute;
  margin: 15px 0 0 12px;
}

.albino-contact-form .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  color: #ffd1d1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.albino-contact-form .wpcf7 form .wpcf7-response-output {
  margin: -4px 0 0;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.albino-contact-form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.albino-footer {
  position: relative;
  z-index: 2;
  background: #151616;
  border-radius: 20px 20px 0 0;
  color: #fff;
  padding: 0 53px 24px;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.albino-footer__inner {
  width: 100%;
  max-width: 1335px;
  margin: 0 auto;
}

.albino-footer__logo {
  display: block;
  width: 247px;
  padding: 10px;
  margin-bottom: 5px;
  text-decoration: none;
}

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

.albino-footer__logo:focus-visible,
.albino-footer a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.albino-footer__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.albino-footer__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  min-height: 168px;
  margin-top: 16px;
}

.albino-footer__content + .albino-footer__line {
  margin-top: 21px;
}

.albino-footer__nav {
  display: flex;
  align-items: center;
  gap: 81px;
  min-width: 0;
}

.albino-footer__column {
  min-width: 0;
}

.albino-footer__column:nth-child(1) {
  width: 176px;
}

.albino-footer__column:nth-child(2) {
  width: 200px;
}

.albino-footer__column:nth-child(3) {
  width: 257px;
}

.albino-footer__column h2 {
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: uppercase;
}

.albino-footer ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.albino-footer__column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.albino-footer__link-arrow {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 7px;
}

.albino-footer__column a span:last-child {
  min-width: 0;
}

.albino-footer a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.albino-footer .albino-footer__socials {
  flex-direction: row;
  gap: 9px;
  flex: 0 0 auto;
}

.albino-footer__socials a,
.albino-footer__socials img {
  display: block;
  width: 48px;
  height: 48px;
}

.albino-footer__socials a {
  border-radius: 999px;
}

.albino-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.albino-footer__bottom p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.albino-footer__developer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 147px;
  height: 43px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.albino-footer__developer span {
  color: #fff;
  opacity: 0.4;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.albino-footer__developer img {
  width: 25px;
  height: 28px;
  object-fit: contain;
  opacity: 0.6;
}

.albino-vacancy-single {
  background: var(--albino-bg);
  color: #1a1a1a;
}

.albino-vacancy-single__heading {
  padding-bottom: 43px;
}

.albino-vacancy-intro {
  overflow-x: clip;
  background: var(--albino-bg);
  padding: 0 0 88px;
}

.albino-vacancy-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 427fr) minmax(0, 427fr) minmax(0, 496fr);
  gap: 10px;
  align-items: center;
  width: min(calc(100% - 80px), 1370px);
  margin: 0 auto;
}

.albino-vacancy-intro__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 393px;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  word-break: break-word;
}

.albino-vacancy-intro__card--responsibilities {
  padding: 29px 18px 53px 29px;
}

.albino-vacancy-intro__card--offers {
  padding: 29px 8px 101px;
}

.albino-vacancy-intro__card h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-intro__dash-list,
.albino-vacancy-intro__bullet-list {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-intro__dash-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 380px);
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.albino-vacancy-intro__dash-list li::before {
  content: "— ";
}

.albino-vacancy-intro__bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 411px);
  margin: 27px 0 0;
  padding: 0 0 0 35px;
}

.albino-vacancy-intro__bullet-list li {
  padding-left: 0;
}

.albino-vacancy-intro__media {
  width: 100%;
  height: 413px;
  min-width: 0;
  padding: 10px;
}

.albino-vacancy-intro__media img {
  width: 100%;
  height: 393px;
  border-radius: 12px;
  object-fit: cover;
}

.albino-vacancy-form {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding: 0 30px 42px;
  background: var(--albino-bg);
  color: #fff;
}

.albino-vacancy-form + .albino-vacancy-stats {
  padding-top: 0;
}

.albino-vacancy-form__inner {
  display: grid;
  grid-template-columns: minmax(260px, auto) 483px;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  min-height: 526px;
  margin: 0 auto;
  padding: 43px 62px 92px 30px;
  border-radius: 30px;
  background: #151616;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.albino-vacancy-form__title {
  align-self: start;
  margin: 0;
  padding: 10px;
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.albino-vacancy-form__form {
  align-self: start;
  width: 483px;
  min-width: 0;
  padding-top: 0;
}

.albino-vacancy-form .wpcf7,
.albino-vacancy-form .wpcf7 form {
  width: 100%;
}

.albino-vacancy-form .hidden-fields-container {
  display: none;
}

.albino-vacancy-form .wpcf7 form,
.albino-vacancy-form__fields {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0;
}

.albino-vacancy-form p {
  margin: 0;
}

.albino-vacancy-form__fields > p {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.albino-vacancy-form__fields > p > br {
  display: none;
}

.albino-vacancy-form__field {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
}

.albino-vacancy-form__field--file {
  margin-top: -60px;
}

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

.albino-vacancy-form input[type="text"],
.albino-vacancy-form input[type="tel"],
.albino-vacancy-form input[type="email"] {
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  outline: 0;
  padding: 0 0 30px;
}

.albino-vacancy-form input[type="text"]::placeholder,
.albino-vacancy-form input[type="tel"]::placeholder,
.albino-vacancy-form input[type="email"]::placeholder {
  color: #fff;
  opacity: 1;
}

.albino-vacancy-form input[type="text"]:focus,
.albino-vacancy-form input[type="tel"]:focus,
.albino-vacancy-form input[type="email"]:focus {
  border-bottom-color: #fff;
}

.albino-vacancy-form input[type="file"] {
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  outline: 0;
}

.albino-vacancy-form input[type="file"]::file-selector-button {
  display: none;
}

.albino-vacancy-form input[type="file"]:focus {
  border-bottom-color: #fff;
}

.albino-vacancy-form__actions {
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-top: -17px;
}

.albino-vacancy-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 177px;
  height: 50px;
  min-height: 0;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.albino-vacancy-form input[type="submit"]:hover {
  background: #d4e4f6;
  color: #1a1a1a;
}

.albino-vacancy-form input[type="submit"]:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.albino-vacancy-form .wpcf7-spinner {
  position: absolute;
  margin: 15px 0 0 12px;
}

.albino-vacancy-form .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  color: #ffd1d1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.albino-vacancy-form .wpcf7 form .wpcf7-response-output {
  margin: -34px 0 0;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .albino-vacancy-single__heading {
    padding-bottom: 38px;
  }

  .albino-vacancy-intro {
    padding-bottom: 72px;
  }

  .albino-vacancy-intro__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 48px);
  }

  .albino-vacancy-intro__media {
    grid-column: 1 / -1;
    height: auto;
  }

  .albino-vacancy-intro__media img {
    height: auto;
    aspect-ratio: 2.15;
  }

  .albino-vacancy-form {
    padding: 0 24px 38px;
  }

  .albino-vacancy-form__inner {
    grid-template-columns: minmax(220px, 0.6fr) minmax(360px, 483px);
    gap: 54px;
    min-height: 430px;
    padding: 38px 34px 72px;
  }

  .albino-vacancy-form__title {
    font-size: 44px;
  }

  .albino-vacancy-form__form {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .albino-vacancy-single__heading {
    padding-bottom: 28px;
  }

  .albino-vacancy-intro {
    padding-bottom: 56px;
  }

  .albino-vacancy-intro__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .albino-vacancy-intro__card {
    height: auto;
    min-height: 0;
  }

  .albino-vacancy-intro__card--responsibilities,
  .albino-vacancy-intro__card--offers {
    padding: 24px 18px 28px;
  }

  .albino-vacancy-intro__card h2 {
    font-size: 20px;
  }

  .albino-vacancy-intro__dash-list,
  .albino-vacancy-intro__bullet-list {
    font-size: 16px;
    line-height: 1.18;
  }

  .albino-vacancy-intro__dash-list,
  .albino-vacancy-intro__bullet-list {
    margin-top: 20px;
  }

  .albino-vacancy-intro__bullet-list {
    gap: 12px;
    padding-left: 24px;
  }

  .albino-vacancy-intro__media {
    height: auto;
    padding: 0;
  }

  .albino-vacancy-intro__media img {
    height: auto;
    aspect-ratio: 1.22;
  }

  .albino-vacancy-form {
    padding: 0 16px 30px;
  }

  .albino-vacancy-form__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 30px 18px 44px;
    border-radius: 22px;
  }

  .albino-vacancy-form__title {
    padding: 0;
    font-size: 36px;
  }

  .albino-vacancy-form .wpcf7 form,
  .albino-vacancy-form__fields,
  .albino-vacancy-form__fields > p {
    gap: 38px;
  }

  .albino-vacancy-form input[type="text"],
  .albino-vacancy-form input[type="tel"],
  .albino-vacancy-form input[type="email"] {
    font-size: 18px;
  }

  .albino-vacancy-form__field--file {
    margin-top: -38px;
  }

  .albino-vacancy-form__actions {
    margin-top: -2px;
  }

  .albino-vacancy-form input[type="submit"] {
    width: 177px;
    height: 50px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hoff-motion-ready .hoff-stats__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .hoff-header {
    left: 24px;
    right: 24px;
  }

  .hoff-header__nav {
    width: auto;
  }

  .hoff-header__nav ul {
    gap: 20px;
    width: auto;
  }

  .hoff-landing__hero {
    width: min(650px, calc(100% - 48px));
    padding-left: 24px;
  }

  .hoff-landing__hero h1 {
    width: 100%;
    max-width: 650px;
    font-size: 50px;
  }

  .hoff-landing__features-head {
    left: 24px;
    right: 24px;
  }

  .hoff-landing__cards-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hoff-about .swiper-slide.hoff-about__slide {
    grid-template-columns: 32% 35% 31%;
  }

  .hoff-about__image,
  .hoff-about__year,
  .hoff-about__copy {
    width: auto;
  }

  .hoff-about__year span {
    font-size: 160px;
  }

  .hoff-about__copy h3,
  .hoff-about__text {
    width: auto;
  }

  .hoff-about__copy h3,
  .hoff-about__text {
    font-size: 23px;
  }

  .hoff-about__timeline {
    gap: 70px;
    padding-right: 96px;
  }

  .hoff-stats__inner {
    width: calc(100% - 48px);
    grid-template-columns: 29% minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .hoff-stats__intro,
  .hoff-stats__metric,
  .hoff-stats__cta {
    border-radius: 18px;
  }

  .hoff-stats__value {
    font-size: 82px;
  }

  .hoff-stats__column--center .hoff-stats__metric:first-child,
  .hoff-stats__column--right .hoff-stats__metric:first-child {
    height: 370px;
  }

  .hoff-stats__column--left .hoff-stats__metric {
    height: 426px;
  }

  .hoff-stats__column--center .hoff-stats__metric:nth-child(2) {
    height: 346px;
  }

  .hoff-stats__cta {
    padding-right: 28px;
  }

  .hoff-stats__cta img {
    width: 172px;
  }

  .hoff-beltop {
    padding: 46px 24px 64px;
  }

  .hoff-beltop__inner {
    grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
    gap: 28px;
  }

  .hoff-beltop__hero-image {
    width: 100%;
    height: 560px;
    margin: 0;
  }

  .hoff-beltop__content {
    gap: 44px;
  }

  .hoff-beltop__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .hoff-beltop__product h3 {
    font-size: 18px;
  }

  .hoff-albino-products {
    padding: 58px 0 66px;
  }

  .hoff-albino-products__inner {
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
    gap: 18px;
    width: calc(100% - 48px);
  }

  .hoff-albino-products__left,
  .hoff-albino-products__right {
    width: auto;
  }

  .hoff-albino-products__hero-image img {
    height: 420px;
  }

  .hoff-albino-products__intro {
    width: min(100%, 626px);
  }

  .hoff-albino-products__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .hoff-albino-products__item h3 {
    font-size: 18px;
  }

  .hoff-albino-products__item img {
    height: 230px;
  }

  .hoff-offices {
    padding-bottom: 58px;
  }

  .hoff-offices__inner {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 34px 28px 32px;
  }

  .hoff-offices__map {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 420px;
    margin-bottom: 28px;
  }

  .hoff-offices__earth {
    left: -16%;
    width: 116%;
    max-width: none;
  }

  .hoff-offices__path {
    top: 31%;
    left: 61%;
    width: 17%;
    height: auto;
  }

  .hoff-offices__marker--china {
    top: 41.5%;
    left: 69%;
    width: 16px;
    height: 20px;
  }

  .hoff-offices__marker--central {
    top: 35%;
    left: 56%;
  }

  .hoff-offices__marker--north {
    top: 17%;
    left: 66%;
  }

  .hoff-offices__country {
    top: 41%;
    left: 72%;
  }

  .hoff-offices__panel {
    width: 100%;
  }

  .hoff-offices__content {
    width: 100%;
  }

  .hoff-offices__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    scrollbar-width: auto;
  }

  .hoff-offices__card {
    padding-right: 24px;
  }

  .hoff-offices__scrollbar,
  .hoff-offices__panel.is-scrollable .hoff-offices__scrollbar {
    display: none;
  }

  .hoff-partners {
    padding-bottom: 70px;
  }

  .hoff-partners__inner {
    width: calc(100% - 48px);
    gap: 44px;
  }

  .hoff-partners__head {
    width: 100%;
  }

  .hoff-partners__body {
    --hoff-partners-copy-mask: 368px;
    gap: 48px;
  }

  .hoff-partners__copy {
    flex-basis: 320px;
    width: 320px;
  }

  .hoff-partners__slide,
  .hoff-partners__logo-card {
    width: 220px;
  }

  .hoff-partners__logo-card {
    height: 220px;
  }

  .hoff-partners__logo-card img {
    width: 180px;
    max-height: 116px;
  }

  .hoff-partners__logo-card span {
    font-size: 44px;
  }

  .albino-partner-form {
    padding-bottom: 50px;
  }

  .albino-partner-form__inner {
    gap: clamp(32px, 6vw, 80px);
    width: calc(100% - 48px);
    min-height: 342px;
    padding: 48px 40px 64px;
  }

  .albino-partner-form__title {
    font-size: 46px;
  }

  .albino-partner-form__form {
    flex: 1 1 360px;
    width: auto;
    max-width: 430px;
    min-width: 0;
  }

  .albino-partner-lead__inner {
    grid-template-columns: minmax(0, 1fr) minmax(286px, 330px);
    min-height: 440px;
  }

  .albino-partner-lead__form-panel {
    padding: 54px 40px 50px;
  }

  .albino-partner-lead__contact-panel {
    min-height: 440px;
    padding: 50px 28px 42px;
  }

  .albino-partner-lead__contact-panel h3 {
    font-size: 30px;
  }

  .albino-blog__inner {
    width: calc(100% - 48px);
  }

  .albino-blog__grid {
    gap: 26px 13px;
  }

  .albino-blog-card__body {
    gap: 17px;
    margin-top: 16px;
  }

  .albino-blog-card h2,
  .albino-blog-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 980px) {
  .hoff-landing__blue {
    height: auto;
    min-height: 940px;
    padding-bottom: 120px;
  }

  .hoff-header {
    align-items: center;
    height: auto;
    top: 22px;
  }

  .hoff-header__toggle {
    display: inline-flex;
  }

  .hoff-header__actions {
    position: absolute;
    z-index: 60;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(5, 30, 70, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .hoff-header.is-menu-open .hoff-header__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hoff-header__nav {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 14px 16px;
  }

  .hoff-header__nav ul {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    height: auto;
  }

  .hoff-header__nav ul a {
    width: 100%;
    padding: 9px 0;
    white-space: normal;
  }

  .hoff-header__language {
    align-self: flex-start;
    width: auto;
    padding: 6px 0;
  }

  .hoff-header__button {
    width: 100%;
    min-width: 0;
  }

  .hoff-landing__object {
    top: 120px;
    left: 58%;
    width: 1050px;
    height: auto;
    opacity: 0.92;
  }

  .hoff-landing__hero {
    padding-top: 128px;
  }

  .hoff-landing__features-head {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: calc(100% - 48px);
    margin: 260px auto 0;
  }

  .hoff-landing__cards-wrap {
    --hoff-cards-overlap: 80px;
  }

  .hoff-landing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hoff-about {
    padding-top: 48px;
  }

  .hoff-about .swiper-slide.hoff-about__slide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "image copy"
      "year copy";
    gap: 22px 28px;
    align-items: start;
    min-height: 0;
  }

  .hoff-about__image {
    grid-area: image;
    width: 100%;
    padding: 0;
  }

  .hoff-about__image img {
    width: 100%;
  }

  .hoff-about__year {
    grid-area: year;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
  }

  .hoff-about__year span {
    font-size: 136px;
  }

  .hoff-about__copy {
    grid-area: copy;
    width: 100%;
    padding-top: 8px;
  }

  .hoff-about__nav {
    position: static;
    margin: 22px 0 0;
    transform: none;
  }

  .hoff-about__timeline {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    min-height: 58px;
    margin-top: 28px;
    padding-right: 0;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .hoff-about__timeline::-webkit-scrollbar {
    display: none;
  }

  .hoff-about__timeline::after {
    width: 90px;
  }

  .hoff-stats {
    padding-top: 32px;
  }

  .hoff-stats__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 48px);
  }

  .hoff-stats__column,
  .hoff-stats__column--right {
    gap: 12px;
  }

  .hoff-stats__intro,
  .hoff-stats__column--left .hoff-stats__metric,
  .hoff-stats__column--center .hoff-stats__metric:first-child,
  .hoff-stats__column--center .hoff-stats__metric:nth-child(2),
  .hoff-stats__column--right .hoff-stats__metric:first-child,
  .hoff-stats__column--right .hoff-stats__metric:nth-child(2) {
    height: auto;
    min-height: 286px;
  }

  .hoff-stats__intro,
  .hoff-stats__column--left .hoff-stats__metric,
  .hoff-stats__column--center .hoff-stats__metric:first-child,
  .hoff-stats__column--center .hoff-stats__metric:nth-child(2),
  .hoff-stats__column--right .hoff-stats__metric:first-child,
  .hoff-stats__column--right .hoff-stats__metric:nth-child(2) {
    padding: 24px;
  }

  .hoff-stats__intro-text {
    max-width: 100%;
    margin-top: 34px;
  }

  .hoff-stats__label,
  .hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__label,
  .hoff-stats__column--center .hoff-stats__metric:nth-child(2) .hoff-stats__label,
  .hoff-stats__column--right .hoff-stats__metric:first-child .hoff-stats__label {
    margin-top: 12px;
  }

  .hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__text,
  .hoff-stats__text {
    margin-top: auto;
    padding-top: 42px;
  }

  .hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__metric-bg {
    right: 12px;
    width: 360px;
  }

  .hoff-stats__column--left .hoff-stats__metric-bg {
    top: 95px;
    left: 22px;
    width: 260px;
  }

  .hoff-stats__column--right .hoff-stats__metric:nth-child(2) .hoff-stats__metric-bg {
    right: 14px;
    width: 210px;
  }

  .hoff-beltop {
    padding: 44px 24px 58px;
  }

  .hoff-beltop__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hoff-beltop__hero-image {
    width: 100%;
    height: 520px;
  }

  .hoff-beltop__content {
    gap: 34px;
  }

  .hoff-beltop__logo {
    width: 220px;
    height: 64px;
  }

  .hoff-beltop__products {
    gap: 14px;
  }

  .hoff-beltop__footer {
    width: 100%;
  }

  .hoff-albino-products {
    padding: 46px 0 56px;
  }

  .hoff-albino-products__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: calc(100% - 48px);
  }

  .hoff-albino-products__left {
    width: 100%;
  }

  .hoff-albino-products__hero-image {
    padding: 0;
  }

  .hoff-albino-products__hero-image img {
    height: 430px;
  }

  .hoff-albino-products__right {
    align-items: flex-start;
    width: 100%;
  }

  .hoff-albino-products__intro {
    width: 100%;
  }

  .hoff-albino-products__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hoff-albino-products__item {
    gap: 18px;
  }

  .hoff-albino-products__item img {
    height: 220px;
  }

  .hoff-offices__inner {
    border-radius: 20px;
    padding: 30px 24px 28px;
  }

  .hoff-offices__map {
    height: 350px;
  }

  .hoff-offices__earth {
    left: -28%;
    width: 128%;
  }

  .hoff-offices__path {
    left: 55%;
  }

  .hoff-offices__marker--china {
    left: 65%;
  }

  .hoff-offices__marker--central {
    left: 50%;
  }

  .hoff-offices__marker--north {
    left: 62%;
  }

  .hoff-offices__country {
    left: 69%;
  }

  .hoff-offices__content h2 {
    font-size: 38px;
  }

  .hoff-offices__list {
    grid-template-columns: 1fr;
  }

  .hoff-offices__card {
    height: auto;
    min-height: 111px;
  }

  .hoff-partners {
    padding-bottom: 56px;
  }

  .hoff-partners__inner {
    width: calc(100% - 48px);
    gap: 34px;
  }

  .hoff-partners__head h2 {
    font-size: 40px;
  }

  .hoff-partners__body {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    isolation: auto;
  }

  .hoff-partners__body::before {
    display: none;
  }

  .hoff-partners__copy {
    align-self: flex-start;
    flex: 0 0 auto;
    justify-content: flex-start;
    width: min(100%, 560px);
  }

  .hoff-partners__swiper {
    width: 100%;
  }

  .hoff-partners__progress {
    width: 100%;
  }

  .albino-partner-form {
    padding-bottom: 46px;
  }

  .albino-partner-form__inner {
    flex-direction: column;
    gap: 42px;
    width: calc(100% - 48px);
    min-height: 0;
    padding: 40px 28px 48px;
    border-radius: 24px;
  }

  .albino-partner-form__title {
    font-size: 42px;
    white-space: normal;
  }

  .albino-partner-form__form {
    flex: 0 1 auto;
    width: 100%;
  }

  .albino-partner-lead__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    min-height: 0;
  }

  .albino-partner-lead__form-panel {
    padding: 44px 28px 46px;
  }

  .albino-partner-lead__form {
    max-width: 100%;
  }

  .albino-partner-lead__contact-panel {
    min-height: 0;
    padding: 42px 28px 44px;
  }

  .albino-partner-lead__contacts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 34px;
    margin-top: 34px;
  }

  .albino-blog {
    padding-bottom: 64px;
  }

  .albino-blog__inner,
  .albino-single__top,
  .albino-single__article,
  .albino-single-related__inner {
    width: calc(100% - 48px);
  }

  .albino-blog__head {
    margin-bottom: 36px;
  }

  .albino-blog__head--archive {
    margin-bottom: 32px;
  }

  .albino-blog__head h1,
  .albino-blog__head h2 {
    font-size: 40px;
  }

  .albino-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .albino-blog-card h2,
  .albino-blog-card h3 {
    font-size: 24px;
  }

  .albino-single {
    padding-top: 32px;
  }

  .albino-single__top {
    margin-bottom: 36px;
  }

  .albino-single__body {
    margin-top: 36px;
  }

  .albino-single__title {
    font-size: 30px;
  }

  .albino-single__content {
    margin-top: 32px;
    font-size: 20px;
  }

  .albino-single__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 56px;
  }

  .albino-single-related {
    margin-top: 96px;
  }

  .albino-single-related__head {
    margin-bottom: 36px;
  }

  .albino-single-related .albino-blog-card.swiper-slide {
    width: 348px;
  }

  .albino-single-related .albino-blog-card__image {
    height: 338px;
  }

  .albino-single-contact {
    margin-top: 88px;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--albino-bg);
  }

  .hoff-landing__blue {
    min-height: 850px;
    padding-bottom: 96px;
    background:
      radial-gradient(circle at 58% 58%, rgba(72, 139, 255, 0.54) 0, rgba(72, 139, 255, 0) 42%),
      linear-gradient(180deg, #1c4b80 0%, #2f6fd4 100%);
  }

  .hoff-landing__object {
    top: 305px;
    left: 57%;
    width: 820px;
    opacity: 0.72;
  }

  .hoff-header {
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    margin: 0;
  }

  .hoff-header__logo {
    width: 112px;
    padding: 6px 0;
  }

  .hoff-header__logo img {
    width: 98px;
  }

  .hoff-header__nav {
    height: auto;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .hoff-header__toggle {
    width: 42px;
    height: 40px;
    border-radius: 10px;
  }

  .hoff-header__language-icon {
    width: 14px;
    height: 14px;
  }

  .hoff-header__language-arrow {
    display: none;
  }

  .hoff-header__language span,
  .hoff-header__button {
    font-size: 15px;
  }

  .hoff-header__button {
    min-height: 44px;
    height: auto;
    white-space: normal;
  }

  .hoff-landing__hero {
    width: auto;
    padding: 92px 22px 0;
  }

  .hoff-landing__hero h1 {
    width: auto;
    max-width: 430px;
    font-size: 42px;
    line-height: 1.04;
    letter-spacing: -0.6px;
  }

  .hoff-landing__lead {
    width: auto;
    max-width: 330px;
    margin-top: 24px;
    font-size: 17px;
  }

  .hoff-landing__cta {
    margin-top: 26px;
  }

  .hoff-landing__features-head {
    width: calc(100% - 44px);
    margin-top: 250px;
  }

  .hoff-landing__features-head h2 {
    margin-top: 34px;
    padding-bottom: 22px;
    font-size: 32px;
  }

  .hoff-landing__cards-wrap {
    --hoff-cards-overlap: 54px;
    padding: 0 16px 28px;
  }

  .hoff-landing__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hoff-card {
    height: auto;
    min-height: 258px;
    padding: 24px 24px 26px;
    border-radius: 20px;
  }

  .hoff-card__icon {
    width: 74px;
    height: 74px;
  }

  .hoff-card__icon img {
    width: 50px;
    height: 50px;
  }

  .hoff-card h3 {
    width: auto;
    margin-top: 28px;
    font-size: 23px;
  }

  .hoff-card p {
    width: auto;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.22;
  }

  .hoff-about__inner {
    width: calc(100% - 32px);
  }

  .hoff-about .swiper-slide.hoff-about__slide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "year"
      "copy";
    gap: 18px;
  }

  .hoff-about h2 {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .hoff-about__copy {
    padding-top: 0;
  }

  .hoff-about__year span {
    font-size: 108px;
  }

  .hoff-about__copy h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .hoff-about__text {
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }

  .hoff-about__button {
    margin-top: 20px;
  }

  .hoff-about__timeline-button {
    width: 78px;
    height: 32px;
  }

  .hoff-about__timeline-button span {
    font-size: 22px;
  }

  .hoff-stats {
    padding: 28px 0 44px;
  }

  .hoff-stats__inner {
    width: calc(100% - 32px);
  }

  .hoff-stats__intro,
  .hoff-stats__column--left .hoff-stats__metric,
  .hoff-stats__column--center .hoff-stats__metric:first-child,
  .hoff-stats__column--center .hoff-stats__metric:nth-child(2),
  .hoff-stats__column--right .hoff-stats__metric:first-child,
  .hoff-stats__column--right .hoff-stats__metric:nth-child(2) {
    min-height: 258px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .hoff-stats__intro h2 {
    font-size: 23px;
  }

  .hoff-stats__intro-text,
  .hoff-stats__label,
  .hoff-stats__text {
    font-size: 16px;
    line-height: 1.2;
  }

  .hoff-stats__intro-text {
    margin-top: 30px;
  }

  .hoff-stats__value {
    font-size: 76px;
  }

  .hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__text,
  .hoff-stats__text {
    padding-top: 34px;
  }

  .hoff-stats__column--left .hoff-stats__metric-bg {
    top: 88px;
    left: 16px;
    width: 236px;
  }

  .hoff-stats__column--center .hoff-stats__metric:first-child .hoff-stats__metric-bg {
    right: -24px;
    width: 330px;
  }

  .hoff-stats__column--right .hoff-stats__metric:nth-child(2) .hoff-stats__metric-bg {
    top: 38px;
    right: -8px;
    width: 190px;
  }

  .hoff-stats__cta {
    height: 94px;
    padding: 0 18px;
    border-radius: 20px;
  }

  .hoff-stats__cta img {
    width: 150px;
  }

  .hoff-stats__cta span {
    width: 132px;
    height: 46px;
    font-size: 16px;
  }

  .hoff-beltop {
    padding: 38px 16px 48px;
  }

  .hoff-beltop__inner {
    gap: 28px;
  }

  .hoff-beltop__hero-image {
    height: 430px;
    border-radius: 14px;
  }

  .hoff-beltop__content {
    gap: 28px;
  }

  .hoff-beltop__logo {
    width: 190px;
    height: 56px;
  }

  .hoff-beltop__products {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hoff-beltop__product img {
    border-radius: 14px;
  }

  .hoff-beltop__product h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .hoff-beltop__footer {
    gap: 24px;
  }

  .hoff-beltop__text {
    font-size: 16px;
    line-height: 1.22;
  }

  .hoff-beltop__button {
    width: 146px;
    height: 48px;
    font-size: 16px;
  }

  .hoff-albino-products {
    padding: 38px 0 46px;
  }

  .hoff-albino-products__inner {
    width: calc(100% - 32px);
    gap: 24px;
  }

  .hoff-albino-products__logo {
    width: 178px;
    padding: 0;
  }

  .hoff-albino-products__logo img {
    width: 178px;
  }

  .hoff-albino-products__hero-image img {
    height: 310px;
    border-radius: 12px;
  }

  .hoff-albino-products__right {
    gap: 24px;
  }

  .hoff-albino-products__intro {
    gap: 20px;
  }

  .hoff-albino-products__text {
    font-size: 16px;
    line-height: 1.22;
  }

  .hoff-albino-products__button {
    grid-template-columns: 48px 136px;
  }

  .hoff-albino-products__button-icon,
  .hoff-albino-products__button-label {
    height: 48px;
  }

  .hoff-albino-products__button-icon {
    width: 48px;
  }

  .hoff-albino-products__button-label {
    width: 136px;
    font-size: 16px;
  }

  .hoff-albino-products__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hoff-albino-products__item {
    gap: 14px;
  }

  .hoff-albino-products__item h3 {
    font-size: 18px;
  }

  .hoff-albino-products__item img,
  .hoff-albino-products__item:nth-child(2) img {
    height: auto;
    aspect-ratio: 1;
    border-radius: 12px;
  }

  .hoff-offices {
    padding-bottom: 42px;
  }

  .hoff-offices__inner {
    width: calc(100% - 32px);
    border-radius: 18px;
    padding: 24px 16px 20px;
  }

  .hoff-offices__map {
    height: 230px;
    margin-bottom: 24px;
  }

  .hoff-offices__earth {
    left: -50%;
    width: 150%;
  }

  .hoff-offices__path {
    top: 30%;
    left: 50%;
    width: 29%;
  }

  .hoff-offices__marker {
    width: 20px;
    height: 25px;
  }

  .hoff-offices__marker--china {
    top: 40%;
    left: 64%;
    width: 13px;
    height: 16px;
  }

  .hoff-offices__marker--central {
    top: 34%;
    left: 45%;
  }

  .hoff-offices__marker--north {
    top: 16%;
    left: 58%;
  }

  .hoff-offices__country {
    top: 39%;
    left: 69%;
    min-width: 64px;
    height: 28px;
    padding: 0 9px;
    font-size: 17px;
  }

  .hoff-offices__panel {
    display: block;
  }

  .hoff-offices__content {
    gap: 18px;
  }

  .hoff-offices__content h2 {
    font-size: 32px;
  }

  .hoff-offices__card {
    gap: 10px;
    min-height: auto;
    padding: 14px 16px 16px;
    border-radius: 16px;
  }

  .hoff-offices__card-head {
    width: 100%;
  }

  .hoff-offices__card h3 {
    font-size: 20px;
  }

  .hoff-offices__card p {
    font-size: 15px;
  }

  .hoff-offices__phones {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hoff-offices__phones a {
    font-size: 16px;
  }

  .hoff-offices__phones a:nth-child(2) {
    padding: 0 0 0 36px;
  }

  .hoff-partners {
    padding-bottom: 42px;
  }

  .hoff-partners__inner {
    width: calc(100% - 32px);
    gap: 28px;
  }

  .hoff-partners__head h2 {
    font-size: 34px;
  }

  .hoff-partners__nav {
    gap: 8px;
    width: 104px;
    height: 48px;
  }

  .hoff-partners__nav-button {
    width: 48px;
    height: 48px;
  }

  .hoff-partners__nav-button::before {
    width: 10px;
    height: 10px;
  }

  .hoff-partners__body {
    gap: 22px;
  }

  .hoff-partners__copy {
    gap: 14px;
  }

  .hoff-partners__copy h3 {
    font-size: 26px;
  }

  .hoff-partners__text {
    font-size: 16px;
    line-height: 1.2;
  }

  .hoff-partners__slide,
  .hoff-partners__logo-card {
    width: 210px;
  }

  .hoff-partners__logo-card {
    height: 210px;
    border-radius: 18px;
  }

  .hoff-partners__logo-card img {
    width: 170px;
    max-height: 110px;
  }

  .hoff-partners__logo-card span {
    font-size: 40px;
  }

  .hoff-partners__progress span {
    min-width: 76px;
  }

  .albino-partner-form {
    padding-bottom: 38px;
  }

  .albino-partner-form__inner {
    gap: 34px;
    width: calc(100% - 32px);
    padding: 28px 16px 30px;
    border-radius: 20px;
  }

  .albino-partner-form__title {
    font-size: 30px;
    line-height: 1.08;
  }

  .albino-partner-form .wpcf7 form,
  .albino-partner-form__fields,
  .albino-partner-form__fields > p {
    gap: 32px;
  }

  .albino-partner-form__field,
  .albino-partner-form input[type="text"],
  .albino-partner-form input[type="tel"] {
    height: 52px;
  }

  .albino-partner-form input[type="text"],
  .albino-partner-form input[type="tel"] {
    padding-bottom: 24px;
    font-size: 18px;
  }

  .albino-partner-form input[type="submit"] {
    width: 164px;
    height: 48px;
    font-size: 16px;
  }

  .albino-partner-lead__inner {
    width: 100%;
  }

  .albino-partner-lead__form-panel,
  .albino-partner-lead__contact-panel {
    padding: 30px 16px 34px;
  }

  .albino-partner-lead__form-panel h2 {
    font-size: 30px;
  }

  .albino-partner-lead__intro {
    margin-top: 13px;
    font-size: 14px;
  }

  .albino-partner-lead__form {
    margin-top: 34px;
  }

  .albino-partner-lead .wpcf7 form,
  .albino-partner-lead__fields,
  .albino-partner-lead__fields > p {
    gap: 22px;
  }

  .albino-partner-lead__contact-panel h3 {
    font-size: 27px;
  }

  .albino-partner-lead__contacts {
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .albino-partner-lead__contact-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .albino-partner-lead__contact-copy a,
  .albino-partner-lead__contact-copy strong {
    font-size: 20px;
  }

  .albino-blog {
    padding-bottom: 46px;
  }

  .albino-blog__inner,
  .albino-single__top,
  .albino-single__article,
  .albino-single-related__inner {
    width: calc(100% - 32px);
  }

  .albino-blog__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  .albino-blog__head--archive {
    gap: 0;
    margin-bottom: 28px;
  }

  .albino-blog__head h1,
  .albino-blog__head h2 {
    font-size: 34px;
  }

  .albino-blog__all {
    width: 148px;
    height: 48px;
    font-size: 15px;
  }

  .albino-blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .albino-blog-card {
    border-radius: 12px;
  }

  .albino-blog-card__body {
    gap: 16px;
    margin-top: 16px;
  }

  .albino-blog-card time,
  .albino-blog-card p {
    font-size: 16px;
  }

  .albino-blog-card h2,
  .albino-blog-card h3 {
    margin-top: 0;
    font-size: 24px;
  }

  .albino-blog-card p {
    margin-top: 0;
  }

  .albino-blog-card__more {
    width: 44px;
    height: 44px;
  }

  .albino-blog-card__more::before,
  .albino-blog-card__more::after {
    width: 21px;
  }

  .albino-blog-card time img {
    width: 22px;
    height: 22px;
  }

  .albino-blog--archive {
    padding: 34px 0 56px;
  }

  .albino-single {
    padding: 28px 0 56px;
  }

  .albino-single__top {
    margin-bottom: 28px;
  }

  .albino-single__body {
    margin-top: 28px;
  }

  .albino-single__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .albino-single__content {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.35;
  }

  .albino-single__content p,
  .albino-single__content ul,
  .albino-single__content ol {
    margin-bottom: 24px;
  }

  .albino-single__meta {
    gap: 16px;
    margin-top: 42px;
  }

  .albino-single__share {
    flex-wrap: wrap;
  }

  .albino-single__copy {
    width: min(100%, 257px);
  }

  .albino-single-related {
    margin-top: 72px;
  }

  .albino-single-related__head {
    gap: 16px;
    margin-bottom: 24px;
  }

  .albino-single-related .albino-blog__head h2 {
    font-size: 34px;
  }

  .albino-single-related .albino-blog__all {
    width: 148px;
    height: 48px;
    font-size: 15px;
  }

  .albino-single-related .albino-blog-card.swiper-slide {
    width: min(86vw, 326px);
  }

  .albino-single-related .albino-blog-card__image {
    height: auto;
    aspect-ratio: 393 / 400;
  }

  .albino-single-contact {
    margin-top: 64px;
  }

  .albino-page-heading {
    padding: 48px 0 36px;
  }

  .albino-page-heading__inner,
  .albino-partners-grid__inner,
  .albino-team-grid__inner,
  .albino-vacancies__inner {
    width: calc(100% - 32px);
  }

  .albino-page-heading h1 {
    font-size: 36px;
  }

  .albino-partners-grid__items {
    grid-template-columns: 1fr;
  }

  .albino-partner-card {
    min-height: 0;
    padding: 44px 22px 34px;
    border-right: 0;
  }

  .albino-partner-card__logo {
    min-height: 124px;
  }

  .albino-partner-card__logo img {
    width: 192px;
    max-height: 106px;
  }

  .albino-partner-card__copy {
    gap: 12px;
    margin-top: 32px;
  }

  .albino-partner-card h2 {
    font-size: 22px;
  }

  .albino-partner-card__text {
    font-size: 17px;
    line-height: 1.22;
  }

  .albino-team-grid {
    padding-bottom: 56px;
  }

  .albino-team-card__body {
    min-height: 0;
  }

  .albino-team-card h2 {
    font-size: 21px;
  }

  .albino-team-card__position {
    font-size: 16px;
  }

  .albino-vacancies {
    padding-bottom: 72px;
  }

  .albino-vacancy-card {
    width: 333px;
    min-height: 300px;
    padding: 26px;
  }

  .albino-partnership-steps__inner {
    width: 100%;
    min-height: 0;
    padding: 30px 16px 34px;
  }

  .albino-partnership-steps h2 {
    padding: 0;
    font-size: 29px;
  }

  .albino-partnership-steps__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }

  .albino-partnership-steps__left {
    min-height: 0;
    padding-right: 0;
    border-right: 0;
  }

  .albino-partnership-steps__tab {
    min-height: 28px;
    padding-left: 40px;
    font-size: 22px;
  }

  .albino-partnership-steps__tab::before {
    top: 12px;
    width: 28px;
  }

  .albino-partnership-steps__tab::after {
    top: 7px;
    left: 18px;
    width: 10px;
    height: 10px;
  }

  .albino-partnership-steps__feature {
    gap: 18px;
    margin-top: 30px;
  }

  .albino-partnership-steps__features,
  .albino-partnership-steps__images {
    width: 100%;
  }

  .albino-partnership-steps__feature img {
    width: 150px;
    height: 168px;
  }

  .albino-partnership-steps__content-panels,
  .albino-partnership-steps__content {
    min-height: 0;
  }

  .albino-partnership-steps__content {
    justify-content: flex-start;
    gap: 22px;
    padding: 0;
  }

  .albino-partnership-steps__content h3 {
    max-width: 100%;
    margin-top: 0;
    font-size: 32px;
  }

  .albino-partnership-steps__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.24;
  }

  .albino-partnership-steps__image img {
    height: auto;
    aspect-ratio: 1.08;
  }
}

@media (max-width: 1180px) {
  .albino-footer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .albino-footer__nav {
    gap: 52px;
  }

  .albino-footer__column:nth-child(1) {
    width: 160px;
  }

  .albino-footer__column:nth-child(2) {
    width: 190px;
  }

  .albino-footer__column:nth-child(3) {
    width: 240px;
  }

  .albino-contact-form__inner {
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 58px;
    width: 100%;
    padding: 38px 36px calc(42px + var(--albino-contact-footer-overlap));
  }

  .albino-contact-form__title {
    font-size: 38px;
  }

  .albino-contact-form__contact-value {
    font-size: 23px;
  }

  .albino-contact-form__form-title {
    font-size: 28px;
  }

  .albino-contacts-info {
    padding-bottom: 64px;
  }

  .albino-contacts-info__inner {
    grid-template-columns: minmax(300px, 440px) minmax(360px, 1fr);
    gap: 42px;
    width: calc(100% - 48px);
  }

  .albino-contacts-info__card {
    min-height: 140px;
    padding: 22px 18px;
  }

  .albino-contacts-info__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .albino-contacts-info__map {
    height: 440px;
  }

  .albino-contacts-info__country {
    font-size: 18px;
  }

  .albino-partner-card {
    padding-right: 30px;
    padding-left: 30px;
  }

  .albino-partner-card__text {
    font-size: 18px;
  }

  .albino-partnership-steps__layout {
    grid-template-columns: minmax(230px, 280px) minmax(220px, 280px) minmax(0, 1fr);
    gap: 28px;
  }

  .albino-partnership-steps__inner {
    width: calc(100% - 48px);
    min-height: 0;
    padding-top: 38px;
    padding-right: 34px;
    padding-bottom: 46px;
    padding-left: 34px;
  }

  .albino-partnership-steps h2 {
    padding: 0;
    font-size: 38px;
  }

  .albino-partnership-steps__left {
    min-height: 440px;
    padding-right: 28px;
  }

  .albino-partnership-steps__tab {
    font-size: 25px;
  }

  .albino-partnership-steps__features {
    width: 180px;
  }

  .albino-partnership-steps__feature img {
    width: 180px;
    height: 204px;
  }

  .albino-partnership-steps__content-panels,
  .albino-partnership-steps__content {
    min-height: 440px;
  }

  .albino-partnership-steps__content h3 {
    font-size: 34px;
    line-height: 1.05;
  }

  .albino-partnership-steps__text {
    font-size: 16px;
  }

  .albino-partnership-steps__image img {
    height: 440px;
  }
}

@media (max-width: 1100px) {
  .albino-partnership-steps__inner {
    width: calc(100% - 48px);
    min-height: 0;
    padding: 38px 30px 46px;
  }

  .albino-partnership-steps h2 {
    padding: 0;
    font-size: 38px;
  }

  .albino-partnership-steps__layout {
    grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1fr);
    gap: 34px;
    margin-top: 42px;
  }

  .albino-partnership-steps__left {
    min-height: 420px;
    padding-right: 30px;
  }

  .albino-partnership-steps__tab {
    font-size: 27px;
  }

  .albino-partnership-steps__content-panels,
  .albino-partnership-steps__content {
    min-height: 420px;
  }

  .albino-partnership-steps__content {
    padding-right: 0;
  }

  .albino-partnership-steps__content h3 {
    font-size: 36px;
    line-height: 1.05;
  }

  .albino-partnership-steps__text {
    font-size: 17px;
  }

  .albino-partnership-steps__feature img {
    width: 156px;
    height: 176px;
  }

  .albino-partnership-steps__images {
    width: 100%;
    grid-column: 1 / -1;
  }

  .albino-partnership-steps__image img {
    height: auto;
    aspect-ratio: 1.45;
  }
}

@media (max-width: 980px) {
  .albino-footer {
    padding-right: 32px;
    padding-bottom: 28px;
    padding-left: 32px;
  }

  .albino-footer__logo {
    width: 220px;
  }

  .albino-footer__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    min-height: 0;
  }

  .albino-footer__nav {
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
  }

  .albino-footer__column:nth-child(n) {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
  }

  .albino-footer__column a {
    white-space: normal;
  }

  .albino-footer .albino-footer__socials {
    align-self: flex-end;
  }

  .albino-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .albino-contact-form {
    --albino-contact-footer-overlap: 52px;
  }

  .albino-contact-form__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
    min-height: 0;
    padding: 36px 28px calc(34px + var(--albino-contact-footer-overlap));
    border-radius: 24px 24px 0 0;
  }

  .albino-contact-form__title {
    max-width: 700px;
    font-size: 42px;
  }

  .albino-contact-form__contacts {
    margin: 36px 0 30px;
  }

  .albino-contact-form__form {
    padding-top: 0;
  }

  .albino-contact-form__form-title {
    margin-bottom: 34px;
    font-size: 27px;
  }

  .albino-page-heading__inner,
  .albino-contacts-info__inner,
  .albino-partners-grid__inner,
  .albino-team-grid__inner,
  .albino-vacancies__inner {
    width: calc(100% - 48px);
  }

  .albino-contacts-info {
    padding-bottom: 56px;
  }

  .albino-contacts-info__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .albino-contacts-info__office {
    max-width: 557px;
  }

  .albino-contacts-info__map {
    height: 420px;
  }

  .albino-partners-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .albino-partner-card {
    min-height: 350px;
    padding: 58px 28px 42px;
  }

  .albino-partner-card:nth-child(3n) {
    border-right: 1px solid #d8dce1;
  }

  .albino-partner-card:nth-child(2n) {
    border-right: 0;
  }

  .albino-partner-card__copy {
    margin-top: 38px;
  }

  .albino-team-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .albino-vacancies h2 {
    font-size: 38px;
  }

  .albino-partnership-steps__inner {
    width: calc(100% - 48px);
    min-height: 0;
    padding: 38px 30px 46px;
  }

  .albino-partnership-steps h2 {
    padding: 0;
    font-size: 38px;
  }

  .albino-partnership-steps__layout {
    grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1fr);
    gap: 34px;
    margin-top: 42px;
  }

  .albino-partnership-steps__left {
    min-height: 420px;
    padding-right: 30px;
  }

  .albino-partnership-steps__tab {
    font-size: 27px;
  }

  .albino-partnership-steps__content-panels,
  .albino-partnership-steps__content {
    min-height: 420px;
  }

  .albino-partnership-steps__content {
    padding-right: 0;
  }

  .albino-partnership-steps__content h3 {
    font-size: 36px;
    line-height: 1.05;
  }

  .albino-partnership-steps__text {
    font-size: 17px;
  }

  .albino-partnership-steps__feature img {
    width: 156px;
    height: 176px;
  }

  .albino-partnership-steps__images {
    width: 100%;
    grid-column: 1 / -1;
  }

  .albino-partnership-steps__image img {
    height: auto;
    aspect-ratio: 1.45;
  }
}

@media (max-width: 640px) {
  .albino-footer {
    padding: 4px 16px 24px;
    border-radius: 18px 18px 0 0;
  }

  .albino-footer__logo {
    width: 190px;
    padding: 8px;
  }

  .albino-footer__logo img {
    width: 100%;
  }

  .albino-footer__content {
    gap: 30px;
    margin-top: 14px;
  }

  .albino-footer__nav {
    flex-direction: column;
    gap: 26px;
  }

  .albino-footer__column:nth-child(n) {
    width: 100%;
    flex: none;
  }

  .albino-footer__column h2 {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .albino-footer ul {
    gap: 12px;
  }

  .albino-footer__column a {
    font-size: 16px;
    line-height: 1.35;
    white-space: normal;
  }

  .albino-footer .albino-footer__socials {
    align-self: flex-start;
    flex-direction: row;
  }

  .albino-footer__socials a,
  .albino-footer__socials img {
    width: 44px;
    height: 44px;
  }

  .albino-footer__bottom {
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
  }

  .albino-footer__bottom p {
    font-size: 15px;
    line-height: 1.35;
  }

  .albino-contact-form {
    --albino-contact-footer-overlap: 38px;
  }

  .albino-contact-form__inner {
    gap: 34px;
    width: 100%;
    padding: 28px 16px calc(24px + var(--albino-contact-footer-overlap));
    border-radius: 20px 20px 0 0;
  }

  .albino-contact-form__title {
    font-size: 30px;
    line-height: 1.08;
  }

  .albino-contact-form__contacts {
    gap: 20px;
    margin: 30px 0 28px;
  }

  .albino-contact-form__contact {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .albino-contact-form__contact-icon {
    width: 48px;
    height: 48px;
  }

  .albino-contact-form__contact-value {
    font-size: 19px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .albino-contact-form__socials a,
  .albino-contact-form__socials img {
    width: 42px;
    height: 42px;
  }

  .albino-contact-form__form {
    padding-top: 0;
  }

  .albino-contact-form__form-title {
    margin-bottom: 28px;
    font-size: 22px;
    line-height: 1.12;
  }

  .albino-contact-form .wpcf7 form,
  .albino-contact-form__fields,
  .albino-contact-form__fields > p {
    gap: 22px;
  }

  .albino-contact-form input[type="text"],
  .albino-contact-form input[type="tel"],
  .albino-contact-form input[type="email"] {
    height: 52px;
    padding-bottom: 22px;
  }

  .albino-contact-form input[type="text"],
  .albino-contact-form input[type="tel"],
  .albino-contact-form input[type="email"],
  .albino-contact-form textarea {
    font-size: 17px;
  }

  .albino-contact-form textarea {
    height: 96px;
    min-height: 96px;
  }

  .albino-contact-form input[type="submit"] {
    width: 151px;
    height: 44px;
    font-size: 13px;
  }

  .albino-page-heading {
    padding: 34px 0 28px;
  }

  .albino-page-heading__inner,
  .albino-contacts-info__inner,
  .albino-partners-grid__inner,
  .albino-team-grid__inner,
  .albino-vacancies__inner {
    width: calc(100% - 32px);
  }

  .albino-contacts-info {
    padding-bottom: 44px;
  }

  .albino-contacts-info__inner {
    gap: 28px;
  }

  .albino-contacts-info__office {
    gap: 12px;
  }

  .albino-contacts-info__photo {
    border-radius: 14px;
  }

  .albino-contacts-info__card {
    min-height: 0;
    padding: 20px 16px 22px;
    border-radius: 16px;
  }

  .albino-contacts-info__card h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .albino-contacts-info__details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .albino-contacts-info__details dt {
    font-size: 15px;
  }

  .albino-contacts-info__details dd {
    font-size: 18px;
  }

  .albino-contacts-info__map {
    height: 270px;
  }

  .albino-contacts-info__map-earth {
    left: -72%;
    width: 190%;
    height: 116%;
  }

  .albino-contacts-info__map--single .albino-contacts-info__map-earth {
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .albino-contacts-info__map-path {
    top: 31%;
    left: 42%;
    width: 26%;
  }

  .albino-contacts-info__marker {
    width: 20px;
    height: 25px;
  }

  .albino-contacts-info__marker--china {
    width: 15px;
    height: 19px;
  }

  .albino-contacts-info__country {
    left: 60%;
    min-width: 0;
    height: 28px;
    padding: 0 9px;
    font-size: 16px;
  }

  .albino-page-heading__breadcrumbs {
    font-size: 15px;
  }

  .albino-page-heading h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .albino-partners-grid__items {
    grid-template-columns: 1fr;
  }

  .albino-partner-card,
  .albino-partner-card:nth-child(2n),
  .albino-partner-card:nth-child(3n) {
    min-height: 0;
    padding: 42px 18px 32px;
    border-right: 0;
  }

  .albino-partner-card__logo {
    min-height: 118px;
  }

  .albino-partner-card__logo img {
    width: 180px;
    max-height: 96px;
  }

  .albino-partner-card__copy {
    margin-top: 28px;
  }

  .albino-team-grid__items {
    grid-template-columns: 1fr;
  }

  .albino-team-card,
  .albino-team-card:nth-child(2n),
  .albino-team-card:nth-child(3n) {
    border-right: 0;
  }

  .albino-team-card__body {
    padding: 0;
  }

  .albino-vacancies {
    padding-bottom: 54px;
  }

  .albino-vacancies__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .albino-vacancies h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .albino-vacancies__arrow {
    width: 44px;
    height: 44px;
  }

  .albino-vacancies__swiper {
    margin-top: 20px;
  }

  .albino-vacancy-card {
    width: min(324px, calc(100vw - 48px));
    min-height: 0;
    padding: 22px 18px;
  }

  .albino-vacancy-card h3 {
    font-size: 23px;
  }

  .albino-vacancy-card__responsibilities {
    margin-top: 24px;
  }

  .albino-vacancy-card__responsibilities h4 {
    font-size: 17px;
  }

  .albino-vacancy-card__responsibilities ul {
    gap: 12px;
    margin-top: 18px;
    padding-left: 23px;
  }

  .albino-vacancy-card__responsibilities li {
    font-size: 15px;
  }

  .albino-vacancy-card__link {
    min-width: 156px;
    height: 44px;
    margin-top: 24px;
    font-size: 15px;
  }

  .albino-partnership-steps__inner {
    width: 100%;
    padding: 30px 16px 34px;
  }

  .albino-partnership-steps h2 {
    padding: 0;
    font-size: 29px;
  }

  .albino-partnership-steps__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }

  .albino-partnership-steps__left {
    min-height: 0;
    padding-right: 0;
    border-right: 0;
  }

  .albino-partnership-steps__list {
    gap: 12px;
  }

  .albino-partnership-steps__tab {
    min-height: 28px;
    padding-left: 40px;
    font-size: 22px;
  }

  .albino-partnership-steps__tab::before {
    top: 12px;
    width: 28px;
  }

  .albino-partnership-steps__tab::after {
    top: 7px;
    left: 18px;
    width: 10px;
    height: 10px;
  }

  .albino-partnership-steps__feature {
    gap: 18px;
    margin-top: 26px;
  }

  .albino-partnership-steps__features,
  .albino-partnership-steps__images {
    width: 100%;
  }

  .albino-partnership-steps__feature img {
    width: 150px;
    height: 168px;
  }

  .albino-partnership-steps__content-panels,
  .albino-partnership-steps__content {
    min-height: 0;
  }

  .albino-partnership-steps__content {
    justify-content: flex-start;
    gap: 18px;
    padding: 0;
  }

  .albino-partnership-steps__content h3 {
    max-width: 100%;
    margin-top: 0;
    font-size: 30px;
  }

  .albino-partnership-steps__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.24;
  }

  .albino-partnership-steps__image img {
    height: auto;
    aspect-ratio: 1.1;
  }
}

.about-page {
  overflow-x: clip;
  overflow-y: visible;
  background: var(--albino-bg);
  color: #323540;
}

.about-scroll {
  position: relative;
  overflow: visible;
  padding: 34px 0 154px;
  background: var(--albino-bg);
}

.about-scroll__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 570px) minmax(300px, 1fr);
  gap: 30px;
  align-items: stretch;
  width: min(calc(100% - 60px), 1440px);
  margin: 0 auto;
}

.about-scroll__side {
  height: 100%;
  min-height: 100vh;
}

.about-scroll__side-content {
  position: relative;
  min-height: 100%;
}

.about-scroll__side--right {
  display: flex;
  align-items: stretch;
}

.about-scroll__side--right .about-scroll__side-content {
  width: 100%;
  padding-top: 63vh;
}

.about-scroll__breadcrumb {
  margin: 0 0 190px;
  color: #323540;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.albino-breadcrumbs a,
.albino-breadcrumbs .breadcrumb_last {
  color: inherit;
  text-decoration: none;
}

.albino-breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-scroll h1 {
  position: sticky;
  top: 170px;
  max-width: 421px;
  margin: 0;
  color: #323540;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-scroll__text {
  position: sticky;
  top: calc(100vh - 252px);
  max-width: 381px;
  margin-left: auto;
  color: #323540;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-scroll__text p {
  margin: 0;
}

.about-scroll__media-list {
  position: relative;
  z-index: 2;
  align-self: start;
  display: grid;
  gap: 16px;
}

.about-scroll__figure {
  position: relative;
  z-index: 1;
  aspect-ratio: 570 / 444;
  margin: 0;
  overflow: hidden;
  background: #d8d8d8;
}

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

.about-scroll__figure--last {
  z-index: 4;
}

.about-scroll__figure--last img {
  transform: scale(var(--about-last-scale, 1));
  opacity: var(--about-last-opacity, 1);
  transition: transform 120ms linear;
  transform-origin: center center;
}

.about-scroll__transition-bg {
  position: fixed;
  top: var(--about-transition-y, 0);
  left: var(--about-transition-x, 0);
  z-index: 24;
  width: var(--about-transition-w, 100vw);
  height: var(--about-transition-h, 100vh);
  overflow: hidden;
  pointer-events: none;
  opacity: var(--about-transition-opacity, 0);
  background: #111;
  transform: translateZ(0);
  transform-origin: top left;
  will-change: top, left, width, height, opacity;
}

.about-scroll__transition-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(11, 11, 11, 0.55);
  opacity: var(--about-transition-shade, 0);
}

.about-scroll__transition-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-scroll__transition-bg:not(.is-active) {
  visibility: hidden;
}

.about-testimonial {
  position: relative;
  display: flex;
  align-items: flex-start;
  --about-bg-opacity: 0;
  min-height: 120svh;
  overflow: hidden;
  padding: 284px 73px 64px 30px;
  background-color: #111;
  color: #fff;
}

.about-testimonial::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: var(--about-bg-opacity, 0);
  background-image: linear-gradient(rgba(11, 11, 11, 0.55), rgba(11, 11, 11, 0.55)), var(--about-testimonial-bg);
  background-position: center;
  background-size: cover;
  transition: opacity 80ms linear;
}

.about-testimonial__content {
  position: relative;
  z-index: 30;
  width: min(100%, 868px);
  opacity: var(--about-testimonial-opacity, 1);
  transform: translateY(var(--about-testimonial-translate, 0));
  transition: opacity 160ms linear, transform 160ms linear;
}

.about-testimonial__person {
  display: flex;
  align-items: flex-end;
  gap: 33px;
}

.about-testimonial__avatar {
  flex: 0 0 auto;
  width: 200px;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
}

.about-testimonial__person-text {
  padding-bottom: 12px;
}

.about-testimonial__name {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-testimonial__role {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-testimonial__quote {
  max-width: 868px;
  margin: 35px 0 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-testimonial__underline {
  width: 311px;
  height: 20px;
  margin: 4px 0 0 459px;
  object-fit: contain;
}

.about-testimonial__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 205px;
  height: 50px;
  margin-top: 66px;
  border-radius: 12px;
  background: #fff;
  color: #323540;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.about-testimonial__button:hover {
  transform: translateY(-1px);
  background: #edf3fb;
}

.about-testimonial__button-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #323540;
}

.about-history {
  overflow: hidden;
  padding: 0 0 72px;
  background: #4f79b2;
  color: #fff;
}

.about-history__inner {
  width: min(calc(100% - 60px), 1370px);
  margin: 0 auto;
}

.about-history h2 {
  width: 395px;
  margin: 0 0 53px;
  padding: 10px;
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-history__timeline {
  display: grid;
  grid-template-columns: 363px 372px 355px;
  gap: 121px;
  width: 1370px;
  max-width: 100%;
  min-height: 597px;
}

.about-history__item {
  display: flex;
  align-items: flex-start;
}

.about-history__line {
  flex: 0 0 1px;
  width: 1px;
  height: 597px;
  background: rgba(255, 255, 255, 0.34);
}

.about-history__content {
  display: flex;
  flex-direction: column;
  width: 327px;
  color: #fff;
}

.about-history__item--1 .about-history__content {
  margin-left: 36px;
}

.about-history__item--2 .about-history__content {
  margin-left: 45px;
}

.about-history__item--3 .about-history__content {
  margin-left: 28px;
}

.about-history__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-history__media {
  position: relative;
  width: 217px;
  height: 157px;
  overflow: hidden;
}

.about-history__media img {
  position: absolute;
  display: block;
  max-width: none;
}

.about-history__item--1 .about-history__media img {
  top: -7.83%;
  left: -17.38%;
  width: 173.44%;
  height: 143.78%;
}

.about-history__item--2 .about-history__media img {
  top: -7.64%;
  left: -17.38%;
  width: 173.44%;
  height: 143.52%;
}

.about-history__item--3 .about-history__media img {
  top: -36.16%;
  left: 0;
  width: 100%;
  height: 140.78%;
}

.about-history__text {
  width: 327px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-history__text p {
  margin: 0;
}

.about-history__year {
  color: #fff;
  font-size: 100px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-history__item--1 .about-history__body {
  gap: 76px;
}

.about-history__item--1 .about-history__year {
  margin-top: 76px;
}

.about-history__item--2 .about-history__body {
  gap: 67px;
  margin-top: 67px;
}

.about-history__item--3 .about-history__body {
  gap: 38px;
}

.about-history__item--3 .about-history__year {
  margin-top: 104px;
  padding: 10px;
}

.about-history__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.about-history__footer-label {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-history__nav {
  display: block;
  flex: 0 0 106.7px;
  width: 106.7px;
  height: 49px;
  object-fit: contain;
}

.about-team {
  overflow: hidden;
  padding: 80px 0 92px;
  background: var(--albino-bg);
  color: #1a1a1a;
}

.about-team__inner {
  width: min(calc(100% - 60px), 1370px);
  margin: 0 auto;
}

.about-team__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.about-team h2 {
  width: min(745px, 100%);
  margin: 0;
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-team__nav {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  margin-top: 1px;
}

.about-team__arrow {
  position: relative;
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 50%;
  background: #d4e4f6;
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.about-team__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.about-team__arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.about-team__arrow--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.about-team__arrow:hover {
  background: #4e7eb8;
}

.about-team__arrow:focus-visible {
  outline: 2px solid #4e7eb8;
  outline-offset: 3px;
}

.about-team__arrow.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.about-team__swiper {
  margin-top: 11px;
  overflow: visible;
}

.about-team__card {
  width: 379px;
  color: #212121;
}

.about-team__photo {
  display: block;
  width: 100%;
  height: 527px;
  object-fit: cover;
  background: #ddd;
}

.about-team__card h3 {
  margin: 16px 0 0;
  color: #212121;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-team__position {
  margin-top: 7px;
  color: #717171;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-collage-quote {
  overflow: hidden;
  padding: 18px 0 0;
  background: var(--albino-bg);
  color: #1a1a1a;
}

.about-collage-quote__inner {
  position: relative;
  width: min(calc(100% - 60px), 1370px);
  min-height: 930px;
  margin: 0 auto;
}

.about-collage-quote__text {
  position: absolute;
  top: 266px;
  left: 50%;
  z-index: 3;
  width: min(670px, 100%);
  color: #1a1a1a;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%);
}

.about-collage-quote__figure {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #dde0e6;
}

.about-collage-quote__figure--top {
  top: 28px;
  left: 108px;
  width: 258px;
  height: 258px;
}

.about-collage-quote__figure--left {
  top: 480px;
  left: 124px;
  width: 430px;
  height: 318px;
  border-radius: 12px;
}

.about-collage-quote__figure--right {
  top: 440px;
  right: 96px;
  width: 410px;
  height: 390px;
  border-radius: 12px;
}

.about-collage-quote__figure--right {
  --about-collage-delay: 140ms;
}

.about-collage-quote__figure--left {
  --about-collage-delay: 260ms;
}

.about-collage-quote__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  transform: translateY(36px);
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--about-collage-delay, 0ms),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--about-collage-delay, 0ms);
}

.about-collage-quote__figure.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .about-scroll {
    padding: 30px 0 112px;
  }

  .about-scroll__inner {
    grid-template-columns: minmax(230px, 1fr) minmax(0, 500px) minmax(230px, 1fr);
    gap: 22px;
    width: min(calc(100% - 48px), 1080px);
  }

  .about-scroll__breadcrumb {
    margin-bottom: 128px;
  }

  .about-scroll h1 {
    font-size: 32px;
  }

  .about-scroll__text {
    font-size: 22px;
  }

  .about-testimonial {
    min-height: 760px;
    padding: 230px 42px 54px 30px;
  }

  .about-testimonial__quote {
    max-width: 760px;
    font-size: 36px;
  }

  .about-history__inner {
    width: min(calc(100% - 48px), 1040px);
  }

  .about-history__timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    width: 100%;
  }

  .about-history__item {
    gap: 24px;
  }

  .about-history__content,
  .about-history__text {
    width: 100%;
  }

  .about-history__item--1 .about-history__content,
  .about-history__item--2 .about-history__content,
  .about-history__item--3 .about-history__content {
    margin-left: 0;
  }

  .about-history__year {
    font-size: 78px;
  }

  .about-team {
    padding: 70px 0 78px;
  }

  .about-team__inner {
    width: min(calc(100% - 48px), 1040px);
  }

  .about-team h2 {
    max-width: 650px;
    font-size: 42px;
  }

  .about-team__card {
    width: 320px;
  }

  .about-team__photo {
    height: auto;
    aspect-ratio: 379 / 527;
  }

  .about-collage-quote__inner {
    width: min(calc(100% - 48px), 1040px);
    min-height: 780px;
  }

  .about-collage-quote__text {
    top: 230px;
    width: min(610px, 100%);
    font-size: 42px;
  }

  .about-collage-quote__figure--top {
    left: 58px;
    width: 226px;
    height: 226px;
  }

  .about-collage-quote__figure--left {
    top: 438px;
    left: 58px;
    width: 384px;
    height: 284px;
  }

  .about-collage-quote__figure--right {
    top: 376px;
    right: 58px;
    width: 350px;
    height: 334px;
  }
}

@media (max-width: 900px) {
  .about-scroll {
    padding: 26px 0 72px;
  }

  .about-scroll__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: min(calc(100% - 36px), 660px);
  }

  .about-scroll__side {
    min-height: 0;
    width: 100%;
  }

  .about-scroll__side-content,
  .about-scroll__side--right .about-scroll__side-content {
    position: static;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .about-scroll h1,
  .about-scroll__text {
    position: static;
    top: auto;
  }

  .about-scroll__breadcrumb {
    margin-bottom: 54px;
  }

  .about-scroll h1 {
    max-width: 620px;
    font-size: 34px;
  }

  .about-scroll__text {
    max-width: 620px;
    margin: 0;
    font-size: 24px;
  }

  .about-scroll__transition-bg {
    display: none;
  }

  .about-testimonial {
    align-items: center;
    --about-bg-opacity: 1;
    min-height: 100svh;
    padding: 96px 24px 56px;
    background-position: center;
  }

  .about-testimonial__content {
    opacity: 1;
    transform: none;
  }

  .about-testimonial__person {
    align-items: center;
    gap: 18px;
  }

  .about-testimonial__avatar {
    width: 118px;
    height: 112px;
  }

  .about-testimonial__person-text {
    padding-bottom: 0;
  }

  .about-testimonial__name {
    font-size: 24px;
  }

  .about-testimonial__role {
    font-size: 19px;
  }

  .about-testimonial__quote {
    margin-top: 28px;
    font-size: 32px;
  }

  .about-testimonial__underline {
    width: min(311px, 68vw);
    margin-left: min(210px, 24vw);
  }

  .about-testimonial__button {
    margin-top: 48px;
  }

  .about-history {
    padding: 64px 0 56px;
  }

  .about-history__inner {
    width: min(calc(100% - 36px), 660px);
  }

  .about-history h2 {
    width: min(395px, 100%);
    margin-bottom: 40px;
    padding: 0;
    font-size: 38px;
  }

  .about-history__timeline {
    display: flex;
    flex-direction: column;
    gap: 34px;
    min-height: 0;
  }

  .about-history__item {
    display: grid;
    grid-template-columns: 1px minmax(0, 1fr);
    gap: 24px;
  }

  .about-history__line {
    height: 100%;
    min-height: 360px;
  }

  .about-history__content {
    width: 100%;
  }

  .about-history__item--1 .about-history__body,
  .about-history__item--2 .about-history__body,
  .about-history__item--3 .about-history__body {
    gap: 22px;
    margin-top: 0;
  }

  .about-history__item--1 .about-history__year,
  .about-history__item--3 .about-history__year {
    margin-top: 26px;
  }

  .about-history__item--3 .about-history__year {
    padding: 0;
  }

  .about-history__item--2 .about-history__year {
    order: 2;
    margin-top: 26px;
  }

  .about-history__item--2 .about-history__body {
    order: 1;
  }

  .about-history__media {
    width: min(217px, 58vw);
  }

  .about-history__year {
    font-size: 64px;
  }

  .about-history__footer {
    margin-top: 34px;
  }

  .about-team {
    padding: 58px 0 64px;
  }

  .about-team__inner {
    width: min(calc(100% - 36px), 660px);
  }

  .about-team__head {
    align-items: flex-end;
    gap: 24px;
  }

  .about-team h2 {
    font-size: 36px;
  }

  .about-team__nav {
    margin-bottom: 2px;
  }

  .about-team__arrow {
    width: 44px;
    height: 44px;
  }

  .about-team__swiper {
    margin-top: 22px;
  }

  .about-team__card {
    width: min(326px, 70vw);
  }

  .about-collage-quote {
    padding: 6px 0 64px;
  }

  .about-collage-quote__inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: min(calc(100% - 36px), 660px);
    min-height: 0;
  }

  .about-collage-quote__text,
  .about-collage-quote__figure {
    position: static;
  }

  .about-collage-quote__text {
    order: 2;
    width: 100%;
    margin: 10px auto 4px;
    font-size: 36px;
    text-align: left;
    transform: none;
  }

  .about-collage-quote__figure--top {
    order: 1;
    width: min(330px, 72vw);
    height: auto;
    aspect-ratio: 1;
    margin-left: 0;
  }

  .about-collage-quote__figure--left,
  .about-collage-quote__figure--right {
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 318;
  }

  .about-collage-quote__figure--left {
    order: 3;
  }

  .about-collage-quote__figure--right {
    order: 4;
  }
}

@media (max-width: 520px) {
  .about-scroll {
    padding-bottom: 54px;
  }

  .about-scroll__inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .about-scroll__breadcrumb {
    margin-bottom: 42px;
    font-size: 15px;
  }

  .about-scroll h1 {
    font-size: 29px;
    line-height: 1.08;
  }

  .about-scroll__media-list {
    gap: 12px;
  }

  .about-scroll__figure {
    aspect-ratio: 1.22;
  }

  .about-scroll__text {
    font-size: 20px;
    line-height: 1.16;
  }

  .about-testimonial {
    min-height: 100svh;
    padding: 64px 16px 40px;
  }

  .about-testimonial__avatar {
    width: 96px;
    height: 96px;
  }

  .about-testimonial__person {
    gap: 14px;
  }

  .about-testimonial__name {
    font-size: 22px;
  }

  .about-testimonial__role {
    font-size: 17px;
  }

  .about-testimonial__quote {
    font-size: 28px;
    line-height: 1.08;
  }

  .about-testimonial__underline {
    width: 210px;
    margin-top: 8px;
    margin-left: 64px;
  }

  .about-testimonial__button {
    width: 190px;
    height: 48px;
    margin-top: 38px;
    font-size: 16px;
  }

  .about-history {
    padding: 46px 0 44px;
  }

  .about-history__inner {
    width: calc(100% - 28px);
  }

  .about-history h2 {
    font-size: 32px;
  }

  .about-history__item {
    gap: 18px;
  }

  .about-history__line {
    min-height: 330px;
  }

  .about-history__year {
    font-size: 54px;
  }

  .about-history__text {
    font-size: 16px;
  }

  .about-history__footer-label {
    font-size: 17px;
  }

  .about-history__nav {
    flex-basis: 82px;
    width: 82px;
    height: 38px;
  }

  .about-team {
    padding: 48px 0 54px;
  }

  .about-team__inner {
    width: calc(100% - 28px);
  }

  .about-team__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .about-team h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .about-team__card {
    width: min(304px, 82vw);
  }

  .about-team__card h3 {
    font-size: 21px;
  }

  .about-team__position {
    font-size: 16px;
  }

  .about-collage-quote {
    padding-bottom: 50px;
  }

  .about-collage-quote__inner {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .about-collage-quote__text {
    font-size: 30px;
    line-height: 1.08;
  }

  .about-collage-quote__figure--top {
    width: min(278px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-scroll__figure--last img,
  .about-testimonial__content,
  .about-collage-quote__figure img,
  .about-testimonial__button {
    transition: none;
  }

  .about-scroll__transition-bg {
    display: none;
  }

  .about-testimonial {
    --about-bg-opacity: 1;
  }

  .about-collage-quote__figure img {
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

.albino-language-switcher {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
}

.albino-language-switcher::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: -120px;
  height: 12px;
}

.albino-language-switcher__toggle {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.albino-language-switcher__menu,
.hoff-header__nav .albino-language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: max-content;
  min-width: 146px;
  height: auto;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(50, 53, 64, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 33, 58, 0.18);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.albino-language-switcher:hover .albino-language-switcher__menu,
.albino-language-switcher:focus-within .albino-language-switcher__menu,
.albino-language-switcher.is-open .albino-language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.albino-language-switcher:hover .albino-language-switcher__arrow,
.albino-language-switcher:focus-within .albino-language-switcher__arrow,
.albino-language-switcher.is-open .albino-language-switcher__arrow {
  transform: rotate(0deg);
}

.albino-language-switcher__link,
.hoff-header__nav .albino-language-switcher__link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #323540;
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.albino-language-switcher__link > span[data-no-translation],
.albino-language-switcher__link .trp-ls-language-name {
  display: inline-flex;
  align-items: center;
}

.albino-language-switcher__link > span[data-no-translation] {
  gap: 8px;
}

.albino-language-switcher__link img {
  flex: 0 0 auto;
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.albino-language-switcher__link:hover,
.albino-language-switcher__link:focus-visible,
.albino-language-switcher__link.is-current {
  background: rgba(72, 113, 171, 0.1);
  color: #4871ab;
}

.albino-language-switcher__link:focus-visible {
  outline: 2px solid #4871ab;
  outline-offset: 2px;
}

@media (max-width: 1180px) {
  .site-header__language-switcher,
  .hoff-header__language-switcher {
    width: 100%;
  }

  .site-header__language.albino-language-switcher__toggle,
  .hoff-header__language.albino-language-switcher__toggle {
    justify-content: flex-start;
    width: 100%;
  }

  .albino-language-switcher__menu,
  .hoff-header__nav .albino-language-switcher__menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .albino-language-switcher:focus-within .albino-language-switcher__menu,
  .albino-language-switcher.is-open .albino-language-switcher__menu {
    display: flex;
  }

  .albino-language-switcher__link,
  .hoff-header__nav .albino-language-switcher__link {
    min-height: 38px;
    padding: 8px 10px;
  }
}
