.team-slider .slick-slide {
  display: flex !important;
}

.team-profile-slider .team-wrapper {
  display: flex;
  gap: 88px;
  align-items: center;
  margin: 0 auto;
}
.team-arrow{
  cursor: pointer;
}
.team-arrow svg{
  width: 50px;
}

@media (max-width: 767px) {
  .team-profile-slider .team-wrapper {
    flex-direction: column;
    gap: 30px;
  }
    .team-arrow svg{
      width: 30px;
    }
}

.team-profile-slider .team-image {
  flex: 0 0 369px;
}

.team-profile-slider .team-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  .team-profile-slider .team-image {
    flex: unset;
  }
}

.team-profile-slider .team-content {
  max-width: 732px;
  width: 100%;
}
.dark-bg .team-profile-slider .team-content p{
  color: white;
  line-height: 28px;
}
 .team-profile-slider .team-content p {
  line-height: 28px;
}

.team-profile-slider .team-content .team-name {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-profile-slider .team-content .team-position {
  font-size: 18px;
  font-weight: 400;
  color: #000000B3;
  margin-bottom: 20px;
  line-height: 25.2px;
  margin-top: 15px;
}
.dark-bg .team-profile-slider .team-content .team-position{
  color: #FFFFFFB3;
}

.team-profile-slider .team-content .team-desc {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

@media (max-width: 767px) {
  .team-profile-slider .team-content .team-desc {
    font-size: 18px;
  }
    .team-profile-slider .team-content p {
      line-height: normal;
    }
}

.team-profile-slider .team-content .team-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-profile-slider .team-content .linkedin-link {
  font-size: 18px;
  color: #141415;
  text-decoration: none;
  font-weight: 500;
}

.team-profile-slider .team-content .linkedin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #C8C8C8;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-profile-slider .team-content .linkedin-icon svg {
  transition: transform 0.3s ease;
}

.team-profile-slider .team-content .linkedin-icon:hover svg {
  transform: translateX(4px);
}

.team-profile-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  max-width: 369px;
  width: 100%;
}

.team-profile-slider .slick-dots li {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
  margin: 0;
}

.team-profile-slider .slick-dots li button {
  display: none;
}

.team-profile-slider .slick-dots li.slick-active {
  background: #ffffff;
}
.team-profile-slider .team-cta{
  margin-top: 15px;
}
.team-profile-slider .team-cta a{
  text-transform: math-auto;
  font-weight: 400;
}
.team-profile-slider .team-cta svg{
  width: 35px;
  height: 35px;
}
.dark-bg .team-profile-slider .team-cta svg path{
  fill: var(--primary-green);
}
.dark-bg .team-profile-slider .team-cta svg circle{
  stroke: white;
}