h1,h2,h3,h4,h5,h6 {
  margin-bottom: 0;
  color: var(--color-text-heading);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold-heading);
}

h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child {
  margin-top: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2,
h3,
h4,
h5,
h6 {
  color: #2d4c6b;
}

h1 {
  margin: 0;
  font-size: var(--font-size-title-huge);
}

h2 {
  margin-top: 48px;
  font-size: var(--font-size-heading-huge);
}

h3 {
  margin-top: 48px;
  font-size: var(--font-size-heading-large);
}

h4 {
  margin-top: 48px;
  font-size: var(--font-size-heading);
}

h5 {
  margin-top: 48px;
  font-size: var(--font-size-heading-small);
}

h6 {
  margin-top: 48px;
  font-size: var(--font-size-heading-tiny);
  font-style: normal;
}

hr {
  border: 0;
  border-bottom: 1px solid var(--color-border);
}

.paragraph--type--text hr {
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .paragraph--type--text hr {
    margin-bottom: 60px;
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .paragraph--type--text hr {
    margin-bottom: 48px;
    margin-top: 48px;
  }
}
@media (max-width: 424px) {
  .paragraph--type--text hr {
    margin-bottom: 32px;
    margin-top: 32px;
  }
}

a {
  text-decoration: underline;
  color: var(--link-color-text);
}
a:hover {
  text-decoration: underline;
  color: var(--link-color-text-hover);
}
a:focus {
  text-decoration: underline;
  color: var(--link-color-text-hover);
  outline: auto blue;
}

h1 > a,h2 > a,h3 > a,h4 > a,h5 > a,h6 > a {
  text-decoration: none;
}

strong,
b {
  font-weight: var(--font-weight-bold);
}

p {
  margin: 15px 0;
  line-height: 175%;
}

h1 + p,h2 + p,h3 + p,h4 + p,h5 + p,h6 + p {
  margin-top: 12px;
}

blockquote {
  border-left: 4px solid var(--color-indivisible-lite-blue);
  font-style: italic;
  margin: 15px 0;
  padding-left: 2rem;
  text-indent: 0;
}

h1.page-title,
.page-title {
  color: var(--color-indivisible-black);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-title-huge);
  font-weight: var(--font-weight-bold-heading);
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 90px;
  margin-top: 90px;
  position: relative;
}
@media (max-width: 767px) {
  h1.page-title,
.page-title {
    margin-top: 48px;
  }
}

.page-title:after {
  content: "";
  background: #6c9fc2;
  width: 86px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -20px;
}

.text-max {
  max-width: 880px;
}

p.text-large {
  font-size: var(--font-size-body-huge);
  line-height: 36px;
}

.text-content {
  max-width: 960px;
}

.paragraph--type--map-embed .text-content {
  max-width: 100%;
}