.numbered-list.numbered-list--pink {
  background-color: var(--pink-second);
}
@media screen and (max-width: 600px) {
  .numbered-list .numbered-list__content {
    padding: 0;
  }
}
.numbered-list .numbered-list__content ol, .numbered-list .numbered-list__content ul {
  list-style: none;
}
@media screen and (max-width: 600px) {
  .numbered-list .numbered-list__content ol, .numbered-list .numbered-list__content ul {
    padding: 0;
  }
}
.numbered-list .numbered-list__content ol li, .numbered-list .numbered-list__content ul li {
  counter-increment: item;
  position: relative;
  padding-left: 96px;
  min-height: 106px;
}
@media screen and (max-width: 600px) {
  .numbered-list .numbered-list__content ol li, .numbered-list .numbered-list__content ul li {
    padding-left: 58px;
    font-size: 14px;
    margin: 20px 0;
  }
}
.numbered-list .numbered-list__content ol li:before, .numbered-list .numbered-list__content ul li:before {
  content: counter(item);
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  left: 0;
  font-weight: bold;
  -webkit-box-shadow: 0px 4px 30px 0 rgba(0, 0, 0, 0.1882352941);
  -moz-box-shadow: 0px 4px 30px 0 rgba(0, 0, 0, 0.1882352941);
  box-shadow: 0px 4px 30px 0 rgba(0, 0, 0, 0.1882352941);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: var(--pink);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='55' height='10' viewBox='0 0 55 10' fill='none'%3E%3Cpath d='M0 10C0 4.47715 4.47715 0 10 0H45C50.5228 0 55 4.47715 55 10H0Z' fill='%23FB406C'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 55px 10px;
}
@media screen and (max-width: 600px) {
  .numbered-list .numbered-list__content ol li:before, .numbered-list .numbered-list__content ul li:before {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 8px;
    background-size: 80% 6px;
  }
}