

/* Start:/local/templates/s1_copy/css/new_all.css?175671461316033*/
:root {
    /* Основные цвета */
    --color-black: #131415;
    --color-white: #FFFFFF;
    --color-blue: #134074;
    --color-back: #F8F4F4;
    --color-bg:#F7F7F7;

    /* Шрифты */
    --font-main: 'Inter', sans-serif;
    --font-size-h2: 3rem;
    --font-size-h3: 1.5rem;   
    --font-size-normal: 1.125rem;
    --font-size-small: 1rem;        
}

body {
    background-color: var(--color-back);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 18px;
    margin: 0;
}

h1 {
    font-size: var(--font-size-h2);
    margin-block-start: 20px;
    margin-block-end: 40px;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 100px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-top: 0;
    background-color: transparent;
    transition: padding-top 0.3s ease-out; 
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    
    background-color: transparent;
    border-radius: 20px;
    padding: 15px 40px;
    
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out, padding 0.3s ease-out;
}

.header.is-scrolled {
    padding-top: 10px;
}

.header.is-scrolled .header__inner {
    background-color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    padding: 10px 40px;
}


/* --- Footer --- */
.footer {
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: auto; /* Прижимает футер к низу */
}

.footer__main {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 30px;
}

.footer__logo {
    flex-shrink: 0;
}
.footer__logo img {
    display: block;
}

.footer__nav {
    display: flex;
    gap: 140px;
    margin-left: 160px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-nav-list__link {
    font-size: var(--font-size-normal);
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav-list__link:hover {
    color: var(--color-blue);
}

.footer__contacts {
    margin-left: 140px;
    font-size: var(--font-size-normal);
}
.footer__contacts a {
    display: block;
    text-decoration: none;
    color: var(--color-black);
    transition: color 0.3s ease;
}
.footer__contacts a:hover {
    color: var(--color-blue);
}
.footer__phone {
    font-weight: 700;
    font-size: var(--font-size-h3);
    margin-bottom: 20px;
}
.footer__email {
    text-decoration: underline;
    margin-bottom: 20px;
}
.footer__address {
    margin: 0;
    color: #666;
    max-width: 280px;
}

.footer__socials {
    margin-left: 140px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-social-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-social-item:hover {
    color: var(--color-blue);
}
.footer-social-item img {
    flex-shrink: 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: var(--font-size-small);
    color: #888;
}
.footer__policy-link {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.footer__policy-link:hover {
    color: var(--color-black);
    text-decoration: none;
}

.footer__copyright {
    margin-left: 40px;
}

/* --- Адаптивность для футера --- */
@media (max-width: 1460px) {
    .footer__nav, .footer__contacts, .footer__socials {
        margin-left: 40px;
    }
    .footer__nav {
        gap: 20px;
    }
}

@media (max-width: 1280px) {
    .footer__nav, .footer__contacts, .footer__socials {
        margin-left: 60px;
    }
    .footer__nav {
        gap: 60px;
    }
}
@media (max-width: 1024px) {
    .footer__main {
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer__nav, .footer__contacts, .footer__socials {
        margin-left: 0;
        width: 100%;
    }
    .footer__socials {
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer__copyright {
        margin-left: 0;
    }
    .footer__socials {
        flex-direction: column;
        align-items: flex-start;
    }
}


.logo img {
    display: block;
    max-width: 98px;
    transition: transform 0.3s ease;

}

.logo:hover img {
    transform: scale(1.05);
}

.logo {
    display: block;
    position: relative;
}

/* Стили для меню хеддера */

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}


.nav__list-item {
}

.nav__link {
    display: inline-block;
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: color 0.2s ease,
                transform 0.2s ease,
                font-weight 0.2s ease;
}

.nav__link:hover {
    color: var(--color-blue);
    transform: scale(1.1);
    font-weight: 600; 
}

.nav__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 40px; 
}

/* Стили для поиска */
.header__search {
    display: flex;
    align-items: center;
    position: relative;
}

.show-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 50px;
    font-size: var(--font-size-normal);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.show-all-btn:hover {
    background-color: #275a96;
}

.section_btn {
    width: 283px;
}

.section {
    width: 100%;
    margin-top: 80px;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section__title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin: 0;
}

/* --- Global Slider Navigation --- */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.slider-nav-btn:not(.swiper-button-disabled):hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(26, 62, 108, 0.2);
}

.slider-nav-btn::after {
    font-family: swiper-icons;
    font-size: 18px;
    color: var(--color-black);
    font-weight: 700;
}

.slider-nav-prev::after,
.swiper-button-prev::after {
    content: 'prev';
}

.slider-nav-next::after,
.swiper-button-next::after {
    content: 'next';
}

.slider-nav-btn.swiper-button-disabled::after {
    color: #aeaeae; 
}

.slider-nav-btn.swiper-button-disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.card {
    background-color: var(--color-white);
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Стили для гамбургер меню */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.header__burger:hover {
    transform: scale(1.1);
}

.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Анимация гамбургера в крестик */
.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Мобильное меню */
.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.header__mobile-menu.active {
    right: 0;
}

/* Overlay для затемнения фона */
.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Содержимое мобильного меню */
.mobile-menu__content {
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
}


/* Навигация в мобильном меню */
.mobile-menu__nav {
    margin-bottom: 50px;
}

.mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav__item {
    margin-bottom: 5px;
    transform: translateX(30px);
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-nav__item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav__item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav__item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav__item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav__item:nth-child(5) { animation-delay: 0.5s; }

.mobile-nav__link {
    display: block;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 64, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav__link:hover::before {
    left: 100%;
}

.mobile-nav__link:hover {
    color: var(--color-blue);
    background-color: rgba(19, 64, 116, 0.08);
    transform: translateX(10px);
}



/* Контакты в мобильном меню */
.mobile-menu__contacts {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.mobile-contacts__phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mobile-contacts__phone:hover {
    color: var(--color-blue);
}

.mobile-contacts__email {
    display: block;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.mobile-contacts__email:hover {
    color: var(--color-blue);
}

.mobile-contacts__socials {
    display: flex;
    gap: 15px;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    transform: translateY(-3px);
}

.mobile-social-link img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mobile-social-link:hover img {
    transform: scale(1.1);
}

/* Анимации */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === МЕДИА ЗАПРОСЫ === */

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .nav__list {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav__list {
        gap: 25px;
    }
    
    .nav__link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .h1 {
        font-size: var(--font-size-h3);
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Скрываем обычное меню и поиск */
    .header__nav,
    .header__search {
        display: none;
    }
    
    /* Показываем гамбургер */
    .header__burger {
        display: flex;
    }
    
    /* Адаптируем хеддер */
    .header__inner {
        padding: 10px 20px;
    }
    
    .header.is-scrolled .header__inner {
        padding: 8px 20px;
    }
    
    .logo img {
        max-width: 80px;
    }
    
    /* Адаптируем размеры заголовков */
    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        margin-top: 40px;
    }

    .section_btn {
        width: 220px;
    }
    
    .header__inner {
        padding: 10px 15px;
    }
    
    .header.is-scrolled .header__inner {
        padding: 8px 15px;
    }
    
    .logo img {
        max-width: 70px;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .mobile-menu__content {
        padding: 80px 20px 20px;
    }
    
    .header__mobile-menu {
        max-width: 100%;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none; 
    }
}


/* Отключаем скролл body когда меню открыто */
body.menu-open {
    overflow: hidden;
}


/* --- Breadcrumbs --- */
.bx-breadcrumb {
    font-size: var(--font-size-normal);
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bx-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bx-breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bx-breadcrumb-item a:hover {
    color: var(--color-blue);
}

.bx-breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #6c757d;
    margin-left: 8px;
}

.bx-breadcrumb-item:last-child {
    color: var(--color-black);
    font-weight: 500;
}

.bx-breadcrumb-item:last-child a {
    color: var(--color-black);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .bx-breadcrumb {
        font-size: var(--font-size-small);
    }
}

.where-to-buy__panel.is-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* --- Hiding rules for body classes --- */
body.hide-breadcrumbs #breadcrumbs-area {
    display: none;
}

body.hide-pagetitle #pagetitle-area {
    display: none;
}
/* End */


/* Start:/local/templates/s1_copy/components/bitrix/search.form/header/style.css?17519108543865*/
/* Стили для поиска */
.search-container {
    position: relative;
    z-index: 1000;
}

.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0C0C0C;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.search-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #134074, #1a5490);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.search-toggle:hover::before {
    transform: scale(1);
}

.search-toggle:hover {
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.search-toggle:active {
    transform: rotate(10deg) scale(0.95);
}

.search-dropdown {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(19, 64, 116, 0.15), 
                0 8px 16px rgba(19, 64, 116, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(19, 64, 116, 0.1);
    backdrop-filter: blur(10px);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
}

.search-form-wrapper {
    padding: 20px;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    border-color: var(--color-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(19, 64, 116, 0.1);
}

.search-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--color-black);
    font-family: inherit;
    width: 100%;
}

.search-input::placeholder {
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.search-input-wrapper:focus-within .search-input::placeholder {
    opacity: 0;
}

.search-submit {
    padding: 16px 16px;
    background: var(--color-blue);
    color: white;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.search-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.search-submit:hover::before {
    left: 100%;
}

.search-submit:hover {
    background: #1a5490;
    transform: scale(1.05);
}

.search-submit:active {
    transform: scale(0.95);
}

/* Скрываем стандартные элементы поиска Битрикс */
.search__button {
    display: none !important;
}

.search__input {
    display: none !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .search-dropdown {
        width: 280px;
    }
    
    .search-form-wrapper {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .search-dropdown {
        width: 250px;
        right: -20px;
    }
}
/* End */


/* Start:/local/templates/s1_copy/components/bitrix/search.form/mobile/style.css?1752961562770*/
.mobile-menu__search {
    margin-bottom: 40px;
}

.mobile-menu__search .search-form {
    display: flex;
    gap: 10px;
}

.mobile-menu__search .search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.mobile-menu__search .search-input:focus {
    outline: none;
    border-color: var(--color-blue);
}

.mobile-menu__search .search-btn {
    padding: 15px 20px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu__search .search-btn:hover {
    background-color: #275a96;
}
/* End */


/* Start:/local/templates/s1_copy/components/bitrix/breadcrumb/.default/style.css?17543971971033*/
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Позволяет переноситься на новую строку на очень узких экранах */
    gap: 12px; /* Расстояние между элементами и разделителями */
    margin: 20px 0;
}

.breadcrumbs__item a {
    color: var(--color-black);
    font-size: var(--font-size-normal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs__item a:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.breadcrumbs__separator {
    color: #D4C4C4; /* Цвет разделителя, как у неактивного пункта */
    font-size: var(--font-size-normal);
    user-select: none; /* Запрещаем выделение разделителя */
}

.breadcrumbs__current {
    font-size: var(--font-size-normal);
    color: #D4C4C4; /* Цвет для текущего, неактивного пункта */
}
/* End */
/* /local/templates/s1_copy/css/new_all.css?175671461316033 */
/* /local/templates/s1_copy/components/bitrix/search.form/header/style.css?17519108543865 */
/* /local/templates/s1_copy/components/bitrix/search.form/mobile/style.css?1752961562770 */
/* /local/templates/s1_copy/components/bitrix/breadcrumb/.default/style.css?17543971971033 */
