@charset "UTF-8";
:root {
  /*========== Base ==========*/
  --font-family: Inter, Arial size-adjust, Arial, sans-serif;
  --background-color: var(--white-color);
  --main-color: var(--main-color);
  --content-width: 1470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  /*========== Colors ==========*/
  --main-color: rgb(26, 27, 27);
  --white-color: #fff;
  --text-color: rgb(26, 27, 27);
  --blue-color: rgb(12, 116, 236);
  --gray-color: rgb(81, 82, 82);
  --dark-color: rgb(0, 10, 35);
  --attention-color: rgb(237, 14, 5);
  --link-color-blue: rgb(12, 116, 236);
  --related-color-blue: rgb(1, 114, 240);
  --quote-color-blue: rgb(1, 114, 240);
}
@media screen and (max-width: 576px) {
  :root {
    --container-offset: 10px;
  }
}

.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

.list {
  --gap: 30px;
  --elems: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--gap);
}

.list__item {
  width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
}
@media (max-width: 1024px) {
  .list__item {
    --gap: 30px;
    --elems: 2;
  }
}
@media (max-width: 600px) {
  .list__item {
    --gap: 20px;
    --elems: 1;
  }
}

/*========== Основной шрифт ==========*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-V.woff2") format("woff2");
  font-weight: 300 900;
  font-stretch: 75% 125%;
  font-display: swap;
  font-style: normal;
}
* {
  background: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--black);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  line-height: 1.2;
  -webkit-text-size-adjust: none;
}

main {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

h1,
h2,
h3,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

ul,
ol,
li {
  list-style: none;
}

.article,
.static-page {
  /* Стили для вложенных списков */
  /* Заголовок таблицы */
  /* Чередование строк для лучшей читаемости */
  /* Эффект при наведении */
  /* Стили для мобильной адаптации */
}
.article ul,
.article ol,
.static-page ul,
.static-page ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.article ul,
.static-page ul {
  list-style-type: none;
}
.article ul li,
.static-page ul li {
  position: relative;
  margin-bottom: 10px;
}
.article ul li:before,
.static-page ul li:before {
  content: "•";
  margin-right: 1rem;
}
.article ol,
.static-page ol {
  list-style-type: none;
  counter-reset: item;
}
.article ol li,
.static-page ol li {
  counter-increment: item;
  position: relative;
  margin-bottom: 12px;
}
.article ol li:before,
.static-page ol li:before {
  content: counters(item, ".") ".";
  margin-right: 1rem;
}
.article ul ul,
.article ol ol,
.article ul ol,
.article ol ul,
.static-page ul ul,
.static-page ol ol,
.static-page ul ol,
.static-page ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 10px;
}
.article ul ul li:before,
.static-page ul ul li:before {
  content: "◦";
}
.article table,
.static-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.article table thead,
.static-page table thead {
  background-color: #002e44;
  border-bottom: 1px solid #002e44;
}
.article table th,
.static-page table th {
  padding: 15px;
  text-align: left;
  color: var(--white-color);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article table td,
.static-page table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  color: var(--text-color);
  font-size: 1.4rem;
}
.article table tbody tr:nth-child(even),
.static-page table tbody tr:nth-child(even) {
  background-color: #ebeff0;
}
.article table tbody tr:hover,
.static-page table tbody tr:hover {
  background-color: #ebeff0;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 4.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.1rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

b,
strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

p,
.quote div,
ul li,
ol li,
.header-article-info__content {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.32px;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.content-article h2,
.content-article h3,
.static-page h2,
.static-page h3 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.content-article iframe {
  width: 100%;
}

.content-article .dleplyrplayer {
  margin-bottom: 1.5rem;
}

p a,
.static-page ul li a,
.article ul li a,
.quote a {
  font-weight: 600;
  color: var(--link-color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (any-hover: hover) {
  p a:hover,
  ul li a:hover,
  .quote a:hover {
    text-decoration-thickness: 2px;
  }
}
.quote {
  position: relative;
  margin: 2rem 0;
  border-left: 4px solid var(--quote-color-blue);
}

.quote div {
  margin: 0;
  padding: 1.5rem;
  font-weight: 500;
  background-color: #f0f0f0;
}

/* p.img-article {
  position: relative;
  margin: 0;
  display: block;
  padding-top: 56.25%;
} */

/* p.img-article img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
} */

p.img-article {
  position: relative;
  margin: 0;
  display: block;
}

p.img-article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  max-width: 100%;
  height: auto;
  min-height: 1px;
  vertical-align: middle;
}

p.img-article span.image-caption,
.image-block-header .image-caption {
  position: absolute;
  display: block;
  bottom: 10px;
  z-index: 100;
  width: 100%;
  padding: 5px 10px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

input,
button,
textarea {
  font-family: inherit;
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff;
  -webkit-text-fill-color: var(--black-color);
  color: var(--black-color);
}

input::-ms-clear {
  display: none;
}

/* Базовые стили для всех полей ввода */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
textarea,
select {
  padding: 12px 16px;
  margin: 8px 0 16px;
  width: 100% !important;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1.6rem;
  color: var(--text-color);
  background-color: var(--white-color);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Стили для текстовой области */
textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Стили при фокусе */
input:not([type="search"]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(66, 133, 244, 0.2);
  -webkit-box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

/* Стили для placeholder */
::-webkit-input-placeholder {
  color: var(--gray-color);
  opacity: 0.6;
}
::-moz-placeholder {
  color: var(--gray-color);
  opacity: 0.6;
}
:-ms-input-placeholder {
  color: var(--gray-color);
  opacity: 0.6;
}
::-ms-input-placeholder {
  color: var(--gray-color);
  opacity: 0.6;
}
::placeholder {
  color: var(--gray-color);
  opacity: 0.6;
}

/* Стили для disabled полей */
input:disabled,
textarea:disabled {
  background-color: #f5f5f5;
  color: #bdbdbd;
  cursor: not-allowed;
}

/* Стили для кнопки submit */
input[type="submit"],
button[type="submit"],
input[type="button"] {
  padding: 10px 15px;
  margin: 8px 0 !important;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--blue-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
input[type="button"]:hover {
  background-color: #144f9d;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

figure {
  overflow-x: auto;
}

article,
aside,
figure img,
hgroup,
footer,
header,
nav,
section,
main {
  display: block;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.menu-link {
  color: var(--text-color);
  font-weight: 700;
}
@media (any-hover: hover) {
  .menu-link:hover {
    color: var(--link-color-blue);
  }
}

.two-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.three-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}

.container-offset {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  width: 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 9999;
  background-color: var(--blue-color);
  -webkit-transition: width 0.1s ease-out;
  transition: width 0.1s ease-out;
}

.button-dark {
  border-radius: 3px;
  padding: 12px 21px 11px;
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .button-dark:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
  }
}

.button-white {
  border-radius: 3px;
  padding: 12px 21px 11px;
  background-color: var(--white-color);
  border: 1px solid;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .button-white:hover {
    color: var(--white);
    background-color: var(--blue-dark);
  }
}

.grid {
  display: -ms-grid;
  display: grid;
}

.grid-column {
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-beetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.size-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.img-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content {
  padding: 25px 0 40px;
}

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

section.nav-categories {
  padding: 1.5rem 0 0;
  overflow: hidden;
}

.nav-categories__list {
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #eaeaea #f5f5f5;
  white-space: nowrap;
  cursor: grab;
}

.nav-categories__list {
  scroll-snap-type: x mandatory;
}

.nav-categories__item {
  scroll-snap-align: start;
}

.nav-categories__list li {
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
}

.nav-categories__link {
  position: relative;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  background-color: rgb(241, 241, 241);
}

@media (any-hover: hover) {
  .nav-categories__link:hover {
    color: var(--white-color);
    background-color: var(--link-color-blue);
  }
}

.nav-categories__link.active {
  color: var(--white-color);
  background-color: var(--link-color-blue);
}

.news-container {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.s-title,
.s-title h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

.tags-block-title {
  margin-top: 1rem;
}
.tags-block-title span {
  color: var(--blue-color);
}

/*
Шапка сайта Header.scss
*/
.header {
  position: sticky;
  top: -48px;
  z-index: 1000;
}
.region {
  position: relative;
}
@media (any-hover: hover) {
  .region:hover .news-region {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
}
.header-helper {
  position: relative;
  background-color: #eaeaea;
}
.header-helper__container {
  width: 100%;
  height: 48px;
}
.news-region {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 130px;
  padding-top: 1.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.news-region li {
  font-size: 1.4rem;
}
.news-region__list {
  flex-direction: column;
  padding: 1.4rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--white-color);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.header-helper__list {
  gap: 20px;
}
.header-helper__item,
.news-region__item {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: var(--gray-color);
}
.header-helper__link,
.news-region__link {
  gap: 5px;
  font-size: inherit;
  color: inherit;
}
.news-region__link {
  display: flex;
  padding: 1rem;
}
@media (any-hover: hover) {
  .header-helper__link:hover,
  .news-region__link:hover {
    color: var(--link-color-blue);
    opacity: 0.8;
  }
}

/* Базовые стили бургера */
.burger {
  width: 25px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 100;
  outline: none;
  /* Анимация при открытии (добавляется JS-ом класс .active) */
}
.burger__line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--main-color); /* Цвет линий */
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.burger.active .burger__line:nth-child(1) {
  -webkit-transform: translateY(10.5px) rotate(45deg);
  -ms-transform: translateY(10.5px) rotate(45deg);
  transform: translateY(10.5px) rotate(45deg);
}
.burger.active .burger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.burger.active .burger__line:nth-child(3) {
  -webkit-transform: translateY(-10.5px) rotate(-45deg);
  -ms-transform: translateY(-10.5px) rotate(-45deg);
  transform: translateY(-10.5px) rotate(-45deg);
}
@media (any-hover: hover) {
  .burger:hover {
    /* Состояние при наведении */
  }
  .burger:hover .burger__line {
    background: var(--link-color-blue); /* Темнее при наведении */
  }
}

.header-main {
  position: relative;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header-main__container {
  gap: 25px;
  height: 68px;
}
.header-main__logo-and-menu-nav,
.header-main .header-main__controls {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header-main__logo-and-menu-nav,
.header-main .header-main__controls {
  height: inherit;
}
.header-logo {
  position: relative;
  margin-left: 40px;
}

.nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: inherit;
}
.nav__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  gap: 15px;
  height: inherit;
}
.nav__item {
  position: relative;
  margin: 0;
  height: inherit;
}
.nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--blue-color);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
@media (any-hover: hover) {
  .nav__item:hover::after {
    height: 5px;
  }
}

.nav__item.active::after {
  height: 5px;
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.nav__link.active {
  color: var(--link-color-blue);
}

.header-controls {
  position: relative;
  gap: 15px;
}
.header-controls__search {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header-controls__search svg {
  width: 24px;
  height: 24px;
  color: var(--text-color);
}
@media (any-hover: hover) {
  .header-controls__search:hover {
    opacity: 0.6;
  }
}
.header-controls__attention {
  position: relative;
  overflow: hidden;
}
.header-controls__attention-link {
  gap: 5px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--attention-color);
}
.header-controls__attention-link svg {
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .header-controls__attention-link:hover {
    border-color: var(--attention-color);
    color: var(--attention-color);
    background-color: var(--white-color);
  }
  .header-controls__attention-link:hover svg {
    color: var(--attention-color);
  }
}

/*
* Мобильное навигационное меню
*/
.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  /* height: 100vh; */
  height: 100%;
  width: 280px;
  background-color: var(--white-color);
  -webkit-box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
/* .menu-list {
  padding-bottom: 50px;
} */
.nav-menu-header {
  padding: 20px;
}

.nav-menu-close {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.nav-menu-close svg {
  width: 25px;
  height: 25px;
  pointer-events: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .nav-menu-close:hover svg {
    color: var(--blue-color);
  }
}

.nav-menu-logo {
  position: relative;
  padding-left: 10px;
}
.nav-menu-logo__text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  color: var(--text-color);
}
.nav-menu-logo__text span {
  font-weight: 800;
  color: var(--blue-color);
}

.menu-item {
  margin: 0;
}
.menu-item .menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}

.menu-item .size-icon {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.sub-menu {
  padding: 5px 0;
  background-color: rgba(77, 77, 77, 0.06);
}

.sub-menu li {
  padding-left: 1.5rem;
  font-size: 1.4rem;
}

.sub-menu li a {
  padding: 5px 20px 10px !important;
  font-weight: 400;
}

.rotated {
  transform: rotate(180deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*
* Форма поиска на сайте
*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1001;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  color: var(--white-color);
  background-color: var(--dark-color);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.search-popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.search-popup__btn {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}
.search-popup__title {
  padding-bottom: 3.5rem;
}
.search-popup__search-panel-input {
  padding-top: 4.5rem;
  padding-bottom: 5.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.search-popup__popular-request {
  margin-top: 3.2rem;
}

.close-btn-pop-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--white-color);
  background-color: #263049;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.close-btn-pop-up svg {
  width: 25px;
  height: 25px;
  pointer-events: none;
}
@media (any-hover: hover) {
  .close-btn-pop-up:hover {
    background-color: #38466b;
  }
}

.title-search {
  font-size: 6rem;
  font-weight: 500;
  line-height: 6.8rem;
  letter-spacing: 0.04rem;
  color: inherit;
}

.search-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 60px;
}
.search-form__input-request,
.search-form__button {
  height: inherit;
}
.search-form__input-request {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.search-form__input-request input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: inherit;
  padding: 10px 20px;
  font-size: 1.7rem;
  line-height: 2.1rem;
  font-weight: 400;
  border-radius: 5px;
  background-color: var(--white-color);
  color: var(--text-color);
}
.search-form__button button[type="submit"] {
  height: inherit;
  margin: 0 !important;
  padding: 10px 20px;
  font-size: 1.7rem;
  line-height: 2.1rem;
}
/* .search-form__btn {
  height: inherit;
  padding: 10px 20px;
  border: 1px solid var(--white-color);
  border-radius: 5px;
  font-size: 1.7rem;
  line-height: 2.1rem;
  color: var(--white-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
} */
@media (any-hover: hover) {
  .search-form__btn:hover {
    border-color: transparent;
    background-color: #263049;
  }
}

.popular-search-request {
  position: relative;
}
.popular-search-request__container {
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.popular-search-request__link {
  padding: 10px 25px;
  border: 1px solid transparent;
  border-radius: 20px;
  border-top-left-radius: 0px;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: var(--white-color);
  background-color: #263049;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .popular-search-request__link:hover {
    background-color: #38466b;
  }
}

/*
* Общие стили секций
*/
section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 3.7rem;
  font-weight: 900;
  color: var(--text-color);
}

.article-short-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
  color: var(--text-color);
}

/*
* Стили первой секции главной страницы
*/
.news-section {
  position: relative;
}
.news-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(280px, 350px);
  grid-template-columns: 1fr minmax(280px, 350px);
  gap: 25px;
}
.news-section__latest {
  position: relative;
}
.news-section__latest-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 3.2rem;
}

.hot-news__image-banner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.hot-news__image-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.85)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .hot-news__image-banner:hover::after {
    height: 50%;
  }
  .hot-news__image-banner:hover .hot-news__title {
    text-decoration: underline;
  }
}
.hot-news__image-link-banner {
  position: relative;
  display: block;
  padding-top: 56.25%;
}
.hot-news__hot-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hot-news__title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 4rem 3rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 4.2rem;
  color: var(--white-color);
  pointer-events: none;
}
.hot-news__description {
  position: relative;
  margin-top: 10px;
}
.hot-news__link {
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: var(--text-color);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
@media (any-hover: hover) {
  .hot-news__link:hover {
    color: var(--link-color-blue);
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* gap: 7px; */
}
.news-list__item {
  padding: 15px 0;
  margin: 0;
}
.news-list__item:not(:last-child) {
  border-bottom: 1px solid rgba(15, 22, 55, 0.1019607843);
}

.news-item {
  position: relative;
}

.news-card-meta__title {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 400;
  color: var(--text-color);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media (any-hover: hover) {
  .news-card-meta__title:hover {
    color: var(--link-color-blue);
  }
}
.news-card-meta__date,
.news-card-meta__category {
  display: block;
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: rgb(136, 139, 156);
}
.news-card-meta__category {
  margin-top: 0;
  margin-bottom: 5px;
}
.news-card-meta__description {
  margin-top: 1.5rem;
}
.news-card-meta__description p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 2.2rem;
}

/*
* Общие стили секций наглавной странице для переиспользования
*/
.news-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.news-section-offset {
  background-color: var(--dark-color);
}
.news-section-offset .section-title,
.news-section-offset .article-short-title {
  color: var(--white-color);
}

.card-list-xl__container {
  -ms-grid-columns: (minmax(280px, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 25px;
}

@media (any-hover: hover) {
  .news-card-xl:hover .news-card-xl__image,
  .news-card-xl:hover .news-card-m__img,
  .news-card-m:hover .news-card-xl__image,
  .news-card-m:hover .news-card-m__img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.8;
  }
  .news-card-xl:hover .news-card-xl__title,
  .news-card-xl:hover .news-card-meta__title,
  .news-card-m:hover .news-card-xl__title,
  .news-card-m:hover .news-card-meta__title {
    color: var(--link-color-blue);
    text-decoration: underline;
  }
}

.news-card-xl {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.news-card-xl__link {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.news-card-xl__header {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.news-card-xl__image {
  -o-object-fit: cover;
  object-fit: cover;
}
.news-card-xl__meta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
}
.news-card-xl__title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-meta {
  width: 100%;
  color: var(--white-color);
}
.card-meta__container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.card-meta__date,
.card-meta__category {
  padding: 0.5rem;
  font-size: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.74);
  border-radius: 4px;
}
.card-list-m__container {
  -ms-grid-columns: (minmax(280px, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 25px;
}

.news-card-m {
  position: relative;
  gap: 10px;
}
.news-card-m__image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
}
.news-card-m__img-link {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 56.25%;
}
.news-card-m__img {
  -o-object-fit: cover;
  object-fit: cover;
}
.news-card-m__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news-card-m .news-card-meta__title {
  font-weight: 700;
}

.load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}
.load-more__link {
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--link-color-blue);
}
@media (any-hover: hover) {
  .load-more__link:hover {
    border-color: var(--link-color-blue);
    color: var(--link-color-blue);
    background-color: var(--white-color);
  }
}

/*
* Общие стили секций
*/
/*
* Вывод новостей в картегориях
*/
.short-story-news {
  position: relative;
}
.short-story-news__container {
  gap: 30px;
}
.short-story-news__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 35px;
}

.short-story-news__content .dle_b_instagram {
  margin-bottom: 3.5rem;
}

.category-title {
  font-size: 4rem;
  font-weight: 700;
}

/*
* Краткая новость
*/
.short-news {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgb(229, 231, 235);
}
.short-news .news-card-meta__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
.short-news .news-card-m__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}
.short-news .news-card-meta__date {
  margin-top: 0;
}
.short-news .news-card-meta__title {
  margin-top: 2rem;
}
.short-news .news-card-meta__description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
* Главная страница полной новости
*/
section.full-news {
  padding-bottom: 0;
}

.full-story-content {
  position: relative;
}

.full-news__container {
  gap: 30px;
}

/*
* Стили полной новости
*/
       ul.xfieldimagegallery {
      display: none;
    }

    .swiper-container,
    .modal-swiper {
      max-width: 850px;
      width: 100%;
      overflow: hidden;
      height: auto;
      margin: 0 auto;
    }

    .swiper-slide {
      aspect-ratio: 16 / 9;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
      opacity: 0;
    }

    .modal.show {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      max-width: 90%;
      width: 850px;
    }

    .modal-close {
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10000;
    }

    .swiper-pagination,
    .swiper-pagination {
      position: static !important;
      margin-top: 12px;
    }

    .swiper-pagination-bullet {
      width: 10px !important;
      height: 10px !important;
    }

    .swiper-pagination-bullet-active {
      background: var(--blue-color) !important;
    }













.article,
.static-page {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.article__header,
.article__content,
.article__footer,
.static-page__header,
.static-page__content,
.static-page__footer {
  position: relative;
  margin-top: 35px;
}
.article__header,
.static-page__header {
  margin-top: 0;
}
.article__content div:has(> table),
.static-page__content div:has(> table) {
  display: block;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.article__footer,
.static-page__footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.header-article__container,
.header-article__block-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}
.header-article-meta__container {
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.3rem;
  color: var(--gray-color);
}
.header-article-meta__date,
.header-article-meta__time,
.header-article-meta__cirkle {
  font-size: inherit;
  color: inherit;
}
.header-article-info__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 15px 35px;
  border-radius: 5px;
  background-color: #f2f5fc;
}
.header-article-info__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgb(139, 171, 218);
  border-radius: 50%;
}
.header-article-info__icon svg {
  width: 35px;
  height: 35px;
  color: rgb(139, 171, 218);
}
.header-article-info__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  color: rgb(69, 69, 69);
}

.header-article-info__content.three-line-ellipsis {
      -webkit-line-clamp: 4;
}

.header-article-info__content p {
  margin: 0;
}

.image-block-header {
  position: relative;
  aspect-ratio: 16/9;
}
.image-block-header__img {
  object-fit: cover;
}
.content-article {
  display: -ms-grid;
  display: grid;
  -ms-grid-column-align: center;
  justify-self: center;
  max-width: 850px;
  width: 100%;
}

.content-footer {
  padding-top: 25px;
  border-top: 1px solid #eaeaea;
}
.content-footer__container {
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.other-news__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (any-hover: hover) {
  .other-news__item:hover .other-news__title {
    color: var(--link-color-blue);
  }
}
.other-news__article {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.other-news__text {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--gray-color);
}
.other-news__title {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.other-news__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.other-news-prev {
  text-align: left;
}

.other-news-next {
  text-align: right;
}

.we-are-dzen,
.instagram {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: #ffda1a;
}
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  transition: all .2s ease-in;
}
.instagram:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.instagram__link-absolute {
  position: absolute;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100%;
}
.we-are-dzen::before,
.instagram::before {
  content: "";
  position: absolute;
  top: 0;
  right: 23%;
  display: block;
  width: 700px;
  height: 700px;
  background-image: url("../img/svg/dzen-bg.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.instagram::before {
  right: 36%;
  width: 200px;
  height: 200px;
  background-image: url("../img/svg/instagramm.svg");
}
.we-are-dzen__container {
  position: relative;
  z-index: 10;
  min-height: 100px;
  height: 100%;
  padding: 20px 30px;
}
.we-are-dzen__text-logo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.we-are-dzen__text-logo .image {
  width: 140px;
  pointer-events: none;
}
.we-are-dzen__text {
  font-size: 2rem;
}
.we-are-dzen__read-us,
.instagram__read-us {
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--white-color);
  background-color: #db3b12;
  transition: transform .2s ease;
}
.instagram__read-us:hover {
  transform: translateY(-2px);
}
@media (any-hover: hover) {
  .we-are-dzen__read-us:hover {
    background-color: rgba(219, 58, 18, 0.8588235294);
  }
}

.tags a,
.share-social button,
.share-social__social-btn a {
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid var(--blue-color);
  border-radius: 0.3rem;
  color: var(--link-color-blue);
}
@media (any-hover: hover) {
  .tags a:hover,
  .share-social button:hover,
  .share-social__social-btn a:hover {
    color: var(--white-color);
    background-color: var(--link-color-blue);
  }
}

.tags {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tags .tags__container {
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.share-social {
  position: relative;
}
.share-social__button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share-social__button span {
  line-height: 1.6rem;
}
.share-social__button svg {
  margin-right: 3px;
}
.share-social .share-social__social-btn {
  gap: 10px;
}
.share-social .share-social__social-btn span {
  font-size: 1.4rem;
  color: var(--gray-color);
}
.share-social .share-social__social-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.4rem;
}
.share-social .share-social__social-btn a svg {
  width: 18px;
  height: 18px;
}

/*
* Стили статических страниц
*/
.static-page,
.content-part {
  position: relative;
  padding-top: 3.5rem;
}

/*
* Стили похожих новостей
*/
.related-news {
  position: relative;
  margin-top: 2rem;
  padding: 0;
}
.related-news__container {
  margin-top: 3.5rem;
  gap: 30px;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

/*
* Хлебные крошки
*/
.breadcrumbs {
    padding-bottom: 10px;
}
.breadcrumbs,
.meta-data {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: var(--gray-color);
}
.breadcrumbs__container {
  padding: 0 !important;
  line-height: 1.2;
}
.breadcrumbs__container,
.meta-data__container {
  display: block;
  overflow-x: auto;
  padding-bottom: 10px;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #eaeaea #f5f5f5;
}
.breadcrumbs__container::-webkit-scrollbar,
.meta-data__container::-webkit-scrollbar {
  height: 4px;
  background: #f5f5f5;
}
.breadcrumbs__container::-webkit-scrollbar-thumb,
.meta-data__container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.breadcrumbs__container::-webkit-scrollbar-thumb:hover,
.meta-data__container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.breadcrumbs__container::-webkit-scrollbar-button,
.meta-data__container::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.breadcrumbs a,
.meta-data a {
  margin-right: 3px;
  color: inherit;
}
.breadcrumbs a:not(:first-child),
.meta-data a:not(:first-child) {
  margin-left: 3px;
}
@media (any-hover: hover) {
  .breadcrumbs a:hover,
  .meta-data a:hover {
    color: var(--link-color-blue);
    text-decoration: underline;
  }
}

/*
* Сайд бар
*/
.sidebar {
  position: sticky;
  top: 85px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 380px;
  flex: 0 0 380px;
  height: 100%;
}
.sidebar__title {
  margin-bottom: 15px;
}

/*
* Навигация по страницам
*/
.pagination {
  position: relative;
  margin-top: 1.5rem;
  width: 100%;
}
.pagination__prev span,
.pagination__prev a,
.pagination__next span,
.pagination__next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.pagination__prev span svg,
.pagination__prev a svg,
.pagination__next span svg,
.pagination__next a svg {
  width: 20px;
  height: 20px;
  color: var(--dark-color);
}
.pagination__prev span,
.pagination__next span {
  cursor: not-allowed;
}
.pagination__prev span svg,
.pagination__next span svg {
  color: rgb(234, 234, 234);
}
.pagination__prev {
  vertical-align: middle;
}
.pagination__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: var(--dark-color);
}
.pagination__pages a,
.pagination__pages span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.7rem;
  font-weight: 500;
  color: inherit;
}
@media (any-hover: hover) {
  .pagination__pages a:hover:not(.nav_ext),
  .pagination__pages span:hover:not(.nav_ext) {
    color: var(--link-color-blue);
  }
}
.pagination__pages span:not(.nav_ext) {
  color: var(--blue-color);
}
.pagination__next {
  vertical-align: middle;
}

/*
* Информационная табличка
*/
.berrors {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 8px;
  background-color: rgba(12, 116, 236, 0.1);
  border-left: 4px solid rgb(12, 116, 236);
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  -webkit-animation: fadeIn 0.3s ease-out;
  animation: fadeIn 0.3s ease-out;
}
.berrors__title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(12, 116, 236);
}
.berrors__title::before {
  content: "⚠";
  margin-right: 5px;
  font-size: 2rem;
  color: rgb(12, 116, 236);
}

/* Анимация появления */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*
* Страница поиска стартовая
*/
td.search > div:first-child {
  margin: 0 !important;
}

/*
* Страница расширенного поиска стартовая
*/
.searchtable {
  margin-top: 20px;
}

.searchtable table {
  width: 100%;
  border-collapse: collapse;
}

.searchtable td.search {
  vertical-align: top;
}

/* Стили для fieldset (блоков с рамкой) */
.searchtable fieldset {
  padding: 15px;
  margin: 0 10px 10px 0 !important;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: var(--white-color);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.searchtable legend {
  padding: 0 10px;
  font-size: 1.5rem;
  color: var(--blue-color);
  font-weight: 500;
}

/* Общие стили для полей ввода */
.textin {
  padding: 12px 16px;
  margin: 8px 0 16px;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1.5rem;
  color: var(--text-color);
  background-color: var(--white-color);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.textin:focus {
  outline: none;
  border-color: rgba(66, 133, 244, 0.2);
  -webkit-box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

/* Стили для выпадающих списков */
select.textin {
  padding: 11px 16px;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Стили для чекбоксов и радио-кнопок */
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  accent-color: var(--blue-color);
}

/* Стили для кнопок */
.bbcodes {
  padding: 10px 15px;
  margin: 8px 20px 8px 0;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--blue-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bbcodes:hover {
  background-color: #144f9d;
}

/* Стили для многострочного списка категорий */
#catlist {
  height: 200px;
  width: 100%;
  padding: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: var(--white-color);
  font-size: 1.5rem;
}

#catlist option {
  padding: 8px 12px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

#catlist option:hover {
  background-color: rgba(66, 133, 244, 0.1);
}

/* Стили для подписей и меток */
.searchtable div {
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* Дополнительные улучшения UX */
label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/*
Секция fotter,  footer.scss
*/
.footer {
  position: relative;
  background-color: var(--dark-color);
}
.footer__top {
  padding: 30px 0 15px;
  border-bottom: 1px solid rgba(215, 216, 220, 0.1);
}
.footer__bottom {
  padding: 15px 0 30px;
}

.footer-top__flex-container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-top__item span {
  color: #94999f;
}
.footer-top__item:not(:first-child) {
  padding-left: 12px;
}
.footer-top__link {
  font-size: 1.4rem;
  letter-spacing: 0.02rem;
  color: var(--white-color);
}
@media (any-hover: hover) {
  .footer-top__link:hover {
    opacity: 0.7;
  }
}
.footer-top__other-text {
  margin-top: 12px;
  font-size: 1.4rem;
  color: #94999f;
}

.footer-bottom {
  position: relative;
}
.footer-bottom__wrapper {
  flex-wrap: wrap;
}
.footer-bottom__text {
  font-size: 1.4rem;
  color: var(--white-color);
}

.maxdev-by-copyright {
  position: relative;
  padding: 1.5rem 0;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #94999f;
}

.maxdev-by-copyright a {
  margin-left: 0.5rem;
  font-weight: 400;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.maxdev-by-copyright a:hover {
  color: #d3243d;
}

.maxdev-by-copyright a span {
  color: #d72929;
  transition: color 0.2s ease-in-out;
  font-weight: 700;
}

.maxdev-by-copyright a:hover span {
  color: var(--white-color, #fff);
}

@media screen and (max-width: 1200px) {
  .news-section__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .card-list-m__container {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .sidebar {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .header-helper,
  .nav {
    display: none;
  }
  .header {
    top: 0;
  }
  .header-main__container {
    height: 50px;
  }
  .header-logo {
    display: block;
    margin-left: 15px;
    width: 50px;
    height: 50px;
  }
  .header-controls__attention-link {
    padding: 8px 10px;
    font-size: 1.4rem;
  }
  .header-main__logo-and-menu-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .burger {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 20px;
    height: 16px;
  }
  .burger__line {
    height: 2px;
  }
  .title-search {
    font-size: 4rem;
    line-height: 1;
  }
  .search-popup__title {
    padding-bottom: 1.5rem;
  }
  .hot-news__image-banner::after {
    height: 50%;
  }
  .card-list-xl__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .related-news__container {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select {
    padding: 10px 14px;
    font-size: 1.5rem;
  }
  section {
    padding: 2.5rem 0 1.5rem;
  }
  .article table th,
  .article table td,
  .static-page table th,
  .static-page table td {
    padding: 10px 15px;
    font-size: 1.3rem;
  }
  .hot-news__title {
    padding: 0 2rem 2rem;
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .card-list-m__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .berrors {
    padding: 14px 16px;
    font-size: 14px;
    margin: 16px 0;
  }
  .berrors__title {
    font-size: 15px;
  }
  .searchtable td.search {
    display: block;
    width: 100% !important;
    padding: 5px 0;
  }
  .textin {
    font-size: 1.5rem;
    padding: 10px 14px;
  }
  .bbcodes {
    width: 100%;
    margin: 8px 0 !important;
  }
  .searchtable legend {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .title-search {
    font-size: 3rem;
  }
  .close-btn-pop-up {
    width: 35px;
    height: 35px;
  }
  .search-popup__btn {
    right: 1.5rem;
    top: 1.5rem;
  }
  .search-form {
    height: 50px;
  }
  .search-form__input-request input,
  .search-form__btn {
    font-size: 1.5rem;
  }
  .popular-search-request__container {
    gap: 10px;
  }
  .news-section__grid {
    gap: 5px;
  }
  .hot-news__title {
    padding: 0 0.8rem 1rem;
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 600;
  }
  .hot-news__image-banner::after {
    height: 80%;
  }
  .news-section__latest {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(15, 22, 55, 0.1019607843);
  }
  .news-card-m .news-card-meta {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .news-card-m .news-card-meta__category,
  .news-card-m .news-card-meta__title,
  .news-card-m .news-card-meta__date,
  .news-card-m .news-card-meta__description p {
    font-size: inherit;
    line-height: inherit;
  }
  .load-more {
    margin-top: 0;
  }
  .load-more__link {
    width: 100%;
    text-align: center;
  }
  .pagination__pages {
    display: none;
  }
  .pagination__wrapper {
    gap: 20px;
  }
  .pagination__prev span,
  .pagination__prev a,
  .pagination__next span,
  .pagination__next a {
    width: 100px;
    height: auto;
    border: 1px solid #eaeaea;
    border-radius: 5px;
  }
  .pagination__prev span svg,
  .pagination__prev a svg,
  .pagination__next span svg,
  .pagination__next a svg {
    width: 100%;
    height: 40px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  section.full-news,
  .static-page,
  .content-part {
    padding-top: 1.5rem;
  }
  .s-title {
    font-size: 2.2rem;
  }
  .header-article-meta__cirkle,
  .header-article-info__icon {
    display: none;
  }
  .header-article-info__container {
    padding: 10px;
  }
  .header-article-info__content.three-line-ellipsis {
    -webkit-line-clamp: 8;
  }
  .article ul,
  .article ol,
  .static-page ul,
  .static-page ol {
    padding-left: 0.5rem;
  }
  .article h2,
  .static-page h2 {
    font-size: 1.9rem;
  }
  .article h3,
  .static-page h3 {
    font-size: 1.7rem;
  }
  .other-news__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .other-news .article-short-title {
    font-size: 1.4rem;
  }
  .we-are-dzen__container {
    padding: 10px;
    min-height: 80px;
  }
  .we-are-dzen__read-us,
  .instagram__read-us {
    padding: 10px;
    font-size: 1.4rem;
  }
  .we-are-dzen__text {
    font-size: 1.4rem;
  }
  .we-are-dzen__text-logo .image {
    width: 80px;
  }
  .we-are-dzen::before {
    content: none;
  }
  .tags {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .share-social {
    margin-top: 20px;
  }
  button.share-social__button {
    display: none;
  }
  .share-social__social-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .related-news__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) and (any-hover: hover) {
  .pagination__prev a:hover,
  .pagination__next a:hover {
    background-color: var(--blue-color);
    border-color: var(--link-color-blue);
  }
  .pagination__prev a:hover svg,
  .pagination__next a:hover svg {
    color: var(--white-color);
  }
}
@media screen and (max-width: 425px) {
  .short-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
