
.team-section{
  position: relative;
}

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

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

.team-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--title-color);
}

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

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

.team-block-one .inner-box .image-box .social-links{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0,0);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links{
  opacity: 1;
  transform: translate(-50%,-50%) scale(1,1);
}

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

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

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

.team-block-one .inner-box .lower-content{
  padding-top: 30px;
}

.team-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

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

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #8A90A2;
}

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

























