* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.listino-prezzi-3,
.listino-prezzi,
.listino-prezzi .sub-listino {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.listino-prezzi-3 .sub-listino {
    display: flex;
    flex-direction: row;
}

.listino-prezzi .sub-listino {
    padding-left: 0.6vw;
    justify-content: space-between;
}

.listino-prezzi {
    padding-right: 0.6vw;
    justify-content: space-around;
}

.listino-prezzi-3 {
    justify-content: center;
}

/*-------------------*/

.listino-item-3{
    width: 25vw;
    margin-left: 3.125vw;
    margin-right: 3.125vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    background-color: #fff;
    padding-bottom: 20px;
    box-shadow: 0px 0px 2px #888888;
    transition: all 0.4s ease 0s;
}

.listino-item {
    width: 24vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    background-color: #fff;
    padding-bottom: 20px;
    box-shadow: 0px 0px 5px #888888;
    transition: all 0.4s ease 0s;
}

.listino-item-3 img{
    width: 25vw;
    height: 25vw;
    object-fit: cover;
    overflow: hidden;
}

.listino-item img {
    width: 24vw;
    height: 24vw;
    object-fit: cover;
    overflow: hidden;
}

.listino-item-3 h2,
.listino-item h2 {
    font-family: "Tangerine", "Arima Madurai", sans-serif;
    font-size: 6em;
    font-weight: 500;
    color: #b19d86;
    margin-top: 15px;
}

.listino-item-3 h3,
.listino-item h3 {
    margin-bottom: 10px;
}

.listino-item-3 ul,
.listino-item ul {
    display: table;
    margin: 0 auto 20px auto;
    text-align: center;
}

.listino-item-3:hover,
.listino-item:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 1200px) {

    .listino-prezzi-3,
    .listino-prezzi {
        padding: 0;
        flex-direction: column;
        align-items: center;
    }
    
    .listino-prezzi-3 .sub-listino,
    .listino-prezzi .sub-listino {
        padding: 1vw;
        justify-content: space-evenly;
    }

    .listino-item-3,
    .listino-item {
        width: 45vw;
    }

    .listino-item-3 img,
    .listino-item img {
        width: 45vw;
        height: 45vw;
    }

    .listino-item-3 {
        margin: 0;
    }
}

@media screen and (max-width: 800px) {ù

    .listino-prezzi-3,
    .listino-prezzi {
        padding: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .listino-prezzi-3 .sub-listino,
    .listino-prezzi .sub-listino {
        padding: 0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .listino-item-3,
    .listino-item {
        margin: 2vw;
        width: 90vw;
        padding: 0 0 20px 0;
    }

    .listino-item-3 img,
    .listino-item img {
        width: 90vw;
        height: 90vw;
    }

}