.custom-slider {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.custom-slider {
  width: 100%;
  height: 400px;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  display: flex;
  transition: transform 1s ease-in-out;
  position: relative;
}

.slider-item {
  position: absolute;
  width: 40%;
  height: 400px;
  opacity: 0.5;
  filter: blur(5px);
  transform: scale(0.6);
  transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
}

.slider-item.active {
  position: relative;
  width: 100%;
  height: 500px;
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 2;
}

.slider-item.left {
  left: -22%;
  transform: scale(0.6) translateX(-50%);
  z-index: 1;
}

.slider-item.right {
  right: -22%;
  transform: scale(0.6) translateX(50%);
  z-index: 1;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
	background: #00000069;
    padding: 20px;
}

.slider-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  margin-right: 1rem;
  text-decoration: none;
  color: white!important;
  font-weight: bold;
	border-radius:0px!important;
}

.btn-red {
  background-color: red!important;
}

.btn-black {
  background-color: black!important;
}

@media (max-width: 500px) { 
    .btn-black {
		margin-top:10px;
  background-color: black!important;
}
	.custom-slider {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
}
	.slider-content {
  position: absolute;
  bottom: 20%;
  left: 20px;
  color: white;
}
}