/*=============================
    Carousel
=============================*/

.carousel{

    position:relative;

    width:100%;

    max-width:1600px;

    margin:0 auto;

    overflow:hidden;



}

.carousel-track{

    display:flex;

    transition:transform .6s ease;

}

.slide{

    min-width:100%;

}

.slide img{

    width:100%;

    height:auto;

    display:block;

}
.carousel-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.75);

    cursor:pointer;

    font-size:1.5rem;

    transition:.25s;

    opacity:0;

}

.carousel:hover .carousel-btn{

    opacity:1;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.carousel-btn:hover{

    background:white;

}
.carousel-indicators{

    position:absolute;

    bottom:20px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

}

.indicator{

    width:12px;

    height:12px;

    border-radius:50%;

    background:white;

    opacity:.4;

}

.indicator.active{

    opacity:1;

}