/* --------------- team style1 --------------- */
.tc-team-style1 {
  position: relative;
  padding: 150px 0;
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  border-top: 1px solid #ccc;
  z-index: 10;
  margin-top: -40px;
}
.tc-team-style1 .member-colmn {
  margin: auto;
}
.tc-team-style1 .team-card {
  position: relative;
  margin-bottom: 40px;
  display: block;
}
.tc-team-style1 .team-card:hover .img {
  transform: scale(0.95);
}
.tc-team-style1 .team-card:hover .img img {
  transform: scale(1.2);
}
.tc-team-style1 .team-card:hover .img::after {
  opacity: 0.5;
}
.tc-team-style1 .team-card:hover .title {
  opacity: 1;
  top: 50%;
}
.tc-team-style1 .team-card:hover .img {
  transition: all 0.5s ease;
  overflow: hidden;
}
.tc-team-style1 .team-card:hover .img img {
  transition: all 0.5s ease;
}
.tc-team-style1 .team-card.team-text:hover .img {
  border-color: #000;
}
.tc-team-style1 .team-card.team-text .img {
  border: 1px solid #ccc;
}
.tc-team-style1 .team-card.team-text .img::after {
  display: none;
}
.tc-team-style1 .team-card.team-text .title {
  font-weight: 300;
  color: #000 !important;
  text-align: start;
  opacity: 1;
  display: flex;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}
.tc-team-style1 .team-card.team-text .title .arrow {
  margin-top: 10px;
  display: block;
}
.tc-team-style1 .team-card .img {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: auto;
  transition: all 0.3s ease;
}
.tc-team-style1 .team-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.tc-team-style1 .team-card .title {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  opacity: 0;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  line-height: 1.5;
  text-transform: capitalize;
}
.tc-team-style1 .numbers {
  padding-top: 50px;
}
.tc-team-style1 .numbers .number-card {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #ccc;
  margin-top: 50px;
}
.tc-team-style1 .numbers .number-card .perc {
  font-size: 55px;
  flex-shrink: 0;
  margin-inline-end: 25px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-orange1);
}
.tc-team-style1 .numbers .number-card p {
  font-size: 17px;
  color: #666;
  text-transform: capitalize;
  line-height: 1.5;
}
