@keyframes FirstSlide {
  0% {
    z-index: 3;
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  1% {
    z-index: 1;
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  100% {
    z-index: 1;
    transform: translate(468px, -81px) rotate(15deg) scale(0.71);
  }
}
@keyframes SecondSlide {
  0% {
    z-index: 2;
    transform: translate(250px, -50px) rotate(-15deg) scale(0.93);
  }
  1% {
    z-index: 3;
    transform: translate(250px, -50px) rotate(-15deg) scale(0.93);
  }
  100% {
    z-index: 3;
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes ThirdSlide {
  0% {
    z-index: 1;
    transform: translate(468px, -81px) rotate(15deg) scale(0.71);
  }
  1% {
    z-index: 2;
    transform: translate(468px, -81px) rotate(15deg) scale(0.71);
  }
  100% {
    z-index: 2;
    transform: translate(250px, -50px) rotate(-15deg) scale(0.93);
  }
}

.swiper-slide:nth-child(1n) {
  z-index: 3;
  transform: translate(0px, 0px) rotate(0deg) scale(1);
  /* background-color: rgb(206, 17, 17); */
}
.took1 {
  z-index: 3;
  transform: translate(0px, 0px) rotate(0deg) scale(1);
}
.swiper-slide:nth-child(2n) {
  z-index: 2;
  transform: translate(250px, -50px) rotate(-15deg) scale(0.93);
  /* background-color: rgb(0, 140, 255); */
}
.took2 {
  z-index: 2;
  transform: translate(250px, -50px) rotate(-15deg) scale(0.93);
}
.swiper-slide:nth-child(3n) {
  z-index: 1;
  transform: translate(468px, -81px) rotate(15deg) scale(0.71);
  /* background-color: rgb(10, 184, 111); */
}

.took3 {
  z-index: 1;
  transform: translate(468px, -81px) rotate(15deg) scale(0.71);
}

.swiper {
  width: 100%;
}
.swiper-wrapper {
  width: 450px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.swiper-slide {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.button_carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
