.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  margin: 0 auto;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
}
/* .card{
  width: 320px;
  border-radius: 25px;
  background-color: #cecece;
  margin: 0 auto;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
} */
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #cecece;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #cecece;
}
.overlay::after{
  background-color: #fff;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #cecece;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
  margin: 10px 0;
}
.button{
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #333;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #666;
}

.swiper-navBtn{
  color: #333;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #666;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 20px;
}
.swiper-button-prev{
  left: 20px;
}
.swiper-pagination-bullet{
  background-color: #333;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #666;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.zoom{
  transition: transform .2s;
  cursor: pointer;
}

.zoom:hover {
  transform: scale(1.05);
}
