.items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    position: relative;
    width: fit-content;
}

.more {
    color: #f05123 !important;
    font-weight: 500;
}

.title::before {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90.06deg, #f62682 -4.45%, #6f5cf1 104.12%);
    position: absolute;
    left: 0px;
    bottom: -7px;
    border-radius: 5px;
    transition: linear 0.2s;
}

.title:hover::before {
    width: 100%;
}

.items .item {
    border-radius: 16px;
    background-color: white;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    margin: 30px;
    padding: 12px;
    max-width: 300px;
    min-width: 250px
}

.items .item .img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 16px;
}

.items .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: linear 0.3s;
}

.items .item:hover img {
    transform: scale(1.2);
}

.items .item .description {
    padding: 20px;
    text-align: center;
    background-color: transparent;
}