
/** team-section **/

.team-section{
  position: relative;
}

.team-section .title-inner .sec-title,
.team-section .title-inner .text{
  position: relative;
  width: 50%;
}

.team-section .title-inner .text{
  padding-left: 100px;
  margin-top: 26px;
}

.team-section .title-inner .text p{
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
}

.team-section .title-inner .sec-title{
  margin-bottom: 0px;
}

.team-section .title-inner{
  position: relative;
  margin-bottom: 54px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  transform: scale(1.1);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  transform: scale(1);
}

.team-block-one .inner-box .image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255,.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.team-block-one .inner-box:hover .image-box::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  border: 1px solid #cccccc;
  padding: 35px 15px 32px 15px;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .lower-content{
  padding-bottom: 72px;
  margin-bottom: -40px;
}

.team-block-one .inner-box .lower-content h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.team-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #1c1c1c;
}

.team-block-one .inner-box .lower-content h4 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0px;
}

.team-block-one .inner-box .lower-content .social-links{
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .lower-content .social-links{
  transform: scale(1,1);
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-block-one .inner-box .lower-content .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 3px;
}

.team-block-one .inner-box .lower-content .social-links li a{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #cccccc;
  text-align: center;
  font-size: 12px;
  color: #999999;
}

.team-block-one .inner-box .lower-content .social-links li a:hover{
  color: #fff;
}

.team-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 707px;
  height: 636px;
  background-repeat: no-repeat;
}

.team-section .icon-layer{
  position: absolute;
  right: 70px;
  bottom: 0px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}