/* ----------------
Focus / Accessibility
---------------- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:none;
  box-shadow:var(--focus-ring);
  border-radius:2px;
}

/* Do NOT show custom focus ring for mouse users */
:focus:not(:focus-visible){
  outline:none;
  box-shadow:none;
}





/* Containers */







.dnd-section {
  padding-bottom: 30px;
  padding-top: 30px;
}

.body-container__homepage .dnd-section:nth-child(odd) {
  background-color: #fa0000;
}

@media (min-width: 576px){
  .page-center,
  .dnd-section > .row-fluid{
    max-width: 767.9999999979999px;
  }
}
@media (min-width: 768px){
  .page-center,
  .dnd-section > .row-fluid{
    max-width: 991.999999998px;
  }
}
@media (min-width: 992px){
  .page-center,
  .dnd-section > .row-fluid{
    max-width: 1199.999999996px;
  }
}
@media (min-width: 1200px){
  .page-center,
  .dnd-section > .row-fluid{
    max-width: 100%;
  }

}





.content-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  padding: 0 60px;
}

@media (max-width: 1200px) { .content-section { padding: 0 40px; } }
@media (max-width: 991px) {
  .content-section { width: 100%; padding: 20px; }
}

.content-block {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  line-height: normal;
  color: var(--highlight-red);
  margin: auto 0;
  padding: 20px 30px 0 30px;
}
@media (max-width: 991px) {
  .content-block {
    width: 100%;
    padding: 30px;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.accent-heading,
.heading-with-marker,
.lead,
.section-header {
  color: var(--color-brand-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 162.5%;
  letter-spacing: 0.48px;
}

.heading-with-marker {
  align-self: start;
  display: flex;
  padding-bottom: 5px;
}

.section-marker,
.pre-box {
  display: inline-block;
  width: 10px;
  height: 25px;
  background-color: var(--color-brand-primary);
  margin-right: 15px;
  vertical-align: middle;
}

.section-cta { margin-top: 20px; }





.body-container__website .dnd-section:nth-child(odd) {
  background-color: {typography=, tables=, buttons=, spacing=, footer=, global_colors=, header=, forms=}
}