@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');

.Team-container{
  margin-top: 50px;
}
/*body {
  width: 100%;
  height: 100vh;
  
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}*/
.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px 60px;
  box-shadow: 0 0 10px #ccc;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.card .image {
  width: 250px;
  height: 250px;
  padding: 3px;
  border: 3px solid blueviolet;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
}
.card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.card h3 {
  text-align: center;
}
.card p {
  color: orange;
  text-align: center;
}
.Team-container .swiper-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.Team-container .swiper {
  margin: 0 auto;
  cursor: grab;
}
.Team-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Team-container .swiper-button-next,
.Team-container .swiper-button-prev {
  margin-left: 30px;
  margin-right: 30px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #000000;
}
.Team-container .swiper-button-next::after,
.Team-container .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.Team-container .swiper-button-next:hover {
  transform: scale(1.2) translateX(80%);
}
.Team-container .swiper-button-prev:hover {
  transform: scale(1.2) translateX(-80%);
}
.Team-container .swiper-button-next {
  /* margin-left: 100px; */
  transform: translateX(100%);
}
.Team-container .swiper-button-prev {
  transform: translateX(-100%);
}
.Team-container .swiper-pagination {
  transform: translateY(200%);
}
.Team-container .swiper-pagination-bullet {
  background: #fff;
  width: 15px;
  height: 15px;
}
.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: 225px;
    width: 225px;
    align-items: center;
    justify-content: center;
    border-width: 5px;
    transition: transform 2s ;}

.team-individual-container{
    height: 250px;
    width: 250px;
}
.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;
}
.team-header{
  margin-top: 140px;
  display: flex;
  justify-content: center;
 
}
.team-header h2{
  color: white;
  font-weight: bolder;
}