@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Cyrillic.woff2") format("woff2"), url("../fonts/BebasNeue-Cyrillic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Наследование стилей для вложенных элементов */
a,
span {
  font-weight: inherit;
  font-size: inherit;
  font: inherit;
}

/* Сброс стилей кнопки */
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

/** Планшет и ниже (@mixin below-l). TABLET_MEDIA_QUERY в js/utils/breakpoints.js — только для header.js */
/**
 * Планшет и уже. Дублирует portrait-fallback для iPad Safari:
 * в портрете может отдавать ~1180px при реальных ~820px.
 */
*, html, body {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  scroll-behavior: smooth;
}
* p, html p, body p {
  font: inherit;
  color: inherit;
}
* p + p, html p + p, body p + p {
  margin-top: 1em;
}

html {
  --heading-fw: 600;
}

html[lang^=hy],
html[lang^=am],
body.lang-am {
  --heading-fw: 500;
}

html[lang^=hy],
html[lang^=hy] *,
html[lang^=am],
html[lang^=am] *,
body.lang-am,
body.lang-am * {
  font-family: "Montserrat Arm", "Montserrat", sans-serif;
}

a:focus {
  outline-color: #E6A26F;
}

body {
  background: #F1F2F4;
  overflow-x: clip;
}
body.lock {
  overflow: hidden;
}

html {
  font-size: 12px;
}
@media (max-width: 1700px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 1359px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 7px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 6px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 5px;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0;
}

.icon {
  width: 100%;
  height: 100%;
}

section {
  scroll-margin: 12rem;
}

.container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .container {
    max-width: 1324px;
  }
}
@media (max-width: 1359px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
.fslightboxsn span {
  color: inherit;
}

.socials {
  display: flex;
  gap: 10px;
}
.socials__link {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  transition: all 0.2s ease;
}
.socials__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.socials__link svg {
  width: 100%;
  height: 100%;
}
.socials__link:hover {
  transform: scale(1.1);
  background: #1F2A35;
}
@media (max-width: 1024px) {
  .socials__link {
    width: 32px;
    height: 32px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .socials__link {
    width: 32px;
    height: 32px;
  }
}

.arrow {
  width: 4rem;
  height: 4rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.arrow--bg {
  background: #F1F2F4;
}
@media (max-width: 768px) {
  .arrow {
    width: 32px;
    height: 32px;
  }
}
.arrow .icon {
  width: 100%;
  height: 100%;
  color: #124A83;
  stroke: currentColor;
  fill: none;
}
.arrow:hover {
  transform: scale(1.08);
}
.arrow.swiper-button-disabled, .arrow[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .breadcrumb {
    font-size: 12px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .breadcrumb {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 10px;
    display: none;
  }
}
@media (max-width: 480px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__item {
  font: inherit;
  color: inherit;
}
.breadcrumb__item span {
  font: inherit;
  color: inherit;
}
.breadcrumb__item a {
  font: inherit;
  color: inherit;
  font-weight: 500;
  transition: all 0.2s ease;
}
.breadcrumb__item a:hover {
  color: #9FB6D3;
}
.breadcrumb__item-text {
  font: inherit;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  background: #1F2A35;
  box-shadow: 0 8px 24px rgba(31, 42, 53, 0.22);
}
.header.is-compact .header__top {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}
.header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  max-height: 12rem;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease, border-color 0.25s ease;
}
.header__top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.header__logo {
  width: 35rem;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__search {
  flex: 1 0;
  height: 4.8rem;
  position: relative;
}
.header__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header__search-input {
  width: 100%;
  height: 100%;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  box-shadow: none;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #FFFFFF;
}
.header__search-input p {
  font: inherit;
  color: inherit;
}
.header__search-input p + p {
  margin-top: 1.4rem;
}
.header__search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header__search-input:focus {
  outline: none;
  border: 1px solid #FFFFFF;
}
.header__search-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-button .icon {
  width: 100%;
  height: 100%;
  fill: #FFFFFF;
  transition: all 0.2s ease;
}
.header__search-button:hover .icon {
  fill: #9FB6D3;
}
.header__langs {
  display: flex;
  align-items: stretch;
  gap: 4px;
}
.header__burger {
  display: none;
  width: 4rem;
  height: 4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.header__burger span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  border-radius: 2px;
  background: #FFFFFF;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__burger:hover {
  background: rgba(255, 255, 255, 0.2);
}
.header__lang {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 4px;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.header__lang p {
  font: inherit;
  color: inherit;
}
.header__lang p + p {
  margin-top: 1.4rem;
}
.header__lang:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__lang.active {
  background: #FFFFFF;
  color: #124A83;
}
.header__bot {
  padding: 1.2rem 0;
}
.header__bot-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.header__nav-list > li {
  position: relative;
}
.header__nav-list > li > a {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 500;
  color: #FFFFFF;
  transition: all 0.2s ease;
}
.header__nav-list > li > a p {
  font: inherit;
  color: inherit;
}
.header__nav-list > li > a p + p {
  margin-top: 1.4rem;
}
.header__nav-list > li > a:hover {
  color: #9FB6D3;
}
.header__nav-list > li.current > a, .header__nav-list > li.current > .dropdown__trigger, .header__nav-list > li.current-menu-item > a, .header__nav-list > li.current-menu-item > .dropdown__trigger, .header__nav-list > li.current-menu-ancestor > a, .header__nav-list > li.current-menu-ancestor > .dropdown__trigger {
  color: #9FB6D3;
}
.header__nav-list > li.current > a:hover, .header__nav-list > li.current > .dropdown__trigger:hover, .header__nav-list > li.current-menu-item > a:hover, .header__nav-list > li.current-menu-item > .dropdown__trigger:hover, .header__nav-list > li.current-menu-ancestor > a:hover, .header__nav-list > li.current-menu-ancestor > .dropdown__trigger:hover {
  color: #9FB6D3;
}
.header__links-list {
  display: flex;
  gap: 10px;
}
.header__links-list li > a {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 24px !important;
}
.header__links-list li > a img, .header__links-list li > a svg, .header__links-list li > a .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.header__links-list li > a:hover {
  background: #c27e4a;
}
.header__links-list li > a:hover {
  background: #FFFFFF;
  color: #1F2A35;
}
.header__links-list li.accent > a {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
  padding: 16px 24px !important;
}
.header__links-list li.accent > a img, .header__links-list li.accent > a svg, .header__links-list li.accent > a .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.header__links-list li.accent > a:hover {
  background: #c27e4a;
}
.header__links-list li.accent > a:hover {
  background: #0b3b6b;
}
.header__mobile-extra {
  display: none;
}
.header.menu-open {
  background: #1F2A35;
}

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  transition: all 0.2s ease;
}
.dropdown__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #FFFFFF;
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .dropdown:hover > .dropdown__trigger {
    color: #9FB6D3;
  }
  .dropdown:hover > .dropdown__chevron, .dropdown:hover > .dropdown__trigger .dropdown__chevron {
    transform: rotate(180deg);
  }
  .dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.dropdown.open > .dropdown__trigger {
  color: rgba(255, 255, 255, 0.7);
}
.dropdown.open > .dropdown__trigger .dropdown__chevron {
  transform: rotate(180deg);
}
.dropdown.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: -1.6rem;
  z-index: 200;
  min-width: 24rem;
  background: #1F2A35;
  border-radius: 4px;
  padding: 1rem 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.submenu li a {
  display: block;
  padding: 1rem 1.6rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #FFFFFF;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.submenu li a p {
  font: inherit;
  color: inherit;
}
.submenu li a p + p {
  margin-top: 1.4rem;
}
.submenu li a:hover {
  color: #9FB6D3;
  background: rgba(255, 255, 255, 0.08);
}
.submenu li:first-child > a {
  border-radius: 4px 4px 0 0;
}
.submenu li:last-child > a {
  border-radius: 0 0 4px 4px;
}

@media (max-width: 1024px) {
  .header.is-compact .header__top {
    max-height: none;
    opacity: 1;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    pointer-events: auto;
  }
  .header__top {
    max-height: none;
    overflow: visible;
  }
  .header__top-wrapper {
    gap: 4rem;
    flex-wrap: wrap;
  }
  .header__logo {
    order: 1;
    max-width: 100%;
  }
  .header__burger {
    order: 2;
    display: inline-flex;
    margin-left: auto;
    width: 6rem;
    height: 6rem;
  }
  .header__burger span {
    width: 2.6rem;
  }
  .header__top-wrapper > .header__search, .header__top-wrapper > .socials, .header__top-wrapper > .header__langs {
    display: none;
  }
  .header.menu-open .header__top-wrapper > .header__search {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
    height: 6rem;
    order: 3;
  }
  .header.menu-open .header__burger span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg);
  }
  .header.menu-open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  .header.menu-open .header__burger span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg);
  }
  .header.menu-open .header__bot {
    max-height: calc(100dvh - 8.8rem);
    opacity: 1;
    pointer-events: auto;
    padding: 0 0 4rem;
  }
  .header.menu-open .header__mobile-extra {
    display: flex;
  }
  .header__bot {
    max-height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  }
  .header__bot-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding-top: 2.4rem;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header__nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__nav-list > li > a {
    display: block;
    padding: 2.5rem 0;
  }
  .header__links-list {
    flex-direction: column;
    gap: 0.8rem;
  }
  .header__links-list a {
    width: 100%;
  }
  .header__mobile-extra {
    width: 100%;
    margin-top: 0.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  .header__langs-mobile {
    margin-left: 0;
  }
  .dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    padding: 2.5rem 0;
    font-size: clamp(12px, 1.4rem, 17px);
    line-height: 1.4;
    font-weight: 400;
    color: rgba(31, 42, 53, 0.7);
    color: #FFFFFF;
  }
  .dropdown__trigger p {
    font: inherit;
    color: inherit;
  }
  .dropdown__trigger p + p {
    margin-top: 1.4rem;
  }
  .submenu {
    position: static;
    top: auto;
    left: auto;
    z-index: 1;
    min-width: 100%;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 1.6rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .submenu li:first-child > a, .submenu li:last-child > a {
    border-radius: 0;
  }
  .submenu li a {
    padding: 0.9rem 0;
    white-space: normal;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
  }
  .submenu li a:hover {
    color: #9FB6D3;
    background: transparent;
  }
  .dropdown.open > .submenu {
    max-height: 40rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .header.is-compact .header__top {
    max-height: none;
    opacity: 1;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    pointer-events: auto;
  }
  .header__top {
    max-height: none;
    overflow: visible;
  }
  .header__top-wrapper {
    gap: 4rem;
    flex-wrap: wrap;
  }
  .header__logo {
    order: 1;
    max-width: 100%;
  }
  .header__burger {
    order: 2;
    display: inline-flex;
    margin-left: auto;
    width: 6rem;
    height: 6rem;
  }
  .header__burger span {
    width: 2.6rem;
  }
  .header__top-wrapper > .header__search, .header__top-wrapper > .socials, .header__top-wrapper > .header__langs {
    display: none;
  }
  .header.menu-open .header__top-wrapper > .header__search {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
    height: 6rem;
    order: 3;
  }
  .header.menu-open .header__burger span:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg);
  }
  .header.menu-open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  .header.menu-open .header__burger span:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg);
  }
  .header.menu-open .header__bot {
    max-height: calc(100dvh - 8.8rem);
    opacity: 1;
    pointer-events: auto;
    padding: 0 0 4rem;
  }
  .header.menu-open .header__mobile-extra {
    display: flex;
  }
  .header__bot {
    max-height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  }
  .header__bot-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding-top: 2.4rem;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header__nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__nav-list > li > a {
    display: block;
    padding: 2.5rem 0;
  }
  .header__links-list {
    flex-direction: column;
    gap: 0.8rem;
  }
  .header__links-list a {
    width: 100%;
  }
  .header__mobile-extra {
    width: 100%;
    margin-top: 0.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  .header__langs-mobile {
    margin-left: 0;
  }
  .dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    padding: 2.5rem 0;
    font-size: clamp(12px, 1.4rem, 17px);
    line-height: 1.4;
    font-weight: 400;
    color: rgba(31, 42, 53, 0.7);
    color: #FFFFFF;
  }
  .dropdown__trigger p {
    font: inherit;
    color: inherit;
  }
  .dropdown__trigger p + p {
    margin-top: 1.4rem;
  }
  .submenu {
    position: static;
    top: auto;
    left: auto;
    z-index: 1;
    min-width: 100%;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 1.6rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .submenu li:first-child > a, .submenu li:last-child > a {
    border-radius: 0;
  }
  .submenu li a {
    padding: 0.9rem 0;
    white-space: normal;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
  }
  .submenu li a:hover {
    color: #9FB6D3;
    background: transparent;
  }
  .dropdown.open > .submenu {
    max-height: 40rem;
  }
}
@media (max-width: 768px) {
  .header.menu-open .header__bot {
    max-height: calc(100dvh - 6.4rem);
  }
}
.swiper {
  overflow: hidden;
  width: 100%;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero__slide {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
}
.hero__main {
  position: relative;
  z-index: 2;
  padding: 24rem 0 12rem;
}
@media (max-width: 480px) {
  .hero__main {
    padding: 25rem 0 25rem;
  }
}
.hero__heading {
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.02em;
  color: #9FB6D3;
  margin-bottom: 2.8rem;
}
.hero__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #FFFFFF;
  max-width: 84rem;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 4.2rem;
  }
}
.hero__btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  margin-top: 4.8rem;
  display: inline-flex;
}
.hero__btn img, .hero__btn svg, .hero__btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.hero__btn:hover {
  background: #c27e4a;
}
@media (max-width: 480px) {
  .hero__btn {
    margin-top: 40px;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}
.hero__controls {
  position: absolute;
  bottom: 6rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hero__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.4rem;
}
.hero__nav-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 0;
}
.hero__nav-count .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.hero__nav-count .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #FFFFFF;
}
.hero__nav-count.swiper-pagination-lock {
  display: none;
}

.about {
  padding: 10rem 0;
}
.about__heading {
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.02em;
  color: #9FB6D3;
  margin-bottom: 2.8rem;
}
.about__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  margin-bottom: 3.2rem;
}
.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 1024px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }
}
.about__left {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .about__left {
    height: 60rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .about__left {
    height: 60rem;
  }
}
.about__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__play {
  position: relative;
  z-index: 2;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  background: rgba(31, 42, 53, 0.7);
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.2s ease;
}
.about__play:hover {
  background: #1F2A35;
}
.about__play:hover .about__play-icon {
  transform: scale(1.1);
}
.about__play-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #E6A26F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  transition: all 0.2s ease;
}
.about__play-icon .icon {
  width: 100%;
  height: 100%;
  fill: #FFFFFF;
  margin-left: 0.2rem;
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__item {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .about__item {
    padding: 20px;
  }
}
.about__item-title {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.about__item-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.about__item-text p {
  font: inherit;
  color: inherit;
}
.about__item-text p + p {
  margin-top: 1em;
}
.about__footer {
  margin-top: 3.2rem;
  background: #E9EFF5;
  padding: 4rem;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  border: 1px solid rgba(31, 42, 53, 0.1);
}
@media (max-width: 768px) {
  .about__footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.about__footer-main {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .about__footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about__footer-logo {
  flex: 0 0 7.2rem;
  width: 7.2rem;
}
.about__footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__footer-logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .about__footer-logo {
    width: 60px;
    height: 60px;
  }
}
.about__footer-text {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  max-width: 65rem;
}
@media (max-width: 768px) {
  .about__footer-text {
    max-width: 100%;
    text-align: left;
  }
}
.about__footer-btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.about__footer-btn img, .about__footer-btn svg, .about__footer-btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.about__footer-btn:hover {
  background: #c27e4a;
}

.numbers {
  padding: 10rem 0;
  background: #FFFFFF;
}
.numbers__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  margin-bottom: 3.2rem;
}
.numbers__wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .numbers__wrapper {
    grid-template-columns: 1fr;
  }
}
.numbers__item {
  padding: 4rem;
  border-radius: 4px;
  position: relative;
  background: #F1F2F4;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  transition: all 0.2s ease;
}
.numbers__item--blue {
  background: #6F8FB5;
}
.numbers__item--blue .numbers__item-value {
  color: #FFFFFF;
}
.numbers__item--blue .numbers__item-value span {
  color: #FFFFFF;
}
.numbers__item--blue .numbers__item-title {
  color: #FFFFFF;
}
.numbers__item--dark {
  background: #1F2A35;
}
.numbers__item--dark .numbers__item-value {
  color: #FFFFFF;
}
.numbers__item--dark .numbers__item-value span {
  color: #FFFFFF;
}
.numbers__item--dark .numbers__item-title {
  color: #FFFFFF;
}
.numbers__item--link {
  cursor: pointer;
}
.numbers__item--link:hover {
  transform: scale(1.01);
}
.numbers__item--link:hover .numbers__item-arrow {
  transform: rotate(-45deg);
}
.numbers__item:nth-child(1) {
  grid-column: 1/4;
}
.numbers__item:nth-child(2) {
  grid-column: 4/7;
}
.numbers__item:nth-child(3) {
  grid-column: 7/9;
}
.numbers__item:nth-child(4) {
  grid-column: 1/3;
}
.numbers__item:nth-child(5) {
  grid-column: 3/6;
}
.numbers__item:nth-child(6) {
  grid-column: 6/9;
}
@media (max-width: 768px) {
  .numbers__item {
    grid-column: unset !important;
    padding: 20px;
  }
}
.numbers__item-value {
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #124A83;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.numbers__item-value span {
  font: inherit;
  font-size: 1.6rem;
  letter-spacing: 0;
  color: rgba(31, 42, 53, 0.5);
}
.numbers__item-title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  margin-top: auto;
}
.numbers__item-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 1rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.numbers__item-arrow .icon {
  width: 100%;
  height: 100%;
  fill: #124A83;
}

.media {
  padding: 10rem 0;
  overflow: hidden;
}
.media__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .media__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.media__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.media__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .media__tabs {
    width: 100%;
  }
}
.media__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 1.6rem 3.2rem;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: rgba(31, 42, 53, 0.7);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .media__tab {
    padding: 12px 20px;
  }
}
.media__tab:hover {
  border-color: #124A83;
  color: #124A83;
}
.media__tab.active {
  border-color: #124A83;
  color: #124A83;
}
.media__content {
  width: 100%;
}
.media__panel {
  display: none;
  overflow: visible;
}
.media__panel.active {
  display: block;
}
.media__list {
  display: flex;
}
.media__item {
  min-width: 0;
  height: auto;
}
.media__item .news-item {
  height: 100%;
}
.media__item .smi-item {
  height: 100%;
}
.media__footer {
  width: 100%;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .media__footer {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.media__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}
.media__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(31, 42, 53, 0.3);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.media__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #E6A26F;
}
.media__pagination.swiper-pagination-lock {
  display: none;
}
.media__btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  margin-left: auto;
}
.media__btn img, .media__btn svg, .media__btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.media__btn:hover {
  background: #c27e4a;
}
@media (max-width: 768px) {
  .media__btn {
    margin-left: 0;
  }
}

.news-item {
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.news-item:hover {
  box-shadow: 0 4px 20px rgba(31, 42, 53, 0.12);
}
.news-item__img {
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 75%;
}
.news-item__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #FFFFFF;
  flex: 1 0;
}
@media (max-width: 768px) {
  .news-item__content {
    padding: 20px;
    gap: 20px;
  }
}
.news-item__title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.news-item__date {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  margin-top: auto;
}
.news-item__date .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  fill: rgba(31, 42, 53, 0.7);
}

.smi-item {
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.smi-item:hover {
  box-shadow: 0 4px 20px rgba(31, 42, 53, 0.12);
}
.smi-item__img {
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 75%;
}
.smi-item__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.smi-item__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 0;
}
@media (max-width: 768px) {
  .smi-item__content {
    padding: 20px;
    gap: 20px;
  }
}
.smi-item__source {
  padding: 12px 16px;
  border-radius: 4px;
  background: #E9EFF5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 500;
  line-height: 1.1;
  color: #1F2A35;
}
.smi-item__source img, .smi-item__source svg {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
.smi-item__title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.smi-item__date {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.smi-item__date .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  fill: rgba(31, 42, 53, 0.7);
}

.photo-item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  height: 30rem;
  position: relative;
}
.photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .photo-item {
    height: 50rem;
  }
}
.photo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease;
}
.photo-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, -50%);
  background-image: url(../img/search.svg);
  background-size: 6rem 6rem;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.2s ease;
}
.photo-item:hover::after, .photo-item:hover::before {
  opacity: 1;
}

.video-item {
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 85%;
  border-radius: 4px;
  overflow: hidden;
}
.video-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .video-item {
    position: relative;
    overflow: hidden;
    max-height: 0;
    width: 100%;
    padding-top: 50%;
  }
  .video-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 480px) {
  .video-item {
    position: relative;
    overflow: hidden;
    max-height: 0;
    width: 100%;
    padding-top: 75%;
  }
  .video-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.video-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(31, 42, 53, 0.55);
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.video-item:hover::before {
  opacity: 1;
}
.video-item:hover .video-item__play {
  transform: scale(1.18);
}
.video-item__cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.video-item__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-item__cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 42, 53, 0) 0%, rgba(31, 42, 53, 0) 50%, rgba(31, 42, 53, 0.82) 100%);
}
.video-item__title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  text-align: left;
  color: #FFFFFF;
  z-index: 3;
}
.video-item__play {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E6A26F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.2s ease;
  transform-origin: center;
}
.video-item__play .icon {
  width: 100%;
  height: 100%;
  fill: #FFFFFF;
  margin-left: 0.2rem;
}

.international {
  padding: 10rem 0;
  background: #1F2A35;
  overflow: hidden;
}
.international__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .international__top {
    align-items: flex-end;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .international__top {
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .international__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.international__left {
  max-width: 102rem;
}
@media (max-width: 768px) {
  .international__left {
    max-width: 100%;
  }
}
.international__heading {
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.02em;
  color: #9FB6D3;
  margin-bottom: 2.8rem;
}
.international__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .international__title {
    font-size: clamp(16px, 2rem, 24px);
    line-height: 1.4;
    font-weight: var(--heading-fw, 600);
    letter-spacing: -0.03em;
    color: #1F2A35;
    color: #FFFFFF;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .international__title {
    font-size: clamp(16px, 2rem, 24px);
    line-height: 1.4;
    font-weight: var(--heading-fw, 600);
    letter-spacing: -0.03em;
    color: #1F2A35;
    color: #FFFFFF;
  }
}
.international__btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.international__btn img, .international__btn svg, .international__btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.international__btn:hover {
  background: #c27e4a;
}
.international__logos-title {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #FFFFFF;
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .international__logos-title {
    margin-bottom: 2.4rem;
  }
}
.international__slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.international__slider .swiper-wrapper {
  align-items: stretch;
}
@media (max-width: 768px) {
  .international__slider {
    overflow: visible;
  }
}
.international__item {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 2rem;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  height: auto;
}
@media (max-width: 768px) {
  .international__item {
    padding: 4rem;
    gap: 10px;
  }
}
.international__item-logo {
  width: 100%;
  height: 10rem;
  padding: 2rem 4rem;
}
.international__item-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.international__item-logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .international__item-logo {
    height: 20rem;
    padding: 4rem;
  }
}
.international__item-text {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  text-align: center;
}
.international__item-text p {
  font: inherit;
  color: inherit;
}
.international__item-text p + p {
  margin-top: 1.4rem;
}
@media (max-width: 768px) {
  .international__item-text {
    font-weight: 600;
  }
}
.international__footer {
  margin-top: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.international__footer:has(.swiper-button-lock), .international__footer:has(.swiper-pagination-lock) {
  display: none;
}
.international__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.international__pagination.swiper-pagination-lock {
  display: none;
}
.international__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.international__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #E6A26F;
}

html[lang^=hy] .international__item-text {
  overflow-wrap: anywhere;
}

.footer {
  background: #FFFFFF;
}
.footer__wrapper {
  display: flex;
  gap: 8rem;
  padding: 4rem 0;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer__logo {
  width: 29rem;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo svg {
  width: 100%;
  height: 100%;
}
.footer__address {
  margin-top: auto;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.footer__address p {
  font: inherit;
  color: inherit;
}
.footer__address p + p {
  margin-top: 1.4rem;
}
.footer__menu {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  flex: 1 0;
}
.footer__menu-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__menu-title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.footer__menu-title--link {
  transition: all 0.2s ease;
}
.footer__menu-title--link:hover {
  color: #124A83;
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__menu-list a {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  transition: all 0.2s ease;
}
.footer__menu-list a p {
  font: inherit;
  color: inherit;
}
.footer__menu-list a p + p {
  margin-top: 1.4rem;
}
.footer__menu-list a:hover {
  color: #124A83;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.footer__contact {
  padding: 12px 24px;
  border-radius: 4px;
  background: #F1F2F4;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  text-align: center;
  transition: all 0.2s ease;
}
.footer__contact:hover {
  background: #1F2A35;
  color: #FFFFFF;
}
.footer__socials {
  margin-top: auto;
}
.footer__socials .socials__link {
  background: #1F2A35;
}
.footer__socials .socials__link .icon {
  fill: #FFFFFF;
}
.footer__copyright {
  background: #1F2A35;
  padding: 20px;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #FFFFFF;
  text-align: center;
}
.footer__copyright p {
  font: inherit;
  color: inherit;
}
.footer__copyright p + p {
  margin-top: 1.4rem;
}

@media (max-width: 1359px) {
  .footer__wrapper {
    gap: 6rem;
  }
  .footer__menu {
    gap: 3.2rem;
  }
  .footer__contact {
    padding: 12px 20px;
  }
}
@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
  .footer__left {
    gap: 2.4rem;
  }
  .footer__logo {
    width: 40rem;
  }
  .footer__address {
    margin-top: 0;
  }
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer__right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer__contacts {
    align-items: flex-start;
  }
  .footer__socials {
    margin-top: 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
  .footer__left {
    gap: 2.4rem;
  }
  .footer__logo {
    width: 40rem;
  }
  .footer__address {
    margin-top: 0;
  }
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer__right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer__contacts {
    align-items: flex-start;
  }
  .footer__socials {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 40px 0;
    gap: 40px;
  }
  .footer__menu {
    flex-direction: column;
    gap: 20px;
  }
  .footer__menu-col {
    gap: 1.2rem;
  }
  .footer__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer__contact {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .footer__logo {
    width: 80%;
  }
}
.page-header {
  padding: 26rem 0 10rem;
  position: relative;
}
.page-header__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6rem;
}
.page-header__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-header__date {
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #FFFFFF;
  margin-bottom: 2.4rem;
}
.page-header__date p {
  font: inherit;
  color: inherit;
}
.page-header__date p + p {
  margin-top: 1.4rem;
}
.page-header__date .icon {
  width: 2rem;
  height: 2rem;
  color: #FFFFFF;
  fill: #FFFFFF;
  stroke: #FFFFFF;
}
.page-header__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .page-header__title {
    font-size: 4.2rem;
  }
}
.page-header__suptitle {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #FFFFFF;
  margin-top: 2rem;
}
.page-header__suptitle p {
  font: inherit;
  color: inherit;
}
.page-header__suptitle p + p {
  margin-top: 1em;
}
.page-header__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6rem;
}
.page-header__register {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.page-header__register img, .page-header__register svg, .page-header__register .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.page-header__register:hover {
  background: #c27e4a;
}
.page-header__online {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #FFFFFF;
  color: #1F2A35;
}
.page-header__online img, .page-header__online svg, .page-header__online .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.page-header__online:hover {
  background: #c27e4a;
}
.page-header__online:hover {
  background: #E9EFF5;
}
.page-header--no-bg {
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}
.page-header__wrapper--single .page-header__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
.page-header__wrapper--single .page-header__date {
  margin-bottom: 0;
}
.page-header__left {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 768px) {
  .page-header__left {
    gap: 20px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}

.page-nav {
  width: 100%;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .page-nav {
    display: none;
  }
}
.page-nav__wrapper {
  display: flex;
}
.page-nav__item {
  padding: 3.2rem 4.8rem;
  border-left: 1px solid rgba(31, 42, 53, 0.1);
  transition: all 0.2s ease;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.page-nav__item:last-child {
  border-right: 1px solid rgba(31, 42, 53, 0.1);
}
.page-nav__item:hover, .page-nav__item.active {
  background: #124A83;
  color: #FFFFFF;
}

.media-page {
  padding: 6rem 0 10rem;
}
.media-page__wrapper {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 4rem;
}
.media-page__main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  min-width: 0;
}
.media-page__header {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .media-page__header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .media-page__header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.media-page__heading {
  flex: 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .media-page__heading {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .media-page__heading {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
}
.media-page__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.media-page__count {
  font-size: 14px;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.media-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.media-page__tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  padding: 0.6rem 1rem 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.media-page__tag-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: rgba(31, 42, 53, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.media-page__tag-remove:hover {
  background: rgba(31, 42, 53, 0.1);
  color: #1F2A35;
}
.media-page__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.media-page__loader {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.media-page__loader[aria-hidden=true] {
  display: none;
}
.media-page__loader::after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  border: 3px solid rgba(31, 42, 53, 0.1);
  border-top-color: #124A83;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.media-page__sentinel {
  height: 1px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}

.press {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}

.photo-grid {
  position: relative;
  width: 100%;
}

.photo-album {
  width: calc(33.333% - 7px);
  margin-bottom: 1rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.photo-album__cover {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.photo-album__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.photo-album__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 42, 53, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.photo-album__cover:hover .photo-album__overlay {
  opacity: 1;
}
.photo-album__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
}
.photo-album__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
}
.photo-album__extra {
  display: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}

.media-page__filter-btn {
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 8px 16px;
  background: #FFFFFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 600;
  color: #1F2A35;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.media-page__filter-btn p {
  font: inherit;
  color: inherit;
}
.media-page__filter-btn p + p {
  margin-top: 1em;
}
.media-page__filter-btn .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.media-page__filter-btn:hover {
  background: #E9EFF5;
}
@media (max-width: 1024px) {
  .media-page__filter-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .media-page__filter-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.media-page__sidebar-overlay {
  display: none;
}

body.sidebar-lock {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .media-page__wrapper {
    grid-template-columns: 1fr;
  }
  .media-page__sidebar {
    position: fixed;
    inset: 0;
    background: #F1F2F4;
    padding: 2.4rem;
    overflow-y: auto;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .media-page__sidebar.is-open {
    transform: translateY(0);
  }
  .news,
  .press,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-album {
    width: calc(50% - 5px);
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .media-page__wrapper {
    grid-template-columns: 1fr;
  }
  .media-page__sidebar {
    position: fixed;
    inset: 0;
    background: #F1F2F4;
    padding: 2.4rem;
    overflow-y: auto;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .media-page__sidebar.is-open {
    transform: translateY(0);
  }
  .news,
  .press,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-album {
    width: calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .news,
  .press,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .photo-album {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .media-page__sidebar {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.sidebar__block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.sidebar__block-title {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.sidebar__block-content {
  width: 100%;
}
.sidebar__block-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar__block-years {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sidebar__block-archives {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar__item {
  padding: 8px 12px;
  border-radius: 4px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  transition: all 0.2s ease;
}
.sidebar__item-count {
  color: inherit;
  opacity: 0.7;
}
@media (hover: hover) {
  .sidebar__item:not(.sidebar__item--active):hover:not(:disabled) {
    background: #E9EFF5;
    color: #1F2A35;
  }
}
.sidebar__item--active {
  background: #124A83;
  color: #FFFFFF;
}
.sidebar__item--active .sidebar__item-count {
  color: #FFFFFF;
  opacity: 1;
}
.sidebar__item--active:hover {
  background: #0b3b6b;
  color: #FFFFFF;
}
.sidebar__item:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.sidebar a.sidebar__item {
  display: block;
  text-decoration: none;
  color: rgba(31, 42, 53, 0.7);
}
.sidebar a.sidebar__item.sidebar__item--active {
  color: #FFFFFF;
}
.sidebar__close {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1F2A35;
}
.sidebar__close span {
  font-size: 6rem;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .sidebar__close {
    display: flex;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .sidebar__close {
    display: flex;
  }
}

.direction-page {
  background: #FFFFFF;
  margin-bottom: 20px;
}
.direction-page__wrapper {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 8rem;
}
@media (max-width: 1024px) {
  .direction-page__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-page__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.direction-page--no-sidebar .direction-page__wrapper {
  grid-template-columns: 1fr;
  gap: 0;
}
.direction-page__main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 6rem 0 10rem;
}
@media (max-width: 1024px) {
  .direction-page__main {
    padding: 6rem 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-page__main {
    padding: 6rem 0;
  }
}
.direction-page__sidebar {
  padding-top: 6rem;
}
.direction-page__content {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.direction-page__content p {
  font: inherit;
  color: inherit;
}
.direction-page__content p + p {
  margin-top: 1em;
}
.direction-page__content > * {
  margin: 0 0 1.2em;
}
.direction-page__content > *:last-child {
  margin-bottom: 0;
}
.direction-page__content h1, .direction-page__content h2, .direction-page__content h3, .direction-page__content h4, .direction-page__content h5, .direction-page__content h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.direction-page__content h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .direction-page__content h1 {
    font-size: 4.2rem;
  }
}
.direction-page__content h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.direction-page__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.direction-page__content h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.direction-page__content h5, .direction-page__content h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.direction-page__content > h1, .direction-page__content > h2, .direction-page__content > h3, .direction-page__content > h4, .direction-page__content > h5, .direction-page__content > h6 {
  margin-top: 6rem;
}
.direction-page__content > h1:first-child, .direction-page__content > h2:first-child, .direction-page__content > h3:first-child, .direction-page__content > h4:first-child, .direction-page__content > h5:first-child, .direction-page__content > h6:first-child {
  margin-top: 0 !important;
}
.direction-page__content > h1 + h2, .direction-page__content > h1 + h3, .direction-page__content > h2 + h3, .direction-page__content > h2 + h4, .direction-page__content > h3 + h4, .direction-page__content > h3 + h5, .direction-page__content > h4 + h5, .direction-page__content > h4 + h6 {
  margin-top: 3.2rem;
}
.direction-page__content p, .direction-page__content li {
  color: rgba(31, 42, 53, 0.7);
}
.direction-page__content strong, .direction-page__content b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.direction-page__content ul, .direction-page__content ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.direction-page__content ul {
  list-style: disc;
}
.direction-page__content ol {
  list-style: decimal;
}
.direction-page__content li + li {
  margin-top: 0.8em;
}
.direction-page__content li::marker {
  color: #1F2A35;
}
.direction-page__content ul ul, .direction-page__content ul ol, .direction-page__content ol ul, .direction-page__content ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.direction-page__content blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.direction-page__content blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.direction-page__content a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.direction-page__content a:hover, .direction-page__content a:focus-visible {
  color: #0b3b6b;
}
.direction-page__content a:visited {
  color: #124A83;
}
.direction-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.direction-page__content figure {
  margin: 0 0 2.4rem;
}
.direction-page__content figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.direction-page__content figcaption p {
  font: inherit;
  color: inherit;
}
.direction-page__content figcaption p + p {
  margin-top: 1.4rem;
}

.direction-sidebar {
  border-left: 1px solid rgba(31, 42, 53, 0.1);
  padding-left: 4rem;
}
@media (max-width: 1024px) {
  .direction-sidebar {
    border-left: none;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-sidebar {
    border-left: none;
    padding-left: 0;
    padding-top: 0;
  }
}
.direction-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 12rem;
  padding-bottom: 5rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .direction-sidebar__inner {
    position: static;
    top: auto;
    border-left: none;
    border-top: 1px solid rgba(31, 42, 53, 0.1);
    padding-left: 0;
    padding: 6rem 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-sidebar__inner {
    position: static;
    top: auto;
    border-left: none;
    border-top: 1px solid rgba(31, 42, 53, 0.1);
    padding-left: 0;
    padding: 6rem 0;
  }
}
.direction-sidebar__title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.direction-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.direction-sidebar__item {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #1F2A35;
  position: relative;
  padding-left: 1em;
  transition: all 0.2s ease;
}
.direction-sidebar__item p {
  font: inherit;
  color: inherit;
}
.direction-sidebar__item p + p {
  margin-top: 1em;
}
.direction-sidebar__item:hover {
  color: #124A83;
}
.direction-sidebar__item--active {
  color: #124A83;
  font-weight: 500;
}
.direction-sidebar__item--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.direction-gallery {
  padding: 0 0 10rem;
  overflow: hidden;
}
.direction-gallery__slider {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .direction-gallery__slider {
    overflow: visible;
  }
}
.direction-gallery__footer {
  margin-top: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.direction-gallery__footer:has(.swiper-button-lock), .direction-gallery__footer:has(.swiper-pagination-lock) {
  display: none;
}
.direction-gallery__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.direction-gallery__pagination.swiper-pagination-lock {
  display: none;
}
.direction-gallery__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(31, 42, 53, 0.3);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.direction-gallery__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #E6A26F;
}

.single-news-body {
  background: #FFFFFF;
  padding: 6rem 0;
}
.single-news-body__wrapper {
  display: grid;
  grid-template-columns: 1fr 30rem;
  gap: 10rem;
  align-items: start;
}
.single-news-body__main {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  min-width: 0;
}
.single-news-body__sidebar .sidebar__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: #F1F2F4;
}
@media (hover: hover) {
  .single-news-body__sidebar .sidebar__item:not(.sidebar__item--active):hover {
    background: #E9EFF5;
    color: #1F2A35;
  }
}
.single-news-body__sidebar .sidebar__item--active {
  background: #124A83;
  color: #FFFFFF;
}
.single-news-body__sidebar .sidebar__item--active .sidebar__item-label,
.single-news-body__sidebar .sidebar__item--active .sidebar__item-count {
  color: #FFFFFF;
  opacity: 1;
}
@media (hover: hover) {
  .single-news-body__sidebar .sidebar__item--active:hover {
    background: #0b3b6b;
    color: #FFFFFF;
  }
}
.single-news-body__sidebar a.sidebar__item {
  display: flex;
  color: rgba(31, 42, 53, 0.7);
}
.single-news-body__sidebar a.sidebar__item.sidebar__item--active {
  color: #FFFFFF;
}
.single-news-body__sidebar .sidebar__item-label {
  min-width: 0;
  color: inherit;
}
.single-news-body__sidebar .sidebar__item-count {
  flex-shrink: 0;
  color: inherit;
}

.single-slider-section {
  width: 100%;
}

.single-slider {
  border-radius: 4px;
  overflow: hidden;
}
.single-slider__slide {
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 65%;
  border-radius: 4px;
  overflow: hidden;
}
.single-slider__slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-slider__footer {
  display: grid;
  grid-template-columns: 4.8rem 1fr 4.8rem;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
}
.single-slider__footer:has(.swiper-button-lock), .single-slider__footer:has(.swiper-pagination-lock) {
  display: none;
}
.single-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.single-slider__pagination.swiper-pagination-lock {
  display: none;
}
.single-slider__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(31, 42, 53, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.single-slider__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #124A83;
}

.single-news__content {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.single-news__content p {
  font: inherit;
  color: inherit;
}
.single-news__content p + p {
  margin-top: 1em;
}
.single-news__content > * {
  margin: 0 0 1.2em;
}
.single-news__content > *:last-child {
  margin-bottom: 0;
}
.single-news__content h1, .single-news__content h2, .single-news__content h3, .single-news__content h4, .single-news__content h5, .single-news__content h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.single-news__content h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .single-news__content h1 {
    font-size: 4.2rem;
  }
}
.single-news__content h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.single-news__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.single-news__content h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.single-news__content h5, .single-news__content h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.single-news__content > h1, .single-news__content > h2, .single-news__content > h3, .single-news__content > h4, .single-news__content > h5, .single-news__content > h6 {
  margin-top: 6rem;
}
.single-news__content > h1:first-child, .single-news__content > h2:first-child, .single-news__content > h3:first-child, .single-news__content > h4:first-child, .single-news__content > h5:first-child, .single-news__content > h6:first-child {
  margin-top: 0 !important;
}
.single-news__content > h1 + h2, .single-news__content > h1 + h3, .single-news__content > h2 + h3, .single-news__content > h2 + h4, .single-news__content > h3 + h4, .single-news__content > h3 + h5, .single-news__content > h4 + h5, .single-news__content > h4 + h6 {
  margin-top: 3.2rem;
}
.single-news__content p, .single-news__content li {
  color: rgba(31, 42, 53, 0.7);
}
.single-news__content strong, .single-news__content b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.single-news__content ul, .single-news__content ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.single-news__content ul {
  list-style: disc;
}
.single-news__content ol {
  list-style: decimal;
}
.single-news__content li + li {
  margin-top: 0.8em;
}
.single-news__content li::marker {
  color: #1F2A35;
}
.single-news__content ul ul, .single-news__content ul ol, .single-news__content ol ul, .single-news__content ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.single-news__content blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.single-news__content blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.single-news__content a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.single-news__content a:hover, .single-news__content a:focus-visible {
  color: #0b3b6b;
}
.single-news__content a:visited {
  color: #124A83;
}
.single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.single-news__content figure {
  margin: 0 0 2.4rem;
}
.single-news__content figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.single-news__content figcaption p {
  font: inherit;
  color: inherit;
}
.single-news__content figcaption p + p {
  margin-top: 1.4rem;
}
.single-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .single-news__tags {
    margin-top: 1.6rem;
  }
}
.single-news__tag {
  padding: 8px 16px;
  border-radius: 4px;
  background: #E9EFF5;
  font-size: 14px;
  font-weight: 500;
  color: #124A83;
  transition: all 0.2s ease;
}
.single-news__tag:hover {
  background: #124A83;
  color: #FFFFFF;
}
.single-news__video {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #1F2A35;
}
.single-news__video-player {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.single-news-nav {
  padding: 4rem 0;
}

.single-news__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .single-news__nav {
    grid-template-columns: 1fr;
  }
}

.single-news__nav-item {
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}

.single-news__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  height: 100%;
  transition: all 0.2s ease;
}
.single-news__nav-link:hover .single-news__nav-title {
  color: #124A83;
}
.single-news__nav-link--all {
  justify-content: space-between;
  align-items: center;
  min-height: 9rem;
}
.single-news__nav-link--all .single-news__nav-label {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 600;
  color: #1F2A35;
  text-transform: none;
  letter-spacing: 0;
}
.single-news__nav-link--all .single-news__nav-label p {
  font: inherit;
  color: inherit;
}
.single-news__nav-link--all .single-news__nav-label p + p {
  margin-top: 1.4rem;
}

.single-news__nav-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: #F1F2F4;
}
.single-news__nav-arrow .icon {
  width: 100%;
  color: #1F2A35;
}

.single-news__nav-body {
  display: flex;
  flex-direction: column;
  flex: 1 0;
  gap: 0.6rem;
  min-width: 0;
}

.single-news__nav-label {
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single-news__nav-title {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 600;
  line-height: 1.4;
  color: #1F2A35;
  transition: all 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-news__nav-title p {
  font: inherit;
  color: inherit;
}
.single-news__nav-title p + p {
  margin-top: 1.4rem;
}

.related-news {
  padding: 10rem 0;
  overflow: hidden;
}
.related-news__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  margin-bottom: 4rem;
}
.related-news__slider {
  width: 100%;
  max-width: 100%;
}
.related-news__item {
  height: auto;
}
.related-news__item .news-item {
  height: 100%;
}
.related-news__footer {
  margin-top: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.related-news__footer:has(.swiper-button-lock), .related-news__footer:has(.swiper-pagination-lock) {
  display: none;
}
.related-news__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.related-news__pagination.swiper-pagination-lock {
  display: none;
}
.related-news__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(31, 42, 53, 0.3);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.related-news__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #E6A26F;
}

@media (min-width: 1025px) {
  .single-news-body__sidebar {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}
@media (max-width: 1024px) {
  .single-news-body__wrapper {
    grid-template-columns: 1fr;
  }
  .single-news-body__sidebar {
    display: none;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .single-news-body__wrapper {
    grid-template-columns: 1fr;
  }
  .single-news-body__sidebar {
    display: none;
  }
}
.conf-about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .conf-about__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .conf-about__wrapper {
    grid-template-columns: 1fr;
  }
}
.conf-about__block {
  position: relative;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.conf-about__block:nth-child(1) {
  padding-right: 10rem;
}
.conf-about__block:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(31, 42, 53, 0.1);
}
@media (max-width: 1024px) {
  .conf-about__block:nth-child(1) {
    padding-right: 0;
  }
  .conf-about__block:nth-child(1)::after {
    display: none;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .conf-about__block:nth-child(1) {
    padding-right: 0;
  }
  .conf-about__block:nth-child(1)::after {
    display: none;
  }
}
.conf-about__block:nth-child(2) {
  padding-left: 10rem;
}
@media (max-width: 1024px) {
  .conf-about__block:nth-child(2) {
    padding-left: 0;
    padding-top: 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .conf-about__block:nth-child(2) {
    padding-left: 0;
    padding-top: 0;
  }
}
.conf-about__block-title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.conf-about__block-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.conf-about__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 20px;
  border-radius: 4px;
  background: #FFFFFF;
}
.conf-about__item-title {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.conf-about__item-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  margin-top: 0.5rem;
}
.conf-about__item-text p {
  font: inherit;
  color: inherit;
}
.conf-about__item-text p + p {
  margin-top: 1em;
}
.conf-about__item-icon {
  width: 60px;
  height: 60px;
  padding: 16px;
  background: #E9EFF5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conf-about__item-icon .icon {
  width: 100%;
  height: 100%;
}

.rules {
  background: #FFFFFF;
  padding: 8rem 0;
}
.rules__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .rules__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .rules__wrapper {
    grid-template-columns: 1fr;
  }
}
.rules__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rules__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.rules__text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  margin-top: 3.2rem;
}
.rules__text p {
  font: inherit;
  color: inherit;
}
.rules__text p + p {
  margin-top: 1em;
}
.rules__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6rem;
}
.rules__register {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.rules__register img, .rules__register svg, .rules__register .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.rules__register:hover {
  background: #c27e4a;
}
@media (max-width: 480px) {
  .rules__register {
    width: 100%;
  }
}
.rules__download {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
}
.rules__download img, .rules__download svg, .rules__download .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.rules__download:hover {
  background: #c27e4a;
}
.rules__download:hover {
  background: #0b3b6b;
}
@media (max-width: 480px) {
  .rules__download {
    width: 100%;
  }
}
.rules__alert {
  background: #F1F2F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 4rem;
  border-radius: 4px;
}
.rules__alert-icon {
  width: 72px;
  height: 72px;
  padding: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rules__alert-icon .icon {
  width: 100%;
  height: 100%;
}
.rules__alert-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  text-align: center;
}
.rules__alert-text p {
  font: inherit;
  color: inherit;
}
.rules__alert-text p + p {
  margin-top: 1em;
}

.conf-content {
  padding: 10rem 0;
}
.conf-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .conf-content__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.conf-content__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.conf-content__download {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
}
.conf-content__download img, .conf-content__download svg, .conf-content__download .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.conf-content__download:hover {
  background: #c27e4a;
}
.conf-content__download:hover {
  background: #0b3b6b;
}
@media (max-width: 480px) {
  .conf-content__download {
    width: 100%;
  }
}
.conf-content__main {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.conf-content__main p {
  font: inherit;
  color: inherit;
}
.conf-content__main p + p {
  margin-top: 1em;
}
.conf-content__main > * {
  margin: 0 0 1.2em;
}
.conf-content__main > *:last-child {
  margin-bottom: 0;
}
.conf-content__main h1, .conf-content__main h2, .conf-content__main h3, .conf-content__main h4, .conf-content__main h5, .conf-content__main h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.conf-content__main h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .conf-content__main h1 {
    font-size: 4.2rem;
  }
}
.conf-content__main h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.conf-content__main h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.conf-content__main h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.conf-content__main h5, .conf-content__main h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.conf-content__main > h1, .conf-content__main > h2, .conf-content__main > h3, .conf-content__main > h4, .conf-content__main > h5, .conf-content__main > h6 {
  margin-top: 6rem;
}
.conf-content__main > h1:first-child, .conf-content__main > h2:first-child, .conf-content__main > h3:first-child, .conf-content__main > h4:first-child, .conf-content__main > h5:first-child, .conf-content__main > h6:first-child {
  margin-top: 0 !important;
}
.conf-content__main > h1 + h2, .conf-content__main > h1 + h3, .conf-content__main > h2 + h3, .conf-content__main > h2 + h4, .conf-content__main > h3 + h4, .conf-content__main > h3 + h5, .conf-content__main > h4 + h5, .conf-content__main > h4 + h6 {
  margin-top: 3.2rem;
}
.conf-content__main p, .conf-content__main li {
  color: rgba(31, 42, 53, 0.7);
}
.conf-content__main strong, .conf-content__main b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.conf-content__main ul, .conf-content__main ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.conf-content__main ul {
  list-style: disc;
}
.conf-content__main ol {
  list-style: decimal;
}
.conf-content__main li + li {
  margin-top: 0.8em;
}
.conf-content__main li::marker {
  color: #1F2A35;
}
.conf-content__main ul ul, .conf-content__main ul ol, .conf-content__main ol ul, .conf-content__main ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.conf-content__main blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.conf-content__main blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.conf-content__main a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.conf-content__main a:hover, .conf-content__main a:focus-visible {
  color: #0b3b6b;
}
.conf-content__main a:visited {
  color: #124A83;
}
.conf-content__main img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.conf-content__main figure {
  margin: 0 0 2.4rem;
}
.conf-content__main figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.conf-content__main figcaption p {
  font: inherit;
  color: inherit;
}
.conf-content__main figcaption p + p {
  margin-top: 1.4rem;
}

.lib {
  background: #FFFFFF;
  padding: 8rem 0;
}
.lib__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .lib__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .lib__wrapper {
    grid-template-columns: 1fr;
  }
}
.lib__left {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.lib__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.lib__text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.lib__text p {
  font: inherit;
  color: inherit;
}
.lib__text p + p {
  margin-top: 1em;
}
.lib__text > * {
  margin: 0 0 1.2em;
}
.lib__text > *:last-child {
  margin-bottom: 0;
}
.lib__text h1, .lib__text h2, .lib__text h3, .lib__text h4, .lib__text h5, .lib__text h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.lib__text h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .lib__text h1 {
    font-size: 4.2rem;
  }
}
.lib__text h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.lib__text h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.lib__text h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.lib__text h5, .lib__text h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.lib__text > h1, .lib__text > h2, .lib__text > h3, .lib__text > h4, .lib__text > h5, .lib__text > h6 {
  margin-top: 6rem;
}
.lib__text > h1:first-child, .lib__text > h2:first-child, .lib__text > h3:first-child, .lib__text > h4:first-child, .lib__text > h5:first-child, .lib__text > h6:first-child {
  margin-top: 0 !important;
}
.lib__text > h1 + h2, .lib__text > h1 + h3, .lib__text > h2 + h3, .lib__text > h2 + h4, .lib__text > h3 + h4, .lib__text > h3 + h5, .lib__text > h4 + h5, .lib__text > h4 + h6 {
  margin-top: 3.2rem;
}
.lib__text p, .lib__text li {
  color: rgba(31, 42, 53, 0.7);
}
.lib__text strong, .lib__text b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.lib__text ul, .lib__text ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.lib__text ul {
  list-style: disc;
}
.lib__text ol {
  list-style: decimal;
}
.lib__text li + li {
  margin-top: 0.8em;
}
.lib__text li::marker {
  color: #1F2A35;
}
.lib__text ul ul, .lib__text ul ol, .lib__text ol ul, .lib__text ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.lib__text blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.lib__text blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.lib__text a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.lib__text a:hover, .lib__text a:focus-visible {
  color: #0b3b6b;
}
.lib__text a:visited {
  color: #124A83;
}
.lib__text img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.lib__text figure {
  margin: 0 0 2.4rem;
}
.lib__text figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.lib__text figcaption p {
  font: inherit;
  color: inherit;
}
.lib__text figcaption p + p {
  margin-top: 1.4rem;
}
.lib__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  background: #F1F2F4;
  border-radius: 4px;
  padding: 4rem;
}
.lib__right-download {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
}
.lib__right-download img, .lib__right-download svg, .lib__right-download .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.lib__right-download:hover {
  background: #c27e4a;
}
.lib__right-download:hover {
  background: #0b3b6b;
}
@media (max-width: 480px) {
  .lib__right-download {
    width: 100%;
  }
}
.lib__right-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #1F2A35;
}
.lib__right-text p {
  font: inherit;
  color: inherit;
}
.lib__right-text p + p {
  margin-top: 1em;
}
.lib__footer {
  background: #E9EFF5;
  border-radius: 4px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .lib__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.lib__footer-main {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex: 1 0;
}
@media (max-width: 768px) {
  .lib__footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lib__footer-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 20px;
}
.lib__footer-icon .icon {
  width: 100%;
  height: 100%;
}
.lib__footer-text {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.lib__footer-email {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
  background: #1F2A35;
}
.lib__footer-email img, .lib__footer-email svg, .lib__footer-email .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.lib__footer-email:hover {
  background: #c27e4a;
}
.lib__footer-email:hover {
  background: #0b3b6b;
}
@media (max-width: 480px) {
  .lib__footer-email {
    width: 100%;
  }
}

.register {
  padding: 10rem 0;
}
.register__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .register__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .register__wrapper {
    grid-template-columns: 1fr;
  }
}
.register__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4rem;
}
.register__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.register__suptitle {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.register__suptitle p {
  font: inherit;
  color: inherit;
}
.register__suptitle p + p {
  margin-top: 1em;
}
.register__tip {
  display: none;
  margin-top: auto;
  background: #E9EFF5;
  border-radius: 4px;
  padding: 20px;
}
.register__tip.active {
  display: block;
}
.register__tip-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.register__tip-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.register__tip-icon .icon {
  width: 20px;
  height: 20px;
}
.register__tip-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  margin-top: 1.6rem;
}
.register__tip-text p {
  font: inherit;
  color: inherit;
}
.register__tip-text p + p {
  margin-top: 1em;
}
.register__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.register__tab {
  padding: 20px;
  border-radius: 4px;
  background: #FFFFFF;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  transition: all 0.2s ease;
}
.register__tab:hover {
  background: #124A83;
  color: #FFFFFF;
}
.register__tab.active {
  background: #124A83;
  color: #FFFFFF;
}
.register__form {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.register__form.active {
  display: flex;
}
.register__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.register-notice {
  position: fixed;
  z-index: 10050;
  left: 50%;
  bottom: 3.2rem;
  transform: translateX(-50%);
  max-width: min(52rem, 100vw - 4rem);
  padding: 1.6rem 2.4rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.register-notice p {
  font: inherit;
  color: inherit;
}
.register-notice p + p {
  margin-top: 1em;
}
.register-notice[hidden] {
  display: none !important;
}
.register-notice--success {
  background: #FFFFFF;
  color: #1F2A35;
  border: 1px solid #124A83;
}
.register-notice--warn {
  background: #fff8e6;
  color: #1F2A35;
  border: 1px solid #e6c200;
}
.register-notice--error {
  background: #fff5f5;
  color: #1F2A35;
  border: 1px solid #c53030;
}
.register__input {
  width: 100%;
}
.register__input input {
  width: 100%;
  border-radius: 4px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: none;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #1F2A35;
  font-weight: 500;
  transition: all 0.2s ease;
}
.register__input input p {
  font: inherit;
  color: inherit;
}
.register__input input p + p {
  margin-top: 1em;
}
.register__input input::-moz-placeholder {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.register__input input::placeholder {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.register__input input::-moz-placeholder p {
  font: inherit;
  color: inherit;
}
.register__input input::placeholder p {
  font: inherit;
  color: inherit;
}
.register__input input::-moz-placeholder p + p {
  margin-top: 1em;
}
.register__input input::placeholder p + p {
  margin-top: 1em;
}
.register__input input:focus, .register__input input:hover {
  outline: none;
  border-color: #124A83;
}
.register__controls {
  margin-top: 10px;
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .register__controls {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}
.register__submit {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.register__submit img, .register__submit svg, .register__submit .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.register__submit:hover {
  background: #c27e4a;
}
@media (max-width: 768px) {
  .register__submit {
    width: 100%;
  }
}
.register__agree {
  flex: 1 0;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.checkbox__input:checked + .checkbox__box {
  background: #124A83;
  border-color: #124A83;
}
.checkbox__input:checked + .checkbox__box::after {
  display: block;
}
.checkbox__input:focus-visible + .checkbox__box {
  outline: 2px solid #124A83;
  outline-offset: 2px;
}
.checkbox__box {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(31, 42, 53, 0.7);
  border-radius: 2px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.checkbox__box::after {
  content: "";
  display: none;
  width: 5px;
  height: 9px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -2px);
}
.checkbox__label {
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.checkbox__label a {
  color: #124A83;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.checkbox__label a:hover {
  color: #0b3b6b;
}

.contacts {
  margin: 6rem 0 10rem;
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
  }
}
.contacts__item {
  padding: 20px;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__item:nth-child(1) {
  grid-column: 1/3;
}
.contacts__item:nth-child(2) {
  grid-column: 3/4;
}
.contacts__item:nth-child(3) {
  grid-column: 4/5;
}
@media (max-width: 768px) {
  .contacts__item {
    grid-column: unset !important;
  }
}
.contacts__item-label {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.contacts__item-label p {
  font: inherit;
  color: inherit;
}
.contacts__item-label p + p {
  margin-top: 1.4rem;
}
.contacts__item-value {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.contacts__map {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 50%;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 4px;
}
.contacts__map > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-info {
  padding: 8rem 0;
}
.page-info__content {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.page-info__content p {
  font: inherit;
  color: inherit;
}
.page-info__content p + p {
  margin-top: 1em;
}
.page-info__content > * {
  margin: 0 0 1.2em;
}
.page-info__content > *:last-child {
  margin-bottom: 0;
}
.page-info__content h1, .page-info__content h2, .page-info__content h3, .page-info__content h4, .page-info__content h5, .page-info__content h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.page-info__content h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .page-info__content h1 {
    font-size: 4.2rem;
  }
}
.page-info__content h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.page-info__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.page-info__content h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.page-info__content h5, .page-info__content h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.page-info__content > h1, .page-info__content > h2, .page-info__content > h3, .page-info__content > h4, .page-info__content > h5, .page-info__content > h6 {
  margin-top: 6rem;
}
.page-info__content > h1:first-child, .page-info__content > h2:first-child, .page-info__content > h3:first-child, .page-info__content > h4:first-child, .page-info__content > h5:first-child, .page-info__content > h6:first-child {
  margin-top: 0 !important;
}
.page-info__content > h1 + h2, .page-info__content > h1 + h3, .page-info__content > h2 + h3, .page-info__content > h2 + h4, .page-info__content > h3 + h4, .page-info__content > h3 + h5, .page-info__content > h4 + h5, .page-info__content > h4 + h6 {
  margin-top: 3.2rem;
}
.page-info__content p, .page-info__content li {
  color: rgba(31, 42, 53, 0.7);
}
.page-info__content strong, .page-info__content b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.page-info__content ul, .page-info__content ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.page-info__content ul {
  list-style: disc;
}
.page-info__content ol {
  list-style: decimal;
}
.page-info__content li + li {
  margin-top: 0.8em;
}
.page-info__content li::marker {
  color: #1F2A35;
}
.page-info__content ul ul, .page-info__content ul ol, .page-info__content ol ul, .page-info__content ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.page-info__content blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.page-info__content blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.page-info__content a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.page-info__content a:hover, .page-info__content a:focus-visible {
  color: #0b3b6b;
}
.page-info__content a:visited {
  color: #124A83;
}
.page-info__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.page-info__content figure {
  margin: 0 0 2.4rem;
}
.page-info__content figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.page-info__content figcaption p {
  font: inherit;
  color: inherit;
}
.page-info__content figcaption p + p {
  margin-top: 1.4rem;
}

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

.search-page__form {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  margin-bottom: 3.2rem;
}
.search-page__input {
  flex: 1;
  min-height: 4.8rem;
  padding: 1.2rem 5.6rem 1.2rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(31, 42, 53, 0.15);
  box-shadow: none;
  background: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #1F2A35;
}
.search-page__input p {
  font: inherit;
  color: inherit;
}
.search-page__input p + p {
  margin-top: 1.4rem;
}
.search-page__input::-moz-placeholder {
  color: rgba(31, 42, 53, 0.45);
}
.search-page__input::placeholder {
  color: rgba(31, 42, 53, 0.45);
}
.search-page__input:focus {
  outline: none;
  border-color: #124A83;
}
.search-page__submit {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-page__submit .icon {
  width: 100%;
  height: 100%;
  fill: #1F2A35;
}
.search-page__submit:hover .icon {
  fill: #124A83;
}
.search-page__summary {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.65);
  margin-bottom: 2rem;
}
.search-page__summary p {
  font: inherit;
  color: inherit;
}
.search-page__summary p + p {
  margin-top: 1.4rem;
}
.search-page__list {
  list-style-type: none !important;
  padding-left: 0 !important;
  padding: 0;
  margin: 0 0 3.2rem;
}
.search-page__item {
  padding: 2rem 4rem;
  border-radius: 4px;
  background: #FFFFFF;
}
.search-page__link {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 600;
  color: #1F2A35;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-page__link p {
  font: inherit;
  color: inherit;
}
.search-page__link p + p {
  margin-top: 1.4rem;
}
.search-page__link:hover {
  color: #124A83;
}
.search-page__excerpt {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.search-page__excerpt p {
  font: inherit;
  color: inherit;
}
.search-page__excerpt p + p {
  margin-top: 1.4rem;
}
.search-page__empty {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.75);
}
.search-page__empty p {
  font: inherit;
  color: inherit;
}
.search-page__empty p + p {
  margin-top: 1.4rem;
}
.search-page .navigation.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.4rem;
}
.search-page .navigation.pagination .page-numbers {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  color: #1F2A35;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-page .navigation.pagination .page-numbers p {
  font: inherit;
  color: inherit;
}
.search-page .navigation.pagination .page-numbers p + p {
  margin-top: 1.4rem;
}
.search-page .navigation.pagination .page-numbers:hover, .search-page .navigation.pagination .page-numbers.current {
  background: rgba(18, 74, 131, 0.12);
  color: #124A83;
}

.management {
  padding: 8rem 0 10rem;
}
.management__table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 4px;
  overflow: hidden;
}
.management__header {
  display: grid;
  grid-template-columns: 24rem 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .management__header {
    display: none;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .management__header {
    display: none;
  }
}
.management__country {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 2rem 4rem;
  background: #F1F2F4;
  border-radius: 4px;
}
.management__country span {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.management__flag {
  width: 10rem;
  height: 7.4rem;
  flex-shrink: 0;
}
.management__flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.management__row {
  display: grid;
  grid-template-columns: 24rem 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .management__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .management__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .management__row {
    grid-template-columns: 1fr;
  }
}
.management__label {
  display: flex;
  align-items: center;
  padding: 4rem;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 1024px) {
  .management__label {
    grid-column: 1/-1;
    text-align: left;
    padding: 1.6rem 2rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .management__label {
    grid-column: 1/-1;
    text-align: left;
    padding: 1.6rem 2rem;
  }
}
.management__person {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2rem 4rem 2rem 2rem;
  background: #FFFFFF;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .management__person {
    gap: 2rem;
    padding: 2rem;
  }
}
.management__photo {
  width: 23.2rem;
  height: 23.2rem;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #F1F2F4;
}
.management__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .management__photo {
    width: 16rem;
    height: 16rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .management__photo {
    width: 16rem;
    height: 16rem;
  }
}
.management__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.management__name {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.management__position {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.management__position p {
  font: inherit;
  color: inherit;
}
.management__position p + p {
  margin-top: 1.4rem;
}

.vacancy-list {
  padding: 8rem 0 10rem;
}
.vacancy-list__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vacancy-card {
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}
.vacancy-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  padding: 4rem;
}
@media (max-width: 768px) {
  .vacancy-card__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.vacancy-card__main {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem;
}
.vacancy-card__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.vacancy-card__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.vacancy-card__subtitle {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 400;
  line-height: 1.4;
  color: #1F2A35;
}
.vacancy-card__subtitle p {
  font: inherit;
  color: inherit;
}
.vacancy-card__subtitle p + p {
  margin-top: 1em;
}
.vacancy-card__btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
}
.vacancy-card__btn img, .vacancy-card__btn svg, .vacancy-card__btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.vacancy-card__btn:hover {
  background: #c27e4a;
}
.vacancy-card__btn:hover {
  background: #0b3b6b;
}
.vacancy-card__conditions {
  padding: 4rem;
  background: #E9EFF5;
  border-radius: 4px;
}
.vacancy-card__conditions-title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  margin-bottom: 2.4rem;
}
.vacancy-card__conditions-text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-card__conditions-text p {
  font: inherit;
  color: inherit;
}
.vacancy-card__conditions-text p + p {
  margin-top: 1em;
}
.vacancy-card__conditions-text > * {
  margin: 0 0 1.2em;
}
.vacancy-card__conditions-text > *:last-child {
  margin-bottom: 0;
}
.vacancy-card__conditions-text h1, .vacancy-card__conditions-text h2, .vacancy-card__conditions-text h3, .vacancy-card__conditions-text h4, .vacancy-card__conditions-text h5, .vacancy-card__conditions-text h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.vacancy-card__conditions-text h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .vacancy-card__conditions-text h1 {
    font-size: 4.2rem;
  }
}
.vacancy-card__conditions-text h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-card__conditions-text h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-card__conditions-text h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-card__conditions-text h5, .vacancy-card__conditions-text h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-card__conditions-text > h1, .vacancy-card__conditions-text > h2, .vacancy-card__conditions-text > h3, .vacancy-card__conditions-text > h4, .vacancy-card__conditions-text > h5, .vacancy-card__conditions-text > h6 {
  margin-top: 6rem;
}
.vacancy-card__conditions-text > h1:first-child, .vacancy-card__conditions-text > h2:first-child, .vacancy-card__conditions-text > h3:first-child, .vacancy-card__conditions-text > h4:first-child, .vacancy-card__conditions-text > h5:first-child, .vacancy-card__conditions-text > h6:first-child {
  margin-top: 0 !important;
}
.vacancy-card__conditions-text > h1 + h2, .vacancy-card__conditions-text > h1 + h3, .vacancy-card__conditions-text > h2 + h3, .vacancy-card__conditions-text > h2 + h4, .vacancy-card__conditions-text > h3 + h4, .vacancy-card__conditions-text > h3 + h5, .vacancy-card__conditions-text > h4 + h5, .vacancy-card__conditions-text > h4 + h6 {
  margin-top: 3.2rem;
}
.vacancy-card__conditions-text p, .vacancy-card__conditions-text li {
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-card__conditions-text strong, .vacancy-card__conditions-text b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.vacancy-card__conditions-text ul, .vacancy-card__conditions-text ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-card__conditions-text ul {
  list-style: disc;
}
.vacancy-card__conditions-text ol {
  list-style: decimal;
}
.vacancy-card__conditions-text li + li {
  margin-top: 0.8em;
}
.vacancy-card__conditions-text li::marker {
  color: #1F2A35;
}
.vacancy-card__conditions-text ul ul, .vacancy-card__conditions-text ul ol, .vacancy-card__conditions-text ol ul, .vacancy-card__conditions-text ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.vacancy-card__conditions-text blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.vacancy-card__conditions-text blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.vacancy-card__conditions-text a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.vacancy-card__conditions-text a:hover, .vacancy-card__conditions-text a:focus-visible {
  color: #0b3b6b;
}
.vacancy-card__conditions-text a:visited {
  color: #124A83;
}
.vacancy-card__conditions-text img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.vacancy-card__conditions-text figure {
  margin: 0 0 2.4rem;
}
.vacancy-card__conditions-text figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-card__conditions-text figcaption p {
  font: inherit;
  color: inherit;
}
.vacancy-card__conditions-text figcaption p + p {
  margin-top: 1.4rem;
}

.vacancy-block {
  padding: 8rem 0;
}
.vacancy-block--gray {
  background: #F1F2F4;
}
.vacancy-block--white {
  background: #FFFFFF;
}
.vacancy-block__inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 8rem;
}
@media (max-width: 1024px) {
  .vacancy-block__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .vacancy-block__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.vacancy-block__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.vacancy-block__content {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-block__content p {
  font: inherit;
  color: inherit;
}
.vacancy-block__content p + p {
  margin-top: 1em;
}
.vacancy-block__content > * {
  margin: 0 0 1.2em;
}
.vacancy-block__content > *:last-child {
  margin-bottom: 0;
}
.vacancy-block__content h1, .vacancy-block__content h2, .vacancy-block__content h3, .vacancy-block__content h4, .vacancy-block__content h5, .vacancy-block__content h6 {
  color: #1F2A35;
  font-weight: var(--heading-fw, 600);
  line-height: 1.25;
  margin: 6rem 0 3rem;
}
.vacancy-block__content h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .vacancy-block__content h1 {
    font-size: 4.2rem;
  }
}
.vacancy-block__content h2 {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-block__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-block__content h4 {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-block__content h5, .vacancy-block__content h6 {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.vacancy-block__content > h1, .vacancy-block__content > h2, .vacancy-block__content > h3, .vacancy-block__content > h4, .vacancy-block__content > h5, .vacancy-block__content > h6 {
  margin-top: 6rem;
}
.vacancy-block__content > h1:first-child, .vacancy-block__content > h2:first-child, .vacancy-block__content > h3:first-child, .vacancy-block__content > h4:first-child, .vacancy-block__content > h5:first-child, .vacancy-block__content > h6:first-child {
  margin-top: 0 !important;
}
.vacancy-block__content > h1 + h2, .vacancy-block__content > h1 + h3, .vacancy-block__content > h2 + h3, .vacancy-block__content > h2 + h4, .vacancy-block__content > h3 + h4, .vacancy-block__content > h3 + h5, .vacancy-block__content > h4 + h5, .vacancy-block__content > h4 + h6 {
  margin-top: 3.2rem;
}
.vacancy-block__content p, .vacancy-block__content li {
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-block__content strong, .vacancy-block__content b {
  font: inherit;
  color: #1F2A35;
  font-weight: 600;
}
.vacancy-block__content ul, .vacancy-block__content ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-block__content ul {
  list-style: disc;
}
.vacancy-block__content ol {
  list-style: decimal;
}
.vacancy-block__content li + li {
  margin-top: 0.8em;
}
.vacancy-block__content li::marker {
  color: #1F2A35;
}
.vacancy-block__content ul ul, .vacancy-block__content ul ol, .vacancy-block__content ol ul, .vacancy-block__content ol ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}
.vacancy-block__content blockquote {
  margin: 3rem 0 4rem;
  padding: 2rem 2.4rem;
  border-left: 2px solid #124A83;
  background: #E9EFF5;
  border-radius: 4px;
  color: #1F2A35;
}
.vacancy-block__content blockquote p {
  color: #1F2A35;
  font-weight: 600;
}
.vacancy-block__content a {
  color: #124A83;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.vacancy-block__content a:hover, .vacancy-block__content a:focus-visible {
  color: #0b3b6b;
}
.vacancy-block__content a:visited {
  color: #124A83;
}
.vacancy-block__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.vacancy-block__content figure {
  margin: 0 0 2.4rem;
}
.vacancy-block__content figcaption {
  margin-top: 0.8rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.vacancy-block__content figcaption p {
  font: inherit;
  color: inherit;
}
.vacancy-block__content figcaption p + p {
  margin-top: 1.4rem;
}

.vacancy-cta {
  padding: 8rem 0;
  background: #1F2A35;
  background-size: cover;
  background-position: center;
  position: relative;
}
.vacancy-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}
.vacancy-cta > * {
  position: relative;
  z-index: 1;
}
.vacancy-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .vacancy-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .vacancy-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
  }
}
.vacancy-cta__text {
  max-width: 74rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #FFFFFF;
  flex: 1 0;
}
.vacancy-cta__email {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
}
.vacancy-cta__email img, .vacancy-cta__email svg, .vacancy-cta__email .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.vacancy-cta__email:hover {
  background: #c27e4a;
}
.vacancy-cta__email:hover {
  background: #FFFFFF;
  color: #1F2A35;
}

.page-404 {
  padding: 8rem 0 12rem;
}
.page-404__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .page-404__wrapper {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    text-align: center;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .page-404__wrapper {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    text-align: center;
  }
}
.page-404__code {
  font-size: clamp(12rem, 18vw, 22rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #124A83;
}
@media (max-width: 1024px) {
  .page-404__code {
    font-size: clamp(10rem, 28vw, 18rem);
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .page-404__code {
    font-size: clamp(10rem, 28vw, 18rem);
  }
}
.page-404__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
  max-width: 56rem;
}
@media (max-width: 1024px) {
  .page-404__content {
    align-items: center;
    margin: 0 auto;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .page-404__content {
    align-items: center;
    margin: 0 auto;
  }
}
.page-404__text {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
}
.page-404__text p {
  font: inherit;
  color: inherit;
}
.page-404__text p + p {
  margin-top: 1em;
}
.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .page-404__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.page-404__btn {
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: #124A83;
}
.page-404__btn img, .page-404__btn svg, .page-404__btn .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.page-404__btn:hover {
  background: #c27e4a;
}
.page-404__btn:hover {
  background: #0b3b6b;
}
.page-404__btn--ghost {
  background: transparent;
  color: #124A83;
  border: 1px solid #124A83;
}
.page-404__btn--ghost:hover {
  background: #124A83;
  color: #FFFFFF;
}

.direction-cta {
  padding: 8rem 0;
  background: #1F2A35;
  background-size: cover;
  background-position: center;
  position: relative;
}
.direction-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}
@media (max-width: 1024px) {
  .direction-cta::before {
    background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-cta::before {
    background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
  }
}
.direction-cta > * {
  position: relative;
  z-index: 1;
}
.direction-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .direction-cta__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .direction-cta__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.direction-cta__text {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #FFFFFF;
  max-width: 52rem;
}
.direction-cta__person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.direction-cta__label {
  font-size: clamp(10px, 1.2rem, 15px);
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}
.direction-cta__name {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #FFFFFF;
}
.direction-cta__position {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(255, 255, 255, 0.65);
}
.direction-cta__position p {
  font: inherit;
  color: inherit;
}
.direction-cta__position p + p {
  margin-top: 1.4rem;
}
.direction-cta__email {
  margin-top: 2rem;
  border-radius: 4px;
  background: #E6A26F;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: clamp(12px, 1.4rem, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
}
.direction-cta__email img, .direction-cta__email svg, .direction-cta__email .icon {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
  color: currentColor;
}
.direction-cta__email:hover {
  background: #c27e4a;
}
.direction-cta__email:hover {
  background: #FFFFFF;
  color: #1F2A35;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.program-card:hover {
  box-shadow: 0 4px 20px rgba(31, 42, 53, 0.12);
}
.program-card:hover .program-card__btn-icon {
  transform: translateX(0.4rem);
}
.program-card__img {
  position: relative;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  padding-top: 62%;
}
.program-card__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-card__body {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex: 1 0;
}
@media (max-width: 768px) {
  .program-card__body {
    padding: 20px;
    gap: 20px;
  }
}
.program-card__title {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.program-card__btn {
  margin-top: auto;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  background: #E9EFF5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: #1F2A35;
  transition: all 0.2s ease;
}
.program-card__btn p {
  font: inherit;
  color: inherit;
}
.program-card__btn p + p {
  margin-top: 1.4rem;
}
.program-card__btn-icon {
  flex: 0 0 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.program-card__btn-icon .icon {
  width: 100%;
  height: 100%;
  color: #124A83;
  stroke: currentColor;
  fill: none;
}

.programs {
  padding: 10rem 0;
  background: #F1F2F4;
}
@media (max-width: 768px) {
  .programs {
    padding: 6rem 0;
  }
}
.programs__header {
  margin-bottom: 4rem;
}
.programs__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .programs__title {
    font-size: 4.2rem;
  }
}
.programs__subtitle {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
  margin-top: 2rem;
}
.programs__subtitle p {
  font: inherit;
  color: inherit;
}
.programs__subtitle p + p {
  margin-top: 1em;
}
.programs__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .programs__tabs {
    flex-direction: column;
  }
}
.programs__tab {
  flex: 1 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
  transition: all 0.2s ease;
}
.programs__tab span {
  font: inherit;
  color: inherit;
}
.programs__tab:hover {
  border-color: #124A83;
  color: #124A83;
}
.programs__tab.active {
  background: #124A83;
  color: #FFFFFF;
  border-color: #124A83;
}
.programs__tab-label {
  text-align: left;
}
.programs__tab-count {
  font-size: clamp(12px, 1.4rem, 17px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  font-weight: 500;
  color: currentColor;
  opacity: 0.7;
}
.programs__tab-count p {
  font: inherit;
  color: inherit;
}
.programs__tab-count p + p {
  margin-top: 1.4rem;
}
.programs__panel {
  display: none;
}
.programs__panel.active {
  display: block;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .programs__grid {
    grid-template-columns: 1fr;
  }
}

.other-programs {
  padding: 0 0 10rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .other-programs {
    padding: 0 0 6rem;
  }
}
.other-programs__header {
  margin-bottom: 4rem;
}
.other-programs__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
.other-programs__slider {
  width: 100%;
  max-width: 100%;
}
.other-programs__item {
  height: auto;
}
.other-programs__item .program-card {
  height: 100%;
}
.other-programs__footer {
  margin-top: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.other-programs__footer:has(.swiper-button-lock), .other-programs__footer:has(.swiper-pagination-lock) {
  display: none;
}
.other-programs__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.other-programs__pagination.swiper-pagination-lock {
  display: none;
}
.other-programs__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(31, 42, 53, 0.3);
  opacity: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.other-programs__pagination .swiper-pagination-bullet-active {
  width: 2.4rem;
  border-radius: 0.4rem;
  background: #E6A26F;
}
/*# sourceMappingURL=main.css.map */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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