/*
 * Shortcode: staff.scss
 * -----------------------------------------------
*/
.team-item-currenty-style1 {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: all 300ms ease-in-out 0s;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
  .team-thumb {
    overflow: hidden;
    img {
      @include transition(all .3s ease);
      @include scale(1);
    }
  }
  .team-content {
    padding: 40px 15px 30px;
    @include transition(all .3s ease);
    border-bottom: 5px solid var(--theme-color2);
  }
  .team-information {
    margin-bottom: 20px;
  }
  .name {
    margin-bottom: 0;
    margin-top: 0;
  }
  .speciality {
    margin-bottom: 30px;
  }
  .styled-icons{
    &.icon-team-list {
      li {
        a {
          background: #f0f2f7;
          border: 1px solid transparent;
          color: var(--theme-color3);
          height: 45px;
          width: 45px;
          line-height: 45px;
          @include transition(all .3s ease);
          &:hover {
            color: var(--text-color-bg-theme-color1);
            background: var(--theme-color1);
          }
        }
      }
    }
  }
  &:hover {
    .team-thumb {
      img {
        @include scale(1.1);
      }
    }
    .team-content {
      border-bottom-color: var(--theme-color1);
    }
  }
}