:root {
  --e-global-color-primary: #5933FF;
}

.eel-team-grid .grid-item {
  box-sizing: border-box;
}
.eel-team-grid .grid-item .ee--team-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.5s ease;
}
.eel-team-grid .grid-item .ee--team-img .eel-team-img-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.eel-team-grid .grid-item .ee--team-img .eel-team-img-area .eel-team-img-box {
  overflow: hidden;
  border-radius: 16px;
  margin: 0 auto;
}
.eel-team-grid .grid-item .ee--team-img .eel-team-img-area .eel-team-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.eel-team-grid .grid-item .ee--team-img .eel-team-img-area .eel-image-below-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  z-index: -1;
}
.eel-team-grid .grid-item .ee--team-img .eel-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.3s, opacity 0.3s;
  z-index: 1;
}
.eel-team-grid .grid-item .ee--team-img .eel-name-deg-wrap {
  background: #fff;
  padding: 26px 24px 24px 24px;
  border-radius: 8px;
  text-align: center;
}
.eel-team-grid .grid-item .ee--team-img .eel-name-deg-wrap.inside {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.eel-team-grid .grid-item .ee--team-img .eel-name-deg-wrap .eel-name {
  margin: 0 0 5px;
}
.eel-team-grid .grid-item .ee--team-img:hover img {
  transform: scale(1.1);
}
.eel-team-grid.skin1 .ee--team-img {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 20px;
  background: #F1F2FA;
}
.eel-team-grid.skin1 .ee--team-img .eel-team-left {
  width: 50%;
}
.eel-team-grid.skin1 .ee--team-img .eel-team-right {
  width: 50%;
}
.eel-team-grid.skin1 .ee--team-img .eel-team-right .eel-name-deg-wrap {
  background: transparent;
  padding: 0px 0px 20px;
  border-radius: 0;
  text-align: left;
  color: #000;
}
.eel-team-grid.skin1 .ee--team-img .eel-team-right .eel-team-grid-social:not(.posi_left, .posi_right) {
  border-top: 1px solid #D9D9D9;
}
.eel-team-grid.skin2 .eel-team-img-area {
  padding: 20px 20px 0;
}
.eel-team-grid.skin2 .eel-team-img-area .eel-image-below-bg {
  height: 80%;
  background: var(--e-global-color-primary);
}

.eel-team-grid-social {
  position: relative;
}
.eel-team-grid-social .eel-team-social-hover {
  transition: all 0.3s ease;
}
.eel-team-grid-social .eel-team-social-hover a,
.eel-team-grid-social ul li a {
  color: #C2B4FF;
  transition: all 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.eel-team-grid-social .eel-team-social-hover a svg,
.eel-team-grid-social ul li a svg {
  fill: currentColor;
  height: 1em;
}
.eel-team-grid-social .eel-team-social-hover a path,
.eel-team-grid-social ul li a path {
  fill: currentColor;
}
.eel-team-grid-social .eel-team-social-hover a:hover,
.eel-team-grid-social ul li a:hover {
  color: var(--e-global-color-primary);
  transform: translateY(-5px);
}
.eel-team-grid-social ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0;
  padding: 0;
}
.eel-team-grid-social.hover_show ul {
  position: absolute;
  transition: all 0.8s ease;
  opacity: 0;
}
.eel-team-grid-social.hover_show:hover .eel-team-social-hover {
  opacity: 0;
  visibility: hidden;
}
.eel-team-grid-social.hover_show:hover ul {
  z-index: 2;
  opacity: 1;
}
.eel-team-grid-social.default {
  padding-top: 20px;
}
.eel-team-grid-social.posi_left, .eel-team-grid-social.posi_right, .eel-team-grid-social.posi_botttom_left, .eel-team-grid-social.posi_botttom_right {
  position: absolute;
  z-index: 1;
}
.eel-team-grid-social.posi_left ul, .eel-team-grid-social.posi_right ul, .eel-team-grid-social.posi_botttom_left ul, .eel-team-grid-social.posi_botttom_right ul {
  flex-direction: column;
  gap: 10px;
}
.eel-team-grid-social.posi_left .eel-team-social-hover a,
.eel-team-grid-social.posi_left ul li a, .eel-team-grid-social.posi_right .eel-team-social-hover a,
.eel-team-grid-social.posi_right ul li a, .eel-team-grid-social.posi_botttom_left .eel-team-social-hover a,
.eel-team-grid-social.posi_botttom_left ul li a, .eel-team-grid-social.posi_botttom_right .eel-team-social-hover a,
.eel-team-grid-social.posi_botttom_right ul li a {
  background: var(--e-global-color-primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.eel-team-grid-social.posi_left .eel-team-social-hover a:hover,
.eel-team-grid-social.posi_left ul li a:hover, .eel-team-grid-social.posi_right .eel-team-social-hover a:hover,
.eel-team-grid-social.posi_right ul li a:hover, .eel-team-grid-social.posi_botttom_left .eel-team-social-hover a:hover,
.eel-team-grid-social.posi_botttom_left ul li a:hover, .eel-team-grid-social.posi_botttom_right .eel-team-social-hover a:hover,
.eel-team-grid-social.posi_botttom_right ul li a:hover {
  background: #000;
}
.eel-team-grid-social.posi_left, .eel-team-grid-social.posi_right {
  top: 16px;
}
.eel-team-grid-social.posi_left.hover_show ul, .eel-team-grid-social.posi_right.hover_show ul {
  transform: translateY(-100%);
}
.eel-team-grid-social.posi_left.hover_show:hover ul, .eel-team-grid-social.posi_right.hover_show:hover ul {
  transform: translateY(-40%);
}
.eel-team-grid-social.posi_botttom_left, .eel-team-grid-social.posi_botttom_right {
  bottom: 16px;
}
.eel-team-grid-social.posi_botttom_left.hover_show ul, .eel-team-grid-social.posi_botttom_right.hover_show ul {
  transform: translateY(50px);
}
.eel-team-grid-social.posi_botttom_left.hover_show:hover ul, .eel-team-grid-social.posi_botttom_right.hover_show:hover ul {
  transform: translateY(-100%);
}
.eel-team-grid-social.posi_left, .eel-team-grid-social.posi_botttom_left {
  left: 16px;
}
.eel-team-grid-social.posi_right, .eel-team-grid-social.posi_botttom_right {
  right: 16px;
}

.eel-popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}

.eel-popup-content {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 50px;
  border-radius: 8px;
  max-width: 550px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.eel-popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.eel-popup-details {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.eel-popup-header {
  margin-bottom: 12px;
}

.eel-popup-name .eel-name {
  font-size: 18px;
  color: #222;
  margin-bottom: 2px;
  margin: 0 0 5px;
}

.eel-popup-designation {
  font-size: 15px;
  color: #888;
  margin-bottom: 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}/*# sourceMappingURL=team-grid.css.map */