How to remove text- decoration on my btn?

So I have simple button and I dont know why but text-decoration: none is not working here. I want to remove underline of the word “Resume”

No changes in style helped

.bn632-hover {
  display: flex;
  align-items: center;
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 40px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  transition: all .4s ease-in-out;
}

.bn632-hover span {
  text-decoration: none;
}

.bn632-hover.bn22 span {
  text-decoration: none;
}

.bn632-hover:hover {
  background-position: 100% 0;
  transition: all .4s ease-in-out;
}

.bn632-hover:focus {
  outline: none;
}

.bn632-hover.bn22 {
  background-image: linear-gradient(to right, #68DF99, #65B56D, #02F243, #52830A);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}
<button class="bn632-hover bn22">
    <img src={download} alt="Download" />
    <span data-i18n="resume">{translations['resume'] || 'Resume'}</span>
</button>