
.slider10 {
    width: 100%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
 
}

/* SLIDES */
.slides10 {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide10 {
    min-width: 100%;
}

.slide10 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* NAV BUTTONS */
.nav-btn10 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.1);
    color: #fff;
    border: none;
    font-size: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev10 {
    left: 15px;
}

.next10 {
    right: 15px;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide10 img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .slide10 img {
        height: 200px;
    }
}