/*
====================
Section Heading
=====================
  */

.section-heading {
  margin-bottom: 48px;
}

/*
====================
Section Heading Type1
=====================
  */

.section-heading:not(.type2) .row1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading:not(.type2) h2 {
  max-width: 600px;
}

.wide .section-heading:not(.type2) h2 {
  max-width: 1000px;
}

.section-heading:not(.type2) p {
  max-width: 700px;
  margin-top: 12px;
  font-size: var(--font-small);
}


/*
====================
Section Heading Type2
=====================
  */

.section-heading.type2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
}

@media (min-width: 732px) {
  .section-heading.type2 {
    text-align: start;
    flex-direction: row;
    justify-content: space-between;
  }

  .section-heading.type2 .row1 {
    max-width: 50%;
  }
}