.new-page_list li {
  color: var(--gray5);
  margin-bottom: 12px;
  font-weight: 500;
  opacity: 0.85;
  display: flex;
  align-items: start;
  gap: 12px;
}

.new-page_list li::before {
  color: var(--yellow);
  background-color: var(--yellow);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  position: relative;
  top: 9px;
}

.tasks-list {
  counter-reset: slide-counter;
}

.tasks-list .swiper-slide h3 {
  position: relative;
  counter-increment: slide-counter;
}

.tasks-list h3::before {
  content: '';
  display: block;
  position: relative;
  background-image: url(/assets/round.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0px;
  left: 0px;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.tasks-list h3::after {
  content: counter(slide-counter);
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.replacement-swiper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.replacement-swiper div {
  border-radius: 4px;
  padding: 32px 40px;
  background-color: #232226;
  height: unset !important;
  display: flex;
  flex-direction: column;
  flex: 1 1 20%;
}

.replacement-swiper div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #dfb487;
  opacity: 0.2;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.replacement-swiper div:hover:after {
  opacity: 1;
}

.replacement-swiper div > svg:first-child {
  width: 80px !important;
  height: 80px !important;
}

@media (max-width: 800px) {
  .replacement-swiper div {
    padding: 16px 20px;
    flex: 1 1 100%;
  }
}
