.answer-swiper {
  color: #fff;
  letter-spacing: 4px;
  font-size: 1.7rem;
  font-weight: 800;
  padding-top: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.strokeText {
  width: max-content;
  color: #f8da0f;
  font-size: 1.7rem;
  display: block;
  margin: 10px 0;
}
.strokeTexts {
  width: max-content;
  color: #8e044e;
  font-size: 1.7rem;
  display: block;
  margin: 10px 0;
}

.strokeText::before {
  content: attr(data-stroke);
  position: absolute;
  color: white;
  -webkit-text-stroke: 5px white;
  z-index: -1;
}

.strokeTexts::before {
  content: attr(data-stroke);
  position: absolute;
  color: white;
  -webkit-text-stroke: 2px white;
  z-index: -1;
}

.wrapper {
  height: 60px;
  overflow: hidden;
  position: relative;
}

.text-swiper {
  width: max-content;
  height: 60px;
  margin-top: -10px;
}

.wrapper .swiper-slide {
  text-align: center;
  font-size: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
  opacity: 0.8;
}

.wrapper .swiper-slide-active, .wrapper .swiper-slide-duplicate-active {
  transform: scale(1);
  opacity: 1;
  text-shadow: unset;
}


