.team-card-container {
    display: flex;
    flex-wrap: wrap;
}

.team-card {
    width: 33%;
    flex-grow: 0;
    position: relative;
}

.team-card img {
    width: 100%;
}

.team-card .self-intro {
    text-align: justify;
    width: 58%;
    height: 12%;
    /* overflow: auto; */
    /* background-color: #fa0; */
    font-size: 16px;
    position: absolute;
    top: 74%;
    left: 20%;
    font-family: 'Blender-Pro-Book', 'Taipei Sans TC Beta';

    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}
@media (max-width: 1280px) {
    .team-card .self-intro {
        text-align: justify;
        width: 58%;
        height: 12%;
        /* overflow: auto; */
        /* background-color: #fa0; */
        font-size: 12px;
        position: absolute;
        top: 74%;
        left: 20%;
        font-family: 'Blender-Pro-Book', 'Taipei Sans TC Beta';

        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: none;
        /* firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }
}


::-webkit-scrollbar {
    display: none;
}
