.carousel-section{

    width: 100%;
    padding: 100px 0;

    background: #050505;

    overflow: hidden;
}

.carousel-wrapper{

    width: 100%;
    overflow: hidden;

    position: relative;
}

.carousel-track{

    display: flex;
    align-items: center;

    gap: 30px;

    width: max-content;

    will-change: transform;
}

.gym-card{

    width: 320px;
    height: 420px;

    flex-shrink: 0;

    border-radius: 24px;

    overflow: hidden;

    opacity: .45;

    transform: scale(.82);

    transition:
    transform .7s ease,
    opacity .7s ease;
}

.gym-card.active{

    opacity: 1;

    transform: scale(1.08);

    z-index: 5;
}

.gym-card img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* MOBILE */

@media(max-width:768px){

    .carousel-track{
        gap: 20px;
    }

    .gym-card{

        width: 240px;
        height: 320px;
    }

}