/* убираем противную рамку вокруг ссылок */
img, a img{outline:none !important;}
a:focus{outline:none !important;}
/* скрываем каптчу гугла */
.grecaptcha-badge {visibility: hidden;}

html, body {
/* Убирает прокрутку по горизонтале, для мобильной версии */
	overflow-x: hidden;
}

@font-face {
	font-family: 'Roboto Flex';
	src: url('/assets/fonts/RobotoFlex-VF.ttf') format('truetype supports variations'),
		url('/assets/fonts/RobotoFlex-VF.ttf') format('truetype-variations');
	font-weight: 400 700;
	font-stretch: 25% 151%;
	font-display: swap;
}

/*


@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('/assets/fonts/montserrat-medium.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('/assets/fonts/montserrat-bold.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 500;
	src: url('/assets/fonts/montserrat-mediumitalic.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 700;
	src: url('/assets/fonts/montserrat-bolditalic.ttf') format('truetype');
	font-display: swap;
} */

/*
@font-face {
	font-family: 'Public Sans';
	font-style: normal;
	font-weight: 400 900;
	src: url('ed/assets/fonts/PublicSans-VariableFont_wght.ttf') format('truetype supports variations');
	src: url('e/assets/fonts/PublicSans-VariableFont_wght.ttf') format('truetype-variations');
	font-display: swap;
}
@font-face {
	font-family: 'Public Sans';
	font-style: italic;
	font-weight: 400 900;
	src: url('/assets/fonts/PublicSans-Italic-VariableFont_wght.ttf') format('truetype supports variations');
	src: url('/assets/fonts/PublicSans-Italic-VariableFont_wght.ttf') format('truetype-variations');
	font-display: swap;
} 
*/
:root {
	--color-primary: #4d92fa;
	--color-black: #353535;
}

body {
	font-family: 'Roboto Flex', sans-serif;
	color: var(--color-black);
	font-size: 1rem;
	margin-top: 68px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
}

p b {
	color: var(--color-black);
	font-weight: 700;
}
p strong {
	color: var(--color-primary);
	font-weight: 700;
}
.hyphens p, .hyphens li {
	text-align: justify;
	hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

.hyphens p:last-child, .hyphens li:last-child {
	margin-bottom: 0px;
}

/*

a:link, a:visited, a:active {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	color: #000000;
	text-decoration: none;
	transition-duration: .3s;
}

*/

/* таблица в плитке */
.my-card-table td:first-child {
	padding-left: 0;
}
.my-card-table td:last-child {
	padding-right: 0;
	text-align: right;
}

/* таблица с ценами на главной */
.my-price-table {
	
}

/* ссылки в футере */
a.my-footer-link:link, a.my-footer-link:visited, a.my-footer-link:active {
	color: #ffffff;
	text-decoration: none;
}
a.my-footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}

small, .small {
	line-height: 1;
}
.bg-banner {
	/*background-image: url(/assets/img/bg-banner.webp);*/
	background-image: url(https://fakeimg.pl/1920x500/);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.logo-header {
	height: 45px;
}
.logo-footer {
	height: 45px;
}

/* Стили предупреждения о cookie
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
}
.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
	transition-delay: 500ms;
}
/* кнопка наверх */
.tostart {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1002;
	display: none;
	opacity: 1;
}
.tostart:hover {
	cursor: pointer;
	opacity: .75;
	transition-duration: .15s;
}
.img-to-top {
	width:2rem;
	margin:0 auto;
	display:block;
	position:absolute;
	left: 8px;
	top: -3px;
}

/* аккордеон */
/* удираем нижний марджинг последнего абзаца */
.accordion-body p:last-child {
	margin-bottom: 0;
}

/* стили кнопок в слайдере */
.my-prev, .my-next {
	position: absolute;
	top: calc(50% - 1.25rem);
	color: var(--color-warning);
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	text-align: center;
	line-height: 2.5;
	z-index: 1000;
	cursor: pointer;
	box-shadow: 0px 8px 16px rgba(78, 80, 85, 0.12);
}
.my-next {
	right: 0px;
}
.my-next >svg {
	height: 1.5rem;
	padding-left: 3px;
}
.my-prev > svg {
	height: 1.5rem;
	padding-right: 3px;
}

/* стили верхнего меню*/
.top-menu { /* общее оформление меню */
	font-size: 1rem;
	z-index: 1000;
	position: relative;
}

.top-menu a:link, .top-menu a:visited, .top-menu a:active {
	color: var(--color-balck);
	text-decoration: none;
}

.top-menu a:hover {
	color: var(--color-black);
	text-decoration: underline;
}

.top-menu ul{
	display: none;
	background-color: white;
	position: absolute;
	top: 100%;
	opacity: 0;
}
.top-menu li:hover ul {
	display: block;
	opacity: 1;
	-webkit-animation: display-none-transition 0.15s both;
	animation: display-none-transition 0.15s both;
}
@-webkit-keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
@keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
.top-menu, .top-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top-menu li {
	float: left;
	position: relative;
	height: 100%;
	padding: 0 .5rem;
}
.top-menu li a {
	display: block;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
.top-menu ul {
	border: 1px solid var(--color-black);
}
.top-menu ul li {
	float: none;
	white-space: nowrap;
}
.top-menu li:hover {
	background-color: white;
}
.top-menu ul li:hover {
	background-color: white;
}

/* стили mmenu */
.mm-spn--light {
	/* background: #fff; */
}
.mm-spn {
	color: var(--color-primary);
}
.mm-spn a {
	color: var(--color-primary);
}
.mm-spn a:active, .mm-spn a:focus {
	/* color: var(--color-danger);*/
}

/*votes*/
.votes {
	padding: 60px 40px;
	background-color: rgba(21, 81, 229, 0.08);
}
.votes .title {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.votes .block-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.votes .block-result {
	text-align: center;
}
.vote-btn {
	border: 0;
	outline: none;
}
.vote-btn:active {
	border: 0;
	background-color: unset;
	border-color: unset;
}
.vote-btn:hover {
	opacity: .5;
}
.vote-btn:disabled {
	color: unset;
	background-color: unset;
	border-color: unset;
	border: 0;
}
/*global*/
.section {
	padding-top: 96px;
}
.title {
	margin-bottom: 32px;
}
/*header*/

/* === БАННЕР (светлый) === */

.banner {
	padding: 42px 0 14px;
	color: #0f172a;
	background:
	#eef2ff
	url("/assets/img/bg-banner-1.png")
	no-repeat right center;
	-webkit-background-size: cover;
	background-size: cover;

}
.banner-title {
	margin-bottom: 24px;
	line-height: .95;
}
.banner .card {
	border-radius: 16px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.banner .card:hover {
	border-color: #60a5fa;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.banner .card-title {
	margin-bottom: 16px;
	font-weight: 500;
	font-size: 24px;
}
.banner .card-text {
	line-height: 2;
}
.banner .card-footer {
	padding: 0 16px 24px;
	background-color: transparent;
	border: 0;
}
.banner .banner-block-btn button:first-child {
	width: 303px;
	height: 50px;
	margin-right: 30px;
	font-weight: 700;
	color: #fff;
	border-radius: 46px;
	background-color: #2461e9;
}
.banner .banner-block-btn button:last-child {
	width: 298px;
	height: 50px;
	font-weight: 700;
	border-radius: 46px;
	background-color: #fff;
}
/* Кнопки внутри карточки Цели */

.union-card__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Кнопки (поверх bootstrap) — светлая схема */

.union-banner .btn-primary {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.union-banner .btn-primary:hover,
.union-banner .btn-primary:focus {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.45);
}

.union-banner .btn-outline-light {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 500;
  border-width: 1px;
  background: transparent;
  border-color: #cbd5e1;
  color: #0f172a;
}

.union-banner .btn-outline-light:hover,
.union-banner .btn-outline-light:focus {
  background: #e5e7eb;
  color: #0f172a;
}

/* === СЕКЦИИ НИЖЕ БАННЕРА (светлые) === */

.union-section {
  padding: 60px 0;
  position: relative;
}

.union-section--dark {
  background: #ffffff;
}

.union-section--soft {
  background: #f9fafb;
}

.union-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 16px;
}

.union-section__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
}

.union-section__link {
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

.union-section__link:hover {
  text-decoration: underline;
}

/* === "Стеклянные" блоки и карточки (рейтинги, каталоги, статьи, отзывы) === */

.glass-block {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 20px 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.glass-block--soft {
  background: #f9fafb;
}

.glass-block__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.glass-block__lead {
  margin: 0 0 18px;
  font-size: 14px;
  color: #4b5563;
}

.glass-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.glass-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.glass-card--compact {
  min-height: 160px;
}

.glass-card--review {
  min-height: 140px;
}

.glass-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-card__logo,
.glass-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.glass-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.glass-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}

.glass-card__action {
  margin-top: 4px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

.glass-card__action:hover {
  text-decoration: underline;
}

/* === Адаптив (остался тем же) === */

@media (max-width: 991.98px) {
  .union-banner {
    background-position: center top;
  }

  .union-banner__content {
    padding: 56px 0 64px;
  }

  .union-banner__title {
    font-size: 26px;
  }

  .union-banner__cards {
    flex-direction: column;
  }

  .union-banner::after {
    width: 0;
  }

  .union-section {
    padding: 44px 0;
  }
}

@media (max-width: 575.98px) {
  .union-banner {
    min-height: 100vh;
  }

  .union-banner__title {
    font-size: 22px;
  }

  .union-card {
    padding: 18px 16px 16px;
  }

  .union-card__text {
    font-size: 13px;
  }

  .union-card__actions {
    flex-direction: column;
  }

  .union-card__actions .btn {
    width: 100%;
    text-align: center;
  }

  .union-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*rating*/
.rating .block-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.rating .title {
	margin-bottom: 0;
}
.rating .card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
	cursor: pointer;
}
.rating .card:hover {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.rating .card-header {
	padding: 24px;
	border: 0;
	background-color: transparent;
}
.rating .card-body {
	padding: 0 24px 24px;
}
.rating .card img {
	margin-right: 24px;
}
/*catalog*/
.catalog .card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
}
.catalog .card:hover {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.catalog .card-header {
	padding: 24px;
	border: 0;
	background-color: transparent;
}
.catalog .card-body {
	padding: 0 24px;
}
.catalog .card-footer {
	display: flex;
	justify-content: flex-end;
	padding: 24px;
	border: 0;
	background-color: transparent;
}
.catalog .card-footer a {
	border-radius: 999px;
	padding: 10px 22px;
	font-weight: 500;
	border-width: 1px;
	background: transparent;
	border-color: #cbd5e1;
	color: #0f172a;
}
.catalog .card-footer a:hover,
.catalog .card-footer a:focus {
  background: #e5e7eb;
  color: #0f172a;
}
/*articles*/
.articles .block-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.articles .title {
	margin-bottom: 0;
}
.articles .card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
	cursor: pointer;
	overflow: hidden;
}
.articles .card:hover {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.articles .card-header {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.articles .card-body {
	padding: 24px 0;
}
.articles .card img {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}
.articles .card-title {
	font-size: 22px;
}
.articles .card-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.articles .card-footer {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.articles .card-footer a {
	font-weight: 700;
}
/*charter*/
.charter {
      max-width: 960px;
      margin: 32px auto;
      padding: 24px 20px 32px;
      background-color: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #222;
      line-height: 1.6;
    }

    /* Шапка устава + кнопка */
    .charter-header {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .charter-title {
      font-size: 1.8rem;
      font-weight: 600;
      color: #111;
      margin-bottom: 4px;
    }

    .charter-subtitle {
      margin: 0;
      font-size: 1rem;
      color: #555;
    }

    /* Блок с кнопкой скачивания */
    .charter-download {
      margin-top: 4px;
    }

    .charter-download-label {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 6px;
    }

    .charter-download-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #0b63d1, #42a5f5);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(11, 99, 209, 0.25);
      transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
      white-space: nowrap;
    }

    .charter-download-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(11, 99, 209, 0.33);
      opacity: 0.95;
    }

    .charter-download-btn:active {
      transform: translateY(0);
      box-shadow: 0 4px 14px rgba(11, 99, 209, 0.3);
    }

    .charter-download-btn-icon {
      font-size: 1.1rem;
    }

    /* Оглавление */
    .charter-toc {
      margin: 16px 0 28px;
      padding: 16px 18px;
      border-radius: 12px;
      background-color: #f8f9fb;
      border: 1px solid #e1e4ea;
    }

    .charter-toc h2 {
      margin: 0 0 8px;
      font-size: 1.05rem;
      font-weight: 600;
      color: #333;
    }

    .charter-toc ol {
      margin: 0;
      padding-left: 18px;
      font-size: 0.95rem;
    }

    .charter-toc a {
      color: #0b63d1;
      text-decoration: none;
    }

    .charter-toc a:hover {
      text-decoration: underline;
    }

    /* Заголовки разделов */
    .charter h2 {
      font-size: 1.25rem;
      margin-top: 24px;
      margin-bottom: 12px;
      padding-top: 18px;
      border-top: 1px solid #e2e2e2;
      font-weight: 600;
    }

    .charter h3 {
      font-size: 1.05rem;
      margin-top: 18px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    /* Текст и списки */
    .charter p {
      margin: 4px 0;
    }

    .charter ul {
      margin: 6px 0 6px 1.1rem;
      padding-left: 0.6rem;
    }

    .charter li {
      margin: 2px 0;
    }

    /* Низ устава (подписи) */
    .charter-footer {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px dashed #d0d0d0;
      font-size: 0.95rem;
    }

    .charter-signatures p {
      margin: 2px 0;
    }

    /* Адаптив */
    @media (min-width: 768px) {
      .charter {
        padding: 32px 32px 40px;
      }

      .charter-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }

      .charter-title {
        font-size: 2rem;
      }

      .charter-subtitle {
        font-size: 1.05rem;
      }
    }
/* Контейнер методологии */
.methodology {
  max-width: 960px;
  margin: 32px auto;
  padding: 24px 20px 32px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Шапка: заголовок + версия + дата */
.methodology-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.methodology-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.methodology-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.methodology-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.9rem;
  color: #666;
}

.methodology-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0f4ff;
  color: #0b63d1;
  font-weight: 500;
}

.methodology-meta-label {
  color: #777;
}

/* Оглавление */
.methodology-toc {
  margin: 16px 0 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background-color: #f8f9fb;
  border: 1px solid #e1e4ea;
}

.methodology-toc h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
}

.methodology-toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 0.95rem;
}

.methodology-toc a {
  color: #0b63d1;
  text-decoration: none;
}

.methodology-toc a:hover {
  text-decoration: underline;
}

/* Заголовки разделов */
.methodology h2 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-top: 18px;
  border-top: 1px solid #e2e2e2;
  font-weight: 600;
}

.methodology h3 {
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.methodology h4 {
  font-size: 0.98rem;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Текст и списки */
.methodology p {
  margin: 4px 0;
}

.methodology ul {
  margin: 6px 0 6px 1.1rem;
  padding-left: 0.6rem;
}

.methodology li {
  margin: 2px 0;
}

/* Формулы и inline-код */
.methodology code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92em;
  background: #f3f4f6;
  padding: 1px 4px;
  border-radius: 4px;
}

/* Адаптив */
@media (min-width: 768px) {
  .methodology {
    padding: 32px 32px 40px;
  }

  .methodology-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .methodology-title {
    font-size: 2rem;
  }

  .methodology-subtitle {
    font-size: 1.05rem;
  }
}
/*Страница Аппеляции*/
.page-appeal {
    font-size: 16px;
    line-height: 1.6;
    color: #1f2933;
}

/* Базовая сетка страницы */

.page-appeal__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-appeal__section {
    padding: 48px 0;
    background-color: #f5f7fa;
}

.page-appeal__section--alt {
    background-color: #ffffff;
}

.page-appeal__section h2 {
    font-size: 28px;
    margin: 0 0 24px;
}

/* Hero */

.page-appeal__hero {
    padding: 82px 0 14px;
    margin-bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-image: url(/assets/img/bg-banner-1.png);
}

.page-appeal__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: stretch;
}

.page-appeal__hero h1 {
    font-size: 32px;
    margin: 0 0 12px;
}

.page-appeal__hero-lead {
    font-size: 17px;
    margin: 0 0 8px;
    max-width: 640px;
}

.page-appeal__hero-note {
    font-size: 14px;
    margin: 0 0 20px;
    max-width: 640px;
    opacity: 0.9;
}

.page-appeal__info-card {
    /*background-color: rgba(15, 23, 42, 0.92);
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    */
        flex: 1 1 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 22px 22px 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.page-appeal__info-card h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

.page-appeal__info-card ul {
    margin: 0;
    padding-left: 16px;
}

/* Гриды и карточки */

.page-appeal__grid {
    display: grid;
    gap: 20px;
}

.page-appeal__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.page-appeal__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.page-appeal__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.page-appeal__card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Списки */

.page-appeal__list {
    margin: 0;
    padding-left: 16px;
}

.page-appeal__list--disc {
    list-style: disc;
}

/* Кнопки */

.page-appeal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.page-appeal__btn--primary {
    background-color: #2461E9;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-appeal__btn--primary:hover {
    background-color: #fde047;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Шаги */

.page-appeal__steps {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.page-appeal__steps li {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-left: 4px solid #1d4ed8;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}

.page-appeal__steps h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

/* Примечание */

.page-appeal__note {
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 14px;
}

/* Форма */

.page-appeal__form {
    margin-top: 20px;
    background-color: #f9fafb;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.page-appeal__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-bottom: 16px;
}

.page-appeal__form-group {
    margin-bottom: 14px;
}

.page-appeal__form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.page-appeal__required {
    color: #dc2626;
}

.page-appeal input[type="text"],
.page-appeal input[type="email"],
.page-appeal input[type="date"],
.page-appeal select,
.page-appeal textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.page-appeal input[type="file"] {
    font-size: 14px;
}

.page-appeal input:focus,
.page-appeal select:focus,
.page-appeal textarea:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.page-appeal textarea {
    resize: vertical;
    min-height: 120px;
}

.page-appeal__field-help {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.page-appeal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
}

.page-appeal__checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.page-appeal__form-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.page-appeal__form-note {
    font-size: 13px;
    color: #6b7280;
}

/* FAQ */

.page-appeal__faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.page-appeal__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
}

.page-appeal__faq-item h3 {
    margin-top: 0;
    font-size: 16px;
}

/* Контакты */

.page-appeal__contact-list {
    list-style: none;
    margin: 12px 0 0;
    padding-left: 0;
    font-size: 14px;
}

.page-appeal__contact-list li + li {
    margin-top: 6px;
}

.page-appeal__contact-list a {
    color: #1d4ed8;
    text-decoration: none;
}

.page-appeal__contact-list a:hover {
    text-decoration: underline;
}

/* Адаптив */

@media (max-width: 960px) {
    .page-appeal__hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-appeal__grid--3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-appeal__grid--2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-appeal__faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .page-appeal__section {
        padding: 36px 0;
    }

    .page-appeal__form {
        padding: 16px;
    }

    .page-appeal__form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/*Страница Подать заявку*/
.page-apply {
    font-size: 16px;
    line-height: 1.6;
    color: #1f2933;
}

/* Базовая сетка */

.page-apply__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-apply__section {
    padding: 48px 0;
    background-color: #f5f7fa;
}

.page-apply__section--alt {
    background-color: #ffffff;
}

.page-apply__section h2 {
    font-size: 28px;
    margin: 0 0 24px;
}

/* Hero */

.page-apply__hero {
    padding: 82px 0 14px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-image: url(/assets/img/bg-banner-1.png);
}

.page-apply__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: stretch;
}

.page-apply__hero h1 {
    font-size: 32px;
    margin: 0 0 12px;
}

.page-apply__hero-lead {
    font-size: 17px;
    margin: 0 0 8px;
    max-width: 640px;
}

.page-apply__hero-note {
    font-size: 14px;
    margin: 0 0 20px;
    max-width: 640px;
    opacity: 0.9;
}

.page-apply__info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.page-apply__info-card h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 12px;
}

.page-apply__info-card ul {
    margin: 0;
    padding-left: 16px;
}

/* Гриды и карточки */

.page-apply__grid {
    display: grid;
    gap: 20px;
}

.page-apply__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.page-apply__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.page-apply__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.page-apply__card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Списки */

.page-apply__list {
    margin: 0;
    padding-left: 16px;
}

.page-apply__list--disc {
    list-style: disc;
}

/* Кнопки */

.page-apply__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.page-apply__btn--primary {
    background-color: #2461E9;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-apply__btn--primary:hover {
    background-color: #fde047;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Шаги */

.page-apply__steps {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.page-apply__steps li {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-left: 4px solid #1d4ed8;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}

.page-apply__steps h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

/* Примечание */

.page-apply__note {
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 14px;
}

/* Форма */

.page-apply__form {
    margin-top: 20px;
    background-color: #f9fafb;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.page-apply__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    margin-bottom: 16px;
}

.page-apply__form-group {
    margin-bottom: 14px;
}

.page-apply__form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.page-apply__required {
    color: #dc2626;
}

.page-apply input[type="text"],
.page-apply input[type="email"],
.page-apply input[type="date"],
.page-apply select,
.page-apply textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.page-apply input[type="file"] {
    font-size: 14px;
}

.page-apply input:focus,
.page-apply select:focus,
.page-apply textarea:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.page-apply textarea {
    resize: vertical;
    min-height: 120px;
}

.page-apply__field-help {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.page-apply__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
}

.page-apply__checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.page-apply__form-actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.page-apply__form-note {
    font-size: 13px;
    color: #6b7280;
}

/* FAQ */

.page-apply__faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.page-apply__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
}

.page-apply__faq-item h3 {
    margin-top: 0;
    font-size: 16px;
}

/* Контакты */

.page-apply__contact-list {
    list-style: none;
    margin: 12px 0 0;
    padding-left: 0;
    font-size: 14px;
}

.page-apply__contact-list li + li {
    margin-top: 6px;
}

.page-apply__contact-list a {
    color: #1d4ed8;
    text-decoration: none;
}

.page-apply__contact-list a:hover {
    text-decoration: underline;
}

/* Адаптив */

@media (max-width: 960px) {
    .page-apply__hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-apply__grid--3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-apply__grid--2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-apply__faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .page-apply__section {
        padding: 36px 0;
    }

    .page-apply__form {
        padding: 16px;
    }

    .page-apply__form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/*Страница о союзе*/
/* Базовая обёртка для контента (как на странице Устава) */
.page-hero {
  padding: 20px 0 12px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111;
}

.page-subtitle {
  max-width: 720px;
  margin: 0;
  font-size: 0.98rem;
  color: #555;
}

/* Карточка основного текста, аналогична блоку Устава */
.about-card {
  max-width: 960px;
  margin: 20px auto 40px;
  padding: 24px 20px 32px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  line-height: 1.6;
}

.about-card p {
  margin: 4px 0;
}

.about-card ul {
  margin: 6px 0 6px 1.1rem;
  padding-left: 0.6rem;
}

.about-card li {
  margin: 3px 0;
}

/* Заголовки внутри карточки */
.about-card h2 {
  font-size: 1.35rem;
  margin-top: 22px;
  margin-bottom: 10px;
  padding-top: 16px;
  border-top: 1px solid #e2e2e2;
  font-weight: 600;
  color: #111;
}

.about-card h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.about-card h3 {
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Сетка для задач/направлений деятельности */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.about-item {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e1e4ea;
}

.about-item-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: #222;
}

.about-item-text {
  margin: 0;
  font-size: 0.93rem;
  color: #444;
}

.about-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #555;
}

/* Адаптив */
@media (min-width: 768px) {
  .about-card {
    padding: 28px 28px 36px;
  }
}

@media (max-width: 720px) {
  .page-title {
    font-size: 1.7rem;
  }

  .about-card {
    margin: 16px auto 32px;
    padding: 20px 16px 26px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Устройства X-Small (портретные телефоны, менее 576 пикселей) */
@media (max-width: 575.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	/* мобильная млоденная версия таблицы */
	.my-price-table {
		border: 0;
	}
	.my-price-table thead {
		display: none;
	}

	.my-price-table tr {
		margin-bottom: 1rem;
		display: block;
		border-bottom: 1px solid var(--color-black);
	}

	.my-price-table td {
		display: block;
		text-align: right;
		border-bottom: 1px dotted var(--color-black);
		border-right: 1px solid transparent;
	}
	.my-price-table td:last-child {
		border-bottom: 0;
	}

	.my-price-table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
}
/*feedback*/
/* Общий фон секции обратной связи */
.section.feedback .container-fluid {
	background-color: #f5f7fb;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* Заголовок в блоке */
.section.feedback .h2 {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* Поля формы в этом блоке */
.section.feedback .form-control {
	border-radius: 0.9rem;
	border: 1px solid #d1d6e6;
	background-color: #fafbff;
	font-size: 0.95rem;
	padding: 0.55rem 0.75rem;
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		background-color 0.16s ease;
}

.section.feedback .form-control:focus {
	border-color: #1b4fd8;
	background-color: #ffffff;
	box-shadow: 0 0 0 1px rgba(27, 79, 216, 0.16);
}

/* Кнопка отправки */
.section.feedback .btn-primary {
	border-radius: 999px;
	font-weight: 600;
	padding-left: 1.7rem;
	padding-right: 1.7rem;
	box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
	transition:
		transform 0.08s ease,
		box-shadow 0.18s ease,
		background-color 0.18s ease;
}

.section.feedback .btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(13, 110, 253, 0.45);
}

/* Картинка справа */
.section.feedback .feedback-img {
	border-radius: 1.25rem;
	box-shadow: 0 16px 40px rgba(15, 30, 74, 0.12);
	object-fit: cover;
}

/* Адаптив (чуть уменьшаем отступы на мобиле) */
@media (max-width: 767.98px) {
	.section.feedback {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.section.feedback .h2 {
		font-size: 1.5rem;
	}
}
/*catalog-articles*/
.catalog-articles .block-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}
.catalog-articles .card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
	cursor: pointer;
	overflow: hidden;
}
.catalog-articles .card:hover {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.catalog-articles .card-header {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.catalog-articles .card-body {
	padding: 24px 0;
}
.catalog-articles .card img {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}
.catalog-articles .card-title {
	font-size: 22px;
}
.catalog-articles .card-author {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.catalog-articles .card-footer {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.catalog-articles .card-footer a {
	font-weight: 700;
}
/*articles-page*/
/*articles-page*/
.articles-page {
	padding-top:126px;
}
.articles-page .title {
	margin-bottom: 16px;
	font-size: 28px;
	font-weight: 800;
	text-align: left;
}
.articles-page .text-description a {
	text-decoration: none;
	color: #F59307;
}
.articles-page .list-nav a {
	color: #1B4FD8;
	text-decoration: none;
}
.articles-page .block-desc {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}
.articles-page .text-subtitle {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
}
.articles-page .block-article a {
	color: #f59307;
}
.block-article-form-list ul {
	padding: 0;
	list-style: none;
}
.block-article-form-list ul li {
	padding-left: 24px;
	background-repeat: no-repeat;
	background-position: left top 2px;
	background-image: url(/assets/img/article-marker.svg);
}
.articles-page-form-btn {
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background-color: #f59307;
}
.akcent-block-fon p {
	margin-bottom: 0;
}
.block-author {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	padding: 22px 22px 20px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
	display: flex;
	align-items: center;
	cursor: pointer;
}
.block-author:hover,
.block-author:focus,
.block-author:active {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.block-author-img {
	max-width: 200px;
	margin-right: 24px;
}
.block-author-text {
	font-size: 14px;
}
.block-author-name {
	font-size: 16px;
	font-weight: 700;
}
/*administration-page*/
.administration-page .block-text-top {
	margin-bottom: 52px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	padding: 22px 22px 20px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
}
.administration-page .administration-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	padding: 22px 22px 20px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
	margin-bottom: 24px;
	cursor: pointer;
}
.administration-page .administration-card:hover,
.administration-page .administration-card:focus,
.administration-page .administration-card:active {
	border-color: #60a5fa;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.18);
	transform: translateY(-1px);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.administration-page .administration-card .card-header {
	display: flex;
	align-items: center;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.administration-page .administration-card .card-header img {
	margin-right: 24px;
	border-radius: 16px;
}
/*rating-commission*/
.rating-commission .card {
	border-radius: 15px;
	border: 2px solid #dbeafe;
	overflow: hidden;
}
.rating-commission .card-body {
	padding: 12px 24px;
}
.rating-commission .card-title {
	font-size: 20px;
	font-weight: 700;
}
.rating-commission .card-text {
	font-size: 18px;
	line-height: 120%;
	color: #2461e9;
}
/*administration-block-bottom*/
.administration-block-bottom .container {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #dbeafe;
	border-radius: 18px;
	padding: 22px 22px 20px;
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(148, 163, 184, 0.12);
}
/*footer*/
.footer {
	padding: 32px 0;
	background-color: #222;
	color: #fff !important;
}
.footer .site-name {
	display: block;
	max-width: 330px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: #2461e9;
}
.footer .block-address .my-footer-link {
	display: block;
	margin-bottom: 16px;
	color: #fff;
}
.footer .block-address .footer-phone,
.footer .block-address .footer-mail,
.footer .block-address .footer-address {
	padding-left: 32px;
	background-repeat: no-repeat;
	background-position: left center;
}
.footer .block-address .footer-phone {
	background-image: url(/assets/img/footer-phone.svg);
}
.footer .block-address .footer-mail {
	background-image: url(/assets/img/footer-mail.svg);
}
.footer .block-address .footer-address {
	line-height: 1;
	background-image: url(/assets/img/footer-loc.svg);
}
/*hab-author*/
.hab-author .description {
	font-size: 20px;
	margin-bottom: 24px;
}
.hab-author .description p {
	margin-bottom: 0;
}
.hab-author .card {
	border: 0;
	border-radius: 0;
}
.hab-author .card img {
	border-radius: 16px;
}
.hab-author .card-title {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}
.hab-author .card-text {
	margin-bottom: 24px;
	font-size: 20px;
}
.hab-author .list-social {
	margin-bottom: 24px;
}
.hab-author .card-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 310px;
	height: 50px;
	border-radius: 46px;
	font-weight: 700;
	color: #fff;
	background-color: #2461E9;
}
.hab-author .card-subtitle {
	margin-bottom: 24px;
	font-size: 20px;
	font-weight: 700;
}
.hab-author .card-articles-list li {
	padding: 10px 0;
	border-bottom: 1px solid #D4D4D4;
}
.hab-author .card-articles-link {
	font-weight: 500;
	text-decoration: none;
	color: #333;
}
/*hab-author-politic*/
.hab-author-politic-title {
	margin-bottom: 24px;
	font-size: 32px;
	font-weight: 700;
}
.hab-author-politic-text {
	margin-bottom: 24px;
	font-size: 20px;
}
.hab-author-politic-link {
	font-weight: 500;
	text-decoration: none;
	color: #2461E9;
}
/*hab-author-join*/
.hab-author-join-fon {
	padding: 48px 0;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(/assets/img/hab-author-join-fon.png);
}
.hab-author-join .card {
	padding: 24px;
	border-radius: 16px;
	border: 0;
	background-color: rgba(255, 255, 255, 0.79);
}
.hab-author-join .card-title {
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
}
.hab-author-join .card-text {
	margin-bottom: 48px;
	font-size: 20px;
}
.hab-author-join .card-text p {
	margin-bottom: 0;
}
.hab-author-join .card-text p:not(:last-child) {
	margin-bottom: 24px;
}
.hab-author-join .card-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 50px;
	border-radius: 46px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	background-color: #2461E9;
}
/*catalog-studios*/
.banner-catalog-studios {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(/assets/img/bg-banner-1.png);
}
.banner-catalog-studios .container {
	padding-top: 82px;
	padding-bottom: 14px;
}
.banner-catalog-studios .card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 24px;
	border: 0;
	border-radius: 16px;
}
.banner-catalog-studios .card p {
	max-width: 550px;
	margin-bottom: 0;
}
.banner-catalog-studios .card p:not(:last-child) {
	margin-bottom: 24px;
}
.banner-catalog-studios-list li {
	max-width: 311px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 46px;
	font-weight: 700;
	background-color: #fff;
}
.banner-catalog-studios-list li:not(:last-child) {
	margin-bottom: 16px;
}
.banner-catalog-studios button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 50px;
	border-radius: 46px;
	font-weight: 700;
}
.banner-catalog-studios button:first-child {
	color: #fff;
	background-color: #2461E9;
}
.banner-catalog-studios button:last-child {
	background-color: #fff;
}
/*catalog-studios-table*/
.catalog-studios-table .block-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.catalog-studios-table input[type="search"] {
	width: 305px;
	height: 32px;
	padding: 8px 16px;
	border-radius: 34px;
	border: 1px solid #2461e9;
}
.catalog-studios-table input[type="search"]::placeholder {
	font-size: 14px;
}
.catalog-studios-table select {
	height: 40px;
	padding: 0 8px;
	border-radius: 5px;
	border: 0;
	box-shadow: 5px 4px 23px 0 rgba(0, 0, 0, 0.1);
}
.catalog-studios-table .btn-default {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 50px;
	margin-bottom: 24px;
	border-radius: 46px;
	font-weight: 700;
	color: #fff;
	background-color: #2461E9;
}
.catalog-studios-table .all-catalog {
	font-weight: 600;
	color: #2461E9;
}
/*catalog-studios-bottom*/
.catalog-studios-bottom {
	padding-bottom: 96px;
}
.catalog-studios-bottom .card-title {
	margin-bottom: 24px;
	font-size: 32px;
	font-weight: 700;
}
.catalog-studios-bottom .card-text {
	font-size: 20px;
}
.catalog-studios-bottom .card-text p {
	margin-bottom: 0;
}
.catalog-studios-bottom .card-text p:not(:last-child) {
	margin-bottom: 24px;
}
/* Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}

}
/* Устройства Medium (планшеты, менее 992 пикселей) */
@media  (min-width: 768px) and (max-width: 991.98px) {

}


/* Устройства Large (настольные компьютеры, менее 1200 пикселей) */
@media  (min-width: 992px) and (max-width: 1199.98px) { 

}

/* Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей) */
@media  (min-width: 1200px) and (max-width: 1399.98px) {

}