@media screen and (max-width: 865px) {
  .bio-page {
    flex-direction: column;
  }

  #app .bio-page .bio-left,
  #app .bio-page .bio-right {
    width: 100%;
  }

  #app .bio-page .bio-left .bio-desc .bio-words {
    margin-right: 0px;
  }
}

@media screen and (max-width: 465px) {
  .bio-left {
    flex-direction: column;
  }

  .bio-left img {
    align-self: center;
  }

  #app .bio-page .bio-left .bio-desc .bio-words {
    font-size: 16px;
  }
}

.bio-page {
  display: flex;
  justify-content: space-between;

  .bio-left {
    display: flex;
    width: 60%;

    img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      margin-right: 40px;
    }

    .bio-desc {
      .bio-title {
        color: #fff;
        font-size: 30px;
        margin: 20px 0;
      }

      .bio-words {
        color: #fff;
        font-size: 20px;
        letter-spacing: 0.025em;
        margin-right: 80px;
      }
    }
  }

  .bio-right {
    width: 40%;
    margin-top: 20px;

    .client-title {
      font-size: 30px;
      margin-bottom: 20px;
    }

    .client-quote {
      margin-bottom: 20px;
      background-color: #19346e73;
      border-radius: 7px;
      padding: 5px;

      .client-words {
        margin-bottom: 15px;
        font-size: 18px;
      }

      .client-name {
        /* text-indent: 20px; */
        margin-left: 15px;
      }
    }
  }
}

.bg-highlight {
  background-color: #19181e;
  opacity: 0.9;
  padding: 12px;
  border-radius: 6px;
}
