/* CSS Document */

.toc {
  background: #053185;
  padding: 10px 0 40px 0;
}

.toc h2 {
  color: #fff;
}

.toc .anchor-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
.toc .anchor-link {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
}

.left-border-box {
  border-left: 6px solid #053185;
  padding-left: 30px;
}

.left-border-box h3 {
  color: #053185;
  margin-bottom: 20px;
}

.left-border-box p { 
  font-size: 22px;
  font-weight: 700;
}

.blue-box {
  background: #053185;
  color: #fff;
  margin-top: 30px;
  padding: 20px;
}

table.initiatives td {
  vertical-align: top;
}

table.initiatives th[scope="col"] {
  text-align: center;
}

/*--modal--*/
.fc-blue {
  color: #0a3283;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  margin: 100px auto;
  padding: 20px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  position: relative;
}

.custom-btn {
  width: 100%;
}

.close-btn {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: #fff;
  padding: 30px;
  z-index: 1;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  background: #000;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}