/*  Base */
html,
body {
  height: 100%;
}

.page {
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  color: #253027;
  min-width: 320px;
  display: flex;
  flex-direction: column;
}

.page__main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Секция документов прижимается к подвалу (или к следующему блоку ниже),
   если свободное место внутри page__main */
.page__main>.documents {
  margin-top: auto;
}

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

input,
button,
textarea,
select {
  font-style: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.btn {
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 15px;
  cursor: pointer;
  border: none;
  color: #fff;
  box-sizing: border-box;
}

.btn__mobile {
  display: none;
}

.btn__primary {
  font-weight: 500;
  line-height: 100%;
  background: #4BAC6C;
  border: 1px solid #4BAC6C;
  transition: box-shadow .3s ease;
}

.btn__secondary {
  border: 2px solid #4BAC6C;
  color: #4BAC6C;
  border-radius: 8px;
  font-weight: 600;
  line-height: 137%;
  background-color: transparent;
}

.btn__primary_gray {
  border: 1px solid #FFFFFF;
  background: rgba(16, 16, 16, 0.2);
  color: #fff;
}

.btn__primary:hover {
  box-shadow: 0px 10px 10px rgba(73, 160, 103, 0.2);
}

.btn__primary_gray:hover {
  box-shadow: none;
  background: #fff;
  color: #253027;
}

.btn__secondary:hover {
  border: 2px solid #5BC980;
}

.btn__primary:focus {
  border: 1px solid #35804F;
}

.btn__primary_gray:focus {
  background: #fff;
  color: #253027;
}

.btn__secondary:focus {
  border: 2px solid #35804F;
}

.btn__primary:active {
  background: #49A067;
}

.btn__primary_gray:active {
  background: #fff;
  color: #253027;
}


.btn__primary:disabled {
  background: #DFDFE1;
  color: #C2C2C2;
  border: 1px solid #DFDFE1;
  cursor: not-allowed;
}

.btn__primary_gray:disabled {}


.btn__secondary:disabled {
  border: 2px solid #DFDFE1;
  background-color: transparent;
  color: #C2C2C2;
}

.btn__icon {
  margin-right: 13px;
}

/* Socials */
.socials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  min-height: 37px;
  align-items: center;
}

.footer__bottom .socials-list {
  margin-left: 10px;
}

.footer__bottom .social-list__icon * {
  fill: #4BAC6C;
}

/* Для иконок с SVG-маской в подвале (например, Max) переопределяем цвета
   элементов внутри <mask>, чтобы маска работала корректно и иконка была видна
   даже при общем правиле fill для *. */
.footer__bottom .social-list__icon mask rect {
  fill: #FFFFFF !important;
}

.footer__bottom .social-list__icon mask path {
  fill: #000000 !important;
}

.footer__socials-list .social-list__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.footer__socials-list .social-list__item {
  margin-right: 18px;
}

.footer__socials-list .social-list__item:last-child {
  margin-right: 0;
}

.footer__socials-wrapper {
  position: relative;
}

.footer__socials-list {
  position: relative;
}


.header__socials-list {
  border-left: 0.6px solid #E6E6E6;
  border-right: 0.6px solid #E6E6E6;
  padding: 0 25px;
  position: relative;
}

.header__socials-list .social-list__item {
  position: relative;
}

.social-list__item {
  margin-right: 11px;
  display: inline-block;
}

.social-list__item:last-child {
  margin-right: 0;
}

.social-list__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.social-list__link svg {
  width: 100%;
  height: 100%;
}



.social-list__link:hover {
  opacity: .8;
}

.social-list__link.active,
.social-list__item:has(.social-qr-popup:not(.social-qr-popup_hidden)) .social-list__link {
  opacity: .8;
}


/* Базовый вид Max (как в подвале): зелёный фон + тёмный знак */
.footer__bottom .social-list__icon .max-bg {
  fill: #4BAC6C !important;
}

.footer__bottom .social-list__icon .max-icon path {
  fill: #2a3143 !important;
}

/* Вид Max в шапке: светлый квадрат и зелёный знак, как у других иконок */
.header__socials-list .social-list__icon .max-bg {
  fill: #EDECEC !important;
}

.header__socials-list .social-list__icon .max-icon path {
  fill: #4BAC6C !important;
}

/* Иконки в карточке министра: зелёный фон и светлая иконка */
.structure-list__item .structure-list__socials .social-list__link {
  background: #f8f8f8 !important;
}

/* Вид Max в карточке министра: зелёный фон и светлая иконка */
.structure-list__socials .social-list__icon .max-bg {
  fill: #4BA55E !important;
}

.structure-list__socials .social-list__icon .max-icon path {
  fill: #F8F8F8 !important;
}



.header__socials-list .social-list__link {
  background: #4BA55E;
}

/* Приводим иконку Max в шапке к тому же виду, что и остальные:
   зелёный фон, светлый знак (цвет задаём через fill для path).
   В подвале остаётся вариант из админки, там действуют свои правила. */
.header__socials-list .social-list__icon rect {
  fill: #4BA55E !important;
}

.header__socials-list .social-list__icon path {
  fill: #EDECEC !important;
}

/* Иконки в карточке министра: зелёный фон и светлая иконка (после правил шапки) */
.structure-list__item .social-list__icon * {
  fill: #F8F8F8;
}

.structure-list__item .social-list__icon rect {
  fill: #4BA55E;
}


/* Header */
.header {
  box-sizing: border-box;
}

.header__top {
  background: #fff;
  position: relative;
  z-index: 10001;
}

.header__top-wrapper {
  padding: 10px 25px 15px;
  max-width: 1554px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.6px solid #E6E6E6;
  position: relative;
  box-sizing: border-box;
}

.header__menu_btn {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  height: 21px;
  position: absolute;
  right: 20px;
  top: 17px;
  cursor: pointer;
  outline: none;
  display: none;
}

.header__bottom {
  margin: 0 auto;
  background: #fff;
  z-index: 4;
  position: relative;
  box-shadow: 0px 13px 24px rgb(0 0 0 / 12%);
}

.header__bottom_fixed {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
}



/* .header__bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  box-shadow: 0px 13px 24px rgba(0, 0, 0, 0.12);
} */

.header__bottom-wrapper {
  max-width: 1554px;
  padding: 0 25px;
  margin: 0 auto;
}

.header__bottom-wrapper .header__socials-list {
  display: none;
}

.header__bg {
  width: 100%;
  height: 100vh;
  background: #f8f8f8;
  position: fixed;
  top: 0;
  z-index: 2;
  display: none;
}

.header__logo {
  display: block;
  margin: 0;
  transition: all .4s ease;
}

.header__logo:hover {
  opacity: .8;
}

.header__logo_svg {
  display: block;
  width: auto;
  height: 62px;
}

.header__rightbar {
  display: flex;
  align-items: center;
}

.header__rightbar_active {
  display: flex;
}

.search-btn {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 25px;
  margin-left: 25px;
}

.header__call {
  margin-left: 25px;
}

.search-btn:hover {
  opacity: .7;
}

.search-btn__icon {
  display: block;
  object-fit: contain;
}

.vi {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 37px;
  border-right: 0.6px solid #E6E6E6;
  padding-right: 25px;
  padding-left: 25px;
}

.vi:hover {
  opacity: .7;
}

.vi__icon {
  display: block;
  object-fit: contain;
}

/* .content {
  position: relative;
  height: 100%;
} */

/* Navigation */
/* .navigation__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
} */

.root-nav {
  margin: 0;
  padding: 0;
  text-align: center;
  min-height: 63px;
  box-sizing: border-box;
  width: 100%;
}

.root-nav>li {
  display: inline-block;
  height: 100%;
  font-weight: 600;
  font-size: 17px;
  line-height: 63px;
  cursor: pointer;
  margin-right: 62px;
  text-align: left;
  position: relative;
}

.root-nav>li span {
  display: block;
}

.root-nav>li:last-child {
  margin-right: 0;
}

.root-nav>li ul {
  display: none;
}

.root-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.root-nav>li>.sub-menu-active {
  display: block;
  background: #F8F8F8;
  position: absolute;
  z-index: 2;
  line-height: 0;
  left: 0;
  padding: 40px 25px;
  width: 500px;
  box-sizing: border-box;
  max-height: 500px;
  overflow-y: auto;
}

.root-nav>li>.sub-menu-active_left {
  left: auto;
  right: 0;
}

.root-nav>li .sub-menu-active ul {
  display: block;
}

.root-nav>li .sub-menu-active li {
  line-height: 22px;
  margin-bottom: 28px;
  display: inline-block;
  width: 100%;
}

.root-nav>li .sub-menu-active li span {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 28px;
}

.root-nav>li .sub-menu-active li ul li {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 5px;
}

.root-nav a {
  transition: all .3s ease;
}

.root-nav a:hover {
  text-decoration: underline;
  color: #4BAC6C;
}


/* Complex */
.complex {
  max-width: 1554px;
  padding: 65px 25px 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.complex__banner {
  position: relative;
  min-height: 302px;
  margin-bottom: 45px;
  border-radius: 5px;
  overflow: hidden;
}

.complex__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.complex__banner-content {
  padding: 60px 70px 50px 70px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.complex__title {
  font-weight: 800;
  font-size: 28px;
  line-height: 130%;
  color: #fff;
  max-width: 710px;
  margin: 0 0 36px;
}

.complex__content {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 25px;
}

.complex__subtitle {
  font-weight: 600;
  font-size: 28px;
  line-height: 136%;
  margin: 0;
}

.complex__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  margin: 0;
}

.complex .btn__primary_gray {
  min-width: 180px;
}

/* Industry */
.industry {
  background-image: url('../images/industry-bg.jpg');
  background-size: cover;
  min-height: 600px;
  padding: 57px 0 107px;
  box-sizing: border-box;
}

.industry__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  color: #F8F8F8;
  margin: 0 0 60px;
}

.industry__wrapper {
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.industry__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.industry__item {
  background: #484E5F;
  border-radius: 5px;
}

.industry__item_centered {
  grid-column: 2 / 3;
}



.industry__link {
  padding: 28px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  color: #F8F8F8;
  transition: color .2s ease;
}

.industry__link span {
  transition: all .2s ease;
}


.industry__link:hover {
  color: #4BAC6C;
}

.industry__link:hover span {
  text-decoration: underline;
}

.industry__link svg {
  margin-right: 29px;
  width: 64px;
  height: 64px;
  min-width: 64px;
}

/* Documents */

.documents {
  background-image: url('../images/industry-bg.jpg');
  background-size: cover;
  min-height: 495px;
  /* padding: 60px 0 110px; */
  padding: 60px 0 90px;
  box-sizing: border-box;
}

.documents__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  color: #F8F8F8;
  margin: 0 20px 0 0;
  max-width: 50%;
}

.documents__title-icon {
  display: none;
}

.documents .btn__primary_gray {
  min-width: 175px;
}

.documents__heading {
  margin: 0 0 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.documents__wrapper {
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 200px;
}

.links__link {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 122%;
  display: flex;
  align-items: center;
  transition: all .4s ease;
  position: relative;
}

.links__link:hover {
  text-decoration: none;
}

.links__link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  pointer-events: none;
}

.links__icon-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 23px;
  position: relative;
  z-index: 1;
  background: inherit;
  min-width: 68px;
}

.links__icon-container .documents-list__date {
  text-align: left;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: inherit;
}

.links__icon-wrapper {
  box-sizing: border-box;
  background: #333B50;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 31px;
  height: 31px;
  min-width: 31px;
  padding: 8px 10px;
  margin-bottom: 6px;
}

.links__icon {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  object-fit: contain;
}

.links__list_inner {
  gap: 12px 34px;
}

.links__list_inner .documents-list__size {
  color: #C2C2C2;
}

.links__list_inner .documents-list__content {
  gap: 12px;
  padding-bottom: 12px;
}

.links__list_inner .documents-list__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

/* Footer */
.footer {
  background: #2A3143;
  padding: 35px 0 30px;
  box-sizing: border-box;
}

.footer__wrapper {
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.footer__open-nav {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #fff;
  background: no-repeat;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer__open-nav svg {
  transform: rotate(180deg);
  transition: all .4s ease;
}

.footer__open-nav_opened svg {
  transform: rotate(0);
}

.footer__open-nav:hover {
  opacity: .8;
}

.footer__open-nav svg {
  margin-left: 30px;
  display: block;
  width: 32px;
  height: 32px;
}

.footer__navlist {
  margin: 35px 0 0;
  padding: 42px 30px;
  list-style: none;
  background: #20273A;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px 50px;
  border-bottom: 0.6px solid #FFFFFF;
  display: none;
}

.footer__navlist_opened {
  display: grid;
}

.footer__navitem span {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  margin: 0 0 32px;
  color: #fff;
  display: block;
}

/* Menu footer style desktop */
.footer__navlist .footer__navitem .footer__sublist .footer__navitem span {
  font-weight: 500;
  font-size: inherit;
  margin: 0;
  line-height: inherit;
  color: #C1C3C9;
}

.footer__navlist .footer__navitem .footer__sublist .footer__navitem span:hover {
  color: #fff;
}

.footer__navlist .footer__navitem .footer__sublist .footer__navitem .footer__sublist {
  display: none;
}



/* .footer__navitem > span.footer__navlink {
  display: none;
} */

/* .footer__navitem > .footer__sublist {
  display: none;
} */

/* .footer__sublist .footer__sublist {
  display: none;
} */

.footer__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__navlink {
  color: #C1C3C9;
}

.footer__navlink:hover {
  color: #fff;
}

.footer__navitem {
  margin-bottom: 14px;
}

.footer__navitem:last-child {
  margin-bottom: 0;
}

.footer__bottom {
  padding: 30px 0 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.developer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  color: #767C8C;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  margin: 0;
  padding-right: 20px;
}

.developer__link {
  display: flex;
  align-items: center;
  transition: all .4s ease;
}

.developer__link:hover {
  opacity: .7;
}

.developer__image {
  display: block;
  margin-right: 13px;
}

.developer__image:last-child {
  margin: 0;
  min-width: 18px;
}

.footer__logo-img {
  display: block;
  width: auto;
  max-height: 60px;
}

.footer__adress {
  margin: 0;
  padding: 0 0 0 14px;
  margin-left: 10px;
}

.footer__adress_item {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  color: #fff;
}

.footer__adress_item:last-child {
  margin: 0;
}

.footer__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 10px;
}

.footer__contact {
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  color: #fff;
  transition: all .4s ease;
  margin: 0 0 10px;
}

.footer__contact:last-child {
  margin: 0;
}

.footer__contact:hover {
  opacity: .8;
}

.footer__contacs-link {
  display: flex;
  align-items: center;
}

.footer__contacs-link svg {
  display: block;
  min-width: 16px;
  height: auto;
  margin-right: 14px;
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-line {
  display: block;
  height: 1px;
  background-color: #4BAC6C;
  ;
}

.swiper-line_top {
  margin-bottom: 40px;
}

.swiper-line_bottom {
  margin-top: 40px;
}

.swiper__controls {
  position: relative;
  margin-top: 40px;
}

.swiper-pagination {
  margin: 0;
  position: absolute;
  width: calc(100% - 88px) !IMPORTANT;
  left: 44px !important;
}

.swiper-pagination-bullet {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #C2C2C2;
  mix-blend-mode: normal;
  opacity: 0.3;
  border-radius: 4px;
  height: 4px;
  width: 35px;
}

.swiper-pagination-bullet-active {
  width: 68px;
  background: #4BAC6C;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  width: 42px;
  height: 42px;
  border: 1px solid #E3E3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: inherit;
}

.swiper-button-next {
  bottom: 0;
  right: 0;
  top: auto;
}

.swiper-button-prev {
  bottom: 0;
  left: 0;
  top: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  content: none;
}

.swiper_brands-navigation {
  position: relative;
  height: 40px;
}

/* Brands */
.brands {
  padding: 100px 0 110px;
  box-sizing: border-box;
}

.brands__wrapper {
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.brands .swiper-slide__img {
  max-height: 125px;
  border-radius: 3.92684px;
}

.brands__link {
  display: block;
  transition: all .4s ease;
}

.brands__link:hover {
  opacity: .8;
}

/* Links-slider */
.links-slider {
  padding: 52px 0 52px;
  box-sizing: border-box;
}

.links-slider__wrapper {
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.links-slider .swiper-slide {
  height: 320px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.links-slider .swiper-slide__img {
  max-height: 320px;
  border-radius: 5px;
}

/* Lead */
.lead__swiper .swiper-slide {
  min-height: 680px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.lead__swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 100%;
  /* height: calc(100% - 100px);
  background: rgb(0 0 0 / 30%); */
  height: 100%;
  background: rgb(0 0 0 / 30%);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.lead__swiper-controls {
  background: linear-gradient(268.25deg, rgba(0, 0, 0, 0.2) 13.78%, rgba(0, 0, 0, 0.076) 51.15%), linear-gradient(96.53deg, rgba(0, 0, 0, 0.2) 26.13%, rgba(0, 0, 0, 0) 83.07%);
  backdrop-filter: blur(5px);
  min-height: 99px;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  border-top: 0.6px solid #FFFFFF;
}

.lead__swiper_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1554px;
  padding: 0 25px;
  box-sizing: border-box;
  margin: 0 auto;
}

.lead__swiper-navigation {
  width: 100%;
  max-width: 94px;
  position: relative;
  height: 99px;
}

.lead__swiper-navigation .swiper-button-next svg *,
.lead__swiper-navigation .swiper-button-prev svg * {
  fill: #fff;
}

.lead__swiper-navigation .swiper-button-next {
  top: 50%;
  width: 41px;
  height: 41px;
  background: rgb(0 0 0 / 20%);
  border: none;
}

.lead__swiper-navigation .swiper-button-prev {
  top: 50%;
  width: 41px;
  height: 41px;
  background: rgb(0 0 0 / 20%);
  border: none;
}

.swiper-slide__container {
  max-width: 1554px;
  padding: 0 25px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 133px;
  min-height: 576px;
  padding-bottom: 160px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.swiper-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead__swiper-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 137%;
  color: #fff;
  max-width: 750px;
  margin: 0 0 22px;
  text-align: left;
}

.lead__swiper-subtitle {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  max-width: 540px;
  text-align: left;
}

.lead__swiper-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.lead__swiper-content {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin-right: 20px;
}

.links-list {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 728px;
  /* justify-content: space-between; */
}

.links-list__link {
  position: relative;
  display: block;
}

.links-list__item {
  margin-right: 25px;
  width: 33.3333333%;
  border-radius: 5px;
  overflow: hidden;
}

.links-list__item:last-child {
  margin-right: 0;
}

.lead .btn__primary_gray {
  min-width: 145px;
}

.links-list__date {
  color: #F8F8F8;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  background: #4BAC6C;
  border-radius: 5px;
  padding: 2px 7px;
  margin: 0 0 35px;
}

.links-list__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin: 0;
}

.links-list__content {
  text-align: left;
}

.links-list__content {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 47px 18px 19px;
  box-sizing: border-box;
  text-align: left;
  background: linear-gradient(0.74deg, #20241F 21.01%, rgba(10, 11, 13, 0) 89.14%);
  /* opacity: 0; */
  transition: opacity .4s ease;
}

.links-list__link:hover .links-list__content {
  opacity: 1;
}

.links-list__link img {
  transition: all .4s ease;
}

.links-list__link:hover img {
  transform: scale(1.2);
}

/* Useful links */
.useful-links {
  background-image: url(../images/useful.jpg);
  background-size: cover;
  min-height: 576px;
  /* padding: 60px 0 167px; */
  padding: 60px 0 147px;
  box-sizing: border-box;
  height: 576px;
  position: relative;
}

.useful-links__wrapper {
  max-width: 1554px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
  box-sizing: border-box;
}

.useful__swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 90px;
  position: relative;
  max-width: 1554px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  box-sizing: border-box;
}

.useful__swiper .swiper-slide {
  height: calc((100% - 26px) / 2) !important;
  background: none;
  padding: 26px 25px 0;
  box-sizing: border-box;
  border-top: 1px solid #000;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.useful-links__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 135%;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.useful-links__title svg {
  width: 54px;
  height: 54px;
  display: block;
  margin-right: 14px;
}

.useful__name {
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
  margin: 0 0 25px;
}

.useful__link {
  display: block;
  color: #4BA55E;
  text-decoration-line: underline;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  line-height: 135%;
}

/* Breadcrumbs */

.breadcrumbs {
  background: #F8F8F8;
  margin: 0;
  padding: 28px 0 20px;
  box-sizing: border-box;
}

.breadcrumbs-list {
  padding: 0;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1298px;
  /* padding: 0 25px; */
  padding: 0px;
}

.breadcrumbs-list__item {
  font-weight: 500;
  font-size: 12px;
  line-height: 183%;
  display: inline-block;
  margin-right: 4px;
}

.breadcumbs-list__link {
  color: #C2C2C2;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 8px;
}

.breadcumbs-list__link:after {
  content: '';
  display: block;
  background: #C2C2C2;
  position: absolute;
  right: 0;
  height: 16px;
  width: 1px;
}

.breadcumbs-list__link:hover {
  color: #4BAC6C;
}

.breadcrumbs-list__item_active {
  color: #4BAC6C;
}


/* Inner Page */
.inner {
  /* padding: 44px 0 120px; */
  padding: 24px 0 24px;
}

.inner_contacts {
  padding: 44px 0 0;
}

.inner__wrapper {
  max-width: 1298px;
  /* padding: 0 25px;  */
  padding: 0px;
  margin: 0 auto;
  box-sizing: border-box;
}

.documents-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

/* Documents Sidebar */
.documents-sidebar {
  /* position: sticky; */
  /* top: 80px; */
}

.documents-sidebar__nav {
  background: #fff;
  border-radius: 8px;
  padding: 0 0 20px 0;
}

.documents-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.documents-sidebar__item {
  margin-bottom: 10px;
}

/* Первый уровень - серые плашки */
.documents-sidebar__nav>.documents-sidebar__list>.documents-sidebar__item>.documents-sidebar__link {
  background-color: #F8F8F8;
  margin-bottom: 8px;
  border-radius: 4px;
}

.documents-sidebar__link {
  display: block;
  padding: 12px 42px 12px 16px;
  color: #253027;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.documents-sidebar__link:hover {
  background-color: #f5f5f5;
  color: #4BAC6C;
}

.documents-sidebar__link:hover .documents-sidebar__icon path {
  fill: #4BAC6C;
}

.documents-sidebar__link_active {
  background-color: #E8F5ED;
  color: #4BAC6C;
  font-weight: 500;
  border-left-color: #4BAC6C;
}

.documents-sidebar__link_active .documents-sidebar__icon path {
  fill: #4BAC6C;
}

/* Активная ссылка на первом уровне - сохраняем серую плашку, но с зеленым оттенком */
.documents-sidebar__nav>.documents-sidebar__list>.documents-sidebar__item>.documents-sidebar__link_active {
  background-color: #E8F5ED;
}

/* Вложенные списки в сайдбаре документов */
.documents-sidebar__item>.documents-sidebar__list {
  display: none;
  padding-left: 0;
  margin-top: 4px;
}

/* Иконка для разворачивания/сворачивания */
.documents-sidebar__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 14px;
  height: 8px;
  transition: transform 0.3s ease;
  pointer-events: auto;
  flex-shrink: 0;
  cursor: pointer;
}

.documents-sidebar__icon path {
  transition: fill 0.3s ease;
}

.documents-sidebar__toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44px;
  /* увеличенная зона клика */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.documents-sidebar__item_expanded>.documents-sidebar__link .documents-sidebar__icon {
  transform: translateY(-50%) rotate(0deg);
}

.documents-sidebar__item_expanded>.documents-sidebar__link>.documents-sidebar__icon {
  transform: translateY(-50%) rotate(0deg);
}

.documents-sidebar__item>.documents-sidebar__list .documents-sidebar__link {
  padding-left: 20px;
  background-color: transparent;
  font-size: 14px;
}

.documents-sidebar__item>.documents-sidebar__list .documents-sidebar__list .documents-sidebar__link {
  padding-left: 30px;
}

.documents-sidebar__item>.documents-sidebar__list .documents-sidebar__list .documents-sidebar__list .documents-sidebar__link {
  padding-left: 40px;
}

.documents-sidebar__item>.documents-sidebar__list .documents-sidebar__list .documents-sidebar__list .documents-sidebar__list .documents-sidebar__link {
  padding-left: 76px;
}

/* Класс для развернутых элементов */
.documents-sidebar__item_expanded>.documents-sidebar__list {
  display: block;
}

/* Documents Content */
.documents-content {
  min-width: 0;
}

/* Documents Category Dropdown */
.documents-category-dropdown {
  display: none;
  margin-bottom: 20px;
  margin-top: 18px;
}

.documents-category-select {
  width: 100%;
  padding: 20px 40px 12px 16px;
  font-size: 16px;
  line-height: 140%;
  color: #253027;
  background-color: #fff;
  border: 1px solid #C2C2C2;
  border-radius: 8px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23253027' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.documents-category-select:hover {
  border-color: #4BAC6C;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%234BAC6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.documents-category-select:focus {
  outline: none;
  border-color: #4BAC6C;
  box-shadow: 0 0 0 3px rgba(75, 172, 108, 0.1);
}

.inner__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 46px;
  margin: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.inner__title_center {
  justify-content: center;
  margin: 0 0 54px;
}

.inner__subtite {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  margin: 0 auto 86px;
  max-width: 992px;
}

/* Structure */
.structure-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.structure-list__item {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 255px minmax(400px, 946px);
  gap: 48px;
  background: #F8F8F8;
  border-radius: 10px;
  min-height: 324px;
}

.structure-list__content {
  width: 100%;
  max-width: 946px;
  padding: 24px 46px 12px 0;
  box-sizing: border-box;
  position: relative;
}

.structure-list__socials {
  position: static;
  margin: 0;
  padding: 0;
  z-index: 2;
  flex-shrink: 0;
  align-self: flex-start;
}

.structure-list__socials .social-list__item {
  position: relative;
  z-index: 2;
}

.structure-list__socials .social-list__link {
  background: #4BA55E !important;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-list__socials .social-list__icon {
  width: 26px;
  height: 26px;
}

.structure-list__item .social-list__icon * {
  fill: #282828;
}

.structure-list__item .social-list__icon rect {
  fill: #4BA55E;
}

.structure-list__socials .social-qr-popup {
  bottom: 100%;
  top: auto;
  right: 0;
  left: auto;
  transform: none;
  margin-bottom: 10px;
  z-index: 3 !important;
}

.structure-list__img-wrap {
  overflow: hidden;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}

.structure-list__img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.structure-list__name {
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  margin: 0 0 10px;
}

.structure-list__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  margin: 0 0 26px;
  color: #4F5450;
}

.structure-list__contacts-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.structure-list__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

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

.structure-list__contact:last-child {
  margin-bottom: 0;
}

.structure-list__link {
  color: #4BAC6C;
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  display: flex;
  align-items: center;
  transition: all .4s ease;
}

.structure-list__link:hover {
  opacity: .8;
}

span.structure-list__link:hover {
  opacity: 1;
}

.structure-list__link svg {
  margin-right: 12px;
  width: 19px;
  height: 19px;
  min-width: 19px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-list__people-title {
  margin-top: 26px;
  border-top: 1px solid #BEBEBE;
  padding-top: 14px;
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  color: #4F5450;
  display: flex;
  align-items: center;
}

.employees-toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin-left: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}


.structure-list__people {
  margin-top: 39px;
  height: 0;
  opacity: 0;
  transition: all .4s ease;
  display: none;
}

.structure-list__item_active .structure-list__people {
  height: auto;
  opacity: 1;
  display: block;
}

.structure-list__item_active .employees-toggle {
  transform: rotate(180deg);
}

.employee {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

.employee__info {
  position: absolute;
  bottom: 0;
  left: 0;
  top: calc(100% - 70px);
  background: rgba(11, 11, 11, 0.2);
  backdrop-filter: blur(6.48462px);
  border-radius: 8px 8px 0 0;
  padding: 0 10px 10px;
  text-align: left;
  transition: all .4s ease;
  width: 100%;
  box-sizing: border-box;
}

.employee__info_second {
  top: calc(100% - 92px);
}

.employee__info.employee__info_active {
  top: 0;
}

.employees .swiper-pagination {
  position: relative;
  margin-top: 14px;
}

.employee__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin: 0 auto 4px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}

.employee__toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.employee__info_active .employee__toggle::after {
  width: 700%;
  height: 500%;
  left: -300%;
}

.employee__toggle svg {
  width: 100%;
  height: 100%;
  display: block;
}

.employee__toggle:hover {
  opacity: .7;
}

.employee__info_active .employee__toggle {
  transform: rotate(180deg);
}

.employee__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 142%;
  margin: 0 0 14px;
  color: #fff;
  min-height: 34px;
  max-width: 170px;
}

.employee__info:not(.employee__info_active) .employee__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.employee__info:not(.employee__info_active) .employee__text,
.employee__info:not(.employee__info_active) .employee__contacts {
  opacity: 0;
}

.employee__text,
.employee__contacts {
  transition: opacity 0.3s;
}

.employee__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 144%;
  color: #fff;
  margin: 0 0 14px;
}

.employee__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.employee__contact {
  font-weight: 600;
  font-size: 12px;
  line-height: 183%;
  margin-bottom: 4px;
}

.employee__link {
  display: flex;
  align-items: center;
  color: #fff;
}

.employee__link svg {
  margin-right: 12px;
  display: block;
}


/* Inner Title */
.inner__title-filter {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  transition: all .4s ease;
  cursor: pointer;
  margin-left: 50px;
  white-space: nowrap;
}

.recolored {
  color: #4BAC6C;
}


.inner__title-filter svg {
  width: 20px;
  height: 20px;
  /* margin-left: 16px; */
}


.inner__title-filter:hover {
  color: #4BAC6C;
}

.inner__title_date {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

input[type=date]::-webkit-calendar-picker-indicator {
  display: block;
  width: 100%;
}

input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input[type=date] {
  display: block;
  width: 100%;
}


/* News List */
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list__date {
  background: #F8F8F8;
  border-radius: 3px;
  display: flex;
  padding: 4px 10px 5px;
  align-items: center;
  justify-content: center;
  color: #4BAC6C;
  font-weight: 600;
  font-size: 12.9362px;
  line-height: 120%;
  flex-direction: column;
  margin-right: 33px;
  white-space: nowrap;
  min-width: 80px;
}

.news-list__date span {
  font-weight: 600;
  font-size: 17.7872px;
  line-height: 120%;
  display: block;
}

.news-list__title {
  font-weight: 800;
  font-size: 26px;
  line-height: 130%;
  margin: 0 0 20px;
}

.news-list__link {
  transition: all .4s ease;
}

.news-list__link:hover {
  color: #4BAC6C;
}

.news-list__subtitle {
  margin: 0 0 50px;
  color: #C2C2C2;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%
}

.news-list__author {
  color: #C2C2C2;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.news-list__img {
  display: block;
  width: 432px;
  max-width: 432px;
}

.news-list__img-wrapper {
  position: relative;
  width: 432px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.news-list__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}

.news-list__img img {
  position: relative;
  z-index: 1;
  max-width: 432px;
  width: auto;
  height: auto !important;
  display: block;
  object-fit: contain;
  /* border-radius: 4.5px; */
}

.news-list__article {
  display: flex;
  align-items: flex-start;
  padding-top: 55px;
  border-top: 1px solid #C2C2C2;
}

.news-list__content {
  margin-right: 54px;
  width: 100%;
}

.news-list__item {
  margin-bottom: 28px;
}

/* Pagination */
.pagination {
  display: flex;
  list-style: none;
  margin: 70px 0 0;
  padding: 0;
  align-items: center;
}

.pagination-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  margin-right: 20px;
}

.pagination-link {
  color: #C2C2C2;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}

.pagination-link:hover {
  opacity: .7;
  color: #4BAC6C;
}

.pagination-link__active {
  color: #253027;
  border: 1px solid #4BAC6C;
  background: #F8F8F8;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.threedots {
  color: #C2C2C2;
}

/*  Documents */

.documents-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.documents-list__item {
  margin-bottom: 24px;
  position: relative;
}

.documents-list__item::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 479px;
  height: 2px;
  background-color: #C2C2C2;
}

.documents-list__date {
  color: #C2C2C2;
  font-weight: 400;
  font-size: 10px;
  line-height: 157%;
  margin-bottom: 0px;
  color: #4BAC6C;
  font-weight: 400;
  font-size: 11px;
  line-height: 157%;
  margin-bottom: 8px;
}

.documents-list__icon {
  background: #2A3143;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  min-width: 31px;
  height: 31px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 6px;
}

.documents-list__icon img {
  display: block;
}

.documents-list__icon span {
  top: 47%;
  position: absolute;
  font-size: 4px;
  text-transform: uppercase;
  color: #232732;
  font-weight: 700;
  line-height: 100%;
}

.documents-list__size {
  color: #2A3143;
  font-weight: 500;
  font-size: 9px;
  line-height: 200%;
}

.documents .documents-list__size {
  color: #C2C2C2;
}

.documents-list__title {
  color: #253027;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  transition: all .4s ease;
}

.documents .documents-list__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}

.documents-list__title:hover {
  color: #4BAC6C;
}

.documents-list__content {
  display: grid;
  grid-template-columns: minmax(10px, 70px) 1fr;
  gap: 32px;
  padding-bottom: 8px;
}

.pages__list {
  margin: 0 0 50px;
  padding: 0 0 0 30px;
  list-style-type: decimal;
}

.pages__list li {
  margin-bottom: 10px;
}

.pages__list li a {
  transition: all .4s ease;
  font-size: 18px;
  line-height: 140%;
}

.pages__list li a:hover {
  color: #4BAC6C;
  text-decoration: underline;
}

/* Form search */

.form-search {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr minmax(400px, 480px);
}

.form-search_inner {
  grid-template-columns: 1fr;
}

.form-search__main {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #4F5450;
  padding-bottom: 19px;
}

.form-search__input {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #253027;
  min-height: 25px;
  outline: none;
  min-width: 100%;
  padding-left: 24px;
  border: none;
  padding-right: 20px;
  box-sizing: border-box;
}

.form-search__input::placeholder {
  color: #253027;
}

.form-search__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: block;
  outline: none;
}

.inner-filter__wrapper {
  margin-bottom: 80px;
}

.inner-filter__result {
  font-weight: 500;
  font-size: 16px;
  line-height: 138%;
  color: #C2C2C2;
  margin-bottom: 30px;
}

.inner-filter__result span {
  font-weight: 800;
  color: #4F5450;
}

.inner__filter {
  margin-bottom: 54px;
}

.form-search__filter {
  border: none;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #4F5450;
  position: relative;
  padding: 0 0 19px;
  margin: 0;
}

.form-search__filter-head {
  color: #253027;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  cursor: pointer;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.form-search__filter-head::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url('../images/toggle.svg');
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  align-items: center;
  justify-content: center;
  background-position: center;
  transform: rotate(180deg);
  transition: all .4s ease;
}

.form-search__filter-head_active::after {
  transform: rotate(0);
}

.inner-filter__tags {
  margin-top: 19px;
  display: none;
}

.inner-filter__tags.active {
  display: block;
}

.inner-filter__btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #C2C2C2;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 24px;
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
  padding-right: 16px;
}

.inner-filter__btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url('../images/close.svg');
  position: absolute;
  right: 0;
  top: 7px;
}

.inner-filter__btn:hover {
  color: #253027;
}

.inner-filter__btn-reset {
  color: #253027;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 24px;
  cursor: pointer;
  transition: all .4s ease;
}

.form-search__filter-list {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  background-color: #2A3143;
  padding: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 0;
  visibility: hidden;
  z-index: 1;
}

.form-search__filter-list_active {
  height: auto;
  visibility: visible;
}

.filter-search__filter-item {
  color: #F8F8F8;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 22px;
}

.filter-search__filter-item input {
  position: absolute;
  right: 0;
  opacity: 0;
}

.filter-search__filter-item label {
  cursor: pointer;
  opacity: 0.7;
}

.filter-search__filter-item label:hover {
  opacity: 1;
  text-decoration: underline;
}

.filter-search__filter-item input:checked+label {
  opacity: 1;
}

.form-search__filter-count {
  background: #F8F8F8;
  width: 23px;
  height: 23px;
  color: #253027;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.form-search__filter-count.active {
  display: flex;
}

/* Error 404 */

.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
}

.error__img {
  max-width: 762px;
  display: block;
  margin-bottom: 90px;
}

.error__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 26px;
  letter-spacing: 0.03em;
}

.error__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  margin: 0 0 40px;
  max-width: 673px;
  text-align: center;
  letter-spacing: 0.05em;
}

.inner__article {
  /* display: grid; */
  grid-template-columns: minmax(400px, 992px) 150px;
  gap: 120px;
}

.inner__content .inner__article p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

/* Inner content */

.inner__content p {
  margin-top: 0;
  margin-bottom: 20px;

  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.inner__content p:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.inner__content img {
  margin-bottom: 53px;
  display: block;
  max-width: 100%;
  height: auto !IMPORTANT;
}

.inner__image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.inner__image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}

.inner__image-wrapper img {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

.inner__article p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.inner__date {
  display: none;
  color: #C2C2C2;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.inner__article .inner__date {
  text-align: right;
  display: block;
}


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

.inner__content ol {
  margin: 0;
  padding-left: 23px;
}

.inner__content ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.inner__content ol li {
  position: relative;
  margin-bottom: 10px;
  /* font-size: 20px;
  line-height: 150%; */
  padding-left: 7px;
}

.inner__content ul li::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: #4aac6c;
  position: absolute;
  left: 0;
  top: 9px;
}

.inner__content ul li>ul {
  margin-top: 10px;
}

.inner__content ul li>ol {
  margin-top: 10px;
}

.inner__content ol li>ol {
  margin-top: 10px;
}

.inner__contentol li>ul {
  margin-top: 10px;
}

.inner__content blockquote {
  padding: 0 0 20px 50px;
  color: #000;
  position: relative;
  max-width: 750px;
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 158%;
  position: relative;
  margin-bottom: 20px;
}



.inner__content blockquote::after {
  content: '';
  position: absolute;
  background: #4aac6c;
  height: 1px;
  max-width: 320px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.inner__content table {
  display: block;
  overflow: auto;
  width: fit-content;
  max-width: 100%;
  border-spacing: 0;
  border: 1px solid #4aac6c;
  margin-bottom: 20px;
}

.inner__content table th,
.inner__content table td,
.inner__content table tr {
  border: 1px solid #4aac6c;
}

.inner__content table thead {
  font-weight: 600;
}

.inner__content table thead th {
  font-weight: 500;
  line-height: 120%;
  padding: 14px;
  text-align: left;
  border-top: 0;
}

.inner__content table tbody td {
  padding: 14px;
}

.inner__content table tbody th {
  padding: 14px;
}

.inner__content iframe,
.inner__content .inner__video {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}

.inner__content a {
  color: #4aac6c;
  transition: color .3s ease;
}

.inner__content a:hover {
  color: #4aac6c;
  text-decoration: underline;
}

.inner__content h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 143%;
  margin: 0 0 10px;
}

.inner__content h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 143%;
  margin: 0 0 10px;
}


.inner__content h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  margin: 0 0 10px;
}

.inner__content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  margin: 0 0 10px;
}

.inner__content h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  margin: 0 0 10px;
}

.inner__content h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  margin: 0 0 10px;
}


/* Form order */

.order {
  max-width: 992px;
  margin: 0 auto;
}

.order .btn__primary {
  width: 100%;
  margin-top: 48px;
}

.order__fields {
  padding: 0;
  margin: 0;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.order__input {
  min-height: 22px;
  color: #253027;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border: none;
  background: none;
  outline: none;
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 44px;
}

.order__input::placeholder {
  color: #253027;
}

textarea.order__input {
  max-width: 100%;
  width: 100%;
  padding: 0 0 16px;
  margin: 0 0 7px;
}

.order__input_error {
  border-bottom: 1px solid #EB4E4E;
  color: #EB4E4E;
}

.order__input_error::placeholder {
  color: #EB4E4E;
}

.file-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 91px;
  margin-top: 10px;
}

input::file-selector-button {
  display: none;
}

.file-input__btn {
  position: absolute;
  z-index: -1;
  color: #C2C2C2;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
}

.file-input__btn svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: block;
}


.file-input__subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #C2C2C2;
  position: absolute;
  left: 175px;
}

.file-input__subtitle_disabled {
  display: none;
}

.file-input__file-send {
  padding-left: 180px;
  cursor: pointer;
}

.file-input__file-send {
  opacity: 0;
}

.file-input__file-send_active {
  opacity: 1;
  font-size: 12px;
}

.file-input:hover .file-input__btn {
  color: #4BAC6C;
}


.order__checkbox-icon {
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  border: 1px solid #C2C2C2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__checkbox-icon svg {
  display: none;
  width: 11px;
  height: 11px;
}

.order__checkbox-input:checked+.order__checkbox-icon svg {
  display: block;
}

.order__checkbox-input {
  z-index: 2;
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.order__checkbox-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 20px 1fr;
  gap: 20px;
}

.order__checkbox-text a {
  color: #4BAC6C;
  transition: all .4s ease;
  z-index: 4;
  position: relative;
}

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

.order__textarea_sum {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #C2C2C2;
  text-align: right;
}

.order__checkbox-text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  margin: 0;
}

.order__checkbox {
  margin-bottom: 22px;
}

.file-input__error {
  position: absolute;
  bottom: -22px;
  font-size: 9px;
  color: red;
}

.order__select {
  min-height: 22px;
  color: #253027;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border: none;
  background: none;
  outline: none;
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
  margin-bottom: 44px;
  width: 100%;
  min-width: 100%;
}

/* Contacts */

.contacts {
  padding: 59px 0;
  background-image: url('../images/contacts-bg.jpg');
}

.contacts .form-search__main {
  background: transparent;
}

.contacts .form-search__input {
  background: transparent;
}

.contacts__list {
  margin: 60px 0 0 0;
  padding: 0;
  list-style: none;
}

.contacts__list-block {
  background: #2A3143;
  border-radius: 10px;
}

.contacts__list-item {
  margin-top: 10px;
}

.contacts__list-item svg {
  transition: all .4s ease;
}

.contacts__list-item .contacts__list-body {
  display: none;
}

.contacts__list-item {
  background: #2A3143;
  border-radius: 10px;
}

.contacts__list-item_active .contacts__list-body {
  display: block;
}

.contacts__list-item_active .contacts__list-head {
  background: transparent;
  padding: 40px 24px 24px 51px;
}

.contacts__list-item_active .contacts__list__btn svg {
  transform: rotate(180deg);
}

.contacts__list-item_active .contacts__list__btn svg * {
  stroke: #fff;
}

.contacts__list-item_active .contacts__list__title {
  color: #4BAC6C;
}

.contacts__list-item_active .contacts__list_curator {
  display: block;
}

.contacts__list-item:first-child {
  margin-top: 0;
}

.contacts__list_curator {
  color: #F8F8F8;
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  margin-top: 16px;
  display: none;
}

.contacts__list_sector {
  color: #F8F8F8;
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  margin-top: 0px;
  padding: 0px 24px 24px 51px;
}

.contacts__list__section {
  margin-bottom: 40px;
}

.contacts__list__section:last-child {
  margin-bottom: 0;
}

.contacts-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts-items__row {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(400px, 420px) minmax(190px, 1fr);
  gap: 43px;
  align-items: flex-start;
  font-size: 20px;
  padding: 24px 24px 24px 51px;
  border-bottom: 0.4px solid #FFFFFF;
  margin-right: 44px;
}

.contacts-items__row:last-child {
  border-bottom: 0;
}

.contacts-items__name {
  color: #F8F8F8;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}

.contacts-items__post {
  color: #F8F8F8;
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
}

.contacts-items__info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  float: right;
}

.contacts-items__block:first-child {
  flex-shrink: 0;
  width: 175px;
}

.contacts-items__block:last-child {
  flex: 1;
}

/* .contacts-items__block {
  color: #F8F8F8;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  display: flex;
  align-items: center;
  margin-right: 60px;
} */



.contacts-items__block a {
  display: flex;
  align-items: center;
  transition: all .4s ease;
  margin-bottom: 10px;
}

.contacts-items__block p {
  display: flex;
  align-items: center;
  transition: all .4s ease;
  margin-bottom: 10px;
  margin-top: 0;
}

.contacts-items__block a:last-child {
  margin-bottom: 0;
}

.contacts-items__block a:hover {
  opacity: .7;
}

.contacts-items__block {
  color: #F8F8F8;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  margin-right: 0;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.contacts-items__block:last-child {
  margin-right: 0;
}



.contacts-items__block svg {
  width: 18px;
  height: 18px;
  margin-right: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.contacts-items__block:last-child {
  margin-right: 0;
}

.contacts__list-head {
  padding: 24px 24px 24px 51px;
  background: #fff;
  border: 2px solid #2A3143;
  border-radius: 10px;
}

.contacts__list__title {
  color: #253027;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all .4s ease;
}

.contacts__list__title:hover {
  opacity: .7;
}

.contacts__list__btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: block;
  min-width: 26px;
  height: 26px;
  width: 26px;
  margin-left: 24px;
}

/* Map */

[class*="ymaps-2"][class*="-ground-pane"] {
  -webkit-filter: url(../images/bluefilter.svg#bluefilter);
  filter: grayscale(100%) url(../images/bluefilter.svg#bluefilter);
}

/* [class*="ymaps-2"][class*="-ground-pane"] {
  -webkit-filter: grayscale(100%) url(/path-to-svg/yellowfilter.svg#yellowfilter);
          filter: grayscale(100%) url(/path-to-svg/yellowfilter.svg#yellowfilter);
} */

.ymaps-2-1-79-balloon_to_top .ymaps-2-1-79-balloon__tail {
  display: none;
}

.ymaps-2-1-79-balloon-content__header {
  display: flex !important;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 121%;
  max-width: 300px;
  margin-bottom: 30px;
}

.ymaps-2-1-79-balloon-content__header img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  object-fit: contain;
  display: block;
  margin-right: 10px;
}

.map-content {
  margin-top: 25px;
}

.map-content p {
  display: flex;
  margin: 0 0 8px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
}

.map-content img {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
}

.ymaps-2-1-79-balloon {
  background: #FFFFFF;
  border-radius: 5px;
  border: none;
  box-shadow: none !important;
  padding: 23px 9px 8px !important;
  overflow: hidden;
}

/* Popup */

.popup {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility .3s linear, opacity .3s linear;
  visibility: hidden;
  z-index: 9999;
  background: rgba(51, 51, 51, .37);
  padding: 50px 0;
}

.popup_opened {
  opacity: 1;
  visibility: visible;
}

.popup__container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 100px 60px;
  max-width: 455px;
}

.popup__close {
  background: transparent;
  border: none;
  cursor: pointer;
  height: 32px;
  margin: 0;
  padding: 0;
  right: 32px;
  top: 32px;
  width: 32px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__title {
  font-weight: 800;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  margin: 0 0 30px;
}

.popup__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  margin: 0 0 37px;
  text-align: center;
}

.popup .btn__primary {
  min-width: 189px;
  margin: 0 auto;
}

/* Popup script */
.popup-script {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility .3s linear, opacity .3s linear, z-index 0s 0.3s;
  visibility: hidden;
  z-index: -10;
  background: rgba(51, 51, 51, .37);
  padding: 50px 0;
}

.popup-script__opened {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: visibility .3s linear, opacity .3s linear, z-index .3s;
}

.popup-script__container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 80px 40px 40px;
  max-width: 900px;
}

.popup-script__content iframe {
  width: 100%;
}

.popup-script__close {
  background: transparent;
  border: none;
  cursor: pointer;
  height: 32px;
  margin: 0;
  padding: 0;
  right: 32px;
  top: 32px;
  width: 32px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-search__filter-list p {
  position: relative;
  color: #F8F8F8;
  cursor: pointer;
  opacity: 0.7;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

.form-search__filter-list p:hover {
  opacity: 1;
  cursor: pointer;
  text-decoration: underline;
}

.form-search__filter-list p .type-select {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.documents__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-clear {
  color: #253027;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-top: 19px;
  cursor: pointer;
}



/* хром, сафари */
/* .root-nav>li>.sub-menu-active::-webkit-scrollbar { width: 0; } */

/* ie 10+ */
/* .root-nav>li>.sub-menu-active { -ms-overflow-style: none; } */

/* фф (свойство больше не работает, других способов тоже нет)*/
/* .root-nav>li>.sub-menu-active { overflow: -moz-scrollbars-none; } */


/** обновление стилей ноябрь 2025 **/

/* Стили для страницы 404 */

.page-error-404 .inner {
  padding: 24px 0 142px;
}

.page-error-404 .inner__wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  padding: 80px 0 60px;
}

.page-error-404 .inner__title {
  text-align: center;
  justify-content: center;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.page-error-404 .inner__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-error-404 .inner__article {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page-error-404 .inner__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-error-404 .inner__text p {
  text-align: center;
  max-width: 680px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.9px;
}

.page-error-404 .inner__text .btn {
  margin: 0 auto;
}

/* Фильтр новостей */
.inner__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 64px;
  flex-wrap: wrap;
  gap: 20px;
}

.inner__title-wrapper .inner__title {
  margin: 0;
}

.news-filter {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
}

.news-filter__toggle-btn {
  display: none;
}

.news-filter__content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.news-filter__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-filter__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #253027;
  padding-bottom: 8px;
  min-width: 220px;
}

.news-filter__search-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  margin-right: 11px;
  flex-shrink: 0;
}

.news-filter__filter-btn {
  border: 2px solid #4BAC6C;
  color: #4BAC6C;
  border-radius: 8px;
  font-weight: 600;
  line-height: 137%;
  background-color: transparent;
  padding: 10px;
}

.news-filter__reset-btn {
  border: 2px solid #253027;
  color: #253027;
  border-radius: 8px;
  font-weight: 600;
  line-height: 137%;
  background-color: transparent;
  padding: 10px;
}

.news-filter__reset-btn:hover {
  border-color: #6b6b6b;
  color: #6b6b6b;
}

.news-filter__reset-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.news-filter__search-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.news-filter__search-input {
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  color: #253027;
  min-height: 25px;
  outline: none;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
}

.news-filter__search-input::placeholder {
  color: #253027;
}

.news-filter select {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #878787;
  border: none;
  background: none;
  outline: none;
  padding-bottom: 8px;
  border-bottom: 1px solid #878787;
  min-height: 22px;
  cursor: pointer;
  min-width: 120px;
}

.news-filter__date-wrapper {
  position: relative;
  display: inline-block;
  width: 135px;
  padding-right: 0;
  box-sizing: border-box;
}

.news-filter__date-wrapper--empty {
  /* Класс добавляется JavaScript для пустых полей */
}

.news-filter__date {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #253027;
  border: none;
  background: none;
  outline: none;
  padding-bottom: 7px;
  padding-left: 30px;
  padding-right: 8px;
  border-bottom: 1px solid #253027;
  min-height: 25px;
  cursor: text;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-indent: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6667 2.66667H12V1.33333C12 1.14924 11.8508 1 11.6667 1H10.6667C10.4826 1 10.3333 1.14924 10.3333 1.33333V2.66667H5.66667V1.33333C5.66667 0.14924 5.51743 1 5.33333 1H4.33333C4.14924 1 4 1.14924 4 1.33333V2.66667H3.33333C2.59695 2.66667 2 3.26362 2 4V13.3333C2 14.0697 2.59695 14.6667 3.33333 14.6667H12.6667C13.403 14.6667 14 14.0697 14 13.3333V4C14 3.26362 13.403 2.66667 12.6667 2.66667ZM12.6667 13.3333H3.33333V6.66667H12.6667V13.3333Z' fill='%23253027'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 calc(50% - 3px);
  background-size: 16px 16px;
}

.flatpickr-calendar {
  margin-top: 5px;
}

.flatpickr-weekdays {
  padding: 20px 0 !important;
}

.flatpickr-current-month {
  padding: 4px 0 0 0 !important;
}

.news-filter__date[type="text"] {
  cursor: text;
}

.news-filter__date-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.news-filter__date-calendar-btn {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #878787;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.news-filter__date-calendar-btn:hover {
  opacity: 1;
}

.news-filter__date-calendar-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.news-filter__date-wrapper--empty .news-filter__date-calendar-btn {
  opacity: 0.3;
}

.news-filter__date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
}

.news-filter__date-wrapper::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 30px;
  bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #253027;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  padding-right: 25px;
}

.news-filter__date-wrapper--empty::before {
  opacity: 1;
}

.news-filter__date-wrapper--empty .news-filter__date {
  color: transparent;
}

.news-filter__date-wrapper--empty .news-filter__date::-webkit-calendar-picker-indicator {
  opacity: 0.3;
}

.news-filter .btn__primary {
  margin-left: auto;
}

/* Стили для QR-кода социальных сетей */
.footer__socials-list {
  position: relative;
}

.social-list__item {
  position: static;
}

.social-qr-popup {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 10px;
  z-index: 1000;
  background: #4BA55E;
  border-radius: 8px;
  padding: 10px 21px 11px 21px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  transition: box-shadow 0.3s ease;
}

.social-qr-popup:hover,
.social-qr-link:hover .social-qr-popup {
  box-shadow: 0 -4px 12px rgb(75 165 94 / 40%), 0 4px 12px rgb(75 165 94 / 40%), -4px 0 12px rgb(75 165 94 / 40%), 4px 0 12px rgb(75 165 94 / 40%);
}

/* На мобильных устройствах тень всегда активна */
/* @media (max-width: 768px) {
  .social-qr-popup {
    box-shadow: 0 -4px 12px rgb(75 165 94 / 40%), 0 4px 12px rgb(75 165 94 / 40%), -4px 0 12px rgb(75 165 94 / 40%), 4px 0 12px rgb(75 165 94 / 40%);
  }
} */

/* Попапы соцсетей в подвале: центрируем относительно иконки */
.footer__socials-list .social-list__item {
  position: relative;
}

.footer__socials-list .social-qr-popup {
  bottom: 100%;
  top: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin-bottom: 10px;
}

.social-qr-popup_hidden {
  display: none !important;
}

.social-qr-image {
  width: 100%;
  height: auto;
  /* max-height: 158px; */
  display: block;
  border-radius: 5px;
  margin-bottom: 9px;
}

.social-qr-link {
  color: white;
  margin: 0;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  transition: all .4s ease;
}

.social-qr-link__text {
  text-decoration: none;
}


/* Попапы в шапке показываются снизу */
.header__socials-list .social-list__item {
  position: relative;
}

.header__socials-list .social-qr-popup {
  position: fixed;
  /* JS выставляет top/left, поэтому сбрасываем базовые bottom/right,
     иначе элемент может "растягиваться/уезжать" и давать тень в шапке */
  bottom: auto;
  right: auto;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 10000 !important;
  transform: translateX(-50%);
  background: #4BA55E;
  border-radius: 8px;
  padding: 10px 21px 11px 21px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  height: fit-content;
  /* box-shadow: -8px 4px 16px rgb(75 165 94 / 50%), 8px 4px 16px rgb(75 165 94 / 50%); */
}

.social-qr-link__text:hover {
  text-decoration: underline;
}

/* Фикс: на ширинах 1024px и ниже иногда скрывался второй пункт соцсетей (Max),
   поэтому на всякий случай принудительно показываем все элементы списка в подвале */
@media (max-width: 1024px) {
  .footer__socials-list .social-list__item {
    display: inline-block !important;
  }
}

/* Фиксы для полезных ссылок - скрытие нижнего ряда */
/* Скрываем второй ряд (элементы 6-10), если элементов меньше 5 */
.useful__swiper.useful__swiper_less-than-5 .swiper-slide:nth-child(n+6) {
  display: none !important;
}

/* Изменяем grid на 1 ряд, если элементов меньше 5 */
.useful__swiper.useful__swiper_less-than-5 .swiper-wrapper {
  grid-template-rows: 1fr !important;
}

/* Уменьшаем высоту слайдов, когда только один ряд */
.useful__swiper.useful__swiper_less-than-5 .swiper-slide {
  height: auto !important;
  min-height: auto !important;
}

/* Уменьшаем высоту контейнера, когда только один ряд */
.useful__swiper.useful__swiper_less-than-5 {
  padding-bottom: 0 !important;
  height: auto !important;
}

/* Уменьшаем высоту блока useful-links, когда только один ряд */
.useful-links.useful-links_less-than-5 {
  height: 390px !important;
  min-height: 390px !important;
}

/* Скрываем пагинацию, если элементов меньше 10 */
.useful__swiper.useful__swiper_less-than-10 .swiper-pagination {
  display: none !important;
}



/* cookie-consent: начало стилей окна согласия с cookie */
.cookie-consent__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  text-align: left;
}

.cookie-consent__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 150%;
}

.cookie-consent__check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.cookie-consent__check a {
  color: inherit;
  text-decoration: underline;
}

.btn__primary[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

/* cookie-consent: конец стилей окна согласия с cookie */

/* cookie-consent: начало позиционирования снизу справа */
#cookie-consent.popup {
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
  padding: 0;
  pointer-events: none;
}

#cookie-consent.popup_opened {
  z-index: 10001;
}

#cookie-consent .popup__container {
  pointer-events: auto;
  margin: 20px;
  padding: 18px;
  max-width: 455px;
}

@media (max-width: 600px) {
  #cookie-consent .popup__container {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 20px;
    max-width: none;
  }
}

/* cookie-consent: конец позиционирования снизу справа */

/* cookie-consent: начало типографики и тени */
#cookie-consent .popup__subtitle {
  text-align: left;
  font-size: 14px;
  line-height: 160%;
}

#cookie-consent .popup__container {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* cookie-consent: конец типографики и тени */

/* cookie-consent: начало стилей чекбоксов в стиле order__checkbox */
#cookie-consent .order__checkbox-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

#cookie-consent .order__checkbox-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}


#cookie-consent .order__checkbox-icon {
  width: 16px;
  height: 16px;
  border: 1px solid #4BAC6C;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

#cookie-consent .order__checkbox-icon svg {
  opacity: 0;
  transition: opacity .2s ease;
  display: block;
  width: 12px;
  height: 12px;
}

#cookie-consent .order__checkbox-input:checked+.order__checkbox-icon svg {
  opacity: 1;
}

#cookie-consent .order__checkbox-icon svg path {
  stroke-width: 2px;
}

#cookie-consent .order__checkbox-text p {
  margin: 0;
}

/* cookie-consent: конец стилей чекбоксов в стиле order__checkbox */