
.slide-container {
  margin: 0 30px;
  overflow: hidden;
}
.card{
  height: 500px;
  width: 500px;  
}
.card .swiper-slide{
  justify-content: space-between;
}
.card {
  background: whitesmoke;
  border-radius: 8px;
  justify-content: space-between;
}
.card .image-box {
  height: 250px;
}
.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}
.card .profile-details {
  height: 150px;
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
  justify-content: space-between;
}
.profile-details a .name {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: darkblue;
}
.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 50px;
  width: 50px;
  transform: translateY(-40%);
  background: #fff;
  border-radius: 50%;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}

.swiper-pagination-bullet {
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}

