@charset "utf-8";
/* CSS Document */


.carousel-container {
    position: relative;
    max-width: 1350px;
    margin: 2rem auto;
    overflow: hidden;
}

.carousel-slides {
    
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 422px;
    object-fit: cover;
    display: none;
}
.slide img{ width:100%;}

.slide.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, .2);
    color: white;
    border: none;
    padding: 2rem;
    cursor: pointer;
    font-size: 8rem;
    z-index: 10;
    transition: all 0.3s;
	height:382px;
}


.prev-btn {
    left:0;
}

.next-btn {
    right:0;
}
.carousel-btn .sroll{ position:relative; top:25%; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}
