

/* Start:/local/components/new.site/zagolovok-o-nas/templates/.default/style.css?17640769134184*/
        /* --- ОБЩИЙ КОНТЕЙНЕР --- */
        .about-company-container {
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
            font-family: 'HeliosExtC', Arial, sans-serif;
            padding-bottom: 30px;
            padding-top: 30px;
        }

        /* --- ГИБКАЯ РАЗМЕТКА --- */
        .about-company-flex {
            display: flex;
            gap: 40px;
        }

        /* --- ЗАГОЛОВОК --- */
        .about-company-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.3;
            text-align: center;
            margin-bottom: 16px;
            order: 1; /* Моб: 1 */
        }

        /* --- ФОТО АВТОМОБИЛЯ --- */
        .about-company-image {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            order: 2; /* Моб: 2 */
        }

        .about-company-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* --- ОПИСАНИЕ --- */
        .about-company-description {
            font-size: 18px;
            line-height: 1.5;
            text-align: center;
            margin: 20px auto;
            max-width: 500px;
            order: 3; /* Моб: 3 */
        }

        /* --- КНОПКА --- */
        .about-company-button {
            display: block;
            width: fit-content;
            background-color: #FFD700;
            color: #000;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.2s ease;
            margin: 16px auto 0;
            text-align: center;
            order: 4; /* Моб: 4 */
            padding: 16px 64px;
        }

        .about-company-button:hover {
            background-color: #ffb040;
        }

/* --- МОБИЛЬНАЯ ВЕРСИЯ (≤900px) --- */
@media (max-width: 900px) {
    .about-company-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-company-title,
    .about-company-description,
    .about-company-button {
        text-align: center;
        max-width: 100%;
    }

    .about-company-image {
        width: 100%;
        max-width: 100%;
    }

    .about-company-description {
        margin: 16px auto 24px;
    }

    .about-company-button {
        margin-top: 16px;
    }

    /* Скрываем текстовый блок на мобильных */
    .about-company-text-block {
        display: none !important;
    }
}

/* --- ДЕСКТОПНАЯ ВЕРСИЯ (≥901px) --- */
@media (min-width: 901px) {
    .about-company-flex {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    /* Скрываем отдельные элементы на десктопе */
    .about-company-title,
    .about-company-description,
    .about-company-button {
        display: none;
    }

    /* Показываем текстовый блок */
    .about-company-text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        max-width: 500px;
    }

    /* Показываем элементы внутри текстового блока */
    .about-company-text-block .about-company-title,
    .about-company-text-block .about-company-description,
    .about-company-text-block .about-company-button {
        display: block;
    }

    .about-company-text-block .about-company-title {
        text-align: left;
        margin-bottom: 16px;
    }

    .about-company-text-block .about-company-description {
        text-align: left;
        margin: 16px 0 24px;
    }

    .about-company-text-block .about-company-button {
        margin: 0;
        align-self: flex-start;
    }

    /* Фото справа */
    .about-company-image {
        display: block;
        margin: 0;
        align-self: flex-start;
    }
}
/* End */


/* Start:/local/components/new.site/our-partners/templates/.default/style.css?17639996653077*/
 .partners-section {
        margin: 0;
        padding: 0;
        background-color: #1A1919; /* Темный фон */
        color: #fff;
        font-family: 'HeliosExtC', Arial, sans-serif;
        display: flex;
        align-items: center;
        justify-content: center; /* Центрирование */
        padding: 60px; /* Отступы */
        box-sizing: border-box;
    }

    .partners-container {
        display: flex;
        align-items: center;
        gap: 30px;
        max-width: 1200px;
        width: 100%;
        justify-content: space-between;
    }

    .partners-title {
        color: #fff;
        margin: 0;
        font-size: 30px;
        white-space: nowrap;
        align-self: flex-start;
        margin-top: 10px;
    }

    .partners-box {
        background: #fff;
        border-radius: 16px;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        box-sizing: border-box;
        width: 600px;
    }

    .partner-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .partner-logo {
        height: 100px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 1023px) and (min-width: 769px) {
        .partners-container {
            flex-direction: column;
            text-align: center;
            align-items: stretch;
            gap: 20px;
        }

        .partners-title {
            align-self: center;
            margin-top: 0;
            text-align: center;
        }

        .partners-box {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .partners-section {
            padding: 15px 10px;
        }

        .partners-container {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .partners-title {
            font-size: 24px;
            align-self: center;
            margin-top: 0;
        }

        .partners-box {
            width: 100%;
            max-width: 500px;
            padding: 15px 20px;
            gap: 20px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .partner-logo {
            height: 70px;
            max-width: 100%;
            object-fit: contain;
        }
    }

    @media (max-width: 480px) {
        .partners-title {
            font-size: 20px;
            line-height: 1.3;
        }

        .partners-box {
            max-width: 400px;
            padding: 12px 15px;
            gap: 15px;
        }

        .partner-logo {
            height: 60px;
            max-width: 100%;
            object-fit: contain;
        }
    }

    @media (max-width: 360px) {
        .partners-title {
            font-size: 18px;
        }

        .partners-box {
            max-width: 320px;
            padding: 10px 12px;
        }

        .partner-logo {
            height: 50px;
        }
    }
/* End */


/* Start:/local/components/new.site/opisanie/templates/.default/style.css?17640788781344*/
.new-text-section {
  background: #E8E8E8;
  width: 100vw; /* Растягиваем фон на всю ширину окна */
  margin-left: 50%; /* Смещаем влево на 50% */
  transform: translateX(-50%); /* Центрируем обратно */
  box-sizing: border-box;
}

.new-text-content {
  max-width: 1200px; /* Ограничение ширины текста */
  margin: 0 auto; /* Центрирование */
  padding: 60px; /* Отступы внутри */
  font-family: 'HeliosExtC', Arial, sans-serif;
  line-height: 1.6;
}

.new-text-content p {
  margin: auto;
  font-size: 20px;
}

.new-text-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #000;
}

.new-text-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5em 0 0.8em;
  color: #000;
}

.new-text-content ul,
.new-text-content ol {
  margin: 1em 0 1.2em 1.5em;
  padding-left: 0;
}

.new-text-content ul li,
.new-text-content ol li {
  margin-bottom: 0.5em;
  font-size: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .new-text-content {
    padding: 30px 20px;
  }

  .new-text-content h2 {
    font-size: 1.6rem;
    margin: 0.5em 0 0.5em;
  }

  .new-text-content h3 {
    font-size: 1.2rem;
  }

  .new-text-content p,
  .new-text-content li {
    font-size: 0.95rem;
  }
}
/* End */


/* Start:/local/components/new.site/staff/templates/.default/style.css?17640792823866*/
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            font-family: 'HeliosExtC', Arial, sans-serif;
        }

        .team-header {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
            margin-right: 60px; /* Отступ для кнопок */
        }

        @media (max-width: 767px) {
            .team-header {
                margin-right: 0;
                padding-right: 60px;
                text-align: left;
            }
        }

        .team-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .team-slider {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: transform 0.5s ease;
            width: 100%;
            flex-wrap: nowrap;
        }

        .team-card {
            background: white;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
            text-align: center;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.3;
        }

        /* Кнопки навигации — НАСЛАИВАЮТСЯ НА ЗАГОЛОВОК */
        .team-nav {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

        .nav-button {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-button:hover {
            background: #f0f0f0;
        }

        /* Адаптивность */

        @media (min-width: 768px) {
            .team-slider {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: repeat(2, auto);
                gap: 1.5rem;
                width: auto;
                flex-wrap: nowrap;
            }

            .team-card {
                flex: none;
                width: 100%;
            }

            .team-nav {
                top: 0;
                right: 0;
            }
        }

        @media (max-width: 767px) {
            .team-slider {
                display: flex;
                flex-wrap: nowrap; /* Всегда в одну строку */
                gap: 1.5rem;
            }
            .team-card {
                flex: 0 0 calc(100% - 1.5rem); /* Почти вся ширина экрана */
            }
            .team-header {
                font-size: 1.7rem;
            }
            .team-nav {
                top: 0;
                right: 0.5rem;
            }
        }

        @media (max-width: 479px) {
            .team-card {
                flex: 0 0 100%; /* 1 карточка в ряд */
            }
            .team-header {
                font-size: 1.5rem;
            }
        }
/* End */


/* Start:/local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205*/
.preimushchestva-component-wrapper {
    background-color: #1A1919; /* Фон на всю ширину */
    padding: 60px;
}

.advantages-section {
  background: #1A1919;
  text-align: center;
  font-family: 'HeliosExtC', Arial, sans-serif;.advantages-title
}

.advantages-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
}

/* Центрируем сетку на больших экранах */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.advantage-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08); 

  /* === ФИКСИРУЕМ РАЗМЕРЫ === */
  width: 90%; /* Фиксированная ширина */
  height: 160px; /* Фиксированная высота */
  min-height: 165px; /* Защита от сжатия */
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.advantage-text {
  font-size: 20px;
  line-height: 1.45;
}

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: 2 карточки + карусель === */

@media (min-width: 577px) and (max-width: 992px) {
  .advantages-section {
    padding: 40px 10px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 5px;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 300px; /* Фиксированная ширина */
    height: 250px; /* Фиксированная высота */
    min-width: 300px; /* Защита от сжатия */
    min-height: 250px; /* Защита от сжатия */
    padding: 20px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 50%; /* Начальная ширина — 50% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}

@media (max-width: 576px) {
  .advantages-section {
    padding: 40px 15px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 200px; /* Фиксированная ширина (чуть меньше для мобилки) */
    height: 200px; /* Фиксированная высота */
    min-width: 20px; /* Защита от сжатия */
    min-height: 20px; /* Защита от сжатия */
    padding: 30px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Контейнер для динамической полосы прокрутки */
  .scroll-indicator {
    height: 6px;
    background: #333; /* Тёмный фон */
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease; /* Плавное изменение ширины */
  }
}
/* End */


/* Start:/local/components/new.site/requisites/templates/.default/style.css?1764079067864*/
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            padding: 60px;
            font-family: 'HeliosExtC', Arial, sans-serif;
        }

        h1 {
            font-weight: bold;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 32px;
        }

        p {
            font-size: 18px;
        }

        .label {
            font-weight: normal;
        }

        .address-label {
            font-weight: normal;
        }

        .signature {
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
        }

        .signature span {
            display: inline-block;
            width: 45%;
        }
/* End */


/* Start:/local/components/new.site/map/templates/.default/style.css?17640005823010*/
    #map {
        width: 100%;
        height: 500px; /* Базовая высота */
        position: relative;
    }
    .info-panel {
        position: absolute;
        top: 55%; /* Базовая позиция для больших экранов */
        left: 35%; /* Базовая позиция для больших экранов */
        transform: translate(-50%, -50%); /* Центрируем по вертикали и горизонтали относительно своей позиции */
        background: #1A1919;
        color: white;
        padding: 20px 50px 20px 40px; /* Изменили padding как в вашем коде */
        border-radius: 8px;
        max-width: 280px;
        font-family: 'HeliosExtC', Arial, sans-serif;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
        margin-top: -60px; /* При необходимости можно убрать или изменить */
        font-size: 16px;
    }

    /* Адаптив для info-panel */
    @media (max-width: 1400px) {
        .info-panel {
            left: 30%;
            padding: 20px;
        }
    }
    @media (max-width: 998px) {
        .info-panel {
            left: 25%;
            padding: 20px;
        }
    }

   @media (max-width: 768px) {
    /* Увеличиваем высоту карты на мобильных */
    #map {
        height: 600px; /* Можно изменить это значение под ваши предпочтения */
    }

    .info-panel {
        /* Позиционируем ВЕРХНИЙ край панели под меткой */
        top: calc(50% + 100px); 
        left: 50%; 
        transform: translateX(-50%); 
        max-width: 75vw; 
        width: 90vw; 
        padding: 15px; 
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }
}

    .info-panel h3 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .info-panel p {
        margin: 8px 0;
        line-height: 1.4;
    }
    .phone {
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0;
        color: #fff;
        text-decoration: underline; /* Сделаем как ссылку */
        cursor: pointer; /* Покажем, что элемент кликабелен */
    }
    .phone:hover {
        opacity: 0.8; /* Легкий эффект при наведении */
    }
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    .social-icons a {
        display: inline-block;
        width: 32px;
        height: 32px;
        background-size: contain;
        background-repeat: no-repeat;
        text-decoration: none;
    }
    .yt { background-image: url('/upload/foto-mashin/ikonki/Icons.svg'); } /* Убрали лишние пробелы */
    .tg { background-image: url('/upload/foto-mashin/ikonki/telega.svg'); }
    .vk { background-image: url('/upload/foto-mashin/ikonki/vk.svg'); }
/* End */
/* /local/components/new.site/zagolovok-o-nas/templates/.default/style.css?17640769134184 */
/* /local/components/new.site/our-partners/templates/.default/style.css?17639996653077 */
/* /local/components/new.site/opisanie/templates/.default/style.css?17640788781344 */
/* /local/components/new.site/staff/templates/.default/style.css?17640792823866 */
/* /local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205 */
/* /local/components/new.site/requisites/templates/.default/style.css?1764079067864 */
/* /local/components/new.site/map/templates/.default/style.css?17640005823010 */
