/* infinite scroll */
.container {
    width: 100%;
    overflow-x: auto;
}

.scrollable {
    transition: all 0.3;
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    margin-top: 50px;
    justify-content: center;
    -webkit-transition: all 0.3;
    -moz-transition: all 0.3;
    -ms-transition: all 0.3;
    -o-transition: all 0.3;
}

.item {
    transition: all 0.3;
    padding: 20px;
    gap:10px;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow:01px 0px 10px rgb(61, 57, 77);
    border: solid 2px rgb(84, 78, 105);
   
    background-color: rgb(61, 57, 77);
}
.item > img{
    border-radius: 20px;
    height: 70px;
}
.item >p {
    margin-top: 10px;
    width: 220px;
}