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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
}

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

.slider-wrapper {
    position: relative;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 20px;
    font-size: 0;
    margin-top: 3%;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(4, 1fr);
}

.slider-wrapper .image-list .card {
    width: 100vw;
    border-radius: 8px;
}

.slider-wrapper .image-list .card:nth-child(1) {
    background-image: url('https://utower300.mx/wp-content/uploads/2024/09/GaleriaPlaza.png');
}

.slider-wrapper .image-list .card:nth-child(2) {
    background-image: url('https://utower300.mx/wp-content/uploads/2024/09/GaleriaHard.png');
}

.slider-wrapper .image-list .card:nth-child(3) {
    background-image: url('https://utower300.mx/wp-content/uploads/2024/09/AmenidadesBusiness.png');
}

.slider-wrapper .image-list .card:nth-child(4) {
    background-image: url('https://utower300.mx/wp-content/uploads/2024/09/GaleriaCentral.png');
}


.slider-wrapper .image-list .button-redirect{
    width: 70%;
    height: 44px;
    background: #72253D;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    margin: 70% 15% 7% 15%;
}


.container .slider-scrollbar {
    height: 24px;
    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: #72253D;
    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;
}