.card-container {
    display: flex;
    flex-wrap: wrap;
}

.card {
    position: relative;
    padding: 8px;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    background: #f5f6fa;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
}

.card .pic {
    position: relative;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 50%;
    background: #fff;
}

.card .pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.card .content {
    margin-top: 36px;
    text-align: center;
    padding: 0 30px;
    color: #2d3436;
    /* transition: margin-top 0.5s ease; */
}

.card .content .title {
    margin-bottom: 0;
    font-family: "Marck Script", cursive;
    font-size: 22px;
}

.card .content span {
    font-size: 12px;
    letter-spacing: 1.5px;
}

.card .content p {
    margin: 20px 0;
    font-size: 12px;
    line-height: 1.6;
    color: #b0b0b0;
}

/*%% End container %%*/