.price-plans-holder {
    display: flex;
    gap: 30px;
}

.price-plans-holder .plan {
    width: calc(1/4*100% - (1 - 1/4)*30px);
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    padding: 40px;
}

.price-plans-holder .plan:hover {
    transform: scale(1.08);
    transition: 0.3s;
}

.price-plans-holder .plan .plan-name {
    font-weight: 700;
    font-size: 20px;
    color: var( --above-title-color);
    margin-bottom: 10px;
}

.price-plans-holder .plan .plan-price {
    margin: 10px 0  30px
}

.price-plans-holder .plan .price {
    display: inline-block;
    font-weight: 500;
    font-size: 35px;
    line-height: 1.2;
    padding-left: 15px;
    position: relative;
}

.price-plans-holder .plan .price .currency {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    font-size: 15px;
}

.price-plans-holder .plan .period {
    color: rgb(68, 68, 68, 0.5);
    font-size: 14px;
}

.price-plans-holder .plan .image {
    height: 55px;
}

.price-plans-holder .plan .image img {
    max-height: 100%;
    width: auto;
    margin: 0 auto
}

.price-plans-holder .options {
    margin-top: 40px
}

.price-plans-holder .options p {
    margin-bottom: 5px;
}

.price-plans-holder .options .strike {
    text-decoration: line-through;
    color: rgb(68, 68, 68, 0.5);
}

.price-plans-holder .btn {
    margin-top: 40px;
}

@media screen and (max-width: 991px) {
    .price-plans-holder {
        flex-wrap: wrap;
    }
    .price-plans-holder .plan {
        width: calc(1/2*100% - (1 - 1/2)*30px);
    }
}

@media screen and (max-width: 767px) {
    .price-plans-holder .plan {
        width: 100%;
    }
}