.ourTeamSw {
  padding: 50px 0;
}
.ourTeamContainer .teamItem .teamImage{
  display: block;
  overflow: hidden;
  border-radius: 15px;
  height: 290px;
  width: 290px;
}
.ourTeamContainer .teamItem .teamImage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all .4s;
}
.ourTeamContainer .teamItemHeader{
  width: max-content;
  position: relative;
}
.ourTeamContainer .teamItem{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 8px;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
  border-radius: 15px;
  overflow: hidden;
}
.ourTeamContainer .teamItem .teamFooter{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  margin-bottom: 16px;
  margin-top: 20px;
}
.ourTeamContainer .teamItem .teamFooter span:nth-child(1){
  font-size: 18px;
  color: #000;
  transition: all .4s;
}
.ourTeamContainer .teamItem .teamFooter span:nth-child(2){
  font-size: 16px;
  color: gray;
  font-weight: 300;
}
.ourTeamContainer .teamItemHeader .socialPart{
  position: absolute;
  bottom: 0;
  --r: 1.8em;
  border: solid #0000;
  border-width: 0 var(--r);
  border-radius: calc(2* var(--r)) calc(2* var(--r)) 0 0 / var(--r);
  mask: radial-gradient(var(--r) at var(--r) 0, #0000 98%, #000 101%) calc(-1* var(--r)) 100% / 100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
  background-color: #ffffff !important;
  width: max-content !important;
  margin: auto !important;
  left: 0 !important;
  right: 0 !important;
  padding: 10px 40px !important;
}
.teamItemHeader .socialPart{
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.teamItemHeader .socialPart a{
  display: flex;
  background-color: gray;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.teamItemHeader .socialPart a:hover{
  background-color: var(--color1);
}
.teamItemHeader .socialPart a i{
  font-size: 16px;
  color: #fff;
}

.ourTeamContainer .teamItem:hover img , .ourTeamContainer .swiper-slide-active .teamItem img{
  -webkit-filter: unset;
  filter: unset;
}
.ourTeamContainer .teamItem:hover .teamFooter span:nth-child(1) , .ourTeamContainer .swiper-slide-active .teamItem .teamFooter span:nth-child(1){
  color: var(--color1);
}