@charset "UTF-8";
.quiz-popup, .quiz-popup * { box-sizing: border-box; }

.quiz-popup-root.t-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .6);
    outline: none;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.quiz-popup-root.t-popup.t-popup_show { opacity: 1; }

.quiz-popup-root.t-popup {

    z-index: 10000000;
    padding: 40px 20px;
    -webkit-overflow-scrolling: touch;

    overscroll-behavior: contain;
}

.quiz-popup {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 680px;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    cursor: default;
    font-family: 'PPMori', 'Hanken Grotesk', Arial, sans-serif;
    color: #111317;
    opacity: 0;
    transform: translateY(20px) scale(.97);
    transition: opacity .3s ease, transform .3s ease;
}
.t-popup_show .quiz-popup { opacity: 1; transform: none; }
@media (max-width: 600px) { .quiz-popup { padding: 28px; border-radius: 18px; } }

.quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(17, 19, 23, .06);
    color: #4a4d57;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.quiz-close:hover { background: rgba(17, 19, 23, .12); color: #111317; }
@media (max-width: 600px) { .quiz-close { top: 10px; right: 10px; } }

.quiz-step { animation: quizStepIn .32s ease both; }
@keyframes quizStepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.quiz-prog { height: 6px; border-radius: 999px; background: rgba(10,17,71,.1); overflow: hidden; margin-bottom: 10px; }
.quiz-prog__bar { height: 100%; border-radius: 999px; background: #2015ff; transition: width .35s ease; }
.quiz-prog__label { font-size: 12px; color: #8a8d96; text-align: center; letter-spacing: .04em; margin: 0 0 18px; }

.quiz-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #2015ff; text-align: center; margin: 0 0 12px; }
.quiz-title { font-size: 30px; font-weight: 700; line-height: 1.2; text-align: center; margin: 0 0 10px; }
@media (max-width: 600px) { .quiz-title { font-size: 22px; } }
.quiz-subtitle { font-size: 16px; line-height: 1.45; color: #4a4d57; text-align: center; margin: 0 0 22px; }
.quiz-note { font-size: 14px; color: #6b6e78; text-align: center; margin: 16px 0 24px; }

.quiz-receive { font-weight: 600; text-align: center; margin: 0 0 12px; }
.quiz-benefits { list-style: none; margin: 18px auto; padding: 0; display: grid; gap: 11px; max-width: 460px; }
.quiz-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }

.quiz-benefits li::before { content: "\2713"; color: #2015ff; font-weight: 700; }

.quiz-options { display: grid; gap: 12px; margin: 4px 0 8px; }
.quiz-option { display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left; width: 100%; padding: 16px 18px; border: 1px solid rgba(10,17,71,.14); border-radius: 14px; background: #fff; font-size: 16px; line-height: 1.35; color: #111317; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; font-family: inherit; }
.quiz-option:hover { border-color: #2015ff; background: rgba(32,21,255,.04); }
.quiz-option.is-selected { border-color: #2015ff; background: rgba(32,21,255,.08); box-shadow: inset 0 0 0 1px #2015ff; }
.quiz-option__label { flex: 1; }
.quiz-option__check { flex: none; width: 24px; height: 24px; border-radius: 50%; background: #2015ff; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }

.quiz-radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.quiz-option:has(.quiz-radio) .quiz-option__check { display: none; }
.quiz-option:has(.quiz-radio:checked) .quiz-option__check { display: flex; }
.quiz-option:has(.quiz-radio:checked) { border-color: #2015ff; background: rgba(32,21,255,.08); box-shadow: inset 0 0 0 1px #2015ff; }

.quiz-options--row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.quiz-option--slot { justify-content: center; text-align: center; padding: 14px 8px; font-weight: 500; }
.quiz-slot-note { font-size: 14px; line-height: 1.4; color: #6b6e78; text-align: center; margin: -2px 0 14px; }
@media (max-width: 480px) { .quiz-option--slot { padding: 12px 4px; font-size: 14px; } }

.quiz-field { margin-bottom: 18px; text-align: left; }
.quiz-label { display: block; font-size: 15px; color: #7d8b98; margin-bottom: 8px; }
.quiz-input { width: 100%; height: 50px; padding: 0 20px; border: 1px solid #d9d9d9; border-radius: 16px; background: #fff; color: #000317; font-size: 18px; font-family: inherit; outline: none; transition: border-color .15s; }
.quiz-input::placeholder { color: #7d8b98; }
.quiz-input:focus { border-color: #2015ff; }

.quiz-textarea { height: auto; min-height: 84px; padding: 14px 20px; resize: none; line-height: 1.4; }

.iti { width: 100%; display: block; }
.iti input.quiz-phone { width: 100%; }

.iti .iti__selected-country,
.iti .iti__selected-country-primary { border-top-left-radius: 16px; border-bottom-left-radius: 16px; }

.iti .iti__selected-dial-code { color: #7d8b98; font-size: 18px; }

.iti--detached-country-selector { z-index: 10000002; font-family: 'PPMori', 'Hanken Grotesk', Arial, sans-serif; }
.iti--detached-country-selector,
.iti--detached-country-selector * { box-sizing: border-box; }
.iti__search-input { color: #000317; }
.iti__search-input:focus { outline: none; border-color: #2015ff; box-shadow: inset 0 0 0 1px #2015ff; }
.iti__country-list { overflow-x: hidden; }
.iti__country.iti__highlight,
.iti__country:hover { background: rgba(32,21,255,.08); }

.iti--inline-country-selector .iti__country-selector,
.iti--detached-country-selector:not(.iti--fullscreen-popup) .iti__country-selector {
    border: 1px solid #d9d9d9; border-radius: 16px; overflow: hidden;
    box-shadow: 0 14px 34px -12px rgba(32,21,255,.3);
}
.iti--inline-country-selector .iti__search-input,
.iti--detached-country-selector:not(.iti--fullscreen-popup) .iti__search-input {
    border: 1px solid #d9d9d9; border-radius: 12px; margin: 8px; width: calc(100% - 16px);
}

.iti--inline-country-selector .iti__search-icon,
.iti--detached-country-selector:not(.iti--fullscreen-popup) .iti__search-icon { left: 18px; }
.iti--inline-country-selector .iti__country-list,
.iti--detached-country-selector:not(.iti--fullscreen-popup) .iti__country-list { border-radius: 0 0 16px 16px; }
.quiz-error { display: block; color: #d2342b; font-size: 13px; text-align: left; margin-top: 6px; }

.quiz-field--error .quiz-input { border-color: #d2342b; box-shadow: 0 0 0 1px rgba(210, 52, 43, .18); }
.quiz-field--error .quiz-input:focus { border-color: #d2342b; box-shadow: 0 0 0 1px rgba(210, 52, 43, .4); }
.quiz-field--error .quiz-label { color: #d2342b; }
.quiz-field--error .quiz-option { border-color: #d2342b; }

.quiz-btn { display: inline-flex; align-items: center; justify-content: center; height: 54px; padding: 0 30px; border: 1px solid #bac6ff; border-radius: 100px; background: #000317; color: #fff; font-size: 18px; font-weight: 400; font-family: inherit; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(32,21,255,.5); transition: background .15s, box-shadow .15s; }
.quiz-btn:hover { background: #323457; }
.quiz-btn:disabled { opacity: .6; cursor: default; }
.quiz-btn--block { width: 100%; }

.quiz-submit-row { text-align: center; margin-top: 18px; }

.quiz-change-slot {
    display: block;
    margin: 12px auto 0;
    padding: 4px 8px;
    background: none;
    border: 0;
    font: inherit;
    font-size: 15px;
    color: #002379;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}
.quiz-change-slot:hover { color: #195cff; }
.quiz-consent { font-size: 16px; line-height: 19px; color: #999999; text-align: center; margin: 16px 0 4px; }
.quiz-consent a { color: #002379; text-decoration: none; }
.quiz-consent a:hover { text-decoration: underline; }

.quiz-actions { margin-top: 12px; }
.quiz-back { display: block; margin: 10px auto 0; width: max-content; background: none; border: 0; color: #6b6e78; font-size: 15px; font-family: inherit; cursor: pointer; padding: 8px 4px; }
.quiz-back:hover { color: #111317; }

.quiz-success { text-align: center; padding: 12px 4px; }
.quiz-success .quiz-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(32,21,255,.1); color: #2015ff; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px; }

.t-popup[data-tooltip-hook="#form"],
.t-popup[data-tooltip-hook="#webinar"] { display: none !important; }

[x-cloak] { display: none !important; }
.cc-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000000; padding: 16px;
    font-family: var(--t-text-font, 'PPMori', 'Hanken Grotesk', Arial, sans-serif);
}
.cc-banner__inner {
    max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px;
    padding: 20px 22px; border-radius: 20px; background: #ffffff;
    border: 1px solid rgba(10, 17, 71, .1); box-shadow: 0 12px 44px -12px rgba(0, 3, 23, .35);
}
.cc-banner__title { margin: 0; font-size: 16px; font-weight: 500; color: #000317; }
.cc-banner__body { margin: 4px 0 0; font-size: 14px; line-height: 1.5; color: #4a4d57; }

.cc-banner__body a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.cc-banner__link { color: #2015ff; text-decoration: underline; text-underline-offset: 2px; }
.cc-banner__actions { display: flex; flex-direction: column; gap: 10px; }
.cc-banner__actions .cc-btn { width: 100%; }
.cc-btn {
    box-sizing: border-box; height: 42px; padding: 0 20px; border-radius: 100px;
    font-size: 14px; font-weight: 400; text-transform: capitalize;
    font-family: inherit; cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s;
}
.cc-btn--ghost { background: #fff; border: 1px solid rgba(10, 17, 71, .18); color: #000317; }
.cc-btn--ghost:hover { background: #f3f4fa; }
.cc-btn--primary { background: #000317; border: 1px solid #000317; color: #fff; }
.cc-btn--primary:hover { background: #323457; }

.cc-manage {
    max-width: 560px; margin: 12px auto 0; padding: 18px 20px; border-radius: 18px;
    background: #ffffff; border: 1px solid rgba(10, 17, 71, .1);
    box-shadow: 0 12px 44px -12px rgba(0, 3, 23, .35);
    overflow: hidden;

    display: flex; flex-direction: column;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
}
.cc-manage__head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.cc-back {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; padding: 0; border: none; background: transparent;
    border-radius: 50%; color: #000317; cursor: pointer; flex: none; transition: background .15s;
}
.cc-back:hover { background: #f3f4fa; }
.cc-back svg { width: 18px; height: 18px; }

.cc-manage__scroll { flex: 1 1 auto; min-height: 0; max-height: 62vh; overflow-y: auto; overscroll-behavior: contain; padding-right: 4px;

    scrollbar-width: auto; }
.cc-manage__scroll::-webkit-scrollbar { width: 8px; }
.cc-manage__scroll::-webkit-scrollbar-track { background: rgba(10, 17, 71, .07); border-radius: 100px; }
.cc-manage__scroll::-webkit-scrollbar-thumb { background: #cdd0db; border-radius: 100px; }
.cc-manage__scroll::-webkit-scrollbar-thumb:hover { background: #b7bccd; }

@supports (-moz-orient: inline) {
    .cc-manage__scroll { scrollbar-width: thin; scrollbar-color: #cdd0db rgba(10, 17, 71, .07); }
}
.cc-manage__title { margin: 0; font-size: 16px; font-weight: 500; color: #000317; }
.cc-manage__intro { margin: 0 0 14px; font-size: 13px; line-height: 1.5; color: #6b6e78; }
.cc-cat { padding: 14px 16px; border-radius: 14px; background: #f6f7fb; }
.cc-cat + .cc-cat { margin-top: 10px; }
.cc-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cc-cat__name { font-size: 14px; font-weight: 500; color: #000317; }
.cc-cat__state { font-size: 12px; font-weight: 400; color: #195cff; white-space: nowrap; }
.cc-cat__desc { margin: 8px 0 6px; font-size: 13px; line-height: 1.45; color: #4a4d57; }
[x-cloak] { display: none !important; }

.cc-cat__more { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; padding: 0; border: 0; background: none; font: inherit; font-size: 12px; font-weight: 500; color: #195cff; cursor: pointer; }
.cc-cat__more:hover { text-decoration: underline; }
.cc-cat__chev { width: 14px; height: 14px; transition: transform .18s ease; }
.cc-cat__chev.is-open { transform: rotate(180deg); }
.cc-cat__list { margin: 6px 0 0; padding: 0; list-style: none; font-size: 13px; line-height: 1.5; color: #4a4d57; }

.cc-cat__item { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin: 0; padding: 10px 0; border-top: 1px solid rgba(10, 17, 71, .07); }
.cc-cat__item:first-child { border-top: 0; padding-top: 4px; }
.cc-cat__item-text { flex: 1; min-width: 0; }
.cc-cat__item-name { display: block; font-size: 13px; font-weight: 500; color: #000317; }
.cc-cat__item-desc { display: block; margin-top: 3px; font-size: 12.5px; line-height: 1.5; color: #5a5d6b; }
.cc-cat__item-state { flex: none; margin-top: 2px; font-size: 12px; color: #6b6e78; }

.cc-cat__item-provider { display: inline-block; margin-top: 5px; padding: 1px 7px; border-radius: 4px; background: #eceefb; font-size: 11px; color: #5a5d6b; }
.cc-switch--sm { margin-top: 2px; }
.cc-cat__note { margin: 8px 0 0; font-size: 12px; line-height: 1.45; color: #6b6e78; }
.cc-manage__actions { display: flex; justify-content: flex-end; margin-top: 14px; }

.cc-switch { position: relative; display: inline-block; width: 44px; height: 26px; flex: none; }
.cc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 1; }
.cc-switch__slider { position: absolute; inset: 0; border-radius: 100px; background: #cdd0db; transition: background .2s; }
.cc-switch__slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); transition: transform .2s; }
.cc-switch input:checked + .cc-switch__slider { background: #000317; }
.cc-switch input:checked + .cc-switch__slider::before { transform: translateX(18px); }

.cc-switch--sm { width: 36px; height: 20px; }
.cc-switch--sm .cc-switch__slider::before { top: 3px; left: 3px; width: 14px; height: 14px; }
.cc-switch--sm input:checked + .cc-switch__slider::before { transform: translateX(16px); }
@media screen and (min-width: 768px) {
    .cc-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
    .cc-banner__actions { flex-direction: row; flex-shrink: 0; }
    .cc-banner__actions .cc-btn { width: auto; }
}

.cc-reopen {
    position: fixed; left: 16px; bottom: 16px; z-index: 8999999;
    padding: 8px 14px; border-radius: 100px; border: 1px solid rgba(10, 17, 71, .14);
    background: #ffffff; color: #4a4d57; cursor: pointer; opacity: .85;
    font: 500 12px/1 var(--t-text-font, 'PPMori', 'Hanken Grotesk', Arial, sans-serif);
    box-shadow: 0 6px 20px -8px rgba(0, 3, 23, .3); transition: opacity .15s;
}
.cc-reopen:hover { opacity: 1; }

.cc-overlay {
    position: fixed; inset: 0;
    background: rgba(4, 8, 25, .5);
    animation: cc-overlay-in .2s ease;
}
.cc-overlay--blur { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
@keyframes cc-overlay-in { from { opacity: 0; } to { opacity: 1; } }

.cc-banner--blocking .cc-banner__inner,
.cc-banner--blocking .cc-manage { position: relative; z-index: 1; }

html.cc-locked, html.cc-locked body { overflow: hidden !important; }

.cc-banner--centered {
    top: 0; padding: 20px;
    display: flex; align-items: center; justify-content: center;
}

.cc-banner--centered .cc-banner__inner {
    position: relative; z-index: 1; margin: 0;
    width: 100%; max-width: 460px;
    flex-direction: column; align-items: stretch;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
}
.cc-banner--centered .cc-banner__actions { flex-direction: column; }
.cc-banner--centered .cc-banner__actions .cc-btn { width: 100%; }

.cc-banner--centered .cc-manage { position: relative; z-index: 1; margin: 0; }

.cc-attn { animation: cc-attn-ring .55s ease; }
.cc-attn.cc-attn--shake { animation: cc-attn-ring .55s ease, cc-attn-shake .4s ease; }
@keyframes cc-attn-ring {
    0%   { box-shadow: 0 0 0 0 transparent, 0 12px 44px -12px rgba(0, 3, 23, .35); }
    35%  { box-shadow: 0 0 0 3px var(--cc-attn, #195cff), 0 12px 44px -12px rgba(0, 3, 23, .35); }
    100% { box-shadow: 0 0 0 0 transparent, 0 12px 44px -12px rgba(0, 3, 23, .35); }
}
@keyframes cc-attn-shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(3px); }
    30%, 50%, 70% { transform: translateX(-5px); }
    40%, 60% { transform: translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {

    .cc-attn, .cc-attn.cc-attn--shake { animation: cc-attn-ring .55s ease; }
}
.legal-popup {
    position: fixed;
    inset: 0;
    z-index: 10000002;

    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    overscroll-behavior: contain;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.legal-popup.is-open {
    opacity: 1;
}

.legal-popup:not(.is-open) {
    pointer-events: none;
}

.legal-popup__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.legal-popup__panel {
    position: relative;
    width: 100%;
    max-width: 1160px;
    margin: auto;
    box-sizing: border-box;

    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fbfbf9;
    border-radius: 60px;
    padding: 56px 64px;
    box-shadow: 0 20px 80px rgba(0, 3, 23, 0.25);

    transform: translateY(420px) scale(0.9);
    transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.legal-popup.is-open .legal-popup__panel {
    transform: none;
}

.legal-popup__close {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(17, 19, 23, 0.06);
    color: #4a4d57;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.legal-popup__close:hover {
    background: rgba(17, 19, 23, 0.12);
    color: #111317;
}

.legal-popup__title {
    flex: 0 0 auto;
    margin: 0 0 20px;
    padding-right: 72px;
    color: #002379;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--t-text-font, 'PPMori', Arial, sans-serif);
}

.legal-popup__body {

    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #000317;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    font-family: var(--t-text-font, 'PPMori', Arial, sans-serif);

}
.legal-popup__body::-webkit-scrollbar { width: 8px; height: 8px; display: block; }
.legal-popup__body::-webkit-scrollbar-track { background: rgba(0, 3, 23, .07); border-radius: 9px; }
.legal-popup__body::-webkit-scrollbar-thumb { background: rgba(0, 3, 23, .25); border-radius: 9px; }
.legal-popup__body::-webkit-scrollbar-thumb:hover { background: rgba(0, 3, 23, .35); }

@supports (-moz-orient: inline) {
    .legal-popup__body { scrollbar-width: thin; scrollbar-color: rgba(0, 3, 23, .25) rgba(0, 3, 23, .07); }
}
.legal-popup__body ul {
    margin: 0.4em 0;
    padding-left: 20px;
    list-style: disc;
}

.legal-popup__body ol {
    margin: 0.4em 0;
    padding-left: 20px;
    list-style: decimal;
}

.legal-popup__body li {
    margin: 0.2em 0;
}

.legal-popup__body h2,
.legal-popup__body h3,
.legal-popup__body h4 {
    color: #002379;
    font-family: var(--t-text-font, 'PPMori', Arial, sans-serif);
    font-weight: 600;
    line-height: 1.25;
    margin: 1.2em 0 0.4em;
}

.legal-popup__body h2 { font-size: 22px; }
.legal-popup__body h3 { font-size: 20px; }
.legal-popup__body h4 { font-size: 18px; }

.legal-popup__body h2:first-child,
.legal-popup__body h3:first-child { margin-top: 0; }

.legal-popup__body p {
    margin: 0 0 0.8em;
}

.legal-popup__body a {
    color: #002379;
    text-decoration: underline;
}

.legal-popup__body blockquote {
    margin: 1em 0;
    padding: 0.4em 0 0.4em 16px;
    border-left: 3px solid #002379;
    font-style: italic;
}

body.legal-popup-open {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .legal-popup { padding: 16px; }
    .legal-popup__panel { border-radius: 32px; padding: 32px 24px; max-width: none; max-height: calc(100vh - 32px); }
    .legal-popup__title { font-size: 24px; padding-right: 56px; }

    .legal-popup__close { top: 20px; right: 20px; }
}
[data-pe-hidden] {
    display: none !important;
}

@media screen and (max-width: 374px) { :root { --tf-narrow-inv: 1.0246; } }
@media screen and (max-width: 365px) { :root { --tf-narrow-inv: 1.0504; } }
@media screen and (max-width: 356px) { :root { --tf-narrow-inv: 1.0776; } }
@media screen and (max-width: 347px) { :root { --tf-narrow-inv: 1.1062; } }
@media screen and (max-width: 338px) { :root { --tf-narrow-inv: 1.1364; } }
@media screen and (max-width: 329px) { :root { --tf-narrow-inv: 1.1682; } }
@media screen and (max-width: 320px) { :root { --tf-narrow-inv: 1.1719; } }

@media screen and (max-width: 374px) { :root { --tf-narrow: 0.976; } }
@media screen and (max-width: 365px) { :root { --tf-narrow: 0.952; } }
@media screen and (max-width: 356px) { :root { --tf-narrow: 0.928; } }
@media screen and (max-width: 347px) { :root { --tf-narrow: 0.904; } }
@media screen and (max-width: 338px) { :root { --tf-narrow: 0.880; } }
@media screen and (max-width: 329px) { :root { --tf-narrow: 0.856; } }
@media screen and (max-width: 320px) { :root { --tf-narrow: 0.8533; } }

@media screen and (max-width: 374px) {
    #rec2196002599 .t396__artboard,
    #rec2163182733 .t396__artboard,
    #rec2144808103 .t396__artboard,
    #rec2180194553 .t396__artboard,
    #rec2212298383 .t396__artboard {
        transform: scale(var(--tf-narrow, 1));
    }

    #rec2163182733 .t396__artboard,
    #rec2212298383 .t396__artboard {
        transform-origin: center center;
    }
    #rec2163182733 .t396__carrier,
    #rec2163182733 .t396__filter,
    #rec2163182733 .tn-elem[data-elem-id="1776261652480"],
    #rec2163182733 .tn-elem[data-elem-id="1775813132481"],
    #rec2212298383 .t396__carrier,
    #rec2212298383 .t396__filter,
    #rec2212298383 .tn-elem[data-elem-id="1776261652480"],
    #rec2212298383 .tn-elem[data-elem-id="1775813132481"] {
        transform: scale(var(--tf-narrow-inv, 1));
        transform-origin: center center;
    }

    #rec2196002599 .t396__artboard,
    #rec2144808103 .t396__artboard,
    #rec2180194553 .t396__artboard {
        transform-origin: top center;
    }
    #rec2144808103 { margin-bottom: calc((100vw / 375px - 1) * 746px); }
    #rec2180194553 { margin-bottom: calc((100vw / 375px - 1) * 776px); }
}

@media screen and (max-width: 1023px) {
    #rec2163182733 .tn-elem[data-elem-id="1776261652480"] {
        height: 100% !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #rec2208432513 .t396__artboard,
    #rec2208432513 .t396__filter,
    #rec2208432513 .t396__carrier {
        height: 1930px !important;
    }
}

#rec2192524033 .tn-elem[data-elem-id="1776939040593000001"],
#rec2208432513 .tn-elem[data-elem-id="1776155958060"] {
    position: absolute !important;
    pointer-events: none !important;
}

.tn-elem[data-elem-id="1776337877514000003"],
.tn-elem[data-elem-id="1775811080195000023"] {
    margin-top: -1px;
}
.tn-elem[data-elem-id="1776338066205"],
.tn-elem[data-elem-id="1776338056772"] {
    margin-top: -2px;
}

.tn-elem[data-elem-id="1776338066205"] .nav-phone__flag {
    position: relative;
    top: 2px;
    margin-right: 0;
}

.nav-icon--mono {
    filter: grayscale(1);
}

.tn-elem[data-elem-id="1776337877514000003"] a[href^="tel:"] {
    position: relative;
    top: 1px;
    left: -3px;
}

img[src$="whatsapp-color.svg"] {
    transform: scale(0.85);
}
.marketing-slider__viewport {
    overflow: hidden;
}

.marketing-slider__track {
    display: flex;
    align-items: stretch;
    gap: var(--ms-gap, 30px);
    padding: var(--ms-pad, 10px 24px 8px);
    width: max-content;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.marketing-slider__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 0;
    margin-top: 28px;
}

.marketing-slider__wheel-hint {
    margin-top: 20px;
    text-align: center;

    font-family: var(--t-text-font, 'PPMori', Arial, sans-serif);
    font-size: var(--ms-hint-size, 11px);
    line-height: 1.3;
    color: var(--ms-hint-color, #494949);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.marketing-slider__carousel:hover .marketing-slider__wheel-hint { opacity: var(--ms-hint-opacity, 0.7); }

.marketing-slider__wheel-hint + .marketing-slider__dots { margin-top: 8px; }

.marketing-slider__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-block: -7px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.marketing-slider__dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ms-dot, #d4d9ec);
    transition: background 0.2s, transform 0.2s;
}

.marketing-slider__dot.is-active::before {
    background: var(--ms-dot-active, #739cff);
    transform: scale(1.25);
}

.marketing-slider--marquee .marketing-slider__track {
    width: max-content;
    transition: none;
    animation: ms-marquee var(--ms-marquee-dur, 20s) linear infinite;
    animation-direction: var(--ms-marquee-dir, normal);

    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marketing-slider--marquee .marketing-slider__dots {
    display: none;
}

.marketing-slider--marquee.marketing-slider--pause-hover:not(.marketing-slider--smooth-stop):hover .marketing-slider__track {
    animation-play-state: paused;
}

@keyframes ms-marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

.marketing-slider--marquee.marketing-slider--js .marketing-slider__viewport { position: relative; }
.marketing-slider--marquee.marketing-slider--js .marketing-slider__lane {

    padding-left: 0;
    padding-right: 0;
}
.marketing-slider--marquee.marketing-slider--js .marketing-slider__lane--a { animation-name: ms-marquee-lane-a; }
.marketing-slider--marquee.marketing-slider--js .marketing-slider__lane--b {
    position: absolute;
    top: 0;
    left: 0;
    animation-name: ms-marquee-lane-b;
}
@keyframes ms-marquee-lane-a {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-100%, 0, 0); }
}
@keyframes ms-marquee-lane-b {
    from { transform: translate3d(100%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.marketing-slider__carousel {
    position: relative;
}

.marketing-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--ms-arrow-size, 44px);
    height: var(--ms-arrow-size, 44px);
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--ms-arrow-bg, #ffffff);
    color: var(--ms-arrow-accent, var(--ms-dot-active, #195cff));
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(25, 92, 255, 0.18);
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s;
}

.marketing-slider__arrow--prev {
    left: var(--ms-arrow-offset, 8px);
}

.marketing-slider__arrow--next {
    right: var(--ms-arrow-offset, 8px);
}

.marketing-slider__arrow svg {
    width: 42%;
    height: 42%;
}

.marketing-slider__arrow:hover,
.marketing-slider__arrow:focus-visible {
    background: var(--ms-arrow-accent, var(--ms-dot-active, #195cff));
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(25, 92, 255, 0.32);
    transform: translateY(-50%) scale(1.06);
}

.marketing-slider__arrow:focus-visible {
    outline: 2px solid var(--ms-arrow-accent, var(--ms-dot-active, #195cff));
    outline-offset: 2px;
}

.marketing-slider__arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.marketing-slider--marquee .marketing-slider__arrow {
    display: none;
}

@media (max-width: 767px) {

    .marketing-slider__arrow {
        display: none;
    }
}
*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}div,span,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,code,img,b,u,i,center,table,tr,th,td,video{margin:0;padding:0;border:0}sup{line-height:0;font-size:smaller;vertical-align:super}sub{line-height:0;font-size:smaller;vertical-align:sub}.t-clear{clear:both}.t-row{margin:0}.t-container{margin-left:auto;margin-right:auto;width:100%;max-width:1200px;padding:0}.t-container.flexx{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.t-container_flex{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.t-container_100{width:100%;padding:0}.t-container_10{margin-left:auto;margin-right:auto;width:100%;max-width:1000px;padding:0}.t-container_8{margin-left:auto;margin-right:auto;width:100%;max-width:800px;padding:0}.t-container:before,.t-container:after,.t-container_10:before,.t-container_10:after,.t-container_8:before,.t-container_8:after,.t-container_100:before,.t-container_100:after{display:table;content:" ";width:0}.t-container:after,.t-container_10:after,.t-container_8:after,.t-container_100:after{clear:both}.t-col{display:inline;float:left;margin-left:20px;margin-right:20px;width:100%}.t-col.flexx{align-items:stretch;height:inherit;margin-top:auto;margin-bottom:auto}.t-col_flex{align-items:stretch;height:inherit;margin-top:auto;margin-bottom:auto}.t-col_1{max-width:60px}.t-col_2{max-width:160px}.t-col_3{max-width:260px}.t-col_4{max-width:360px}.t-col_5{max-width:460px}.t-col_6{max-width:560px}.t-col_7{max-width:660px}.t-col_8{max-width:760px}.t-col_9{max-width:860px}.t-col_10{max-width:960px}.t-col_11{max-width:1060px}.t-col_12{max-width:1160px}.t-col_100{max-width:100vw}.t-prefix_1{padding-left:100px}.t-prefix_2{padding-left:200px}.t-prefix_3{padding-left:300px}.t-prefix_4{padding-left:400px}.t-prefix_5{padding-left:500px}.t-prefix_6{padding-left:600px}.t-prefix_7{padding-left:700px}.t-prefix_8{padding-left:800px}.t-prefix_9{padding-left:900px}.t-prefix_10{padding-left:1000px}.t-prefix_11{padding-left:1100px}.t-prefix_12{padding-left:1200px}.t-width{width:100%}.t-width_1{max-width:60px}.t-width_2{max-width:160px}.t-width_3{max-width:260px}.t-width_4{max-width:360px}.t-width_5{max-width:460px}.t-width_6{max-width:560px}.t-width_7{max-width:660px}.t-width_8{max-width:760px}.t-width_9{max-width:860px}.t-width_10{max-width:960px}.t-width_11{max-width:1060px}.t-width_12{max-width:1160px}.t-width_100{max-width:100%}.t-cell{display:table-cell;vertical-align:middle;height:100%;margin-left:0;margin-right:0}.t-cell_25{width:25vw}.t-cell_33{width:33.3333333vw}.t-cell_50{width:50vw}.t-cell_100{width:100vw}@media screen and (max-width:1200px){.t-container{max-width:960px;padding:0}.t-container_10{max-width:780px}.t-container_8{max-width:640px}.t-col{display:inline;float:left;margin-left:10px;margin-right:10px;width:100%}.t-col_1{max-width:60px}.t-col_2{max-width:140px}.t-col_3{max-width:220px}.t-col_4{max-width:300px}.t-col_5{max-width:380px}.t-col_6{max-width:460px}.t-col_7{max-width:540px}.t-col_8{max-width:620px}.t-col_9{max-width:700px}.t-col_10{max-width:780px}.t-col_11{max-width:860px}.t-col_12{max-width:940px}.t-prefix_1{padding-left:80px}.t-prefix_2{padding-left:160px}.t-prefix_3{padding-left:240px}.t-prefix_4{padding-left:320px}.t-prefix_5{padding-left:400px}.t-prefix_6{padding-left:480px}.t-prefix_7{padding-left:560px}.t-prefix_8{padding-left:640px}.t-prefix_9{padding-left:720px}.t-prefix_10{padding-left:800px}.t-prefix_11{padding-left:880px}.t-prefix_12{padding-left:960px}.t-width_1{max-width:60px}.t-width_2{max-width:140px}.t-width_3{max-width:220px}.t-width_4{max-width:300px}.t-width_5{max-width:380px}.t-width_6{max-width:460px}.t-width_7{max-width:540px}.t-width_8{max-width:620px}.t-width_9{max-width:700px}.t-width_10{max-width:780px}.t-width_11{max-width:860px}.t-width_12{max-width:940px}.t-width_100{max-width:100%}}@media screen and (max-width:960px){.t-container{max-width:640px}.t-container.flexx{display:block}.t-container_flex{display:block}.t-col{display:block;float:none;padding-left:20px;padding-right:20px;margin:0;width:100%;max-width:100%;box-sizing:border-box}.t-col_1,.t-col_2,.t-col_3,.t-col_4,.t-col_5,.t-col_6,.t-col_7,.t-col_8,.t-col_9,.t-col_10,.t-col_11,.t-col_12{width:100%;max-width:100%}.t-prefix_1,.t-prefix_2,.t-prefix_3,.t-prefix_4,.t-prefix_5,.t-prefix_6,.t-prefix_7,.t-prefix_8,.t-prefix_9,.t-prefix_10,.t-prefix_11,.t-prefix_12{padding-left:none}}
.csssize{height:12546px}#allrecords .r,body{--t-headline-font:'PPMori',Arial,sans-serif;--t-text-font:'PPMori',Arial,sans-serif}#allrecords .r,body{--uc-button-color-FDgMTWBR1OUk:#ffffff;--uc-button-bgcolor-FDgMTWBR1OUk:#000317;--uc-button-radius-FDgMTWBR1OUk:999px 999px 999px 999px;--uc-button-padding-FDgMTWBR1OUk:16px 32px 16px 32px;--uc-button-bordercolor-FDgMTWBR1OUk:linear-gradient(90.00deg,rgba(255,255,255,1) 0%,rgba(162,169,246,1) 43.08%,rgba(162,169,246,1) 55.59%,rgba(255,255,255,1) 100%);--uc-button-bordersize-FDgMTWBR1OUk:2px;--uc-button-speedhover-FDgMTWBR1OUk:0.2s;--uc-button-fontfamily-FDgMTWBR1OUk:var(--t-text-font,Arial);--uc-button-fontweight-FDgMTWBR1OUk:400;--uc-button-lineheight-FDgMTWBR1OUk:1.2;--uc-button-fontsize-FDgMTWBR1OUk:18px;--uc-button-color-aaQFnEKsu:#ffffff;--uc-button-bgcolor-aaQFnEKsu:#000317;--uc-button-radius-aaQFnEKsu:30px;--uc-button-bordercolor-aaQFnEKsu:linear-gradient(0.25turn,rgba(255,255,255,1) 0%,rgba(162,169,246,1) 43%,rgba(162,169,246,1) 56%,rgba(255,255,255,1) 100%);--uc-button-bordersize-aaQFnEKsu:1px;--uc-button-shadow-aaQFnEKsu:1px 1px 20px 1px rgba(98,96,255,.3);--uc-button-fontsize-aaQFnEKsu:16px;--uc-button-fontfamily-aaQFnEKsu:var(--t-text-font,Arial);--uc-button-fontweight-aaQFnEKsu:400;--uc-button-bgcolorhover-aaQFnEKsu:#323457;--uc-button-uppercase-aaQFnEKsu:capitalize}.t-body{margin:0px}#allrecords,body{background-color:none}#allrecords{-webkit-font-smoothing:antialiased}#allrecords a{color:#ff8562;text-decoration:none}#allrecords a,#allrecords button,#allrecords .t-radio,#allrecords .t-checkbox,#allrecords .t-img-select{outline:none}#allrecords a:focus-visible,#allrecords button:focus-visible,#allrecords .t-focusable,#allrecords .t-focusable .t-btn,#allrecords .t-focusable .t-btntext,#allrecords .t-img-select:focus-visible+.t-img-select__indicator,#allrecords .t-img-select:focus-visible+.t-img-select__indicator:after,#allrecords .t-radio:focus-visible+.t-radio__indicator,#allrecords .t-checkbox:focus-visible+.t-checkbox__indicator{outline-color:#2015FF;outline-offset:4px;outline-style:auto}#allrecords .t-descr a:focus-visible,#allrecords .t-sociallinks a:focus-visible,#allrecords .ya-share2__link:focus-visible{outline-offset:2px}#allrecords a[href^=tel]{color:inherit;text-decoration:none}#allrecords ol{padding-left:22px}#allrecords ul{padding-left:20px}#allrecords b,#allrecords strong{font-weight:700}@media print{body,html{min-width:1200px;max-width:1200px;padding:0;margin:0 auto;border:none}}.t-records{-webkit-font_smoothing:antialiased;background-color:none}.t-records a{color:#ff8562;text-decoration:none}.t-records a[href^=tel]{color:inherit;text-decoration:none}.t-records ol{padding-left:22px;margin-top:0px;margin-bottom:10px}.t-records ul{padding-left:20px;margin-top:0px;margin-bottom:10px}.t-mbfix{opacity:.01;-webkit-transform:translateX(0px);-ms-transform:translateX(0px);transform:translateX(0px);position:fixed;width:100%;height:500px;background-color:white;top:0px;left:0px;z-index:10000;-webkit-transition:all 0.1s ease;transition:all 0.1s ease}.t-mbfix_hide{-webkit-transform:translateX(3000px);-ms-transform:translateX(3000px);transform:translateX(3000px)}img:not([src]){visibility:hidden}.t-body_scroll-locked{position:fixed;left:0;width:100%;height:100%;overflow:hidden}.r_anim{-webkit-transition:opacity 0.5s;transition:opacity 0.5s}.r_hidden{opacity:0}.r_showed{opacity:1}@media screen and (max-width:1024px){a:active,button:active{-webkit-tap-highlight-color:rgba(255,255,255,.1)}}.t-text{font-family:'PPMori',Arial,sans-serif;font-weight:300;color:#000000}.t-text_xs{font-size:15px;line-height:1.55}.t-text_sm{font-size:18px;line-height:1.55}.t-heading{font-family:'PPMori',Arial,sans-serif;font-weight:600;color:#000000}.t-heading_lg{font-size:32px;line-height:1.17}.t-descr{font-family:'PPMori',Arial,sans-serif;font-weight:300;color:#000000}.t-descr_xxs{font-size:14px;line-height:1.55}.t-descr_xs{font-size:16px;line-height:1.55}.t-btn{display:inline-block;font-family:'PPMori',Arial,sans-serif;border:0 none;text-align:center;white-space:nowrap;vertical-align:middle;font-weight:700;background-image:none;cursor:pointer;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.t-btn td{vertical-align:middle}.t-btn_sending{opacity:.5}.t-align_left{text-align:left}.t-valign_middle{vertical-align:middle}.t-popup{display:none}.t-submit{font-family:'PPMori',Arial,sans-serif}.t-input{font-family:'PPMori',Arial,sans-serif}.t-input__vis-ph{font-family:'PPMori',Arial,sans-serif}.t-select{font-family:'PPMori',Arial,sans-serif}.t-input-error{font-family:'PPMori',Arial,sans-serif}.t-form__errorbox-wrapper{font-family:'PPMori',Arial,sans-serif}.t-form__errorbox-text{font-family:'PPMori',Arial,sans-serif}.t-form__errorbox-item{font-family:'PPMori',Arial,sans-serif}.t-form__successbox{font-family:'PPMori',Arial,sans-serif}.t-rec_pt_0{padding-top:0}.t-rec_pb_0{padding-bottom:0}.t-btnflex,.t-btn.t-btnflex,.t-submit.t-btnflex{display:inline-flex;align-items:center;justify-content:center;gap:1ch;max-width:100%;height:unset;padding:0;overflow:hidden;font-family:'PPMori',Arial,sans-serif,Arial,sans-serif;font-weight:600;line-height:var(--line-height,1.4);padding-top:calc(((var(--height,0px) - 1em * var(--line-height,1.4)) / 2) - var(--border-width,0px));padding-bottom:calc(((var(--height,0px) - 1em * var(--line-height,1.4)) / 2) - var(--border-width,0px));box-sizing:border-box;border-style:solid;border-color:transparent;border-width:var(--border-width,0);background-image:none;cursor:pointer;user-select:none;text-decoration:none;color:inherit;border-radius:0;background-color:transparent;white-space:nowrap}.t-btnflex.t-btnflex_icon_hover_only:not(:hover){gap:0}.t-btnflex__text{max-width:100%;overflow:hidden;text-align:center;white-space:inherit;text-overflow:ellipsis}.t-btnflex__icon{position:relative;flex-shrink:0;width:1.4em;height:1.4em;transition-duration:inherit}.t-btnflex.t-btnflex_icon_hover_only .t-btnflex__icon{transition-property:width;transition-timing-function:inherit}.t-btnflex.t-btnflex_icon_hover_only:not(:hover) .t-btnflex__icon{width:0}.t-btnflex__icon::before,.t-btnflex__icon::after{position:absolute;top:0;left:0;width:100%;height:100%;background-position:center;background-size:contain;background-repeat:no-repeat}.t-btnflex__icon::before{content:'';background-image:var(--icon,none);transition:opacity cubic-bezier(.25,1,.5,1),visibility cubic-bezier(.25,1,.5,1),color ease-in-out;transition-duration:inherit}.t-btnflex__icon.t-btnflex__icon_default_glyph::before{-webkit-mask-image:var(--icon,none);mask-image:var(--icon,none);-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-image:none;background-color:currentcolor}.t-btnflex__icon_has_hover::after{content:'';opacity:0;visibility:hidden;background-image:var(--icon-hover,none);transition:opacity cubic-bezier(.45,0,.55,1),visibility cubic-bezier(.45,0,.55,1),color ease-in-out;transition-duration:inherit}.t-btnflex__icon.t-btnflex__icon_hover_glyph::after{-webkit-mask-image:var(--icon-hover,none);mask-image:var(--icon-hover,none);-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-image:none;background-color:currentcolor}@media (hover:hover){.t-btnflex:hover .t-btnflex__icon_has_hover::before{opacity:0;visibility:hidden;transition-timing-function:cubic-bezier(.5,0,.75,0)}.t-btnflex:hover .t-btnflex__icon_has_hover::after{opacity:1;visibility:visible}}.t-btnflex_xs,.t-btn.t-btnflex_xs,.t-submit.t-btnflex_xs{--height:35px;font-size:13px;padding-left:15px;padding-right:15px}.t-btnflex_sm,.t-btn.t-btnflex_sm,.t-submit.t-btnflex_sm{--height:45px;font-size:14px;padding-left:30px;padding-right:30px}.t-btnflex_smd,.t-btn.t-btnflex_smd,.t-submit.t-btnflex_smd{--height:50px;font-size:15px;padding-left:44px;padding-right:44px}.t-btnflex_md,.t-btn.t-btnflex_md,.t-submit.t-btnflex_md{--height:60px;font-size:16px;padding-left:60px;padding-right:60px}.t-btnflex_lg,.t-btn.t-btnflex_lg,.t-submit.t-btnflex_lg{--height:60px;font-size:22px;padding-left:70px;padding-right:70px}.t-btnflex_xl,.t-btn.t-btnflex_xl,.t-submit.t-btnflex_xl{--height:80px;font-size:26px;padding-left:80px;padding-right:80px}.t-btnflex_xxl,.t-btn.t-btnflex_xxl,.t-submit.t-btnflex_xxl{--height:100px;font-size:30px;padding-left:90px;padding-right:90px}@media screen and (max-width:1200px){.t-text_xs{font-size:14px}.t-text_sm{font-size:16px}.t-descr_xxs{font-size:12px}.t-descr_xs{font-size:14px}.t-heading_lg{font-size:30px}.t-btnflex_sm,.t-btn.t-btnflex_sm,.t-submit.t-btnflex_sm{padding-left:25px;padding-right:25px}.t-btnflex_smd,.t-btn.t-btnflex_smd,.t-submit.t-btnflex_smd{padding-left:30px;padding-right:30px}.t-btnflex_md,.t-btn.t-btnflex_md,.t-submit.t-btnflex_md{padding-left:45px;padding-right:45px}.t-btnflex_lg,.t-btn.t-btnflex_lg,.t-submit.t-btnflex_lg{padding-left:55px;padding-right:55px}.t-btnflex_xl,.t-btn.t-btnflex_xl,.t-submit.t-btnflex_xl{padding-left:65px;padding-right:65px}.t-btnflex_xxl,.t-btn.t-btnflex_xxl,.t-submit.t-btnflex_xxl{padding-left:75px;padding-right:75px}}@media screen and (max-width:640px){.t-text_xs{font-size:12px;line-height:1.45}.t-text_sm{font-size:14px;line-height:1.45}.t-descr_xs{font-size:12px;line-height:1.45}.t-heading_lg{font-size:26px}.t-btn{white-space:normal}.t-btnflex,.t-btn.t-btnflex,.t-submit.t-btnflex{white-space:normal}.t-btnflex_sm,.t-btn.t-btnflex_sm,.t-submit.t-btnflex_sm{padding-left:20px;padding-right:20px}.t-btnflex_smd,.t-btn.t-btnflex_smd,.t-submit.t-btnflex_smd{padding-left:25px;padding-right:25px}.t-btnflex_md,.t-btn.t-btnflex_md,.t-submit.t-btnflex_md{padding-left:30px;padding-right:30px}.t-btnflex_lg,.t-btn.t-btnflex_lg,.t-submit.t-btnflex_lg{font-size:18px;padding-left:40px;padding-right:40px}.t-btnflex_xl,.t-btn.t-btnflex_xl,.t-submit.t-btnflex_xl{font-size:22px;padding-left:50px;padding-right:50px}.t-btnflex_xxl,.t-btn.t-btnflex_xxl,.t-submit.t-btnflex_xxl{font-size:26px;padding-left:60px;padding-right:60px}}@media screen and (max-width:480px){.t-rec_pt_0{padding-top:0}.t-rec_pb_0{padding-bottom:0}.t-btnflex_xs,.t-btn.t-btnflex_xs,.t-submit.t-btnflex_xs{--height:40px}.t-btnflex_sm,.t-btn.t-btnflex_sm,.t-submit.t-btnflex_sm{--height:50px}}@font-face{font-family:'PPMori';src:url('/assets/fonts/PPMori-Extralight.woff') format('woff');font-weight:300;font-style:normal}@font-face{font-family:'PPMori';src:url('/assets/fonts/PPMori-Regular_1.woff') format('woff');font-weight:400;font-style:normal}@font-face{font-family:'PPMori';src:url('/assets/fonts/PPMori-Semibold.woff') format('woff');font-weight:600;font-style:normal}.t360__progress{position:fixed;top:0;right:0;left:0;z-index:9999999999}.t360__bar{width:0;-webkit-transition:all ease-in-out 0.3s;-moz-transition:all ease-in-out 0.3s;-o-transition:all ease-in-out 0.3s;transition:all ease-in-out 0.3s;height:2px}.t360__barprogress{width:70%;-webkit-transition:all ease-in-out 0.3s;-moz-transition:all ease-in-out 0.3s;-o-transition:all ease-in-out 0.3s;transition:all ease-in-out 0.3s}.t360__barprogressfinished{width:100%}.t360__barprogresshidden{opacity:0;width:100%}.t396{-webkit-text-size-adjust:100%}.t396__iframe{z-index:10000;background-color:#fff;width:100vw;height:100vh;position:fixed;top:0;left:0;border:0}html body.t396__body_overflow_hidden{overflow:hidden!important}.t396__display_none{display:none}.t396__artboard{position:relative;width:100%;height:100vh;overflow:hidden}.t396__artboard .t396__artboard_scale{overflow:visible}.t396__artboard.t396__artboard_scale .t396__elem[data-elem-type='text'] .tn-atom{word-break:normal;-moz-osx-font-smoothing:grayscale}.t396__artboard_scale .t396__carrier,.t396__artboard_scale .t396__filter{transform-origin:top left}.tn-atom__scale-wrapper{width:inherit;height:inherit}.t396__elem .tn-atom__scale-wrapper .tn-atom{width:inherit;height:inherit!important;box-sizing:border-box}.t396__artboard.rendering .tn-elem{visibility:hidden}.t396__artboard.rendered .tn-elem{visibility:visible}.t396__carrier{position:absolute;left:0;top:0;z-index:0;width:100%;height:100vh;-moz-transform:unset}.t396__filter{position:absolute;left:0;top:0;z-index:1;width:100%;height:100vh}.t396__elem{position:absolute;box-sizing:border-box;display:table}.t396 .tn-atom{display:table-cell;vertical-align:middle;width:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%}@media screen and (max-width:959px){.t396_safari .t396__artboard_scale .tn-atom{-webkit-text-size-adjust:auto;-moz-text-size-adjust:auto;-ms-text-size-adjust:auto}}.t396 .tn-atom ul,.t396 .tn-atom ol{margin-bottom:0}.t396 a.tn-atom{text-decoration:none}.t396 .tn-atom__img{width:100%;display:block}.t396 .tn-atom__html{vertical-align:top}.t396 .tn-atom__pin{border-radius:1000px;border-style:solid}.t396 .tn-atom__pin_onclick{cursor:pointer}.t396 .tn-atom__tip,.t396__tooltip-portal .tn-atom__tip{position:absolute;box-sizing:border-box;width:300px;max-width:90vw;padding:15px;display:none}.t396 .tn-atom__pin:hover .tn-atom__tip{display:none}.t396 .tn-atom__tip-img,.t396__tooltip-portal .tn-atom__tip-img{width:100%;display:block;margin-bottom:10px}.t396 .tn-atom__tip[data-tip-pos='top']{bottom:100%;margin-bottom:15px;left:50%;transform:translateX(-50%)}.t396 .tn-atom__tip[data-tip-pos='bottom']{top:100%;margin-top:15px;left:50%;transform:translateX(-50%)}.t396 .tn-atom__tip[data-tip-pos='left']{right:100%;margin-right:15px;top:50%;transform:translateY(-50%)}.t396 .tn-atom__tip[data-tip-pos='right']{left:100%;margin-left:15px;top:50%;transform:translateY(-50%)}.t396__ui{position:absolute;top:16px;left:196px;background-color:#fa876b;color:#000!important;height:30px;line-height:30px;width:100px;z-index:1000;text-align:center;border-radius:3px;display:none;font-size:14px}.t396__artboard.t396__artboard-fixed-active{transform:none!important;opacity:1!important}.t396__artboard-fixed-no-bg,.t396__artboard-fixed-innactive,.t396__artboard-fixed-innactive .t396__group,.t396__artboard-fixed-innactive .t396__elem,.t396__artboard-fixed-no-bg.t396__artboard-fixed-innactive .t396__group,.t396__artboard-fixed-no-bg.t396__artboard-fixed-innactive .t396__elem{pointer-events:none}.t396__artboard-fixed-no-bg .t396__group,.t396__artboard-fixed-no-bg .t396__elem{pointer-events:auto}.t396__elem-flex{position:relative!important;left:initial!important;top:initial!important;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;-ms-flex-negative:0;flex-shrink:0}.t396__artboard-flex>.t396__elem:not(.tn-elem__absolute),.t396__artboard-flex>.t396__group:not(.tn-group__absolute){position:relative!important;left:initial!important;top:initial!important;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;-ms-flex-negative:0;flex-shrink:0}.t396 .tn-atom__button-content{display:flex;flex-direction:row;align-items:center;justify-content:center;flex:0 1 auto;min-width:0}.t396 .tn-atom__button-text{flex:1 1 0;text-overflow:ellipsis}.t396 .tn-atom__button-icon{flex:0 0 auto}.t396 .tn-atom__button-icon::before{position:absolute;top:0;left:0;display:block;width:100%;height:100%;background-image:var(--icon,none);background-position:center;background-size:contain;background-repeat:no-repeat;content:'';transition:opacity 0.2s cubic-bezier(.25,1,.5,1),visibility 0.2s cubic-bezier(.25,1,.5,1),color 0s ease-in-out}.t396 .tn-atom__button-icon::after{position:absolute;opacity:0;visibility:hidden;top:0;left:0;display:block;width:100%;height:100%;background-image:var(--icon-hover,none);background-position:center;background-size:contain;background-repeat:no-repeat;content:'';transition:opacity 0.2s cubic-bezier(.45,0,.55,1),visibility 0.2s cubic-bezier(.45,0,.55,1),color 0s ease-in-out}@media (hover){.t396 .tn-atom:hover .tn-atom__button-icon:not(.tn-atom__button-icon-no-hover)::after{opacity:1;visibility:visible}.t396 .tn-atom:hover .tn-atom__button-icon:not(.tn-atom__button-icon-no-hover)::before{opacity:0;visibility:hidden;transition-timing-function:cubic-bezier(.5,0,.75,0)}.t396 .tn-atom:hover .tn-atom__button-icon.hidden{display:block}.t396 .tn-atom:hover .tn-atom__button-icon.tn-atom__button-icon-no-default{display:block}}.t396 .tn-atom__button-icon-no-default{display:none;animation:button-icon-fade-in 0.3s ease forwards}@keyframes button-icon-fade-in{from{opacity:0}to{opacity:1}}.t396 .tn-atom__button-icon-arrow-default::before{-webkit-mask-image:var(--icon,none);mask-image:var(--icon,none);-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-color:currentcolor;background-image:none}.t396 .tn-atom__button-icon-arrow-hover::after{-webkit-mask-image:var(--icon-hover,none);mask-image:var(--icon-hover,none);-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-color:currentcolor;background-image:none}.t396 .tn-elem[data-elem-type='button']{display:block}.t396 .tn-elem[data-elem-type='button'] .tn-atom{display:flex;box-sizing:border-box;width:100%;height:100%;flex-direction:row;justify-content:center;align-items:center;overflow:hidden}.t396 .tn-elem[data-elem-type='button'] .tn-atom::after{content:'';display:block;position:absolute;width:100%;height:100%;left:0;top:0;pointer-events:none;opacity:0;z-index:-1}.t396 .tn-atom__button-border{position:absolute;inset:0;z-index:1;border-radius:inherit;transition-duration:inherit;transition-timing-function:inherit;pointer-events:none}.t396 .tn-atom__button-border::before,.t396 .tn-atom__button-border::after{-webkit-backface-visibility:hidden;position:absolute;inset:0;content:'';border-radius:inherit;z-index:1}.t396 .tn-atom__button-border::after{opacity:0;transition-property:opacity;transition-duration:inherit;transition-timing-function:inherit}@keyframes t-button-hover-animation{to{background-image:none;background-color:transparent}}.record[off='y'] .t450{display:none}.t450__static.t450__overlay{position:relative!important;height:100vh;z-index:1!important}.t450__static.t450{position:absolute!important;height:100vh;z-index:1!important}.t450__body_menushowed{height:100vh;min-height:100vh;overflow:hidden}.t450__list_item a,#allrecords .t450__list_item a{text-decoration:none;color:#000000}.t450{position:fixed;top:0;right:0;bottom:0;max-width:300px;width:100%;z-index:9999;overflow:hidden;-webkit-transition:transform ease-in-out 0.3s;-moz-transition:transform ease-in-out 0.3s;-o-transition:transform ease-in-out 0.3s;transition:transform ease-in-out 0.3s;-moz-transform:translate(100%,0);-ms-transform:translate(100%,0);-webkit-transform:translate(100%,0);-o-transform:translate(100%,0);transform:translate(100%,0);background-color:#111}.t450.t450__overflowed{overflow-y:scroll}.t450__close{width:40px;height:40px;background-color:#111;position:absolute;top:5px;right:5px;cursor:pointer;z-index:999999}.t450__static.t450__close{position:absolute;z-index:1}.t450__left{left:0;right:auto;-moz-transform:translate(-100%,0);-ms-transform:translate(-100%,0);-webkit-transform:translate(-100%,0);-o-transform:translate(-100%,0);transform:translate(-100%,0)}.t450__menu_show.t450{-moz-transform:translate(0,0);-ms-transform:translate(0,0);-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);z-index:999999}.t450__overlay{display:none;position:fixed;inset:0;opacity:0;z-index:-1;-webkit-transition:opacity ease-in-out 0.3s;-moz-transition:opacity ease-in-out 0.3s;-o-transition:opacity ease-in-out 0.3s;transition:opacity ease-in-out 0.3s}.t450__menu_show.t450__overlay{display:block;z-index:99999;opacity:1}.t450__overlay_bg{position:absolute;inset:0;background-color:#000;opacity:.6}.t450__container{box-sizing:border-box;padding:48px 40px 38px;position:relative;height:auto;min-height:100%;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.t450__rightside{position:relative;margin-top:auto}.t450__logowrapper{margin-bottom:25px}.t450__logowrapper a{display:block}.t450__logo{color:#fff}.t450__logoimg{display:block;width:100%;max-width:120px}.t-align_center .t450__logoimg{margin:0 auto}.t-align_right .t450__logoimg{margin-left:auto}.t450__list{list-style-type:none;margin:0;padding:0!important}.t450__list_item{clear:both;font-family:'PPMori',Arial,sans-serif;font-size:16px;display:block;margin:0;color:#000000}.t450__list_item a{margin-bottom:15px;display:inline-block}.t450__list_item a.t-menusub__link-item{margin-bottom:0}.t450__list_item:last-child a:not(.t978__menu-link){margin-bottom:0!important;display:inline-block}.t450__list_item .t-active{opacity:.7}.t450 .t-sociallinks a,.t450__right_social_links{margin-top:24px}#allrecords .t450 ul.t-sociallinks__wrapper{margin-bottom:0;padding-left:0;list-style:none}.t450 .t-sociallinks__item,.t450__right_social_links_item{display:inline-block;vertical-align:top;margin-right:4px;margin-top:2px}.t450 .t-sociallinks__item:last-child,.t450__right_social_links_item:last-child{margin-right:0}.t450__right_descr{font-family:'PPMori',Arial,sans-serif;font-size:13px;color:#fff;margin-top:25px}.t450__right_share_buttons{margin-top:25px}.t450__right_buttons{margin-top:15px}.t450__right_buttons_but{display:inline-block;margin-top:10px}.t450__container.t-align_left .t450__right_buttons_but_two_left{margin-right:5px}.t450__container.t-align_right .t450__right_buttons_but_two_left{margin-right:0}.t450__container.t-align_left .t450__right_buttons_but_two_right{margin-left:0}.t450__container.t-align_right .t450__right_buttons_but_two_right{margin-left:5px}.t450__container.t-align_center .t450__right_buttons_but_two_left{margin-right:2.5px}.t450__container.t-align_center .t450__right_buttons_but_two_right{margin-left:2.5px}.t450__right_buttons_but .t-btnflex_md{padding-left:40px;padding-right:40px}.t450__right_buttons_but .t-btnflex_sm{padding-left:24px;padding-right:24px}.t450__right_langs{margin-top:25px}.t450__right_langs_lang{display:inline-block;margin-right:2px}.t450__close_icon{width:24px;height:20px;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);z-index:999;margin-top:11px;margin-left:8px;color:#fff}.t450__close-button{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:0;border:none}.t450__close-button .t450__close_icon{margin:0}.t450__close_icon span{display:block;position:absolute;width:100%;opacity:1;left:0;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);height:2px;background-color:currentcolor}.t450__close_icon span:nth-child(1){top:0}.t450__close_icon span:nth-child(2),.t450__close_icon span:nth-child(3){top:8px}.t450__close_icon span:nth-child(4){top:16px}.t450_opened .t450__close_icon span:nth-child(1){top:8px;width:0%;left:50%}.t450_opened .t450__close_icon span:nth-child(2){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.t450_opened .t450__close_icon span:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.t450_opened .t450__close_icon span:nth-child(4){top:8px;width:0%;left:50%}@media (min-width:321px){.t-record_scaled .t450__static.t450__overlay{height:calc(100vh / var(--t-zoom,1))}.t-record_scaled .t450__static.t450{height:calc(100vh / var(--t-zoom,1))}}@media screen and (max-width:980px){.t450__container .t-menusub__menu{margin-bottom:10px}.t450__container .t-menusub__content:not(.t978__submenu-content){padding:0 0 10px}.t450__container.t-align_center .t-menusub__content{text-align:center}.t450__container.t-align_left .t-menusub__content{text-align:left}.t450__container.t-align_right .t-menusub__content{text-align:right}.t450__list_item a.t-menusub__link-item{margin-bottom:0}.t450__list_item:last-child a+.t-menusub .t-menusub__content{margin-top:15px}}@media screen and (max-width:640px){.t450__container{padding:42px 25px 25px}}@media screen and (max-width:560px){.t-body_scrollable-fix-for-android.t450__body_menushowed{overflow:hidden!important}}.t450__menu__content{position:fixed;right:15px;z-index:99998;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:end;-ms-flex-pack:end;justify-content:end;width:auto;-webkit-transition:opacity ease-in-out 0.2s;-moz-transition:opacity ease-in-out 0.2s;-o-transition:opacity ease-in-out 0.2s;transition:opacity ease-in-out 0.2s}.t450__burger_container{position:relative;width:58px;height:58px;cursor:pointer;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:opacity ease-in-out 0.2s;-moz-transition:opacity ease-in-out 0.2s;-o-transition:opacity ease-in-out 0.2s;transition:opacity ease-in-out 0.2s}.t450__menu__content.t450__beforeready{opacity:0;z-index:-1}.t450__burger_container.t450__burger-nobg{width:auto!important;min-width:30px;height:auto!important;min-height:30px}.t450__menu__content.t450__static{position:relative!important;top:auto!important;right:auto!important;left:auto!important;margin-left:auto!important;z-index:1}.t450__burger_container.t450__small{width:48px;height:48px}.t450__burger_container.t450__big{width:78px;height:78px}.t450__burger_bg{position:absolute;inset:0;background-color:#111}.t450__burger_cirqle{border-radius:100px}.t450__burger_container .t-menuburger__big{width:38px;height:26px}.t450__burger_container .t-menuburger__big span{height:4px}.t450__burger_container .t-menuburger__big span:nth-child(2),.t450__burger_container .t-menuburger__big span:nth-child(3){top:11px}.t450__burger_container .t-menuburger__big span:nth-child(4){top:22px}.t450 .ya-share2__list{margin-bottom:0}#allrecords ul.ya-share2__list{padding-left:0}.t450 .ya-share2__container_size_m .ya-share2__counter{line-height:28px}.t450__black-white .ya-share2__badge{background-color:#111!important}.t450__transp-white .ya-share2__badge{background-color:transparent!important}.t450__transp-white .ya-share2__container_size_m .ya-share2__counter::before{display:none}.t450__transp-white .ya-share2__container_size_m .ya-share2__counter{padding-left:0!important;margin-top:2px}.t450__white-black .ya-share2__badge{background-color:#fff!important}.t450__white-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjIyIiB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==')}.t450__white-black .ya-share2__container_size_m .ya-share2__counter{color:#222}.t450__white-black .ya-share2__counter::before{background-color:#222}.t450__white-black .ya-share2__container_size_m .ya-share2__item_service_vkontakte .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7145 16.9838C7.24792 16.9838 4.12992 13.2361 4 7H6.73829C6.82823 11.5771 8.84691 13.5159 10.4459 13.9157V7H13.0244V10.9475C14.6034 10.7776 16.2622 8.97876 16.8218 7H19.4003C18.9706 9.43848 17.1717 11.2374 15.8925 11.9769C17.1717 12.5765 19.2205 14.1455 20 16.9838H17.1617C16.5521 15.085 15.0332 13.6159 13.0244 13.416V16.9838H12.7145Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t450__white-black .ya-share2__container_size_m .ya-share2__item_service_twitter .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7368 11.5046L17.5763 6H16.4295L12.2273 10.7796L8.87103 6H5L10.0753 13.2276L5 19H6.14688L10.5845 13.9526L14.129 19H18L12.7368 11.5046ZM11.1659 13.2912L10.6517 12.5715L6.56012 6.8448H8.32166L11.6236 11.4665L12.1379 12.1862L16.43 18.1936H14.6685L11.1659 13.2912Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t450__white-black .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNTBweCIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1MCAxNTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjx0aXRsZT5TaGFwZTwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgaWQ9IldlbGNvbWUiPjxwYXRoIGlkPSJTaGFwZSIgZmlsbD0iIzIyMjIyMiIgZD0iTTc0Ljk5Nyw0Ni4wMTFjLTQuOTAzLDAuMDA2LTguODc1LDMuOTc5LTguODgzLDguODgzYzAsNC44OTQsMy45ODUsOC44NzksOC44ODMsOC44NzljNC45MDMtMC4wMDgsOC44NzUtMy45NzksOC44OC04Ljg3OUM4My44NzksNDkuOTg5LDc5LjksNDYuMDE3LDc0Ljk5Nyw0Ni4wMTFMNzQuOTk3LDQ2LjAxMXogTTc0Ljk5Nyw3Ni4zMzhjLTExLjgzOC0wLjAxLTIxLjQzNy05LjYwNi0yMS40NDgtMjEuNDQ0YzAuMDA4LTExLjg0Niw5LjYwNC0yMS40NDIsMjEuNDQ4LTIxLjQ1NWMxMS44NDUsMC4wMSwyMS40NTEsOS42MDksMjEuNDU2LDIxLjQ1NUM5Ni40MzgsNjYuNzM0LDg2LjgzOCw3Ni4zMyw3NC45OTcsNzYuMzM4TDc0Ljk5Nyw3Ni4zMzh6IE02Ni4zMiw5My44MzZjLTQuNDEyLTEuMDAyLTguNjI0LTIuNzQ4LTEyLjQ1NS01LjE1NGMtMi45MzktMS44NS0zLjgyMy01LjczNC0xLjk3My04LjY2OGMxLjg0OC0yLjk0MSw1LjcyOC0zLjgyMiw4LjY2Ni0xLjk3NWM4LjgzNCw1LjUyMywyMC4wNTIsNS41MjMsMjguODg2LDBjMS45MDEtMS4xOTUsNC4yOTctMS4yODcsNi4yODQtMC4yNDJjMS45ODQsMS4wNDksMy4yNiwzLjA3OCwzLjM0Miw1LjMyNGMwLjA4NywyLjI0LTEuMDI3LDQuMzYzLTIuOTMsNS41NjFjLTMuODM0LDIuNDA2LTguMDQ5LDQuMTQ4LTEyLjQ1Nyw1LjE1NGwxMS45OTQsMTJjMi40NTEsMi40NTcsMi40NDYsNi40MzYtMC4wMTEsOC44OTNjLTIuNDU2LDIuNDQ1LTYuNDM0LDIuNDQ1LTguODg2LTAuMDEybC0xMS43NzktMTEuNzg5bC0xMS43ODUsMTEuNzg5Yy0yLjQ1NSwyLjQ1Ny02LjQzNiwyLjQ1Ny04Ljg4OSwwYy0yLjQ1NC0yLjQ1NS0yLjQ1NC02LjQzNCwwLTguODkxTDY2LjMyLDkzLjgzNkw2Ni4zMiw5My44MzZ6Ii8+PC9nPjwvc3ZnPg==');background-size:28px 28px;background-position:-2px}.t450__transp-black .ya-share2__badge{background-color:transparent!important}.t450__transp-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjIyIiB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==')}.t450__transp-black .ya-share2__container_size_m .ya-share2__counter{color:#222;padding-left:0!important;margin-top:2px}.t450__transp-black .ya-share2__counter::before{display:none}.t450__transp-black .ya-share2__container_size_m .ya-share2__item_service_vkontakte .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7145 16.9838C7.24792 16.9838 4.12992 13.2361 4 7H6.73829C6.82823 11.5771 8.84691 13.5159 10.4459 13.9157V7H13.0244V10.9475C14.6034 10.7776 16.2622 8.97876 16.8218 7H19.4003C18.9706 9.43848 17.1717 11.2374 15.8925 11.9769C17.1717 12.5765 19.2205 14.1455 20 16.9838H17.1617C16.5521 15.085 15.0332 13.6159 13.0244 13.416V16.9838H12.7145Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t450__transp-black .ya-share2__container_size_m .ya-share2__item_service_twitter .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7368 11.5046L17.5763 6H16.4295L12.2273 10.7796L8.87103 6H5L10.0753 13.2276L5 19H6.14688L10.5845 13.9526L14.129 19H18L12.7368 11.5046ZM11.1659 13.2912L10.6517 12.5715L6.56012 6.8448H8.32166L11.6236 11.4665L12.1379 12.1862L16.43 18.1936H14.6685L11.1659 13.2912Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t450__transp-black .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNTBweCIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1MCAxNTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjx0aXRsZT5TaGFwZTwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgaWQ9IldlbGNvbWUiPjxwYXRoIGlkPSJTaGFwZSIgZmlsbD0iIzIyMjIyMiIgZD0iTTc0Ljk5Nyw0Ni4wMTFjLTQuOTAzLDAuMDA2LTguODc1LDMuOTc5LTguODgzLDguODgzYzAsNC44OTQsMy45ODUsOC44NzksOC44ODMsOC44NzljNC45MDMtMC4wMDgsOC44NzUtMy45NzksOC44OC04Ljg3OUM4My44NzksNDkuOTg5LDc5LjksNDYuMDE3LDc0Ljk5Nyw0Ni4wMTFMNzQuOTk3LDQ2LjAxMXogTTc0Ljk5Nyw3Ni4zMzhjLTExLjgzOC0wLjAxLTIxLjQzNy05LjYwNi0yMS40NDgtMjEuNDQ0YzAuMDA4LTExLjg0Niw5LjYwNC0yMS40NDIsMjEuNDQ4LTIxLjQ1NWMxMS44NDUsMC4wMSwyMS40NTEsOS42MDksMjEuNDU2LDIxLjQ1NUM5Ni40MzgsNjYuNzM0LDg2LjgzOCw3Ni4zMyw3NC45OTcsNzYuMzM4TDc0Ljk5Nyw3Ni4zMzh6IE02Ni4zMiw5My44MzZjLTQuNDEyLTEuMDAyLTguNjI0LTIuNzQ4LTEyLjQ1NS01LjE1NGMtMi45MzktMS44NS0zLjgyMy01LjczNC0xLjk3My04LjY2OGMxLjg0OC0yLjk0MSw1LjcyOC0zLjgyMiw4LjY2Ni0xLjk3NWM4LjgzNCw1LjUyMywyMC4wNTIsNS41MjMsMjguODg2LDBjMS45MDEtMS4xOTUsNC4yOTctMS4yODcsNi4yODQtMC4yNDJjMS45ODQsMS4wNDksMy4yNiwzLjA3OCwzLjM0Miw1LjMyNGMwLjA4NywyLjI0LTEuMDI3LDQuMzYzLTIuOTMsNS41NjFjLTMuODM0LDIuNDA2LTguMDQ5LDQuMTQ4LTEyLjQ1Nyw1LjE1NGwxMS45OTQsMTJjMi40NTEsMi40NTcsMi40NDYsNi40MzYtMC4wMTEsOC44OTNjLTIuNDU2LDIuNDQ1LTYuNDM0LDIuNDQ1LTguODg2LTAuMDEybC0xMS43NzktMTEuNzg5bC0xMS43ODUsMTEuNzg5Yy0yLjQ1NSwyLjQ1Ny02LjQzNiwyLjQ1Ny04Ljg4OSwwYy0yLjQ1NC0yLjQ1NS0yLjQ1NC02LjQzNCwwLTguODkxTDY2LjMyLDkzLjgzNkw2Ni4zMiw5My44MzZ6Ii8+PC9nPjwvc3ZnPg==');background-size:28px 28px;background-position:-2px}.t123__centeredContainer{text-align:center}.t1093 .t-popup{padding:0;z-index:10000001;background-color:transparent;transition:none}.t1093 .t-popup.t-popup-disabled-bg,.t1093 .t-popup.t-popup_hover-trigger{pointer-events:none}.t1093 .t-popup.t-popup-disabled-bg .t-popup__close,.t1093 .t-popup.t-popup_hover-trigger .t-popup__close,.t1093 .t-popup.t-popup_show .t396__artboard_pointer-events-auto{pointer-events:auto}.t1093 .t-popup-scrollable-artboard .t396__artboard{pointer-events:auto}.t1093 .t-popup.t-popup-transition+.t-popup__bg{transition-property:opacity;transition-duration:0.3s}.t1093 .t-popup__bg{position:fixed;left:0;top:0;width:100%;height:100%;z-index:99998;pointer-events:none;opacity:0;display:none}.t1093 .t-popup__bg.t-popup__bg-active{display:block;opacity:1}.t1093 .t-popup__container{left:0;right:0;background-color:transparent;pointer-events:none}.t1093 .t-popup.t-popup_show .r:not([data-record-type='396'],[data-record-type='121'],[data-parenttplid='396'],[data-parenttplid='121']),.t1093 .t-popup.t-popup_show .tn-elem,.t1093 .t-popup.t-popup_show .tn-group{pointer-events:auto}.t1093 .t-popup__container.t-valign_top{transform:none;top:0}.t1093 .t-popup__container.t-popup__container-static.t-valign_top,.t1093 .t-popup__container.t-popup__container-static.t-valign_bottom{margin:0 auto}.t1093 .t-popup__container.t-valign_bottom{transform:none;top:auto;bottom:0}.t1093 .t-popup-transition:not(.t-popup-anim-fadein,.t-popup-fadeout){overflow:hidden;overflow-y:auto}.t1093 .t-popup-transition{opacity:1}.t1093 .t-popup-transition:not(.t-popup_show){pointer-events:none}.t1093 .t-popup-transition.t-popup-safari.t-popup-anim-appearfromright .t-popup__container,.t1093 .t-popup-transition.t-popup-safari.t-popup-anim-appearfrombottom .t-popup__container{opacity:0;transition-property:transform,opacity}.t1093 .t-popup-transition.t-popup-safari.t-popup-anim-appearfromright.t-popup_show .t-popup__container,.t1093 .t-popup-transition.t-popup-safari.t-popup-anim-appearfrombottom.t-popup_show .t-popup__container{opacity:1}.t1093 .t-popup-transition:not(.t-popup-anim-fadein) .t-popup__container{transition-property:transform;transition-duration:0.3s}.t1093 .t-popup-anim-fadein .t-popup__container,.t1093 .t-popup-fadeout:not(.t-popup_show) .t-popup__container{opacity:0;transform:none;transition-property:opacity;transition-duration:0.3s}.t1093 .t-popup-anim-fadein .t-valign_middle.t-popup__container:not(.t-popup__container-static){transform:translateY(-50%)}.t1093 .t-popup-anim-appearfromtop .t-popup__container{transform:translateY(-100vh)}.t1093 .t-popup-anim-appearfrombottom .t-popup__container{transform:translateY(100vh)}.t1093 .t-popup-anim-appearfromtop .t-popup__container.t-popup__container-static{transform:translateY(-100%)}.t1093 .t-popup-anim-appearfrombottom .t-popup__container.t-popup__container-static{transform:translateY(100%)}.t1093 .t-popup-anim-appearfromright .t-popup__container{transform:translateX(100%)}.t1093 .t-popup-anim-appearfromleft .t-popup__container{transform:translateX(-100%)}.t1093 .t-popup-anim-appearfromright .t-popup__container.t-valign_middle:not(.t-popup__container-static){transform:translate(100%,-50%)}.t1093 .t-popup-anim-appearfromleft .t-popup__container.t-valign_middle:not(.t-popup__container-static){transform:translate(-100%,-50%)}.t1093 .t-popup-transition.t-popup_show:not(.t-popup-anim-fadein) .t-popup__container,.t1093 .t-popup-transition.t-popup-fadeout:not(.t-popup-anim-fadein) .t-popup__container{transform:translate(0,0)}.t1093 .t-popup-transition.t-popup_show:not(.t-popup-anim-fadein) .t-popup__container.t-valign_middle:not(.t-popup__container-static),.t1093 .t-popup-transition.t-popup-fadeout:not(.t-popup-anim-fadein) .t-popup__container.t-valign_middle:not(.t-popup__container-static){transform:translate(0,-50%)}.t1093 .t-popup-transition.t-popup_show.t-popup-anim-fadein .t-popup__container{opacity:1}.t1093 .t-popup-transition.t-popup-fadeout .t-popup__container{transition-property:opacity}.t1093 .js-send-form-success .t-form__inputsbox{display:none}.t390__wrapper{padding:40px 45px}.t390__img{display:block;width:100%}.t390__btn-wrapper{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap}.t390__btn-wrapper,.t390__social{margin-top:16px}.t390__uptitle{margin-bottom:12px}.t390__descr{margin-top:17px}@media screen and (max-width:960px){.t390__wrapper{padding:30px}}@media screen and (max-width:640px){.t390__wrapper{padding:20px}.t390__btn-wrapper,.t390__social{margin-top:16px}.t390__uptitle{margin-bottom:6px}.t390__descr{margin-top:8px}}.t390 .ya-share2__container_size_m .ya-share2__icon{width:26px;height:26px}.t390 .ya-share2__list{margin-bottom:0}#allrecords .t390__social .ya-share2__link:focus-visible{outline-offset:1px}.t390__circle-lg .ya-share2__container_size_m .ya-share2__icon{width:34px!important;height:34px!important;background-size:34px 34px!important}.t390__circle-lg .ya-share2__container_size_m .ya-share2__counter{font-size:12px;line-height:1.3;padding:10px 9px 0}.t390__circle-lg .ya-share2__container_size_m .ya-share2__counter::before{margin-left:-9px}.t390__circle-xl .ya-share2__container_size_m .ya-share2__icon{width:42px!important;height:42px!important;background-size:42px 42px!important}.t390__circle-xl .ya-share2__container_size_m .ya-share2__counter{font-size:14px;line-height:1.3;padding:13px 11px 0}.t390__circle-xl .ya-share2__container_size_m .ya-share2__counter::before{margin-left:-11px}.t390__circle-xxl .ya-share2__container_size_m .ya-share2__icon{width:50px!important;height:50px!important;background-size:50px 50px!important}.t390__circle-xxl .ya-share2__container_size_m .ya-share2__counter{font-size:16px;line-height:1.3;padding:17px 14px 0}.t390__circle-xxl .ya-share2__container_size_m .ya-share2__counter::before{margin-left:-14px}.t390__black-white .ya-share2__badge{background-color:#111!important}.t390__transp-white .ya-share2__badge{background-color:transparent!important}.t390__transp-white .ya-share2__container_size_m .ya-share2__counter::before{display:none}.t390__transp-white .ya-share2__container_size_m .ya-share2__counter{padding-left:0!important;margin-top:1px}.t390__circle-lg.t390__transp-white .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:30px}.t390__circle-xl.t390__transp-white .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:35px;background-size:40px 42px!important}.t390__circle-xxl.t390__transp-white .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:40px;background-size:44px 50px!important}.t390__circle-xl.t390__transp-white .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{width:35px;background-size:40px 42px!important}.t390__circle-xxl.t390__transp-white .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{width:40px;background-size:44px 50px!important}.t390__white-black .ya-share2__badge{background-color:#fff!important}.t390__white-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjIyIiB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==')}.t390__white-black .ya-share2__container_size_m .ya-share2__counter{color:#222}.t390__white-black .ya-share2__counter::before{background-color:#222}.t390__white-black .ya-share2__container_size_m .ya-share2__item_service_vkontakte .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7145 16.9838C7.24792 16.9838 4.12992 13.2361 4 7H6.73829C6.82823 11.5771 8.84691 13.5159 10.4459 13.9157V7H13.0244V10.9475C14.6034 10.7776 16.2622 8.97876 16.8218 7H19.4003C18.9706 9.43848 17.1717 11.2374 15.8925 11.9769C17.1717 12.5765 19.2205 14.1455 20 16.9838H17.1617C16.5521 15.085 15.0332 13.6159 13.0244 13.416V16.9838H12.7145Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t390__white-black .ya-share2__container_size_m .ya-share2__item_service_twitter .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7368 11.5046L17.5763 6H16.4295L12.2273 10.7796L8.87103 6H5L10.0753 13.2276L5 19H6.14688L10.5845 13.9526L14.129 19H18L12.7368 11.5046ZM11.1659 13.2912L10.6517 12.5715L6.56012 6.8448H8.32166L11.6236 11.4665L12.1379 12.1862L16.43 18.1936H14.6685L11.1659 13.2912Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t390__white-black .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNTBweCIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1MCAxNTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjx0aXRsZT5TaGFwZTwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgaWQ9IldlbGNvbWUiPjxwYXRoIGlkPSJTaGFwZSIgZmlsbD0iIzIyMjIyMiIgZD0iTTc0Ljk5Nyw0Ni4wMTFjLTQuOTAzLDAuMDA2LTguODc1LDMuOTc5LTguODgzLDguODgzYzAsNC44OTQsMy45ODUsOC44NzksOC44ODMsOC44NzljNC45MDMtMC4wMDgsOC44NzUtMy45NzksOC44OC04Ljg3OUM4My44NzksNDkuOTg5LDc5LjksNDYuMDE3LDc0Ljk5Nyw0Ni4wMTFMNzQuOTk3LDQ2LjAxMXogTTc0Ljk5Nyw3Ni4zMzhjLTExLjgzOC0wLjAxLTIxLjQzNy05LjYwNi0yMS40NDgtMjEuNDQ0YzAuMDA4LTExLjg0Niw5LjYwNC0yMS40NDIsMjEuNDQ4LTIxLjQ1NWMxMS44NDUsMC4wMSwyMS40NTEsOS42MDksMjEuNDU2LDIxLjQ1NUM5Ni40MzgsNjYuNzM0LDg2LjgzOCw3Ni4zMyw3NC45OTcsNzYuMzM4TDc0Ljk5Nyw3Ni4zMzh6IE02Ni4zMiw5My44MzZjLTQuNDEyLTEuMDAyLTguNjI0LTIuNzQ4LTEyLjQ1NS01LjE1NGMtMi45MzktMS44NS0zLjgyMy01LjczNC0xLjk3My04LjY2OGMxLjg0OC0yLjk0MSw1LjcyOC0zLjgyMiw4LjY2Ni0xLjk3NWM4LjgzNCw1LjUyMywyMC4wNTIsNS41MjMsMjguODg2LDBjMS45MDEtMS4xOTUsNC4yOTctMS4yODcsNi4yODQtMC4yNDJjMS45ODQsMS4wNDksMy4yNiwzLjA3OCwzLjM0Miw1LjMyNGMwLjA4NywyLjI0LTEuMDI3LDQuMzYzLTIuOTMsNS41NjFjLTMuODM0LDIuNDA2LTguMDQ5LDQuMTQ4LTEyLjQ1Nyw1LjE1NGwxMS45OTQsMTJjMi40NTEsMi40NTcsMi40NDYsNi40MzYtMC4wMTEsOC44OTNjLTIuNDU2LDIuNDQ1LTYuNDM0LDIuNDQ1LTguODg2LTAuMDEybC0xMS43NzktMTEuNzg5bC0xMS43ODUsMTEuNzg5Yy0yLjQ1NSwyLjQ1Ny02LjQzNiwyLjQ1Ny04Ljg4OSwwYy0yLjQ1NC0yLjQ1NS0yLjQ1NC02LjQzNCwwLTguODkxTDY2LjMyLDkzLjgzNkw2Ni4zMiw5My44MzZ6Ii8+PC9nPjwvc3ZnPg==');background-size:24px 24px}.t390__transp-black .ya-share2__badge{background-color:transparent!important}.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjIyIiB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==')}.t390__circle-lg.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:30px}.t390__circle-xl.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:35px;background-size:40px 42px}.t390__circle-xxl.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_facebook .ya-share2__icon{width:40px;background-size:44px 50px}.t390__transp-black .ya-share2__container_size_m .ya-share2__counter{color:#222;padding-left:0!important;margin-top:1px}.t390__transp-black .ya-share2__counter::before{display:none}.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_vkontakte .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7145 16.9838C7.24792 16.9838 4.12992 13.2361 4 7H6.73829C6.82823 11.5771 8.84691 13.5159 10.4459 13.9157V7H13.0244V10.9475C14.6034 10.7776 16.2622 8.97876 16.8218 7H19.4003C18.9706 9.43848 17.1717 11.2374 15.8925 11.9769C17.1717 12.5765 19.2205 14.1455 20 16.9838H17.1617C16.5521 15.085 15.0332 13.6159 13.0244 13.416V16.9838H12.7145Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_twitter .ya-share2__icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.7368 11.5046L17.5763 6H16.4295L12.2273 10.7796L8.87103 6H5L10.0753 13.2276L5 19H6.14688L10.5845 13.9526L14.129 19H18L12.7368 11.5046ZM11.1659 13.2912L10.6517 12.5715L6.56012 6.8448H8.32166L11.6236 11.4665L12.1379 12.1862L16.43 18.1936H14.6685L11.1659 13.2912Z' fill='black'/%3E%3C/svg%3E");background-size:24px;background-position:center}.t390__transp-black .ya-share2__container_size_m .ya-share2__item_service_odnoklassniki .ya-share2__icon{background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNTBweCIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE1MCAxNTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjx0aXRsZT5TaGFwZTwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgaWQ9IldlbGNvbWUiPjxwYXRoIGlkPSJTaGFwZSIgZmlsbD0iIzIyMjIyMiIgZD0iTTc0Ljk5Nyw0Ni4wMTFjLTQuOTAzLDAuMDA2LTguODc1LDMuOTc5LTguODgzLDguODgzYzAsNC44OTQsMy45ODUsOC44NzksOC44ODMsOC44NzljNC45MDMtMC4wMDgsOC44NzUtMy45NzksOC44OC04Ljg3OUM4My44NzksNDkuOTg5LDc5LjksNDYuMDE3LDc0Ljk5Nyw0Ni4wMTFMNzQuOTk3LDQ2LjAxMXogTTc0Ljk5Nyw3Ni4zMzhjLTExLjgzOC0wLjAxLTIxLjQzNy05LjYwNi0yMS40NDgtMjEuNDQ0YzAuMDA4LTExLjg0Niw5LjYwNC0yMS40NDIsMjEuNDQ4LTIxLjQ1NWMxMS44NDUsMC4wMSwyMS40NTEsOS42MDksMjEuNDU2LDIxLjQ1NUM5Ni40MzgsNjYuNzM0LDg2LjgzOCw3Ni4zMyw3NC45OTcsNzYuMzM4TDc0Ljk5Nyw3Ni4zMzh6IE02Ni4zMiw5My44MzZjLTQuNDEyLTEuMDAyLTguNjI0LTIuNzQ4LTEyLjQ1NS01LjE1NGMtMi45MzktMS44NS0zLjgyMy01LjczNC0xLjk3My04LjY2OGMxLjg0OC0yLjk0MSw1LjcyOC0zLjgyMiw4LjY2Ni0xLjk3NWM4LjgzNCw1LjUyMywyMC4wNTIsNS41MjMsMjguODg2LDBjMS45MDEtMS4xOTUsNC4yOTctMS4yODcsNi4yODQtMC4yNDJjMS45ODQsMS4wNDksMy4yNiwzLjA3OCwzLjM0Miw1LjMyNGMwLjA4NywyLjI0LTEuMDI3LDQuMzYzLTIuOTMsNS41NjFjLTMuODM0LDIuNDA2LTguMDQ5LDQuMTQ4LTEyLjQ1Nyw1LjE1NGwxMS45OTQsMTJjMi40NTEsMi40NTcsMi40NDYsNi40MzYtMC4wMTEsOC44OTNjLTIuNDU2LDIuNDQ1LTYuNDM0LDIuNDQ1LTguODg2LTAuMDEybC0xMS43NzktMTEuNzg5bC0xMS43ODUsMTEuNzg5Yy0yLjQ1NSwyLjQ1Ny02LjQzNiwyLjQ1Ny04Ljg4OSwwYy0yLjQ1NC0yLjQ1NS0yLjQ1NC02LjQzNCwwLTguODkxTDY2LjMyLDkzLjgzNkw2Ni4zMiw5My44MzZ6Ii8+PC9nPjwvc3ZnPg==');background-size:24px 24px}.t270__error-msg{text-align:center;display:none}.t270__error-msg-text{display:inline-block;margin:0 20px 35px;padding:15px;color:#f00;border:1px solid #f00;font-size:14px;font-family:tfutura,Arial,sans-serif}
#allrecords .link a{
    display: inline;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom !important;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .3s;
    padding-bottom: 3px;
}

#allrecords .link a:hover, #allrecords .link a:focus {
    background-size: 100% 1px;
}

#allrecords ::selection {
    background-color: #195CFF;
    color: #ffffff;
}
.anim-num {
  --counter-duration: 2200ms;
  --counter-delay: 0ms;
}
