.card-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
}

.card:hover {
    /*transform : scale(1.1);*/
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.2);
    background-color: #FFAB00;
    color: #fff;
}

.card {
    background-color: #fff;
    margin: 0.5rem 1rem;
    padding: 1rem 1rem;
    text-align: center;
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
    transition: 0.5s;
    border-radius: 20px 20px 20px 20px;  /* (первые значения радиуса) / top-left | top-right | bottom-right | bottom-left */
    height: 15,625rem;
}

.features ul {
    list-style-type: none;
    margin: 1rem;
}

.features ul li {
    padding: .2rem;
    font-weight: 600;
}

.h1 {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
}
    
    
.price h3 {
    margin-top: .5rem;
    font-size: 1.6rem;
}

.card p {
    font-size: .8rem;
    text-transform: none;
    padding-top: .5rem;
}

.button {
    border: 1px solid #FFAB00;
    border-radius: 15px;
    margin: 0 1rem;
    padding: 0 2rem;
}

.button:hover {
    cursor: pointer;
    border: 1px solid #fff;
    background-color: #fff;
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.2);
}

.button input {
    background: none;
    border: none;
    text-decoration: none;
    padding: 0.4rem 1.5rem;
    color: #444;
}

.button input:hover {
    cursor: pointer;
}