

  .content-div {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    gap: 5vw;
  }

  .page-content {
    width: 87vw;
    margin-left: 5vw;
  }

  .content-aside {
    width: 17vw;
    padding: 0 1rem 1rem 1rem;
    height: 88vh;

    background-color: #fff;
    border-radius: 4px;
    position: sticky;
    top: calc(2rem + 50px);
    overflow-y: scroll;
  }

 



  .aside-title-box {
    margin: 20px 0;
    color: grey;
  }

  .aside-title-box>div {
    margin: 10px 0;
  }

  .aside-title-box>div>a {
    text-decoration: none;
    color: grey;
  }

  .aside-title-box>div>a:hover {
    color: rgb(242, 66, 66);
    transition: .3s;
  }

  .aside-title-box>div:hover {
    color: rgb(242, 66, 66);
    transition: .3s;
  }

  .aside-title-box .aside-title {
    font-size: 1.2rem;
    border-left: 3px solid #e9947b !important;
    padding: 0px 6px;
    margin-left: -6px;
    display: flex;
    flex-direction: row;
  }

  /* .aside-title-box .aside-title::before {
    background-color: #4c8045;
    border-radius: 50%;
    margin-top: 0.3rem;
    content: '';
    position: absolute;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    left: 4px;
    margin-top: 0.6rem;

  } */

  .aside-title-box .aside-title > a {
    /* font-size: 1.2rem;
    color: rgb(100, 98, 98); */
  }

  .desc-content-box .media-pdf {
    color: #5aa4ae !important;
  }

  .desc-content-box .media-pdf:hover {
    color: #108b96 !important;
  }




  .aside-title-box .aside-sub-title {
    margin-top: 15px;
    font-size: 0.9rem;
    margin-left: 1em;
  }

  .aside-title-box .aside-sub-sub-title {
    font-size: 0.9rem;
    margin-left: 3em;
    margin-top: 10px;
  }

  .aside-title-box .aside-sub-sub-sub-title {
    font-size: 0.9rem;
    margin-left: 4em;
    margin-top: 5px;
  }

  .content-right {
    margin-top: 122px;
    font-family: 'Montserrat';
    width: 54vw;
  }

  .layui-elem-quote {
    /* border-left: 2px solid #35a9be !important; */
    font-weight: 700 !important;
    font-size: 2rem !important;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
  }

  .img-desc {
    margin: 0 auto;
    font-size: 1rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
  }

  .layui-elem-quote > div {
    height: 1.0em;
    width: 0.5em;
    border-left: 5px solid #e9947b !important;
    margin-top: 0.1em;
  }

  .desc-content-box {
    margin: 40px auto 0 auto;
    width: 54vw;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    font-family: 'Times New Roman', Times, serif;
  }

  .desc-content-box a {
    text-decoration: none;
    color: #5aa4ae;
  }

  .desc-content-box a:hover {
    color: #108b96;
  }

  .desc-refer-box {
    margin: 10px auto 0 auto;
    width: 60vw;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
  }

  .row-imgs-box-2 {
    margin: 0 auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .row-imgs-box-2 > img {
    width: 48%;
  }

  .row-imgs-box-3 {
    margin: 0 auto;
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .row-imgs-box-3 > img {
    width: 33%;
  }

  .desc-refer-box > p {
    margin-left: 1em;
    word-break: break-word;
  }

  .desc-content-box > img {
    margin: 0 10%;
    width: 80%;
  }

  .desc-content-box img {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .desc-sub-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 15px;
  }

  .desc-sub-sub-title {
    font-size: 1.3rem;
    font-weight: 700;
  }

  .desc-sub-sub-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .desc-content-box > p {
    text-indent: 2em;
    word-break: break-word;
  }

  .desc-content-box > ol {
    margin-left: 4em;
  }

  strong {
    font-weight: 700;
  } 


  .team-space-holder {
    height: 0;
    width: 100%;
  }

  .card-container {
    align-items: flex-start;
    display: flex;
    min-height: 100%;
    justify-content: center;
    padding: 64px 24px;
  }

  .card-grid {
    display: grid;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: 1200px;
    width: 100%;
  }



  .card-grid {
    grid-template-columns: repeat(6, 1fr);
  }


  .card {
    position: relative;
    background-color: transparent;
  }

  .card:before {
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
  }

  .background {
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition:
      filter 200ms linear,
      transform 200ms linear;
  }

  .card:hover .background {
    transform: scale(1.02);
    filter: none;
  }

  .card-grid:hover>.card:not(:hover) .background {
    filter: brightness(0.6) saturate(1) contrast(1.2) blur(5px);
  }

  .card-grid:hover>.card:not(:hover) .content {
    filter: brightness(0.8) blur(2px);
  }

  .content {
    padding: 24px;
    position: absolute;
    bottom: 10px;
  }

  .category {
    color: #e1e1e1;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .heading {
    color: #e1e1e1;
    font-size: 1.8rem;
  }
