.info {
  text-align: center;
}

.slide-container {
  width: 100%;
}

.slide-content {
  overflow: hidden;
  border-radius: 25px;
}

.card {
  border-radius: 25px;
  background-color: #FFF;
}

.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: #4070F4;
  border-radius: 25px 25px 0 25px;
}

.overlay::before, .overlay::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

.swiper-navBtn {
  transition: color 0.3s ease;
}

.swiper-pagination-bullet {
  opacity: 1;
}

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

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

