/* :root {
  --btn-primary: #153f7b;
  --color-primary: #555555;
  --title-font-family: "Ngetic Modern Regular";
  --content-font-family: "Raleway";
  --highlight-font-family: :
} */

.section_title {
  font-family: var(--title-font-family);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section_title.animate {
  opacity: 1;
}

.section_title span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.section_title.animate span {
  transform: translateY(0%);
}

 
