.Team-container .swiper {
    width: 100%;
    height: 100%;
    margin-top: 40px;
}

.Team-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgb(26, 25, 25);
    display: flex;
    z-index: -1000;
    justify-content: center;
    align-items: center;
}

.Team-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.master-container {
    display: flex;
    flex-direction: row;
}

.team-container:hover {
    transform: scale(1.1);
}

.team-container {
    display: flex;
    flex-direction: column;
    
    background-color: black;
    border: solid;
    border-color: blue;
    height: 270px;
    width: 270px;
    align-items: center;
    justify-content: center;
    border-width: 5px;
    transition: transform 2s;
}

.team-individual-container {
    height: 300px;
    width: 300px;
}

.team-individual-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    ;
    filter: grayscale(1);
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.team-info h3 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;

}

.team-info h4 {
    margin-top: 0px;
    color: azure;
}