.pricing__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}
.pricing__card {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    padding: 44px 36px;
    background-color: var(--innerBg);
    border-radius: var(--brad);
    text-align: left;

    border: 4px solid rgba(255, 255, 255, 0.09);
}
.pricing__card:nth-child(2) {
    border: 4px solid transparent;
    background: linear-gradient(#252527, #252527) padding-box,
        linear-gradient(
                to right,
                rgba(134, 138, 255, 0.8) 0%,
                rgba(18, 203, 163, 0.8) 100%
            )
            border-box;
    background-clip: padding-box, border-box;
}
.pricing__card p {
    margin-bottom: 0;
}
.pricing__card > p:first-child {
    font-size: 32px;
    color: var(--accent);
}

.pricing__card_cost {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 14px;
}
.pricing__card_cost p:first-child {
    font-size: 56px;
    line-height: 92%;
    color: white;
}

.pricing__card_features_title {
    color: white;
    margin-bottom: 14px !important;
}

.pricing__card > a {
    margin-top: 42px;
    margin-bottom: 24px;
}
.pricing__card:nth-child(odd) {
    min-height: 578px;
}
.pricing__card ul li:not(:last-child) {
    margin-bottom: 20px;
}

.pricing__card_features li::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: url(/assets/checkGreen.svg);
    background-repeat: no-repeat;
    object-fit: contain;
    background-position: left;
}
.pricing__card_features li {
    margin-left: 34px;
}
@media (max-width: 768px) {
    .pricing__card {
        flex: 1 1 50%;
        width: 100%;
    }
    .pricing__card:nth-child(odd) {
        min-height: max-content;
    }
    .pricing__container {
        flex-direction: column;
    }
    .pricing__card_cost p:first-child {
        font-size: 40px;
    }
}
