.page-container {
    position: relative;
    z-index: -2;
    width: 100%;
    /* background-image: url(../img/bg-title-page/expert_page_bg.webp); */
    background-image: var(--page-bg);
    background-size: cover;
    margin-bottom: 60px;
    padding-top: 12.1%;
    aspect-ratio: 192 / 35;
  }
  .page-container .page-main-title {
    position: relative;
    font-weight: 500;
    font-size: 36px;
    color: rgba(15, 15, 15, 1);
    width: max-content;
    max-width: 100%;
    padding: 15px 36px 15px 0;
  }
  .page-container .page-main-title span {
    position: relative;
  }
  .page-description {
    font-size: 1.25rem;
  }
  .page-container .page-main-title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -1000px;
    background-color: rgba(237, 237, 237, 0.7);
    border-radius: 0 8px 8px 0;  
  }
  @media (max-width: 1200px) {
    .page-container {
      padding-top: 9.1%;
    }
  }
  @media (max-width: 767px) {
    .page-container {
      aspect-ratio: unset;
      background-image: none;
      margin-bottom: 36px;
      padding-top: 24px;
    }
    .page-container .page-main-title {
      padding: 0;
      font-size: 24px;    
    }
    .page-main-title::before {
      display: none;
    }
  }