  .accordion div.title {
    letter-spacing: -0.025em;
    position: relative;
    border-top: 1px solid hsla(0, 0%, 28%, 0.3);
    font-size: 12px;
    font-style: italic;
    font-family: "Copernicus W01";
    font-weight: 600;
    padding: 10px 25px 10px 15px;
  }

  .accordion div.title:after {
    content: "\f067";
    font-family: "FontAwesome";
    padding-left: 5px;
    padding-right: 5px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 0.5;
    font-weight: 100;
    font-style: normal;
    color: hsla(0, 0%, 0%, 0.5);
    position: absolute;
    right: 3px;
    top: 37%;
    transition: all 0.5s ease;
    transform: rotateZ(90deg);
    transform-origin: center;
    transition-property: transform;
  }

  .accordion div.title.open:after {
    content: "\f068";
    transition: all 0.5s ease;
    transform: rotateZ(0deg);
    transform-origin: center;
    transition-property: transform;
  }

  .accordion div.title+div {
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .accordion div.title+div.open {
    overflow: visible;
    max-height: 15000px;
    transition: all 0.75s ease;
  }

  .accordion div.title+div>div {
    padding: 10px;
    margin-bottom: 10px;
  }

  .accordion div.title+div>div p {
    margin: 0;
  }

  .accordion div.title+div>div p+p {
    margin-top: 0.75em;
  }

  .accordion div.title+div>div p+dl {
    margin-top: 0.75em;
  }

  .accordion div.title+div>div p+table {
    margin-top: 0.75em;
  }

  .accordion div.title+div>div p+.flex img {
    margin-top: 0.75em;
  }

  .accordion div.title+div>div p+ul {
    margin-top: 0.75em;
  }

  hr {
    border: 0;
    border-top: 1px solid hsla(0, 0%, 28%, 0.3);
    margin: 0;
  }

  .accordion-group>div.title {
    font-family: "Copernicus W01";
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    font-style: italic;
    line-height: 1.25;
    margin: 30px 0 5px 0;
    padding: 0 0 0 15px;
  }

  .accordion-group>div.title span {
    font-family: "Foundry Sterling W01";
    font-size: 12px;
    font-weight: 600;
  }

  .accordion-group>div.title span:before {
    content: "Expand all";
    transition: all 0.5s ease;
  }

  .accordion-group>div.title.open span:before {
    content: "Collapse all";
    transition: all 0.5s ease;
  }

  .accordion-group>div.title span:after {
    content: "\f067";
    font-family: "FontAwesome";
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.4em;
    vertical-align: text-bottom;
    line-height: 1;
    font-weight: 100;
    color: hsla(0, 68%, 45%, 1);
    font-style: normal;
    transition: all 0.5s ease;
    transform: rotateZ(90deg);
    transform-origin: center;
    transition-property: transform;
    display: inline-block;
  }

  .accordion-group>div.title.open span:after {
    content: "\f068";
    transition: all 0.5s ease;
    transform: rotateZ(0deg);
    transform-origin: center;
    transition-property: transform;
  }


  .accordion-group>div.title:hover,
  .accordion-group>div.title:focus {
    cursor: pointer;
  }

  .accordion-group>div.title:hover span,
  .accordion-group>div.title:focus span {
    color: hsla(0, 68%, 45%, 1);
  }

  .accordion div.title:hover,
  .accordion div.title:focus {
    background-color: hsla(198, 100%, 20%, 0.07);
    cursor: pointer;
  }

  @media all and (max-width: 767px) {
    .accordion div.title+div.open {
      max-height: 100% !important;
      transition: all 1.5s ease;
    }

    .flex.qanda.col-6.a-left>*:nth-child(6n) {
      margin-right: 0;
    }

    .flex.m-col-2.a-left>* {
      margin-right: 3.910%;
    }

    .flex.m-col-2.a-left>*:nth-child(2n) {
      margin-right: 0;
    }

    .accordion div.title+div>div {
      padding: 10px 0;
    }
  }