#pz{
    width: 95%;
    position: relative;   
    background-color: black;
    display: flex;
    justify-content: center;
    margin-top: 10vh;
}

#pz div{
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.pz-item{
    width: 200px;
    height: fit-content;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.pz-img img{
    width: 100%;

}

.pz-text{
    color: white;
    text-align: center;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pz-text span{
    position: relative;
    font-family: 'Saira Extra Condensed', sans-serif;
}

.pz-text-1{
    font-size: 40px;
}

.pz-text-2{
    color: #F3AE56;
    font-size: 34px;
}

.pz-text-3{
    font-size: 25px;
}

.pz-text p{
    width: 90%;
}

@media (max-width: 699px){
    .pz-item{
        width: 136px;
    }

    .pz-text-1{
        font-size: 25px;
    }
    
    .pz-text-2{
        font-size: 21px;
    }
    
    .pz-text-3{
        font-size: 15px;
    }

}