.topppa-section-title-wrapper {
  display: flex;
  width: 100%;
}

.topppa-section-title-content {
  width: 100%;
}

.topppa-section-small-title {
  display: inline-block;
  color: var(--topppa-color-primary);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
}
.topppa-section-small-title.icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topppa-section-small-title.line {
  display: inline-block;
  vertical-align: middle;
}
.topppa-section-small-title.line::before, .topppa-section-small-title.line::after {
  content: "";
  width: 4rem;
  height: 0.2rem;
  background-color: #d7d7d7;
  display: inline-block;
  vertical-align: middle;
}
.topppa-section-small-title.line::before {
  margin-right: 15px;
}
.topppa-section-small-title.line::after {
  margin-left: 15px;
}

.topppa-section-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--topppa-color-secondary);
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}
.topppa-section-title .topppa-section-typewrite {
  display: inline;
  position: relative;
}
.topppa-section-title .topppa-section-typewrite .topppa-section-wrap {
  display: inline;
  white-space: normal;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.topppa-section-title .topppa-section-typewrite .topppa-section-cursor {
  display: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-left: 2px;
  animation: blink 0.7s infinite;
}
.topppa-section-title .topppa-section-typewrite .topppa-section-cursor:not(:empty) {
  display: inline-block;
}
.topppa-section-title.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
.topppa-section-title.animate__slow {
  animation-duration: 2s;
}
.topppa-section-title.animate__fast {
  animation-duration: 0.5s;
}

.topppa-strong-image {
  background-image: url("' . esc_url($image_url) . '");
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.topppa-section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 2rem;
}

.topppa-gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.topppa-gradient-linear {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.topppa-gradient-radial {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.topppa-strong-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.topppa-strong-gradient-linear {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.topppa-strong-gradient-radial {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.topppa-strong-image {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .topppa-section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .topppa-section-title {
    font-size: 2.4rem;
  }
}