@media (max-width: 767px) {
    .custom-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}
}
@media (min-width: 767px) {
    .custom-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
} 
/* Пагинация */
.slider-dots {
    position: absolute;
    bottom: 25px;
    right: 35px;
    display: flex;
    gap: 10px;
    z-index: 2;
}



.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfc8b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots button.active {
    background: #f1ede4;
    transform: scale(1.05);
}
