@keyframes type-cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.text-typing .typing-area__container {
  position: relative;
}
.text-typing .typing-area__container .section_title {
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}
.text-typing .typing-area__container .section-description {
  text-align: center;
}
.text-typing .typing-area__container .typing-area {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.text-typing .typing-area__container .typing-area .placeholder {
  display: none;
}
.text-typing .typing-area__container .typing-area .type-cursor {
  -webkit-animation: type-cursor 1s infinite;
  animation: type-cursor 1s infinite;
  position: relative;
  font-weight: 400;
}
.text-typing .typing-area__container .typing-area .type-stars {
  display: inline-block;
}
.text-typing .typing-area__container .typing-area .type-stars img {
  max-width: 100%;
}
