:root {
  --fs-orange: #F37021;
  --fs-blue: #002561;
  --fs-grey: #F0F0F0;
  --fs-med-grey: #ececec;
  --fs-dk-grey: #8a8a8a;
  --c-white: #FFF;
  --c-black: #000;
  --fs-green: #008739;
  --lineheight-default: 1;
}

.font-DB-bold {
  font-family: "DB Heavent Med";
}

.list-level-one {
  counter-reset: section;
  list-style: none;
  padding: 0 0 16px 30px;
}

.list-level-one>.list-item::before {
  counter-increment: section;
  content: counter(section) ".";
  /* margin-left: -17px; */
  color: var(--fs-blue);
  position: absolute;
  left: -18px;
}

.list-level-two {
  counter-reset: sectionTwo;
  list-style: none;
  padding: 0 0 16px 30px;
}

.list-level-two>.list-item::before {
  counter-increment: sectionTwo;
  content: counter(section) "."counter(sectionTwo);
  margin-left: -26px;
  color: var(--fs-blue);
}

.list-item {
  position: relative;
}

.list-item .head {
  display: inline;
  font-family: 'DB HEAVENT MED';
  color: var(--fs-blue);
  font-size: 1.468rem;
  line-height: 1;
}

.list-item .sub-head {
  font-size: 1.468rem;
  text-decoration: underline;
  font-style: italic;
}

.list-alphabet {
  list-style-type: lower-alpha;
  padding: 0 0 8px 30px;
}

.font-underline {
  text-decoration: underline;
}

.list-lowerLatin {
  list-style: lower-roman;
  padding: 0 0 8px 30px;
}

.container,
.container p {
  line-height: var(--lineheight-default);
  margin-bottom: 8px;
}

.list-level-one>.list-item,
.list-level-two>.list-item {
  padding-bottom: 16px;
}

.link-email {
  color: var(--fs-orange);
}

.contactAddr-wrapper {
  background: #ebebeb;
  border-radius: 10px;
  padding: 10px 20px 20px;
  margin: 20px 0 0;
  width: fit-content;
  border: 3px solid #e5e4e4;
  background: #f4f4f5;
}

.contactAddr-wrapper .depName {
  font-family: 'DB HEAVENT MED';
  border-bottom: 3px solid #e5e4e4;
  padding: 10px 0;
}

.contactAddr-wrapper .compName {
  padding: 10px 0 0;
  color: var(--fs-blue);
}

.contactAddr-wrapper .addr,
.contactAddr-wrapper .email {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 10px 0 0;
  padding-inline-start: 10px;
}

.addr .mdi {
  color: #ff0000;
}

.email .mdi {
  color: #ffb70d;
}


@media (max-width: 560px) {
  .card-body>.container {
    height: 50vh;
    overflow: scroll;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    scrollbar-color: #979494 #979494;
    scrollbar-width: thin;
  }
}