.team-section {
  position: relative;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-bottom: 5px solid var(--Color-Primary-50, #58C3DA);
  width: 305px;
  height: 441px;
  margin-right: 16px;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .image img {
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.02);
}

.team-block-one .inner-box .image-box .share-box {
  position: absolute;
  left: 80px;
  bottom: -30px;
  width: 60px;
  height: 60px;
  z-index: 1;
}

.team-block-one .inner-box .image-box .share-box .share-btn {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 64px;
  background: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--theme-color);
  border-radius: 50%;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 500ms ease;
}

.team-block-one .inner-box .image-box .share-box .share-btn:hover {
  color: #fff;
  background: var(--theme-color);
}

.team-block-one .inner-box .image-box .share-box .share-links {
  position: absolute;
  left: -80px;
  top: -100px;
  width: 220px;
  text-align: center;
  transform: scale(0, 0);
  transition: all 500ms ease;
}

.team-block-one .inner-box .image-box .share-box .share-links:before {
  position: absolute;
  content: '';
  left: 0px;
  top: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: transparent;
  z-index: -1;
}

.team-block-one .inner-box .image-box .share-box:hover .share-links {
  transform: scale(1, 1);
}

.team-block-one .inner-box .image-box .share-box .share-links li {
  position: relative;
  display: inline-block;
  margin: 0px 3px;
}

.team-block-one .inner-box .image-box .share-box .share-links li a {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  background: #fff;
  text-align: center;
  font-size: 16px;
  color: #222;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .share-box .share-links li a:hover {
  color: #fff;
  background: var(--theme-color);
}

.team-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 15px;
}

.team-block-one .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 4px;
}

.team-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #222;
}

.team-block-one .inner-box .lower-content h3 a:hover {
  color: var(--theme-color);
}

.team-block-one .inner-box .lower-content .designation {
  position: relative;
  display: block;
}

.team-section.team-page .team-block-one .inner-box {
  margin-bottom: 30px;
}