.splide {
  padding: .5rem;
}

.splide__slide {
  transition: all 0.3s ease;
  height: 350px;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.splide__slide a {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  text-decoration: none;
}

.card {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(12,123,189,1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
  border: none !important;
}

.card-content {
  display: flex;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}

.card-content .title {
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.little-white-btn {
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0C7BBD;
  transition: all 0.3s ease;
}

.little-white-btn:hover {
  transform: scale(1.2);
  text-decoration: none;
}

.card:hover {
  background: linear-gradient(180deg, rgba(12,123,189,0) 20%, rgba(12,123,189,1) 100%);
}

.splide__slide:hover {
  transform: scale(0.95);
}

.splide__paginatio
