.price-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
}

.price-card {
    flex: 1;
    max-width: 360px;
    background: #ffffff;
    margin: 20px 10px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: .2s linear;
    color: #2d2d2d;
}

.price-card-header {
    background: #00a651;
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 0 0 20px 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .4s linear;
}

.price-card:hover .price-card-header {
    box-shadow: 0 0 0 26em #00a651;
}

.price {
    font-size: 70px;
    margin: 40px 0;
    color: #00a651;
    transition: .2s linear;
}

.price sup,
.price span {
    font-size: 22px;
    font-weight: 700;
}

.price-card:hover,
.price-card:hover .price {
    color: #ffffff;
}

.price-card li {
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
}

.order-btn {
    display: inline-block;
    margin-top: 80px;
    margin-bottom: 40px;
    border: 2px solid #00a651;
    color: #00a651;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
}

.order-btn:hover {
    background: #00a651;
    color: #ffffff;
}

@media screen and (max-width:1100px) {
    .price-card {
        flex: 50%;
    }
}