.SectionHeader {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2.66px;
}
@media screen and (max-width: 980px) {
  .SectionHeader {
    font-size: 14px;
  }
}
.SectionHeader-Dot {
  display: inline-block;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background-color: #0d366d;
}
@media screen and (max-width: 980px) {
  .SectionHeader-Dot {
    width: 8px;
    height: 8px;
  }
}
.SectionHeader-Text {
  margin-left: 18px;
  margin-right: 24px;
  width: auto;
  height: 14px;
}
.SectionHeader-Dash {
  display: inline-block;
  border-radius: 3px;
  width: 65px;
  height: 3px;
  background-color: #0d366d;
}
