.question-part-wrapper {
  width: 100%;
}

.questions-about-one-box {
  border-top: 1px solid var(--black);
  padding: 20px 0 20px 0;
  list-style-type: none;
  position: relative;
  transition: 1s;
  transform: translateZ(0);
  cursor: pointer;
  box-sizing: border-box;
}

.questions-about-one-box:last-child {
  border-bottom: 1px solid var(--black);
}

.questions-about-one-box p {
  display: none;
  margin: 20px 0 20px;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.32px;
  color: var(--dark-font-hover-color);
}

.questions-about-one-box a {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.32px;
  color: var(--dark-font-hover-color);
  cursor: pointer;
  transition: var(--base-transition);
}

.questions-about-one-box a:hover {
  opacity: 0.8;
}

.questions-about-one-box:hover h2 {
    color: var(--dark-font-hover-color);
}
.questions-about-toogle-button-first-line, .questions-about-toogle-button-second-line
{
  transition: 0.2s all;
}
.questions-about-one-box:hover .questions-about-toggle-button .questions-about-toogle-button-first-line,
.questions-about-one-box:hover .questions-about-toggle-button .questions-about-toogle-button-second-line
{
  opacity: 0.8;

      background-color: var(--dark-font-hover-color);

}

.questions-about-one-box h2 {
  margin: 0;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.36px;
  position: relative;
  padding-right: 60px;
  box-sizing: border-box;

  @media(max-width: 800px) {
    padding-right: 50px;
  }
}

.questions-about-toggle-button {
  position: absolute;
  top: 0px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-family: Neue Montreal;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  background-color: transparent;
  padding: 0;
  height: 100%;
  width: 32px;
  display: flex;
  justify-content: center;
  flex-direction: column;

  @media(max-width: 800px) {
    right: 0px;
  }
}

.questions-about-toogle-button-first-line {
  height: 1px;
  width: 23px;
  background-color: var(--black);
  position: relative;
}

.questions-about-toogle-button-second-line {
  height: 1px;
  width: 23px;
  background-color: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
}