.section_title {
  font-size: 35px;
  font-weight: 700;
  color: #fff;

  opacity: 0;
  transform: scale(0.2);
}

.section_title.zoom-active {
  animation: titleZoomIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section_title.no-animation {
  opacity: 1;
  transform: scale(1);
  animation: none !important;
}

@keyframes titleZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.section_title span {
  background: linear-gradient(96deg, #f6d007 0%, #f98419 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

@media (min-width: 0px) and (max-width: 767.98px) {
  .section_title {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .section_title {
    font-size: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section_title {
    font-size: 28px;
  }
}
