@charset "UTF-8";
.noty_layout_mixin, #noty_layout__centerRight, #noty_layout__centerLeft, #noty_layout__center, #noty_layout__bottomRight, #noty_layout__bottomCenter, #noty_layout__bottomLeft, #noty_layout__bottom, #noty_layout__topRight, #noty_layout__topCenter, #noty_layout__topLeft, #noty_layout__top {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  transform: translateZ(0) scale(1, 1);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__topLeft {
  top: 1.25rem;
  left: 1.25rem;
  width: 20.3125rem;
}

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 20.3125rem;
  transform: translate(calc(-50% - 0.03125rem)) translateZ(0) scale(1, 1);
}

#noty_layout__topRight {
  top: 1.25rem;
  right: 1.25rem;
  width: 20.3125rem;
}

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__bottomLeft {
  bottom: 1.25rem;
  left: 1.25rem;
  width: 20.3125rem;
}

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 20.3125rem;
  transform: translate(calc(-50% - 0.03125rem)) translateZ(0) scale(1, 1);
}

#noty_layout__bottomRight {
  bottom: 1.25rem;
  right: 1.25rem;
  width: 20.3125rem;
}

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 20.3125rem;
  transform: translate(calc(-50% - 0.03125rem), calc(-50% - 0.03125rem)) translateZ(0) scale(1, 1);
}

#noty_layout__centerLeft {
  top: 50%;
  left: 1.25rem;
  width: 20.3125rem;
  transform: translate(0, calc(-50% - 0.03125rem)) translateZ(0) scale(1, 1);
}

#noty_layout__centerRight {
  top: 50%;
  right: 1.25rem;
  width: 20.3125rem;
  transform: translate(0, calc(-50% - 0.03125rem)) translateZ(0) scale(1, 1);
}

.noty_progressbar {
  display: none;
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.1875rem;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

.noty_effects_open {
  opacity: 0;
  transform: translate(50%);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

.noty_effects_close {
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

.noty_fix_effects_height {
  animation: noty_anim_height 75ms ease-out;
}

.noty_close_with_click {
  cursor: pointer;
}

.noty_close_button {
  position: absolute;
  top: 0.125rem;
  right: 0.125rem;
  font-weight: bold;
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  line-height: 1.25rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.125rem;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: 0.3;
  left: 0;
  top: 0;
}

.noty_modal.noty_modal_open {
  opacity: 0;
  animation: noty_modal_in 0.3s ease-out;
}

.noty_modal.noty_modal_close {
  animation: noty_modal_out 0.3s ease-out;
  animation-fill-mode: forwards;
}

@keyframes noty_modal_in {
  100% {
    opacity: 0.3;
  }
}
@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}
@keyframes noty_anim_in {
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes noty_anim_out {
  100% {
    transform: translate(50%);
    opacity: 0;
  }
}
@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}
.noty_theme__relax.noty_bar {
  margin: 0.25rem 0;
  overflow: hidden;
  border-radius: 0.125rem;
  position: relative;
}
.noty_theme__relax.noty_bar .noty_body {
  padding: 0.625rem;
}
.noty_theme__relax.noty_bar .noty_buttons {
  border-top: 0.0625rem solid #e7e7e7;
  padding: 0.3125rem 0.625rem;
}

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 0.0625rem solid #dedede;
  color: #444;
}

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 0.0625rem solid #FFC237;
  color: #826200;
}
.noty_theme__relax.noty_type__warning .noty_buttons {
  border-color: #dfaa30;
}

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 0.0625rem solid #e25353;
  color: #FFF;
}
.noty_theme__relax.noty_type__error .noty_buttons {
  border-color: darkred;
}

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 0.0625rem solid #3badd6;
  color: #FFF;
}
.noty_theme__relax.noty_type__info .noty_buttons,
.noty_theme__relax.noty_type__information .noty_buttons {
  border-color: #0B90C4;
}

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 0.0625rem solid #7cdd77;
  color: darkgreen;
}
.noty_theme__relax.noty_type__success .noty_buttons {
  border-color: #50C24E;
}

/**
 * Swiper 12.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 28, 2026
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 75rem;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 75rem;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 0.0625rem;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 0.0625rem;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 0.25rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 0.25rem solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 2.625rem;
  left: 50%;
  margin-left: -1.3125rem;
  margin-top: -1.3125rem;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 2.625rem;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 0.0625rem;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 0.0625rem;
  }
}

:root {
  --swiper-navigation-size:2.75rem;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0 - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0 - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0 - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(3.125rem);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 0.0625rem;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 0.0625rem solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --f-button-width: 2.5rem;
  --f-button-height: 2.5rem;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 0.0625rem;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --f-button-svg-width: 1.25rem;
  --f-button-svg-height: 1.25rem;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}
.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

[data-panzoom-action=toggleFS] g:first-child {
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 3.125rem;
  --f-spinner-height: 3.125rem;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 0.25rem;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  translate: -50% -50%;
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  border-radius: var(--f-spinner-border-radius);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    rotate: 360deg;
  }
}
.f-panzoom, .f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  display: block;
  content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom.in-fullscreen, .f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  transition: none;
  user-select: none;
}

.f-panzoom__wrapper > .f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.f-panzoom__viewport > .f-panzoom__content {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  user-select: none;
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}
.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, 0.2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 0.0625rem;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
}

.is-loading > .f-html {
  opacity: 0;
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

.f-caption {
  align-self: center;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  max-width: 100%;
  max-height: calc(80vh - 6.25rem);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 0.0625rem;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar .f-button:focus-visible {
  position: relative;
  z-index: 1;
}

.f-carousel__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
}

.f-carousel__toolbar__column.is-left {
  display: flex;
  justify-self: flex-start;
  justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  display: flex;
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
  flex-flow: nowrap;
}

.f-carousel__toolbar__column {
  pointer-events: none;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-counter {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: default;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
}

.f-counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 0.5rem;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 0.5rem;
  --f-thumbs-padding-y: 0.5rem;
  --f-thumbs-bg: transparent;
  --f-thumbs-transition: max-height .3s ease, max-width .3s ease, padding .3s ease;
  --f-thumbs-z-index: 1;
  --f-thumbs-viewport-padding-x: 0;
  --f-thumbs-viewport-padding-y: 0;
  --f-thumb-width: 5.875rem;
  --f-thumb-height: 4.75rem;
  --f-thumb-clip-width: 2.875rem;
  --f-thumb-extra-gap: 1rem;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 0.25rem;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 0.05rem #222, inset 0 0 0 0.14063rem #fff;
  --f-thumb-selected-shadow: inset 0 0 0 0.05rem #222, inset 0 0 0 0.14063rem #fff;
  --f-thumb-border-transition: all .1s ease;
  --f-thumb-img-width: 100%;
  --f-thumb-img-height: 100%;
  --f-thumb-img-fit: cover;
  --f-thumb-img-position: 50% 20%;
}

.f-thumbs {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: hidden;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: var(--f-thumbs-transition);
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2);
}

.f-thumbs.is-horizontal.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2);
}

.f-thumbs.is-vertical.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
}

.f-thumbs.is-scrollable.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs img {
  display: block;
  width: var(--f-thumb-img-width);
  height: var(--f-thumb-img-height);
  object-fit: var(--f-thumb-img-fit);
  object-position: var(--f-thumb-img-position);
  pointer-events: none;
  border-radius: inherit;
  color: transparent;
}

.f-thumbs img[data-lazy-src] {
  visibility: hidden;
}

.f-thumbs img.has-lazyerror {
  display: none;
}

.f-thumbs__viewport {
  box-sizing: border-box;
  height: 100%;
  padding: var(--f-thumbs-viewport-padding-y) var(--f-thumbs-viewport-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  display: block;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: var(--f-thumb-border-transition);
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2 + var(--f-thumbs-padding-x));
  margin-inline: calc((var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-thumbs.is-scrollable .f-thumbs__viewport {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--f-thumb-width), 1fr));
  grid-auto-rows: var(--f-thumb-height);
  gap: var(--f-thumbs-gap);
  overflow: auto;
  overscroll-behavior: contain;
  user-select: none;
}

.f-thumbs.is-scrollable .f-thumbs__viewport .f-thumbs__slide {
  grid-area: auto;
  display: block;
  position: relative;
  max-width: 100%;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  cursor: pointer;
  outline: none;
}

:root {
  --f-progressbar-height: 0.1875rem;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear;
}

.f-progressbar:empty {
  display: block;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
[data-fullscreen-action=toggle] svg g:first-child {
  display: flex;
}

[data-fullscreen-action=toggle] svg g:last-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px) + var(--f-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050;
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  touch-action: none;
  overscroll-behavior: contain;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}
.fancybox__dialog *:empty {
  display: block;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 0.5rem;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 1rem;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0 0.625rem;
  --f-counter-gap: 0.25rem;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 1.0625rem;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 1rem 0.5rem;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 3.125rem;
  --f-spinner-height: 3.125rem;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 0.25rem;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 2.875rem;
  --f-button-height: 2.875rem;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 0.0625rem;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 1.5rem;
  --f-button-svg-height: 1.5rem;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, .01)), drop-shadow(0.0625rem 0.125rem 0.0625rem rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 2rem;
  --f-arrow-width: 3.125rem;
  --f-arrow-height: 3.125rem;
  --f-arrow-svg-width: 1.5rem;
  --f-arrow-svg-height: 1.5rem;
  --f-arrow-svg-stroke-width: 2.5;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-close-button-width: 1.875rem;
  --f-close-button-height: 1.875rem;
  --f-close-button-svg-width: 1.5rem;
  --f-close-button-svg-height: 1.5rem;
  --f-close-button-svg-stroke-width: 1.75;
  --f-close-border-radius: 0.25rem;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 0.5rem;
  --f-thumbs-padding-y: 0.5rem;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 5.875rem;
  --f-thumb-height: 4.75rem;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 0.125rem rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 0.125rem #fff;
  --f-thumb-selected-transform: none;
  --f-scrollbar-width: 0.4375rem;
  --f-scrollbar-track-bg: #444;
  --f-scrollbar-track-border-radius: 0.625rem;
  --f-scrollbar-track-shadow: inset 0 0 0.375rem rgba(0, 0, 0, .2);
  --f-scrollbar-thumb-bg: #ddd;
  --f-scrollbar-thumb-border-radius: 0.625rem;
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 0.21875rem;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 0.1125rem #fff, 0 0 0 0.14063rem #888;
  --f-thumb-selected-shadow: 0 0 0 0.1125rem #fff, 0 0 0 0.14063rem #000;
  --f-scrollbar-track-bg: #ddd;
  --f-scrollbar-thumb-bg: #444;
}

.fancybox__container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fancybox__container:focus {
  outline: none;
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container .fancybox__column > *:not(.fancybox__viewport), .fancybox__container .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container.is-revealing .fancybox__column > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container.is-hiding .fancybox__column > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-hiding .fancybox__carousel .fancybox__slide:not(.is-selected) {
  opacity: 0;
}

.fancybox__container.is-hiding {
  pointer-events: none;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
  filter: var(--fancybox-backdrop-filter);
}

.fancybox__carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -1.875rem;
  z-index: 1;
}

.fancybox__viewport {
  display: grid;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
  display: block;
  content: "";
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 0.5rem;
}

.fancybox__slide.has-iframe {
  overflow: hidden;
  padding: 0.5rem 0;
}

.fancybox__slide.has-close-btn {
  padding-top: 2.125rem;
}

.fancybox__slide.has-controls:before {
  margin: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel, .fancybox__container.is-closing .fancybox__viewport, .fancybox__container.is-closing .fancybox__slide.is-selected {
  overflow: visible;
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  --f-button-svg-stroke-width: var(--f-close-button-svg-stroke-width);
  position: absolute;
  top: calc((var(--f-button-height) + 0.125rem) * -1);
  right: 0;
  z-index: 10;
}

.is-loading .f-button.is-close-button {
  visibility: hidden;
}

.fancybox__thumbs {
  flex: 0 1 100%;
}

.fancybox__thumbs.is-scrollable {
  --f-thumbs-cols: 1;
  --f-thumbs-gap: 0.5rem;
  --f-thumbs-transition: none;
  --f-thumbs-padding-x: 0.25rem;
  --f-thumbs-padding-y: 0.5rem;
  --f-thumbs-viewport-padding-x: 0.25rem;
  --f-thumbs-viewport-padding-y: 0;
  max-width: calc(var(--f-thumb-width) * var(--f-thumbs-cols) + var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-viewport-padding-x) * 2);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar {
  width: var(--f-scrollbar-width);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-track {
  background: var(--f-scrollbar-track-bg);
  border-radius: var(--f-scrollbar-track-border-radius);
  box-shadow: var(--f-scrollbar-track-shadow);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-thumb {
  background: var(--f-scrollbar-thumb-bg);
  border-radius: var(--f-scrollbar-thumb-border-radius);
}

.fancybox__thumbs.is-scrollable.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
  max-height: unset;
  --f-thumbs-padding-y: unset;
}

.fancybox__thumbs.is-scrollable .f-thumbs__viewport {
  overflow-x: hidden !important;
  grid-template-columns: repeat(auto-fill, calc((100% - var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1)) / var(--f-thumbs-cols))) !important;
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}
.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, 0.2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}
:root {
  --f-button-width: 2.5rem;
  --f-button-height: 2.5rem;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 0.0625rem;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --f-button-svg-width: 1.25rem;
  --f-button-svg-height: 1.25rem;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}
.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

[data-panzoom-action=toggleFS] g:first-child {
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex;
}

[data-fullscreen-action=toggle] svg g:first-child {
  display: flex;
}

[data-fullscreen-action=toggle] svg g:last-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 3.125rem;
  --f-spinner-height: 3.125rem;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 0.25rem;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  translate: -50% -50%;
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  border-radius: var(--f-spinner-border-radius);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    rotate: 360deg;
  }
}
@property --f-carousel-gap {
  syntax: "<length>";
  inherits: true;
  initial-value: 0;
}
.f-carousel {
  --f-carousel-gap: 0;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-padding: 0;
}

.f-carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.f-carousel {
  display: flex;
  flex-direction: column;
  position: relative;
}

.f-carousel.is-ltr {
  direction: ltr;
}

.f-carousel.is-rtl {
  direction: rtl;
}

.f-carousel__viewport {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.has-adaptive-height > .f-carousel__viewport {
  flex: 0 0 auto;
}

.f-carousel__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.f-carousel__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-carousel__viewport [data-selectable], .f-carousel__viewport [contenteditable] {
  cursor: auto;
}

.f-carousel__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.is-centered .f-carousel__slide {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.is-centered .f-carousel__slide:before, .is-centered .f-carousel__slide:after {
  display: block;
  content: "";
}

.is-centered .f-carousel__slide:before {
  margin-bottom: auto;
}

.is-centered .f-carousel__slide:after {
  margin-top: auto;
}

.f-carousel__slide.has-html {
  overflow: auto;
}

:root {
  --f-thumbs-gap: 0.5rem;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 0.5rem;
  --f-thumbs-padding-y: 0.5rem;
  --f-thumbs-bg: transparent;
  --f-thumbs-transition: max-height .3s ease, max-width .3s ease, padding .3s ease;
  --f-thumbs-z-index: 1;
  --f-thumbs-viewport-padding-x: 0;
  --f-thumbs-viewport-padding-y: 0;
  --f-thumb-width: 5.875rem;
  --f-thumb-height: 4.75rem;
  --f-thumb-clip-width: 2.875rem;
  --f-thumb-extra-gap: 1rem;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 0.25rem;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 0.05rem #222, inset 0 0 0 0.14063rem #fff;
  --f-thumb-selected-shadow: inset 0 0 0 0.05rem #222, inset 0 0 0 0.14063rem #fff;
  --f-thumb-border-transition: all .1s ease;
  --f-thumb-img-width: 100%;
  --f-thumb-img-height: 100%;
  --f-thumb-img-fit: cover;
  --f-thumb-img-position: 50% 20%;
}

.f-thumbs {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: hidden;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: var(--f-thumbs-transition);
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2);
}

.f-thumbs.is-horizontal.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2);
}

.f-thumbs.is-vertical.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
}

.f-thumbs.is-scrollable.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs img {
  display: block;
  width: var(--f-thumb-img-width);
  height: var(--f-thumb-img-height);
  object-fit: var(--f-thumb-img-fit);
  object-position: var(--f-thumb-img-position);
  pointer-events: none;
  border-radius: inherit;
  color: transparent;
}

.f-thumbs img[data-lazy-src] {
  visibility: hidden;
}

.f-thumbs img.has-lazyerror {
  display: none;
}

.f-thumbs__viewport {
  box-sizing: border-box;
  height: 100%;
  padding: var(--f-thumbs-viewport-padding-y) var(--f-thumbs-viewport-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  display: block;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: var(--f-thumb-border-transition);
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2 + var(--f-thumbs-padding-x));
  margin-inline: calc((var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-thumbs.is-scrollable .f-thumbs__viewport {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--f-thumb-width), 1fr));
  grid-auto-rows: var(--f-thumb-height);
  gap: var(--f-thumbs-gap);
  overflow: auto;
  overscroll-behavior: contain;
  user-select: none;
}

.f-thumbs.is-scrollable .f-thumbs__viewport .f-thumbs__slide {
  grid-area: auto;
  display: block;
  position: relative;
  max-width: 100%;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  cursor: pointer;
  outline: none;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.mhg {
  --iconSize: 1.5rem;
  --blue-bg: #e8ecf2;
  --dark-blue: #013566;
  --light-blue: #6e8bac;
  --blue-black: #020c21;
  --white: #ffffff;
  --green-bg: #dbece7;
  --bright-green: #83cc2a;
  --red: #f73a04;
  --grey: #a6aab1;
  --black: #2b2320;
  --grey-text: #868686;
  --grey-lines: #d0d0d0;
  --blue-hover: #dee5ee;
  --grey-bg: #f3f3f3;
  --page-bg: #f2f5f8;
  --green: #118080;
  --gold: #b19774;
  --error-color: #ff0000;
  --white-color: #ffffff;
  --black-color: #000000;
  --main-color: var(--black);
  --accent-color: var(--light-blue);
  --overlay-bg-color: rgba(0, 0, 0, 0.8);
  --shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
  --border-width-xl: 0.375rem;
  --border-width-l: 0.25rem;
  --border-width-m: 0.1875rem;
  --border-width-s: 0.0625rem;
  --border-radius-xxxl: 2rem;
  --border-radius-xxl: 1.5rem;
  --border-radius-l: 0.875rem;
  --border-radius-m: 0.625rem;
  --border-radius: 0.5rem;
  --border-radius-xs: 0.375rem;
  --border-radius-xxs: 0.3125rem;
  --border-radius-xxxs: 0.1875rem;
  --container-width: 107.5rem;
  --container-padding-x: 1rem;
  --font-family: "Formular", sans-serif;
  --second-family: sans-serif;
  --third-family: sans-serif;
  --font-size: 1rem;
  --transition-duration: 0.3s;
  --transition-duration-long: 0.5s;
  --z-index-header: 100;
  --z-index-burger-menu: 40;
  --z-index-pseudo-link: 20;
  --z-index-preloader: 9999;
  --z-index-cookie: 990;
  --z-index-popup: 150;
  --z-index-html-overlay: 120;
  --z-index-bnrs: 110;
  --z-index-slide-panel: 130;
  --z-index-sidebar-menu: 100;
  --section-padding-y: clamp(0.75rem, 0.4267241379rem + 1.4367816092vw, 2rem);
  --section-padding-x: clamp(0.75rem, 0.4267241379rem + 1.4367816092vw, 2rem);
  --section-padding: var(--section-padding-y) var(--section-padding-x);
  --section-margin-y: clamp(2rem, 1.6120689655rem + 1.724137931vw, 3.5rem);
  --viewport-padding-x: clamp(1.5rem, -20.4230769231rem + 24.358974359vw, 6.25rem);
  --viewport-padding-y: 1.7410228509vh;
  --wrapper-column-gap: 0;
  --max-width-sidebar-page: 14.7916666667vw;
  --max-width-sidebar-outer-page: 24.8818897638%;
  --max-width-sidebar-menu: 4.375rem;
  --min-height-header-pc: clamp(3.75rem, -7.2115384615rem + 12.1794871795vw, 6.125rem);
  --min-height-header-mob: 3.5rem;
  --scrollbar-width: 0.25rem;
  --scrollbar-height: 0.25rem;
  --scrollbar-radius: 1.875rem;
  --scrollbar-track-color: var(--background-color-3);
  --scrollbar-thumb-color: var(--accent-color);
  --scrollbar-bg-hover: color-mix(in srgb, var(--scrollbar-thumb-color) 80%, black 20%);
}
@media (max-width: 89.99875rem) {
  .mhg {
    --viewport-padding-x: 0.75rem;
  }
}
@media (max-width: 89.99875rem) {
  .mhg {
    --iconSize: 1.25rem;
  }
}
@media (max-width: 79.99875rem) {
  .mhg {
    --container-padding-x: 0.75rem;
    --viewport-padding-x: var(--container-padding-x);
    --section-padding-y: 1.5rem;
    --section-padding-x: 1rem;
  }
}

@font-face {
  font-family: "Formular";
  src: url("./fonts/Formular-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Formular";
  src: url("./fonts/Formular-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Formular";
  src: url("./fonts/Formular-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  min-width: 22.5rem;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: 1.1;
  color: var(--main-color);
  accent-color: var(--accent-color);
  text-rendering: auto;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  appearance: none;
}

textarea {
  resize: vertical;
}

a,
button,
input,
textarea {
  transition: var(--transition-duration);
}

label {
  display: inline-block;
  cursor: pointer;
}

button,
select,
option {
  cursor: pointer;
}

a {
  color: inherit;
}
a:where(:link, :visited, :hover) {
  text-decoration: none;
  text-underline-offset: 0.25em;
}
a[href^=tel] {
  white-space: nowrap;
  text-decoration: none;
}

ul {
  list-style: none;
}

img,
picture,
video {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font: inherit;
  text-rendering: optimizelegibility;
}

svg {
  display: inline-block;
  vertical-align: top;
  transition: inherit;
  /* 	path[stroke] {
  	stroke: currentColor;
  }

  path[fill] {
  	fill: currentColor;
  } */
  /* если нет класса .no-inherit-color-svg у тега svg и/или класса .no-inherit-color-svg-wrap у его родителя  */
}
svg * {
  transition: inherit;
}

:is(span, strong, b, a):where(:not(.html-content :is(span, strong, b, a))) {
  display: inline-block;
}

strong:where(:not(.html-content strong)) {
  font-weight: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  width: 100%;
  border-color: currentColor;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: start;
  vertical-align: top;
}

/** Удаляем все анимации и переходы для людей, которые предпочитают их не использовать */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@media (min-width: 79.99875rem) {
  [class*=__container--right] {
    padding-inline-end: 0;
  }
}
@media (width >= 109.5rem) {
  [class*=__container--right] {
    max-width: none;
    padding-inline-start: calc((100% - 109.5rem) / 2 + 1rem);
  }
}

@media (min-width: 79.99875rem) {
  [class*=__container--left] {
    padding-inline-start: 0;
  }
}
@media (width >= 109.5rem) {
  [class*=__container--left] {
    max-width: none;
    padding-inline-end: calc((100% - 109.5rem) / 2 + 1rem);
  }
}

@media (min-width: 79.99875rem) {
  [class*=__container--right-50] {
    max-width: 50%;
    margin: 0 0 0 auto;
  }
}

@media (min-width: 79.99875rem) {
  [class*=__container--left-50] {
    max-width: 50%;
    margin: 0 auto 0 0;
  }
}

@media (min-width: 79.99875rem) {
  [class*=__container--left-half] {
    max-width: none;
    margin: 0;
    padding-inline: calc((100% - 109.5rem) / 2 + 1rem) calc((100% - 109.5rem) / 2 + 109.5rem / 2);
  }
}
@media (min-width: 79.99875rem) and (width <= 109.5rem) {
  [class*=__container--left-half] {
    padding-inline-start: 1rem;
  }
}

@media (min-width: 79.99875rem) {
  [class*=__container--right-half] {
    max-width: none;
    margin: 0;
    padding-inline: calc((100% - 109.5rem) / 2 + 109.5rem / 2) calc((100% - 109.5rem) / 2 + 1rem);
  }
}
@media (min-width: 79.99875rem) and (width <= 109.5rem) {
  [class*=__container--right-half] {
    padding-inline-end: 1rem;
  }
}

html.is-lock body, html.lock body, html[class*=has-open-panel-] body {
  overflow: hidden !important;
  touch-action: none !important;
}
html[class*=has-open-panel-] body::after {
  content: "";
  position: fixed;
  z-index: var(--z-index-html-overlay);
  inset: 0;
  background-color: var(--overlay-bg-color);
  opacity: 1;
  transition: opacity 0.8s ease 0s;
  pointer-events: auto;
}
html.has-sidebar-hidden {
  --max-width-sidebar-page: 6.875vw;
}
@media (min-width: 120.06125rem) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  background-color: var(--page-bg);
}
@media (min-width: 120rem) {
  body {
    font-size: 1rem;
  }
}
@media (min-width: 80rem) and (max-width: 120rem) {
  body {
    font-size: clamp( 0.875rem , 0.625rem  +  0.3125vw , 1rem );
  }
}
@media (max-width: 80rem) {
  body {
    font-size: 0.875rem;
  }
}
@media (min-width: 120.06125rem) {
  body {
    font-size: inherit;
  }
}
.lock body, .lock-page body body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.loaded body {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  transition: color var(--transition-duration);
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a,
.h1 > a,
.h2 > a,
.h3 > a,
.h4 > a,
.h5 > a,
.h6 > a {
  width: 100%;
  transition: inherit;
}

h2,
.h2 {
  font-size: clamp(1.125rem, 0.5480769231rem + 0.641025641vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

h5,
.h5 {
  font-size: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) and (any-pointer: fine) {
  a:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--accent-color);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.0625rem dashed var(--accent-color);
  outline-offset: 0;
  transition-duration: 0s !important;
}

:has(.swiper) {
  min-width: 0;
}

.custom-scroll {
  padding-inline-end: var(--scrollbar-width);
}
.custom-scroll::-webkit-scrollbar {
  overflow: hidden;
  width: var(--scrollbar-width);
  height: var(--scrollbar-height);
}
.custom-scroll::-webkit-scrollbar-track {
  width: 100%;
  background-color: var(--scrollbar-track-color);
  border-radius: var(--scrollbar-radius);
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-color);
  border-radius: var(--scrollbar-radius);
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-bg-hover);
}
.custom-scroll::-webkit-scrollbar-corner {
  background-color: transparent;
}
@supports (-moz-appearance: none) {
  .custom-scroll {
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-track-color);
    scrollbar-width: thin;
  }
}

.no-scrollbar {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.base-card {
  padding: clamp(1.25rem, 0.0961538462rem + 1.2820512821vw, 1.5rem) clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
  background-color: var(--background-color);
  border-radius: var(--border-radius-xxl);
  position: relative;
}
.base-card--align-center {
  text-align: center;
}

.container,
[class*=__container] {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--viewport-padding-x);
}

._ibg-img,
.ibg {
  position: relative;
  padding-bottom: 56.25%;
}
._ibg-img img,
._ibg-img > *,
.ibg img,
.ibg > * {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._ibg-img--contain img,
._ibg-img--contain > *,
.ibg--contain img,
.ibg--contain > * {
  object-fit: contain;
}
._ibg-img--unset-fit img,
._ibg-img--unset-fit > *,
.ibg--unset-fit img,
.ibg--unset-fit > * {
  object-fit: unset;
}
._ibg-img--contain-top img,
._ibg-img--contain-top > *,
.ibg--contain-top img,
.ibg--contain-top > * {
  object-fit: contain;
  object-position: top center;
}
._ibg-img--contain-right img,
._ibg-img--contain-right > *,
.ibg--contain-right img,
.ibg--contain-right > * {
  object-fit: contain;
  object-position: right center;
}
._ibg-img--contain-bottom img,
._ibg-img--contain-bottom > *,
.ibg--contain-bottom img,
.ibg--contain-bottom > * {
  object-fit: contain;
  object-position: bottom center;
}
._ibg-img--contain-left img,
._ibg-img--contain-left > *,
.ibg--contain-left img,
.ibg--contain-left > * {
  object-fit: contain;
  object-position: left center;
}
._ibg-img--top img,
._ibg-img--top > *,
.ibg--top img,
.ibg--top > * {
  object-fit: cover;
  object-position: top center;
}
._ibg-img--right img,
._ibg-img--right > *,
.ibg--right img,
.ibg--right > * {
  object-fit: cover;
  object-position: right center;
}
._ibg-img--bottom img,
._ibg-img--bottom > *,
.ibg--bottom img,
.ibg--bottom > * {
  object-fit: cover;
  object-position: bottom center;
}
._ibg-img--left img,
._ibg-img--left > *,
.ibg--left img,
.ibg--left > * {
  object-fit: cover;
  object-position: left center;
}

.bg {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
  z-index: 1;
  background-color: var(--white-color);
  pointer-events: none;
}
.bg > * {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg--contain > * {
  object-fit: contain;
}
.bg--contain-top > * {
  object-fit: contain;
  object-position: top center;
}
.bg--contain-right > * {
  object-fit: contain;
  object-position: right center;
}
.bg--contain-bottom > * {
  object-fit: contain;
  object-position: bottom center;
}
.bg--contain-left > * {
  object-fit: contain;
  object-position: left center;
}
.bg--unset-fit > * {
  object-fit: unset;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 0.0625rem !important;
  height: 0.0625rem !important;
  margin: -0.0625rem !important;
  padding: 0 !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(100%) !important;
}

@media (max-width: 79.99875rem) {
  .hidden-adaptive:not(._dynamic_adapt_) {
    display: none !important;
  }
}

@media (min-width: 79.99875rem) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .hidden-tablet:not(._dynamic_adapt_) {
    display: none !important;
  }
}

@media (max-width: 47.99875rem) {
  .hidden-mobile:not(._dynamic_adapt_) {
    display: none !important;
  }
}

@media (min-width: 79.99875rem) {
  .visible-adaptive {
    display: none !important;
  }
}

@media (max-width: 79.99875rem) {
  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 79.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}
@media (max-width: 47.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (min-width: 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.hidden,
[hidden] {
  display: none !important;
}

.is-blurred,
.blurred {
  filter: blur(0.08125rem);
  pointer-events: none;
  user-select: none;
}

.is-disabled,
.disabled {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.is-inactive,
.inactive {
  pointer-events: none;
  user-select: none;
}

:where(.has-hitbox) {
  position: relative;
}
.has-hitbox::before {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  content: "";
}

.lg-download {
  display: none;
}

.just-gallery__link {
  display: block;
}

.video {
  position: relative;
  cursor: pointer;
}
.video.active .video-ico {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.video .video-ico {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  pointer-events: none;
}
@media (any-hover: hover) {
  .video:hover .video-ico > .icon,
  .video:hover .video-ico > img,
  .video:hover .video-ico > svg {
    fill: var(--accent-color);
  }
}
@media (min-width: 109.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    width: 2.75rem;
  }
}
@media (min-width: 22.5rem) and (max-width: 109.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    width: clamp( 1.75rem , 1.4913793103rem  +  1.1494252874vw , 2.75rem );
  }
}
@media (max-width: 22.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    width: 1.75rem;
  }
}
@media (min-width: 109.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    height: 2.125rem;
  }
}
@media (min-width: 22.5rem) and (max-width: 109.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    height: clamp( 1.8125rem , 1.7316810345rem  +  0.3591954023vw , 2.125rem );
  }
}
@media (max-width: 22.5rem) {
  .video-ico > .icon,
  .video-ico > img,
  .video-ico > svg {
    height: 1.8125rem;
  }
}

[class*=__pseudo-link] {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-pseudo-link);
}

.df {
  display: flex;
  flex-wrap: wrap;
}
.df.swiper-wrapper {
  flex-wrap: nowrap;
}
@media (min-width: 79.99875rem) {
  .df > * {
    flex: 0 0 calc(100% / var(--cols-pc, 3));
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .df > * {
    flex: 0 0 calc(100% / var(--cols-tab, var(--cols-pc, 2)));
  }
}
@media (max-width: 47.99875rem) {
  .df > * {
    flex: 0 0 calc(100% / var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))));
  }
}
@media (min-width: 79.99875rem) {
  .df {
    row-gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem);
    margin: 0 calc(var(--space-items-pc, 24) / -2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .df {
    row-gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem);
    margin: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / -2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .df {
    row-gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem);
    margin: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / -2 * 0.0625rem);
  }
}
@media (min-width: 79.99875rem) {
  .df > * {
    padding: 0 calc(var(--space-items-pc, 24) / 2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .df > * {
    padding: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / 2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .df > * {
    padding: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / 2 * 0.0625rem);
  }
}

.dg {
  display: grid;
}
@media (min-width: 79.99875rem) {
  .dg {
    grid-template-columns: repeat(var(--cols-pc, 3), 1fr);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .dg {
    grid-template-columns: repeat(var(--cols-tab, var(--cols-pc, 2)), 1fr);
  }
}
@media (max-width: 47.99875rem) {
  .dg {
    grid-template-columns: repeat(var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))), 1fr);
  }
}
@media (min-width: 79.99875rem) {
  .dg {
    gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem) calc(var(--space-items-pc, 24) * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .dg {
    gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem) calc(var(--space-items-tab, var(--space-items-pc, 16)) * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .dg {
    gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem) calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) * 0.0625rem);
  }
}
.dg.swiper-wrapper {
  gap: 0;
}

.grow-items > * {
  flex-grow: 1 !important;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .default-link:hover, a:hover:not([class], :empty), .underline-link:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .default-link:active, a:active:not([class], :empty), .underline-link:active {
    color: var(--accent-color);
  }
}

.underline-link {
  color: var(--accent-color);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .underline-link:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  .underline-link:active {
    text-decoration: underline;
  }
}

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

.overlay::before, .overlay-40::before, .overlay-20::before {
  content: "";
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
}
.overlay-20::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.overlay-40::before {
  background-color: rgba(0, 0, 0, 0.4);
}

html[dir=rtl].mhg .tv_line__btn {
  inset-inline-start: calc(50% - 2.5rem);
  transform: translateX(-50%) rotate(-90deg);
}
@media (max-width: 47.99875rem) {
  html[dir=rtl].mhg .tv_line__btn {
    transform: translateX(0%) rotate(-90deg);
    inset-inline: auto var(--container-padding-x);
  }
}
html[dir=rtl].mhg .tv_line.active .tv_line__btn {
  transform: translateX(-50%) rotate(90deg);
}
html[dir=rtl].mhg .section__button--top .icon {
  transform: scaleX(-1);
}
html[dir=rtl].mhg .exchange-rates::before, html[dir=rtl].mhg .exchange-rates::after {
  transform: scaleX(-1);
}
html[dir=rtl].mhg .js-marquee {
  float: inline-start !important;
}

@media (min-width: 47.99875rem) {
  .mhg .nm_nav {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .nm_nav {
    position: fixed;
    z-index: 100;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #f2f5f8;
    border-top: 0.0625rem solid #dedede;
    box-shadow: 0 0.4375rem 2.1875rem 0 rgba(0, 0, 0, 0.09);
  }
  .mhg .nm_nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0.375rem 0;
  }
  .mhg .nm_nav__item .nm_nav__text {
    transition: var(--transition-duration);
  }
  .mhg .burger-btn--1,
  .mhg .burger-btn--2,
  .mhg .burger-btn--3 {
    transition: var(--transition-duration);
    transform-origin: center;
  }
  .mhg .nm_nav__item.active .nm_burger .burger-btn--1 {
    transform: translate(-0.25rem, 0.3125rem) rotate(46deg);
  }
  .mhg .nm_nav__item.active .nm_burger .burger-btn--2 {
    opacity: 0;
    transform: translateX(1.25rem);
  }
  .mhg .nm_nav__item.active .nm_burger .burger-btn--3 {
    transform: translate(-0.25rem, -0.25rem) rotate(-45deg);
  }
  .mhg .nm_nav__icon {
    display: block;
    width: 1.375rem;
    height: 1.375rem;
    margin-bottom: 0.375rem;
  }
  .mhg .nm_nav__icon svg {
    width: 100%;
    height: 100%;
  }
  .mhg .nm_nav__text {
    font-size: 0.75rem;
    line-height: 120%;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .nm_nav {
    padding-bottom: calc(env(safe-area-inset-bottom) - 0.625rem);
  }
}

.mhg {
  --radio-size: 1.25rem;
  --gap-sm: 0.5rem;
  --gap-md: 1rem;
  --gap-lg: 1.5rem;
  --gap-xl: 2rem;
}
.mhg .btn-dark, .mhg .btn-white {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-duration);
}
.mhg .radio-custom-label::after, .mhg .radio-custom-label::before {
  content: "";
  display: inline-block;
  width: var(--radio-size);
  height: var(--radio-size);
  border-radius: 50%;
}
.mhg .radio-custom {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  display: inline-block;
  opacity: 0;
}
.mhg .radio-custom-label {
  position: relative;
  top: 0.125rem;
  display: inline-block;
  cursor: pointer;
}
.mhg .radio-custom-label::before {
  flex-shrink: 0;
  margin-inline-end: 0.1875rem;
  padding: 0.125rem;
  text-align: center;
  border: 0.125rem solid #dedede;
}
.mhg .radio-custom-label::after {
  position: absolute;
  top: 0.0625rem;
  inset-inline-start: 0.0625rem;
  display: none;
  width: calc(var(--radio-size) - 0.125rem);
  height: calc(var(--radio-size) - 0.125rem);
  background-color: var(--white);
}
.mhg .radio-custom:checked + .radio-custom-label::after {
  display: block;
}
.mhg .btn-white {
  color: var(--dark-blue);
  background-color: var(--white);
  border: 0.0625rem solid transparent;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .btn-white:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media (any-hover: none) {
  .mhg .btn-white:active {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.mhg .btn-dark {
  color: var(--white);
  background-color: transparent;
  border: 0.0625rem solid var(--white);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (any-hover: none) {
  .mhg .btn-dark:active {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.mhg .quiz {
  display: block;
}
.mhg .quiz input {
  appearance: none;
  outline: none;
  box-shadow: none;
}
.mhg .quiz label {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  line-height: 1;
}
.mhg .quiz .form__wrap-pool {
  margin: 0;
  padding: var(--gap-lg);
  color: var(--white);
  background-color: var(--dark-blue);
  border: 0;
  border-radius: var(--border-radius);
}
.mhg .quiz .form__wrap-pool-title {
  font-size: 1.875rem;
  font-weight: 500;
}
.mhg .quiz .form__wrap-pool-title:not(:last-child) {
  margin-bottom: var(--gap-sm);
}
.mhg .quiz .form__wrap-pool-text:not(:last-child) {
  margin-bottom: var(--gap-md);
}
.mhg .quiz .radio-custom + .radio-custom-label::before {
  border-color: var(--white-color);
}
.mhg .quiz .radio-custom:checked + .radio-custom-label::before {
  background: transparent;
}
.mhg .quiz .radio-wrap {
  position: relative;
  padding: 0.625rem;
  color: inherit;
  background: transparent;
  border: 0.0625rem solid;
  border-radius: var(--border-radius);
}
.mhg .quiz .radio-wrap.error {
  border-width: 0.125rem;
  border-color: var(--red);
}
.mhg .quiz .radio-wrap.error:has(.radio-custom:checked) .radio-custom-label::after {
  background: url("./images/error-66526230.svg") center/var(--radio-size) var(--radio-size) no-repeat;
}
.mhg .quiz .radio-wrap.success {
  border-width: 0.125rem;
  border-color: var(--bright-green);
}
.mhg .quiz .radio-wrap.success:has(.radio-custom:checked) .radio-custom-label::after {
  background: url("./images/success-9dd4e1a3.svg") center/var(--radio-size) var(--radio-size) no-repeat;
}
.mhg .mini_quiz {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.mhg .mini_quiz .submit-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.mhg .mini_quiz .answer {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 0.0625rem solid currentColor;
}
.mhg .main-page-top__left-column.column-small.js_column_padding > *:not(:last-child) {
  margin-bottom: var(--gap-xl);
}

.mhg .checkbox-custom {
  position: absolute;
  opacity: 0;
}
.mhg .checkbox-custom,
.mhg .checkbox-custom-label {
  display: inline-block;
}
.mhg .checkbox-custom-label {
  position: relative;
  top: 0.125rem;
  cursor: pointer;
}
.mhg .checkbox-custom + .checkbox-custom-label::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.6);
  border-radius: 0.125rem;
  transition: var(--transition-duration);
}
.mhg .checkbox-custom:checked + .checkbox-custom-label::before {
  content: "";
  background: url("./images/check--white-c1309f60.svg") center/0.75rem no-repeat;
}
.mhg .agree__wrap {
  position: relative;
  display: flex;
  gap: 0.5rem;
  font-size: 0.6875rem;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .agree__wrap:hover .checkbox-custom-label::before {
    border-color: var(--white);
  }
}
@media (any-hover: none) {
  .mhg .agree__wrap:active .checkbox-custom-label::before {
    border-color: var(--white);
  }
}
.mhg .agree__wrap a {
  border-bottom: 0.0625rem solid transparent;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .agree__wrap a:hover {
    color: inherit;
    border-color: currentColor;
  }
}
@media (any-hover: none) {
  .mhg .agree__wrap a:active {
    color: inherit;
    border-color: currentColor;
  }
}

.mhg .filter-items:not(:last-child) {
  margin-bottom: 1.25rem;
}
.mhg .filter-items > ul {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 47.99875rem) {
  .mhg .filter-items > ul {
    width: calc(100% + 1.25rem);
  }
}
.mhg .filter-items > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  white-space: nowrap;
  color: var(--grey-text);
  border-bottom: 0.125rem solid transparent;
  cursor: pointer;
  transition: var(--transition-duration);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .filter-items > ul > li:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .mhg .filter-items > ul > li:active {
    color: var(--accent-color);
  }
}
.mhg .filter-items > ul > li > .icon,
.mhg .filter-items > ul > li > img,
.mhg .filter-items > ul > li > svg {
  flex-shrink: 0;
  width: 0.75rem;
  transition: inherit;
  transform-origin: center;
}
.mhg .filter-items > ul > li.active {
  color: var(--main-color);
  border-bottom: 0.125rem solid var(--accent-color);
}
.mhg .filter-items > ul > li.active .filter-items__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mhg .filter-items > ul > li.active > .icon,
.mhg .filter-items > ul > li.active > img,
.mhg .filter-items > ul > li.active > svg {
  transform: rotate(-180deg);
}
.mhg .filter-items > ul > li:has(.filter-items__dropdown) {
  border-color: transparent;
}
.mhg .filter-items__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.5rem);
  inset-inline-end: 0;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 0.3125rem 1.875rem rgba(0, 0, 0, 0.07);
  transition: var(--transition-duration);
}
.mhg .filter-items__dropdown li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 1.5rem;
  font-weight: 400;
  color: var(--grey-text);
  border: none;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .mhg .filter-items__dropdown li:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .mhg .filter-items__dropdown li:active {
    color: var(--accent-color);
  }
}

.mhg {
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/template_styles.css?1776054203123231 */
}
.mhg .tv_line {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: inherit;
  transition: var(--transition-duration);
}
.mhg .tv_line.active {
  height: 15.625rem;
}
.mhg .tv_line.active .tv_line__btn {
  transform: translateX(-50%) rotate(180deg);
}
@media (max-width: 47.99875rem) {
  .mhg .tv_line.active .tv_line__btn {
    transform: translateX(0%) rotate(180deg);
  }
}
.mhg .tv_line.active .tv_line_box__hidden_row {
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.mhg .tv_line.active .tv_line_box__content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mhg .tv_line__color {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}
.mhg .tv_line__color.--left {
  inset-inline-start: 0;
  background-color: var(--accent-color);
}
.mhg .tv_line__color.--right {
  inset-inline-end: 0;
  background-color: #557090;
}
.mhg .tv_line__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  bottom: 0;
  inset-inline-start: 50%;
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  border: 0.5625rem solid var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-duration);
  transform: translateX(-50%);
}
.mhg .tv_line__btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-inline-end: 0.125rem solid var(--accent-color);
  border-bottom: 0.125rem solid var(--accent-color);
  transform-origin: center;
  transform: translateY(-0.0625rem) rotate(45deg);
}
.mhg .tv_line__container {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.mhg .tv_line__col.--left .tv_line_box__content {
  padding-block: 1.9375rem;
  padding-inline: 20.1875rem 1.9375rem;
}
.mhg .tv_line__col.--left .tv_line_box__body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mhg .tv_line__col.--right {
  padding-inline-start: 2.5rem;
}
.mhg .tv_line__col.--right .now-live__rating {
  position: static;
}
.mhg .tv_line__col.--right .tv_line_box__content {
  justify-content: start;
  gap: 1rem;
  min-height: 15.625rem;
}
@media (max-width: 47.99875rem) {
  .mhg .tv_line__col.--right .tv_line_box__content {
    min-height: unset;
  }
}
.mhg .tv_line_box__hidden_row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.5rem;
  transition: var(--transition-duration);
}
.mhg .tv_line_box__hidden_row_time {
  margin-inline: 0.1875rem;
  font-weight: 400;
  opacity: 0.7;
}
.mhg .tv_line_box__hidden_row_value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1rem 0 0.25rem;
  font-size: 0.875rem;
  font-weight: bold;
}
.mhg .toggle_tv {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.mhg .toggle_tv:not(.active) {
  transform: rotate(180deg);
}
.mhg .tv_line_box__content {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  height: 100%;
  padding: 1.9375rem 1rem 0.5rem;
  transition: var(--transition-duration);
}
.mhg .now-live__rating {
  position: absolute;
  top: 1.9375rem;
  inset-inline-end: 1.9375rem;
  margin: 0;
  color: var(--white);
}
.mhg .tv_line_box__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  text-transform: uppercase;
  transition: var(--transition-duration);
}
.mhg .tv_line_box__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
.mhg .now-live__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mhg .tv_line_box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.mhg .disclaimer {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.mhg .tv_line_box__disclaimer {
  padding-top: 0.5rem;
  border-top: 0.0625rem solid #8baacf;
}
.mhg .time {
  color: inherit;
}
@media (width >= 48rem) {
  .mhg .tv_line__mobile_line {
    display: none;
  }
  .mhg .tv_line__col.--right {
    padding-inline-start: unset;
    padding-inline-start: 2.5rem;
  }
}
@media (width <= 74.9375rem) {
  .mhg .tv_line.active {
    height: 26.25rem;
  }
  .mhg .tv_line.active .tv_line__btn {
    transform: translateX(-50%) rotate(180deg);
  }
}
@media (width <= 74.9375rem) and (max-width: 47.99875rem) {
  .mhg .tv_line.active .tv_line__btn {
    transform: translateX(0%) rotate(180deg);
  }
}
@media (width <= 74.9375rem) {
  .mhg .tv_line__col.--left {
    display: flex;
    flex-direction: column;
  }
  .mhg .tv_line__col.--left .tv_line_box__content {
    height: auto;
    margin-top: auto;
    padding: 0 1.9375rem 1.9375rem;
  }
  .mhg .tv_line_box__content {
    height: auto;
  }
  .mhg .now-live__rating {
    position: static;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .tv_line {
    padding-bottom: 3.125rem;
  }
  .mhg .tv_line__container {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--accent-color);
  }
  .mhg .tv_line__col.--right {
    flex: 1;
    padding: 0;
  }
  .mhg .tv_line__col.--right .tv_line_box__hidden_row {
    display: none;
  }
  .mhg .tv_line__col.--left .tv_line_box__content {
    margin: 0;
    padding: 0.9375rem;
  }
  .mhg .tv_line__color.--right, .mhg .tv_line__color.--left {
    display: none;
  }
  .mhg .tv_line_box__hidden_row {
    display: none;
  }
  .mhg .tv_line_box__content {
    padding: 0.9375rem;
  }
  .mhg .tv_line__mobile_line {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 3.125rem;
    padding: 0 0.9375rem;
    background-color: var(--accent-color);
  }
  .mhg .tv_line_box__hidden_row_value {
    padding-inline-end: 1.875rem;
  }
  .mhg .toggle_tv {
    display: none;
  }
  .mhg .tv_line__btn {
    inset-inline: auto 0;
    width: 3.125rem;
    height: 3.125rem;
    transform: translateX(0) rotate(0deg);
    pointer-events: none;
  }
  .mhg .disclaimer {
    gap: 0.25rem;
    font-size: 0.625rem;
  }
}
@media (any-hover: hover) {
  .mhg .tv_line_box__link:hover {
    opacity: 0.7;
  }
}
.mhg iframe {
  border: none;
  outline: none;
}
.mhg .header__live-window.active {
  display: block;
}
.mhg .header__live-window#video_player_block, .mhg .header__live-window #video_player_block {
  position: absolute;
  z-index: 30;
  top: 2.5rem;
}
.mhg .header__live-window#video_player_block .video-player__container,
.mhg .header__live-window#video_player_block .container, .mhg .header__live-window #video_player_block .video-player__container,
.mhg .header__live-window #video_player_block .container {
  padding: 0;
}
@media (max-width: 79.99875rem) {
  .mhg .header__live-window#video_player_block, .mhg .header__live-window #video_player_block {
    inset-inline-start: var(--container-padding-x);
  }
}
.mhg .header__live-window#video_player_block iframe, .mhg .header__live-window #video_player_block iframe {
  overflow: hidden;
  height: 10.8125rem;
  border-radius: 0.3125rem;
}
.mhg .header__live-window.js_live_window {
  display: none;
}
.mhg .header__live-window.js_live_window.active {
  display: initial;
}
@media (max-width: 47.99875rem) {
  .mhg .header__live-window.js_live_window {
    display: none !important;
  }
}

.mhg {
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/dest/dist/new_nav_mobile.css?170653148016527 */
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/styles.css?176680374512032 */
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/template_styles.css?1776054203123231 */
}
.mhg .menu {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  position: fixed;
  z-index: 150;
  top: calc(var(--header-height));
  bottom: 0;
  inset-inline-start: -100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: #f2f5f8;
  transition: left 500ms;
}
.mhg .menu::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
@media (max-width: 79.99875rem) {
  .mhg .menu {
    background-color: #ffffff;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu {
    top: 5.3125rem;
    justify-content: start;
  }
}
.mhg .menu.active {
  inset-inline-start: 0;
}
.mhg .menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__inner {
    overflow: hidden auto;
    height: 100%;
  }
}
.mhg .menu .menu__bottom {
  margin-top: 3.8125rem;
  border-top: 0.0625rem solid #dedede;
}
@media (max-width: 47.99875rem) {
  .mhg .menu .menu__bottom {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column.watch-brics .menu__column-inner {
    flex-direction: column;
  }
  .mhg .menu__column.watch-brics .menu__list-links li:last-child {
    border-bottom: 0.0625rem solid #dedede !important;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column-inner {
    padding: 0 0.9375rem 1.5rem;
  }
}
.mhg .menu__link-live a {
  display: inline-block;
  padding: 0.125rem 0.625rem 0.25rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #ffffff;
  background-color: #1bba6d;
  border-radius: 0.0625rem;
  transition: background-color 200ms;
}
@media screen and (width >= 75rem) {
  .mhg .menu__link-live a:hover {
    background-color: #1cc372;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__link-live a {
    width: 7.9375rem !important;
    margin-bottom: 0.9375rem;
    padding: 0.125rem 0.625rem 0.25rem !important;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__link-live {
    padding-inline-start: 0 !important;
    border-bottom: 0.0625rem solid #dedede;
  }
  .mhg .menu__link-live::before {
    display: none;
  }
}
.mhg .menu__social-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 21.25rem;
  margin: 0 -0.9375rem;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__social-list {
    justify-content: start;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu__social-list {
    min-width: 100vw;
    margin: 0 -1.1875rem;
  }
}
.mhg .menu__social-list li {
  margin: 0 0.9375rem 1.25rem;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__social-list li {
    min-width: 12.5%;
    margin: 0 0 1.5rem;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu__social-list li {
    min-width: auto;
    margin: 0 1.1875rem 1rem;
  }
}
.mhg .menu__social-list a {
  display: inline-block;
}
@media screen and (width >= 75rem) {
  .mhg .menu__social-list a:hover svg circle {
    fill: #6d8aad;
  }
  .mhg .menu__social-list a:hover svg path {
    fill: #ffffff;
  }
}
.mhg .menu__social-list svg {
  width: 3.4375rem;
  height: 3.4375rem;
}
.mhg .menu__bottom-big-link {
  position: relative;
  width: 100%;
  padding-top: 1.375rem;
  border-top: 0.0625rem solid #dedede;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__bottom-big-link {
    margin-top: 0.3125rem;
    padding: 1.125rem 1.75rem 1rem 1.5rem;
    border: 0.0625rem solid #dedede;
  }
}
.mhg .menu__bottom-big-link .mobile-icon {
  display: none;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__bottom-big-link .mobile-icon {
    position: absolute;
    top: 1.5rem;
    inset-inline-end: 1.75rem;
    display: block;
  }
}
.mhg .menu__bottom-big-link a {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Formular-Bold", sans-serif;
  text-transform: uppercase;
  color: #557090;
  transition: color 200ms;
}
.mhg .menu__bottom-big-link a .text {
  display: block;
  margin-top: 0.5rem;
  font-family: "Formular-Regular", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3125rem;
  text-transform: none;
  color: #8b9095;
}
@media screen and (width >= 75rem) {
  .mhg .menu__bottom-big-link a:hover {
    color: #6d8aad;
  }
  .mhg .menu__bottom-big-link a:hover svg path {
    fill: #6d8aad;
  }
}
.mhg .menu__bottom-big-link a svg {
  position: relative;
  top: 0.125rem;
  transition: fill 200ms;
}
.mhg .menu__list-links.links-big-text {
  text-transform: uppercase;
}
.mhg .menu__list-links li {
  position: relative;
  margin-bottom: 1rem;
  padding-inline-start: 0.9375rem;
}
.mhg .menu__list-links li::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #6d8aad;
  border-radius: 50%;
  transform: translateY(-50%);
}
.mhg .menu__list-links a {
  transition: color 200ms;
}
@media screen and (width >= 75rem) {
  .mhg .menu__list-links a:hover {
    color: #557090;
  }
}
.mhg .menu__columns-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__columns-wrap {
    flex-direction: column;
    justify-content: start;
  }
}
.mhg .menu__column-wrap {
  width: calc(33% - 0.9375rem);
  margin-top: 2.5rem;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column-wrap {
    width: 100vw;
    margin-top: 0;
  }
}
.mhg .menu .mobile-categories {
  display: none;
}
@media (max-width: 79.99875rem) {
  .mhg .menu .mobile-categories {
    display: flex;
    flex-direction: column;
  }
  .mhg .menu .mobile-categories .menu__column-inner {
    margin: 0 -0.4375rem;
  }
  .mhg .menu .mobile-categories .menu__category-link-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8.4375rem;
    margin: 0 0.4375rem 0.8125rem;
    padding: 0.8125rem 0.625rem 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    border: 0.0625rem solid #dedede;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu .mobile-categories .menu__column-inner {
    margin: 0 -0.4375rem;
  }
  .mhg .menu .mobile-categories .menu__category-link-wrap {
    width: calc(50% - 0.625rem);
    margin: 0 0.3125rem 0.625rem;
    padding: 0.5625rem 0.3125rem 0.6875rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__title-wrap {
    position: relative;
    padding: 1.5rem 0;
  }
  .mhg .menu__title-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-end: 0.9375rem;
    width: 1.25rem;
    height: 1.25rem;
    background: url("https://tvbrics.com/local/templates/tvbrics/dest/img/menu-arrow-icon.svg") no-repeat center center;
    background-size: auto;
    transform: translateY(-50%);
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__title-wrap {
    padding: 1.5rem 0.9375rem;
  }
}
.mhg .menu__column {
  height: calc(50% - 0.9375rem);
  margin-bottom: 1.875rem;
  padding: 2.5rem 2.5rem 1.625rem;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  box-shadow: 0 0 1.25rem rgba(107, 122, 141, 0.07);
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column {
    width: 100vw;
    height: auto;
    margin-bottom: 0;
    margin-inline-start: -0.9375rem;
    padding: 0;
    border-bottom: 0.0625rem solid #dedede;
    border-radius: 0;
    box-shadow: none;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column-inner {
    display: none;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column.projects__column .menu__list-links {
    width: 100%;
  }
  .mhg .menu__column.projects__column .menu__list-links li {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 0.0625rem solid #dedede;
  }
  .mhg .menu__column.projects__column .menu__list-links li:first-child::before {
    top: 27%;
  }
  .mhg .menu__column.projects__column .menu__list-links li:first-child a {
    padding-top: 0;
  }
  .mhg .menu__column.projects__column .menu__list-links li:last-child {
    border-bottom: none;
  }
  .mhg .menu__column.projects__column .menu__list-links li a {
    display: inline-block;
    width: 100%;
    padding: 0.9375rem 0;
  }
}
.mhg .menu__column h2 {
  margin-bottom: 1.25rem;
  font-family: "Formular-Bold", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column h2 {
    margin-bottom: 0;
  }
}
.mhg .menu__column .programs__item-descr {
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
.mhg .menu__column .programs__item-descr a {
  padding-top: 0.625rem;
}
.mhg .menu__column.program__column {
  height: 100%;
}
.mhg .menu__column.active .menu__column-inner {
  display: flex;
  flex-wrap: wrap;
}
.mhg .menu__column.active .menu__title-wrap::after {
  transform: rotate(180deg) translateY(50%);
}
.mhg .menu__column .programs__item img {
  border-radius: 0.3125rem;
}
.mhg .menu__column .programs__item-bg-grey {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 0.375rem);
  height: 8.125rem;
  background-color: #dedede;
  border-radius: 0.3125rem;
  transition: background-color 200ms;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column .programs__item-bg-grey {
    height: 6.25rem;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu__column .programs__item-bg-grey {
    height: 5.625rem;
  }
}
@media screen and (width >= 75rem) {
  .mhg .menu__column .programs__item-bg-grey:hover {
    background-color: #e3e3e3;
  }
}
.mhg .menu__column .programs__item-bg-grey a {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
}
.mhg .menu__column .programs__item-bg-grey p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
.mhg .menu__program-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mhg .menu__program-items .programs__item {
  width: calc(50% - 0.375rem);
}
@media (max-width: 79.99875rem) {
  .mhg .menu__program-items .programs__item {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .menu__program-items .programs__item {
    margin-bottom: 1rem;
  }
}
.mhg .menu__program-items .programs__item img {
  object-fit: cover;
}
@media (max-width: 47.99875rem) {
  .mhg .menu__program-items .programs__item img {
    height: 5.625rem;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__program-items .programs__item {
    min-width: calc(50% - 0.5rem);
    margin-inline-end: 0;
  }
}
.mhg .menu__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__columns {
    flex-direction: column;
    flex-wrap: unset;
    justify-content: start;
  }
}
.mhg .menu .menu__column-wrap .menu__column:last-child {
  margin-bottom: 0;
}
.mhg .menu__search-bottom {
  display: none;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__search-bottom {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.9375rem 1.25rem 0.9375rem 0;
    border: 0.0625rem solid #dedede;
    border-radius: 0.1875rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__search-bottom {
    padding: 0.5625rem 0.8125rem 0.5625rem 0;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__search-bottom form {
    width: 100%;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__search-bottom input {
    width: 100%;
    font-size: 1rem;
    line-height: 1.25rem;
    border: none;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .menu__search-bottom input {
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }
}
.mhg .menu__search-bottom-icon {
  margin-inline-end: 0.625rem;
  padding-inline-start: 1.5rem;
}
.mhg .simplebar-scrollbar::before,
.mhg .simplebar-scrollbar.simplebar-visible::before {
  background-color: #cfcfcf;
  opacity: 1 !important;
}
.mhg .footer__col-app-link {
  display: flex;
  align-items: center;
  padding: 0.625rem 2.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.125rem;
  transition: border 200ms;
}
@media screen and (width >= 75rem) {
  .mhg .footer__col-app-link:hover {
    border: 0.0625rem solid #ffffff;
  }
}
@media (max-width: 79.99875rem) {
  .mhg .footer__col-app-link {
    width: 14.6875rem;
  }
}
.mhg .footer__col-app-link svg {
  margin-inline-end: 0.625rem;
}
@media (width >= 75rem) {
  .mhg .programs__item-img-wrap:hover + .programs__item-descr a {
    color: #6d8aad;
  }
}
.mhg .programs__item {
  width: calc(33.3% - 0.625rem);
  margin-bottom: 2rem;
}
@media (max-width: 79.99875rem) {
  .mhg .programs__item {
    min-width: 45%;
    margin-inline-end: 0.9375rem;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .programs__item {
    min-width: 90%;
    margin-bottom: 0;
  }
}
.mhg .programs__item img {
  width: 100%;
}
.mhg .programs__item-descr {
  font-family: "Formular-Medium", sans-serif;
  font-size: 1.25rem;
  line-height: 1.625rem;
}
.mhg .programs__item-descr a {
  display: inline-block;
  padding-top: 1.25rem;
  transition: color 200ms;
}
@media screen and (width >= 75rem) {
  .mhg .programs__item-descr a:hover {
    color: #6d8aad;
  }
}
.mhg input {
  outline: none;
  box-shadow: none;
}
@media (max-width: 47.99875rem) {
  .mhg .menu.block-style-scroll {
    display: none !important;
  }
}
.mhg .rutube:hover path {
  fill: #6d8aad !important;
}
.mhg .rutube:hover rect {
  fill: #ffffff !important;
}
.mhg .rutube svg {
  stroke: #ffffff;
}
@media (max-width: 47.99875rem) {
  .mhg .menu__bottom-big-link a .text {
    max-width: 16.25rem;
  }
}
.mhg .hr_line {
  height: 0;
  margin: 1.25rem 0;
  padding: 0;
  border: none;
  border-top: 0.0625rem solid #dedede;
}
.mhg .default_link {
  font-family: "Formular-Regular", sans-serif;
  font-size: 0.9375rem;
  color: #557090;
  transition: all 0.3s;
}
.mhg .br_think.menu__bottom-big-link .br_think__text {
  color: #557090;
}
.mhg .br_think {
  display: flex;
  align-items: start;
}
.mhg .br_think__icon {
  flex-shrink: 0;
  margin-inline-end: 0.75rem;
}
.mhg .br_think__text span:nth-child(1) {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .mhg .footer__col-app-links > a:hover svg circle {
    fill: #ffffff;
  }
  .mhg .header_app_links .footer__col-app-link:hover circle {
    fill: #6d8aad;
  }
  .mhg .header_app_links .footer__col-app-link:hover path {
    fill: #ffffff;
  }
}
@media (width <= 119.9375rem) {
  .mhg .br_think__text span:nth-child(1) {
    font-size: calc(0.875rem + 2 * (100vw - 22.5rem) / 1559);
    white-space: normal;
  }
}
.mhg .footer__col-app-link {
  border: none;
}
.mhg .footer__col-app-links {
  display: flex;
}
.mhg .footer__col-app-links > a {
  padding: 0;
  border: none !important;
}
.mhg .footer__col-app-links > a svg circle {
  transition: all 0.2s;
  fill: #b6c4d6;
}
.mhg .header_app_links .footer__col-app-links > a svg {
  width: 3.4375rem;
  height: 3.4375rem;
  margin: 0 1.875rem 0 0;
}
.mhg .header_app_links .footer__col-app-links > a svg circle {
  fill: #edf0f4;
}
.mhg .header_app_links .footer__col-app-link path {
  transition: all 0.2s;
}
.mhg .header_app_links .menu__title-wrap::after {
  display: none !important;
}
@media (max-width: 79.99875rem) {
  .mhg .header_app_links {
    width: 100%;
  }
  .mhg .header_app_links .footer__col-app-links > a {
    min-width: 12.5%;
    margin: 0 0 1.5rem;
  }
  .mhg .footer__col-app-links {
    margin-bottom: 1.125rem;
  }
  .mhg .footer__col-app-links > a {
    width: auto;
  }
  .mhg .header_app_links .menu__title-wrap {
    padding-inline-start: 0;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .footer__col-app-link svg {
    margin-inline-end: 1.125rem;
  }
}
@media screen and (width >= 75rem) {
  .mhg .menu.--custom .menu__column {
    min-height: 40.9375rem;
  }
  .mhg .menu__column {
    min-height: 40.9375rem;
  }
}
.mhg .menu__list-links.links-big-text {
  text-transform: initial;
}
@media (max-width: 79.99875rem) {
  .mhg .menu__column-wrap .hr_line {
    opacity: 0;
  }
}
.mhg .programs__item-bg-grey {
  text-align: center;
}
@media screen and (width >= 75rem) {
  .mhg .ru .menu__column {
    min-height: 47.1875rem !important;
  }
}
@media (any-hover: hover) {
  .mhg .default_link:hover {
    color: #557090;
  }
  .mhg .__max_icon:hover path:nth-child(1) {
    fill: #6d8aad;
  }
  .mhg .__max_icon:hover path:nth-child(2) {
    fill: white;
  }
}
.mhg .programs__item-img-wrap {
  overflow: hidden;
  border-radius: 0.4375rem;
}

.mhg {
  --grey-divider: #dedede;
  --secondary: #557091;
  --black: #333333;
  --primary: #6d8aad;
  --grey_text: #797d83;
  --background: #f2f5f8;
  --red: #ff4c61;
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/dest/dist/new_nav_mobile.css?170653148016527 */
  /*! CSS Used from: https://tvbrics.com/local/templates/tvbrics/template_styles.css?1776054203123231 */
}
@media screen and (width >= 48rem) {
  .mhg .nm_menu {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .nm_menu {
    position: fixed;
    z-index: 500;
    inset: 0 0 3.4375rem;
    overflow-y: auto;
    background-color: var(--background);
    transition: all 0.5s;
    transform: translateX(-100%);
  }
  .mhg .nm_menu.active {
    transform: none;
  }
  .mhg .nm_menu__head {
    position: relative;
  }
  .mhg .nm_menu__head_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 4rem;
    padding: 0.3125rem 1rem;
  }
  .mhg .nm_menu__head_title {
    font-family: "Formular-Bold", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
  }
  .mhg .nm_menu__head_interactive {
    display: flex;
    align-items: center;
  }
  .mhg .nm_menu__head_interactive .search_icon {
    margin-inline-end: 1.5rem;
    font-size: 0;
  }
  .mhg .lang_checked_select {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.125rem 0 0.125rem 2.5rem;
  }
  .mhg .lang_checked_select select {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    text-indent: 0.0625rem;
    text-overflow: "";
    background-color: transparent;
    border: none;
    outline: none;
    opacity: 1 !important;
    transform: translateY(-50%);
  }
  .mhg .nm_menu__head_search_box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0.125rem 0.25rem 0.5rem rgba(208, 208, 208, 0.25);
    transition: all 0.5s;
    transform: translateY(-100%);
  }
  .mhg .nm_menu__body {
    padding: 0.4375rem 1rem 3.75rem;
  }
  .mhg .nm_menu__body > *:not(:last-child) {
    margin-bottom: 0.75rem;
  }
  .mhg .nm_menu__body > *:not(.nm_subhead) {
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0.125rem 0.25rem 0.5rem rgba(208, 208, 208, 0.25);
  }
  .mhg .nm_subhead {
    display: flex;
  }
  .mhg .nm_subhead__item {
    width: 33.3333333333%;
    min-height: 5.5rem;
    font-size: 0.8125rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0.125rem 0.25rem 0.5rem rgba(208, 208, 208, 0.25);
  }
  .mhg .nm_subhead__item.nm_current_program {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.875rem 0.625rem 1rem;
    color: #ffffff;
    background-color: var(--primary);
  }
  .mhg .nm_subhead__item.nm_current_program > span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    max-height: 4.5em;
    line-height: 1.2;
    word-break: break-word;
  }
  .mhg .nm_subhead__item:not(:last-child) {
    margin-inline-end: 0.5rem;
  }
  .mhg .nm_subhead__item.nm_current_weather .slick-list {
    min-height: inherit;
  }
  .mhg .nm_subhead__item.nm_current_weather .slick-slide,
  .mhg .nm_subhead__item.nm_current_course .slick-slide {
    min-height: 5.5rem;
  }
  .mhg .nm_current_weather__item,
  .mhg .nm_current_course__slide {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    min-height: inherit;
    padding: 0.875rem 0.625rem 1rem;
  }
  .mhg .nm_current_weather__value {
    font-size: 1.125rem;
    line-height: 1.2;
    color: var(--primary);
  }
  .mhg .nm_current_weather__city {
    font-size: 0.8125rem;
    line-height: 1.2;
    color: #333333;
  }
  .mhg .nm_current_course__slide > div:nth-child(1) {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--primary);
  }
  .mhg .nm_current_course__slide > div:nth-child(2) {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .mhg .nm_current_course__minus,
  .mhg .nm_current_course__plus {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .mhg .nm_current_course__plus {
    color: var(--green);
  }
  .mhg .nm_current_course__minus {
    color: var(--red);
  }
  .mhg .nm_main_news__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_news__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_news__item {
    display: flex;
    flex-direction: column;
    padding: 0.25rem 0 0.75rem;
  }
  .mhg .nm_main_news__item:not(:last-child) {
    margin-bottom: 0.375rem;
    border-bottom: 0.0625rem solid var(--background);
  }
  .mhg .nm_main_news__item:last-child {
    padding-bottom: 0;
  }
  .mhg .nm_main_news__item_countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, 1.125rem);
    gap: 0.5rem;
    margin-bottom: 0.3125rem;
  }
  .mhg .nm_main_news__item_countries > span {
    display: inline-block;
    font-size: 0;
  }
  .mhg .nm_main_news__item_text {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
  .mhg .nm_main_programs__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_programs__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_programs__body {
    overflow-x: auto;
    width: calc(100% + 1.5rem);
    margin: -0.25rem;
    margin-inline-start: -0.75rem;
    padding: 0.5rem;
    font-size: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
  }
  .mhg .nm_main_programs__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .mhg .nm_main_programs__item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 8.9375rem;
    height: 4.4375rem;
    margin: 0.25rem;
    border-radius: 0.5rem;
  }
  .mhg .nm_main_programs__item img {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  .mhg .nm_main_projects__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_projects__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_projects__body {
    overflow-x: auto;
    width: calc(100% + 1.5rem);
    margin: -0.375rem;
    margin-inline-start: -0.75rem;
    padding: 0.375rem;
    font-size: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
  }
  .mhg .nm_main_projects__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .mhg .nm_main_projects__item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 5.25rem;
    margin: 0.375rem;
    border-radius: 0.5rem;
  }
  .mhg .nm_main_projects__item img {
    overflow: hidden;
    display: inline-block;
    width: 2.375rem;
    height: 2.375rem;
    margin-bottom: 0.25rem;
    object-fit: contain;
    border-radius: 100%;
  }
  .mhg .nm_main_projects__item span {
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    text-transform: uppercase;
  }
  .mhg .nm_main_blogers__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_blogers__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_blogers__body {
    overflow-x: auto;
    width: calc(100% + 1.5rem);
    margin: -0.25rem;
    margin-inline-start: -0.75rem;
    padding: 0.5rem;
    font-size: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
  }
  .mhg .nm_main_blogers__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .mhg .nm_main_blogers__item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: 4.6875rem;
    margin: 0.25rem;
    border-radius: 0.5rem;
  }
  .mhg .nm_main_blogers__item img {
    overflow: hidden;
    display: inline-block;
    width: 3.4375rem;
    height: 3.4375rem;
    margin-bottom: 0.25rem;
    object-fit: cover;
    border-radius: 100%;
  }
  .mhg .nm_main_blogers__item span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    max-height: 4.5em;
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
  .mhg .nm_main_brics__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_brics__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_brics__body {
    overflow-x: auto;
    width: calc(100% + 1.5rem);
    margin: -0.5rem;
    margin-inline-start: -0.75rem;
    padding: 0.5rem;
    font-size: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
  }
  .mhg .nm_main_brics__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .mhg .nm_main_brics__item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 3.75rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
  }
  .mhg .nm_main_brics__item img {
    overflow: hidden;
    display: inline-block;
    width: 2.375rem;
    height: 2.375rem;
    margin-bottom: 0.25rem;
    object-fit: contain;
    border-radius: 100%;
  }
  .mhg .nm_main_brics__item span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    max-height: 4.5em;
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
  .mhg .nm_main_socials__body {
    overflow-x: auto;
    width: calc(100% + 1.5rem);
    margin: -0.25rem;
    margin-inline-start: -0.75rem;
    padding: 0.5rem;
    font-size: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: auto;
  }
  .mhg .nm_main_socials__body::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .mhg .nm_main_apps__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  .mhg .nm_main_apps__title {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--grey_text);
  }
  .mhg .nm_main_apps__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .mhg .nm_main_apps__item img {
    width: 100%;
  }
}
.mhg .nm_menu__search_form {
  position: relative;
  width: 100%;
  height: 100%;
}
.mhg .ui_search {
  position: relative;
  width: 100%;
  height: 100%;
}
.mhg .ui_search_input_block {
  width: 100%;
  height: 100%;
}
.mhg .ui_search_field {
  position: absolute;
  inset: 0;
  width: calc(100% - 3.75rem);
  height: 100%;
  padding: 1rem;
  border: none;
  outline: none;
}
.mhg .ui_search_icons {
  position: absolute;
  inset: 0 0 0 auto;
  width: 4rem;
  height: 4rem;
}
.mhg .ui_search_close {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.mhg .br_think {
  display: flex;
  align-items: start;
}
.mhg .br_think__icon {
  flex-shrink: 0;
  margin-inline-end: 0.75rem;
}
.mhg .br_think__text span:nth-child(1) {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
}
.mhg .nm_menu .br_think__text span:nth-child(1) {
  font-size: 1rem !important;
  color: #557090;
}
.mhg .nm_main_programs .arr-btn,
.mhg .nm_main_blogers .arr-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  padding: 0 2.1875rem;
  transform: none;
}
.mhg .nm_current_program span:nth-child(1) {
  display: -webkit-box;
  display: flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mhg .nm_current_program span:nth-child(1) svg {
  margin-inline-end: 0.3125rem;
}
.mhg .arr-btn {
  flex-shrink: 0;
  align-self: center;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0 5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-item-align: center;
  grid-row-align: center;
  -ms-flex-negative: 0;
}
.mhg .arr-btn span {
  display: -webkit-box;
  display: flexbox;
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1875rem;
  white-space: nowrap;
  text-transform: uppercase;
  color: #557091;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media (width <= 119.9375rem) {
  .mhg .br_think__text span:nth-child(1) {
    font-size: calc(0.875rem + 2 * (100vw - 22.5rem) / 1559);
    white-space: normal;
  }
}
@media (max-width: 47.99875rem) {
  .mhg .arr-btn {
    display: -webkit-box;
    display: flexbox;
    display: flex;
  }
  .mhg .arr-btn {
    transform: translateY(-50%);
  }
  .mhg .arr-btn svg {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.mhg .search__panel {
  flex-grow: 1;
  position: absolute;
  z-index: 10;
  inset-inline-end: 0;
  display: flex;
  width: calc(100% - 24.375rem);
  width: 77.5%;
  height: 4.5rem;
  background-color: var(--white-color);
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 79.99875rem) {
  .mhg .search__panel {
    display: none;
  }
}
.mhg .search__panel label {
  width: 100%;
  height: 100%;
}
.mhg .search__panel input {
  width: calc(100% - 1.5rem);
  height: 100%;
  padding-inline-start: 1.875rem;
  border: none;
  outline: none;
}
.mhg .search__panel input::placeholder {
  font: inherit;
  color: #8b9095;
}
.mhg .search__panel span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 100%;
  padding: 0.6875rem;
  background-color: #ffffff;
  border-inline-end: 0.0625rem solid #dedede;
  border-inline-start: 0.0625rem solid #dedede;
  cursor: pointer;
}
@media screen and (width >= 75rem) {
  .mhg .search__panel span:hover svg {
    transform: scale(1.1);
  }
}
.mhg .search__panel span svg {
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
}
.mhg .search__panel.active {
  visibility: visible;
  opacity: 1;
  transition: all 500ms;
}
.mhg .search__panel-form {
  width: calc(100% - 1.5rem);
}

#index_filter_news > .news:not(:last-child) {
  margin-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}

/*
.mhg {
	.radio-custom {
		position: absolute;
		opacity: 0;
	}

	.radio-custom,
	.radio-custom-label {
		display: inline-block;
	}

	.radio-custom-label {
		position: relative;
		top: 2px;
		cursor: pointer;
	}

	.radio-custom + .radio-custom-label::before {
		content: '';
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-inline-end: 3px;
		padding: 2px;
		border: 2px solid #dedede;
		border-radius: 50%;
		background: #fff;
		text-align: center;
		flex-shrink: 0;
	}

	.form__wrap-pool {
		margin: 0;
		padding: 24px;
		border: 0;
	}

	.form__wrap-pool-title {
		font-weight: 500;
		font-size: 30px;
		&:not(:last-child) {
			margin-bottom: 8px;
		}
	}

	.form__wrap-pool .submit-wrap {
		margin-top: 40px;
	}

	.btn-white {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 47px;
		padding: 0 20px;
		border: 1px solid #dedede;
		border-radius: 5px;

		color: #557090;
		background: #fff;
		text-transform: uppercase;
		font-family: 'Formular-Medium', sans-serif;
		cursor: pointer;
		text-align: center;

		transition: all 0.2s;
	}

	@media (any-hover: hover) {
		.btn-white:hover {
			background: #557090;
			border-color: #557090;
			color: #fff;
		}
	}

	.quiz input {
		outline: none;
		box-shadow: none;
		appearance: none;
	}

	.main-page-top__left-column.column-small.js_column_padding > *:not(:last-child) {
		margin-bottom: 32px;
	}

	.quiz {
		display: block;
	}

	.quiz .form__wrap-pool {
		background: #619be1;
		color: #fff;
	}

	.quiz .radio-custom + .radio-custom-label::before {
		border-color: #619be1;
	}

	.quiz .radio-custom:checked + .radio-custom-label::before {
		background: #619be1;
	}

	.quiz .radio-wrap.error:has(.radio-custom:checked) .radio-custom-label::before {
		background: url('https://tvbrics.com/local/templates/tvbrics/dest/img/radio-err.svg') center no-repeat;
		background-color: transparent;
		border-color: transparent;
	}

	.quiz .form__wrap-pool-text {
		margin-bottom: 20px;
	}

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

	.quiz .radio-wrap {
		padding: 10px;
		background: #fff;
		color: #333;
		border-radius: 5px;
	}

	.quiz label {
		display: flex;
		align-items: center;
		gap: 8px;
		line-height: 1;
	}

	.quiz .hidden {
		display: none;
	}

	.mini_quiz .submit-wrap {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.mini_quiz .radio-custom-label::after {
		content: '';
		position: absolute;
		top: 1px;
		inset-inline-start: 1px;
		width: 18px;
		height: 18px;
		border: 2px solid #fff;
		border-radius: 50%;
		display: none;
	}

	.quiz .radio-custom:checked + .radio-custom-label::after {
		display: block;
	}

	.mini_quiz .submit-wrap [class^='btn-'] {
		background: #fff;
		color: #557090;
	}

	.mini_quiz .radio-wrap.error {
		border: 2px solid #ff4c61;
	}

	.mini_quiz .answer {
		display: inline-block;
		margin-bottom: 12px;
		padding-bottom: 4px;
		border-bottom: 1px solid currentColor;
	}

	@media (any-hover: hover) {
		.mini_quiz [class^='btn-']:hover {
			background: #557090 !important;
		}
	}
}

// *  ==========================================================================================================================
 */.logo--mobile .logo__image {
  max-width: 16.875rem;
}
.logo__image {
  max-width: clamp(7.5rem, 7.0150862069rem + 2.1551724138vw, 9.375rem);
}.header {
  position: relative;
  z-index: var(--z-index-header);
  top: 0;
  inset-inline: 0;
  transition: transform var(--transition-duration), width var(--transition-duration);
}
.header:where(.is-sticky) {
  position: sticky;
}
.header:where(.is-fixed) {
  position: fixed;
}
@media (min-width: 79.99875rem) {
  .header:where(.is-fixed) ~ .page:first-of-type {
    padding-top: var(--header-height, var(--min-height-header-pc));
    transition: var(--transition-duration);
  }
}
@media (min-width: 79.99875rem) {
  .header:where(.is-transparent) ~ .page:first-of-type {
    padding-top: 0;
  }
}
.header.is-out {
  transform: translateY(-110%);
}
@media (max-width: 47.99875rem) {
  .header__info {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .header__menu {
    display: none;
  }
}
.info-header {
  min-height: 2.3125rem;
  color: var(--white);
  background-color: var(--blue-black);
}
.info-header__container {
  min-height: inherit;
}
.info-header__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, -14.8076923077rem + 19.2307692308vw, 6.25rem);
  min-height: inherit;
}
.info-header__item {
  min-width: 0;
  min-height: inherit;
}

.item-info-header {
  display: flex;
  align-items: center;
}
.item-info-header--weather .exchange-rates__item {
  color: var(--grey);
}
.item-info-header__title {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--grey);
}
.item-info-header__body {
  min-width: 0;
}

.body-header {
  min-height: clamp(5.3125rem, -5.9375rem + 12.5vw, 7.75rem);
  background-color: var(--white);
}
@media (max-width: 47.99875rem) {
  .body-header {
    min-height: 3.75rem;
  }
}
.menu-header {
  min-height: clamp(2.25rem, -3.2307692308rem + 6.0897435897vw, 3.4375rem);
  color: var(--white);
  background-color: var(--dark-blue);
}
.menu-header__container {
  min-height: inherit;
}
.menu-header__menu {
  min-height: inherit;
}

.list-menu-header {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: inherit;
}
.list-menu-header::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.list-menu-header__item {
  position: relative;
  min-height: 100%;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .list-menu-header__item:hover .list-menu-header__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media (any-hover: none) {
  .list-menu-header__item:active .list-menu-header__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
.list-menu-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}
.list-menu-header__link span {
  display: inline-flex;
  padding-bottom: 0.125rem;
  border-bottom: 0.0625rem solid transparent;
  transition: inherit;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .list-menu-header__link:hover {
    color: inherit;
  }
  .list-menu-header__link:hover span {
    border-color: currentColor;
  }
}
@media (any-hover: none) {
  .list-menu-header__link:active {
    color: inherit;
  }
  .list-menu-header__link:active span {
    border-color: currentColor;
  }
}
.list-menu-header__submenu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
  top: 100%;
  inset-inline-end: 0;
  display: flex;
  flex-direction: column;
  min-width: 20.625rem;
  padding: 0.5rem 1.5rem;
  color: var(--main-color);
  background-color: #ffffff;
  border: 0.0625rem solid #f2f5f8;
  border-radius: var(--border-radius);
  box-shadow: 0 0.3125rem 1.875rem 0 rgba(0, 0, 0, 0.07);
  transition: var(--transition-duration);
  pointer-events: auto;
}
.list-menu-header__submenu li:not(:last-child) a {
  border-bottom: 0.0625rem solid #f2f5f8;
}
.list-menu-header__submenu a {
  display: block;
  padding: 0.8125rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
}

.news-line {
  position: relative;
  height: 2.5rem;
  color: var(--white);
  background-color: var(--light-blue);
}
.body-header__container {
  min-height: inherit;
}
.body-header__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, -8.8846153846rem + 11.5384615385vw, 3.75rem);
  min-height: inherit;
}
@media (max-width: 47.99875rem) {
  .body-header__row {
    justify-content: center;
    gap: 0;
  }
}
.body-header__logo {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 47.99875rem) {
  .body-header__logo {
    justify-content: center;
  }
}
.body-header__slogan {
  flex: 0 0 7.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 79.99875rem) {
  .body-header__slogan {
    display: none;
  }
}
.body-header__menu {
  flex-grow: 1;
  align-self: stretch;
}
@media (max-width: 79.99875rem) {
  .body-header__actions {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .body-header__actions {
    display: none !important;
  }
}

.menu-body-header__list {
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, -5.9230769231rem + 7.6923076923vw, 2.5rem);
  height: 100%;
}
.menu-body-header__item {
  height: 100%;
}
.menu-body-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 1rem;
  color: var(--main-color);
}
.menu-body-header__link p {
  color: var(--grey-text);
  transition: var(--transition-duration);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .menu-body-header__link:hover {
    color: var(--main-color);
  }
  .menu-body-header__link:hover p {
    color: var(--main-color);
  }
}
@media (any-hover: none) {
  .menu-body-header__link:active {
    color: var(--main-color);
  }
  .menu-body-header__link:active p {
    color: var(--main-color);
  }
}

.actions-body-header {
  display: flex;
}
.actions-body-header__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
}
.actions-body-header__item:first-child {
  padding-inline-start: 0;
}
.actions-body-header__item:last-child {
  padding-inline-end: 0;
}
.actions-body-header__item:not(:last-child) {
  border-inline-end: 0.0625rem solid var(--grey-lines);
}
@media (max-width: 79.99875rem) {
  .actions-body-header__item--search {
    display: none;
  }
}
.lang-box {
  position: relative;
  font-size: 0.8125rem;
  cursor: pointer;
}
.lang-box.active .lang-box__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}
.lang-box.active .lang-box__arrow {
  transform: rotate(-180deg);
}
.lang-box__head {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-box__circle {
  flex-shrink: 0;
}
.lang-box__arrow {
  flex-shrink: 0;
  transition: var(--transition-duration);
  transform-origin: center;
}
.lang-box__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 20;
  top: 100%;
  inset-inline-end: 0;
  width: fit-content;
  min-width: 6.875rem;
  background-color: var(--white);
  box-shadow: 0 0.625rem 0.9375rem rgba(0, 0, 0, 0.1);
  cursor: default;
  transition: var(--transition-duration);
  transform: translate(0, 0.625rem);
  pointer-events: auto;
}

.list-lang {
  display: flex;
  flex-direction: column;
}
.list-lang a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3.5rem;
  padding: 1rem;
}
.list-lang a.checked::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background: url("./images/check-4e5d8822.svg") center/contain no-repeat;
}

.exchange-rates {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.exchange-rates::before, .exchange-rates::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 1.5625rem;
  height: 100%;
}
.exchange-rates::before {
  inset-inline-start: 0;
  background: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0, #000000 80%);
}
.exchange-rates::after {
  inset-inline-end: 0;
  background: linear-gradient(270deg, #000000 20%, hsla(0, 0%, 100%, 0));
}
.exchange-rates__list {
  margin-inline-start: -1.5rem;
  font-size: 0;
  white-space: nowrap;
}
.exchange-rates__item {
  display: inline-block;
  margin-inline-start: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
}
.exchange-rates__item-temp, .exchange-rates__item-minus, .exchange-rates__item-plus {
  display: inline-block;
  padding-inline-start: 0.25rem;
}
.exchange-rates__item-minus {
  color: var(--red);
}
.exchange-rates__item-plus {
  color: var(--bright-green);
}
.exchange-rates__item-temp {
  color: var(--white);
}

.burger-menu__wrap .burger-btn-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #6d8aad;
  border-radius: 0.25rem;
  cursor: pointer;
}
.burger-menu__wrap .burger-btn-menu.active .burger__item::before {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(-45deg);
}
.burger-menu__wrap .burger-btn-menu.active .burger__item::after {
  bottom: 50%;
  width: 100%;
  transform: translateY(50%) rotate(45deg);
}
.burger-menu__wrap .burger__item {
  position: relative;
  width: 1.125rem;
  height: 0.625rem;
}
.burger-menu__wrap .burger__item::before, .burger-menu__wrap .burger__item::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  transition: 0.3s ease;
}
.burger-menu__wrap .burger__item::before {
  top: 0;
}
.burger-menu__wrap .burger__item::after {
  bottom: 0;
}.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
@supports not (overflow: clip) {
  .wrapper {
    overflow: hidden;
  }
}
.wrapper > .page,
.wrapper > main,
.wrapper > main.page {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
@media (min-width: 118.75rem) {
  .wrapper--grid {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr var(--max-width-sidebar-outer-page);
    grid-template-areas: "header bnrs" "main bnrs" "footer footer";
    column-gap: var(--wrapper-column-gap);
    transition: var(--transition-duration);
  }
  .wrapper--grid .header {
    grid-area: header;
    margin-inline-start: 0;
  }
  .wrapper--grid .bnrs {
    grid-area: bnrs;
    align-self: stretch;
  }
  .wrapper--grid .page {
    grid-area: main;
    padding-inline-start: 0;
  }
  .wrapper--grid .footer {
    grid-area: footer;
    margin-inline-start: 0;
  }
}
@media (min-width: 118.75rem) {
  .wrapper--has-sidebar-menu {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: var(--max-width-sidebar-menu) 1fr;
    grid-template-areas: "sidebar-menu header" "sidebar-menu main" "sidebar-menu footer";
    column-gap: 0;
    transition: var(--transition-duration);
  }
  .wrapper--has-sidebar-menu .header {
    grid-area: header;
    margin-inline-start: 0;
  }
  .wrapper--has-sidebar-menu .sidebar-menu {
    grid-area: sidebar-menu;
  }
  .wrapper--has-sidebar-menu .page {
    grid-area: main;
    padding-inline-start: 0;
  }
  .wrapper--has-sidebar-menu .footer {
    grid-area: footer;
    margin-inline-start: 0;
  }
}

.page {
  --page-head-margin-top: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
  --page-head-margin-between: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
  --page-head-margin-bottom: clamp(0.75rem, -7.3269230769rem + 8.9743589744vw, 2.5rem);
  transition: var(--transition-duration);
}
@media (max-width: 79.99875rem) {
  .page {
    padding-top: var(--top-header-height, 0);
  }
}
.page__head {
  margin-top: var(--page-head-margin-top);
}
.page__breadcrumbs {
  margin-top: var(--page-head-margin-top);
  margin-bottom: var(--page-head-margin-between);
}
.page__area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: var(--page-head-margin-between);
  margin-bottom: var(--page-head-margin-bottom);
}
@media (max-width: 79.99875rem) {
  .page__area {
    margin-top: var(--page-head-margin-top);
  }
}
.page__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.page__grid.is-reverse-adaptive {
  flex-direction: column-reverse;
}
@media (min-width: 79.99875rem) {
  .page__grid {
    display: grid;
    grid-template-columns: 1fr 17.75rem;
  }
}
.page__inner > * {
  margin-bottom: var(--section-margin-y);
}
.page__aside > * {
  position: sticky;
  top: var(--viewport-padding-y);
}
.page__aside-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem) clamp(0.75rem, 0.6206896552rem + 0.5747126437vw, 1.25rem);
}

@media (min-width: 89.99875rem) {
  .wrapper--grid .page-content__container {
    padding-inline-end: var(--container-padding-x);
  }
}.breadcrumbs {
  --bread-decor-url: url("./images/arrow-bread-3f506426.svg");
  --bread-decor-size: 1.25rem;
  --bread-space-items: 0.25rem 0.5rem;
  --bread-space-item: 0 0.5rem;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  overflow: auto;
  white-space: nowrap;
  color: var(--second-text-color);
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--bread-space-items);
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--bread-space-item);
  font-size: clamp(0.75rem, 0.6853448276rem + 0.2873563218vw, 1rem);
  font-weight: 500;
  color: var(--grey-text);
}
.breadcrumbs__item:not(:last-child)::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  flex: 0 0 var(--bread-decor-size);
  width: var(--bread-decor-size);
  height: var(--bread-decor-size);
  background: var(--bread-decor-url) center/contain no-repeat;
}
.breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-duration);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .breadcrumbs__link:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .breadcrumbs__link:active {
    color: var(--accent-color);
  }
}
.breadcrumbs__current {
  display: inline-block;
  pointer-events: none;
  user-select: none;
}.icon {
  width: var(--iconSize);
  height: var(--iconSize);
  display: inline-flex;
}
.icon svg {
  width: 100%;
  height: 100%;
}.footer:where(.is-sticky) {
  position: sticky;
  inset-inline: 0;
  bottom: 0;
}
@media (max-width: 79.99875rem) {
  .footer {
    position: relative;
    padding-bottom: 3.4375rem;
  }
}
.color-line {
  display: flex;
}
.color-line__item {
  flex: 1 0 33.333%;
  height: 0.4375rem;
}

.copy-block {
  min-height: 2.5rem;
  padding-block: 0.75rem;
  border-top: 0.0625rem solid var(--grey-lines);
}
.copy-block__wrapper {
  min-height: inherit;
}
.copy-block__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.125rem 1.875rem;
  min-height: inherit;
}
@media (max-width: 79.99875rem) {
  .copy-block__row {
    flex-direction: column;
    align-items: initial;
  }
}
.copy-block__items {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem 0.625rem;
  min-height: inherit;
}
@media (min-width: 79.99875rem) {
  .copy-block__items {
    flex-direction: row;
    justify-content: space-between;
  }
}
.copy-block__item {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1853448276rem + 0.2873563218vw, 0.5rem);
  padding-block: 0.3125rem;
  font-size: 0.875rem;
}
@media (min-width: 79.99875rem) {
  .copy-block__item {
    justify-content: center;
  }
}

.top-footer {
  min-height: 16rem;
  padding-block: clamp(1rem, 0.6120689655rem + 1.724137931vw, 2.5rem);
  color: var(--white);
  background-color: #013566;
}
.top-footer__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 79.99875rem) {
  .top-footer__row {
    flex-direction: column;
  }
}
@media (min-width: 79.99875rem) {
  .top-footer__item.sections-footer {
    flex: 0 0 8.375rem;
  }
  .top-footer__item.detail-sections {
    flex: 0 0 20.25rem;
  }
  .top-footer__item.soc1als {
    flex: 0 0 13rem;
  }
  .top-footer__item.extra-info {
    flex: 0 0 17.125rem;
  }
}

.extra-footer {
  color: rgba(255, 255, 255, 0.6);
  background-color: #002c56;
}
.extra-footer__content {
  padding-block: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
  font-size: 0.75rem;
}
.contacts-footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
  max-width: 18.125rem;
}
.contacts-footer__box {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.contacts-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.contacts-footer__links > a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.contacts-footer__links > a svg {
  flex-shrink: 0;
}
.contacts-footer__langs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contacts-footer__langs li {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
.contacts-footer__langs li:not(:last-child)::after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}
.contacts-footer__langs a {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.contacts-footer__langs a.active {
  font-weight: bold;
  color: var(--white);
}

.sections-footer ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.2780172414rem + 0.4310344828vw, 0.75rem);
}
@media (max-width: 79.99875rem) {
  .sections-footer ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.sections-footer a {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-sections > b {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.detail-sections > b:not(:last-child) {
  margin-bottom: 0.75rem;
}
.detail-sections ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.detail-sections a {
  font-weight: 500;
}

.soc1als > b:not(:last-child) {
  margin-bottom: clamp(0.5rem, 0.4353448276rem + 0.2873563218vw, 0.75rem);
}
.soc1als ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 13.9375rem;
}
.soc1als a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-blue);
  background-color: #b6c4d6;
  border-radius: 50%;
}
.soc1als a .icon {
  flex-shrink: 0;
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.088362069rem + 0.7183908046vw, 1.875rem);
}
.think {
  display: flex;
  gap: 0.75rem;
}
.think__ico {
  flex-shrink: 0;
}
.think__body > b {
  font-weight: 500;
}
.think__body > p {
  font-size: 0.875rem;
}.menu-mobile {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: var(--z-index-burger-menu);
  top: 0;
  inset-inline-start: 0;
  overflow: hidden;
  width: 100%;
  height: calc(100dvh - var(--header-height) + 0.0625rem);
  background-color: var(--background-color-2, #ffffff);
  transition: opacity var(--transition-duration);
}
.menu-mobile.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.menu-mobile__container {
  position: relative;
  height: 100%;
}
.menu-mobile__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.menu-mobile__head {
  flex-shrink: 0;
  min-height: 0;
}
.menu-mobile__body {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  flex-grow: 1;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.menu-mobile__body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.menu-mobile__body > *:last-child {
  margin-bottom: 0.75rem;
}
.menu-mobile__tabs .tabs__content-inner {
  margin-top: -0.375rem;
}

.head-menu-mobile {
  display: flex;
  flex-direction: column;
}
.head-menu-mobile__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  min-height: 1.875rem;
  margin-inline: calc(var(--container-padding-x) * -1);
  padding-top: 0.625rem;
}
.head-menu-mobile__title {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline-start: var(--container-padding-x);
  font-size: 112.5%;
  font-weight: 500;
  text-transform: uppercase;
}
.head-menu-mobile__button-lang {
  padding-inline: var(--container-padding-x);
}
.head-menu-mobile__nav .tabs-navigation__button {
  justify-content: start;
  text-align: start;
}

.menu-mobile-primary {
  row-gap: 0.5rem;
}

.item-menu-mobile-primary {
  width: 100%;
  font-size: 87.5%;
  font-weight: 500;
  color: var(--main-color);
}
.item-menu-mobile-primary.button {
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background-color: var(--background-color);
  border: 0.0625rem solid var(--background-color-3);
  border-radius: var(--border-radius-xxxl);
}
@media (max-width: 79.99875rem) {
  .item-menu-mobile-primary br {
    display: none;
  }
}
.item-menu-mobile-primary .button__text {
  flex-grow: 1;
  text-align: start;
}
@media (max-width: 79.99875rem) {
  .item-menu-mobile-primary {
    font-size: 1rem;
  }
}

.menu-mobile-inner > *:last-child > * {
  border-bottom: 0;
}.tabs {
  --tabsGapAdaptive: 1rem;
}
.tabs--filled .tabs-navigation__button {
  padding: 0.5rem 1.25rem;
}
.tabs--filled .tabs-navigation__button.is-active {
  color: var(--light-text-color);
}
.tabs--filled .tabs-navigation {
  gap: 0;
  background-color: var(--background-color);
  border-radius: var(--border-radius-xxxl);
}
.tabs--filled .tabs-navigation::before {
  content: "";
  height: 100%;
  border-radius: var(--border-radius-xxxl);
}
.tabs.is-accordion.tabs--filled .tabs-navigation__button {
  padding: 0.75rem 1rem;
  color: var(--light-text-color);
  background-color: var(--accent-color);
  border-radius: var(--border-radius-xxxl);
}
.tabs.is-accordion.tabs--filled .tabs-navigation__button.is-active {
  color: var(--light-text-color);
}
.tabs.is-accordion .tabs-navigation__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
}
.tabs.is-accordion .tabs-navigation__button::after {
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  flex-shrink: 0;
  transition: var(--transition-duration);
}
.tabs.is-accordion .tabs-navigation__button.is-active::after {
  transform: rotate(180deg);
}
.tabs.is-accordion .tabs__body {
  display: flex;
  flex-direction: column;
  gap: var(--tabsGapAdaptive);
}
.tabs.is-accordion .tabs__content {
  overflow: hidden;
  display: block;
  margin: 0;
  margin-top: calc(var(--tabsGapAdaptive) * -1);
  transition: max-height var(--transition-duration), padding var(--transition-duration);
}
.tabs__content {
  margin-top: 1rem;
}
.tabs__content:not(.is-active) {
  display: none;
}
.tabs__content-inner {
  margin-top: calc(var(--tabsGapAdaptive) * 1);
  padding-top: 0;
}.tabs-navigation {
  --tabsNavigationActiveButtonWidth: 0;
  --tabsNavigationActiveButtonOffsetLeft: 0;
  --tabsNavigationPadding: 0;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  position: relative;
  overflow-x: auto;
  display: var(--tabsNavigationDisplay, flex);
  column-gap: 1.25rem;
  padding: var(--tabsNavigationPadding);
}
.tabs-navigation::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.tabs-navigation::before {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: var(--tabsNavigationActiveButtonWidth, 0%);
  height: 0.125rem;
  background-color: var(--accent-color);
  transition-duration: var(--transition-duration);
  transform: translateX(var(--tabsNavigationActiveButtonOffsetLeft, 0%));
}
.tabs-navigation--filled {
  gap: 0;
  background-color: var(--background-color);
  border-radius: var(--border-radius-xxxl);
}
.tabs-navigation--filled .tabs-navigation__button {
  padding: 0.5rem 1.25rem;
}
.tabs-navigation--filled .tabs-navigation__button.is-active {
  color: var(--light-text-color);
}
.tabs-navigation--filled::before {
  content: "";
  height: 100%;
  border-radius: var(--border-radius-xxxl);
}
.tabs-navigation__button {
  flex-grow: 1;
  position: relative;
  display: inline-flex;
  justify-content: center;
  padding-block: 0.75rem;
  font-weight: 500;
  text-align: center;
  color: var(--second-text-color);
  cursor: pointer;
  transition: var(--transition-duration);
  user-select: none;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .tabs-navigation__button:hover {
    color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .tabs-navigation__button:active {
    color: var(--accent-color);
  }
}
.tabs-navigation__button.is-active {
  color: var(--main-color);
}.button {
  --btn-min-width: auto;
  --btn-min-height: auto;
  --btn-width: max-content;
  --btn-height: auto;
  --btn-padding-x: 0rem;
  --btn-padding-y: 0rem;
  --btn-gap: clamp(0.25rem, 0.1853448276rem + 0.2873563218vw, 0.5rem);
  --btn-border-width: 0rem;
  --btn-border-style: solid;
  --btn-border-color: currentColor;
  --btn-border: var(--btn-border-width) var(--btn-border-style) var(--btn-border-color);
  --btn-bg-color: transparent;
  --btn-color: currentColor;
  --btn-border-radius: 0rem;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  width: min(var(--btn-width), 100%);
  min-width: var(--btn-min-width);
  height: var(--btn-height);
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: clamp(0.875rem, 0.2980769231rem + 0.641025641vw, 1rem);
  text-align: center;
  color: var(--btn-color) !important;
  background-color: var(--btn-bg-color);
  border: var(--btn-border);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-duration);
}
.button:where(:has(> img, > svg, > .icon)) {
  gap: var(--btn-gap);
}
.button::before {
  content: "";
  position: absolute;
}
.button > .icon,
.button > img,
.button > svg {
  flex-shrink: 0;
}
.button__label {
  position: relative;
  z-index: 3;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .button:hover {
    --btn-color: var(--accent-color);
  }
}
@media (any-hover: none) {
  .button:active {
    --btn-color: var(--accent-color);
  }
}
.button--border-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.9586507073vh;
  text-align: start;
  border-bottom: 0.0625rem solid var(--accent-color-3);
}
@media (max-width: 79.99875rem) {
  .button--border-bottom {
    padding-block: 0.75rem;
  }
}
.button-1 {
  --btn-bg-color: transparent;
  --btn-border-radius: var(--border-radius);
  --btn-padding-y: 0.75rem;
  --btn-padding-x: 1.25rem;
  --btn-min-width: min(19.625rem, 100%);
  --btn-color: var(--dark-blue);
  --btn-border-width: 0.0625rem;
  --btn-border-color: currentColor;
  justify-content: center;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .button-1:hover {
    --btn-bg-color: var(--dark-blue);
    --btn-color: var(--white-color);
    --btn-border-color: currentColor;
  }
}
@media (any-hover: none) {
  .button-1:active {
    --btn-bg-color: var(--dark-blue);
    --btn-color: var(--white-color);
    --btn-border-color: currentColor;
  }
}
.button-1--dark {
  --btn-bg-color: var(--dark-blue);
  --btn-color: var(--white-color);
  --btn-border-color: transparent;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .button-1--dark:hover {
    --btn-bg-color: var(--white-color);
    --btn-color: var(--dark-blue);
    --btn-border-color: currentColor;
  }
}
@media (any-hover: none) {
  .button-1--dark:active {
    --btn-bg-color: var(--white-color);
    --btn-color: var(--dark-blue);
    --btn-border-color: currentColor;
  }
}
.button-1--light {
  --btn-bg-color: var(--white-color);
  --btn-color: var(--dark-blue);
  --btn-border-color: currentColor;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .button-1--light:hover {
    --btn-bg-color: var(--dark-blue);
    --btn-color: var(--white-color);
    --btn-border-color: currentColor;
  }
}
@media (any-hover: none) {
  .button-1--light:active {
    --btn-bg-color: var(--dark-blue);
    --btn-color: var(--white-color);
    --btn-border-color: currentColor;
  }
}
.button-1--gold {
  --btn-bg-color: var(--gold);
  --btn-color: var(--white-color);
  --btn-border-color: transparent;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .button-1--gold:hover {
    --btn-bg-color: var(--white-color);
    --btn-color: var(--gold);
    --btn-border-color: currentColor;
  }
}
@media (any-hover: none) {
  .button-1--gold:active {
    --btn-bg-color: var(--white-color);
    --btn-color: var(--gold);
    --btn-border-color: currentColor;
  }
}

.buttons {
  --buttons-gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
  display: flex;
  gap: var(--buttons-gap);
}

.button-nav {
  font-weight: 500;
  text-align: start;
}
.button-nav .icon {
  background-color: var(--background-color-3);
  border-radius: 50%;
}.pc-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: var(--z-index-burger-menu);
  top: var(--header-height, 0);
  inset-inline-start: 0;
  overflow: hidden auto;
  width: 100%;
  height: calc(100dvh - var(--header-height) + 0);
  background-color: gray;
  border: 0.0625rem solid red;
  transition: opacity var(--transition-duration);
}
.pc-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.pc-menu__container {
  height: 100%;
}
.pc-menu__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 100%;
}
.pc-menu__head {
  flex-shrink: 0;
  min-height: 0;
  padding-block: 0.5rem;
}
.pc-menu__body {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  flex-grow: 1;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.pc-menu__body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.pc-menu__footer {
  flex-shrink: 0;
  min-height: 0;
  padding-block: 0.5rem;
}.grid {
  --gridColumns: 1;
  display: grid;
  grid-template-columns: repeat(var(--gridColumns), 1fr);
  gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem) clamp(0.75rem, 0.6206896552rem + 0.5747126437vw, 1.25rem);
}
.grid--2 {
  --gridColumns: 2;
}
.grid--2:has(.grid__item:nth-child(odd):not(:only-child)) .grid__item:nth-child(odd):last-child {
  grid-column: -1/1;
}
.grid--3 {
  --gridColumns: 3;
}
@media (max-width: 61.99875rem) {
  .grid--3 {
    --gridColumns: 2;
  }
  .grid--3 .grid__item:nth-child(odd):last-child {
    grid-column: -1/1;
  }
}
.grid--4 {
  --gridColumns: 4;
}
.grid--no-row-gap {
  row-gap: 0;
}
.grid--no-column-gap {
  column-gap: 0;
}
@media (max-width: 47.99875rem) {
  .grid {
    --gridColumns: 1;
  }
}
.grid__item > * {
  height: 100%;
}.html-content {
  font-size: clamp(0.875rem, 0.7780172414rem + 0.4310344828vw, 1.25rem);
}
.html-content > *:not(:last-child) {
  margin-bottom: 0.75em;
}
.html-content *:not(:is(h1, h2, h3, h4, h5, h6))[style*=font-size] {
  font: inherit !important;
}
.html-content *:not(hr):empty {
  margin: 0 !important;
}
.html-content h1:not(:last-child),
.html-content h2:not(:last-child),
.html-content h3:not(:last-child),
.html-content h4:not(:last-child),
.html-content h5:not(:last-child),
.html-content h6:not(:last-child) {
  margin-bottom: 0.85716em;
}
.html-content span {
  display: initial;
}
.html-content a {
  color: unset;
  color: var(--accent-color);
}
.html-content a:hover, .html-content a:focus {
  text-decoration: underline;
}
.html-content a[class] {
  text-decoration: none;
}
.html-content ul li:not(:last-child),
.html-content ol li:not(:last-child) {
  margin-bottom: 1em;
}
.html-content ul:not([class]) li {
  position: relative;
}
.html-content ul:not([class]) li *:not(:last-child) {
  margin-bottom: 0.66em;
}
.html-content ul:not([class]) li:not(:last-child) {
  margin-bottom: 1em;
}
.html-content ul:not([class]) li::before {
  content: "";
  flex-shrink: 0;
  width: 0.66em;
  height: 0.66em;
  margin: 0.3em 0.6701em 0 0;
  background-color: var(--accent-color);
  border-radius: 50%;
}
.html-content ul:not([class]) {
  gap: 0;
  list-style-type: disc;
}
.html-content ul:not([class]) li {
  display: list-item;
}
.html-content ul:not([class]) li::before {
  display: none;
}
.html-content ul:not([class]) li::marker {
  color: var(--accent-color);
}
.html-content ul:not([class]) {
  padding-inline-start: 1.2em;
  padding-inline-start: 2ch;
}
.html-content ol li::marker {
  font-weight: 700;
}
.html-content video,
.html-content iframe,
.html-content img {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.html-content video:not(:last-child),
.html-content iframe:not(:last-child),
.html-content img:not(:last-child) {
  margin-bottom: 0.66em !important;
}
.html-content video[align=left],
.html-content iframe[align=left],
.html-content img[align=left] {
  float: inline-start;
  margin: 0 1em 0.5em 0 !important;
}
.html-content video[align=right],
.html-content iframe[align=right],
.html-content img[align=right] {
  float: inline-end;
  margin: 0 0 1em 0.5em !important;
}
.html-content video[align=center],
.html-content iframe[align=center],
.html-content img[align=center] {
  display: block;
  margin: 0 auto;
}
.html-content video[align=left] + p::after,
.html-content video[align=right] + p::after,
.html-content iframe[align=left] + p::after,
.html-content iframe[align=right] + p::after,
.html-content img[align=left] + p::after,
.html-content img[align=right] + p::after {
  content: "";
  display: table;
  clear: both;
}
.html-content u {
  text-underline-offset: 0.3125em;
}
.html-content ol {
  padding-inline-start: 0;
  list-style: none;
  counter-reset: custom-counter;
}
.html-content ol > li {
  position: relative;
  column-gap: clamp(0.5rem, 0.4353448276rem + 0.2873563218vw, 0.75rem);
  padding-inline-start: 2.25em;
  counter-increment: custom-counter;
}
.html-content ol > li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  content: counter(custom-counter);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  font-size: 87.5%;
  line-height: 1;
  border: 0.0625rem solid currentColor;
  border-radius: 50%;
}

.blockquote, .html-content mark {
  display: inline-block;
  padding: 0.75em 1.25em;
  font-weight: 500;
  background-color: #e4ebf1;
  border-inline-start: 0.125em solid var(--accent-color);
}
.blockquote > *:not(:last-child), .html-content mark > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.html-content .blockquote, .html-content mark {
  margin-block: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
}

.table:has(> table) {
  overflow: auto;
}

table {
  width: 100%;
}
table th,
table td {
  padding: 0.5em 0.75em;
  border: 0.0625em solid var(--accent-color);
}
table th {
  font-weight: 700;
  vertical-align: middle;
}
table tr {
  background-color: var(--background-color);
}
table td > *:not(:last-child) {
  margin-bottom: 1em;
}

hr {
  margin-block: 0.5em;
  color: inherit;
  border: 0;
  border-top: 0.0625rem solid var(--accent-color-3);
}.slider-section {
  --swiper-pagination-bottom: 0;
  --swiper-pagination-bullet-border-radius: 0.25rem;
  --swiper-pagination-bullet-width: min(6.25rem, 100%);
  --swiper-pagination-bullet-height: 0.25rem;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.42);
  --swiper-pagination-color: rgba(255, 255, 255, 0.42);
  --swiper-pagination-min-height: 3.25rem;
  position: relative;
  min-width: 0;
}
.slider-section:not(.is-init) .slider-section__buttons,
.slider-section:not(.is-init) .slider-section__pagination {
  display: none;
}
@media (max-width: 79.99875rem) {
  .slider-section {
    --swiper-pagination-min-height: 2rem;
  }
}
.slider-section--has-caption {
  --swiper-pagination-bottom: 2.1875rem;
}
.slider-section--small-navigation .swiper-button {
  --iconSize: clamp(0.6875rem, 0.6228448276rem + 0.2873563218vw, 0.9375rem);
  width: clamp(2rem, 1.8060344828rem + 0.8620689655vw, 2.75rem);
  height: clamp(2rem, 1.8060344828rem + 0.8620689655vw, 2.75rem);
  color: var(--white);
  background-color: var(--grey-lines);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .slider-section--small-navigation .swiper-button:hover {
    background-color: var(--grey);
  }
}
@media (any-hover: none) {
  .slider-section--small-navigation .swiper-button:active {
    background-color: var(--grey);
  }
}
.slider-section--abs-nav {
  padding-bottom: 1.25rem;
}
@media (min-width: 47.99875rem) {
  .slider-section--abs-nav {
    padding-bottom: 1.875rem;
  }
}
.slider-section--abs-nav .swiper-buttons {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
}
.slider-section--abs-nav .slider-section__pagination {
  position: absolute;
  z-index: 5;
  right: 5.625rem;
  bottom: 0.75rem;
}
.slider-section--abs-nav .slide-news-card figcaption {
  padding-right: 9.375rem;
}
.slider-section__inner.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.slider-section__item > * {
  min-height: inherit;
}
.slider-section__buttons {
  position: relative;
  z-index: 5;
}
.slider-section__pagination {
  position: relative;
  z-index: 5;
}
.slider-section__pagination:not(:has(.swiper-pagination--relative)) {
  margin-inline: var(--container-padding-x);
}
.slider-section__destroy-button {
  position: absolute;
  z-index: 5;
  top: clamp(1.25rem, -1.6346153846rem + 3.2051282051vw, 1.875rem);
  inset-inline-end: var(--viewport-padding-x);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .slider-section__destroy-button:hover svg path {
    stroke: var(--accent-color);
  }
}
@media (any-hover: none) {
  .slider-section__destroy-button:active svg path {
    stroke: var(--accent-color);
  }
}

.swiper-navigation-icon {
  display: none;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.75rem;
}
.swiper-pagination:not(.swiper-pagination-fraction) {
  min-height: var(--swiper-pagination-min-height);
}
.swiper-pagination--accent {
  --swiper-pagination-bullet-inactive-color: rgba(110, 139, 172, 0.6);
  --swiper-pagination-color: rgba(110, 139, 172, 0.6);
}
.swiper-pagination--accent .swiper-pagination-bullet::before {
  background-color: var(--dark-blue);
}
.swiper-pagination--relative {
  position: relative;
}

.swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  width: min(6.25rem, 100%);
  border-radius: 0.25rem;
  transition: var(--transition-duration);
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  background-color: var(--white);
  transition: width var(--transition-duration) linear;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .swiper-pagination-bullet:hover {
    --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.77);
  }
}
@media (any-hover: none) {
  .swiper-pagination-bullet:active {
    --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.77);
  }
}

.swiper-pagination-fraction {
  position: static;
  display: inline-flex;
  column-gap: 0.125rem;
  width: auto;
}
.swiper-pagination-fraction > * {
  flex-grow: initial !important;
}

.swiper-buttons {
  display: flex;
  gap: 0.375rem;
}

.swiper-button {
  width: clamp(2.75rem, 2.588362069rem + 0.7183908046vw, 3.375rem);
  height: clamp(2.75rem, 2.588362069rem + 0.7183908046vw, 3.375rem);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: static;
  margin: 0;
  color: inherit;
  background-color: rgba(110, 139, 172, 0.17);
  border-radius: 50%;
  backdrop-filter: blur(0.65rem);
}
.slider-view .news-card__img-item.ibg {
  padding-bottom: 177.9359430605%;
}

.slider-quote .slider-section__inner.swiper-initialized .quote-card {
  padding-bottom: var(--swiper-pagination-min-height);
}

.slider-news .swiper-pagination {
  inset: calc(var(--height-img, 0) - var(--swiper-pagination-min-height)) 0.75rem auto;
  width: auto;
}
.slider-news .slider-section__pagination {
  position: static;
}

.slider-blog .swiper-pagination {
  --swiper-pagination-min-height: 0;
  margin-top: 0.75rem;
}
@media (min-width: 47.99875rem) {
  .slider-blog .swiper-pagination {
    width: calc(50% - 1.25rem);
    margin-top: calc(var(--swiper-pagination-min-height) * -1);
    margin-left: auto;
  }
}.banner {
  position: relative;
}
.banner--no-radius .banner__bg {
  border-radius: 0;
}
.banner__wrapper {
  position: relative;
  z-index: 5;
  min-height: inherit;
}
.banner__bg {
  overflow: hidden;
  display: block;
  border-radius: var(--border-radius);
}
.banner__bg > * {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-duration);
}
.banner__bg.has-overlay::before {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
  content: "";
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: inherit;
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.banner__bg:hover > * {
    transform: scale(1.015);
  }
}
@media (any-hover: none) {
  a.banner__bg:active > * {
    transform: scale(1.015);
  }
}.page-about .section {
  padding-block: max(8vh, 1.5rem);
}
@media (max-width: 85.37375rem) {
  .page-about .section {
    padding-block: 2.5rem;
  }
}
@media (max-width: 79.99875rem) {
  .page-about .section {
    min-height: unset;
  }
}
.page-about .section--accent {
  color: var(--white);
  background-color: var(--accent-color);
}
.page-about .section--accent .section__suptitle {
  color: inherit;
}
.page-about .section--accent .section__suptitle::before {
  background-color: var(--white);
}
.page-about .section--accent .section__title {
  color: inherit;
}
.page-about .section--accent .item-goals__title {
  color: inherit;
}
.page-about .section--accent .goals-items > * {
  border-color: currentColor;
}
.page-about .section--accent .goals-items > * > * {
  border-color: currentColor;
}
.page-about .page__inner > * {
  margin-bottom: 0;
}
.page-about .section__blockquote {
  max-width: 75rem;
  margin-inline: auto;
}
.page-about .primary-blockquote__content {
  align-self: center;
}

.page-about__media-tour.section:last-child {
  padding-bottom: 0;
}
.page-about__ideals.section {
  padding-bottom: 1.5rem;
}

.title-2 {
  font-size: clamp(1.75rem, 0.9579741379rem + 3.5201149425vw, 4.8125rem);
  font-weight: bold;
  line-height: 1.2;
  color: var(--accent-color);
}

.title-3 {
  font-size: clamp(1.75rem, 1.6206896552rem + 0.5747126437vw, 2.25rem);
  font-weight: bold;
  line-height: 1.2;
  color: var(--accent-color);
}

.subtitle {
  font-size: clamp(1.125rem, -2.9134615385rem + 4.4871794872vw, 2rem);
  color: var(--gold);
}

.note {
  font-size: 0.875rem;
  color: var(--grey);
}

.page-about {
  line-height: 1.2;
}
.page-about .html-content {
  line-height: 1.4;
}

.section--no-full {
  min-height: unset !important;
}
.section--small-padding.section {
  padding-block: max(7vh, 1.5rem);
}
.section__title:not(:last-child) {
  margin-bottom: 0.66em;
}
.section__suptitle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  letter-spacing: -0.0375rem;
  text-transform: uppercase;
  color: var(--gold);
}
.section__suptitle::before {
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  flex-shrink: 0;
  background-color: var(--gold);
}
.section__suptitle:not(:last-child) {
  margin-bottom: 2em;
}
.section__subtitle {
  max-width: 75rem;
}
.section__subtitle:not(:last-child) {
  margin-bottom: 2em;
}
.section__title-3:not(:last-child) {
  margin-bottom: 1em;
}
.section__blockquote {
  margin-block: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.section__note:not(:last-child) {
  margin-bottom: 2em;
}
.section__flex {
  display: flex;
  gap: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (max-width: 79.99875rem) {
  .section__flex {
    flex-direction: column;
  }
}
.section__flex:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.section__flex .section__subtitle {
  margin-bottom: 0;
}
.section__text {
  font-size: clamp(0.875rem, 0.7780172414rem + 0.4310344828vw, 1.25rem);
}
.section__text:not(:last-child) {
  margin-bottom: 1em;
}

.grid__item:has(.content__img) {
  align-self: start;
}

.sidebar-menu {
  position: sticky;
  z-index: var(--z-index-sidebar-menu);
  top: 0;
  height: 100dvh;
}

.hero-about {
  position: relative;
  min-height: 100dvh;
}
@media (max-width: 79.99875rem) {
  .hero-about {
    aspect-ratio: 16/9;
  }
}

.video-section {
  position: relative;
  min-height: 100dvh;
}
@media (max-width: 79.99875rem) {
  .video-section {
    aspect-ratio: 16/9;
  }
}

.media-network__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-network__content ul {
  color: var(--gold);
}

.text, .analitic__content {
  font-size: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
}

.bnr-about {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100dvh;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 79.99875rem) {
  .bnr-about {
    aspect-ratio: 16/9;
  }
}
.bnr-about--fixed {
  background-attachment: fixed;
}
.bnr-about.section {
  padding: 2rem;
}

.goals-items {
  column-gap: 0;
}
@media (min-width: 79.99875rem) {
  .goals-items > * > * {
    border-right: 0.0625rem solid var(--accent-color);
  }
  .goals-items > *:first-child {
    border-left: 0.0625rem solid var(--accent-color);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .goals-items {
    --gridColumns: 2;
    column-gap: 0.625rem;
  }
}

.item-goals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
}
@media (min-width: 79.99875rem) {
  .item-goals {
    padding: 1.25rem;
  }
}
.item-goals__ico {
  flex-shrink: 0;
}
.item-goals__ico:not(:last-child) {
  margin-bottom: clamp(1.25rem, -7.4038461538rem + 9.6153846154vw, 3.125rem);
}
.item-goals__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.item-goals__subtitle {
  font-weight: bold;
}
.item-goals__text--grey {
  color: var(--grey);
}
.item-goals__title {
  font-size: clamp(3.75rem, -2.0192307692rem + 6.4102564103vw, 5rem);
  font-weight: bold;
  color: var(--accent-color);
}

.numbers__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.numbers__goals {
  max-width: 81.25rem;
}

.activity-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 79.99875rem) {
  .activity-items {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: "i1 i1 i1 i1 i1 i1 i2 i2 i2 i3 i3 i3" "i4 i4 i4 i5 i5 i5 i2 i2 i2 i6 i6 i6";
  }
}
.activity-items__item:nth-child(n+7) {
  grid-area: auto !important;
  grid-column: span 3 !important;
}

.item-activity {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  min-height: clamp(20rem, 1.25rem + 20.8333333333vw, 24.0625rem);
  padding: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
  border-radius: var(--border-radius);
}
.item-activity__wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--white);
}
.item-activity__title {
  font-size: clamp(1rem, -0.1538461538rem + 1.2820512821vw, 1.25rem);
}
.item-activity__text {
  font-size: clamp(0.75rem, 0.1730769231rem + 0.641025641vw, 0.875rem);
}
.item-activity__bg::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 15, 29, 0.8));
}

.partners {
  background-color: #dde4ec;
}

.partners-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3.75rem, -7.7884615385rem + 12.8205128205vw, 6.25rem);
  max-width: 75rem;
  margin-inline: auto;
  background-position: 100% 2%;
  background-size: 21.875rem 21.875rem;
  background-repeat: no-repeat;
}

.benef-part {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, -3.2692307692rem + 6.4102564103vw, 3.75rem);
  min-height: 21.875rem;
}
.benef-part__item {
  max-width: 56.25rem;
}

.item-benef-part {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 79.99875rem) {
  .item-benef-part {
    align-items: center;
  }
}
.item-benef-part__head {
  display: flex;
  align-items: end;
  gap: 2.5rem;
}
@media (max-width: 79.99875rem) {
  .item-benef-part__head {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.item-benef-part__title {
  font-size: 6.25rem;
  line-height: 0.9;
}
@media (max-width: 79.99875rem) {
  .item-benef-part__title {
    font-size: 3.75rem;
    text-align: center;
  }
}
.item-benef-part__subtitle {
  font-size: clamp(1rem, 0.4230769231rem + 0.641025641vw, 1.125rem);
  color: var(--accent-color);
}
@media (max-width: 79.99875rem) {
  .item-benef-part__subtitle {
    text-align: center;
  }
}
.item-benef-part__text {
  font-size: clamp(1rem, -0.1538461538rem + 1.2820512821vw, 1.25rem);
}

.colleagues__head:not(:last-child) {
  margin-bottom: clamp(1.5rem, -4.5576923077rem + 6.7307692308vw, 2.8125rem);
}
.colleagues__items {
  --cols-pc: 3;
  --cols-tab: 3;
  --cols-mob: 1;
  --r-gap-pc: 80;
  --r-gap-mob: 40;
  display: flex;
  flex-wrap: wrap;
}
.colleagues__items.swiper-wrapper {
  flex-wrap: nowrap;
}
@media (min-width: 79.99875rem) {
  .colleagues__items > * {
    flex: 0 0 calc(100% / var(--cols-pc, 3));
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .colleagues__items > * {
    flex: 0 0 calc(100% / var(--cols-tab, var(--cols-pc, 2)));
  }
}
@media (max-width: 47.99875rem) {
  .colleagues__items > * {
    flex: 0 0 calc(100% / var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))));
  }
}
@media (min-width: 79.99875rem) {
  .colleagues__items {
    row-gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem);
    margin: 0 calc(var(--space-items-pc, 24) / -2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .colleagues__items {
    row-gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem);
    margin: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / -2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .colleagues__items {
    row-gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem);
    margin: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / -2 * 0.0625rem);
  }
}
@media (min-width: 79.99875rem) {
  .colleagues__items > * {
    padding: 0 calc(var(--space-items-pc, 24) / 2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .colleagues__items > * {
    padding: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / 2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .colleagues__items > * {
    padding: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / 2 * 0.0625rem);
  }
}
.partners-head {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.0961538462rem + 1.2820512821vw, 1.5rem);
}
.partners-head__text {
  font-size: clamp(1rem, -0.1538461538rem + 1.2820512821vw, 1.25rem);
}
.partners-head__text:not(:last-child) {
  margin-bottom: 0.4em;
}

.item-colleagues {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
}
.item-colleagues__ico {
  flex-shrink: 0;
}
.item-colleagues__text {
  font-size: clamp(1rem, -0.1538461538rem + 1.2820512821vw, 1.25rem);
}

.adv-part__head:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.adv-part__items {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.5rem, -14.5rem + 16.6666666667vw, 3.75rem);
}
@media (min-width: 79.99875rem) {
  .adv-part__items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: "i1 i1 i1 i1 i1 i1 i2 i2 i2 i2 i2 i2" "i3 i3 i3 i3 i4 i4 i4 i4 i5 i5 i5 i5";
  }
}
.adv-part__item:nth-child(n+6) {
  grid-area: auto !important;
  grid-column: span 4 !important;
}
@media (min-width: 79.99875rem) {
  .adv-part__item:nth-child(4), .adv-part__item:nth-child(odd):not(:last-child) {
    border-right: 0.0625rem solid var(--grey-lines);
  }
}
@media (max-width: 79.99875rem) {
  .adv-part__item:not(:last-child) {
    border-bottom: 0.0625rem solid var(--grey-lines);
  }
}

.item-adv-part {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -2.2115384615rem + 3.8461538462vw, 2rem);
  padding-inline: 2.5rem;
  text-align: center;
}
@media (max-width: 79.99875rem) {
  .item-adv-part {
    padding: 2rem 0.3125rem;
  }
}
.item-adv-part__title {
  font-size: clamp(1.375rem, 1.2780172414rem + 0.4310344828vw, 1.75rem);
  color: var(--accent-color);
}
.item-adv-part__text {
  font-size: clamp(1rem, 0.4230769231rem + 0.641025641vw, 1.125rem);
}

.sectors {
  --cols-pc: 3;
  --cols-tab: 2;
  --cols-mob: 1;
  --space-items-pc: 32;
  --space-items-tab: 20;
  max-width: 75rem;
  margin-inline: auto;
  display: grid;
}
@media (min-width: 79.99875rem) {
  .sectors {
    grid-template-columns: repeat(var(--cols-pc, 3), 1fr);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .sectors {
    grid-template-columns: repeat(var(--cols-tab, var(--cols-pc, 2)), 1fr);
  }
}
@media (max-width: 47.99875rem) {
  .sectors {
    grid-template-columns: repeat(var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))), 1fr);
  }
}
@media (min-width: 79.99875rem) {
  .sectors {
    gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem) calc(var(--space-items-pc, 24) * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .sectors {
    gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem) calc(var(--space-items-tab, var(--space-items-pc, 16)) * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .sectors {
    gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem) calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) * 0.0625rem);
  }
}
.sectors.swiper-wrapper {
  gap: 0;
}
.item-sectors {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 13.75rem;
  padding: clamp(1.25rem, -4.5192307692rem + 6.4102564103vw, 2.5rem);
  border-radius: var(--border-radius);
}
.item-sectors__wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, -2.7115384615rem + 3.8461538462vw, 1.5rem);
  color: var(--white);
}
.item-sectors__ico {
  width: clamp(2.5rem, -0.3846153846rem + 3.2051282051vw, 3.125rem);
  height: clamp(2.5rem, -0.3846153846rem + 3.2051282051vw, 3.125rem);
  flex-shrink: 0;
}
.item-sectors__title {
  font-size: clamp(1.375rem, -0.3557692308rem + 1.9230769231vw, 1.75rem);
  text-transform: uppercase;
}
.item-sectors__bg::before {
  background-color: var(--overlay-color-sector);
}
.item-sectors__bg img {
  transition: var(--transition-duration);
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.item-sectors:hover .item-sectors__bg img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  a.item-sectors:active .item-sectors__bg img {
    transform: scale(1.05);
  }
}

.flags-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.flag-lang {
  width: clamp(2.5rem, -3.2692307692rem + 6.4102564103vw, 3.75rem);
  height: clamp(2.5rem, -3.2692307692rem + 6.4102564103vw, 3.75rem);
  flex-shrink: 0;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
}

.info-system__body {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (max-width: 47.99875rem) {
  .info-system__head {
    align-items: center;
  }
}
@media (min-width: 79.99875rem) {
  .info-system__grid {
    align-items: center;
  }
}
.info-system__content {
  display: flex;
  gap: clamp(1.25rem, -4.5192307692rem + 6.4102564103vw, 2.5rem);
  height: auto;
}
@media (max-width: 79.99875rem) {
  .info-system__content {
    flex-direction: column;
    align-items: start;
  }
}
.info-system__titles {
  flex-shrink: 0;
}
.info-system__text {
  flex: 0 0 50%;
  align-self: center;
}
@media (max-width: 47.99875rem) {
  .info-system__text {
    text-align: center;
  }
}
.info-system__img {
  max-width: 44.25rem;
  margin-left: auto;
}

@media (min-width: 47.99875rem) {
  .broadcasting.section {
    padding-bottom: 0;
  }
}
.broadcasting__items {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 75rem;
  margin-inline: auto;
}
.broadcasting__items:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (max-width: 79.99875rem) {
  .broadcasting__items {
    gap: 1.25rem;
  }
}
.broadcasting__item:first-child .item-broadcasting__ico::before {
  display: none;
}

.item-broadcasting {
  display: flex;
  gap: 1.25rem;
}
.item-broadcasting__ico {
  width: clamp(2.5rem, -0.3846153846rem + 3.2051282051vw, 3.125rem);
  height: clamp(2.5rem, -0.3846153846rem + 3.2051282051vw, 3.125rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  background-color: var(--white);
  border: 0.125rem solid var(--gold);
  border-radius: 50%;
}
.item-broadcasting__ico > * {
  width: 100%;
  height: 100%;
}
.item-broadcasting__ico::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 50%;
  width: 0.125rem;
  height: 18.75rem;
  background-color: var(--gold);
  transform: translateX(-50%);
}
.broadcasting-policy {
  max-width: 75rem;
  margin-inline: auto;
}
.broadcasting-policy__row {
  display: flex;
  column-gap: clamp(2.5rem, -29.2307692308rem + 35.2564102564vw, 9.375rem);
}
@media (max-width: 79.99875rem) {
  .broadcasting-policy__row {
    flex-direction: column;
    row-gap: 2.5rem;
  }
}
.broadcasting-policy__main {
  flex-grow: 1;
}
.broadcasting-policy__title:not(:last-child) {
  margin-bottom: 1em;
}
.broadcasting-policy__content:not(:last-child) {
  margin-bottom: 1.25rem;
}
.broadcasting-policy__adv {
  flex: 0 0 17%;
}

.broadcasting-adv__list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .broadcasting-adv__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 80%;
    margin-inline: auto;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.99875rem) {
  .broadcasting-adv__list {
    max-width: 60%;
    margin-inline: auto;
  }
}
.item-broadcasting-adv {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.item-broadcasting-adv__img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}
.item-broadcasting-adv__img-item {
  padding-bottom: 100%;
}
.item-broadcasting-adv__text {
  font-size: 0.875rem;
  text-align: center;
}

.analitic__content {
  line-height: 1.4;
}

.media-prod__title:not(:last-child) {
  margin-bottom: 1em;
}

.anchors-links {
  display: flex;
  flex-direction: column;
}
.anchors-links__item > * {
  border-bottom: 0.0625rem solid var(--gold);
}
.anchors-links__item:first-child > * {
  border-top: 0.0625rem solid var(--gold);
}

.anchors-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0.625rem;
}
@media (max-width: 79.99875rem) {
  .anchors-link {
    flex-direction: column;
    align-items: start;
    padding: 1.5rem 0;
  }
}
.anchors-link__title {
  position: relative;
  font-size: clamp(1.375rem, -2.6634615385rem + 4.4871794872vw, 2.25rem);
  color: var(--gold);
}
.anchors-link__title::before {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.625rem;
  height: 0.625rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  content: "";
  background-color: var(--gold);
  border-radius: 50%;
  transition: var(--transition-duration);
}
.anchors-link__title span {
  transition: var(--transition-duration);
}
.anchors-link__ico {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  transition: var(--transition-duration);
}
@media (min-width: 79.99875rem) {
  .anchors-link__ico {
    visibility: hidden;
    opacity: 0;
  }
}
.anchors-link__text {
  max-width: 20%;
  font-size: 0.875rem;
  transition: var(--transition-duration);
}
@media (min-width: 79.99875rem) {
  .anchors-link__text {
    visibility: hidden;
    opacity: 0;
  }
}
@media (max-width: 79.99875rem) {
  .anchors-link__text {
    max-width: unset;
  }
}
.anchors-link__link {
  text-decoration: underline;
  transition: var(--transition-duration);
}
@media (min-width: 79.99875rem) {
  .anchors-link__link {
    visibility: hidden;
    opacity: 0;
  }
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.anchors-link:hover {
    color: var(--white);
    background-color: var(--accent-color);
  }
  a.anchors-link:hover .anchors-link__title {
    color: var(--white);
  }
  a.anchors-link:hover .anchors-link__title::before {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background-color: var(--white);
  }
  a.anchors-link:hover .anchors-link__title span {
    transform: translate(1.25rem, 0);
  }
  a.anchors-link:hover .anchors-link__ico {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  a.anchors-link:hover .anchors-link__text {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  a.anchors-link:hover .anchors-link__link {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media (any-hover: none) {
  a.anchors-link:active {
    color: var(--white);
    background-color: var(--accent-color);
  }
  a.anchors-link:active .anchors-link__title {
    color: var(--white);
  }
  a.anchors-link:active .anchors-link__title::before {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background-color: var(--white);
  }
  a.anchors-link:active .anchors-link__title span {
    transform: translate(1.25rem, 0);
  }
  a.anchors-link:active .anchors-link__ico {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  a.anchors-link:active .anchors-link__text {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  a.anchors-link:active .anchors-link__link {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.culture .content__content .html-content {
  font-size: inherit;
}
.culture__grid:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.culture__numbers > .section__title {
  margin-bottom: 2em;
}
.culture__items {
  max-width: 75rem;
}

@media (max-width: 79.99875rem) {
  .content__grid {
    grid-template-columns: 1fr;
  }
}
.content__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
}
.content__content h3 {
  font-size: clamp(1.5rem, 1.4030172414rem + 0.4310344828vw, 1.875rem);
  color: var(--accent-color);
}
.content__content b {
  color: var(--accent-color);
}
.content__button {
  --btn-min-width: min(12.5rem, 100%);
}
.content__img {
  align-self: start;
  overflow: hidden;
  display: flex;
  justify-content: end;
  border-radius: var(--border-radius);
}

@media (min-width: 79.99875rem) {
  .agriculture__goals {
    flex: 0 0 20%;
  }
}
.agriculture__body {
  max-width: 81.25rem;
  margin-inline: auto;
}

.item-agriculture {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.item-agriculture__img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.item-agriculture__img img {
  transition: var(--transition-duration);
}
.item-agriculture__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.item-agriculture__title {
  font-size: clamp(1.25rem, -2.2115384615rem + 3.8461538462vw, 2rem);
  color: var(--gold);
}
.item-agriculture__text {
  font-size: clamp(1rem, 0.9676724138rem + 0.1436781609vw, 1.125rem);
  color: var(--white-color);
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.item-agriculture:hover .item-agriculture__img img {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  a.item-agriculture:active .item-agriculture__img img {
    transform: scale(1.05);
  }
}

.sovereignty__numbers:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.sovereignty__numbers > .section__title:not(:last-child) {
  margin-bottom: 2em;
}
.sovereignty__items {
  max-width: 81.25rem;
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .sovereignty__items {
    --gridColumns: 3;
  }
}
.sovereignty__grid:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}

.humanitary__items {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
  max-width: 87.5rem;
  margin-inline: auto;
}
@media (min-width: 79.99875rem) {
  .humanitary__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "i2 i1 i1 i4" "i3 i1 i1 i5";
  }
}
.humanitary__item:nth-child(n+6) {
  grid-area: auto !important;
  grid-column: span 1 !important;
}

.item-humanitary {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  min-height: 11.5625rem;
  padding: clamp(1.5rem, -3.1153846154rem + 5.1282051282vw, 2.5rem);
  background-color: var(--gold);
  border-radius: var(--border-radius);
}
@media (min-width: 79.99875rem) {
  .item-humanitary {
    min-height: 17.5rem;
  }
}
.item-humanitary--img {
  min-height: 17.5rem;
}
.item-humanitary__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, -1.3076923077rem + 2.5641025641vw, 1.5rem);
  min-height: inherit;
  color: var(--white);
}
.item-humanitary__head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.6538461538rem + 1.2820512821vw, 0.75rem);
}
.item-humanitary__title {
  font-size: clamp(1.125rem, 0.5480769231rem + 0.641025641vw, 1.25rem);
}
.item-humanitary__text {
  font-size: clamp(0.875rem, 0.2980769231rem + 0.641025641vw, 1rem);
}
.item-humanitary__ico {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: auto;
  color: var(--accent-color);
  background-color: var(--white);
  border-radius: 50%;
  transition: var(--transition-duration);
}
@media (any-hover: hover) and (any-pointer: fine) {
  a.item-humanitary:hover .item-humanitary__ico {
    background-color: var(--grey-lines);
  }
}
@media (any-hover: none) {
  a.item-humanitary:active .item-humanitary__ico {
    background-color: var(--grey-lines);
  }
}

.media-tour__grid:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
.media-tour__goals:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .media-tour__goals {
    --gridColumns: 3;
  }
}
.media-tour__items {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
  max-width: 75rem;
  margin-inline: auto;
}
.media-tour__items:not(:last-child) {
  margin-bottom: clamp(2.5rem, -9.0384615385rem + 12.8205128205vw, 5rem);
}
@media (min-width: 79.99875rem) {
  .media-tour__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .media-tour__items {
    max-width: 80%;
  }
}
.item-media-tour {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  min-height: clamp(12.5rem, -16.3461538462rem + 32.0512820513vw, 18.75rem);
  padding: 1.25rem;
  border-radius: var(--border-radius);
}
.item-media-tour__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  min-height: inherit;
}
.item-media-tour__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
}
.item-media-tour__title {
  font-size: clamp(1.25rem, -2.2115384615rem + 3.8461538462vw, 2rem);
  text-align: center;
  transition: var(--transition-duration);
}
@media (min-width: 79.99875rem) {
  .item-media-tour__title {
    transform: translate(0, 1.875rem);
  }
}
.item-media-tour__button {
  --btn-min-width: min(9.375rem, 100%);
  transition: var(--transition-duration);
  pointer-events: none !important;
}
@media (min-width: 79.99875rem) {
  .item-media-tour__button {
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -1.875rem);
  }
}
.item-media-tour__bg {
  transition: var(--transition-duration);
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.item-media-tour:hover .item-media-tour__button {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
  }
  a.item-media-tour:hover .item-media-tour__title {
    transform: translate(0, 0);
  }
  a.item-media-tour:hover .item-media-tour__bg {
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  a.item-media-tour:active .item-media-tour__button {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
  }
  a.item-media-tour:active .item-media-tour__title {
    transform: translate(0, 0);
  }
  a.item-media-tour:active .item-media-tour__bg {
    transform: scale(1.05);
  }
}

.gallery.section {
  padding-bottom: 0;
}
.gallery__info {
  max-width: 65.625rem;
  margin-inline: auto;
  padding: 1.875rem 0;
  font-size: 0.875rem;
}

@media (min-width: 79.99875rem) {
  .gallery-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.item-gallery-about {
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: zoom-in;
}.news-card {
  position: relative;
  display: block;
}
@media (min-width: 47.99875rem) {
  .news-card--row .news-card__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
  }
}
@media (min-width: 47.99875rem) {
  .news-card--row .news-card__media {
    margin-bottom: 0 !important;
  }
}
.news-card__media:not(:last-child) {
  margin-bottom: clamp(0.75rem, 0.6206896552rem + 0.5747126437vw, 1.25rem);
}
.news-card__img {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.news-card__img-item.ibg {
  padding-bottom: 52.3341523342%;
}
.news-card__img-item img {
  transition: var(--transition-duration);
}
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1853448276rem + 0.2873563218vw, 0.5rem);
  color: var(--main-color);
}
.news-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(1rem, 0.9676724138rem + 0.1436781609vw, 1.125rem);
  font-weight: 500;
}
.news-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
  color: var(--grey-text);
}

@media (any-hover: hover) and (any-pointer: fine) {
  a.news-card:hover .news-card__img-item img {
    transform: scale(1.05);
  }
  a.news-card:hover .news-card__title {
    color: var(--dark-blue);
  }
}
@media (any-hover: none) {
  a.news-card:active .news-card__img-item img {
    transform: scale(1.05);
  }
  a.news-card:active .news-card__title {
    color: var(--dark-blue);
  }
}

.head-news-card__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.375rem, 0.3426724138rem + 0.1436781609vw, 0.5rem);
}
.head-news-card__item {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.3426724138rem + 0.1436781609vw, 0.5rem);
}
.head-news-card__item:not(:last-child)::after {
  width: 0.25rem;
  height: 0.25rem;
  content: "";
  flex-shrink: 0;
  background-color: var(--grey-lines);
}
.head-news-card__flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.375rem, 0.3426724138rem + 0.1436781609vw, 0.5rem);
}
.head-news-card__type {
  font-size: clamp(0.75rem, 0.7176724138rem + 0.1436781609vw, 0.875rem);
  font-weight: 700;
  color: #49a687;
}
.head-news-card__date {
  font-size: clamp(0.75rem, 0.7176724138rem + 0.1436781609vw, 0.875rem);
  font-weight: 500;
  color: var(--grey-text);
}
.flag {
  width: 1.25rem;
  height: 1.25rem;
  overflow: hidden;
  border-radius: 50%;
}
.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--light-blue);
}
.time svg {
  flex-shrink: 0;
}.quote-card {
  height: 100%;
  padding: clamp(0.75rem, 0.5560344828rem + 0.8620689655vw, 1.5rem);
  background-color: var(--blue-bg);
  border-radius: var(--border-radius);
}
.quote-card--color {
  color: var(--white-color);
}
.quote-card--color .quote-card__subtitle {
  color: inherit;
}
.quote-card--circle-image .quote-card__img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
}
.quote-card--circle-image .quote-card__img-item {
  padding-bottom: 100% !important;
}
.quote-card--circle-image .quote-card__img-item img {
  object-position: top center;
}
.quote-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: inherit;
}
.quote-card__head {
  position: relative;
}
.quote-card__head:has(.quote-card__decor) {
  width: 100%;
  max-width: 7.5rem;
}
.quote-card__img {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.quote-card__img-item.ibg {
  padding-bottom: 52.7777777778%;
}
.quote-card__decor {
  position: absolute;
  z-index: 1;
  inset-inline-end: 0;
  bottom: -0.75rem;
}
.quote-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.4353448276rem + 0.2873563218vw, 0.75rem);
}
.quote-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quote-card__title {
  font-size: clamp(1.125rem, 1.0926724138rem + 0.1436781609vw, 1.25rem);
  font-weight: 500;
}
.quote-card__subtitle {
  font-size: clamp(0.8125rem, 0.7801724138rem + 0.1436781609vw, 0.9375rem);
  color: #797d83;
}
.quote-card__text {
  font-size: clamp(0.75rem, 0.7015086207rem + 0.2155172414vw, 0.9375rem);
}
.quote-card__button {
  --btn-color: var(--white);
  width: 100%;
}.section {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 0.9353448276rem + 0.2873563218vw, 1.25rem);
}
.section--filled {
  padding: var(--section-padding);
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  background-color: var(--blue-bg);
}
.section--filled-body .section__body {
  padding: var(--section-padding);
  background-color: var(--background-color);
  border-radius: var(--border-radius-xxl);
}
.section--bordered-body .section__body {
  border: 0.0625rem solid var(--accent-color-1);
}
.section--light-grey {
  background-color: var(--background-color-3);
}
.section--centered-text {
  text-align: center;
}
.section--head-column .section__header {
  flex-direction: column;
  align-items: initial;
}
.section--head-column-reverse .section__header {
  flex-direction: column-reverse;
  align-items: initial;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.section__header--accent {
  padding: 0.75rem;
  color: var(--white);
  background-color: var(--dark-blue);
  border-radius: var(--border-radius);
}
.section__header--accent .section__title {
  color: inherit;
}
.section__header--accent .section__button--top {
  --btn-color: inherit;
}
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.section__button--top {
  --btn-color: var(--dark-blue);
}
@media (max-width: 79.99875rem) {
  .section__button--top .button__text {
    display: none;
  }
}
.section__footer:has(> .section__button) {
  text-align: center;
}
.section__pagging {
  margin-top: 1rem;
}

.publications-detail .item-intresting {
  display: inline-flex;
}.bnrs {
  position: relative;
  z-index: var(--z-index-bnrs);
  top: 0;
  bottom: 0;
  height: 100%;
}
@media (max-width: 118.75rem) {
  .bnrs {
    display: none;
  }
}
.bnrs__list {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  position: sticky;
  top: 0;
  overflow-y: auto;
  height: 100dvh;
}
.bnrs__list::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.bnrs__item {
  min-height: 100%;
}

.bnr {
  background-color: var(--white-color);
}
.bnr__img {
  width: 100%;
  height: inherit;
  height: 100%;
  object-fit: contain;
}

.hero__slider {
  min-height: calc(var(--dvh, 1vh) * 100 - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
}
.hero__slider.slider-section {
  --swiper-pagination-bottom: 5.3125rem;
}
@media (max-width: 79.99875rem) {
  .hero__slider {
    min-height: 31.875rem;
  }
}
.hero__slider .slider-section__pagination {
  position: initial;
}
@media (min-width: 79.99875rem) {
  .hero__slider .slider-section__pagination {
    max-width: 20.25rem;
    margin: 0 var(--viewport-padding-x) 0 auto;
  }
}
.hero__slider .slider-section__inner,
.hero__slider .slider-section__items,
.hero__slider .slider-section__item {
  min-height: inherit;
}
.hero__slider .swiper-pagination {
  inset-inline: auto var(--viewport-padding-x);
  justify-content: end;
}

.hero-slide {
  position: relative;
  color: var(--white);
}
.hero-slide__container {
  position: relative;
  z-index: 5;
  min-height: inherit;
}
.hero-slide__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: inherit;
  padding-block: 3.25rem;
}
@media (max-width: 79.99875rem) {
  .hero-slide__wrapper {
    justify-content: center;
    padding-block: 7.5rem;
  }
}
.hero-slide__box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-slide__title {
  font-size: clamp(3.25rem, -10.5961538462rem + 15.3846153846vw, 6.25rem);
  font-weight: 500;
}
@media (min-width: 79.99875rem) {
  .hero-slide__title {
    max-width: 55.625rem;
  }
}
.hero-slide__subtitle {
  font-size: clamp(1rem, -3.6153846154rem + 5.1282051282vw, 2rem);
  font-weight: 500;
}
@media (min-width: 79.99875rem) {
  .hero-slide__subtitle {
    max-width: 46rem;
  }
}
.slide-news-card {
  height: 100%;
}
.slide-news-card__img {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.page-cells {
  display: flex;
}
.page-cells--2 {
  gap: clamp(1.5rem, -8.8846153846rem + 11.5384615385vw, 3.75rem);
}
.page-cells__body {
  flex-grow: 1;
}
.page-cells__body > *:not(:last-child) {
  margin-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}
.page-cells__side {
  flex: 0 0 23.5625rem;
}
@media (min-width: 79.99875rem) {
  .page-cells__side {
    align-self: end;
    position: sticky;
    bottom: 2.5rem;
  }
  .page-home .page-cells__side {
    padding-top: 3.5625rem;
  }
}
@media (max-width: 79.99875rem) {
  .page-cells {
    flex-direction: column;
  }
}

.news-sections-outer > .section:not(:last-child) {
  margin-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}

.cols-news {
  display: grid;
  gap: clamp(0.75rem, 0.4267241379rem + 1.4367816092vw, 2rem);
}
@media (min-width: 47.99875rem) {
  .cols-news {
    grid-template-columns: 1fr 36.6804979253%;
  }
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
}
@media (min-width: 47.99875rem) {
  .news-list--col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 47.99875rem) {
  .news-list--col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 79.99875rem) {
  .news-list--col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.news-list--section {
  row-gap: 0;
}
.news-list--section .news-list__item > * {
  padding-block: clamp(1.25rem, 1.0560344828rem + 0.8620689655vw, 2rem);
  border: 0 !important;
  border-top: 0.0625rem solid var(--grey-lines) !important;
}
.news-list--border .news-list__item:not(:last-child) > * {
  padding-bottom: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
  border-bottom: 0.0625rem solid var(--grey-lines);
}
@media (min-width: 79.99875rem) {
  .news-list--two-big {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 79.99875rem) {
  .news-list--two-big .news-list__item {
    grid-column: span 2;
  }
  .news-list--two-big .news-list__item:nth-child(1) {
    grid-column: span 3;
  }
  .news-list--two-big .news-list__item:nth-child(2) {
    grid-column: span 3;
  }
}
.cols-pod-spec {
  display: grid;
  gap: clamp(2.25rem, 1.9267241379rem + 1.4367816092vw, 3.5rem);
}
@media (min-width: 79.99875rem) {
  .cols-pod-spec {
    grid-template-columns: 18rem 1fr;
  }
}
.cols-prems-films {
  display: grid;
  gap: clamp(1.5rem, 1.3706896552rem + 0.5747126437vw, 2rem);
}
@media (min-width: 79.99875rem) {
  .cols-prems-films {
    grid-template-columns: 32.1766561514% 1fr;
  }
}
.spec-projects {
  height: 100%;
}
.spec-projects .section__body {
  flex-grow: 1;
}

.prems {
  height: 100%;
}
.prems .section__body {
  flex-grow: 1;
}

.films {
  height: 100%;
}
.films .section__body {
  flex-grow: 1;
}

.spec-projects-list {
  --cols-pc: 3;
  --cols-tab: 2;
  --cols-mob: 1;
  --space-items-pc: 20;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.spec-projects-list.swiper-wrapper {
  flex-wrap: nowrap;
}
@media (min-width: 79.99875rem) {
  .spec-projects-list > * {
    flex: 0 0 calc(100% / var(--cols-pc, 3));
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .spec-projects-list > * {
    flex: 0 0 calc(100% / var(--cols-tab, var(--cols-pc, 2)));
  }
}
@media (max-width: 47.99875rem) {
  .spec-projects-list > * {
    flex: 0 0 calc(100% / var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))));
  }
}
@media (min-width: 79.99875rem) {
  .spec-projects-list {
    row-gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem);
    margin: 0 calc(var(--space-items-pc, 24) / -2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .spec-projects-list {
    row-gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem);
    margin: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / -2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .spec-projects-list {
    row-gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem);
    margin: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / -2 * 0.0625rem);
  }
}
@media (min-width: 79.99875rem) {
  .spec-projects-list > * {
    padding: 0 calc(var(--space-items-pc, 24) / 2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .spec-projects-list > * {
    padding: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / 2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .spec-projects-list > * {
    padding: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / 2 * 0.0625rem);
  }
}
.spec-projects-list .quote-card {
  padding: clamp(0.75rem, 0.6853448276rem + 0.2873563218vw, 1rem);
}
.side-content .section__title {
  font-size: 1.125rem;
}
.side-content .section__button--bottom {
  width: 100%;
}
.side-content__items {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}
.feedback {
  padding: clamp(0.75rem, 0.2974137931rem + 2.0114942529vw, 2.5rem);
  color: var(--white);
  background-color: var(--dark-blue);
  border-radius: var(--border-radius);
}
.feedback__wrapper {
  max-width: 60.625rem;
  margin-inline: auto;
}
.feedback__row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (min-width: 47.99875rem) {
  .feedback__row {
    align-items: center;
  }
}
@media (max-width: 47.99875rem) {
  .feedback__row {
    flex-direction: column;
  }
}
.feedback__body {
  display: flex;
  align-items: start;
  gap: 2rem;
}
.feedback__info {
  flex: 0 1 21rem;
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1206896552rem + 0.5747126437vw, 0.75rem);
}
.feedback__img {
  flex: 0 0 clamp(4.375rem, 3.2435344828rem + 5.0287356322vw, 8.75rem);
}
.feedback__img img {
  object-fit: contain;
}
.feedback__title {
  font-size: clamp(1.375rem, 1.2780172414rem + 0.4310344828vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.feedback__text {
  font-size: clamp(0.8125rem, 0.7316810345rem + 0.3591954023vw, 1.125rem);
  font-weight: 500;
}
@media (min-width: 79.99875rem) {
  .feedback__form {
    flex: 0 0 20.375rem;
  }
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback-form__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback-form__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input {
  display: block;
  width: 100%;
  min-height: 2.625rem;
  padding-inline: 0.625rem;
  background-color: transparent;
  border: 0.0625rem solid currentColor;
  border-radius: var(--border-radius);
  transition: var(--transition-duration);
}
.input::placeholder {
  color: inherit;
  opacity: 1;
  transition: opacity var(--transition-duration);
}
.input:focus::placeholder {
  opacity: 0;
  pointer-events: none;
}.info-box {
  --iconSize: clamp(1rem, 0.9353448276rem + 0.2873563218vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.4353448276rem + 0.2873563218vw, 0.75rem);
}
@media (max-width: 47.99875rem) {
  .info-box--has-tags .info-box__wrapper {
    flex-direction: column;
    align-items: initial;
  }
  .info-box--has-tags .info-box__actions {
    align-self: end;
  }
}
.info-box__title {
  font-size: clamp(1.125rem, 0.963362069rem + 0.7183908046vw, 1.75rem);
}
.info-box__wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.75rem, 0.6853448276rem + 0.2873563218vw, 1rem);
}
@media (max-width: 47.99875rem) {
  .info-box__wrapper {
    flex-wrap: wrap;
    align-items: center;
  }
}
.info-box__inner {
  display: flex;
  align-items: start;
  gap: 1rem;
}
@media (max-width: 47.99875rem) {
  .info-box__inner {
    flex-direction: column;
  }
}
.data-info-box {
  display: flex;
  gap: 0.375rem clamp(0.75rem, 0.6853448276rem + 0.2873563218vw, 1rem);
  color: var(--accent-color);
}
.data-info-box__item {
  display: flex;
  gap: clamp(0.75rem, 0.6853448276rem + 0.2873563218vw, 1rem);
}
.data-info-box__item:not(:last-child)::after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: var(--grey-lines);
}
@media (max-width: 47.99875rem) {
  .data-info-box__item {
    font-size: 0.8125rem;
  }
}
.view-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag {
  display: inline-block;
  padding: 0.375rem clamp(0.5rem, 0.4353448276rem + 0.2873563218vw, 0.75rem);
  font-weight: 500;
  color: var(--accent-color);
  border: 0.0625rem solid var(--accent-color);
  border-radius: var(--border-radius);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .tag:hover {
    color: var(--white);
    background-color: var(--accent-color);
    border-color: currentColor;
  }
}
@media (any-hover: none) {
  .tag:active {
    color: var(--white);
    background-color: var(--accent-color);
    border-color: currentColor;
  }
}

.actions-info-box {
  display: flex;
  gap: clamp(0.5rem, 0.3706896552rem + 0.5747126437vw, 1rem);
  height: clamp(2.25rem, 2.1206896552rem + 0.5747126437vw, 2.75rem);
}
.actions-info-box__share {
  height: inherit;
}
.actions-info-box__like {
  height: inherit;
}

.share-box {
  position: relative;
  color: var(--accent-color);
}
.share-box:hover {
  color: var(--dark-blue);
  cursor: pointer;
}
.share-box:hover .share-box__dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
@media (max-width: 79.99875rem) {
  .share-box:hover .share-box__dropdown {
    transform: translateY(0%) scale(1);
  }
}
.share-box__head {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  height: inherit;
  padding: 0 1.25rem 0 0;
  font-weight: 500;
}
@media (max-width: 47.99875rem) {
  .share-box__head {
    padding: 0;
  }
}
.share-box__dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
  top: 50%;
  inset-inline-start: 100%;
  min-width: 19.875rem;
  padding: 0.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 0.4375rem 2.1875rem 0 rgba(0, 0, 0, 0.09);
  transition: var(--transition-duration);
  transform: translateY(-50%) scale(0);
  pointer-events: auto;
}
@media (max-width: 79.99875rem) {
  .share-box__dropdown {
    top: 100%;
    inset-inline: auto 0;
    min-width: 16.875rem;
    transform: translateY(0%) scale(0);
  }
}
.share-box__dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.share-box__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--accent-color);
  border-radius: var(--border-radius);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .share-box__dropdown a:hover {
    background-color: var(--grey-bg);
  }
}
@media (any-hover: none) {
  .share-box__dropdown a:active {
    background-color: var(--grey-bg);
  }
}

.copy-url__text--copied {
  display: none;
}
.copy-url.active .copy-url__text {
  display: none;
}
.copy-url.active .copy-url__text--copied {
  display: block;
}

.like-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
}
.like-box.active {
  color: #c60874;
}
.like-box.active .like-box__count {
  display: inline-block;
}
.like-box.active .like-box__icon {
  background-color: #faeef5;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .like-box:not(.active):hover {
    color: var(--dark-blue);
  }
}
@media (any-hover: none) {
  .like-box:not(.active):active {
    color: var(--dark-blue);
  }
}
.like-box__icon {
  width: clamp(2.25rem, 2.1206896552rem + 0.5747126437vw, 2.75rem);
  height: clamp(2.25rem, 2.1206896552rem + 0.5747126437vw, 2.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--grey-bg);
  border-radius: 50%;
}
.like-box__count {
  font-weight: 500;
}
@media (max-width: 47.99875rem) {
  .like-box__count {
    font-size: 0.75rem;
  }
}.page-news-detail__interview:not(:last-child) {
  margin-bottom: clamp(1rem, 0.3857758621rem + 2.7298850575vw, 3.375rem);
}

.interview__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.8706896552rem + 0.5747126437vw, 1.5rem);
  padding: 1.5rem 0 0;
}
@media (min-width: 79.99875rem) {
  .interview__inner {
    padding-bottom: 2.25rem;
    border-bottom: 0.0625rem solid var(--accent-color);
  }
}
.interview__title {
  font-weight: 700;
}
@media (min-width: 79.99875rem) {
  .list-interview:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 1.2413793103rem + 1.1494252874vw, 2.5rem);
  }
}
.item-interview {
  position: relative;
  display: flex;
  gap: 1rem;
}
.item-interview__img {
  flex: 0 0 3.75rem;
  align-self: start;
  overflow: hidden;
  border-radius: 50%;
}
.item-interview__img > .icon,
.item-interview__img > img,
.item-interview__img > svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-interview__text {
  font-size: 0.875rem;
  font-weight: 500;
}

.news-detail-content:not(:last-child) {
  margin-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}
.news-detail-content.html-content > img,
.news-detail-content.html-content > video {
  display: block;
  margin-inline: auto !important;
  text-align: center;
}
.news-detail-content.html-content > img ~ small,
.news-detail-content.html-content > video ~ small {
  text-align: center;
}
.news-detail-content .table {
  border-top: 0.0625rem solid var(--accent-color);
}
.news-detail-content table td {
  padding: clamp(0.75rem, 0.5560344828rem + 0.8620689655vw, 1.5rem) 0;
  border: 0;
}
@media (max-width: 47.99875rem) {
  .news-detail-content table tr {
    display: flex;
    flex-direction: column;
  }
}

.list-news-detail {
  display: flex;
  flex-direction: column;
}
.list-news-detail__item {
  padding-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
  border-bottom: 0.0625rem solid var(--grey-lines);
}
.list-news-detail__item:not(:last-child) {
  margin-bottom: clamp(2rem, 1.8706896552rem + 0.5747126437vw, 2.5rem);
}

.hero-news-detail {
  margin-block: 1.25rem;
}
.hero-news-detail__row {
  display: flex;
  gap: clamp(1.25rem, 0.9267241379rem + 1.4367816092vw, 2.5rem);
}
@media (max-width: 79.99875rem) {
  .hero-news-detail__row {
    flex-direction: column;
  }
}
.hero-news-detail__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.3706896552rem + 0.5747126437vw, 1rem);
}
@media (min-width: 79.99875rem) {
  .hero-news-detail__body {
    flex: 1 0 27.5rem;
  }
}
.hero-news-detail__title {
  font-size: clamp(1.125rem, 0.8987068966rem + 1.0057471264vw, 2rem);
  font-weight: 700;
}
.hero-news-detail__text {
  font-size: clamp(1.125rem, 1.0926724138rem + 0.1436781609vw, 1.25rem);
  color: var(--grey-text);
}
@media (min-width: 47.99875rem) {
  .hero-news-detail__media {
    flex-grow: 1;
  }
}

small {
  font-size: clamp(0.875rem, 0.8103448276rem + 0.2873563218vw, 1.125rem);
  display: block;
  margin-block: 0.5rem;
}
.html-content small {
  margin-top: 0;
}
small > b {
  font-weight: 500;
  color: var(--accent-color);
}
small > span {
  color: var(--grey-text);
}
@media (any-hover: hover) and (any-pointer: fine) {
  small a:hover {
    text-decoration: none !important;
  }
}
@media (any-hover: none) {
  small a:active {
    text-decoration: none !important;
  }
}

.author-blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 0.2413793103rem + 1.1494252874vw, 1.5rem);
}
@media (max-width: 47.99875rem) {
  .author-blockquote {
    flex-direction: row;
    align-items: center;
  }
}
.author-blockquote--row {
  flex-direction: row;
  align-items: center;
}
.author-blockquote--row .author-blockquote__info {
  align-items: start;
  text-align: initial;
}
.author-blockquote--row .author-blockquote__img {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 47.99875rem) {
  .author-blockquote--row {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }
}
.author-blockquote__img {
  width: clamp(5rem, 3.0603448276rem + 8.6206896552vw, 12.5rem);
  height: clamp(5rem, 3.0603448276rem + 8.6206896552vw, 12.5rem);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}
.author-blockquote__img > .icon,
.author-blockquote__img > img,
.author-blockquote__img > svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-blockquote__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 47.99875rem) {
  .author-blockquote__info {
    align-items: center;
    text-align: center;
  }
}
.author-blockquote__title {
  font-size: clamp(1rem, 0.9353448276rem + 0.2873563218vw, 1.25rem);
  font-weight: 500;
}
.author-blockquote__text {
  font-size: clamp(0.75rem, 0.6530172414rem + 0.4310344828vw, 1.125rem);
  color: var(--grey-text);
}
@media (max-width: 47.99875rem) {
  .author-blockquote__button {
    width: 100%;
  }
  .author-blockquote__button > * {
    width: 100%;
  }
}

.primary-blockquote {
  display: flex;
  gap: clamp(0.5rem, -0.0172413793rem + 2.2988505747vw, 2.5rem);
}
.primary-blockquote__decor {
  flex-shrink: 0;
  width: clamp(1.5rem, 1.1767241379rem + 1.4367816092vw, 2.75rem);
}
.primary-blockquote__decor > .icon,
.primary-blockquote__decor > img,
.primary-blockquote__decor > svg {
  width: 100%;
  height: 100%;
}
.primary-blockquote__row {
  display: flex;
  gap: clamp(1rem, 0.6120689655rem + 1.724137931vw, 2.5rem);
}
@media (max-width: 79.99875rem) {
  .primary-blockquote__row {
    flex-direction: column;
  }
}
@media (min-width: 79.99875rem) {
  .primary-blockquote__info {
    flex: 0 0 18.75rem;
    align-self: center;
  }
}
.primary-blockquote__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.213362069rem + 0.7183908046vw, 1rem);
}
.primary-blockquote__content > b {
  font-size: clamp(0.9375rem, 0.7920258621rem + 0.6465517241vw, 1.5rem);
  font-weight: 500;
}
.primary-blockquote__content > p {
  font-size: clamp(0.875rem, 0.7780172414rem + 0.4310344828vw, 1.25rem);
}

.secondary-blockquote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.5560344828rem + 0.8620689655vw, 1.5rem);
}
.secondary-blockquote--big {
  margin-block: 3rem;
  padding: clamp(1rem, 0.2887931034rem + 3.1609195402vw, 3.75rem) clamp(0.75rem, 0.4590517241rem + 1.2931034483vw, 1.875rem);
  padding-top: clamp(2.25rem, 1.8620689655rem + 1.724137931vw, 3.75rem);
  border: 0.0625rem solid var(--grey-lines);
  border-radius: var(--border-radius);
}
.secondary-blockquote--big .secondary-blockquote__decor {
  width: clamp(3.625rem, 3.3987068966rem + 1.0057471264vw, 4.5rem);
  height: clamp(3.625rem, 3.3987068966rem + 1.0057471264vw, 4.5rem);
  position: absolute;
  z-index: 3;
  top: 0;
  inset-inline-start: clamp(1.875rem, 1.2284482759rem + 2.8735632184vw, 4.375rem);
  background-color: var(--blue-bg);
  border: 0.0625rem solid var(--grey-lines);
  transform: translate(0, -50%);
}
.secondary-blockquote__head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1206896552rem + 0.5747126437vw, 0.75rem);
}
.secondary-blockquote__decor {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: start;
  overflow: hidden;
  border-radius: 50%;
}
.secondary-blockquote__decor > .icon,
.secondary-blockquote__decor > img,
.secondary-blockquote__decor > svg {
  width: clamp(2.125rem, 2.0280172414rem + 0.4310344828vw, 2.5rem);
  height: clamp(2.125rem, 2.0280172414rem + 0.4310344828vw, 2.5rem);
}
.secondary-blockquote__text {
  font-size: clamp(0.875rem, 0.7780172414rem + 0.4310344828vw, 1.25rem);
  font-weight: 500;
}
.secondary-blockquote__info {
  padding-top: clamp(0.75rem, 0.5560344828rem + 0.8620689655vw, 1.5rem);
  border-top: 0.0625rem solid var(--grey-lines);
}

.more-news-detail {
  padding-inline-start: clamp(1rem, 0.692887931rem + 1.3649425287vw, 2.1875rem);
  border-inline-start: 0.3125rem solid var(--accent-color);
}
.more-news-detail__row {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 47.99875rem) {
  .more-news-detail__row {
    flex-direction: column;
  }
}
.more-news-detail__info {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 47.99875rem) {
  .more-news-detail__info {
    flex: 0 0 15rem;
    flex-direction: column;
  }
}
@media (max-width: 47.99875rem) {
  .more-news-detail__info {
    align-items: center;
  }
}
.more-news-detail__title {
  font-size: clamp(1.125rem, 0.8987068966rem + 1.0057471264vw, 2rem);
  font-weight: 500;
}
@media (min-width: 47.99875rem) {
  .more-news-detail__title {
    max-width: 8.4375rem;
  }
}
.list-more-news-detail:not(.swiper-wrapper) {
  --cols-pc: 3;
  --cols-tab: 2;
  --cols-mob: 1;
  display: flex;
  flex-wrap: wrap;
}
.list-more-news-detail:not(.swiper-wrapper).swiper-wrapper {
  flex-wrap: nowrap;
}
@media (min-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    flex: 0 0 calc(100% / var(--cols-pc, 3));
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    flex: 0 0 calc(100% / var(--cols-tab, var(--cols-pc, 2)));
  }
}
@media (max-width: 47.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    flex: 0 0 calc(100% / var(--cols-mob, var(--cols-tab, var(--cols-pc, 1))));
  }
}
@media (min-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) {
    row-gap: calc(var(--r-gap-pc, var(--space-items-pc, 24)) * 0.0625rem);
    margin: 0 calc(var(--space-items-pc, 24) / -2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) {
    row-gap: calc(var(--r-gap-tab, var(--r-gap-pc, var(--space-items-tab, var(--space-items-pc, 16)))) * 0.0625rem);
    margin: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / -2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) {
    row-gap: calc(var(--r-gap-mob, var(--r-gap-tab, var(--r-gap-pc, var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8)))))) * 0.0625rem);
    margin: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / -2 * 0.0625rem);
  }
}
@media (min-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    padding: 0 calc(var(--space-items-pc, 24) / 2 * 0.0625rem);
  }
}
@media (min-width: 47.99875rem) and (max-width: 79.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    padding: 0 calc(var(--space-items-tab, var(--space-items-pc, 16)) / 2 * 0.0625rem);
  }
}
@media (max-width: 47.99875rem) {
  .list-more-news-detail:not(.swiper-wrapper) > * {
    padding: 0 calc(var(--space-items-mob, var(--space-items-tab, var(--space-items-pc, 8))) / 2 * 0.0625rem);
  }
}

.f-carousel-wrapper {
  --f-thumb-width: calc(33.333% - 0.5rem);
  --f-thumb-height: calc(var(--f-thumb-width) * 9 / 16 * 0.0625rem);
  --f-thumbs-padding-x: 0;
  --f-thumb-img-position: 50% 50%;
  --f-thumb-border-radius: var(--border-radius);
  --f-thumb-selected-opacity: 0.5;
  --f-arrow-width: clamp(2.25rem, 1.9590517241rem + 1.2931034483vw, 3.375rem);
  --f-arrow-height: clamp(2.25rem, 1.9590517241rem + 1.2931034483vw, 3.375rem);
  --f-button-svg-stroke-width: var(--main-color);
  --f-arrow-bg: var(--page-bg);
  --f-arrow-border-radius: 50%;
  --f-arrow-pos: 0.75rem;
  --f-arrow-hover-color: var(--accent-color);
  max-width: 53.5rem;
  margin: 0 auto;
  padding: clamp(0.75rem, 0.4913793103rem + 1.1494252874vw, 1.75rem);
  background-color: var(--blue-bg);
  border-radius: var(--border-radius);
}
.f-carousel-wrapper .f-carousel__viewport {
  cursor: zoom-in;
}
.f-carousel-wrapper .f-thumbs__slide,
.f-carousel-wrapper .f-carousel__slide {
  overflow: hidden;
  border-radius: var(--border-radius);
}.page-rootpage {
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-color: #5e5373;
}

.rootpage {
  display: flex;
  flex-direction: column;
  padding: 1.875rem clamp(1rem, 0.7737068966rem + 1.0057471264vw, 1.875rem);
}
.rootpage a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  color: #ebe691;
}
.rootpage a:visited {
  color: #aaa768 !important;
}
.rootpage a:hover {
  text-decoration: none;
  color: #ffff55 !important;
}
.rootpage h1,
.rootpage h2 {
  margin: 0 0 0.8em;
  font-family: sans-serif;
  font-weight: bold;
  text-transform: initial;
  color: #ebe691;
}
.rootpage h1 {
  font-size: clamp(1.875rem, 1.713362069rem + 0.7183908046vw, 2.5rem);
}
.rootpage h2 {
  font-size: clamp(1.125rem, 1.0926724138rem + 0.1436781609vw, 1.25rem);
}
.rootpage__info {
  line-height: 1.4;
}
.rootpage__info:not(:last-child) {
  margin-bottom: 1.5rem;
}
.rootpage__list {
  margin: 0;
  padding-inline-start: 1.25em;
}
.rootpage__list:not(:last-child) {
  margin-bottom: 2.25em;
}
.rootpage__list li:not(:last-child) {
  margin-bottom: 1em;
}