.dark-top-content {
    background: #000;
    padding: 1vw 10vw;
}

.introduction {
    padding: 3vw 10vw;
    background: white;
}

.introduction h4 {
    width: 50%;
}

.content {
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leadership-team {
    background: white;
    padding: 3vw 10vw;
    margin-bottom: 10px;
}

.bw-image {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.bw-image:hover {
    filter: grayscale(0%);
}

.team-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 3vw 0;
    gap: 25px;
    justify-content: space-evenly;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.team-member:hover {
    color: rgb(87, 87, 86);
}

.team-member h3 {
    margin: 0.75em 0.75em 0.25em;
    color: rgb(87, 87, 86);
    font-family: 'museo-700', serif;
    font-weight: bold;
    font-size: 23px;
}

.team-member p {
    font-weight: 300;
    font-family: 'museo-700', serif;
    text-align: center;
}

.team-member img {
    height: 470px;
}

@media (max-width: 768px) {
    .introduction h4 {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .team-member img {
        height: 250px;
    }
}
