.pt-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    margin: 20px 0;
    text-transform: uppercase;
}
.pt-menh {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.pt-menh a {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}
.pt-menh a img { width: 100%; }
.pt-menh a:hover {
    border: 5px solid #333333;
}
.pt-menh a:not(:last-child) {
    margin-right: 10px;
}

.pt-ns {
    display: flex;
    flex-wrap: wrap;
}
.pt-ns a {
    background: #eed687;
    border: 3px solid #333333;
    color: #333333;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    width: calc(25% - 10px);
    box-sizing: border-box;
    margin: 5px;
}
.pt-ns a:hover {
    background: #333333;
    color: #eed687;
}

@media only screen and (max-width:800px){
    .pt-menh {
        flex-wrap: wrap;
    }
    .pt-ns a {
        width: calc(50% - 10px);
    }
}