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

body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

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

.slider-wrapper {
    position: relative;
}

.slider-wrapper .description {
    display: grid;
    background: #F3F3F3;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(3, 1fr);
}

.slider-wrapper .description .card {
    background: #759582;
    display: flex;
    width: 390px;
    height: 100px;
    color: #fff;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    align-items: center;
    margin: 5% 0;
    padding: 0 5% 0 4%;
}
.slider-wrapper .description .card .left {
    width: 20%;
}

.slider-wrapper .description .card .right {
    width: 80%;
}
/* 
.container .slider-scrollbar {
    height: 24px;
    width: 70%;
    display: flex;
    align-items: center;
    margin: 0 15%;
}

.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: #759582;
    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;
} */
