  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Stem', sans-serif;
    color: #282828;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
  }

  .container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: .5em;
    line-height: 1.2;
  }

  p {
    margin-bottom: 1em;
  }


  strong { font-weight: 700; }

  em     { font-style: italic; }

  a {
    color: #1D71B8;
    text-decoration: none;
    transition: color .2s ease;
  }

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

  .hidden      { display: none !important; }

  .clearfix::after {
    content: '';
    display: block;
    clear: both;
  }

  :root {
    --color-primary:   #1D71B8;
    --color-secondary: #E0DD17;
    --color-dark:      #021D49;
    --color-grey:      #595959;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
  }

  .button {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: background .3s ease;
  }

  .button:hover {
    background: var(--color-dark);
  }

  @media (max-width: 1440px) {
    .container { padding: 0 20px; }

  }

  @media (max-width: 1024px) {
    .container { padding: 0 16px; }

    h1 { font-size: 2rem; }

  }

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

    h1 { font-size: 1.75rem; }

  }

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

    h1 { font-size: 1.5rem; }

  }

  .search-results {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .search-result-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 24px;
  }

  .result-title a {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 700;
  }

  .result-meta {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
  }

  .result-excerpt {
    margin-top: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
  }

  body.search .single-header {
    margin-top: 0;
    padding-top: 0;
  }

  .internal-page-wrapper {
    padding-top: 0; 
    background: #fff;
  }

  body.search .site-main {
    margin-top: 0;
    padding-top: 40px;
  }

  .site-main {
    margin-bottom: 40px;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }

  .section-header__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1; 
    color: #28245A;
    margin: 0;
  }

  .section-header__title--white {
    color: #fff;
    
  }

  @media (max-width: 1280px) {
    .section-header__title {
      font-size: 32px;
    }

  }

  @media (max-width: 600px) {
    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 24px;
    }

    .section-header__title {
      font-size: 24px;
    }

  }

  .link-arrow {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px; 
    color: #1D71B8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, opacity 0.3s ease;
  }

  .link-arrow:hover {
    color: #144f80;
    opacity: 0.8;
  }

  .link-arrow--white {
    color: #fff;
  }

  .link-arrow--white:hover {
    color: #fff;
  }

  .link-arrow__icon {
    width: 34px;
    height: 32px;
    stroke: currentColor;
    transition: transform 0.3s ease;
    margin-top: 2px;
  }

  .link-arrow:hover .link-arrow__icon {
    transform: translateX(3px);
  }

  @media (max-width: 600px) {
    .link-arrow {
      font-size: 16px;
    }

  }

  .main-card {
    display: flex;
    flex-direction: column;
    background: #F4F4F4;
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }

  .main-card:hover {
    background-color: #eaeaea;
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 600px) {
      .main-card {
          padding: 16px;
      }

  }

  .history-day {
    width: 100%;
    background: #f6f6f6;
    border-bottom: 4px solid #2ab5b7;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }

  .history-day__content {
    padding: 0 24px;
  }

  .history-day__text {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: 
      "title"
      "link"
      "image"
      "text";
    column-gap: 32px;
  }

  .history-day__title {
    font-weight: 500;
    font-size: 24px;
    color: #28245a;
    margin-bottom: 0;
    grid-area: title;
  }

  @media screen and (width > 768px) {

    .history-day__title {
      font-size: 48px;
      margin-bottom: 24px;
    }

    .history-day__link-row {
      margin-bottom: 0;
    }

    .history-day__subtitle {
      margin-top:8px;
    }

    .history-day__content {
      padding: 0;
    }

  }

  @media screen and (width > 1280px) {
    .history-day__text {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto 1fr auto;
      grid-template-areas: 
        "title title"
        "text image"
        "link image";
      column-gap: 32px;
    }

  }

  .history-day__text-wrapper {
    grid-area: text;
  }

  .history-day__subtitle {
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.56;
    color: #595959;
    margin: 24px 0 8px;
    max-width: 720px;
    text-align: left;
  }

  .history-day__photoarchive {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

  .history-day__photoarchive-text {
    font-weight: 500;
    font-size: 0.8889rem;
    line-height: 1.3;
    color: #595959;
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  .history-day__description {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.56;
    color: #282828;
    margin: 24px 0;
  }

  .history-day__link-row {
    grid-area: link;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .history-day__link {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #3766b0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .history-day__link:hover {
    color: #224a84;
  }

  .history-day__arrow {
    font-size: 22px;
    margin-left: 10px;
    line-height: 1;
  }

.history-day__image {
  grid-area: image;
}







.history-day__img {
  width: 100%;
  height: 100%;
  max-width: 640px;
  object-fit: contain;
  object-position: top;
  border-radius: 0 !important;
  display: block;
}

  .oganeson {
    padding: 64px 0 0;
    background: #fff;
  }

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

  .oganeson__card {
    min-height: 436px;
    border-radius: 2px;
    color: #fafafa;
    background-color: #28245a;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .oganeson__inner {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .oganeson__card--dark { background-color: #28245a; }

  .oganeson__card--teal { background-color: #2ab5b7; }

  .oganeson__card--blue { background-color: #1d71b8; }

  .oganeson__title {
    font-weight: 500;
    font-size: clamp(1.88rem, 3vw, 2.6667rem);
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #FAFAFA;
  }

  .oganeson__text {
    font-weight: 400;
    font-size: 1.3333rem;
    line-height: 1.7778rem;
    color: #FAFAFA;
    flex: 1;
  }

  .oganeson__link {
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .oganeson__link-text {
    display: block;
  }

  .oganeson__link:hover {
    color: #e0dd17;
  }

  .oganeson__arrow {
    margin-left: 10px;
    font-size: 24px;
    line-height: 1;
  }

  .oganeson__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    background-color: #e0dd17;
    padding: 4px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    width: auto;
    max-width: max-content;
  }

  .oganeson__button:hover {
    background-color: #c4c113;
  }

  @media (max-width: 1124px) {
    .oganeson {
      padding: 48px 0;
    }

    .oganeson__wrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .oganeson__card {
      min-height: auto;
    }

    .oganeson__inner {
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .oganeson__title {
      font-size: 30px;
      line-height: 38px;
    }

    .oganeson__link,
    .oganeson__button {
      font-size: 16px;
      line-height: 24px;
    }

    .oganeson__button {
      padding: 4px 12px;
      max-width: max-content;
      margin-top: 16px;
    }

  }

  .container {
    max-width: 1760px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-top-bar {
    background: #f8f8f8;
    border-bottom: 4px solid #e0dd17;
    padding: 12px 0;
  }

  .footer-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .footer-nav-short {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 40px;
    flex-grow: 1;
  }

  .footer-nav-short a {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #3766B0;
    text-decoration: none;
  }

  .footer-nav-short a:hover {
    opacity: 0.7;
  }

  .footer-socials {
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding-top: 0;
    flex-wrap: nowrap !important;
  }

  .footer-socials .social-icons {
    display: flex;
    gap: 30px;
  }

  .social-icons img {
    width: 31px;
    height: 31px;
    padding: 3px;
    border-radius: 50%;
    object-fit: contain;
  }

  .footer-container {
    background-color: rgb(18, 65, 106);
    color: #fff;
    padding: 36px 0 55px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
  }

  .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 10px 0 25px;
  }

  .footer-logo {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-logo img {
    width: 188.7px;
    height: 125.38px;
  }

  .footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 12px;
    padding-top: 4px;
    line-height: 1.15;
    letter-spacing: 0.09em;
    color: #fff;
    text-transform: uppercase;
    gap: 4px;
  }

  .footer-logo-small {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
  }

  .footer-logo-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-top: 8px;
  }

  .footer-flags-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
  }

  .footer-flags-main,
  .footer-flags-secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-flags-main p,
  .footer-flags-secondary p {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
  }

  .footer-flags-secondary {
    flex-direction: row;
    gap: 18px;
  }

  .flag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .flag-list img {
    width: 42.67px;
    height: 32px;
    object-fit: cover;
  }

  .footer-line {
    width: 100%;
    border: 1px solid rgba(250, 250, 250, 0.32);
  }

  .footer-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 110px;
    margin: 50px auto 24px;
    max-width: 1420px;
  }

  .footer-column {
    flex: 1 1 auto;
    min-width: 160px;
    max-width: 220px;
  }

  .footer-column h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column li {
    margin-bottom: 6px;
  }

  .footer-column a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .footer-column a:hover {
    opacity: 0.7;
  }

  .footer-bottom {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    color: #fff;
    margin-top: 40px;
  }

  .footer-line--top {
    margin-bottom: 45px;
    margin-top: 30px;
  }

  .footer-line--bottom {
    margin-bottom: 55px;
  }

  .footer-column a,
  .footer-nav-short a {
    transition: color 0.2s ease, opacity 0.2s ease;
  }

  @media (max-width: 1400px) {
    .footer-column--contacts {
      display: none;
    }

  }

  @media (max-width: 1550px) {
    .footer-header {
      flex-direction: column;
      align-items: center;
    }

    .footer-logo {
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-logo-text {
      padding-left: 0;
      padding-top: 8px;
    }

    .footer-flags-wrapper,
    .footer-flags-main,
    .footer-flags-secondary {
      align-items: center;
      text-align: center;
    }

    .footer-flags-secondary {
      flex-direction: column;
      gap: 16px;
    }

    .footer-flags-secondary > div:last-child .flag-list {
      margin-left: 45px;
    }

    .flag-list {
      margin-left: 48px !important;
    }

    .footer-top {
      justify-content: center;
      gap: 40px 12px; 
      flex-wrap: wrap;
      text-align: left;
    }

    .footer-column {
      flex: 0 1 calc(33.333% - 12px);
    }

    .footer-column h4 {
      font-size: 16px;
      margin-bottom: 12px;
    }

    .footer-column a {
      font-size: 13px;
    }

    .footer-line {
      margin: 32px 0;
    }

    .footer-bottom {
      font-size: 13px;
    }

  }

  @media (max-width: 1349px) and (min-width: 1201px) {
    .social-icons {
      margin-top: 40px;
    }

   }

  @media (max-width: 1280px) {
    .footer-top-bar-inner {
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 0 24px;
      text-align: center;
    }

    .footer-nav-short {
      justify-content: center;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .footer-nav-short a {
      font-size: 18px;
    }

    .footer-socials {
      justify-content: center;
      margin-top: 0;
    }

    .footer-socials .social-icons {
      justify-content: center;
    }

  }

  @media (max-width: 768px) {
    .flag-list {
      justify-content: center;
      max-width: 320px;
      row-gap: 6px;
    }

    .footer-top {
      flex-direction: column;
      align-items: center;
      gap: 32px;
      text-align: center;
    }

    .footer-column {
      max-width: 360px;
    }

    .footer-column h4 {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .footer-bottom {
      font-size: 12px;
      padding: 0 16px;
    }

  }

.footer-top.footer-top--menu { display:flex; justify-content:center; flex-wrap:wrap; gap:110px; margin:50px auto 24px; max-width:1420px; }
.footer-column { min-width:160px; max-width:220px; }
.footer-submenu { list-style:none; margin:0; padding:0; }
.footer-submenu li { margin-bottom:6px; }

.footer-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 110px;
  max-width: 1420px;
  margin: 50px auto 24px;
}

  .flag-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    line-height: 0;
    position: relative;
    top: 6px; 
  }

  .flag {
    display: inline-block;
    width: 86px; 
    height: 64px;
    background-repeat: no-repeat;
    background-size: auto; 
    transform: scale(0.48);  
    transform-origin: top left;
    margin: 2px -17px -2px -17px;  
    box-sizing: border-box;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100vh);
    z-index: 2;
    pointer-events: none;
  }

  .hero__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .hero__slide {
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0% at 50% 50%);
    transform: scale(0.95);
    filter: blur(6px);
    transition:
      opacity 0.8s ease,
      clip-path 1.2s ease-out,
      transform 1.2s ease,
      filter 1s ease;
    z-index: 1;
  }

  .hero__slide--active {
    opacity: 1;
    pointer-events: auto;
    clip-path: circle(150% at 50% 50%);
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,29,73,0.4), rgba(0,0,0,0.4));
    pointer-events: none;
    z-index: 2;
  }

  .hero__slide video,
  .hero__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: none;
    z-index: 1;
  }

  .hero__video {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hero__link-full {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: block;
    text-indent: -9999px;
    pointer-events: auto;
    cursor: pointer;
  }

  .hero__inner {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
  }

  :root {
    --hero-indent: clamp(32px, 16vw, 320px);
  }

  .hero__content {
    position: absolute;
    max-width: 90%;
    padding-left: 24px;
    margin: 0 0 clamp(24px, 14.6vh, 281px) 8px;
    color: #fff;
    font-weight: 500;
    font-size: clamp(28px, 4.5vw, 52px);
    line-height: 1.2;
    white-space: pre-line;
    pointer-events: auto;
    text-align: left;
    background: transparent;
    z-index: 3;
    bottom: 40px;
    width: 32ch;
  }

  .hero__content *,
  .hero__content h1 {
    color: #fff !important;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .hero__content h1 { margin: 0; padding: 0; }

  .hero__content strong { font-weight: 700; }

  .hero__content em { font-style: italic; }

  .hero__content p { margin: 0; padding: 0; }

  .hero__dots {
    position: absolute;
    left: 24px;
    bottom: clamp(24px, 2vh, 281px);
    display: flex;
    gap: 16px;
    pointer-events: auto;
    z-index: 1000;
    will-change: opacity, transform;
    transition: opacity 0.3s ease;
  }

  .hero__dot {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  .hero__dot::before { content: none !important; }

  .hero__dot--active {
    border: 2px dashed rgba(255, 255, 255, 0.5);
  }

  .hero__dot-icon {
    font: 600 20px/1 sans-serif;
    color: #fff;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
  }

  .hero__dot--active .hero__dot-icon {
    opacity: 1;
    transform: scale(1);
  }

  .hero__dot::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: transparent;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }


  .hero__dot-ring {
    position: absolute;
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 1;
  }

  .hero__dot-ring circle {
    fill: none;
    stroke: #fcd000;
    stroke-width: 2;
    stroke-linecap: butt;
    stroke-dasharray: 131.9;
    stroke-dashoffset: 131.9;
    animation: none;
  }

  @keyframes dashfill {
    to { stroke-dashoffset: 0; }

  }


  .hero__dot-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%) rotate(-90deg) translateX(21px);
    animation: dotSpin var(--dot-interval, 5000ms) linear forwards;
  }



  .hero__dot {
    transform: none !important;
    box-sizing: border-box;
    border: 2px dashed rgba(255,255,255,0);
  }


  .hero__dot--active {
    border-color: rgba(255,255,255,0.5);
    transform: none !important;
    transition: border-color .25s ease;
  }


  .hero__dot-ring circle {
    stroke-dasharray: 131.9;
    stroke-dashoffset: 131.9;
    transition: none;
    transform-origin: center;
    transform-box: fill-box;
  }

  @keyframes dotSpin {
    to { transform: translate(-50%, -50%) rotate(270deg) translateX(21px); }

  }

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

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .header-bar-top {
    background: #222;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    padding: 4px clamp(20px, 5vw, 80px);
  }

  .header-bar-left,
  .header-bar-auth {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .header-bar-logo,
  .header-bar-slogan,
  .header-bar-login,
  .header-bar-register,
  .header-bar-link {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
  }

  .header-bar-logo {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
  }

  .header-bar-slogan {
    padding-left: 10px;
    line-height: 1.2;
    white-space: normal;
  }

  .header-bar-login,
  .header-bar-register {
    text-decoration: none;
    padding: 4px 0;
  }


  @media (max-width: 768px) {
    .header-bar-inner {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      text-align: center;
      gap: 6px;
    }

    .header-bar-left {
      flex-direction: column;
      gap: 4px;
    }

    .header-bar-auth,
    .header-bar-logo {
      display: none !important;
    }

    .header-bar-slogan {
      width: 100%;
      max-width: 320px;
      font-size: 14.5px;
      line-height: 1.35;
      word-break: break-word;
    }

  }

  .site-header {
    display: block;
    height: calc(100vh - var(--top-banner-offset));
  }

  .hero-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: calc(100vh);
    background: linear-gradient(180deg, #021d49 0%, #000 100%);
    overflow: hidden;
  }

  .hero-header-inner {
    z-index: 10;
  }

  .hero-logo {
    min-width: 120px;
  }

  .hero-logo img {
    width: auto;
    height: 100%;
    max-height: 130px;
  }

  .hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    text-align: center;
  }

  .hero-nav a {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
  }

  .hero-nav a.active::after,
  .hero-nav a:hover::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 135%;
    max-width: 150%;
    height: 4px;
    border-radius: 2px;
  }

  .hero-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    min-width: fit-content;
    margin-right: -20px;
  }

  .icon-search,
  .icon-compass {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .icon-search { background-image: url('../img/icon-search.png'); }

  .icon-compass { background-image: url('../img/icon-compass.png'); }

  .lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }

  .burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 24px;
    margin-right: 16px;
    background: none;
    border: none;
    padding: 0;
  }

  .burger-menu svg {
    display: block;
  }

  @media (max-width: 1440px) {
    .hero-nav { gap: 40px; }

    .hero-nav a { font-size: 15px; }

    .hero-logo img { max-height: 130px; }

    .hero-icons { gap: 28px; }

    .hero-nav a.active::after,
    .hero-nav a:hover::after {
      height: 3px;
      bottom: -6px;
    }

  }

  @media (max-width: 1280px) {
    .hero-header-inner {
      grid-template-columns: auto auto auto;
      justify-content: space-between;
      row-gap: 16px;
    }

    .hero-logo img { height: 115px; }

    .hero-nav { gap: 24px; padding-top: 12px; }

    .hero-icons { gap: 20px; padding-top: 12px; justify-content: flex-end; }

    .lang-switch { font-size: 16px; }

    .burger-menu { width: 32px; height: 20px; }

  }

  @media (max-width: 768px) {
    .hero-logo img { height: 120px; }

    .hero-icons {
      justify-content: flex-end;
      width: auto;
      gap: 12px;
      padding-right: 0;
    }

    .burger-menu { margin-left: 12px; }

  }

  @media (max-width: 500px) {
    .hero-icons { gap: 0; }

    .icon-search,
    .icon-compass,
    .lang-switch { display: none; }

    .burger-menu { margin-left: auto; }

  }

  @media (max-width: 350px) {
    .hero-header-inner {
      grid-template-columns: 1fr auto;
      justify-items: start;
    }

  }

  @media (max-width: 1400px) {
    .hero-logo { transform: translateY(10px); }

  }

  .hero-banner-slider {
    position: relative;
    z-index: 1;
  }

  .hero-nav .hero-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media (max-width: 1440px) { .hero-nav .hero-menu { gap: 40px; }
 }

  @media (max-width: 1280px) { .hero-nav .hero-menu { gap: 24px; }
 }

  @media (max-width: 1024px) { .hero-nav .hero-menu { gap: 16px; }
 }

  .hero-nav .hero-menu > li { position: relative; }

  .hero-nav .hero-menu > li > a {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
  }

  @media (max-width: 1440px) { .hero-nav .hero-menu > li > a { font-size: 15px; }
 }

  @media (max-width: 1024px) { .hero-nav .hero-menu > li > a { font-size: 13px; }
 }

  .hero-nav .hero-menu > li > a.active::after,
  .hero-nav .hero-menu > li > a:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 135%;
    max-width: 150%;
    height: 4px;
    border-radius: 2px;
  }

  @media (max-width: 1440px) {
    .hero-nav .hero-menu > li > a.active::after,
    .hero-nav .hero-menu > li > a:hover::after {
      height: 3px;
      bottom: -6px;
    }

  }

  .hero-nav .hero-menu > li {
    position: relative;
    --submenu-gap: 14px; 
  }

  .hero-nav .hero-menu > li::after {
    content: "";
    position: absolute;
    left: -14px;
    right: -14px;
    top: 100%;
    height: var(--submenu-gap);
  }

  .hero-nav .hero-menu .sub-menu {
    position: absolute;
    top: calc(100% + var(--submenu-gap));
    left: 0;
    transform: translateY(6px);
    min-width: 240px;
    max-width: 80vw;
    max-height: 60vh;
    overflow: auto;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    text-align: left;
    border-radius: 8px;
    background: rgba(0,0,0,.82);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .16s ease,
      transform .16s ease,
      visibility 0s linear .18s;
    will-change: opacity, transform;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-nav .hero-menu .sub-menu::-webkit-scrollbar { display: none; }

  .hero-nav .hero-menu > li:hover > .sub-menu,
  .hero-nav .hero-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-nav .hero-menu .sub-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    white-space: normal;
  }

  .hero-nav .hero-menu .sub-menu > li > a:hover {
    background: rgba(255,255,255,.08);
  }

  .hero-nav .hero-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
    transform: translateX(6px);
    max-height: 60vh;
  }

  .hero-nav .hero-menu .sub-menu > li:hover > .sub-menu,
  .hero-nav .hero-menu .sub-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-nav .hero-menu > li:hover > a::after,
  .hero-nav .hero-menu > li:focus-within > a::after {
    opacity: 0;
    transition: opacity .12s ease;
  }

  .hero-header-wrapper-news { position: relative; z-index: 1000; }

  .hero-header-wrapper-news .hero-nav { position: relative; z-index: 1100; }

  .hero-header-wrapper-news .hero-nav .sub-menu { z-index: 1200; }

  .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu a::after { content: none !important; }

  .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .18s;
  }

  .hero-nav .hero-menu > li.menu-item-tpl:hover > ul.sub-menu,
  .hero-nav .hero-menu > li.menu-item-tpl:focus-within > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu a::after {
    content: none !important;
  }


  .hero-logo {
    justify-self: start;
    width: 243px;   
    height: 120px;  
    display: flex;
    align-items: center;
  }

  .hero-logo img {
    height: 100%;
    object-fit: contain; 
  }

  .hero-icons {
    justify-self: end;
    width: 243px; 
    display: flex;
    justify-content: flex-end;
    gap: 24px;
  }

  @media (max-width: 800px) {
    .hero-header-inner {
      display: flex !important;
      justify-content: space-between;
      align-items: center;  
      min-height: 56px;
    }

    .hero-logo-new img {
      max-height: 48px;
    }

    .hero-header-wrapper.search-open .search-inline-wrapper {
      top: 50%;
      transform: translate(-50%, -50%);
      width: 70vw;
      max-width: 280px;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 15px;
      padding: 2px 0 8px;
    }

    .hero-header-wrapper.search-open .search-close {
      top: 50%;
      transform: translateY(-50%);
    }

    .hero-header-wrapper.search-open .search-inline-wrapper {
      top: 0;
      bottom: 0;
      margin: auto 0;
      transform: translateX(-50%);
      width: 70vw;
      max-width: 280px;
    }

  }

  @media (max-width: 500px) {
    .hero-header-inner {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      gap: 0 !important;
    }

    .hero-logo {
      flex: 1;
      display: flex;
      align-items: center;
      max-width: 180px;
    }

    .hero-logo img {
      width: 100%;
      height: auto;
      max-height: 52px;
      object-fit: contain;
    }

    .hero-icons {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin: 0;
      padding: 0;
      width: auto;
    }

    .hero-icons .icon-search,
    .hero-icons .icon-compass,
    .hero-icons .lang-switch {
      display: none !important;
    }

    .burger-menu {
      display: flex !important;
      width: 28px;
      height: 20px;
      margin: 0;
    }

  }

  @media (max-width: 600px) {
    .hero-header-inner {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
    }

    .hero-logo-new {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      max-width: 160px;
    }

    .hero-logo-new img {
      max-height: 50px;
      height: auto;
      width: 100%;
      object-fit: contain;
    }

    .hero-icons {
      flex: 0 0 auto;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: auto;
    }

    .hero-icons .icon-search,
    .hero-icons .icon-compass,
    .hero-icons .lang-switch {
      display: none !important;
    }

    .burger-menu {
      display: flex !important;
      width: 32px;
      height: 22px;
      margin: 0;
    }

  }

  @media (max-width: 500px) {
    .hero-logo-new {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      max-width: 200px;
    }

    .hero-logo-new img {
      max-height: 70px;
      height: auto;
      width: auto;
      object-fit: contain;
    }

    .burger-menu {
      display: flex !important;
      width: 32px;
      height: 22px;
      margin: 0;
    }

  }

  @media (max-width: 360px) {
    .hero-header-inner {
      gap: 0 !important;
    }

    .hero-logo-new {
      max-width: 120px;
    }

    .hero-logo-new img {
      max-height: 48px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .hero-icons {
      gap: 0;
    }

    .burger-menu {
      width: 28px;
      height: 20px;
    }

  }

  .hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .hero-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .hero-nav ul.hero-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .hero-nav ul.hero-menu li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }

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

  }

  .burger-menu.active svg rect:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu.active svg rect:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active svg rect:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .burger-menu svg rect {
    transition: all 0.3s ease;
  }

  .hero-header-wrapper.search-open .hero-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .hero-header-wrapper.search-open .search-inline-wrapper {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 600px;
    margin: 0;
    display: flex;
    justify-content: center;
    z-index: 50;
  }

  .hero-header-wrapper.search-open .search-form-inline {
    position: relative;
    width: 100%;
    display: flex;
    gap: 12px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero-header-wrapper.search-open .search-field {
    flex: 1;
    width: 100%;
    font-size: 24px;
    padding: 6px 0 20px;
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid var(--color-secondary, #e0dd17);
  }

  .hero-header-wrapper.search-open .search-field::placeholder {
    color: #b3adad;
    opacity: 1;
  }

  .hero-header-wrapper.search-open .search-submit { display: none; }

  .hero-header-wrapper.search-open .search-close { display: block; }

  .hero-header-wrapper.search-open .search-inline-wrapper {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    max-width: 640px;
    display: flex;
    justify-content: center;
    z-index: 50;
  }

  .hero-header-wrapper.search-open .search-field {
    font-size: 22px;
    padding: 5px 0 18px;
  }

  @media (max-width: 1439px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 50vw;
      max-width: 480px;
      top: 38px;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 20px;
      padding: 4px 0 16px;
    }

  }

  @media (max-width: 1299px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 45vw;
      max-width: 400px;
      top: 40px;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 18px;
      padding: 4px 0 14px;
    }

  }

  @media (max-width: 1199px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 36vw;
      max-width: 300px;
      top: 42px;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 16px;
      padding: 3px 0 12px;
    }

  }

  @media (max-width: 1023px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 32vw;
      max-width: 260px;
      top: 44px;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 15px;
      padding: 3px 0 10px;
    }

  }

  @media (max-width: 900px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 70vw;
      max-width: 240px;
      top: 46px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 15px;
      padding: 2px 0 10px;
    }

  }

  @media (max-width: 1125px) {
    .hero-logo-new {
      max-width: 330px;
      height: auto;
    }

    .hero-logo-new img {
      max-height: 100px; 
      height: auto;
      width: 100%;
      object-fit: contain;
    }

  }

  @media (max-width: 1000px) {
    .hero-logo-new {
      max-width: 280px; 
    }

    .hero-logo-new img {
      max-height: 85px; 
    }

  }

  @media (max-width: 900px) {
    .hero-logo-new {
      max-width: 250px;
    }

    .hero-logo-new img {
      max-height: 75px;
    }

  }

  @media (max-width: 800px) {
    .hero-header-inner {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      gap: 8px !important;
      min-height: 60px; 
    }

    .hero-logo-new {
      display: flex;
      align-items: center;
      max-width: 210px;
      height: auto;
    }

    .hero-logo-new img {
      height: auto;
      max-height: 65px;  
      width: auto;
      object-fit: contain;
    }

    .hero-icons {
      display: flex;
      align-items: center;  
      justify-content: flex-end;
      gap: 12px;
      width: auto;
      margin: 0;
      padding: 0;
    }

    .burger-menu {
      width: 28px;
      height: 20px;
    }

  }

  @media (max-width: 800px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 70vw;
      max-width: 280px;
      margin: 0 auto;
      z-index: 60;
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 15px;
      padding: 2px 0 8px;
    }

    .hero-header-wrapper.search-open .search-close {
      top: 50%;
      transform: translateY(-50%);
    }

  }

  @media (max-width: 800px) {
    .hero-logo-new img {
      height: auto;
      max-height: 65px !important;
      width: auto;
      object-fit: contain;
    }

  }

  @media (max-width: 600px) {
    .hero-logo-new {
      max-width: 180px;
    }

    .hero-logo-new img {
      max-height: 80px !important;
    }

  }

  @media (max-width: 640px) and (min-width: 501px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      width: 60vw;
      max-width: 200px;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-header-wrapper.search-open .search-field {
      font-size: 14px; 
      padding: 2px 0 6px;
    }

  }

  @media (max-width: 600px) {
    .hero-header-wrapper.search-open .search-inline-wrapper {
      display: none !important;
    }

  }

@media (min-width: 1024px) {

  .hero-header-wrapper.search-open .search-form-inline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -52%); 
    width: min(60vw, 580px);  
    z-index: 500;
  }

  .hero-header-wrapper.search-open .search-close {
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    z-index: 501;
  }
}
.hero-header-wrapper.search-open .search-inline-wrapper {
  position: static !important;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .hero-header-wrapper.search-open .search-form-inline {
    transform: translate(-50%, -50%); 
    width: min(60vw, 500px); 
  }
}

@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-header-wrapper.search-open .search-form-inline {
    transform: translate(-50%, -50%);
    width: min(50vw, 400px);
  }
}

  .hero-header-wrapper-news {
    background: rgb(29, 113, 184);
    width: 100%;
    height: 120px !important;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    overflow: visible !important;
  }

  .hero-header-wrapper-news .hero-header-inner {
    position: relative;
    z-index: 10;
  }

  .hero-header-wrapper-news .hero-nav {
    position: relative;
    z-index: 1100;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li {
    position: relative;
    --submenu-gap: 12px;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li::after {
    content: "";
    position: absolute;
    left: -14px;
    right: -14px;
    top: 100%;
    height: var(--submenu-gap);
  }

  .hero-header-wrapper-news .hero-nav .sub-menu {
    position: absolute;
    top: calc(100% + var(--submenu-gap));
    left: 0;
    transform: translateY(6px);
    min-width: 240px;
    max-width: 80vw;
    max-height: 60vh;
    overflow: auto;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    text-align: left;
    border-radius: 8px;
    background: rgba(0,0,0,.9);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .16s ease,
      transform .16s ease,
      visibility 0s linear .18s;
    will-change: opacity, transform;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu::-webkit-scrollbar { display: none; }

  .hero-header-wrapper-news .hero-nav .hero-menu > li:hover > .sub-menu,
  .hero-header-wrapper-news .hero-nav .hero-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    white-space: normal;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu > li > a:hover {
    background: rgba(255,255,255,.1);
  }

  .hero-header-wrapper-news .hero-nav .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
    transform: translateX(6px);
    max-height: 60vh;
    background: rgba(0,0,0,.95);
    z-index: 10000 !important;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu > li:hover > .sub-menu,
  .hero-header-wrapper-news .hero-nav .sub-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li:hover > a::after,
  .hero-header-wrapper-news .hero-nav .hero-menu > li:focus-within > a::after {
    opacity: 0;
    transition: opacity .12s ease;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .18s;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl:hover > ul.sub-menu,
  .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl:focus-within > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: .08s, .08s, 0s;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu a::after {
    content: none !important;
  }

  .hero-logo__img {
    margin-top: 8px;
  }

  @media (max-width: 800px) {
    .hero-nav {
      position: fixed;
      top: 60px;
      left: 0;
      width: 180px;
      background: #111;
      padding: 8px 0;
      display: none;
      flex-direction: column;
      z-index: 9999;
      border-radius: 0 6px 6px 0;
      box-shadow: 4px 0 20px rgba(0,0,0,0.4);
      text-align: left;
    }

    .hero-nav.active {
      display: flex;
      animation: slideIn 0.25s ease;
    }

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

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

    }

    .hero-nav ul.hero-menu {
      flex-direction: column;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
      align-items: flex-start !important;
    }

    .hero-nav ul.hero-menu > li {
      position: relative;
      width: 100%;
      text-align: left !important;
      padding-left: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .hero-nav ul.hero-menu > li:last-child {
      border-bottom: none;
    }

    .hero-nav ul.hero-menu > li > a {
      display: block;
      padding: 12px 16px;
      font-weight: 500;
      font-size: 15px;
      line-height: 1.4;
      color: #fff;
      justify-content: flex-start;
      transition: background 0.2s ease, color 0.2s ease;
      width: 100%;
    }

    .hero-nav ul.hero-menu > li > a:hover {
      background: rgba(255,255,255,0.08);
    }

    .hero-nav ul.hero-menu .sub-menu {
      display: none;
      flex-direction: column;
      background: #1b1b1b;
      border-left: 2px solid rgba(255,255,255,0.08);
      animation: fadeSlide 0.25s ease;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-6px); }

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

    }

    .hero-nav ul.hero-menu li.open > .sub-menu {
      display: flex;
    }

    .hero-nav ul.hero-menu .sub-menu li a {
      padding: 10px 28px;
      font-size: 14px;
      color: #ccc;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .hero-nav ul.hero-menu .sub-menu li a:hover {
      background: rgba(255,255,255,0.06);
      color: #fff;
    }

    .hero-nav ul.hero-menu > li .submenu-toggle {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 13px;
      color: #fff;
      transition: transform 0.2s ease;
    }

    .hero-nav ul.hero-menu > li .submenu-toggle::after {
      content: "▶";
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .hero-nav ul.hero-menu li.open > .submenu-toggle::after {
      content: "▼";
      transform: rotate(0deg);
    }

    .hero-nav ul.hero-menu .sub-menu .sub-menu {
      background: #222;
    }

    .hero-nav ul.hero-menu .sub-menu .sub-menu li a {
      padding-left: 40px;
    }

    .hero-nav ul.hero-menu li:not(.open) > .sub-menu {
      display: none !important;
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
    }

    .hero-nav ul.hero-menu li.open > .sub-menu {
      display: flex !important;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

  }

  .hero-header-wrapper-news .hero-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1100;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li {
    position: relative;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li > a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li > a.active::after,
  .hero-header-wrapper-news .hero-nav .hero-menu > li > a:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 120%;
    height: 3px;
    border-radius: 2px;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    transform: translateY(6px);
    min-width: 220px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 6px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2000;
  }

  .hero-header-wrapper-news .hero-nav .hero-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-header-wrapper-news .hero-nav .sub-menu a {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.35;
    padding: 10px 14px;
    text-decoration: none;
  }

  .hero-header-wrapper-news .hero-nav .sub-menu a:hover {
    background: rgba(255,255,255,0.1);
  }

  @media (max-width: 800px) {
    .hero-header-wrapper-news .hero-header-inner {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      padding: 8px 16px !important;
      min-height: 60px;
    }

    .hero-header-wrapper-news .hero-logo-new img {
      max-height: 50px;
    }

    .hero-header-wrapper-news .hero-nav {
      position: fixed;
      top: 60px;
      left: 0;
      width: 180px;
      background: #111;
      padding: 8px 0;
      display: none;
      flex-direction: column;
      z-index: 9999;
      border-radius: 0 6px 6px 0;
      box-shadow: 4px 0 20px rgba(0,0,0,0.4);
      text-align: left;
    }

    .hero-header-wrapper-news .hero-nav.active {
      display: flex;
      animation: slideIn 0.25s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu {
      flex-direction: column;
      width: 100%;
      margin: 0;
      padding: 0;
      list-style: none;
      align-items: flex-start !important;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li {
      position: relative;
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li > a {
      display: block;
      padding: 12px 16px;
      font-weight: 500;
      font-size: 15px;
      line-height: 1.4;
      color: #fff;
      text-align: left;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li > a:hover {
      background: rgba(255,255,255,0.08);
    }

    .hero-header-wrapper-news .hero-nav .hero-menu .sub-menu {
      display: none;
      flex-direction: column;
      background: #1b1b1b;
      border-left: 2px solid rgba(255,255,255,0.08);
      animation: fadeSlide 0.25s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu li.open > .sub-menu {
      display: flex;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-6px); }

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

    }

    .hero-header-wrapper-news .hero-nav .hero-menu .sub-menu li a {
      padding: 10px 28px;
      font-size: 14px;
      color: #ccc;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu .sub-menu li a:hover {
      background: rgba(255,255,255,0.06);
      color: #fff;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li .submenu-toggle {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 13px;
      color: #fff;
      transition: transform 0.2s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li .submenu-toggle::after {
      content: "▶";
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu li.open > .submenu-toggle::after {
      content: "▼";
      transform: rotate(0deg);
    }

  }

  .hero-nav ul,
  .hero-nav ul li,
  .hero-nav ul.hero-menu,
  .hero-nav ul.sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  @media (min-width: 801px) {
    .hero-nav ul.hero-menu > li {
      border: none !important;
      padding: 0 !important;
      background: none !important;
    }

    .hero-nav ul,
    .hero-nav ul li,
    .hero-nav ul.hero-menu,
    .hero-nav ul.sub-menu {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .hero-nav li.menu-item-tpl > .submenu-toggle {
      display: none !important;
    }

  }

  @media (max-width: 800px) {
    .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl > ul.sub-menu {
      display: none !important;
      flex-direction: column;
      background: #1b1b1b;
      border-left: 2px solid rgba(255,255,255,0.08);
      animation: fadeSlide 0.25s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl.open > ul.sub-menu {
      display: flex !important;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl .submenu-toggle::after {
      content: "▶";
      transition: transform 0.2s ease;
    }

    .hero-header-wrapper-news .hero-nav .hero-menu > li.menu-item-tpl.open > .submenu-toggle::after {
      content: "▼";
      transform: rotate(0deg);
    }

  }


  @media (min-width: 801px) {
    .submenu-toggle {
      display: none !important;
    }

  }


  @media (max-width: 800px) {
    .submenu-toggle {
      display: block !important;
    }

  }

  @media (min-width: 801px) {
    .burger-menu {
      display: none !important;
    }

  }

  @media (max-width: 800px) {
    .burger-menu {
      display: flex !important;
    }

  }

 

  .news__container {
    padding: 0;
  }

  .news__link-all:hover {
    opacity: 0.8;
  }


  .news-card--large {
    grid-column: span 2;
    position: relative;
  }

  .news-card--image {
    grid-column: span 1;
    background: #F8F8F8;
  }

  .news-card--text {
    grid-column: span 1;
    justify-content: space-between;
    padding: 24px;
  }

  .news-card__link {
    display: flex;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
    object-fit: cover;
    height: 100%;
  }

  .news-card__image {
    position: relative;
    height: 100%;
    overflow: hidden;
    min-height: 360px;
  }

  .news-card__image img,
  .news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.618;
  }

  .news-card__media img {
    height: 180px;
  }

  .news-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    flex: 1;
  }

  .news-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, rgba(2, 29, 73, 0.2), rgba(0, 0, 0, 0.4));
    color: #fff;
  }

  .news-card__title {
    font-weight: 500;
    font-size: 1.32rem;
    line-height: 1.3;
    margin: 0 0 16px;
    color: #000;
    flex: 1;
  }

  .news-card__title--white {
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.3; 
    font-weight: 500;
    flex: 0;
  }

  .news-card__title--white:hover {
    color: #fff;
  }

  .news-card__time {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.56;
    color: rgba(0, 0, 0, 0.64);
    letter-spacing: 4px;
    margin: 0;
  }

  .jnr .news-card--large .news-card__time {
    color: #fff;
  }

  .news-card__category {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 16px;
    color: #fff;
    width: fit-content;
  }

  .news-card__category:hover {
    text-decoration: underline;
  }


  .news-card__image .news-card__category,
  .news-card__media .news-card__category {
    position: absolute;
    top: 16px;
    left: 24px;
    z-index: 1;
  }

  .news-card--large .news-card__image,
  .news-card--image:nth-of-type(2) .news-card__media,
  .news-card--image:nth-of-type(3) .news-card__media {
    background-image: none !important;
    aspect-ratio: 16/10;
  }

  .news img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

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

  @media screen and (width > 576px) {
    .news__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .hero__content {
      padding-left: var(--hero-indent);
    }

    .hero__dots {
      left: var(--hero-indent);
    }
  }

  @media screen and (width > 768px) {
    
    .news-card__title--white {
      font-size: 1.78rem;
    }
  }

  @media screen and (width > 1280px) {
    .news__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .history-day__img { 
      max-width: initial;
    }
  
  }

  .structure-layout {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background-color: #ffffff;
  }

  .structure-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .structure-hero__container {
    max-width: 1760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .structure-hero__prefix {
    color: rgba(33, 35, 30, 1);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 4px;
  }

  .structure-hero__title {
    color: rgba(18, 65, 106, 1);
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    margin: 0;
  }

  .structure-cards {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .structure-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 520px);
    gap: 40px;
    justify-content: center;
    align-items: start;
  }

  .structure-card {
    width: 520px;
    height: 290px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 8px;
    color: #ffffff;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
  }

  .structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .structure-card__icon {
    flex-shrink: 0;
    width: 125px;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .structure-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 327px;
    gap: 12px;
  }

  .structure-card__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0;
  }

  .structure-card__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    flex-grow: 1;
  }

  .structure-card__link {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    position: relative;
  }


  .structure-card__link:focus,
  .structure-card__link:active {
    outline: none;
    box-shadow: none;
    color: #fff;
  }

  .structure-card__link:hover {
    opacity: 1;
    color: #ffffff;
  }

  .structure-card__link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: width 0.25s ease;
  }

  .structure-card__link:hover::after {
    width: 100%;
  }

  @media (max-width: 1600px) {
    .structure-card {
      width: 440px;
      height: 260px;
    }

    .structure-card__content {
      width: 100%;
    }

  }

  @media (max-width: 1280px) {
    .structure-card {
      width: 100%;
      height: auto;
      align-items: flex-start;
    }

    .structure-card__icon {
      width: 100px;
      height: 120px;
    }

  }

  @media (max-width: 768px) {
    .structure-card {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: auto;
    }

    .structure-card__icon {
      margin-bottom: 12px;
    }

  }

  .structure-card--blue      { background: #1D71B8; }

  .structure-card--purple    { background: #28245A; }

  .structure-card--teal      { background: #109395; }

  .structure-card--darkblue  { background: #005275; }

  .structure-card--lightteal { background: #2BB6B8; }

  .structure-card--cyan      { background: #09649B; }

  @media (max-width: 1600px) {
    .structure-layout {
      padding: 40px 80px 100px;
    }

    .structure-cards__grid {
      grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    }

  }

  @media (max-width: 992px) {
    .structure-cards__grid {
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 32px;
    }

  }

  @media (max-width: 768px) {
    .structure-layout {
      padding: 32px 24px 60px;
    }

    .structure-cards__grid {
      grid-template-columns: 1fr;
    }

    .structure-card {
      flex-direction: column;
      align-items: flex-start;
    }

    .structure-card__icon {
      margin: 0 0 12px;
    }

  }

.header-hero {
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 40px 0 40px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.header-hero__container {
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 1400px) {
  .header-hero__container {
    padding: 0 60px;
  }
}

@media (max-width: 1100px) {
  .header-hero__container {
    padding: 0 40px;
  }
}

@media (max-width: 800px) {
  .header-hero__container {
    padding: 0 16px;
  }
}

.header-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.header-hero__breadcrumbs {
  color: rgba(33, 35, 30, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
}

.header-hero__breadcrumbs a {
  color: inherit;
}

.header-hero__breadcrumbs a:hover {
  opacity: 0.7;
}

.header-hero__title {
  color: rgba(18, 65, 106, 1);
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0;
  text-align: left;
  margin: 0;
}

ul.GreenDots,
ol.GreenDots {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0 0 0 20px;
  width: 100%;
}

ul.GreenDots li,
ol.GreenDots li {
  display: flex;
  align-items: flex-start;
  color: #21211E;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  padding-left: 6px;
  padding-bottom: 1em;
}

ul.GreenDots li::before,
ol.GreenDots li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("../img/point.svg");
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 7px;
  
}

ul.GreenDots a,
ol.GreenDots a {
  color: #1D71B8;
  text-decoration: none;
}

@media (max-width: 768px) {
  ul.GreenDots li::before,
  ol.GreenDots li::before {
    width: 12px;
    height: 12px;
    transform: translateY(4px);
  }
  ul.GreenDots li,
  ol.GreenDots li {
    font-size: 16px;
    line-height: 24px;
  }
}

.annotation-box p:empty {
  display: none;
}

.hero-menu > li:hover > .sub-menu {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.mega-menu {
  position: fixed;
											
  left: 0;
  right: 0;
  top: 0;
  background: rgb(29, 113, 184);
  color: #fff;
  padding: 40px 160px 80px;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  z-index: 999;
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
  pointer-events: none;
}
													
.mega-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu.is-closing .mega-panel__content {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.admin-bar {
  --admin-bar-offset: 32px;
}

body:not(.admin-bar) {
  --admin-bar-offset: 0px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --admin-bar-offset: 46px;
  }
}

.hero-header-inner {
  position: relative;
  background: transparent;
  transition: background-color 0.4s ease;
  z-index: 1000;
}

.hero-header-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;			  
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease, background-color 0.4s ease;
}
		
.hero-header-inner.header--active::before {
  background: rgb(29, 113, 184);							  
  opacity: 1;
}

.hero-header-inner > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .hero-nav .hero-menu .sub-menu,
  .hero-nav .hero-menu > li:hover > .sub-menu,
  .hero-nav .hero-menu > li:focus-within > .sub-menu,
  .hero-nav .hero-menu .sub-menu > li:hover > .sub-menu,
  .hero-nav .hero-menu .sub-menu > li:focus-within > .sub-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }
}

.footer-flags-wrapper .footer-flag {
  display: inline-block;
  width: 41px;
  height: 31px;
  margin: 2px 4px;
  box-sizing: border-box;
}

.footer-flags-wrapper .footer-flag-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.footer-flags-main {
    margin-bottom: 14px; 
}

.page-side-banner {
  display: block;
  width: 100%;
  align-self: flex-start;
  margin-left: auto;
}

.page-side-banner__link {
  display: block;
  text-decoration: none;
}

.page-side-banner__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.page-side-banner__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border: 1px solid #D0D5DD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-side-banner__logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-side-banner__title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.page-side-banner__subtitle {
  font-size: 14px;
  color: #667085;
}

.math-formula {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

.math-formula--inline {
  white-space: normal;
}
.math-formula--block {
  display: block;
  margin: 16px 0;
  padding: 8px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.math-formula--block .katex-display {
  margin: 0;
}
.math-formula--block .katex {
  max-width: 100%;
}
.math-formula--block .katex-display > .katex {
  display: inline-block;
}
@media (max-width: 767px) {
  .math-formula--block {
  }
}
.katex .katex-mathml {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  user-select: none;
  transition: background 0.3s;
}

.lightbox .nav:hover {
  background: rgba(0,0,0,0.7);
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}																					

.hero-logo__img,
.site-logo--header .site-logo__image {
  margin-top: 8px;
}


.site-logo--header .site-logo__image {
  max-height: 72px;
  height: auto;
  width: auto;
}

.site-logo--header,
.site-logo--footer {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-logo--header {
  justify-content: center;
}

.site-logo--footer {
  justify-content: flex-start;
}

@media (max-width: 800px) {
  .footer-logo .site-logo--footer {
    justify-content: center;
  }
}

.site-logo__plate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.site-logo__plate-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.site-logo__core {
  position: relative;
  z-index: 2;
}

.site-logo__image {
  position: relative;
  z-index: 3;
}

.footer-logo .site-logo--footer {
  margin-right: 24px;
}
.site-logo--header .site-logo__image {
  transition: transform 0.2s ease;
  display: block;
}

.hero-lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-lang-switcher__item {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.hero-lang-switcher__item--active {
  opacity: 1;
  font-weight: 400;
}

.hero-lang-switcher__item,
.hero-lang-switcher__item:visited,
.hero-lang-switcher__item:hover,
.hero-lang-switcher__item:focus,
.hero-lang-switcher__item:active {
  color: #ffffff;
  text-decoration: none;
}

.hero__inner--left   { justify-content: flex-start; }
.hero__inner--center { justify-content: center; }
.hero__inner--right  { justify-content: flex-end; }




.hero__dots{
  pointer-events: auto;
}

.hero__arrow{
  pointer-events: auto;
  z-index: 1200; 
  display: none;
}

.hero__slide--linked,
.hero__slide--linked .hero__overlay--slide{
  cursor: pointer;
}

.hero__slide--linked::before{
  cursor: pointer;
}

.hero__content a{
  cursor: pointer;
}

