#main-organ-table {
    min-height: 80vh;
    margin: 120px 0px;
    display: flex;
    z-index: 1;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#main-organ-table>.sub-sec-title {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.profile-list {
    margin-top: 60px;
    display: grid;
    max-width: 1100px;
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.profile-card>.profile-img-wrap {}

.profile-card>.profile-img-wrap>img {
    border: 2px solid black;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.profile-card>h4 {
    margin: 5px;
}

.profile-card>p {
    color: #3C3C3C;
    width: 80%;
    font-size: 0.8rem;
}


@media screen and (min-width: 768px) {
    .profile-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        justify-content: center;
    }

    .profile-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        width: 100%;
    }
}

@media screen and (min-width: 1040px) {
    .profile-list {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
    }

    .profile-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        width: 100%;
    }
}