.carousel-1 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.carousel1-item {
    position: relative;
    transition: all 0.5s ease;
    flex-grow: 1;
    flex-shrink: 5;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    height:500px;
    max-width: 80px;
    width: unset;
}

.carousel1-item.active {
    flex-grow: 5;
    flex-shrink: 1;
    max-width: 500px;
}
.carousel1-item .carousel1-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
}
.carousel1-item.active .carousel1-icon {
    bottom: -50px!important;
}
.carousel1-item img {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1; /* Ensures the image is square */
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.carousel1-item:hover img, .carousel1-item.active img {
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .carousel-1 {
        flex-direction: column;
    }
    .carousel1-item  {
        max-width: 100%;
        max-height: 50px;
        width: 100%;
        height: unset;
    }
    .carousel1-item.active {
        max-width: 100%;
        max-height: 400px;
    }
    .carousel1-item.active .carousel1-icon {
        bottom: -100px!important;
    }
    .carousel1-item.active .carousel1-icon {
        bottom: -50px!important;
    }
    /* .carousel1-item .carousel1-icon{
        bottom: 50%;
    } */
}
