.TextComp-PC{
  display: block;
}
.TextComp-Mobile{
  display: none;
}
.text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.text-wrapper .text-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.239;
  display: block;
  word-break:break-word;
}

.text-wrapper .text-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.585;
  padding-top: 4px;
  display: block;
  word-break:break-word;

}

.text-wrapper .text-inner{
  width: 100%;
}
@media screen and (max-width: 991px) and (min-width: 767px) {
  .TextComp-PC{
    display: none;
  }
  .TextComp-Mobile{
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .TextComp-PC{
    display: none;
  }
  .TextComp-Mobile{
    display: block;
  }
  .text-wrapper .text-title {
    font-size: 20px;
    line-height: 1.75;
  }

  .text-wrapper .text-subtitle {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
    padding-top: 0;
  }
  .text-wrapper .width-container{
    width: 100% !important;
  }
}
