.items{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    column-gap: 30px;
    margin-top: -30px;
}

.item{
    min-width: calc(25% - 30px);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid rgb(92, 1, 1);
    padding-bottom: 15px;
    border-radius: 5px;
    transition: .3s;
    margin-top: 30px;
    overflow: hidden;
}

.item:hover{
    cursor: pointer;
scale: 1.07;
}

.item img{
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.item ul{
    padding: 0;
    padding-left: 15px;
    margin: 0;
}

.item li{
    list-style-type:disc;
}

.item p{
    margin-top: 0;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 15px;
}

@media screen and (max-width: 920px) {
    .items{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    
    .item{
        width: 50%;
    }
}

@media screen and (max-width: 920px) {
    .item{
        width: 100%;
    }
}
