/* Fitrix Team Widget */
.team-section .team-box {
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.team-section .team-box a {
  width: 100%;
}
.team-section .team-box figure {
  margin-bottom: 27px !important;
  overflow: hidden;
  border-radius: 0;
}
.team-section .team-box figure img {
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.team-section .team-box:hover figure img {
  transform: scale(1.1);
}
.team-section .team-box h4 {
  margin-bottom: 0;
}
.team-section .team-box span {
  font-size: 16px;
  line-height: 1.5em;
  display: block;
  margin-bottom: 21px;
}
.team-section .team-box li {
  margin: 0 3px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.team-section .team-box i {
  font-size: 18px;
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 100px;
  color: var(--e-global-color-black);
  background: var(--e-global-color-accent);
  transition: all 0.3s ease-in-out;
}
.team-section .team-box li:hover {
  transform: translateY(-5px);
}
.team-section .team-box li:first-child {
  margin-left: 0;
}
.team-section .team-box li:last-child {
  margin-right: 0;
}
.team-section .team-box:hover i {
  background: var(--e-global-color-black);
  color: var(--e-global-color-white);
}


@media screen and (max-width: 1366px) {
  .team-section .team-box figure {
    margin-bottom: 20px !important;
}
  .team-section .team-box span {
    margin-bottom: 18px;
  }
  .team-section .team-box i {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .team-section .team-box figure {
    margin-bottom: 15px !important;
  }
  .team-section .team-box h4 {
    margin-bottom: 3px;
  }
  .team-section .team-box span {
    margin-bottom: 15px;
  }
  .team-section .team-box i {
    font-size: 16px;
    height: 34px;
    width: 34px;
    line-height: 34px;
  }
}
@media screen and (max-width: 991px) {
  .team-section .team-box figure {
    margin-bottom: 10px !important;
  }
  .team-section .team-box span {
    margin-bottom: 12px;
  }
  .team-section .team-box i {
    font-size: 16px;
    height: 32px;
    width: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .team-section .team-box span {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .team-section .team-box i {
    font-size: 14px;
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
}