@charset "UTF-8";
/* line 1, _elements.page.scss */
.page {
  display: grid;
  grid-template-rows: min-content;
  grid-template-areas: "content content"; }
  /* line 5, _elements.page.scss */
  .page__content {
    grid-area: content;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0; }
  /* line 12, _elements.page.scss */
  .page__sidebar {
    grid-area: sidebar;
    min-width: 0; }
    @media (max-width: 1024px) {
      /* line 12, _elements.page.scss */
      .page__sidebar {
        display: none; } }
    /* line 19, _elements.page.scss */
    .page__sidebar .sidebar__item {
      position: sticky;
      top: 108px; }
  /* line 25, _elements.page.scss */
  .page__form {
    max-width: 480px;
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0 0; }
  @media (min-width: 1025px) {
    /* line 32, _elements.page.scss */
    .page.with-sidebar {
      grid-template-columns: 1fr 4fr;
      grid-template-areas: "sidebar content";
      gap: 0 40px; } }

/* line 40, _elements.page.scss */
.text {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text); }
  /* line 43, _elements.page.scss */
  .text h1, .text h2, .text h3, .text h4, .text h5, .text h6, .text p, .text ul, .text ul {
    margin: 20px 0 0; }
  /* line 46, _elements.page.scss */
  .text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
    color: var(--color-black);
    font-weight: var(--font-normal); }
  /* line 50, _elements.page.scss */
  .text h1 {
    font-size: 24px;
    line-height: 28px; }
  /* line 53, _elements.page.scss */
  .text h2 {
    font-size: 20px;
    line-height: 24px; }
  /* line 56, _elements.page.scss */
  .text h3 {
    font-size: 18px;
    line-height: 22px; }
  /* line 59, _elements.page.scss */
  .text h4 {
    font-size: 16px;
    line-height: 22px; }
  /* line 62, _elements.page.scss */
  .text img {
    max-width: 100%;
    height: auto; }
  /* line 66, _elements.page.scss */
  .text .underline {
    text-decoration: underline; }
  /* line 69, _elements.page.scss */
  .text .mark {
    padding: 2px 4px;
    border-radius: 3px; }
  /* line 73, _elements.page.scss */
  .text .date {
    text-align: right;
    font-style: italic;
    margin-top: 40px; }
  /* line 78, _elements.page.scss */
  .text table {
    margin: 20px 0 0;
    border-collapse: collapse;
    max-width: 100%; }
    /* line 82, _elements.page.scss */
    .text table th, .text table td {
      padding: 10px;
      border-top: 1px solid var(--border-grey);
      border-bottom: 1px solid var(--border-grey); }
    /* line 87, _elements.page.scss */
    .text table th {
      color: var(--color-black);
      font-weight: var(--font-bold); }
  /* line 92, _elements.page.scss */
  .text ol, .text ul {
    padding-left: 20px; }
  /* line 98, _elements.page.scss */
  .text ol {
    list-style-type: none;
    counter-reset: item;
    margin: 15px;
    padding: 0; }
  /* line 105, _elements.page.scss */
  .text ol > li {
    display: table;
    counter-increment: item; }
  /* line 111, _elements.page.scss */
  .text ol > li:before {
    content: counters(item,".") ". ";
    display: table-cell;
    padding-right: 0.6em; }
  /* line 121, _elements.page.scss */
  .text li ol > li:before {
    content: counters(item,".") " "; }
  /* line 124, _elements.page.scss */
  .text > :first-child {
    margin-top: 10px; }
  /* line 127, _elements.page.scss */
  .text a:not(.button) {
    text-decoration: underline;
    color: currentColor; }
    @media (hover: none) {
      /* line 127, _elements.page.scss */
      .text a:not(.button) {
        -webkit-tap-highlight-color: transparent; } }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 25, _mixins.scss */
      .text a:not(.button):hover {
        color: var(--color-primary); } }
  /* line 134, _elements.page.scss */
  .text iframe {
    height: auto !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: inline-block;
    margin: 0 auto;
    vertical-align: top; }

/* line 145, _elements.page.scss */
.text-grid {
  display: grid;
  gap: 20px; }
  /* line 148, _elements.page.scss */
  .text-grid__image {
    grid-area: image; }
  /* line 151, _elements.page.scss */
  .text-grid__content {
    grid-area: content;
    align-self: center; }
  /* line 155, _elements.page.scss */
  .text-grid[data-position="left"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-content;
    grid-template-areas: "image content content"; }
    @media (max-width: 768px) {
      /* line 155, _elements.page.scss */
      .text-grid[data-position="left"] {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "image content"; } }
    @media (max-width: 575px) {
      /* line 155, _elements.page.scss */
      .text-grid[data-position="left"] {
        grid-template-columns: 1fr;
        grid-template-rows: min-content min-content;
        grid-template-areas: "image" "content"; } }
  /* line 169, _elements.page.scss */
  .text-grid[data-position="right"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: min-content;
    grid-template-areas: "content content image"; }
    @media (max-width: 768px) {
      /* line 169, _elements.page.scss */
      .text-grid[data-position="right"] {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "content image"; } }
    @media (max-width: 575px) {
      /* line 169, _elements.page.scss */
      .text-grid[data-position="right"] {
        grid-template-columns: 1fr;
        grid-template-rows: min-content min-content;
        grid-template-areas: "image" "content"; } }
  /* line 183, _elements.page.scss */
  .text-grid[data-position="top"] {
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content;
    grid-template-areas: "image" "content"; }
  /* line 188, _elements.page.scss */
  .text-grid[data-position="bottom"] {
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content;
    grid-template-areas: "content" "image"; }
  /* line 193, _elements.page.scss */
  .text-grid[data-position="noimage"] {
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "content"; }

/* line 200, _elements.page.scss */
.text-hidden {
  position: relative;
  height: 124px;
  padding-bottom: 30px;
  overflow: hidden; }
  /* line 205, _elements.page.scss */
  .text-hidden.is-large {
    height: 404px; }
  /* line 208, _elements.page.scss */
  .text-hidden__toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white); }
    /* line 214, _elements.page.scss */
    .text-hidden__toggle::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 100%;
      width: 100%;
      height: 150%;
      background: linear-gradient(rgba(255, 255, 255, 0), var(--bg-white));
      pointer-events: none; }
    /* line 224, _elements.page.scss */
    .text-hidden__toggle .button {
      --button-color: var(--color-grey-d); }
      @media (hover: none) {
        /* line 224, _elements.page.scss */
        .text-hidden__toggle .button {
          -webkit-tap-highlight-color: transparent; } }
      @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        /* line 25, _mixins.scss */
        .text-hidden__toggle .button:hover {
          --button-color: var(--color-primary); } }
      /* line 230, _elements.page.scss */
      .text-hidden__toggle .button span::before {
        content: attr(data-title-show); }
  /* line 236, _elements.page.scss */
  .text-hidden.is-open {
    height: auto; }
    /* line 240, _elements.page.scss */
    .text-hidden.is-open .text-hidden__toggle::before {
      display: none; }
    /* line 245, _elements.page.scss */
    .text-hidden.is-open .text-hidden__toggle .button span::before {
      content: attr(data-title-hide); }

/* line 254, _elements.page.scss */
.containertext {
  margin: auto;
  display: flex;
  justify-content: left;
  flex-wrap: wrap; }

/* line 261, _elements.page.scss */
.box {
  padding: 0px 20px;
  flex: 1 1 calc(100% - 20px);
  gap: 10px; }

/* Стили для FAQ */
/* line 269, _elements.page.scss */
.faq-title {
  flex: 0 0 100%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center; }

/* line 277, _elements.page.scss */
.faq-item {
  overflow: hidden;
  border-top: 1px solid #0000002a;
  transition: all 0.3s ease; }

/* line 284, _elements.page.scss */
.faq-input {
  display: none; }

/* line 288, _elements.page.scss */
.faq-input:checked ~ .faq-answer {
  max-height: 500px;
  padding: 0 0 20px 0; }

/* line 293, _elements.page.scss */
.faq-input:checked + .faq-question {
  background-color: white; }

/* line 297, _elements.page.scss */
.faq-input:checked + .faq-question .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0; }

/* line 302, _elements.page.scss */
.faq-question {
  padding: 20px 0px;
  font-size: 18px;
  font-weight: var(--font-normal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  transition: all 0.3s ease; }

/* line 318, _elements.page.scss */
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease; }

/* line 325, _elements.page.scss */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--bg-black);
  transition: all 0.3s ease; }

/* line 333, _elements.page.scss */
.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%); }

/* line 341, _elements.page.scss */
.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%); }

/* line 349, _elements.page.scss */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 16px;
  line-height: 1.5;
  color: var(--bg-black); }

/* line 358, _elements.page.scss */
.text {
  font-size: 14px;
  line-height: 20px;
  color: var(--bg-black); }

/* line 364, _elements.page.scss */
.text p {
  margin: 20px 0 0; }

@media (max-width: 768px) {
  /* line 369, _elements.page.scss */
  .box {
    flex: 1 1 calc(100% - 20px);
    box-sizing: border-box;
    border: 0px;
    padding: 0; }

  /* line 376, _elements.page.scss */
  .faq-item {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0; }

  /* line 381, _elements.page.scss */
  .faq-question {
    padding: 18px 0; }

  /* line 385, _elements.page.scss */
  .faq-input:checked ~ .faq-answer {
    padding: 0 0 20px 0; } }
/* line 1, _elements.sidebar-menu.scss */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 3px; }
  /* line 5, _elements.sidebar-menu.scss */
  .sidebar-menu a {
    display: inline-block;
    vertical-align: top;
    padding: 5px 10px;
    border-radius: var(--radius); }
    /* line 10, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-active {
      background: var(--bg-grey);
      font-weight: var(--font-bold); }
    /* line 14, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-parent {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding-left: 5px; }
  /* line 21, _elements.sidebar-menu.scss */
  .sidebar-menu__submenu {
    margin: 3px 0 0 10px; }

/* line 1, _elements.sitemap.scss */
.sitemap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 0; }
  /* line 6, _elements.sitemap.scss */
  .sitemap .text {
    color: var(--color-black); }
    /* line 9, _elements.sitemap.scss */
    .sitemap .text ol + ol, .sitemap .text ol + ul, .sitemap .text ul + ol, .sitemap .text ul + ul {
      margin-top: 0; }
    /* line 12, _elements.sitemap.scss */
    .sitemap .text ol li, .sitemap .text ul li {
      margin: 0;
      padding: 5px 0 0; }
    /* line 17, _elements.sitemap.scss */
    .sitemap .text a {
      text-decoration: none; }
  /* line 21, _elements.sitemap.scss */
  .sitemap__list {
    column-count: 3;
    gap: 20px;
    margin: 15px 0 0 0 !important; }
    @media (max-width: 767px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 2; } }
    @media (max-width: 575px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 1; } }
    /* line 31, _elements.sitemap.scss */
    .sitemap__list > li {
      display: block;
      break-inside: avoid; }
    /* line 35, _elements.sitemap.scss */
    .sitemap__list-collections {
      margin: 0 !important; }
      /* line 37, _elements.sitemap.scss */
      .sitemap__list-collections > li {
        padding: 20px 0 0 !important; }
        /* line 39, _elements.sitemap.scss */
        .sitemap__list-collections > li > a {
          font-weight: var(--font-bold); }

/* line 1, _elements.universal.scss */
.universal {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  /* line 5, _elements.universal.scss */
  .universal__item {
    display: flex;
    gap: 20px;
    flex-direction: column; }
    /* line 9, _elements.universal.scss */
    .universal__item.is-shadow {
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-s); }
    /* line 14, _elements.universal.scss */
    .universal__item.is-border {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--border-grey); }
  /* line 20, _elements.universal.scss */
  .universal__header {
    display: flex;
    gap: 20px; }
  /* line 24, _elements.universal.scss */
  .universal__info {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-self: center; }
  /* line 30, _elements.universal.scss */
  .universal__title {
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--font-normal); }
  /* line 34, _elements.universal.scss */
  .universal__subtitle {
    color: var(--color-grey-l); }
  /* line 37, _elements.universal.scss */
  .universal__image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px; }
    /* line 44, _elements.universal.scss */
    .universal__image.is-bg {
      flex: 0 0 70px;
      max-width: 70px;
      height: 70px;
      background-color: var(--bg-grey);
      border-radius: 50%; }
    /* line 51, _elements.universal.scss */
    .universal__image img {
      width: 50px;
      height: 50px;
      object-fit: contain; }
  /* line 57, _elements.universal.scss */
  .universal__info {
    align-self: center; }

/* line 62, _elements.universal.scss */
.universal-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 767px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      gap: 10px;
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 575px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      grid-template-columns: repeat(2, 1fr); } }
  /* line 73, _elements.universal.scss */
  .universal-gallery__item {
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--color-black);
    background-color: var(--bg-grey); }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        transition: box-shadow 0.2s ease; } }
    @media (hover: none) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        -webkit-tap-highlight-color: transparent; } }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 25, _mixins.scss */
      .universal-gallery__item:hover {
        color: var(--color-secondary);
        box-shadow: var(--shadow); }
        /* line 86, _elements.universal.scss */
        .universal-gallery__item:hover .thumb img {
          filter: brightness(80%);
          transform: scale(1.02); } }
    /* line 92, _elements.universal.scss */
    .universal-gallery__item .thumb {
      color: currentColor !important;
      --radius: 0; }
      @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        /* line 95, _elements.universal.scss */
        .universal-gallery__item .thumb img {
          will-change: transform;
          transition: filter 0.6s ease, transform 0.6s ease; } }
    /* line 102, _elements.universal.scss */
    .universal-gallery__item .svg-icon {
      position: absolute;
      z-index: 5;
      left: 50%;
      top: 50%;
      padding: 2px;
      background-color: var(--bg-white);
      border-radius: 50%;
      box-shadow: var(--shadow-m);
      object-fit: none;
      width: 38px;
      height: 38px;
      transform: translate(-50%, -50%); }
