.pricing-heading {
    padding: 85px 0 55px 0;
    h4 {
        font-family: Manrope;
        font-weight: 600;
        font-size: 56px;
        line-height: 88px;
        text-align: center;
        color: #FFFFFF;
    }
    p {
        font-family: IBM Plex Sans;
        font-weight: 400;
        font-size: 24px;
        line-height: 100%;
        text-align: center;
        color: #C3C3C3;
        margin: 0;
    }
    @media (max-width: 900px) {
        p {
            padding: 0 20px;
        }
    }
}
.pricing-cards {
    display: flex;
    gap: 25px;
    margin-bottom: 275px;
    @media (max-width: 900px) {
        flex-direction: column;
        align-items: center;
    }
    .pricing-cards-items {
        /* min-width: 360px; */
        max-width: 360px;
        width: 360px;
        height: 545px;
        border-radius: 12px;
        border-top-width: 1px;
        border-bottom-width: 8px;
        background: #FFFFFF0D;
        display: flex;
        gap: 33px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        h6 {
            font-family: inter;
            font-weight: 600;
            font-size: 32px;
            line-height: 40px;
            text-align: center;
        }
        p {
            font-family: IBM Plex Sans;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            text-align: center;
            color: #C3C3C3;
        }
        button {
            margin-top: 37px;
            border-radius: 32px;
            width: 224px;
            height: 48px;
            background: transparent;
            font-family: IBM Plex Sans;
            font-weight: 700;
            font-size: 20px;
            line-height: 100%;
            text-align: center;
            color: #FFFFFF;
        }
    }
    .first-item {
        border-top: 1px solid #FFC857;
        border-bottom: 8px solid #FFC857;
        h6 {
            color: #FFC857;
        }
        button {
            border: 1px solid #FFC857;
        }
    }
    .second-item {
        border-top: 1px solid #00DDFF;
        border-bottom: 8px solid #00DDFF;
        h6 {
            color: #00DDFF;
        }
        button {
            border: 1px solid #00DDFF;
        }
    }
    .third-item {
        border-top: 1px solid #FF1C58;
        border-bottom: 8px solid #FF1C58;
        h6 {
            color: #FF1C58;
        }
        button {
            border: 1px solid #FF1C58;
        }
    }
}