/* >>> SECTION-TITLE1 component */
._section-title1 {
  display: flex;
  gap: 1rem;
  padding: 0;
  flex-direction: column;
}

._section-title1 h6 {
  font-size: 1.3rem;
  font-weight: 300;
  background-color: var(--color-clean);
  color: var(--color-primary);
  margin-right: auto;
  padding: .7rem 1.2rem .5rem 1.2rem;
  line-height: 120%;
  border-radius: 5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

._section-title1 h2 {
  position: relative;
  font-size: clamp(2.8rem, 4vw, 4rem);
  padding-bottom: 1.2rem;
  width: fit-content;
  margin-bottom: 24px;
}

._section-title1 h2::after {
  content: '';
  position: absolute;
  width: 4rem;
  height: 4px;
  border-radius: 50px;
  left: 0;
  bottom: 0;
  background-color: var(--color-primary);
}

._section-title1 p {
  font-size: 1.6rem;
  margin-top: 2rem;
}

._section-title1.--center {
  text-align: center;
  align-items: center;
}

._section-title1.--center h6 {
  margin: 0 auto;
}

._section-title1.--center h2::after {
  content: '';
  position: absolute;
  width: 4rem;
  height: 4px;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--color-primary);
}

._section-title1.--right {
  text-align: right;
  align-items: right;
}

._section-title1.--right h2 {
  margin: 0 0 0 auto;
}

._section-title1.--right h6 {
  margin: 0 0 0 auto;
}

._section-title1.--right h2::after {
  left: 100%;
  transform: translateX(-100%);
}

._section-title1.--light {
  color: var(--color-light-default);
}

/* SECTION-TITLE1 component <<< */