.header-2 * {transition:.3s;}
.header-2 {position:fixed; top:0; left:0; width:100vw; padding-top: 1rem; z-index: 100;}
.header-2 .container {background: rgba(0,0,0,.7); backdrop-filter: blur(3px); border-radius: 2rem; padding-top:1rem; padding-bottom: 1rem;}


.header-2 #logo {display:block;}
.header-2 #logo:hover {opacity:.75;}
.header-2 #logo img {filter:invert(1);}

.header-2 #header_items {margin:.5rem 0; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center;}
.header-2 #header_items .logo svg path {fill: var(--color-base);}
.header-2 #header_items .logo svg path.arrow {fill: var(--color-body);}
.header-2 .top_menu {}
.header-2 .top_menu ul {display:flex; padding: 0; gap:1rem; flex-wrap:wrap; margin:0;}
.header-2 .top_menu ul li {position: relative; flex: auto; text-align: center; display:block;}
.header-2 .top_menu ul li a {display:block; color:#fff;}
.header-2 .top_menu > ul > li:hover > a {text-decoration: underline;}
.header-2 .top_menu ul li ul {display:none; position:absolute; top:100%; right:0; background:rgba(0,0,0,.7); backdrop-filter: blur(3px); text-align:left; box-shadow: 0 6px 12px rgb(0 0 0 / 18%); padding: 1.5rem 0; border-radius: 2rem; white-space: nowrap;}
.header-2 .top_menu ul li ul li {text-align:left;}
.header-2 .top_menu ul li ul li a {color: #fff; text-decoration: none; padding:1rem 1.5rem; display: block;}
.header-2 .top_menu ul li ul li a i {margin-right: 1rem;}
.header-2 .top_menu ul li ul li:hover > a {background:rgba(0,0,0,1);}
.header-2 .top_menu ul li ul li ul li:hover a {box-shadow: 0 6px 12px rgb(0 0 0 / 18%);}
.header-2 .top_menu ul li:hover > ul {display: block;}
.header-2 .top_menu ul li ul li ul {display: none; top: 0; left: 100%; min-height: 100%;}
.header-2 .top_menu ul li ul li.parent > a {padding-right:2rem; position:relative;}
.header-2 .top_menu ul li ul li.parent > a::before {content: '\27A4'; position:absolute; right:.5rem; top:50%; transform:translateY(-50%);}

.mobile-window {position: fixed; z-index: 1000;}
.mobile-window * {transition: .3s;}
.mobile-window .logo img {filter:invert(1);}
.mobile-window .bg {position:fixed; background:rgba(0,0,0,.5); backdrop-filter: blur(1px); top:0; left:0; right:100%; bottom:0; border-radius:0 100% 100% 0;}
.mobile-window .window {width:0; background:rgba(0,0,0,.7); backdrop-filter: blur(2px); position:fixed; top:0; left:0; bottom:0; border-radius:0 100% 100% 0; opacity:0; padding:0; overflow:auto; display:flex; flex-direction: column; text-align: center;}
.mobile-window .close {position:fixed; top:0; left:300px; margin:1rem; font-size:0; color:#fff; cursor:pointer;}
.mobile-window .close:hover {opacity:.7;}
.mobile-window .window > div {margin:1rem 0;}
.mobile-window .mobile_menu {text-align:left; margin-bottom:auto;}
.mobile-window .mobile_menu ul {display:block; margin:0; padding:0;}
.mobile-window .mobile_menu ul li {display:block; margin:0; padding:0;}
.mobile-window .mobile_menu ul li a {color:#fff; display: block; padding: .5rem 1rem;}
.mobile-window .mobile_menu ul li ul {margin-left: 1rem; border-left: 1px dotted #ddd;}

body.active-menu {overflow:hidden;}
body.active-menu .mobile-window {display:block;}
body.active-menu .mobile-window .bg {right:0; border-radius:0;}
body.active-menu .mobile-window .close {font-size:3rem;}
body.active-menu .mobile-window .window {width:300px; border-radius: 0 2rem 2rem; opacity:1; padding:1rem;}

.breadcrumbs {display: none;}

[data-color="#000000FF"] {color:#000000FF}

/* ===== ОСНОВНЫЕ СТИЛИ ===== */
body {
    overflow: hidden;
    background: #0a0e27;
    color: #fff;
}

.cover-3 {
    height: 100%;
    position: relative;
    z-index: 200;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
    pointer-events: auto;
}

/* ===== КОНТЕЙНЕР И ОСНОВНОЙ МАКЕТ ===== */
.cover-3 .container-fluid {
    padding: 0;
}

.cover-3 #window-1,
.cover-3 #window-2,
.cover-3 #window-3 {
    pointer-events: all;
}

/* ===== ЛЕВАЯ БОКОВАЯ ПАНЕЛЬ (ИСТОРИЯ) ===== */
.cover-3 #window-1 {
    margin-top: var(--header-height);
    padding: 1.5rem 0;
    background: #0a0e27;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-3 #window-1.active {
    height: 0;
    overflow: hidden;
}

.cover-3 #window-1 .accordion-button {
    box-shadow: none;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.cover-3 #window-1 .accordion-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cover-3 #window-1 .accordion-button.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cover-3 #window-1 .accordion-body {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}

.cover-3 #window-1 .btn-link {
    color: #b0b8c1;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: left;
}

.cover-3 #window-1 .btn-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cover-3 #window-1 .btn-link.active {
    background: rgba(88, 166, 255, 0.15);
    color: #58a6ff;
    font-weight: 600;
}

.cover-3 #window-1 .btn-link i {
    margin-right: 0.75rem;
    opacity: 0.7;
}

/* ===== ЦЕНТРАЛЬНАЯ КОЛОНКА (НОВЫЙ ЧАТ / ПОДСКАЗКИ) ===== */
.cover-3 #window-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: auto;
    background: transparent;
}

.cover-3 #window-2.active {
    left: 0;
}

.cover-3 #window-2 .btn-link {
    color: #b0b8c1;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
    transition: all 0.2s ease;
    background: transparent;
}

.cover-3 #window-2 .btn-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cover-3 #window-2 .btn-link.active {
    background: rgba(88, 166, 255, 0.15);
    color: #58a6ff;
}

/* ===== ОСНОВНАЯ ОБЛАСТЬ ЧАТА ===== */
.cover-3 #window-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    background: transparent;
    position: relative;
}

.cover-3 #window-3.active {
    left: 0;
}

.cover-3 #window-3 .chat {
    padding: 50px 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== СООБЩЕНИЯ ===== */
.cover-3 #window-3 .chat .messages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
}

.cover-3 #window-3 .chat .messages > * {
    max-width: 90%;
    margin-right: auto;
    border-radius: 12px;
    text-align: left;
    padding: 1rem 1.25rem;
    line-height: 1.6;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Сообщения AI */
.cover-3 #window-3 .chat .messages .ai {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.cover-3 #window-3 .chat .messages .ai li:last-child {
    margin-bottom: 1em;
}

/* Сообщения пользователя */
.cover-3 #window-3 .chat .messages .user {
    margin-left: auto;
    margin-right: 0;
    background: rgba(88, 166, 255, 0.2);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #fff;
}

/* ===== ФОРМА ВВОДА ===== */
.cover-3 #window-3 .chat form {
    background: rgba(20, 25, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
    position: sticky;
    bottom: 0;
    margin: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cover-3 #window-3 .chat form .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-right: 6rem;
    max-height: 15vh;
    resize: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cover-3 #window-3 .chat form .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(88, 166, 255, 0.4);
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.cover-3 #window-3 .chat form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== КНОПКИ ФОРМЫ ===== */
.cover-3 #window-3 .chat form .design-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cover-3 #window-3 .chat form .design-panel [name="record"] {
    position: absolute;
    right: 4rem;
    top: 1.5rem;
    background: transparent;
    border: none;
    color: #58a6ff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cover-3 #window-3 .chat form .design-panel [name="record"]:hover {
    color: #79c0ff;
}

.cover-3 #window-3 .chat form .design-panel [name="submit"] {
    position: absolute;
    right: 1.5rem;
    top: 1.425rem;
}

.send-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: none;
    background: none;
    color: #58a6ff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.send-btn:hover {
    color: #79c0ff;
    transform: scale(1.1);
}

.send-btn:disabled {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ===== ИКОНКИ ===== */
.cover-3 *:not(.btn-sm) i {
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-3 i {
    transition: 0.2s ease;
    cursor: pointer;
    color: #b0b8c1;
}

.cover-3 i:hover {
    color: #58a6ff;
}

/* ===== КНОПКИ ===== */
.cover-3 .btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.cover-3 .btn.btn-link {
    color: #58a6ff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.cover-3 .btn.btn-link:hover {
    color: #79c0ff;
    background: rgba(88, 166, 255, 0.1);
}

.cover-3 .btn-link:nth-child(2n) {
    background: transparent;
}

/* ===== МЕДИА ===== */
.cover-3 #window-3 .files .image {
    width: 25%;
    flex: 0 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.cover-3 #window-3 .files .audio {
    width: 100%;
}

.cover-3 #window-3 .chat audio {
    width: 100%;
    border-radius: 8px;
}

.cover-3 #window-3 .chat .messages audio,
.cover-3 #window-3 .chat .messages video,
.cover-3 #window-3 .chat .messages img {
    max-width: 100%;
    max-height: 70vh;
    background: #000;
    border-radius: 8px;
}

/* ===== КНОПКА СКРОЛЛА ===== */
:root {
    --arrow-size: 3.5rem;
    --arrow-icon-size: 1.25rem;
}

@media (max-width: 576px) {
    :root {
        --arrow-size: 3rem;
        --arrow-icon-size: 1rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --arrow-size: 4.25rem;
        --arrow-icon-size: 1.5rem;
    }
}

#scrollArrow {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: var(--arrow-size);
    height: var(--arrow-size);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(88, 166, 255, 0.3);
    cursor: pointer;
    z-index: 2147483647;
    pointer-events: auto;
    transition: all 0.2s ease;
}

#scrollArrow:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(88, 166, 255, 0.4);
}

#scrollArrow:active {
    transform: scale(0.98);
}

#scrollArrow svg {
    width: var(--arrow-icon-size);
    height: var(--arrow-icon-size);
}

/* ===== ФОРМА ВХОДА ===== */
.cover-3 #aiLoginForm {
    display: none;
    max-width: 480px;
    padding: 4rem 2rem;
    margin: 0 auto;
    background: rgba(20, 25, 45, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.cover-3 #aiLoginForm .phone-input {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    padding: 0 1rem;
    position: relative;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-3 #aiLoginForm .phone-input button {
    position: absolute;
    top: 55%;
    left: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #58a6ff;
}

.cover-3 #aiLoginForm .phone-input .form-control {
    border: none;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    font-size: 20px;
    letter-spacing: 2px;
    box-shadow: none;
    background: transparent;
    color: #fff;
}

.cover-3 #aiLoginForm .sms_code_number {
    width: 3rem;
    font-size: 20px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cover-3 #aiLoginForm input[type="number"]::-webkit-outer-spin-button,
.cover-3 #aiLoginForm input[type="number"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

/* ===== ПРОГРЕСС БАР ===== */
.cover-3 .progress-bar {
    width: 0;
    height: 8px;
    background: linear-gradient(90deg, #58a6ff, #79c0ff);
    margin-top: 10px;
    border-radius: 4px;
}

/* ===== ЗАГРУЗКА ФАЙЛОВ ===== */
.cover-3 #dropOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

.cover-3 #uploadArea .card {
    position: relative;
    background: rgba(20, 25, 45, 0.8);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 12px;
}

.cover-3 #uploadArea .card button[name="remove"] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

/* ===== ДИЗАЙН-ПАНЕЛЬ И КНОПКИ ===== */
.cover-3 #window-3 .chat form .design-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    align-items: center;
}

/* Общие стили для всех кнопок в панели */
.cover-3 #window-3 .chat form .design-panel button {
    background: rgba(88, 166, 255, 0.15);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 36px;
}

.cover-3 #window-3 .chat form .design-panel button:hover {
    background: rgba(88, 166, 255, 0.25);
    border-color: rgba(88, 166, 255, 0.5);
    color: #79c0ff;
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.cover-3 #window-3 .chat form .design-panel button:active {
    transform: scale(0.98);
}

.cover-3 #window-3 .chat form .design-panel button:disabled {
    background: rgba(108, 117, 125, 0.15);
    border-color: rgba(108, 117, 125, 0.3);
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Кнопка микрофона (record) */
.cover-3 #window-3 .chat form .design-panel [name="record"] {
    position: absolute;
    right: 4rem;
    top: 1.5rem;
    background: transparent;
    border: none;
    color: #58a6ff;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    min-height: auto;
}

.cover-3 #window-3 .chat form .design-panel [name="record"]:hover {
    color: #79c0ff;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 8px;
}

.cover-3 #window-3 .chat form .design-panel [name="record"]:active {
    color: #58a6ff;
    background: rgba(88, 166, 255, 0.2);
}

/* Кнопка отправки (submit) */
.cover-3 #window-3 .chat form .design-panel [name="submit"],
.send-btn {
    position: absolute;
    right: 1.5rem;
    top: 1.425rem;
    background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.cover-3 #window-3 .chat form .design-panel [name="submit"]:hover,
.send-btn:hover {
    background: linear-gradient(135deg, #79c0ff 0%, #a8d8ff 100%);
    box-shadow: 0 6px 16px rgba(88, 166, 255, 0.3);
    transform: translateY(-2px);
}

.cover-3 #window-3 .chat form .design-panel [name="submit"]:active,
.send-btn:active {
    transform: scale(0.95);
}

.cover-3 #window-3 .chat form .design-panel [name="submit"]:disabled,
.send-btn:disabled {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Кнопки с иконками (file, image, attachment и т.д.) */
.cover-3 #window-3 .chat form .design-panel .btn-sm {
    background: rgba(88, 166, 255, 0.15);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    max-height: 36px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cover-3 #window-3 .chat form .design-panel .btn-sm:hover {
    background: rgba(88, 166, 255, 0.25);
    border-color: rgba(88, 166, 255, 0.5);
    color: #79c0ff;
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.cover-3 #window-3 .chat form .design-panel .btn-sm:active {
    transform: scale(0.98);
}

.cover-3 #window-3 .chat form .design-panel .btn-sm i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Счётчик бесплатных сообщений */
.cover-3 #window-3 .chat form .design-panel .free-messages {
    max-width: 120px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    color: #58a6ff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    /*white-space: nowrap;*/
    text-align: center;
}

@media (max-width: 780px) {
    .cover-3 #window-3 .chat form .design-panel {
        gap: 0.5rem;
    }

    .cover-3 #window-3 .chat form .design-panel button {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        min-height: 32px;
    }

    .cover-3 #window-3 .chat form .design-panel [name="submit"],
    .send-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .cover-3 #window-3 .chat form .design-panel .free-messages {
        max-width: 90vw;
        font-size: 0.8rem;
    }
}


[data-color="#ffffffff"] {color:#ffffffff}

.articles-2 .items .content {padding: 100px 1rem; background: #fff;}
.articles-2 .items .row {height:100%;}

.articles-2 .items .img {position: relative; overflow: hidden; height: 100%; display: block;}
.articles-2 .items .img img {transition: .3s; position: absolute; z-index: -2; left: 0; top: 0; width:100%; height: 100%; object-fit: cover; border-radius: 0;}
.articles-2 .items .img .module-background {z-index: -1;}

.articles-2 .items .item:hover img {transform: scale(1.1) rotate(-1deg);}
.articles-2 .owl-js .row {flex-direction: column-reverse;}
.articles-2 .owl-js .row .content {background: #fff; padding: 1rem;}
.articles-2 .owl-js .row > * {width:100%;}


.articles-2.zerro-flex-row-reverse .container > .row,
.articles-2.zerro-flex-row-reverse .container-fluid > .row {flex-direction: row !important;}

.articles-2 .row {
    --row-revers: row-reverse !important;
}
.articles-2.zerro-flex-row-reverse .row {
    --row-revers: row !important;
}

@media (max-width: 575px) {
    .articles-2 .items .item.col-xs-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-xs-2:nth-child(12n) .row,
    .articles-2 .items .item.col-xs-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-xs-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-xs-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-xs-3:nth-child(8n) .row,
    .articles-2 .items .item.col-xs-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-xs-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-xs-4:nth-child(6n) .row,
    .articles-2 .items .item.col-xs-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-xs-6:nth-child(4n) .row,
    .articles-2 .items .item.col-xs-12:nth-child(4n) .row {flex-direction: var(--row-revers);}
}
@media (min-width: 576px) and (max-width: 767px) {
    .articles-2 .items .item.col-sm-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-sm-2:nth-child(12n) .row,
    .articles-2 .items .item.col-sm-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-sm-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-sm-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-sm-3:nth-child(8n) .row,
    .articles-2 .items .item.col-sm-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-sm-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-sm-4:nth-child(6n) .row,
    .articles-2 .items .item.col-sm-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-sm-6:nth-child(4n) .row,
    .articles-2 .items .item.col-sm-12:nth-child(2n) .row {flex-direction: var(--row-revers);}
}

@media (min-width: 768px) and (max-width: 991px) {
    .articles-2 .items .item.col-md-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-md-2:nth-child(12n) .row,
    .articles-2 .items .item.col-md-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-md-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-md-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-md-3:nth-child(8n) .row,
    .articles-2 .items .item.col-md-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-md-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-md-4:nth-child(6n) .row,
    .articles-2 .items .item.col-md-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-md-6:nth-child(4n) .row,
    .articles-2 .items .item.col-md-12:nth-child(2n) .row {flex-direction: var(--row-revers);}
}
@media (min-width: 992px) and (max-width: 1199px) {
    .articles-2 .items .item.col-lg-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-lg-2:nth-child(12n) .row,
    .articles-2 .items .item.col-lg-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-lg-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-lg-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-lg-3:nth-child(8n) .row,
    .articles-2 .items .item.col-lg-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-lg-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-lg-4:nth-child(6n) .row,
    .articles-2 .items .item.col-lg-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-lg-6:nth-child(4n) .row,
    .articles-2 .items .item.col-lg-12:nth-child(2n) .row {flex-direction: var(--row-revers);}
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .articles-2 .items .item.col-xl-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-xl-2:nth-child(12n) .row,
    .articles-2 .items .item.col-xl-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-xl-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-xl-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-xl-3:nth-child(8n) .row,
    .articles-2 .items .item.col-xl-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-xl-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-xl-4:nth-child(6n) .row,
    .articles-2 .items .item.col-xl-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-xl-6:nth-child(4n) .row,
    .articles-2 .items .item.col-xl-12:nth-child(2n) .row {flex-direction: var(--row-revers);}
}
@media (min-width: 1400px) {
    .articles-2 .items .item.col-xxl-2:nth-child(12n-6) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n-5) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n-4) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n-3) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n-2) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n-1) .row,
    .articles-2 .items .item.col-xxl-2:nth-child(12n) .row,
    .articles-2 .items .item.col-xxl-3:nth-child(8n-3) .row,
    .articles-2 .items .item.col-xxl-3:nth-child(8n-2) .row,
    .articles-2 .items .item.col-xxl-3:nth-child(8n-1) .row,
    .articles-2 .items .item.col-xxl-3:nth-child(8n) .row,
    .articles-2 .items .item.col-xxl-4:nth-child(6n-2) .row,
    .articles-2 .items .item.col-xxl-4:nth-child(6n-1) .row,
    .articles-2 .items .item.col-xxl-4:nth-child(6n) .row,
    .articles-2 .items .item.col-xxl-6:nth-child(4n-1) .row,
    .articles-2 .items .item.col-xxl-6:nth-child(4n) .row,
    .articles-2 .items .item.col-xxl-12:nth-child(2n) .row {flex-direction: var(--row-revers);}
}


.module.articles-2 {padding:100px 0;}
[data-color="#000000FF"] {color:#000000FF}

.texts-1 [data-image] {mix-blend-mode:multiply;}
.texts-1 img {width: 100%;}
.texts-1 .cards-title {font-weight: bold;}
.texts-1 .cards-uptitle { opacity: 0.7;}
.texts-1 .row {align-items: center;}

.module.texts-1 {padding:100px 0;}
[data-color="#000"] {color:#000}

.footer-1 {padding:3rem 0;}
.footer-1 ul {display:block; margin:0; padding:0;}
.footer-1 ul li {display:block; margin:0; padding:0; border-bottom:1px solid var(--color-inverse);}
.footer-1 ul li a {display:block; margin:0; padding:.3rem 1rem;}
.footer-1 .zerro-author {display: flex; color:#A2A2A2;}
.footer-1 .zerro-author:hover {color:#A2A2A2;}
.footer-1 .zerro-author::before {content: url('/assets/images/zerro.svg'); margin-right:1rem; filter:grayscale(1) invert(1);}
.footer-1 .row:nth-child(1) {padding-bottom:1.5rem; margin-bottom:1.5rem; border-bottom:1px solid #a2a2a2;}
.footer-1 .row:nth-child(2) a:hover {filter:contrast(3);}


[data-color="#ffffffFF"] {color:#ffffffFF}
[data-color="#A2A2A2"] {color:#A2A2A2}

