#conteyner
{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    z-index: 10;
}
.cont
{
    padding: 25px 10px 0px 10px;
    

}
.card
{
    position: relative;
    width: 640px;
    height: 240px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: 1px 3px 5px 0px #85888C;
}
.card .imgBx
{
    position: relative;
    width: 320px;
    height: 240px;
    border-radius: 15px;
    background: url(/img/rul1.png);
}
.card .content
{
    position: relative;
    width: 320px;
    height: 240px;
    /*background: #232949;*/
    border-radius: 15px;
    font-size: 20px;
    text-align: center;
}
.card .imgBx .price
{
    position: absolute;
    top: 160px;
    right: 0;
    height: 80px;
    width: 50%;
    /*background: #f00;*/
    border-radius: 15px;
}
.card .imgBx .price a
{
    position: relative;
    background: #fff;
    padding: 10px 20px;
    margin: 15px 15px;
    display: block;
    color: #f00;
    border-radius: 7px;
    font-weight: 800;
    text-align: center;
    box-shadow: 1px 3px 5px 0px #85888C;
}
@media screen and (max-width: 1330px) {
    .card
{
    position: relative;
    width: 320px;
    height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: 1px 1px 5px 0px #85888C;
}
.card .content
{
    position: relative;
    width: 320px;
    height: 150px;
}
.card .imgBx .price
{
    left: 0;
}
}