/* management */
.management .textContent {
  grid-column: 3/11;
}

.management .titleContainer {
  grid-column: 1/4;
}

.managerWrapper {
  display: inline-grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, auto);
  padding: 0 10%;
}

/* .managerWrapper:not(:first-of-type) {
	margin-top:10%;
} */
/*  uncomment this to create the bio block to the right of the image instead of text wrapping. move the block outside and above of the bio block and comment out other Image section. */
/*
.managerImage {
	grid-row: 1/6;
	grid-column: 1/2;
}
*/
.managerImage {
  grid-column: 1/9;
  grid-row: 1/6;
}

.managerImage img {
  width: 100%;
  border: 1px solid #000;
  max-width: 250px;
  margin-left: 0;
}

.managerBio {
  grid-row: 1/6;
  grid-column: 1/9;
  padding: 5%;
}

.managerTitle {
  color: #13102e;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
  margin-top: 15px;
}

.managerTitle h3 {
  font-size: 1.6em;
  margin-bottom: 0px;
  margin-top: 0px;
  font-family: 'Lato';
}

.managerTitle p {
  font-size: 1.25em;
  margin-bottom: 0;
  margin-left: 0;
}

.managerBio p {
  margin-left: 0;
  margin-right: 0;
}

/* manager drawers */
.wrap-collapsible {
  /* margin-bottom: 1.2rem 0; */
  /* margin-left:-250px; */
  /* font-size: 1.35em; */
}

.wrap-collapsible .content-inner h4 {
  font-size: 1.1em;
  line-height: 1.2em;
  font-family: lato;
  margin-bottom: 0;
  margin-top: 0;
}

.wrap-collapsible .content-inner h5 {
  font-size: 0.85em;
  line-height: 1.2em;
  font-family: lato;
  margin-bottom: 10px;
  margin-top: 0;
  border-bottom: 1px solid #8b281d;
  padding-bottom: 5px;
}

.wrap-collapsible .content-inner p {
  font-size: 1.3em;
  line-height: 1.25em;
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  font-weight: normal;
  font-family: 'Lato light';
  font-size: 1.2rem;
  text-transform: capitalize;
  text-align: left;
  color: #13102e;
  background: transparent;
  cursor: pointer;
  /* border-radius: 7px; */
  transition: all 1.5s ease-out;
}

.lbl-toggle:hover {
  text-decoration: underline;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid #13102e;
  vertical-align: middle;
  margin-right: 0.7rem;
  transform: translateY(-2px);
  transition: transform 0.2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  padding-top: 10%;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: none;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 0.7s;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: transparent;
  /* border-bottom: 1px solid rgba(250, 224, 66, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px; */
  padding: 0.75rem 0rem;
}

/* three manager layout */

.management .textContent {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, auto);
}
.management .titleContainer {
  grid-column: 1/4;
  grid-row: 1/2;
}
.managerWrapper .one {
  grid-column: 1/2;
  grid-row: 2/3;
}
.managerWrapper .two {
  grid-column: 2/3;
  grid-row: 2/3;
}
.managerWrapper .three {
  grid-column: 3/4;
  grid-row: 2/3;
}

/* three column base positioning of bio text.*/

.wrap-collapsible > div.left {
  margin-left: 0%;
  width: 400%;
}
.wrap-collapsible > div.center {
  margin-left: -139%;
  width: 400%;
}
.wrap-collapsible > div.right {
  margin-left: -278%;
  width: 400%;
}

@media (max-width: 900px) {
  .management .textContent {
    grid-template-columns: repeat(4, 1fr);
  }
  .managerWrapper.one {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .managerWrapper.two {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .managerWrapper.three {
    grid-column: 1/3;
    grid-row: 4/5;
  }

  .wrap-collapsible > div.left {
    margin-left: 0%;
    width: 235%;
  }
  .wrap-collapsible > div.center {
    margin-left: -140%;
    width: 235%;
  }
  .wrap-collapsible > div.right {
    margin-left: 0%;
    width: 235%;
  }
}

@media (max-width: 450px) {
  .managerWrapper.one {
    grid-column: 1/5;
    grid-row: 2/3;
  }
  .managerWrapper.two {
    grid-column: 1/5;
    grid-row: 3/4;
  }
  .managerWrapper.three {
    grid-column: 1/5;
    grid-row: 4/5;
  }

  .wrap-collapsible > div.left {
    margin-left: 0%;
    width: 100%;
  }
  .wrap-collapsible > div.center {
    margin-left: 0%;
    width: 100%;
  }
  .wrap-collapsible > div.right {
    margin-left: 0%;
    width: 100%;
  }
}
