.feature-slider {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-direction: column;
    align-self: center;
}

/* IMAGE SIDE */
.fs-images {
    width: 98px;
    height: 98px;
    overflow: hidden;
}

.fs-image-track {
    transition: transform 0.8s ease-in-out;
}

.fs-image-item {
    height: 98px;
}

.fs-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT SIDE */
.fs-texts {
    width: 100%;
    overflow: hidden;
}

.fs-text-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.fs-text-item {
    min-width: 100%;
    font-size: 24px;
    font-weight: 600;
    color: #2A2A37;
    font-family: 'Figtree', sans-serif;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fs-text-item.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .fs-images {
        width: 80px;
        height: 80px;
    }

    .fs-image-item {
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .feature-slider {
        flex-direction: column;
    }
    .fs-texts {
        width: 100%;
    }
}