.slider-util-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.slider-util {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: grab;
    touch-action: pan-y;
}
.slider-util:active {
    cursor: grabbing;
}
.slides-util {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
.slide-util {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius:10px 10px 0 0;
    pointer-events: none;
}
.slide-util img {
    border-radius:10px 10px 0 0;
}