*,
*:after,
*:before {
    box-sizing: border-box;
}

:root {
    --c-white: #fff;
    --c-black: #000;
    --c-ash: #eaeef6;
    --c-charcoal: #a0a0a0;
    --c-void: #141b22;
    --c-fair-pink: #ffedec;
    --c-apricot: #fbc8be;
    --c-coffee: #754d42;
    --c-del-rio: #917072;
    --c-java: #1fcac5;
    --c-titan-white: #f1eeff;
    --c-cold-purple: #a69fd6;
    --c-indigo: #6558d3;
    --c-governor: #4133b7;
}

.card_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    width: 100%;
    margin: 3vh auto;
    background: none;
}

.card {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    width: 280px;
    height: 340px;
}

.heading {
    font-size: 22px;
}

.information_div {
    background-color: var(--c-white);
}

.article {
    padding: 10px 0px 0px 0px;
}

.information_div .tag {
    display: inline-block;
    background-color: var(--c-titan-white);
    color: var(--c-indigo);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5em 0.75em;
    line-height: 1;
    border-radius: 6px;
}

.information_div .tag+* {
    margin-top: 1rem;
}

.information_div .title {
    font-size: 16px;
    color: var(--c-void);
    padding: 0px 10px;
    line-height: 1.25;
    text-align: center;
}

.information_div .title+* {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.information_div .info {
    color: #363636;
}

.information_div .button {
    text-decoration: none;
    font: inherit;
    line-height: 1;
    background-color: white;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
}

.information_div .button:hover,
.information_div .button:focus {
    background-color: var(--blue);
    color: var(--c-white);
}

.information_div .details {
    display: flex;
    gap: 1rem;
}

.information_div .details div {
    padding: 0.75em 1em;
    background-color: var(--c-titan-white);
    border-radius: 8px;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.125em;
    flex-basis: 50%;
}

.information_div .details dt {
    font-size: 0.875rem;
    color: var(--c-cold-purple);
}

.information_div .details dd {
    color: var(--c-indigo);
    font-weight: 600;
    font-size: 1.25rem;
}

.plan {
    padding: 10px;
    background-color: var(--c-white);
    color: var(--c-del-rio);
}

.plan strong {
    font-weight: 600;
    color: var(--c-coffee);
}

.plan .inner {
    padding: 20px;
    padding-top: 40px;
    background-color: var(--c-fair-pink);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.plan .pricing {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--c-apricot);
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-coffee);
}

.plan .pricing small {
    color: var(--c-del-rio);
    font-size: 0.75em;
    margin-left: 0.25em;
}

.plan .title {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--c-coffee);
}

.plan .title+* {
    margin-top: 0.75rem;
}

.plan .info+* {
    margin-top: 1rem;
}

.plan .features {
    display: flex;
    flex-direction: column;
}

.plan .features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan .features li+* {
    margin-top: 0.75rem;
}

.plan .features .icon {
    background-color: var(--c-java);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.plan .features .icon svg {
    width: 14px;
    height: 14px;
}

.plan .features+* {
    margin-top: 1.25rem;
}

.plan button {
    font: inherit;
    background-color: var(--c-indigo);
    border-radius: 6px;
    color: var(--c-white);
    font-weight: 500;
    font-size: 1.125rem;
    width: 100%;
    border: 0;
    padding: 1em;
}

.plan button:hover,
.plan button:focus {
    background-color: var(--c-governor);
}

.info_img {
    height: 150px;
    width: 200px;
    margin-top: 13px;
    border-radius: 8px;
}

.cards {
    padding-top: 20px;
    padding-bottom: 20px;
}