main {
  width: 100vw;
  overflow: hidden;
}

.team-owl-carousel .owl-team-carousel .owl-stage-outer {
  overflow: visible;
  background: linear-gradient(0deg, #e9ebe2 calc(50% + 42px), transparent 50%);
  padding-bottom: 30px;
}

.team-owl-carousel .owl-stage {
  display: flex;
}

.team-owl-carousel .owl-stage::before {
  content: '';
  height: 1px;
  background-color: black;
  position: absolute;
  left: -25vw;
  top: calc(50% - 27px);
  width: 200%;
}

.team-owl-carousel .owl-item {
  position: relative;
  height: auto;
  padding: 10px;
  z-index: 99;
}

.team-owl-carousel .owl-item .img-wrapper {
  position: relative;
  height: 100%;
  padding: 20px;
  display: block;
  border: 2px solid transparent;
  transition: all 300ms ease;
  border-radius: 100%;
  margin-bottom: 10px;
}

.team-owl-carousel .owl-item .img-wrapper .socials {
  position: absolute;
  text-align: center;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}

.team-owl-carousel .owl-item .img-wrapper .socials a {
  display: inline-block;
  background: #ffffffd6;
  padding: 10px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transition: all 300ms ease;
  opacity: 0;
  margin: 0 5px;
}

.team-owl-carousel .owl-item .img-wrapper .socials img {
  width: 25px;
  border-radius: 0;
  object-fit: contain;
}
/* .team-owl-carousel .owl-item:not(.active) a {
  border-color: var(--e-global-color-2875037);
  pointer-events: none;
} */
.team-owl-carousel .owl-item:hover .img-wrapper .socials a {
  opacity: 1;
}

.team-owl-carousel .owl-item:hover .img-wrapper {
  border-color: var(--e-global-color-2875037);
}

.team-owl-carousel .owl-item .img-wrapper img {
  display: block;
  border-radius: 100%;
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: grayscale(1);
  transition: all 300ms ease;
}

.team-owl-carousel .owl-item:hover .img-wrapper img {
  filter: grayscale(0);
}

.team-owl-carousel .owl-item span {
  opacity: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: black;
  transition: opacity 300ms ease;
}

.team-owl-carousel .owl-item h4 {
  opacity: 0;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  color: black;
  transition: opacity 300ms ease;
  font-family: var(--e-global-typography-b7dff14-font-family), Sans-serif;
  font-size: var(--e-global-typography-b7dff14-font-size);
  font-weight: var(--e-global-typography-b7dff14-font-weight);
  text-transform: var(--e-global-typography-b7dff14-text-transform);
}

.team-owl-carousel .owl-item.active h4,
.team-owl-carousel .owl-item.active span {
  opacity: 1;
}

.team-owl-carousel .owl-nav {
  display: none;
}

.team-owl-carousel .arrow-left {
  position: absolute;
  cursor: pointer;
  left: -60px;
  bottom: 40px;
}

.team-owl-carousel .arrow-right {
  position: absolute;
  cursor: pointer;
  right: -60px;
  bottom: 40px;
}

@media (max-width: 1440px) {
  .team-owl-carousel .arrow-left {
    left: 15px;
  }

  .team-owl-carousel .arrow-right {
    right: 15px;
  }
}
