/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.content-card-flex {
    row-gap: 16px;
}

.content-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    border: 1px solid var(--primary-color);
    color: var(--black);
    border-radius: 20px;
    padding: 31px;
    justify-content: center;
}

.content-cards .section-top-content{
    margin-bottom: 32px;
}

.content-card--medium {
    border-color: var(--medium-purple);
}

.content-card--light {
    border-color: #D5D9F0;
}

.content-card p {
    font-size: 18px;
    line-height: 1.4em;
}

.content-card--grey {
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, right top, from(var(--white)), color-stop(50%, var(--light-purple)));
    background: -o-linear-gradient(left, var(--white) 0%, var(--light-purple) 50%);
    background: linear-gradient(90deg, var(--white) 0%, var(--light-purple) 50%);
}

.content-card--blue {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    border-radius: 10px;
}

.content-card--purple {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
    color: var(--white);
    border-radius: 10px;
}

.content-card--grey p,
.content-card--blue p,
.content-card--purple p {
    font-size: 16px;
    line-height: 1.5em;
}

.content-card--blue h2,
.content-card--purple h2,
.content-card--blue h3,
.content-card--purple h3,
.content-card--blue h4,
.content-card--purple h4,
.content-card--blue h5,
.content-card--purple h5,
.content-card--blue h6,
.content-card--purple h6 {
    color: var(--white);
}


@media (min-width: 1200px) {
    .content-card-flex {
        row-gap: 32px;
    }
}