* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    font-family: "Neutra Text", Sans-serif;
    overflow: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 4px;
    font-size: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    grid-template-columns: repeat(9, 1fr);
    padding: 0 5%;
}

.slider-wrapper .image-list .amenities {
    margin-right: 5%;
}


.slider-wrapper .image-list .amenities img {
    width: 260px;
    height: 220px;
    border-radius: 8px;
}

.slider-wrapper .amenitie-title {
    display: flex;
    position: sticky;
    background-color: #00416B;
    width: 90%;
    height: 24px;
    border-radius: 8px;
    justify-content: center;
    margin: 0 5%;
    bottom: 18%;
}

.slider-wrapper .amenitie-title p {
    color: #fff;
    font-size: 16px;
}

.container .slider-scrollbar {
    width: 80%;
    display: flex;
    align-items: center;
    margin: 0 10%;
}

.slider-scrollbar .scrollbar-track {
    height: 4px;
    width: 100%;
    background: #d9d9d9;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 5px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 25%;
    background: #00a7e1;
    border-radius: 4px;
    cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 5px;
    top: -1px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}
