* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.header .header-wrap .nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    min-width: 391px;
    max-width: 100%;
}
.header .header-wrap .wrap-nav-item1 {
    display: flex;
    width: 100%;
    max-width: max-content;
    position: relative;
    padding-bottom: 10px;
    align-items: center;
    gap: 5px;
	margin-top: 10px;
}
/* Невидимая зона для плавного перехода курсора */
.header .header-wrap .wrap-nav-item1::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    pointer-events: all;
}
.header .header-wrap .nav-item {
    position: relative;
    padding: 0px 11px;
}
.header .header-wrap .wrap-nav-item1 svg {
    width: 11.27px;
    height: 16.11px;
    margin-left: 4px;
	position: relative;
    bottom: 1px;
}
.header .header-wrap .nav-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 16px;
}
.header .header-wrap .nav-item a:hover {
    color: #93191A;
}
.header .header-wrap .submenu {
    display: none;
	position: absolute;
	top: calc(100% + 30px);
    left: 0;
    border: 1px solid rgb(213, 213, 213);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    min-width: 223px;
    min-height: 190px;
    max-height: 190px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 100;
    border-radius: 16px;
    background: rgb(213, 213, 213);
}
.header .header-wrap .nav-item:hover .submenu,
.header .header-wrap .submenu:hover {
    display: block;
}
.header .header-wrap .submenu-item {
    padding: 8px 20px;
}
.header .header-wrap .submenu-item a {
    display: block;
    padding: 2px 0px;
    color: rgb(47, 42, 40);
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    line-height: 90%;
}
.header .header-wrap .submenu-item a:hover {
    color: #93191A;
}
.header .header-wrap .wrapper13 a.header-phone {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 90%;
    width: 100%;
}
span.pipe {
    margin: 0 9px;
}
.slider-container.grabbing {
    cursor: grabbing;
}
.slider-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
	border-radius: 16px;
}
.sidebar__menu .slider-container {
    max-width: 720px;
    height: 350px;
    z-index: 10;
}
.sidebar__menu .images-slider-wrapper {
    height: 100%;
}
.sidebar__menu .images-slide img {
    margin: 0 -1px;
}
.sidebar .images-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(58, 51, 48);
    cursor: pointer;
    transition: background 0.3s ease;
}
.sidebar .images-dot.active {
    background: rgb(213, 213, 213);
}




.images-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 718px;
}
.video-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 718px;
}
.video-slide {
    min-width: 100%;
    position: relative;
}
.sidebar__menu .images-slide {
    max-height: 300px;
}
.video-slide video, 
.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.images-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    gap: 8px;
}
.video-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    gap: 8px;
}
.sidebar .dots-container {
    z-index: 15;
    bottom: 8px;
}
.video-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(58, 51, 48);
    cursor: pointer;
    transition: background 0.3s ease;
}
.video-dot.active {
    background: rgb(213, 213, 213);
}

/* Стили для мобильного слайдера */
.mobile-slider {
    display: none;
}

@media (max-width: 768px) {
    .desktop-slider {
        display: none;
    }
    
    .mobile-slider {
        display: block;
        width: 100%;
        margin: 0 auto;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .mobile-slider .video-slider-wrapper {
        height: 478px;
    }
    
    .mobile-slider .video-slide video,
    .mobile-slider .video-slide img {
        width: 100%;
        height: 478px;
        object-fit: cover;
    }
    
    .mobile-slider .video-dots-container {
        bottom: 10px;
    }
    
    .mobile-slider .video-dot {
        width: 10px;
        height: 10px;
    }
}


