.team-block {
  text-align: center;
  /* Modal Styles */
  /* Arrow Navigation */
}
.team-block .team-block-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  background-color: white;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .team-block .team-block-top-content {
    padding: 120px 0 140px 0;
  }
}
.team-block .main-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline;
  padding: 0 10px;
}
.team-block .sub-text {
  font-size: 1.5rem;
  color: #333;
}
.team-block .team-block-cards-wrapper {
  margin-top: -50px;
  padding-left: 7px;
}
.team-block .team-block-cards-wrapper:not(.swiper-disabled) .team-block-cards {
  justify-content: flex-start;
}
.team-block .team-block-cards {
  display: flex;
  justify-content: center;
}
.team-block .slider-swiper-arrow {
  margin-right: 15px;
}
.team-block .team-card {
  background-color: #212121;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
  text-align: left;
  margin: 0px 10px;
}
.team-block .team-card:hover {
  transform: translateY(-10px);
}
.team-block .team-card-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}
.team-block .team-card-info {
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 40px;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.team-block .team-card-name {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 17px 0;
  font-family: 'Space Grotesk', sans-serif;
}
.team-block .team-card-job {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.team-block .plus-icon {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 16px;
  color: white;
}
.team-block .team-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
}
.team-block .separator {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 1px;
  margin: 24px 0px;
}
.team-block .team-modal-content {
  background-color: #212121;
  color: #fff;
  padding: 40px 40px 80px;
  border-radius: 8px;
  max-width: 670px;
  width: 90%;
  position: relative;
  text-align: left;
}
.team-block .team-modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.team-block .modal-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 48px;
}
.team-block .modal-card-job {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FFF;
}
.team-block .modal-card-description {
  font-size: 1rem;
  line-height: 1.6;
}
.team-block .main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team-block .team-nav-arrow {
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .team-block .team-block-cards {
    justify-content: inherit;
  }
  .team-block .team-card {
    max-width: 327px;
    margin: 0px;
  }
  .team-block .team-card:hover {
    transform: none;
  }
  .team-block .team-card .team-card-info {
    padding: 24px;
  }
  .team-block .team-card-name {
    font-size: 24px;
    margin-bottom: 9px;
  }
  .team-block .plus-icon {
    bottom: 24px;
    right: 24px;
  }
  .team-block .team-modal-content {
    top: 25%;
    padding: 24px 24px 40px;
  }
  .team-block .team-modal-overlay .modal-card-name {
    margin-bottom: 16px;
    margin-top: 40px;
  }
  .team-block .team-modal-close {
    top: 24px;
    right: 24px;
  }
}
/*# sourceMappingURL=./team-block.css.map */