#header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}
#header li {
  list-style-type: none;
}
#header a {
  color: black;
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-inline-end: auto;
  margin-block-start: auto;
  margin-block-end: auto;
}
.header-bar--left {
  z-index: 999;
  width: 48px;
}
.header-bar--right {
  z-index: 999;
  width: 0;
  text-align: left;
}
#ananda_logo-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  height: var(--height-header-fluid);
}
svg#ananda_logo {
  position: static;
  margin: auto;
  max-width: var(--ananda-logo--max-width);
  width: 100%;
}
#overlay {
  height: 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  z-index: 3;
  visibility: hidden;
  position: fixed;
  overflow-y: scroll;
  background-color: white;
}
#overlay ul {
  background-color: white;
  height: 100%;
  place-items: center;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;
  padding-left: 0;
  padding-top: var(--height-header-fluid);
  overflow-y: show;
}
#overlay ul li.grid_menu-link {
  margin-block-start: auto;
  margin-block-end: auto;
  height: 100%;
  width: 100%;
  padding: 0;
  padding-left: var(--m-2);
  padding-right: var(--m-2);
  border-bottom: 0.5px solid black;
  line-height: 2;
}
#overlay ul li.grid_menu-link a {
  color: black;
  text-decoration: none;
  font-size: 1.4rem;
}
#overlay ul li:last-of-type {
  border-bottom: none;
}
@media (min-width: 37.5rem) {
  #overlay ul {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--m-2);
    padding-top: var(--height-header-fluid);
  }
  #overlay ul li.grid_menu-link:nth-of-type(odd) {
    border-right: 0.5px solid black;
  }
  #overlay ul li.grid_menu-link:nth-last-of-type(2) {
    border-bottom: none;
  }
  #overlay ul li.grid_menu-link {
    padding: var(--m-2);
  }
}
.chpt-1, .chpt-2, .chpt-3, .chpt-4, .chpt-5, .chpt-6 {
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 37.5rem) {
  #header h3 {
    max-inline-size: 24rem;
  }
  h3.toc-heading {
    max-inline-size: 24rem;
  }
}
.chpt-1::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/1-welcome-to-impact-investing.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
.chpt-2::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/2-about-ananda-ventures.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
.chpt-3::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/3-our-impact-strategy.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
.chpt-4::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/4-ananda-impact-carry-model.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
.chpt-5::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/5-the-portfolio-showcase.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
.chpt-6::after {
  content: "";
  /* NOTE: Using the background-image and its related properties to add the SVG content */
  background-image: url("/wp-content/uploads/2022/10/6-whats-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  margin-inline-end: 0;
  min-width: var(--chpt-after--width);
  min-height: var(--chpt-after--height);
  max-height: var(--toc--icon);
  height: 50%;
}
@media screen and (max-width: 37.5rem) {
  .grid_menu-link > a > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--m-1-5);
  }
}
.grid_menu-link > a:hover::after {
  transition: all 0.4s ease-in-out;
  transform: scaleX(105%) scaleY(105%);
}
#overlay-button {
  position: relative;
  padding: 22px 10px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
#button--back-to-website {
  margin-right: auto;
  visibility: hidden;
}
@media (min-width: 43.75rem) {
  #overlay-button::before {
    content: 'Table of contents';
    color: #000000;
    text-transform: uppercase;
    font-size: var(--overlay-button-before);
    font-family: 'ananda_rational_displaymedium', sans-serif;
    line-height: 1;
  }
  #button--back-to-website {
    visibility: visible;
  }
}
#overlay-button span {
  height: 1px;
  width: 24px;
  border-radius: 2px;
  background-color: black;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
#overlay-button span:before {
  top: -8px;
}
#overlay-button span:after {
  top: 8px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 1px;
  width: 24px;
  border-radius: 2px;
  background-color: black;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked ~ #overlay {
  visibility: visible;
}
input[type="checkbox"]:checked ~ #overlay-button {
  position: relative;
}
input[type="checkbox"]:checked ~ body {
  overflow: hidden;
}
input[type="checkbox"]:checked ~ #overlay-button:hover span, input[type="checkbox"]:checked ~ #overlay-button span {
  background: transparent;
}
input[type="checkbox"]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(5px, 6px);
}
input[type="checkbox"]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
