@font-face {
  font-family: "RoadRadio";
  src: url("fonts/RoadRadio.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "RoadRadioLight";
  src: url("fonts/RoadRadioLight.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "RoadRadioThin";
  src: url("fonts/RoadRadioLight.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "RoadRadioBold";
  src: url("fonts/RoadRadioBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "RoadRadioBlack";
  src: url("fonts/RoadRadioBlack.woff2") format("woff2");
  font-display: swap;
}

:root {
  --legacy-green: #66a464;
  --legacy-ink: #4a4b4f;
  --legacy-dark: #4a4b4f;
  --legacy-width: 1270px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--legacy-ink);
  background: #fff;
  font-family: "RoadRadio", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

body,
h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

ul {
  margin-bottom: 0;
}

.legacy-container {
  position: relative;
  width: min(100%, var(--legacy-width));
  margin: 0 auto;
  padding: 0 10px;
}

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

/* Header */
.site-header {
  position: absolute;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  height: 122px;
  color: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-branding {
  display: grid;
  height: 122px;
  padding-top: 25px;
  grid-template-columns: 1fr 198px 1fr;
  align-items: start;
}

.legacy-header-meta {
  min-width: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  text-transform: lowercase;
}

.legacy-header-meta > div {
  white-space: nowrap;
}

.lang-switch {
  text-decoration: none;
}

.lang-switch:hover {
  color: #fff;
}

.legacy-header-meta > a:last-child {
  display: inline-block;
  margin-top: 2px;
}

.custom-logo-link {
  display: block;
  width: 198px;
  height: 97px;
}

.custom-logo-link img {
  width: 198px;
  height: 93px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wrapper-header-buttons {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.wrapper-header-buttons > a {
  min-width: 160px;
  height: 30px;
  margin-right: 30px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wrapper-header-buttons > a:hover {
  border-color: #fff;
}

.wrapper-header-buttons p {
  margin: 0 10px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
}

#mob-menu-icon {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#mob-menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 9px;
  background: #fff;
  transition: 250ms ease-in-out;
}

#mob-menu-icon span:nth-child(1) {
  top: 0;
}

#mob-menu-icon span:nth-child(2) {
  top: 10px;
}

#mob-menu-icon span:nth-child(3) {
  top: 20px;
}

#mob-menu-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

#mob-menu-icon.open span:nth-child(2) {
  left: -60px;
  opacity: 0;
}

#mob-menu-icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.site-header.scroll {
  position: fixed;
  height: 60px;
  color: var(--legacy-ink);
  background: #fff;
  box-shadow: 0 0 3px #ddd;
}

.site-header.scroll .site-branding {
  height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}

.site-header.scroll .legacy-header-meta {
  color: var(--legacy-ink);
}

.site-header.scroll .custom-logo-link {
  width: auto;
  height: 40px;
  justify-self: center;
}

.site-header.scroll .custom-logo-link img {
  width: auto;
  height: 40px;
  filter: none;
}

.site-header.scroll .wrapper-header-buttons > a {
  color: #56575b;
  border-color: #acacae;
}

.site-header.scroll .wrapper-header-buttons p {
  color: var(--legacy-ink);
}

.site-header.scroll #mob-menu-icon span {
  background: #56575b;
}

/* Slide-out menu */
.menu {
  position: fixed;
  z-index: 20000;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 340px;
  max-width: 100%;
  height: 100%;
  padding: 120px 45px 10px;
  overflow-y: auto;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  text-align: right;
  transition: left 400ms ease;
}

.menu.open {
  left: calc(100% - 340px);
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 45px;
  padding: 0 0 0 30px;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.close-menu::before,
.close-menu::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

.close-menu::before {
  transform: rotate(-45deg);
}

.close-menu::after {
  transform: rotate(45deg);
}

.site-header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 20px;
}

.menu-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
}

.menu-item a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.menu .tel {
  display: flex;
  margin: 60px 0 30px;
  flex-direction: column;
  align-items: flex-end;
}

.menu .tel > span {
  margin-bottom: 5px;
  color: #35a55f;
  font-size: 12px;
  text-transform: uppercase;
}

.menu .tel a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
}

.menu .contact-us {
  display: inline-block;
  padding: 7px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

/* Hero */
.legacy-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  color: #fff;
  background: #17252d;
}

.legacy-hero__slides,
.legacy-hero__slide,
.legacy-hero__shade {
  position: absolute;
  inset: 0;
}

.legacy-hero__slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.legacy-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.legacy-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 12, 15, 0.3), rgba(5, 12, 15, 0.05) 70%),
    rgba(0, 0, 0, 0.16);
}

.legacy-hero__content,
.legacy-hero__arrows {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: min(1025px, calc(100% - 40px));
  transform: translateX(-50%);
}

.legacy-hero__content {
  top: 38.608%;
  font-family: "RoadRadioLight", Arial, sans-serif;
}

.legacy-hero__content h2 {
  position: relative;
  margin: 0 0 50.2px;
  padding-bottom: 25px;
  color: #fff;
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: clamp(36px, 4.45vw, 60px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.legacy-hero__content h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.legacy-hero__body {
  color: #fff;
  font-size: clamp(18px, 2.08vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.legacy-hero__body p {
  margin: 0;
}

.legacy-hero__body ul {
  margin-top: 25px;
  padding-left: 35px;
}

.legacy-hero__body li {
  height: auto;
  margin-bottom: 15px;
  color: #fff;
  font-size: 21px;
  line-height: 1.12;
  list-style: disc;
}

.legacy-hero__body .hero-list--large {
  margin-top: 0;
  padding-left: 0;
}

.legacy-hero__body .hero-list--large li {
  font-size: inherit;
  list-style: none;
}

.legacy-hero__arrows {
  top: 34.8%;
  display: flex;
  gap: 2px;
}

.legacy-hero__arrows button,
.achievement-arrow {
  position: relative;
  width: 26px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.legacy-hero__arrows button span,
.achievement-arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.9);
}

.legacy-hero__arrows button:first-child span,
.achievement-arrow--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.legacy-hero__arrows button:last-child span,
.achievement-arrow--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

/* Foundation and geography */
.since-foundation {
  position: relative;
  height: 885px;
  padding: 40px 0 10px;
  overflow: visible;
  background: #fff;
}

.foundation-container {
  position: static;
}

.foundation-title {
  position: relative;
  height: 100px;
  margin: 0 0 60px;
  padding-bottom: 30px;
  color: var(--legacy-green);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.foundation-title strong {
  display: block;
  color: var(--legacy-ink);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.foundation-title::after,
.achievement-container > h2::after,
.news-container > h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  max-width: 20%;
  height: 5px;
  background: rgba(102, 164, 100, 0.15);
  content: "";
}

.statistic {
  position: relative;
  z-index: 10;
  display: flex;
  height: 114px;
  overflow: hidden;
  align-items: start;
  justify-content: space-between;
}

.statistic__item {
  min-width: 0;
}

.statistic__item--title,
.statistic__item--number,
.statistic__item--text {
  margin: 0;
}

.statistic__item--title {
  color: var(--legacy-ink);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.85;
  text-transform: uppercase;
}

.statistic__item--number {
  color: var(--legacy-green);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 80px;
  line-height: 0.5;
  text-align: right;
  white-space: nowrap;
}

.statistic__item--number span {
  font-size: 0.5em;
}

.statistic__item--text {
  color: var(--legacy-green);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.85;
  text-align: right;
  text-transform: uppercase;
}

.statistic__item:last-child .statistic__item--title {
  text-align: right;
}

.presence {
  height: 561px;
  padding: 185px 0;
}

.presence h2 {
  position: relative;
  z-index: 11;
  margin: 0;
  padding-bottom: 58px;
  color: var(--legacy-ink);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
}

.presence h2 strong {
  display: block;
  margin-bottom: 20px;
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
}

.presence .background-image {
  position: absolute;
  z-index: 9;
  top: 85px;
  right: 0;
  width: 895px;
  max-width: none;
  height: auto;
}

/* Achievements */
.achievement {
  position: relative;
  min-height: 760px;
  padding: 85px 0 90px;
  overflow: hidden;
  color: #fff;
  background: var(--legacy-dark);
}

.achievement-container {
  min-height: 585px;
  background-image: url("cup.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 610px auto;
}

.achievement-container > h2 {
  position: relative;
  min-height: 65px;
  margin: 0 0 70px;
  padding-bottom: 30px;
  color: var(--legacy-green);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.achievement-container > h2 strong {
  color: #fff;
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-weight: 400;
}

.achievement-container > h2::after {
  background: rgba(255, 255, 255, 0.15);
}

.achievement-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
}

.achievement-track {
  display: flex;
  min-width: 0;
  align-items: stretch;
  gap: 22px;
}

.achievement-card {
  position: relative;
  min-width: 0;
  min-height: 345px;
  padding: 34px 30px 30px;
  flex: 1 1 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(74, 75, 79, 0.72);
  box-shadow: 0 18px 45px rgba(15, 16, 18, 0.08);
  transition: border-color 220ms ease, transform 220ms ease, opacity 220ms ease;
  backdrop-filter: blur(2px);
}

.achievement-card--active {
  border-color: var(--legacy-green);
  background: rgba(65, 67, 70, 0.92);
  box-shadow: 0 24px 55px rgba(18, 19, 21, 0.22);
  transform: translateY(-18px);
}

.achievement-card--side {
  opacity: 0.78;
}

.achievement-card__topline {
  display: flex;
  min-height: 62px;
  margin-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.achievement-medal {
  display: block;
  width: 50px;
  height: 60px;
  flex: 0 0 auto;
  background-image: url("medal.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.achievement-number {
  color: rgba(255, 255, 255, 0.24);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.achievement-card h3 {
  min-height: 48px;
  margin: 0 0 20px;
  color: var(--legacy-green);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.achievement-card p {
  margin: 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.achievement-arrow {
  position: relative;
  z-index: 5;
  width: 44px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.achievement-arrow:hover {
  border-color: var(--legacy-green);
  background: rgba(102, 164, 100, 0.12);
}

.achievement-pagination {
  display: flex;
  grid-column: 2;
  margin-top: 32px;
  justify-content: center;
  gap: 10px;
}

.achievement-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.achievement-pagination button.is-active {
  border-color: var(--legacy-green);
  background: var(--legacy-green);
  transform: scale(1.3);
}

/* News */
.news {
  min-height: 0;
  margin-top: 16px;
  padding: 125px 0 0;
  background: #fff;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
}

.news-container > h2 {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 48px;
  margin: 0 0 15px;
  padding-bottom: 8px;
  align-items: flex-start;
  justify-content: space-between;
  color: #515256;
  font-family: "RoadRadio", Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
}

.news-container > h2::after {
  width: 135px;
}

.news-container > h2 a {
  display: inline-block;
  min-width: 190px;
  height: 40px;
  padding: 0 40px;
  color: var(--legacy-green);
  background: #eef5ee;
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}

.news-container > h2 a:hover {
  background: #d4e0d4;
}

.news-grid {
  display: flex;
  width: 100%;
}

.news_block {
  flex: 0 0 calc(25% - 8px);
  min-width: 0;
  margin-right: 8px;
}

.news_img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news_img a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news_img a::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(102, 164, 100, 0.5);
  content: "";
  opacity: 0;
  transition: opacity 400ms ease;
}

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

.news_img span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: 134px;
  padding: 18px 12px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(255, 255, 255, 0.35);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 400ms ease;
}

.news_img:hover a::before,
.news_img:hover span {
  opacity: 1;
}

.news_name {
  position: relative;
  display: inline-block;
  margin: 10px 0 15px;
  padding-top: 20px;
  color: #515256;
  font-family: "RoadRadio", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.news .date {
  margin: 0;
  color: var(--legacy-green);
  font-family: "RoadRadioThin", Arial, sans-serif;
  font-size: 14px;
  line-height: 28px;
}

/* Original cookie notice */
#soglcook {
  position: fixed;
  z-index: 30000;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  border-top: 1px solid var(--legacy-green);
  background: #fff;
}

.soglcook {
  display: table;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 25px 0;
}

.soglbl,
.soglbr {
  display: table-cell;
  padding: 0 50px;
  vertical-align: middle;
}

.soglbl {
  width: auto;
}

.soglbr {
  width: 260px;
}

.soglbl p {
  margin: 0;
  color: var(--legacy-ink);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
}

.soglbl a {
  color: var(--legacy-green);
  text-decoration: none;
}

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

.soglbr .soglclose {
  display: block;
  width: 160px;
  margin: 0 auto;
  padding: 10px 0;
  color: var(--legacy-green);
  border: 2px solid var(--legacy-green);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;
}

.soglbr .soglclose:hover {
  color: #fff;
  background: var(--legacy-green);
}

/* Contacts */
.contacts {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background: #f3f7f3;
}

.contacts::before {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(102, 164, 100, 0.14);
  border-radius: 50%;
  content: "";
}

.contacts-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 26px;
}

.contacts-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 5px;
  background: rgba(102, 164, 100, 0.18);
  content: "";
}

.contacts-heading p {
  margin: 0 0 8px;
  color: var(--legacy-green);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-heading h2 {
  margin: 0;
  color: var(--legacy-ink);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.contacts-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.82fr;
  gap: 18px;
}

.contact-card {
  min-height: 235px;
  padding: 36px 34px;
  border: 1px solid rgba(74, 75, 79, 0.13);
  background: rgba(255, 255, 255, 0.88);
}

.contact-card--primary {
  color: #fff;
  border-color: var(--legacy-green);
  background: var(--legacy-green);
}

.contact-label {
  margin: 0 0 30px;
  color: var(--legacy-green);
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card--primary .contact-label {
  color: rgba(255, 255, 255, 0.78);
}

.contact-phone,
.contact-email {
  display: block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.contact-phone {
  margin-bottom: 22px;
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.contact-email {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.contact-card address,
.contact-hours {
  margin: 0;
  color: var(--legacy-ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
}

/* Shared buttons and 404 */
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "RoadRadioLight", Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.button--green {
  color: #fff;
  background: var(--legacy-green);
}

.button--outline {
  color: var(--legacy-ink);
  border-color: #bfc1c2;
  background: transparent;
}

.error-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: 150px 0 80px;
  overflow: hidden;
  align-items: center;
  background: #eef5ee;
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.error-code {
  margin: 0 0 -18px;
  color: rgba(102, 164, 100, 0.16);
  font-family: "RoadRadioBlack", Arial, sans-serif;
  font-size: clamp(130px, 24vw, 300px);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.eyebrow {
  color: var(--legacy-green);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-content h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--legacy-ink);
  font-family: "RoadRadioBold", Arial, sans-serif;
  font-size: clamp(39px, 6vw, 66px);
  line-height: 1.08;
  text-transform: uppercase;
}

.error-content > p:not(.eyebrow):not(.error-code) {
  max-width: 600px;
  margin-bottom: 32px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  gap: 12px;
}

.error-orbit {
  position: absolute;
  border: 1px solid rgba(102, 164, 100, 0.25);
  border-radius: 50%;
}

.error-orbit--one {
  top: 140px;
  right: -100px;
  width: 520px;
  height: 520px;
}

.error-orbit--two {
  right: 130px;
  bottom: -200px;
  width: 430px;
  height: 430px;
}

@media (max-width: 1024px) {
  .legacy-container {
    width: 100%;
    padding: 0 20px;
  }

  .site-branding {
    grid-template-columns: 1fr 150px 1fr;
  }

  .custom-logo-link,
  .custom-logo-link img {
    width: 150px;
  }

  .legacy-header-meta {
    font-size: 11px;
  }

  .wrapper-header-buttons > a {
    min-width: 120px;
    height: 28px;
    margin-right: 8px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 26px;
  }

  .wrapper-header-buttons p {
    display: none;
  }

  .legacy-hero__content h2 {
    font-size: 42px;
  }

  .legacy-hero__body {
    font-size: 21px;
  }

  .legacy-hero__body li {
    font-size: 17px;
  }

  .statistic {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }

  .statistic__item {
    width: 50%;
    min-width: 250px;
    margin-bottom: 15px;
    text-align: center;
  }

  .statistic__item--title,
  .statistic__item--number,
  .statistic__item--text,
  .statistic__item:last-child .statistic__item--title {
    text-align: center;
  }

  .since-foundation {
    height: auto;
    min-height: 980px;
  }

  .presence {
    position: relative;
    height: 500px;
    padding: 110px 0;
  }

  .presence .background-image {
    top: auto;
    bottom: 0;
    width: 62%;
  }

  .achievement {
    height: auto;
    min-height: 0;
  }

  .achievement-container {
    height: auto;
    min-height: 585px;
  }

  .news-grid {
    flex-wrap: wrap;
    gap: 28px 14px;
  }

  .news_block {
    flex-basis: calc(50% - 7px);
    margin-right: 0;
  }

  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card--primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-header,
  .site-branding {
    height: 72px;
  }

  .site-branding {
    padding-top: 10px;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .legacy-header-meta {
    display: none;
  }

  .custom-logo-link {
    width: 118px;
    height: 52px;
    justify-self: center;
  }

  .custom-logo-link img {
    width: 118px;
    height: 52px;
  }

  .wrapper-header-buttons {
    justify-self: end;
  }

  .header-spacer {
    display: none;
  }

  .site-header.scroll {
    height: 60px;
  }

  .site-header.scroll .site-branding {
    height: 60px;
  }

  .menu {
    width: 100%;
  }

  .menu.open {
    left: 0;
  }

  .legacy-hero {
    height: 610px;
    aspect-ratio: auto;
  }

  .legacy-hero__slide {
    background-position: center;
  }

  .legacy-hero__content {
    top: 34%;
    text-align: center;
  }

  .legacy-hero__content h2 {
    margin-bottom: 18px;
    padding-bottom: 16px;
    font-size: clamp(27px, 7.5vw, 42px);
    line-height: 1.08;
    white-space: normal;
  }

  .legacy-hero__content h2::after {
    right: 0;
    left: 0;
    width: 100px;
    height: 4px;
    margin: auto;
  }

  .legacy-hero__body {
    font-size: 17px;
    line-height: 1.35;
  }

  .legacy-hero__body ul {
    max-width: 340px;
    margin: 20px auto 0;
    padding-left: 24px;
    text-align: left;
  }

  .legacy-hero__body .hero-list--large {
    padding-left: 0;
    text-align: center;
  }

  .legacy-hero__body li {
    font-size: 15px;
  }

  .legacy-hero__arrows {
    top: auto;
    bottom: 36px;
    justify-content: center;
  }

  .since-foundation {
    min-height: 0;
    padding-top: 30px;
  }

  .foundation-title,
  .achievement-container > h2,
  .news-container > h2 {
    height: auto;
    margin-bottom: 34px;
    padding-bottom: 18px;
    font-size: 24px;
    line-height: 1.12;
    text-align: center;
  }

  .foundation-title::after,
  .achievement-container > h2::after,
  .news-container > h2::after {
    right: 0;
    left: 0;
    width: 90px;
    margin: auto;
  }

  .foundation-title strong {
    font-size: 20px;
  }

  .statistic__item {
    min-width: 0;
  }

  .statistic__item--title {
    font-size: 14px;
  }

  .statistic__item--number {
    font-size: 42px;
    line-height: 0.85;
  }

  .statistic__item--text {
    font-size: 14px;
  }

  .presence {
    height: auto;
    min-height: 460px;
    padding: 30px 0 0;
    text-align: center;
  }

  .presence h2 {
    width: 100%;
    padding-bottom: 20px;
    font-size: 16px;
    text-align: center;
  }

  .presence h2 strong {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .presence .background-image {
    position: static;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .achievement {
    min-height: 0;
    padding: 55px 0 70px;
  }

  .achievement-container {
    min-height: 0;
    padding-bottom: 0;
    background-size: 320px auto;
  }

  .achievement-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .achievement-card--side {
    display: none;
  }

  .achievement-card--active {
    min-height: 330px;
    transform: none;
  }

  .achievement-card h3 {
    min-height: 0;
  }

  .achievement-arrow {
    width: 40px;
    height: 52px;
  }

  .achievement-pagination {
    grid-column: 1 / -1;
  }

  .contacts {
    padding: 70px 0 75px;
  }

  .contacts-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .contacts-heading::after {
    right: 0;
    width: 90px;
    margin: auto;
  }

  .contacts-heading h2 {
    font-size: 30px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-card--primary {
    grid-column: auto;
  }

  .contact-card {
    min-height: 0;
  }

  .error-page {
    padding-top: 110px;
  }
}

@media (max-width: 480px) {
  .legacy-container {
    padding: 0 12px;
  }

  .site-branding {
    grid-template-columns: 1fr;
  }

  .custom-logo-link,
  .custom-logo-link img {
    width: 104px;
  }

  .wrapper-header-buttons {
    gap: 4px;
  }

  .wrapper-header-buttons > a {
    min-width: 80px;
    width: 80px;
    height: 26px;
    margin-right: 4px;
    padding: 0 7px;
    font-size: 10px;
    line-height: 24px;
  }

  #mob-menu-icon {
    width: 25px;
  }

  .legacy-hero {
    height: 560px;
  }

  .statistic__item {
    width: 100%;
  }

  .error-actions {
    flex-direction: column;
  }
}
