.triple-slider {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.register-btn2 {
  background-color: #33b2e0;
  color: white;
  padding: 10px 10px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
  animation: shrink 0.5s infinite alternate;
}

.register-btn {
  background-color: #134152;
  color: white;
  padding: 10px 20px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: transform 0.1s ease-in-out;
  animation: shrink 0.5s infinite alternate;
}

.register-btn:hover,
.register-btn:active {
  animation: none;
  transform: scale(1);
}

@keyframes shrink {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

.register-btn2 {
  background-color: #113a4a;
  color: white;
  padding: 10px 10px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
  animation: shrink 0.5s infinite alternate;
}

.register-btn2:hover,
.register-btn2:active {
  animation: none;
  transform: scale(1);
}

@keyframes shrink {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}