/* =========================================================
   Mirtels child template - global.css
   Base global styles for Joomla 5 + Cassiopeia child
   ========================================================= */


/* -----------------------------
   1) Design tokens
------------------------------ */
:root {
    /* Colors (approved palette) */
    --m-bg-page: #ffffff !important;
    --m-bg-header: #0b0a0a !important;
    --m-bg-footer-top: #ececec !important;
    --m-bg-footer-bottom: #303030 !important;

    --m-text: #1b1b1d !important;
    --m-text-muted: #5a5a5f !important;
    --m-text-on-dark: #f2f2f2 !important;

    --m-link: #bf7d02 !important;
    --m-link-hover: #e29702 !important;
    --m-accent: #e29702 !important;
    --m-accent-strong: #bf7d02 !important;

    --m-border: #dddddf !important;
    --m-border-soft: #ececef !important;

    --m-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06) !important;
    --m-shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08) !important;

    --card-spacer-y: 24px !important;
    --card-spacer-x: 20px !important;

    --border-radius: 8px !important;
    --m-radius: 8px !important;

    --m-container: 1200px;
    --m-container-narrow: 1000px;
    --m-gutter: 16px;
    --m-section-y: clamp(24px, 3vw, 40px);

    --m-font-sans:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Noto Sans",
        "Liberation Sans",
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji";

    --m-font-size-base: 14px !important;
    --m-line-height: 1.55 !important;
    --m-transition: 0.18s ease !important;
}


/* -----------------------------
   2) Reset / base
------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--m-bg-page) !important;
    color: var(--m-text) !important;
    font-family: var(--m-font-sans) !important;
    font-size: var(--m-font-size-base) !important;
    line-height: var(--m-line-height) !important;
    overflow-wrap: break-word;
}

@supports (display: grid) {
    .site-grid {
        grid-template-columns:
            [full-start] minmax(0, 1fr)
            [main-start] repeat(4, minmax(0, 24rem))
            [main-end] minmax(0, 1fr)
            [full-end] !important;
    }
}

.grid-child {
    max-width: 1595px !important;
}

/* =========================================================
   MIRTELS UNIVERSAL GRID SYSTEM
   ========================================================= */


/* ---------------------------------------------------------
   Base grid container
   --------------------------------------------------------- */

.mt-grid{
  display:grid;
  gap:20px;
}


/* =========================================================
   EQUAL COLUMNS
   ========================================================= */

.mt-grid-2{ grid-template-columns:repeat(2,1fr); }
.mt-grid-3{ grid-template-columns:repeat(3,1fr); }
.mt-grid-4{ grid-template-columns:repeat(4,1fr); }
.mt-grid-5{ grid-template-columns:repeat(5,1fr); }
.mt-grid-6{ grid-template-columns:repeat(6,1fr); }
.mt-grid-7{ grid-template-columns:repeat(7,1fr); }


/* =========================================================
   CUSTOM COLUMN PROPORTIONS
   Use inline CSS variable:
   class="mt-grid"
   style="--mt-cols:3fr 1fr 1fr 1fr;"

   Позволяет задавать любые пропорции колонок
   прямо в HTML через CSS-переменную --mt-cols

   Примеры:

   2 колонки:
   style="--mt-cols:2fr 1fr;"

   3 колонки:
   style="--mt-cols:2fr 1fr 1fr;"

   4 колонки:
   style="--mt-cols:3fr 1fr 1fr 1fr;"

   Фиксированная + резиновая колонка:
   style="--mt-cols:300px 1fr;"

   Использование:
   class="mt-grid"
   style="--mt-cols:3fr 1fr 1fr 1fr;"
   ========================================================= */

.mt-grid[style*="--mt-cols"]{
  grid-template-columns:var(--mt-cols);
}


/* =========================================================
   GAP MODIFIERS
   ========================================================= */

.mt-gap-10{ gap:10px; }
.mt-gap-20{ gap:20px; }
.mt-gap-30{ gap:30px; }
.mt-gap-40{ gap:40px; }


/* =========================================================
   ALIGNMENT MODIFIERS
   ========================================================= */

.mt-align-center{ align-items:center; }
.mt-align-start{ align-items:start; }
.mt-align-end{ align-items:end; }


/* =========================================================
   MEDIA INSIDE GRID
   ========================================================= */

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

.mt-grid iframe{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  border:0;
}


/* =========================================================
   TABLET ADAPTIVE
   ========================================================= */

@media (max-width:991px){

  .mt-grid-3,
  .mt-grid-4,
  .mt-grid-5,
  .mt-grid-6,
  .mt-grid-7{
    grid-template-columns:repeat(2,1fr);
  }

  .mt-grid[style*="--mt-cols"]{
    grid-template-columns:repeat(2,1fr);
  }

}


/* =========================================================
   MOBILE ADAPTIVE
   ========================================================= */

@media (max-width:768px){

  .mt-grid,
  .mt-grid-2,
  .mt-grid-3,
  .mt-grid-4,
  .mt-grid-5,
  .mt-grid-6,
  .mt-grid-7,
  .mt-grid[style*="--mt-cols"]{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   END MIRTELS UNIVERSAL GRID SYSTEM
   ========================================================= */

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    border: 0;
}

picture {
    display: block;
}


/* -----------------------------
   3) Focus visibility
------------------------------ */
:focus-visible {
    outline: 2px solid var(--m-accent);
    outline-offset: 2px;
    border-radius: 4px;
}


/* -----------------------------
   4) Typography
------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.75em;
    color: var(--m-text);
    line-height: 1.2;
    font-weight: 700;
    text-wrap: balance;
}

h1 {
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}



@media (max-width: 1199px) {
    .home-hero-consultation__text {
        font-size: 21px;
        padding-right: 24px;
    }
}

@media (max-width: 979px) {
    .home-main-title {
        margin-bottom: 22px;
    }

    .home-main-title__sub {
        margin-top: 16px;
    }

    .home-hero-consultation__text {
        font-size: 19px;
        padding-right: 18px;
    }
}

@media (max-width: 767px) {
    .home-main-title {
        margin-bottom: 18px;
    }

    .home-main-title__main {
        font-size: 34px;
        line-height: 1.06;
    }

    .home-main-title__sub {
        display: block;
        margin-top: 14px;
        padding-top: 14px;
        font-size: 16px;
        line-height: 1.45;
    }

    .home-main-title__sub::before {
        width: 72px;
        margin-left: -36px;
    }

    .home-hero-consultation [class*="span"] {
        float: none;
        width: 100%;
        margin-left: 0;
    }

    .home-hero-consultation__text {
        padding-right: 0;
        margin-bottom: 16px;
        text-align: center;
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .home-hero-intro {
        padding: 28px 24px;
    }

    .home-hero-intro__subtitle {
        font-size: 18px;
    }

    .home-hero-intro__actions .qf3modal.default {
        min-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .home-hero-intro {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .home-hero-intro__title-top {
        margin-bottom: 8px;
    }

    .home-hero-intro__subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .home-hero-intro__actions {
        gap: 10px;
        margin-top: 22px;
    }

    .home-hero-intro__actions .qf3modal.default {
        width: 100%;
        min-width: 0;
    }
}

h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

h3 {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 1em;
}

small {
    font-size: 0.875em;
}

strong,
b {
    font-weight: 700;
}

em,
i {
    font-style: italic;
}

ul,
ol {
    margin: 0 0 1em;
    padding-left: 1.25rem;
}

li + li {
    margin-top: 0.3em;
}

li.breadcrumb-item {
    margin: 0;
}

hr {
    border: 0;
    border-top: 1px solid var(--m-border-soft);
    margin: 1.5rem 0;
}

blockquote {
    margin: 1.2rem 0;
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--m-accent);
    background: #fafafa;
    border-radius: 0 var(--m-radius) var(--m-radius) 0;
    color: var(--m-text);
}


/* -----------------------------
   5) Links
------------------------------ */
a {
    color: var(--m-link);
    text-decoration-color: color-mix(in srgb, var(--m-link) 55%, transparent);
    text-underline-offset: 0.12em;
    transition:
        color var(--m-transition),
        text-decoration-color var(--m-transition);
}

a:hover,
a:focus-visible {
    color: var(--m-link-hover);
    text-decoration-color: currentColor;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--m-link-hover);
}


/* -----------------------------
   6) Forms (global baseline)
------------------------------ */
input,
select,
textarea,
button {
    font: inherit;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--m-border);
    border-radius: var(--m-radius);
    background: #fff;
    color: var(--m-text);
    padding: 0.65rem 0.8rem;
    transition:
        border-color var(--m-transition),
        box-shadow var(--m-transition);
}

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

input:hover,
select:hover,
textarea:hover {
    border-color: #c9c9cd;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--m-accent);
    box-shadow: 0 0 0 3px rgba(226, 151, 2, 0.16);
}


/* -----------------------------
   7) Buttons
------------------------------ */
button,
.btn,
a.btn,
.btn-primary,
button.btn-primary {
    border-radius: var(--m-radius);
    border: 1px solid var(--m-accent);
    background: var(--m-accent);
    color: #111;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.65rem 0.95rem;
    text-decoration: none;
    box-shadow: none;
    transition:
        background-color var(--m-transition),
        border-color var(--m-transition),
        color var(--m-transition),
        transform var(--m-transition),
        box-shadow var(--m-transition);
}

button:hover,
.btn:hover,
a.btn:hover,
.btn-primary:hover,
button.btn-primary:hover {
    background: var(--m-accent-strong);
    border-color: var(--m-accent-strong);
    color: #fff;
    text-decoration: none;
}

button:active,
.btn:active,
a.btn:active {
    transform: translateY(1px);
}

.btn-outline,
.btn-secondary {
    background: #fff;
    color: var(--m-text);
    border: 1px solid var(--m-border);
}

.btn-outline:hover,
.btn-secondary:hover {
    border-color: var(--m-accent);
    color: var(--m-link-hover);
    background: #fffaf0;
}


/* -----------------------------
   8) Tables
------------------------------ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.25rem;
    background: #fff;
}

caption {
    caption-side: top;
    text-align: left;
    padding-bottom: 0.5rem;
    color: var(--m-text-muted);
}

th,
td {
    border: 1px solid var(--m-border);
    padding: 0.7rem 0.8rem;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--m-accent);
    color: #111;
    font-weight: 700;
}

tbody tr:nth-child(even) td {
    background: #fcfcfd;
}

.table-container,
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--m-radius);
}

.table-container table,
.table-responsive table {
    min-width: 640px;
    margin: 0;
}


/* -----------------------------
   9) Code / pre (safe defaults)
------------------------------ */
code,
kbd,
samp {
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        "Liberation Mono",
        "Courier New",
        monospace;
    font-size: 0.92em;
}

code {
    background: #f5f5f7;
    border: 1px solid #ebebef;
    border-radius: 6px;
    padding: 0.1em 0.35em;
}

pre {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    overflow: auto;
    border: 1px solid #ebebef;
    border-radius: var(--m-radius);
    background: #f8f8fa;
}

pre code {
    background: transparent;
    border: 0;
    padding: 0;
}


/* -----------------------------
   10) Media helpers
------------------------------ */
figure {
    margin: 0 0 1rem;
}

figcaption {
    margin-top: 0.5rem;
    color: var(--m-text-muted);
    font-size: 0.92rem;
}

.align-left {
    float: left;
    margin: 0.25rem 1rem 0.75rem 0;
}

.align-right {
    float: right;
    margin: 0.25rem 0 0.75rem 1rem;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
}


/* -----------------------------
   11) Layout helpers (generic)
------------------------------ */
.m-container,
.container-main,
.container-component {
    width: min(100% - (var(--m-gutter) * 2), var(--m-container));
    margin-inline: auto;
}

.m-container--narrow {
    width: min(100% - (var(--m-gutter) * 2), var(--m-container-narrow));
    margin-inline: auto;
}

.m-section {
    padding-block: var(--m-section-y);
}

.m-card {
    background: #fff;
    border: 1px solid var(--m-border-soft);
    border-radius: var(--m-radius);
    box-shadow: var(--m-shadow-sm);
}


/* -----------------------------
   12) Utility classes
------------------------------ */
.u-text-muted {
    color: var(--m-text-muted) !important;
}

.u-text-accent {
    color: var(--m-link-hover) !important;
}

.u-bg-accent {
    background: var(--m-accent) !important;
}

.u-radius {
    border-radius: var(--m-radius) !important;
}

.u-shadow-sm {
    box-shadow: var(--m-shadow-sm) !important;
}

.u-shadow-md {
    box-shadow: var(--m-shadow-md) !important;
}

.u-nowrap {
    white-space: nowrap !important;
}

.u-hidden {
    display: none !important;
}


/* -----------------------------
   13) Footer color normalization
------------------------------ */
.footer,
.site-footer,
.container-footer {
    color: var(--m-text);
}

.footer-top,
.m-footer-top {
    background: var(--m-bg-footer-top);
    color: var(--m-text);
}

.footer-top a,
.m-footer-top a {
    color: var(--m-text);
}

.footer-top a:hover,
.m-footer-top a:hover {
    color: var(--m-link);
}

.footer-bottom,
.m-footer-bottom,
.subfooter {
    background: var(--m-bg-footer-bottom);
    color: var(--m-text-on-dark);
}

/*
.footer-bottom a,
.m-footer-bottom a,
.subfooter a {
    color: #ffd28a;
}

.footer-bottom a:hover,
.m-footer-bottom a:hover,
.subfooter a:hover {
    color: #fff;
}
*/


/* -----------------------------
   14) Cassiopeia-safe normalizations
------------------------------ */
.site-grid,
.site-grid > .container-component,
main,
main .com-content-article,
.component-content {
    background-color: transparent;
}

.card,
.alert,
.dropdown-menu,
.pagination .page-link,
.form-control,
.inputbox {
    border-radius: var(--m-radius);
}

.form-control,
.inputbox {
    border-color: var(--m-border);
}

.form-control:focus,
.inputbox:focus {
    border-color: var(--m-accent);
    box-shadow: 0 0 0 0.2rem rgba(226, 151, 2, 0.16);
}

.com-content-article a,
.item-page a,
.blog-item a {
    color: var(--m-link);
}

.com-content-article a:hover,
.item-page a:hover,
.blog-item a:hover {
    color: var(--m-link-hover);
}


/* -----------------------------
   15) Print (clean)
------------------------------ */
@media print {
    :root {
        --m-link: #000;
        --m-link-hover: #000;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    .btn,
    button,
    .no-print {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }
}


/* -----------------------------
   16) Mobile touch-ups
------------------------------ */
@media (max-width: 767.98px) {
    :root {
        --m-gutter: 14px;
    }

    body {
        font-size: 15px;
    }

    th,
    td {
        padding: 0.6rem 0.65rem;
    }

    .align-left,
    .align-right {
        float: none;
        margin: 0 0 0.9rem;
    }
}


/* -----------------------------
   17) Structural safety
------------------------------ */
html,
body {
    overflow-x: clip;
}

body.site {
    width: 100%;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

.site,
.site-grid,
.container-component,
.container-footer,
.container-header {
    min-width: 0;
}

img,
table,
iframe,
svg,
video {
    max-width: 100%;
    height: auto;
}

body,
.wrapper,
.page-wrap,
body.site,
body.site.wrapper-static,
body.site .wrapper,
body.site .page-wrap {
    padding-bottom: 0 !important;
}

body.site > .site-grid {
    flex: 1 0 auto !important;
  align-content: start !important;
}

body.site > footer.container-footer {
    margin-top: auto !important;
    flex: 0 0 auto !important;
}


/* -----------------------------
   18) Header / Footer base
------------------------------ */
header.header.container-header.full-width,
.container-header,
.header.container-header {
    background: #0b0a0a !important;
    color: #f2f2f2;
}

footer.container-footer.footer.full-width,
.container-footer.footer,
.container-footer {
    background: #303030 !important;
    color: #f2f2f2;
}


/* -----------------------------
   19) Header decorative effects
------------------------------ */
.header.container-header {
    position: relative;
    overflow: visible;
}

.header.container-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 22%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 35%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0.03) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-22deg);
    animation: headerShine 2.8s ease-out 0.8s 1 forwards;
}

@keyframes headerShine {
    from {
        left: -35%;
    }

    to {
        left: 115%;
    }
}

.header.container-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 24px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        transparent 0,
        transparent 1px,
        #c5c5c5 1px,
        #c5c5c5 2px,
        transparent 2px,
        transparent 5px,
        #737373 5px,
        #737373 8px,
        transparent 8px,
        transparent 16px,
        #e2be02 16px,
        #e2be02 23px,
        transparent 23px,
        transparent 24px
    );
}


/* -----------------------------
   20) Lists: checked / arrow
------------------------------ */
ul.checked,
ol.checked,
ul.arrow,
ol.arrow {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul.checked > li,
ol.checked > li,
ul.arrow > li,
ol.arrow > li {
    position: relative;
    padding-left: 28px;
    margin: 0 0 10px;
}

ul.checked > li::before,
ol.checked > li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 0.12em;
    line-height: 1;
    font-size: 1em;
    color: #ffb600;
    font-family:
        "Segoe UI Symbol",
        "Noto Sans Symbols",
        "Noto Sans Symbols2",
        "Arial Unicode MS",
        Arial,
        sans-serif;
    font-variant-emoji: text;
}

ul.arrow > li::before,
ol.arrow > li::before {
    content: "\27A4";
    position: absolute;
    left: 0;
    top: 0.1em;
    line-height: 1;
    font-size: 1em;
    color: #ffb600;
    font-family:
        "Segoe UI Symbol",
        "Noto Sans Symbols",
        "Noto Sans Symbols2",
        "Arial Unicode MS",
        Arial,
        sans-serif;
    font-variant-emoji: text;
}

ul.checked > li:last-child,
ol.checked > li:last-child,
ul.arrow > li:last-child,
ol.arrow > li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .header.container-header {
        border-bottom: 6px solid #e2be02;
    }

    .header.container-header::before {
        content: none !important;
    }
}

.container-header .navbar-brand {
    padding-bottom: 0 !important;
}

.container-header .grid-child {
    align-items: flex-start;
}

.container-header .navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0;
    margin-bottom: -6px;
}

.container-header .navbar-brand .brand-logo img {
    display: block;
}




.home-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 26px;
    text-align: center;
    line-height: 1;
}

.home-main-title__main,
.home-main-title__sub {
    display: block;
    max-width: 1200px;
}

.home-main-title__main {
    position: relative;
    margin: 0 0 4px;
    padding: 0 0 12px;
    font-size: clamp(34px, 2.2vw, 56px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #132b4b;
}

.home-main-title__main::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 160px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(140, 148, 158, 0) 0%,
        rgba(140, 148, 158, 0.95) 50%,
        rgba(140, 148, 158, 0) 100%
    );
    transform: translateX(-50%);
    pointer-events: none;
}

.home-main-title__sub {
    font-size: clamp(16px, 1.25vw, 24px);
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #59697c;
}

@media (max-width: 991px) {
    .home-main-title {
        margin-bottom: 22px;
    }

    .home-main-title__main {
        padding-bottom: 11px;
    }

    .home-main-title__main::after {
        width: 140px;
    }
}

@media (max-width: 767px) {
    .home-main-title {
        margin-bottom: 18px;
    }

    .home-main-title__main {
        font-size: 30px;
        line-height: 1.08;
        padding-bottom: 10px;
    }

    .home-main-title__main::after {
        width: 112px;
    }

    .home-main-title__sub {
        font-size: 15px;
        line-height: 1.4;
    }
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.clear10, .clear50 {
  width: 100%;
  min-height:10px;
  clear: both;
  margin-bottom: 50px;
}
.clear10{margin-bottom: 10px;}

.lineHeight {line-height: normal;}
.title {font-size: 22px;font-weight: 600;}
.margintop20{margin-top: 20px;}
.margintop40{margin-top: 40px;}
.margintop50{margin-top: 50px;}
.margintop60{margin-top: 60px;}
.width800 {max-width:800px; margin: 0 auto  !important;}
.width900 {max-width:900px; margin: 0 auto !important;}
.width1000 {max-width:1000px; margin: 0 auto !important;}
.width1100 {max-width:1100px; margin: 0 auto !important;}
.width1200 {max-width:1200px; margin: 0 auto !important;}
.size16, p.size16, .size16 p{font-size: 16px}
.size18, p.size18, .size18 p{font-size: 18px}
.size20, p.size20, .size20 p{font-size: 20px}
.size22, p.size22, .size22 p{font-size: 22px}
.transparent{background:transparent !important;}


h1 {font-size: 36px;   line-height: 50px;}
h2 {font-size: 32px;line-height: 40px;}
h3 {font-size: 28px;line-height: 42px;}


@media (max-width: 760px){
h1 {font-size: 26px;   line-height: 30px;}
h2 {font-size: 22px;line-height: 26px;}
h3 {font-size: 18px;line-height: 22px;}
}

p, .content-text pre {font-size: 14px;}
.left, h5.left{text-align:left;}

.container-bottom-a {margin-top: 60px;}

.rutube-embed {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.rutube-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}