.new-hero {
  display: flex;
  justify-content: space-between;
}

.new-hero .bloc-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-hero h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.05em;
  color: #282745;
}

.new-hero h1 span {
  position: relative;
}

.new-hero h1 span:before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 100%;
  left: -10px;
  top: 0;
  background: linear-gradient(90deg, #DEC1FF 0%, #F2E7FF 99.49%);
  filter: blur(0.5px);
  border-radius: 7px;
  z-index: -1;
}

.new-hero p {
  color: #282745;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  opacity: 0.6;
}

.new-hero .left .button {
  display: flex;
  padding: 10px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 66px;
  background-color: var(--myrtille100);
  border: none;
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
}

.new-hero .numbers {
  display: flex;
  gap: 40px;
}

.new-hero .numbers li {
  display: flex;
  flex-direction: column;
}

.new-hero .numbers .number {
  font-family: 'Garet';
  font-weight: 500;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: -0.05em;
  color: var(--myrtille100);
}

.new-hero .numbers .text-number {
  font-family: 'Garet';
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #9696A0;
}