.prices{
    flex-direction: row;
    justify-content: center;
    padding: 70px 0;
}
.prices-block{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
    width: 100%;
    border-radius: 5px;
    background-color: #ffffff;
}
.prices-block_img{
    width: 60%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.prices-block_img:first-child{
    background-position: bottom center;
    background-image: url(../images/prices/piano.jpg);
}
.prices-block_img:last-child{
    background-position: top center;
    background-image: url(../images/prices/art.jpg);
}
.prices-info{
    width: 40%;
    height: 100%;
    padding: 20px 30px;
}
.prices-info-line{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 0;
}
.prices-info-line_text{
    font-size: 18px;
}
.prices-info-line .prices-info-line_text:last-child{
    font-family: 'Bold', sans-serif;
}
.prices-info-line_header{
    margin-top: 10px;
    font-size: 20px;
}

/* адаптирование под экраны */
@media screen and (max-width: 840px) {
    .prices-block_img{
        height: 400px;
        width: 50%;
    }
    .prices-info{
        width: 50%;
        padding: 20px 15px;
    }
}
@media screen and (max-width: 710px) {
    .prices-block{
        display: block;
    }
    .prices-block_img{
        height: 400px;
        width: 100%;
    }
    .prices-info{
        width: 100%;
        padding: 20px 15px;
    }
}
@media screen and (max-width: 400px) {
    .prices-info-line_text{
        font-size: 16px;
    }
}