/* Did You Know banner */

/* Keep navigation at top while allowing it to occupy page space */


/* Did You Know banner */

.acc-did-you-know {
  width: 100%;
  box-sizing: border-box;

  /* 70px clears the fixed W3.CSS navbar */
  padding: 84px 48px 14px 48px;

  background-color: #f44336;
}

.acc-did-you-know p {
  max-width: 1400px;
  margin: 0 auto;

  color: white;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.4;
}


/* Phones */
@media screen and (max-width: 600px) {

  .acc-did-you-know {
    padding: 82px 16px 12px 16px;
  }

  .acc-did-you-know p {
    font-size: 15px;
    line-height: 1.4;
  }
}


