@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/open-sans-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/open-sans-bold.woff2") format("woff2");
}

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --surface: #ffffff;
    --surface-strong: #f7f7f7;
    --text: #1c2429;
    --text-muted: #717070;
    --title: #546c7c;
    --accent: #bdcad3;
    --accent-strong: #546c7c;
    --border: #d6d4d4;
    --shadow: none;
    --radius: 0;
    --container: 980px;
    --narrow: 900px;
    --transition: 0.2s ease;
    --font-main: "Open Sans", Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    /* Wix pageBackground: image fill, center aligned; the disclosure page is top aligned below. */
    background: #8febc5 url("../images/hero-background.jpg") center center / cover scroll no-repeat;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text);
    background: transparent;
    line-height: 1.55;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--accent-strong);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 1000;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: #fff;
}

.skip-link:focus {
    top: 16px;
}

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

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

/* Исходный Wix — фиксированный desktop-сайт шириной 980px. */
@media (min-width: 981px) {
    .container {
        width: var(--container);
    }
}

.narrow {
    width: min(100%, var(--narrow));
}

.site-header {
    padding-bottom: 20px;
    background: transparent;
}

.header-nav-wrapper {
    position: relative;
    z-index: 20;
    background: transparent;
    border-bottom: 1px solid var(--border);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0 14px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    color: var(--title);
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.brand-subtitle {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.main-nav ul,
.social-list,
.document-list,
.accent-list,
.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px 8px;
    border-bottom: 2px solid transparent;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.2;
}

.main-nav a.is-active,
.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--title);
    border-bottom-color: var(--title);
}

.has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    min-width: 140px;
    padding: 6px 0;
    border: 1px solid var(--border);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.has-children:hover .sub-menu,
.has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--title);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    padding: 22px 0 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(220px, 240px);
    gap: 18px;
    align-items: start;
}

.hero-slider,
.hero-card,
.content-card {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    isolation: isolate;
}

.hero-slides {
    position: relative;
    min-height: inherit;
    z-index: 0;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: inherit;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 0 0 1px;
    background: rgba(239, 243, 245, 0.92);
    border-top: 1px solid var(--border);
    z-index: 2;
    pointer-events: auto;
}

.hero-arrow {
    width: 54px;
    height: 42px;
    border: 0;
    border-right: 1px solid var(--border);
    background: transparent;
    color: var(--title);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    pointer-events: auto;
    z-index: 50;
}

.hero-counter {
    margin-left: auto;
    padding: 10px 14px;
    color: var(--title);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    object-fit: cover;
}

.hero-copy {
    padding: 16px 0 0;
    pointer-events: none;
}

.hero-company {
    margin: 0 0 6px;
    font-size: clamp(1.95rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--title);
}

.hero-tagline {
    max-width: 720px;
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.page-home .site-header {
    padding-bottom: 0;
}

.page-home .header-nav-wrapper {
    border-bottom: 0;
}

.page-home .site-nav {
    display: block;
    padding: 51px 0 17px;
}

.page-home .brand {
    display: none;
}

.page-home .main-nav {
    width: 979px;
    margin: 0 auto;
}

.page-home .main-nav > ul {
    justify-content: space-between;
    gap: 0;
}

.page-home .main-nav a {
    padding: 0 10px;
    border-bottom: 0;
    color: #384853;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
}

.page-home .main-nav a.is-active,
.page-home .main-nav a:hover,
.page-home .main-nav a:focus-visible {
    color: #cc0a0a;
    border-bottom-color: transparent;
}

.page-home .hero-section {
    padding: 0;
}

.page-home .hero-layout {
    grid-template-columns: 560px 430px;
    gap: 0;
    margin-bottom: 18px;
}

.page-home .hero-slider,
.page-home .hero-card {
    border: 0;
    background: transparent;
}

.page-home .hero-slider {
    min-height: 212px;
    height: 212px;
}

.page-home .hero-slider::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30px;
    background: linear-gradient(0deg, rgba(74, 74, 74, 0.55), rgba(74, 74, 74, 0));
    pointer-events: none;
    z-index: 1;
}

.page-home .hero-card {
    width: 430px;
    height: 212px;
    margin-left: -10px;
}

.page-home .hero-controls {
    inset: 0;
    padding: 0;
    background: transparent;
    border-top: 0;
    z-index: 2;
    pointer-events: auto;
}

.page-home .hero-arrow {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 70px;
    margin-top: -35px;
    border-right: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    font-weight: 400;
    line-height: 1;
    opacity: 0.45;
    pointer-events: auto;
    z-index: 50;
}

.page-home .hero-arrow::before {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 54px;
    line-height: 70px;
    text-align: center;
    content: "\2039";
}

.page-home .hero-arrow[data-slider-next]::before {
    content: "\203A";
}

.page-home .hero-arrow:hover,
.page-home .hero-arrow:focus-visible {
    opacity: 1;
}

.page-home .hero-arrow:hover::before,
.page-home .hero-arrow:focus-visible::before {
    color: #ffffff;
}

.page-home .hero-arrow[data-slider-prev] {
    left: 20px;
}

.page-home .hero-arrow[data-slider-next] {
    right: 20px;
}

.page-home .hero-counter {
    position: absolute;
    right: 18px;
    bottom: 10px;
    margin-left: 0;
    padding: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
}

.page-home .hero-copy {
    width: min(calc(100% - 32px), var(--container));
    margin: -177px auto 0;
    padding: 0 0 18px;
    position: relative;
    z-index: 3;
}

.page-home .hero-company {
    width: 390px;
    margin: 0 0 38px 575px;
    color: var(--title);
    font-size: 33px;
    font-weight: 700;
    line-height: 0.9;
}

.page-home .hero-tagline {
    width: 286px;
    max-width: none;
    margin: 0 0 0 634px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.1;
}

.page-home .home-intro {
    padding: 47px 0 4px;
}

.page-home .home-intro .container {
    width: min(calc(100% - 32px), var(--container));
    padding: 0 25px 0 16px;
}

.page-home .home-intro .lead {
    width: 688px;
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4;
}

.page-home .home-panels {
    padding: 25px 0 0;
}

.page-home .home-panels-grid {
    width: min(calc(100% - 32px), var(--container));
    grid-template-columns: 688px 251px;
    gap: 0;
    padding: 0 25px 0 16px;
}

.page-home .home-activities {
    padding: 0;
    border: 0;
    background: transparent;
}

.page-home .home-activities h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.page-home .home-activities .accent-list {
    display: block;
    gap: 0;
}

.page-home .home-activities .accent-list li {
    padding-left: 0;
    margin: 0 0 10px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.4;
}

.page-home .home-activities .accent-list li::before {
    content: "- ";
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
}

.page-home .home-services {
    padding: 14px 23px 37px 35px;
    border: 0;
    background: var(--bg-soft);
}

.page-home .home-sidebar {
    display: grid;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.page-home .home-services h2 {
    margin: 0 0 10px;
    color: #cc0a0a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.page-home .home-services .service-list {
    display: block;
    margin: 0 0 37px 19px;
    padding: 0;
    list-style: disc;
}

.page-home .home-services .service-list li {
    padding-left: 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.4;
}

.page-home .home-services .service-list li::before {
    content: none;
}

.page-home .home-services .button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    min-height: 25px;
    margin-left: 6px;
    padding: 0 12px;
    background: #cc0a0a;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
}

.page-home .home-services .button-link:hover,
.page-home .home-services .button-link:focus-visible {
    color: #ffffff;
    background: #880606;
}

.page-home .home-sidebar-section {
    padding: 0 0 21px 23px;
}

.page-home .home-sidebar-section h2 {
    margin: 0 0 27px;
    color: #cc0a0a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.page-home .home-sidebar .news-teasers,
.page-home .home-sidebar .publication-list {
    display: grid;
    gap: 0;
}

.page-home .home-sidebar .news-teaser,
.page-home .home-sidebar .publication-item {
    padding: 0 0 21px;
    border-bottom: 0;
}

.page-home .home-sidebar .meta {
    margin: 0 0 4px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.page-home .home-sidebar h3 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.page-home .home-sidebar .text-link {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.page-home .home-sidebar .text-link:hover,
.page-home .home-sidebar .text-link:focus-visible {
    color: #440303;
}

.page-home .home-publications {
    margin-top: 2px;
    padding-top: 23px;
    border-top: 1px solid #aaa8a8;
}

.page-home .home-publications h2 {
    margin-bottom: 19px;
}

.page-home .home-publications .publication-item {
    padding-bottom: 10px;
}

.page-home .home-intro .lead {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Внутренние страницы используют тот же desktop-header Wix, что и главная. */
body:not(.page-home) .site-header {
    padding-bottom: 0;
}

/*
 * В Wix заголовок внутренних страниц построен grid-ом: слайдер и карточка
 * резервируют 212px плюс нижний интервал 18px независимо от наложенного
 * текста. Здесь hero-copy визуально накладывается отрицательным margin,
 * поэтому фиксируем ту же минимальную высоту normal flow на desktop.
 */
@media (min-width: 981px) {
    body:not(.page-home) .site-header {
        min-height: 323px;
    }
}

body:not(.page-home) .header-nav-wrapper {
    border-bottom: 0;
}

body:not(.page-home) .site-nav {
    display: block;
    padding: 51px 0 17px;
}

body:not(.page-home) .brand {
    display: none;
}

body:not(.page-home) .main-nav {
    width: 979px;
    margin: 0 auto;
}

body:not(.page-home) .main-nav > ul {
    justify-content: space-between;
    gap: 0;
}

body:not(.page-home) .main-nav a {
    padding: 0 10px;
    border-bottom: 0;
    color: #384853;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
}

body:not(.page-home) .main-nav a.is-active {
    color: #cc0a0a;
}

body:not(.page-home) .main-nav a:hover,
body:not(.page-home) .main-nav a:focus-visible {
    color: #880606;
    border-bottom-color: transparent;
}

body:not(.page-home) .main-nav a.is-active:hover,
body:not(.page-home) .main-nav a.is-active:focus-visible {
    color: #cc0a0a;
}

body:not(.page-home) .hero-section {
    padding: 0;
}

body:not(.page-home) .hero-layout {
    grid-template-columns: 560px 430px;
    gap: 0;
    margin-bottom: 18px;
}

body:not(.page-home) .hero-slider,
body:not(.page-home) .hero-card {
    border: 0;
    background: transparent;
}

body:not(.page-home) .hero-slider {
    min-height: 212px;
    height: 212px;
}

body:not(.page-home) .hero-slider::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30px;
    background: linear-gradient(0deg, rgba(74, 74, 74, 0.55), rgba(74, 74, 74, 0));
    pointer-events: none;
    z-index: 1;
}

body:not(.page-home) .hero-card {
    width: 430px;
    height: 212px;
    margin-left: -10px;
}

body:not(.page-home) .hero-controls {
    inset: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    pointer-events: auto;
    z-index: 2;
}

body:not(.page-home) .hero-arrow {
    position: absolute;
    top: 50%;
    width: 45px;
    height: 70px;
    margin-top: -35px;
    border-right: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    font-weight: 400;
    line-height: 1;
    opacity: 0.45;
    pointer-events: auto;
    z-index: 50;
}

body:not(.page-home) .hero-arrow::before {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 54px;
    line-height: 70px;
    text-align: center;
    content: "\2039";
}

body:not(.page-home) .hero-arrow[data-slider-next]::before {
    content: "\203A";
}

body:not(.page-home) .hero-arrow:hover,
body:not(.page-home) .hero-arrow:focus-visible {
    opacity: 1;
}

body:not(.page-home) .hero-arrow:hover::before,
body:not(.page-home) .hero-arrow:focus-visible::before {
    color: #ffffff;
}

body:not(.page-home) .hero-arrow[data-slider-prev] {
    left: 20px;
}

body:not(.page-home) .hero-arrow[data-slider-next] {
    right: 20px;
}

body:not(.page-home) .hero-counter {
    position: absolute;
    right: 18px;
    bottom: 10px;
    margin-left: 0;
    padding: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
}

body:not(.page-home) .hero-copy {
    position: relative;
    z-index: 3;
    width: var(--container);
    margin: -177px auto 0;
    padding: 0 0 18px;
}

body:not(.page-home) .hero-company {
    width: 390px;
    margin: 0 0 38px 575px;
    color: var(--title);
    font-size: 33px;
    font-weight: 700;
    line-height: 0.9;
}

body:not(.page-home) .hero-tagline {
    width: 286px;
    max-width: none;
    margin: 0 0 0 634px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.1;
}

.site-main {
    width: var(--container);
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 36px;
    background: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
    .site-main {
        animation: page-enter 160ms ease-out both;
    }

    @keyframes page-enter {
        from {
            opacity: 0;
            transform: translateY(2px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.page-shell {
    padding: 12px 0;
}

.page-shell h1,
.page-shell h2,
.page-shell h3 {
    margin-top: 0;
    color: var(--title);
    line-height: 1.2;
}

.page-shell h1 {
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 3vw, 2rem);
}

.page-shell h2 {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 2.3vw, 1.55rem);
}

.page-shell h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.lead {
    margin: 0;
    font-size: 1rem;
}

.grid-two,
.contact-grid,
.service-grid,
.timeline-grid {
    display: grid;
    gap: 24px;
}

.grid-two,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.timeline-grid,
.team-stack,
.news-stack {
    display: grid;
    gap: 18px;
}

.content-card {
    padding: 18px 0;
    border-width: 0 0 1px;
}

.accent-list,
.service-list,
.document-list {
    display: grid;
    gap: 10px;
}

.accent-list li,
.service-list li,
.document-list li {
    position: relative;
    padding-left: 16px;
}

.accent-list li::before,
.service-list li::before,
.document-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.service-short-list {
    margin-bottom: 16px;
}

.button-link {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent-strong);
    font-weight: 400;
    box-shadow: none;
    cursor: pointer;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    background: var(--accent-strong);
    color: #fff;
    font-weight: 600;
    box-shadow: none;
    cursor: pointer;
}

.button-link:hover,
.button-link:focus-visible {
    color: var(--title);
    background: none;
    transform: none;
}

.submit-button:hover,
.submit-button:focus-visible {
    color: #fff;
    transform: none;
    background: var(--title);
}

.text-link {
    font-weight: 400;
}

.news-teasers,
.publication-list,
.link-actions,
.contact-list,
.document-gallery {
    display: grid;
    gap: 12px;
}

.news-teaser,
.publication-item {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.news-teaser h3,
.publication-item h3 {
    margin-bottom: 10px;
}

.meta,
.section-caption,
.disclosure-year {
    margin: 0 0 12px;
    color: var(--text-muted);
    font-size: 0.92rem;
    letter-spacing: 0;
}

.contact-strip {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0 0;
    border: 1px solid transparent;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.contact-strip h2 {
    margin-bottom: 10px;
}

.contact-strip p {
    margin: 0 0 8px;
}

.contact-strip-phones {
    display: grid;
    gap: 6px;
    justify-items: start;
}

.timeline-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 18px;
    align-items: start;
}

.timeline-item img,
.document-card img {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
}

.team-card {
    display: grid;
    gap: 16px;
}

.document-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.document-card {
    margin: 0;
}

.news-card p:last-of-type {
    margin-bottom: 0;
}

.link-actions {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: start;
    gap: 12px;
    margin-top: 14px;
}

.document-list a {
    color: var(--text);
    font-weight: 400;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-weight: 600;
    color: var(--title);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(126, 151, 170, 0.18);
}

.honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.form-message {
    padding: 12px 14px;
    border: 1px solid transparent;
    margin-bottom: 16px;
}

.form-message p {
    margin: 0;
}

.form-message p + p {
    margin-top: 6px;
}

.form-message-success {
    background: rgba(186, 218, 85, 0.22);
    color: #58741c;
}

.form-message-error {
    background: rgba(212, 81, 81, 0.15);
    color: #9a2a2a;
}

.page-contacts .page-shell {
    padding: 12px 0 22px;
}

.page-contacts .contacts-page {
    min-height: 0;
}

.page-contacts .contacts-title {
    margin: 0 0 22px 30px;
    color: #cc0a0a;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
}

.page-contacts .contacts-top {
    display: grid;
    grid-template-columns: 308px 217px;
    column-gap: 12px;
    align-items: start;
    padding-left: 13px;
    margin-bottom: 18px;
}

.page-contacts .contacts-map {
    width: 308px;
    height: 364px;
    overflow: hidden;
    border: 1px solid #aaa8a8;
    background: #f7f7f7;
}

.page-contacts .contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.page-contacts .contacts-meta {
    padding-top: 3px;
}

.page-contacts .contacts-intro,
.page-contacts .contacts-copy {
    margin: 0;
    color: #1c2429;
    font-size: 13px;
    line-height: 1.6;
}

.page-contacts .contacts-intro {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 1.4;
}

.page-contacts .contacts-intro strong {
    color: #546c7c;
    font-weight: 700;
}

.page-contacts .contacts-copy + .contacts-copy {
    margin-top: 18px;
}

.page-contacts .contacts-copy a[href^="mailto:"] {
    color: #1c2429;
    text-decoration: underline;
}

.page-contacts .contacts-copy a[href^="tel:"] {
    color: #1c2429;
    text-decoration: none;
}

.page-contacts .contacts-phone-indent {
    display: block;
    padding-left: 39px;
}

.page-contacts .contacts-social {
    display: flex;
    gap: 5px;
    margin: 11px 0 0 18px;
    padding: 0;
    list-style: none;
}

.page-contacts .contacts-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.page-contacts .contacts-social img {
    display: block;
    width: 22px;
    height: 22px;
    filter: grayscale(1) brightness(0.72);
}

.page-contacts .contacts-form-wrap {
    width: 414px;
    margin-left: 333px;
}

.page-contacts .contact-form-wix {
    width: 100%;
    gap: 0;
}

.page-contacts .contact-field {
    display: block;
    margin: 0 0 5px;
}

.page-contacts .contacts-form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.page-contacts .contact-form-wix input,
.page-contacts .contact-form-wix textarea {
    width: 100%;
    border: 1px solid #bdcad3;
    background: #f7f7f7;
    color: #4a4a4a;
    font-size: 13px;
    line-height: 1.4;
    transition: none;
}

.page-contacts .contact-form-wix input {
    height: 30px;
    padding: 3px 5px;
}

.page-contacts .contact-form-wix textarea {
    min-height: 130px;
    padding: 3px 10px 3px 5px;
    resize: vertical;
}

.page-contacts .contact-form-wix input::placeholder,
.page-contacts .contact-form-wix textarea::placeholder {
    color: #a9a9a9;
    opacity: 1;
}

.page-contacts .contact-form-wix input:focus,
.page-contacts .contact-form-wix textarea:focus {
    border-color: #bdcad3;
    background: #f7f7f7;
    box-shadow: none;
}

.page-contacts .contacts-form-status {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.4;
}

.page-contacts .contacts-form-status p {
    margin: 0;
}

.page-contacts .contacts-form-status-success {
    color: rgb(186, 218, 85);
}

.page-contacts .contacts-form-status-error {
    color: #9a2a2a;
}

.page-contacts .contacts-submit-row {
    display: flex;
    justify-content: flex-end;
}

.page-contacts .contacts-submit-row .submit-button {
    width: 93px;
    min-height: 32px;
    padding: 0 10px;
    border: 0;
    background: #8d9da8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.page-contacts .contacts-submit-row .submit-button:hover,
.page-contacts .contacts-submit-row .submit-button:focus-visible {
    background: #546c7c;
    color: #ffffff;
}

/* Страница сотрудников: расположение и размеры соответствуют исходной странице Wix. */
.page-team .site-main { padding-bottom: 47px; }
.page-team .team-page { padding: 5px 0 0; }
.page-team .team-page__inner { width: 980px; margin: 0 auto; }
.page-team .team-page h1 { width: 766px; margin: 0 0 16px 56px; color: #cc0a0a; font-size: 27px; font-weight: 700; line-height: 1.2; }
.page-team .team-description { width: 951px; margin: 0; color: #1c2429; font-size: 16px; font-weight: 400; line-height: 1.4; }
.page-team .team-director > .team-description { margin: 0 0 26px 8px; }
.page-team .team-documents { display: grid; align-items: start; }
.page-team .team-documents img, .page-team .team-cap { display: block; object-fit: cover; }
.page-team .team-documents--director { grid-template-columns: 191px 190px 192px 192px; grid-template-rows: 269px 273px; column-gap: 15px; row-gap: 21px; width: 840px; margin-left: 14px; }
.page-team .team-documents--director img:nth-child(3) { margin-left: 9px; }
.page-team .team-documents--director img:nth-child(4) { margin-left: 15px; }
.page-team .team-documents--director img:nth-child(5) { grid-column: 1; width: 192px; height: 271px; margin-left: -1px; }
.page-team .team-documents--director img:nth-child(6) { grid-column: 2; width: 192px; height: 272px; }
.page-team .team-documents--director img:nth-child(7) { grid-column: 3; width: 193px; height: 273px; margin-left: 8px; }
.page-team .team-cap { width: 350px; height: 249px; margin: 20px 0 37px 8px; }
.page-team .team-employee > .team-description { margin: 37px 0 16px 27px; }
.page-team .team-documents--krichenova { grid-template-columns: 191px 190px 196px; column-gap: 25px; width: 638px; margin: 17px 0 22px 27px; }
.page-team .team-documents--krichenova img { height: 269px; }
.page-team .team-documents--krichenova img:first-child { height: 270px; }
.page-team .team-documents--krichenova img:nth-child(3) { margin-left: 22px; }
.page-team .team-employee--sintsova > .team-description { margin: 0 0 11px 22px; }
.page-team .team-documents--sintsova { grid-template-columns: 196px 195px; column-gap: 62px; width: 453px; margin-left: 22px; }
.page-team .team-documents--sintsova img { height: 277px; }
.page-team .team-documents--sintsova img + img { height: 276px; margin-top: 1px; }

/* Страница «О компании»: сетка и размеры соответствуют исходной странице Wix. */
.page-about .site-main { padding-bottom: 0; }
.page-about .about-page { min-width: 980px; padding: 0 0 52px; }
.page-about .about-page__inner { position: relative; box-sizing: border-box; width: 980px; min-height: 1396px; margin: 0 auto; padding-top: 92px; }
.page-about .about-page h1 { width: 575px; margin: 0 0 7px 30px; color: #cc0a0a; font-size: 27px; font-weight: 700; line-height: 1.4; }
.page-about .about-intro { width: 932px; margin: 0 0 23px 33px; color: #1c2429; font-family: "Arial Black", Arial, sans-serif; font-size: 16px; font-weight: 400; line-height: 1.4; text-align: justify; }
.page-about .about-records { position: relative; height: 1162px; margin-left: 24px; }
.page-about .about-record { position: absolute; display: grid; align-items: start; }
.page-about .about-record img { display: block; width: 269px; object-fit: cover; }
.page-about .about-record__copy { grid-column: 2; align-self: start; }
.page-about .about-record p { margin: 0; color: #1c2429; font-size: 14px; font-weight: 400; line-height: 1.4; text-align: center; }
.page-about .about-record--2007 { top: 4px; left: 0; grid-template-columns: 269px 191px; column-gap: 7px; }
.page-about .about-record--2007 img { height: 381px; }
.page-about .about-record--2007 p { padding-top: 0; }
.page-about .about-record--2008 { top: 0; left: 473px; grid-template-columns: 269px 192px; column-gap: 11px; }
.page-about .about-record--2008 img { height: 381px; }
.page-about .about-record--2016 { top: 395px; left: 0; grid-template-columns: 269px 192px; column-gap: 6px; }
.page-about .about-record--2016 img { height: 386px; object-fit: fill; }
.page-about .about-record--2016 p { font-size: 13px; }
.page-about .about-record--2018 { top: 395px; left: 473px; grid-template-columns: 269px 192px; column-gap: 9px; }
.page-about .about-record--2018 img { height: 381px; }
.page-about .about-record--2020 { top: 781px; left: 0; grid-template-columns: 269px 192px; column-gap: 12px; }
.page-about .about-record--2020 img { height: 381px; }
.page-about .about-record--2020 p { font-size: 13px; line-height: normal; }

/* Страница услуг: текстовая сетка повторяет исходную страницу Wix. */
.page-services .site-main { padding-bottom: 0; }
.page-services .services-page { min-width: 980px; padding: 0; }
.page-services .services-page__inner { position: relative; width: 980px; min-height: 500px; margin: 0 auto; }
.page-services .services-page h1 { width: 850px; margin: 0; padding: 29px 0 0 30px; color: #cc0a0a; font-size: 27px; font-weight: 700; line-height: 1.4; }
.page-services .services-group { position: absolute; color: #1c2429; }
.page-services .services-group h2 { margin: 0; color: #cc0a0a; font-size: 28px; font-weight: 400; line-height: 1.2; }
.page-services .services-group ul { margin: 0; padding: 0; list-style: none; }
.page-services .services-group li { position: relative; margin: 0; color: #1c2429; font-size: 16px; font-weight: 400; line-height: 1.4; }
.page-services .services-group li::before { content: "* "; }
.page-services .services-group--accounting { top: 75px; left: 16px; width: 322px; }
.page-services .services-group--accounting h2 { margin-bottom: 22px; }
.page-services .services-group--legal { top: 271px; left: 16px; width: 388px; }
.page-services .services-group--legal h2 { margin-bottom: 22px; }
.page-services .services-group--audit { top: 78px; left: 338px; width: 613px; }
.page-services .services-group--audit h2 { margin-bottom: 39px; }
.page-services .services-group--audit li { margin-bottom: 22px; }

/* Страница новостей: текстовая композиция соответствует исходной странице Wix. */
.page-news .site-main { padding-bottom: 0; }
.page-news .news-page { min-width: 980px; padding: 0; }
.page-news .news-page__inner { position: relative; width: 980px; min-height: 1676px; margin: 0 auto; padding-top: 29px; }
.page-news .news-page h1 { width: 900px; margin: 0 0 -3px 30px; color: #cc0a0a; font-size: 27px; font-weight: 700; line-height: 1.4; }
.page-news .news-section { width: 100%; }
.page-news .news-material { position: relative; width: 665px; margin-left: 30px; color: #1c2429; }
.page-news .news-material h2 { margin: 0; color: #cc0a0a; font-size: 28px; font-weight: 400; line-height: 1.4; }
.page-news .news-material p { margin: 0 0 12px; color: #1c2429; font-size: 12px; font-weight: 400; line-height: 1.4; }
.page-news .news-date { margin-bottom: 12px; color: #cc0a0a; font-size: 10px; font-weight: 700; line-height: 1.4; }
.page-news .news-material--council > p:not(.news-date),
.page-news .news-material--minfin > p:not(.news-date),
.page-news .news-material--important > p:not(.news-date) { text-align: justify; text-justify: inter-word; hyphens: auto; }
.page-news .news-more { display: block; width: 130px; margin-left: 654px; color: #cc0a0a; font-size: 12px; line-height: 1.4; text-align: center; }
.page-news .news-more:hover, .page-news .news-more:focus-visible { color: #cc0a0a; text-decoration: underline; }
.page-news .news-material--council { margin-bottom: 15px; }
.page-news .news-material--council h2 { margin-bottom: 10px; }
.page-news .news-material--council .news-more { margin-top: -12px; }
.page-news .news-material--standards { margin-bottom: 21px; }
.page-news .news-material--standards h2 { margin-bottom: 10px; }
.page-news .news-material--standards ul { margin: 0; padding-left: 18px; }
.page-news .news-material--standards li { margin: 0 0 8px; color: #1c2429; font-size: 12px; line-height: 1.4; }
.page-news .news-material--registry { width: 665px; margin: 22px 0 46px 19px; min-height: 78px; }
.page-news .news-material--registry .news-links { position: absolute; top: 0; left: 665px; display: grid; gap: 93px; }
.page-news .news-material--registry .news-more { margin: 0; }
.page-news .news-material--minfin { width: 669px; margin-left: 8px; margin-bottom: 47px; }
.page-news .news-material--minfin h2 { margin-bottom: 7px; }
.page-news .news-material--ifrs { width: 665px; margin: 0 0 27px 19px; min-height: 78px; }
.page-news .news-material--ifrs h2 { margin-bottom: 7px; }
.page-news .news-material--ifrs > p { margin: 0; font-size: 12px; font-weight: 700; }
.page-news .news-material--ifrs .news-more { position: absolute; top: -24px; left: 665px; margin: 0; }
.page-news .news-material--important { width: 665px; margin-left: 19px; min-height: 120px; }
.page-news .news-material--important h2 { margin-bottom: 7px; }
.page-news .news-material--important > p:not(.news-date) { font-size: 13px; line-height: 1.6; }
.page-news .news-material--important .news-links { position: absolute; top: -32px; left: 665px; display: grid; gap: 71px; }
.page-news .news-material--important .news-more { margin: 0; }

/* Страница отчетов: расположение файлов соответствует исходной странице Wix. */
.page-reports .site-main { padding-bottom: 0; }
.page-reports .reports-page { min-width: 980px; padding: 0; }
.page-reports .reports-page__inner { width: 980px; min-height: 500px; margin: 0 auto; padding: 29px 0 28px; }
.page-reports .reports-page h1 { width: 720px; margin: 0 auto 16px; color: #cc0a0a; font-size: 27px; font-weight: 700; line-height: 1.4; }
.page-reports .reports-list { width: 100%; max-width: 720px; margin: 0 auto; display: grid; gap: 9px; }
.page-reports .report-document { display: flex; align-items: center; gap: 14px; width: 100%; min-height: 68px; padding: 13px 16px; border: 1px solid #d5d5d5; border-radius: 2px; background: #ffffff; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); color: #222222; font-size: 16px; font-weight: 400; line-height: 1.4; transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease; }
.page-reports .report-document:hover, .page-reports .report-document:focus-visible { border-color: #b9b9b9; background: #fafafa; color: #222222; }
.page-reports .report-document:focus-visible { outline: 2px solid #8d9da8; outline-offset: 2px; }
.page-reports .report-document__icon { display: inline-flex; flex: 0 0 42px; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid #d9e0e4; background: #f2f5f7; }
.page-reports .report-document__icon img { display: block; width: 36px; height: 36px; }
.page-reports .report-document__content { min-width: 0; }
.page-reports .report-document__title { display: block; color: #222222; font-size: 16px; line-height: 1.4; overflow-wrap: break-word; }
.page-reports .report-document__year { display: block; margin-top: 3px; color: #717070; font-size: 13px; line-height: 1.4; }

/* Страница раскрытия информации: типографика и ширина исходного Wix. */
.page-disclosure .site-main { padding-bottom: 0; }
html:has(body.page-disclosure) { background-position: center top; }
.page-disclosure .disclosure-page { min-width: 980px; padding: 0 0 48px; }
.page-disclosure .disclosure-page__inner { width: 980px; margin: 0 auto; }
.page-disclosure .disclosure-content { width: 951px; margin: 0 0 0 14px; padding-top: 20px; color: #1c2429; }
.page-disclosure .disclosure-block { display: block; margin: 0 0 24px; }
.page-disclosure .disclosure-block:first-child { margin-bottom: 28px; }
.page-disclosure .disclosure-content h1 { margin: 0 0 4px; color: #1c2429; font-size: 24px; font-weight: 400; line-height: 1.4; text-align: center; }
.page-disclosure .disclosure-year { margin: 0; color: #1c2429; font-size: 24px; font-weight: 400; line-height: 1.4; text-align: center; }
.page-disclosure .disclosure-content h2 { margin: 0 0 16px; color: #1c2429; font-size: 13px; font-weight: 700; line-height: 1.4; text-align: center; }
.page-disclosure .disclosure-row { padding: 0; border: 0; background: transparent; }
.page-disclosure .disclosure-row h3 { margin: 0 0 4px; color: #1c2429; font-size: 13px; font-weight: 400; line-height: 1.4; }
.page-disclosure .disclosure-row p { margin: 0 0 12px; color: #1c2429; font-size: 13px; font-weight: 400; line-height: 1.4; }
.page-disclosure .disclosure-row p + p { margin-top: 0; }
.page-disclosure .disclosure-list { margin: 0 0 12px 20px; padding: 0; }
.page-disclosure .disclosure-list li { margin: 0 0 4px; color: #1c2429; font-size: 13px; font-weight: 400; line-height: 1.4; }
.page-disclosure .disclosure-content a { color: #1c2429; text-decoration: underline; }

.site-footer {
    padding: 0 0 47px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border-top: 0;
    background: transparent;
}

.footer-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.social-list img,
.social-list span {
    display: block;
    line-height: 1;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .site-main {
        animation: none;
    }
}
