/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--qrowd-black-rgb), 0.3);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05);
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--qrowd-white);
  padding: 26px 0px 30px;
  margin-top: -85px;
  margin-left: 30px;
  margin-right: 30px;
  transition: all 500ms ease;
  z-index: 2;
}

.team-one__single:hover .team-one__content {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.team-one__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 24px;
}

.team-one__name a {
  color: var(--qrowd-black);
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--qrowd-base);
}

.team-one__sub-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--qrowd-gray);
}

.team-one__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.team-one__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--qrowd-black);
  background-color: var(--qrowd-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social a + a {
  margin-left: 10px;
}

.team-one__social a:hover {
  color: var(--qrowd-white);
  background-color: var(--qrowd-base);
}

.team-one__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--qrowd-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.team-one__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
