:root {
  --titleFont: "Inter", sans-serif;
  --bodyFont: "Inter", sans-serif;
  --primaryColor: #537FE7 ;
  --secondaryColor: #5E5E5E ;
  --whiteColor: #ffffff;
  --titleColor: #181823;
  --hoverColor: #000;
  --bodyColor: #5E5E5E;
  --partialColor: #181823;
  --btnColor: #15171A;
  --button-bg: #537FE7;
  --button-bg-hover: #5E5E5E;
}

.team-grid-style1 .team-item {
  text-align: center;
  padding-bottom: 90px;
}
.team-grid-style1 .team-item .team-inner-wrap {
  position: relative;
  z-index: 1;
}
.team-grid-style1 .team-item .team-inner-wrap .image-wrap {
  position: relative;
  overflow: hidden;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content {
  background: #FFFFFF;
  padding: 40px 20px 20px 20px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
  display: grid;
  width: 120%;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content h3.team-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content h3.team-name a {
  text-decoration: none;
  color: var(--titleFont);
}
.team-grid-style1 .team-item .team-inner-wrap .team-content span.team-title {
  color: var(--titleFont);
  font-size: 16px;
  line-height: 26px;
  margin-top: 5px;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons {
  display: flex;
  align-items: center;
  margin-top: -25%;
  margin-bottom: 10px;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%) scale(0);
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons a {
  margin: 0 10px;
  padding: 0;
  background: transparent;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons a i {
  background: transparent;
  width: 30px;
  height: 30px;
  line-height: 31px;
  display: block;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 5px 5px 10px rgba(0, 0, 1, 0.05);
  color: #5E5E5E;
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.4s;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons a:hover i {
  color: var(--primaryColor);
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons a:nth-child(2) {
  margin-top: -14px;
}
.team-grid-style1 .team-item .team-inner-wrap .team-content .social-icons a:nth-child(3) {
  margin-top: -14px;
}
.team-grid-style1 .team-item .team-inner-wrap:hover .team-content .social-icons {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}/*# sourceMappingURL=team-grid.css.map */