

/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?16717133822530*/
.bx-pagination{margin:10px 0}.bx-pagination .bx-pagination-container{text-align:center;position:relative}.bx-pagination .bx-pagination-container ul{padding:0;margin:0;list-style:none;display:inline-block}.bx-pagination .bx-pagination-container ul li{display:inline-block;margin:0 2px 15px 2px}.bx-pagination .bx-pagination-container ul li span{-webkit-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-moz-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-ms-transition:color .3s ease,background-color .3s ease,border-color .3s ease;-o-transition:color .3s ease,background-color .3s ease,border-color .3s ease;transition:color .3s ease,background-color .3s ease,border-color .3s ease;background:#eff0f1;padding:0 8px;display:block;height:32px;min-width:32px;line-height:32px;color:#444;font-size:14px;border-radius:16px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-pagination .bx-pagination-container ul li a{text-decoration:none;display:block;border-radius:16px;height:32px;min-width:32px;line-height:32px;color:#444;vertical-align:middle}.bx-pagination .bx-pagination-container ul li a:hover span{background:#dadada}.bx-pagination .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a span{background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px;color:#444}.bx-pagination .bx-pagination-container ul li.bx-pag-all span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,.bx-pagination .bx-pagination-container ul li.bx-pag-next span{color:#aab1b4;background:#fff;border:2px solid #eff0f1;line-height:28px;padding:0 18px}.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span{background:#fff;border-color:#dadada;color:#000}.bx-pagination.bx-green .bx-pagination-container ul li.bx-active span{background:#3bc915;color:#fff}.bx-pagination.bx-yellow .bx-pagination-container ul li.bx-active span{background:#f9a91d;color:#fff}.bx-pagination.bx-red .bx-pagination-container ul li.bx-active span{background:#e22b2b;color:#fff}.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{background:#0083d1;color:#fff}
/* End */


/* Start:/local/templates/seo_lev/components/bitrix/news.list/lev_regions/style.css?17854087219375*/
/* =====================================================================
   Сетка страницы "Регионы" (Только название и стрелочка)
   ===================================================================== */
.seo-lev-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Карточка города */
.seo-lev-region-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.seo-lev-region-card:hover {
    background: #ffffff;
    border-color: #d4af37; /* Фирменный золотой контур */
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Название города */
.seo-lev-region-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
}

.seo-lev-region-card:hover .seo-lev-region-card__title {
    color: #d4af37;
}

/* Стрелочка-иконка */
.seo-lev-region-card__action {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.seo-lev-region-card__action svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.seo-lev-region-card:hover .seo-lev-region-card__action {
    color: #d4af37;
}

.seo-lev-region-card:hover .seo-lev-region-card__action svg {
    transform: translateX(4px); /* Легкий сдвиг стрелочки вправо при наведении */
}

/* Адаптив для планшетов и телефонов */
@media (max-width: 1024px) {
    .seo-lev-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-lev-regions-grid {
        grid-template-columns: 1fr;
    }
    .seo-lev-region-card {
        padding: 20px;
    }
}

/* =====================================================================
   SEO-текстовый блок на странице "Регионы"
   ===================================================================== */
.seo-lev-regions-seo-box {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    margin: 40px auto 50px auto;
}

.seo-lev-regions-seo-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.seo-lev-regions-seo-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 15px;
}

.seo-lev-regions-seo-box p:last-child {
    margin-bottom: 0;
}

/* Адаптив для телефонов */
@media (max-width: 768px) {
    .seo-lev-regions-seo-box {
        padding: 30px 20px;
    }
    .seo-lev-regions-seo-box h2 {
        font-size: 22px;
    }
    .seo-lev-regions-seo-box p {
        font-size: 15px;
    }
}

/* =====================================================================
   Стили для SEO-статьи и элементов контента
   ===================================================================== */
.seo-lev-seo-article {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
}

.seo-lev-seo-article p {
    margin-bottom: 20px;
}

.seo-lev-seo-article h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.seo-lev-seo-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin: 30px 0 15px 0;
}

.seo-lev-seo-article ul, 
.seo-lev-seo-article ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

.seo-lev-seo-article li {
    margin-bottom: 8px;
}

/* Блок содержания (TOC) */
.seo-lev-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
}

.seo-lev-toc h3 {
    margin-top: 0;
    font-size: 18px;
    color: #222222;
    margin-bottom: 15px;
}

.seo-lev-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-lev-toc li {
    margin-bottom: 10px;
}

.seo-lev-toc li:last-child {
    margin-bottom: 0;
}

.seo-lev-toc a {
    color: #d4af37; /* Фирменный золотой акцент */
    text-decoration: none;
    transition: color 0.3s ease;
}

.seo-lev-toc a:hover {
    color: #222222;
    text-decoration: underline;
}

/* Блок акцента "Важно!" */
.seo-lev-important {
    background: #fffdf4;
    border-left: 4px solid #d4af37;
    border-radius: 0 8px 8px 0;
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 15px;
    color: #555555;
}

.seo-lev-important strong {
    color: #222222;
    display: block;
    margin-bottom: 5px;
}

/* Таблица сравнения */
.seo-lev-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.seo-lev-table th, 
.seo-lev-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

.seo-lev-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #222222;
}

.seo-lev-table tr:last-child td {
    border-bottom: none;
}

.seo-lev-table tr:hover td {
    background: #fafafa;
}

/* Адаптив для таблиц на мобильных */
@media (max-width: 768px) {
    .seo-lev-table {
        display: block;
        overflow-x: auto;
    }
}
/* =====================================================================
   Стили таблицы с поддержкой data-label для мобильных
   ===================================================================== */
.seo-lev-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.seo-lev-table th, 
.seo-lev-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

.seo-lev-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #222222;
}

.seo-lev-table tr:last-child td {
    border-bottom: none;
}

.seo-lev-table tr:hover td {
    background: #fafafa;
}

/* Адаптив для таблиц через data-label на мобильных телефонах */
@media (max-width: 768px) {
    .seo-lev-table, 
    .seo-lev-table thead, 
    .seo-lev-table tbody, 
    .seo-lev-table th, 
    .seo-lev-table td, 
    .seo-lev-table tr {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .seo-lev-table thead {
        display: none;
    }
    
    .seo-lev-table tr {
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        background: #ffffff;
        padding: 10px 15px;
    }
    
    .seo-lev-table td {
        position: relative;
        padding: 10px 0 10px 45%;
        text-align: right;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .seo-lev-table td:last-child {
        border-bottom: none;
    }
    
    /* Автоматический вывод шапки из атрибута data-label слева */
    .seo-lev-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 40%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: #222222;
    }
}


/* =====================================================================
   Красивые списки через псевдоклассы (без !important)
   ===================================================================== */
.seo-lev-seo-article ul {
    list-style: none; /* Убираем стандартные точки браузера */
    padding-left: 0;
    margin: 0 0 20px 0;
}

.seo-lev-seo-article ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

/* Рисуем кастомный маркер (точку) через псевдокласс в цвет акцента сайта */
.seo-lev-seo-article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #d4af37; /* Фирменный золотой цвет */
    border-radius: 50%;
}

.seo-lev-seo-article ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.seo-lev-seo-article ol li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    counter-increment: item;
}

/* Рисуем кастомную нумерацию через псевдокласс */
.seo-lev-seo-article ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 600;
}

/* Содержание (TOC) оставляем чистым */
.seo-lev-toc ul {
    list-style: none;
    padding-left: 0;
}

.seo-lev-toc ul li::before {
    display: none;
}
/* End */


/* Start:/local/templates/seo_lev/components/bitrix/news.list/team/style.css?1761166522150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/seo_lev/components/bitrix/news.list/sertificate/style.css?1674930005194*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.slick-slide {
    
    height: auto;
    
}
/* End */


/* Start:/local/templates/seo_lev/components/bitrix/news.list/klients/style.css?1761168829150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /bitrix/components/bitrix/system.pagenavigation/templates/round/style.min.css?16717133822530 */
/* /local/templates/seo_lev/components/bitrix/news.list/lev_regions/style.css?17854087219375 */
/* /local/templates/seo_lev/components/bitrix/news.list/team/style.css?1761166522150 */
/* /local/templates/seo_lev/components/bitrix/news.list/sertificate/style.css?1674930005194 */
/* /local/templates/seo_lev/components/bitrix/news.list/klients/style.css?1761168829150 */
