
.marquee-infinite__wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    animation: none !important;
    transform: none !important;
    width: 100% !important;
}

.video-reports {
    padding-top: 30px !important;
}


.marquee-infinite__container:nth-child(n+2) {
    display: none !important;
}


.marquee-infinite__container {
    display: flex !important;
    justify-content: center !important;
    gap: 20px; /* Расстояние между фотографиями */
    animation: none !important;
    transform: none !important;
    width: auto !important;
}

/* Убираем лишние отступы у элементов галереи */
.main-banner__gallery-item {
    flex-shrink: 0;
    width: auto;
}

.main-banner__gallery-item-img {
    display: block;
    max-width: 100%;
    height: auto;
}
@media (max-width: 576px) {
.marquee-infinite .marquee-infinite__container {
    height: 59px !important;
}
}


/* СТИЛИ для блока "Наши услуги" */
.unique-service-wrapper-link {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        outline: none;
    }

    .unique-service-wrapper-link:hover {
        transform: translateY(-5px) scale(1.02);
        z-index: 2;
    }

    .unique-service-wrapper-link h3 {
        color: inherit !important;
        text-decoration: none !important;
    }

    .unique-service-wrapper-link {
        -webkit-tap-highlight-color: transparent;
    }
	
/* СТИЛИ для блока "наши работы" */
.dw-work-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    font-family: Arial, sans-serif;
    touch-action: pan-y;
}

.dw-work-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    align-items: stretch; /* Растягиваем контейнеры по высоте самого высокого */
}

.dw-work-slide {
    min-width: 90%; 
    margin: 0 10px;
    box-sizing: border-box;
    border-radius: 15px;
    overflow: hidden;
    background: #000; /* Черный фон для "полей" вертикального видео */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transform: scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
    user-select: none;
    
    /* ФИКС: Задаем жесткое соотношение сторон для всего слайдера */
    aspect-ratio: 16 / 9; 
}

@media (min-width: 768px) {
    .dw-work-slide {
        min-width: 60%; 
    }
}

.dw-work-slide.dw-active {
    opacity: 1;
    transform: scale(1);
}

/* ФИКС для медиа-контента */
.dw-work-slide img, 
.dw-work-slide video {
    width: 100%;
    height: 100%; /* Занимает всю высоту контейнера */
    display: block;
    object-fit: cover; /* Картинки пусть заполняют всё пространство */
    pointer-events: none;
}

/* СПЕЦИАЛЬНО ДЛЯ ВИДЕО */
.dw-work-slide video {
    pointer-events: auto;
    /* ФИКС: Вертикальное видео вписывается внутрь, не меняя размер плеера */
    object-fit: contain; 
    background: #000;
}

/* Навигация (без изменений) */
.dw-work-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

        .dw-work-arrow {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .dw-work-arrow:hover {
            opacity: 0.6;
        }

        .dw-work-arrow svg {
            width: 34px;
			height: 34px;
            fill: #333;
        }

        .dw-work-dots {
            display: flex;
            gap: 8px;
        }

        .dw-work-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dw-work-dot.dw-active {
            background: #FFA500; /* Оранжевый как на скрине */
            width: 17px;
            height: 17px;
        }
		
		
	
	
/* Уникальные стили для ТРЁХ новых кнопок действий */
    /* Обновленные стили для кнопок действий */
.unique-cta-section {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: center;
}

.unique-cta-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important; 
    padding-right: 20px !important;
    
    gap: 12px;
    
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: #ffffff !important;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Размер иконок внутри кнопок */
.unique-cta-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}

/* Новые градиенты для "Красоты" */
.btn-call {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.btn-request {
    background: linear-gradient(135deg, #ff512f 0%, #f09819 100%) !important;
    color: #ffffff !important; /* Белый текст на таком фоне читается лучше */
    box-shadow: 0 4px 15px rgba(240, 152, 25, 0.3);
}

.btn-messenger {
    background: linear-gradient(135deg, #00CFFF 0%, #5240FF 50%, #A044FF 100%) !important;
}

/* Эффекты при наведении */
.unique-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    filter: brightness(1.1); /* Легкое осветление при наведении */
}

.unique-cta-btn:active {
    transform: translateY(-1px);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .unique-cta-section {
        flex-direction: column;
        align-items: stretch;
        padding: 0 15px;
    }
    .unique-cta-btn {
        max-width: 100%;
        width: 100%;
        padding: 16px; /* Чуть больше на мобильных для удобства нажатия */
    }
}

    /* Стили для модального окна */
    .unique-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none; /* Скрыто по умолчанию */
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .unique-modal-content {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        width: 100%;
        max-width: 500px;
        position: relative;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .unique-modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #999;
        line-height: 1;
    }

    .unique-modal-title {
        color: #262626;
        text-align: center;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 25px;
        text-transform: none;
    }

    .unique-form-group {
        margin-bottom: 15px;
    }

    .unique-form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
        color: #333;
    }

    .unique-form-group label span {
        color: #ffb100;
    }

    .unique-form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }

    .unique-form-input:focus {
        border-color: #ffb100;
    }

    .unique-form-submit {
        width: 100%;
        background: #af1a1d;
        color: #fff;
        border: none;
        padding: 15px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 12px;
        cursor: pointer;
        margin-top: 10px;
        text-transform: uppercase;
        transition: background 0.3s;
    }

    .unique-form-submit:hover {
        background: #cd3134;
    }

    .unique-form-footer {
        text-align: center;
        font-size: 12px;
        color: #666;
        margin-top: 20px;
    }

    .unique-form-footer a {
        color: #666;
        text-decoration: underline;
    }

    /* Адаптивность: на телефонах друг под другом */
    @media (max-width: 768px) {
        .unique-cta-section {
            flex-direction: column;
            align-items: stretch;
        }
        .unique-cta-btn {
            max-width: 100%;
            width: 100%;
        }
        .unique-modal-content {
            width: 90%;
            padding: 25px;
        }
    }
	
	
	
/* Главный экран */

 .max-w-custom {
            max-width: 1350px;
        }
		
		.tracking-tighter {
    letter-spacing: unset !important;
}

.font-black {
    font-weight: 800 !important;
}

        /* ГЛАВНЫЙ ФОН */
        .hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                        url('https://1truck.tv/img/content/2146.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
        }

        /* КОНТЕЙНЕР С ГЛАВНОЙ КАРТИНКОЙ (TRUCK) */
        .truck-container {
            position: relative;
            width: 100%;
            max-width: 51rem;
            margin: 0 auto 5rem auto;
			margin-top:-29px;
        }

        .truck-image-wrapper {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 0 80px rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* ПОЗИЦИОНИРОВАНИЕ УКАЗАТЕЛЕЙ (POINTERS) */
        .pointer-tag {
            position: absolute;
            display: flex;
            align-items: center;
            z-index: 20;
        }

        .tag-label {
            background-color: #9d3636;
            color: #000000;
            padding: 0.375rem 1.25rem;
            border-radius: 9999px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.025em;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            white-space: nowrap;
			font-family: 'Montserrat', sans-serif !important;
        }

        .tag-roof { top: 3%; left: 45%; flex-direction: column; }
        .tag-roof svg { height: 40px; width: 2px; }

        .tag-side { top: 45%; left: 10%; flex-direction: row; }
        .tag-side svg { width: 60px; height: 2px; }

        .tag-gates { top: 55%; right: 16%; flex-direction: column-reverse; align-items: center; }
        .tag-gates svg { height: 80px; width: 2px; }

        .arrow-line {
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: draw 1.5s ease-out forwards;
        }

        @keyframes draw { to { stroke-dashoffset: 0; } }

        /* СЕТКА УСЛУГ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 2rem;
            width: 100%;
            margin-bottom: 5rem;
        }
        @media (min-width: 768px) {
            .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
			.md\:text-7xl {
    font-size: 41px !important;
    line-height: 64px !important;
    font-weight: 800 !important;
}
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .service-card:hover {
            border-color: #f59e0b;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* МОБИЛЬНОЕ МЕНЮ */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(-100%);
        }
        #mobile-menu.active {
            transform: translateX(0);
        }

        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
		
		.logo_new_block {
		max-width: 150px;
    position: absolute;
    top: 22px;
}
	
	

        @media (max-width: 768px) {
            .tag-label { font-size: 11px; padding: 0.25rem 0.75rem; }
            .tag-roof { left: 30%; top: 1%; }
            .tag-side { left: 2%; top: 51%; }
            .tag-gates { right: -1%; top: 62%; }
            .tag-roof svg { height: 25px; }
            .tag-side svg { width: 30px; }
            .tag-gates svg { height: 50px; }
			.text-4xl {  font-size: 30px !important; }
			.logo_new_block { max-width: 60px; position: unset;}
			.text-sm { font-size: 1.075rem !important;}
        }
		
		
		/* ПАРАМЕТРЫ КАРТОЧЕК И СЕТКИ */
:root {
   --card-max-width: 253px;
    --card-img-height: 170px;
    --card-gap: 25px;
}

.services-grid {
    display: grid !important;
    /* Делаем колонки шириной по контенту, а не 1fr */
    grid-template-columns: repeat(3, min-content) !important;
    /* Центрируем всю сетку */
    justify-content: center !important;
    /* Управляем расстоянием через переменную */
    gap: var(--card-gap) !important;
    width: 100% !important;
}

.service-card {
    max-width: var(--card-max-width) !important;
    min-width: var(--card-max-width) !important; /* Чтобы карточки были одинаковыми */
    width: 100%;
}

.service-card .h-56 {
    height: var(--card-img-height) !important;
}



/* Адаптив для мобилок */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        padding: 0 20px;
    }
    .service-card {
        max-width: 100% !important;
        min-width: unset !important;
    }
	
	.montserrat-title {
    font-size: 35px !important;
}
.truck-container {
    margin-top: 9px !important;
}
.mb-16 {
    margin-bottom: 2.1rem !important;
}
}

.montserrat-title {
font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: unset !important;
    text-transform: none !important;
    font-size: 41px;
}


/* блок тенты */
/* Уникальные стили для блока тентов */
.tent-prod-section {
    padding: 60px 20px;
    background-color: #f5f5f5; /* Цвет фона как на вашем сайте */
}

.tent-prod-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tent-prod-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tent-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tent-prod-card {
    background: #141517;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tent-prod-card:hover {
    transform: translateY(-5px);
}

.tent-prod-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.tent-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tent-prod-card:hover .tent-prod-img-wrap img {
    transform: scale(1.1);
}

.tent-prod-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	background: #e5e3e3;
}

.tent-prod-name {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tent-prod-btn {
    background-color: #141414;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.tent-prod-btn:hover {
    background-color: #000000;
}

/* Адаптивность */
@media (max-width: 992px) {
    .tent-prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tent-prod-title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .tent-prod-grid {
        grid-template-columns: 1fr;
    }
    .tent-prod-section {
        padding: 40px 15px;
    }
    .tent-prod-img-wrap {
        height: 200px;
    }
}