
.slide-container{

  width: 95%;
  padding: 15px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card1{
  border-radius: 25px;
  background-color: #FFF;
  /*border: 3px solid #f1f1f1;*/

}
.image-content,
.card1-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: #3184a5;*/
  /*border-radius: 25px 25px 0 25px;*/
/*}*/
/*.overlay::before,*/
/*.overlay::after{*/
/*  content: '';*/
/*  position: absolute;*/
  /*right: 0;*/
  /*bottom: -40px;*/
  /*height: 40px;*/
  /*width: 40px;*/
  /*background-color: #3184a5;*/
/*}*/
/*.overlay::after{*/
/*  border-radius: 0 25px 0 0;*/
/*  background-color: #FFF;*/
/*}*/
.card1-image{
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card1-image .card1-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #3184a5;
}
.name{
  font-size: 12px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #3184a5;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #265DF2;
}

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

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