@charset "UTF-8";
/*
 * Дизайн-система и обвязка публичной части.
 *
 * Палитра, типографика и пропорции — брендбук РУСЛО v2.0 (brief/РУСЛО_Брендбук_v2.docx,
 * разделы 03 и 04). Токены и компоненты перенесены из brief/proposal.html — это КП,
 * свёрстанное по тому же брендбуку и уже согласованное с заказчиком.
 *
 * Собирается File Watcher'ом PhpStorm: sass site.scss:site.css
 */
:root {
  --navy: #032552;
  --navy-deep: #021833;
  --blue: #0055CC;
  --sky: #63A3F2;
  --ink: #1A1A1A;
  --muted: #6B7785;
  --line: #E1E5EB;
  --ground: #FAFAFA;
  --surface: #FFFFFF;
  --band: #032552;
  --band-ink: #FFFFFF;
  --band-muted: #A8BDDB;
  --band-accent: #63A3F2;
  --band-line: rgba(99, 163, 242, .28);
  --accent-on-surface: #0055CC;
  --tint: #F0F5FD;
  --display: "Golos Text", "Arial Black", Arial, sans-serif;
  --body: "Inter", Arial, Helvetica, sans-serif;
  --label: "Manrope", Arial, Helvetica, sans-serif;
  --radius: 2px;
  --shadow: 0 2px 14px rgba(3, 37, 82, .08);
  --shadow-lifted: 0 10px 30px rgba(3, 37, 82, .12); }

* {
  box-sizing: border-box; }

html, body {
  min-height: 100vh; }

body {
  display: flex;
  flex-direction: column;
  padding-top: 74px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased; }

main {
  flex: 1;
  margin-top: 10px;
  padding-bottom: 80px; }

a {
  color: var(--accent-on-surface);
  font-weight: 500; }

a:hover, a:focus-visible {
  color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--accent-on-surface);
  outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -.015em;
  text-wrap: balance; }

h1 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 30px 0 18px; }

h2 {
  font-weight: 800;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.18;
  margin: 44px 0 18px; }

h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px; }

p {
  margin: 0 0 14px; }

strong, b {
  font-weight: 600; }

.eyebrow {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-on-surface);
  margin: 0 0 12px; }

@media (min-width: 1440px) {
  .container {
    width: 1360px; } }
@media (min-width: 1700px) {
  .container {
    width: 1600px; } }
@media (min-width: 992px) {
  body {
    padding-top: 140px; }

  main {
    margin-top: 20px; } }
/* ---------------------------------------------------------------- кнопки */
.btn {
  font-family: var(--label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: var(--radius);
  padding: 10px 22px;
  transition: all .25s ease; }

.btn-primary,
.btn-primary:focus {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue); }

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus:hover,
.btn-primary.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy); }

.btn-default,
.btn-default:focus {
  color: var(--navy);
  background: var(--surface);
  border-color: var(--line); }

.btn-default:hover,
.btn-default:active {
  color: var(--navy);
  background: var(--ground);
  border-color: var(--blue); }

.btn-link {
  color: var(--accent-on-surface);
  font-weight: 600; }

.btn > svg, td > svg, a > svg {
  height: 1em;
  width: 1em;
  margin: 0 0 -.1em 0; }

/* ----------------------------------------------------------------- формы */
label,
div.label {
  font-family: var(--label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0; }

.form-control {
  height: 42px;
  border-radius: var(--radius);
  border-color: var(--line);
  box-shadow: none;
  color: var(--ink);
  font-size: 15px; }

.form-control:focus {
  border-color: var(--blue);
  box-shadow: none; }

textarea.form-control {
  height: auto; }

.checkbox label,
.radio label,
label:has(> input[type="checkbox"]),
label:has(> input[type="radio"]) {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted); }
  .checkbox label input,
  .radio label input,
  label:has(> input[type="checkbox"]) input,
  label:has(> input[type="radio"]) input {
    flex: 0 0 auto;
    margin: 0; }

.help-block {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted); }

.has-error .form-control {
  border-color: var(--blue);
  border-width: 2px; }
.has-error .help-block,
.has-error .control-label,
.has-error label {
  color: var(--navy); }

.error-summary {
  background: var(--tint);
  border-left: 2px solid var(--blue);
  color: var(--navy);
  padding: 16px 20px;
  margin: 0 0 20px; }
  .error-summary ul {
    margin: 0;
    padding-left: 18px; }
  .error-summary p {
    font-family: var(--label);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 6px; }

.select2-container--krajee-bs3 .select2-selection {
  border-radius: var(--radius);
  border-color: var(--line);
  box-shadow: none; }
.select2-container--krajee-bs3.select2-container--open .select2-selection,
.select2-container--krajee-bs3 .select2-selection:focus {
  border-color: var(--blue);
  box-shadow: none;
  outline: 0; }
.select2-container--krajee-bs3 .select2-results__option--highlighted[aria-selected] {
  background-color: var(--blue);
  color: #fff; }
.select2-container--krajee-bs3 .select2-selection--multiple .select2-selection__choice {
  background: var(--tint);
  border-color: var(--line);
  color: var(--navy); }

/* --------------------------------------------------------------- таблицы */
.table {
  font-size: 15px; }
  .table > thead > tr > th {
    font-family: var(--label);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--navy);
    white-space: nowrap; }
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tr > th,
  .table > tr > td {
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 11px 14px 11px 0;
    vertical-align: top; }
  .table > tbody > tr:last-child > td,
  .table > tbody > tr:last-child > th,
  .table > tr:last-child > td,
  .table > tr:last-child > th {
    border-bottom: 0; }

/* ----------------------------------------------------------------- шапка */
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: var(--surface);
  border-bottom: 3px solid var(--blue);
  transition: box-shadow .3s ease; }
  header .container {
    position: relative; }
  header a {
    color: var(--navy); }
  header a:hover, header a:focus-visible {
    text-decoration: none; }
  header .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 70px; }
    header .header-top .container a.logo {
      display: inline-block;
      flex: 0 0 auto; }
      header .header-top .container a.logo img {
        height: 40px;
        width: auto; }
    header .header-top .container div.spacer {
      flex: 1;
      min-width: 0; }
      header .header-top .container div.spacer > p.slogan {
        display: none; }
    header .header-top .container a.search-link {
      font-size: 20px;
      color: var(--muted); }
    header .header-top .container form.top-search-form {
      display: none; }

header.scrolled {
  box-shadow: var(--shadow); }

.header-contacts {
  display: none;
  align-items: center;
  gap: 18px; }
  .header-contacts a.header-phone {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap; }

@media (min-width: 992px) {
  header {
    border-bottom-width: 0; }
    header .header-top .container {
      min-height: 88px; }
      header .header-top .container a.logo img {
        height: 48px; }
      header .header-top .container div.spacer > p.slogan {
        display: block;
        font-family: var(--label);
        font-weight: 600;
        font-size: 14px;
        color: var(--accent-on-surface);
        text-align: center;
        margin: 0; }
      header .header-top .container a.search-link {
        display: none; }
      header .header-top .container form.top-search-form {
        display: flex;
        align-items: center;
        position: relative;
        width: 210px; }
        header .header-top .container form.top-search-form input {
          width: 100%;
          height: 34px;
          padding: 0 30px 0 10px;
          border: 1px solid var(--line);
          border-radius: var(--radius);
          background: var(--ground);
          color: var(--ink);
          font-size: 14px;
          transition: all .3s ease; }
        header .header-top .container form.top-search-form input:focus {
          background: var(--surface);
          border-color: var(--blue);
          outline: none; }
        header .header-top .container form.top-search-form > button {
          position: absolute;
          right: 2px;
          top: 3px;
          height: 28px;
          padding: 0 6px;
          border: 0;
          background: none;
          color: var(--muted); }
          header .header-top .container form.top-search-form > button svg {
            width: 17px;
            height: 17px; }

  .header-contacts {
    display: flex; } }
/* ------------------------------------------------------------------ меню */
header .menu-backdrop {
  background: var(--surface);
  border-top: 1px solid var(--line); }
  header .menu-backdrop nav {
    opacity: 0;
    overflow: hidden;
    max-height: 0;
    transition: all .4s ease;
    font-size: 15px; }
    header .menu-backdrop nav > ul {
      margin-top: 16px; }
    header .menu-backdrop nav ul {
      padding: 2px 0 10px 20px; }
      header .menu-backdrop nav ul li {
        padding: 0; }
        header .menu-backdrop nav ul li a {
          display: block;
          padding: 7px 0;
          text-decoration: none; }
  header .menu-backdrop nav.opened {
    opacity: 1;
    max-height: 90vh;
    padding-bottom: 10px; }

@media (min-width: 992px) {
  header .menu-backdrop {
    border-top: 1px solid var(--line);
    border-bottom: 3px solid var(--blue); }
    header .menu-backdrop div.container > div {
      display: flex;
      justify-content: space-between; }
    header .menu-backdrop nav {
      display: flex;
      opacity: 1;
      max-height: none;
      overflow: inherit; }
      header .menu-backdrop nav ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%; }
        header .menu-backdrop nav ul li {
          margin: 0;
          padding: 0; }
          header .menu-backdrop nav ul li a {
            display: block;
            padding: 11px 18px 12px;
            border-radius: var(--radius);
            font-family: var(--label);
            font-weight: 600;
            font-size: 14px;
            color: var(--navy);
            transition: all .25s ease;
            white-space: nowrap; }
          header .menu-backdrop nav ul li > a:hover,
          header .menu-backdrop nav ul li a:focus-visible {
            background: var(--tint);
            color: var(--blue); }
          header .menu-backdrop nav ul li ul.dropdown {
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            position: absolute;
            display: flex;
            flex-direction: column;
            padding: 0;
            margin: 0;
            min-width: 240px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-top: 0;
            box-shadow: var(--shadow-lifted);
            transition: all .2s ease;
            z-index: 20; }
            header .menu-backdrop nav ul li ul.dropdown li a {
              border-radius: 0;
              padding: 10px 18px;
              font-weight: 500;
              white-space: normal; }
            header .menu-backdrop nav ul li ul.dropdown li > a:hover,
            header .menu-backdrop nav ul li ul.dropdown li a:focus-visible {
              background: var(--tint);
              color: var(--blue); }
            header .menu-backdrop nav ul li ul.dropdown li.active a {
              background: var(--tint);
              color: var(--blue); }
        header .menu-backdrop nav ul li.active > a {
          color: var(--blue);
          box-shadow: inset 0 -2px 0 var(--blue); }
        header .menu-backdrop nav ul li:hover ul.dropdown,
        header .menu-backdrop nav ul li:focus-within ul.dropdown,
        header .menu-backdrop nav ul li:focus ul.dropdown {
          opacity: 1;
          visibility: visible;
          max-height: 1200px; } }
button#toggleMenu {
  margin: 0 0 0 10px;
  border: 0;
  padding: 0;
  width: 30px;
  height: 38px;
  position: relative;
  cursor: pointer;
  background: none; }
  button#toggleMenu span {
    left: 0;
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 1px;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out; }
  button#toggleMenu span:nth-child(1) {
    top: 9px; }
  button#toggleMenu span:nth-child(2), button#toggleMenu span:nth-child(3) {
    top: 18px; }
  button#toggleMenu span:nth-child(4) {
    top: 27px; }

button#toggleMenu.opened span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%; }
button#toggleMenu.opened span:nth-child(2) {
  transform: rotate(45deg); }
button#toggleMenu.opened span:nth-child(3) {
  transform: rotate(-45deg); }
button#toggleMenu.opened span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%; }

@media (min-width: 992px) {
  button#toggleMenu {
    display: none; } }
/* -------------------------------------------------------------- баннер */
.top-image {
  display: block;
  margin: -10px 0 0; }
  .top-image img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    margin: 0;
    border: 0;
    border-bottom: 3px solid var(--blue); }

@media (min-width: 992px) {
  .top-image {
    margin: -20px 0 0; } }
/* ------------------------------------------------------------ хлебные крошки */
ol.breadcrumbs {
  list-style: none;
  padding: 0;
  min-height: 17px;
  display: inline-block;
  margin: 22px 0 0;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .04em; }
  ol.breadcrumbs li {
    float: left;
    padding-right: 8px;
    color: var(--muted);
    line-height: 17px; }
    ol.breadcrumbs li a {
      color: var(--muted);
      font-weight: 500;
      text-decoration: none; }
    ol.breadcrumbs li a:hover {
      color: var(--blue); }
  ol.breadcrumbs li:after {
    content: "/";
    margin: 1px 0 0 8px;
    color: var(--line); }
  ol.breadcrumbs li:last-child:after {
    display: none;
    content: ""; }

/* ------------------------------------------------------------ пагинация */
.pagination > li > a,
.pagination > li > span {
  color: var(--navy);
  border-color: var(--line);
  font-family: var(--label);
  font-weight: 600;
  font-variant-numeric: tabular-nums; }
.pagination > li > a:hover,
.pagination > li > a:focus {
  color: var(--blue);
  background: var(--tint);
  border-color: var(--line); }
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff; }
.pagination > .disabled > span,
.pagination > .disabled > a {
  color: var(--muted);
  border-color: var(--line); }

/* --------------------------------------------------------------- подвал */
footer {
  background: var(--band);
  color: var(--band-ink);
  padding: clamp(32px, 5vw, 56px) 0 0; }
  footer a {
    color: var(--band-muted);
    font-weight: 400; }
  footer a:hover, footer a:focus-visible {
    color: var(--band-accent); }
  footer .footer-content {
    display: grid;
    gap: 32px;
    padding-bottom: 36px; }
  footer a.logo {
    display: block;
    max-width: 220px; }
    footer a.logo img {
      width: 100%; }
  footer .footer-slogan {
    font-family: var(--label);
    font-weight: 600;
    font-size: 14px;
    color: var(--band-accent);
    margin: 18px 0 0; }
  footer .footer-nav h3 {
    font-family: var(--label);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--band-muted);
    margin: 0 0 12px; }
  footer .footer-nav h3 a {
    color: var(--band-muted);
    font-weight: 700; }
  footer .footer-nav h3 a:hover {
    color: var(--band-accent); }
  footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px; }
  footer .footer-contacts {
    font-size: 14px; }
    footer .footer-contacts a.footer-phone {
      display: block;
      font-family: var(--display);
      font-weight: 700;
      font-size: 20px;
      color: var(--band-ink);
      font-variant-numeric: tabular-nums;
      margin: 0 0 8px; }
    footer .footer-contacts .btn {
      margin-top: 16px; }
  footer div.copyright {
    background: var(--navy-deep);
    color: var(--band-muted);
    padding: 14px 0;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase; }
    footer div.copyright .container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 28px;
      justify-content: space-between; }

@media (min-width: 772px) {
  footer .footer-content {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px; } }
/* ------------------------------------------- страницы модуля pages и поиск */
.page-images {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .page-images li {
    width: calc(50% - 4px); }
    .page-images li img {
      width: 100%; }
  @media (min-width: 772px) {
    .page-images li {
      width: calc(25% - 6px); } }

.pages-sub-list {
  margin-top: 20px; }
  .pages-sub-list .pages-sub-item .thumbnail {
    background: none;
    border-color: var(--line);
    border-radius: var(--radius); }
  .pages-sub-list .pages-sub-item img {
    width: 100%; }
  .pages-sub-list .pages-sub-item h2 {
    font-size: 22px;
    margin: 4px 0 8px; }
  .pages-sub-list .pages-sub-item time {
    font-family: var(--label);
    font-size: 12px;
    color: var(--muted); }
  @media (min-width: 772px) {
    .pages-sub-list .pages-sub-item .thumbnail {
      width: 100%;
      padding: 0;
      border: 0;
      display: flex;
      justify-content: space-between;
      gap: 24px; }
    .pages-sub-list .pages-sub-item a {
      width: 100%;
      max-width: 240px; }
    .pages-sub-list .pages-sub-item div.caption {
      padding-top: 0;
      flex: 1; }
      .pages-sub-list .pages-sub-item div.caption h2 {
        margin: 0 0 10px;
        font-size: 20px; } }

#searchResultList {
  margin: 30px 0 20px; }
  #searchResultList ol li {
    margin: 0 0 26px; }
    #searchResultList ol li h4 a {
      font-family: var(--display);
      font-weight: 700; }
    #searchResultList ol li time {
      font-family: var(--label);
      font-size: 12px;
      color: var(--muted); }

/* -------------------------------------------------------------- модалки */
.modal-content {
  border-radius: var(--radius);
  border: 0;
  box-shadow: var(--shadow-lifted); }
  .modal-content .modal-header {
    border-bottom: 1px solid var(--line); }
    .modal-content .modal-header h2 {
      margin: 0;
      font-size: 22px; }
  .modal-content .modal-footer {
    border-top: 1px solid var(--line); }

/*# sourceMappingURL=site.css.map */
