.leadership-testimony-section .testimony-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 768px) { /* Assuming md breakpoint is 768px */

}

@media (min-width: 1200px) { /* Assuming xl breakpoint is 1200px */
  .leadership-testimony-section .testimony-container {
    flex-direction: row;
  }
}

.leadership-testimony-section .column {
  width: 100%;
  @media (min-width: 1200px) {
    width: 50%;
  }
}

.leadership-testimony-section .right-column .title {
  color: #004750;
  font-family: "AvenirLTStd-Medium", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-style: italic;
  text-align: justify;
  @media (min-width: 768px) { /* Assuming md breakpoint is 768px */
    font-size: 32px;
  }
  @media (min-width: 1200px) { /* Assuming md breakpoint is 768px */
    text-align: left;
  }
}

.leadership-testimony-section .right-column img {
  object-position: top;
}

.leadership-testimony-section .testimony-container .left-column-sticky {
  position: relative;
  margin-bottom: 48px;
  @media (min-width: 1200px) {
    margin-bottom: 0;
  }
}

.leadership-testimony-section .testimony-container .left-column-sticky .title {
  width: 100%;
  height: auto;
  text-align: center;
  color: #004750;
  font-size: 32px;
  font-family: "AvenirLTStd-Medium", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 72px;
  word-wrap: break-word;
  @media (min-width: 1200px) {
    margin-left: -30px;
  }
}

@media (min-width: 768px) { /* Assuming md breakpoint is 768px */
  .leadership-testimony-section .testimony-container .left-column-sticky .title {
    font-size: 48px;
  }
}

@media (min-width: 1200px) { /* Assuming xl breakpoint is 1200px */
  .leadership-testimony-section .testimony-container .left-column-sticky .title {
    font-size: 64px;
  }
}

.leadership-testimony-section .testimony-container .left-column-sticky .formatted-body {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 200px; /* Distance from the top */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.leadership-testimony-section .testimony-container .left-column-sticky .formatted-body .title {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #004750;
  font-family: "GaspoSlab-Bold", sans-serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  color: transparent;
  text-align: start;
  @media (min-width: 768px) { /* Assuming md breakpoint is 768px */
    font-size: 128px;
    line-height: 128px;
  }
}

.leadership-testimony-section .testimony-container .left-column-sticky .formatted-body .subtitle {
  color: #004750;
  font-family: "AvenirLTStd-Medium", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 32px;
  word-wrap: break-word;
  max-width: 200px;
  @media (min-width: 768px) { /* Assuming md breakpoint is 768px */
    font-size: 48px;
    line-height: 48px;
    max-width: 300px;
  }
}

.leadership-testimony-section .modal-a-report {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 20;
}

.leadership-testimony-section .modal-a-report.show-a-report {
  opacity: 1;
  visibility: visible;
}

.leadership-testimony-section .modal-content-a-report {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 1200px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.leadership-testimony-section .close-a-report {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 12px;
  align-self: end;
  position: relative;
  z-index: 100;
}

.leadership-testimony-section .close-a-report:hover,
.leadership-testimony-section .close-a-report:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}