.more-less-content.overflow-text {
  overflow: hidden;
  position: relative;
}
.more-less-content:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 105px;
  background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.more-less-content.overflow-text:before {
  opacity: 1;
  visibility: visible;
}
.more-less-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  color: var(--color-000)!important;
  font-family: var(--main-ff);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 21px 0 0;
  text-decoration: none;
  transition: .3s;
  text-transform: uppercase;
}
.more-less-btn > svg {
  transition: .3s;
}
.more-less-btn > svg > path {
  transition: .3s;
}
.more-less-btn:hover > svg > path {
  stroke: var(--color-20E97B);
}
.more-less-btn.active > svg {
  transform: rotate(180deg);
}
.hidden-btn {
  display: none!important;
}
.more-less-content *:last-child {
  margin-bottom: 0;
}
.html-content h1 {
  color: var(--color-000);
  font-family: var(--main-ff);
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 110%; /* 33px */
  margin: 0 0 20px;
  text-transform: uppercase;
}
.more-less-content > p {
  color: var(--color-000);
  font-family: var(--main-ff);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 0 0 17px;
}
.html-content {
  margin: 0 0 100px;
  padding: 30px 0 0;
}
@media(min-width: 1100px) {
  .more-less-content:before {
    height: 5.47vw;
  }
  .more-less-btn {
    margin: 1.09vw 0 0;
  }
  .html-content h1 {
    font-size: 2.5vw;
    margin: 0 0 1.04vw;
  }
  .more-less-content > p {
    font-size: 0.89vw;
    margin: 0 0 0.89vw;
  }
  .html-content {
    margin: 0 0 5.21vw;
    padding: 1.56vw 0 0;
  }
}
@media(max-width: 1099px) {
  .html-content h1 {
    font-size: 20px;
  }
  .more-less-content > p {
    font-size: 13px;
  }
  .html-content {
    margin: 0 0 32px;
    padding: 0;
  }
}