.prices {
    padding: 80px 0;
    background-color: #ffffff;
}

.prices .prices-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    display: block;
}

.prices .prices-buttons {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.prices .prices-buttons button {
    margin: 0 10px;
}

@media (max-width:1200px){
    .prices .prices-buttons {
        grid-template-columns: repeat(2,1fr);
        row-gap: 20px;
    }
}
@media (max-width:992px){
    .prices .prices-title{
        margin-bottom: 40px;
    }
    .prices {
        padding: 60px 0;
    }
}
@media (max-width:768px){
    .prices .prices-title{
        margin-bottom: 30px;
    }
    .prices {
        padding: 40px 0;
    }
}
@media (max-width:576px){
    .prices .prices-title{
        margin-bottom: 20px;
    }
    .prices {
        padding: 20px 0;
    }
}