.section9 {
    max-width: 100vw;
    margin: 0 5%;
    padding: 20px;
    background-color: #ffffff;
}

.section9_title h1 {
    font-size: 3.5vh;
    color: #000000;
    margin-bottom: 2vh;
}

.section9_title p {
    font-size: 2vh;
    color: #666;
    margin-bottom: 5vh;
}

.section9_profiles {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.section9_profile {
    
    width: 25vh;
    height: 30vh;
    margin: 1.5vh;
    background-color: #fff;
    box-shadow: 1vh 1vh 1vh 1vh rgba(0, 0, 0, 0.196);
    padding: 2vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    border-radius: 1.5vh;
}

.section9_avatar {
    width: 12vh;
    height: 12vh;
    margin: 0 auto 2vh;
    border-radius: 50%;
    overflow: hidden; /* Ensures the image doesn't break the round shape */
}

.profile_img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the space without distortion */
}

.section9_info_container {
    width: 100%;
    
}

.section9_info {
    margin: 0 2vh;
    display: flex;
    flex-direction: column;
    justify-self: start;
    align-items: left;
    text-align: left;
}

.section9_info h1 {
    font-size: 2vh; /* Larger text for name */
    margin: 0;
    color: #000000;
}

.section9_info h2 {
    font-size: 1.7vh; /* Medium text for position */
    margin: 0;
    margin-bottom: 1vh;
    color: #1c1b1b;
}

.section9_info p {
    font-size: 1.5vh; /* Smaller text for position and description */
    color: #0c0c0c;
}

.section9_profile:hover {
    transform: scale(1.2) translateY(-2vh);
    transition: 0.3s;

}


.section9_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    
    
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section9_modal::-webkit-scrollbar {
    display: none;
}

.section9_modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 4vh;
    border: 1px solid #888;
    width: 80%;
    max-width: 50vh;
    transform: translate(0%, 5vh);/*for chinese browser*/
    transform: translate(0%, calc(-58% + 50vh - 5vw));
    border-radius: 2vh;
    box-shadow: #fff 0 0 1vh 0.5vh;
    
}

.section9_close {
    color: #676666;
    float: right;
    font-size: 3vh;
    font-weight: bold;
}

.section9_modal-content h2 {
    font-size: 2.5vh;
    margin: 2vh 0;
}

.section9_modal-content h3 {
    font-size: 2vh;
    margin: 0;
}

.section9_modal-content p {
    font-size: 1.6vh;
    line-height: 1.6;
    margin: 1vh 0;
}

.section9_modal-content p:last-child {
    margin-bottom: 5vw;
}

.section9_close:hover,
.section9_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transform: scale3d(1.2,1.2,1.2);
}

.section9_modal-content img {
    width: 100%;
    height: auto;
}

.section9_modal-content ul {
    padding-left: 5vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
    margin: 0;
}

.section9_modal-content ul li {
    margin: 0, 0, 0, 0;/*top, right, bottom, left*/
    padding: 0, 0, 0, 0;/*top, right, bottom, left*/
    line-height: 1.7vh;
    font-size: 1.5vh;
}

.section9_modal-content ul:last-child {
    margin-bottom: 2vw;
}