  .adjust {
      height: 112px;
  }

  .hero {
      width: 100%;
      background: url(../image/banner-hero.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 25dvh;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .about {
      width: 100%;
      background: white;
  }

  .sidebar {
      width: 100%;
      height: 100dvh;
      overflow-y: scroll;
      background: var(--color-2);
  }

  .sidebar-item {
      display: block;
      width: 100%;
      text-decoration: none;
      padding: 15px 10px;
      color: white;
      font-weight: 500;
      letter-spacing: 2px;

      &:hover {
          background: var(--color-3);
      }
  }

  .sidebar-item.active {
      background: rgb(211, 232, 18);
      color: black;
  }

  .content {
      width: 100%;
      height: 100dvh;
      overflow-y: scroll;
  }


  .auto-width {
      width: 20% !important;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(246, 246, 246) !important;
  }

  .auto-width-2 {
      width: 25% !important;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(246, 246, 246) !important;
  }

  .list-group-horizontal {
      width: 100%;
      background: rgb(246, 246, 246) !important;
  }

  .assistant-card {
      border: 1px solid rgb(220, 220, 220);
      background: rgb(246, 246, 246);
      border-radius: 5px;
  }

  @media (max-width:800px) {

      .auto-width,
      .auto-width-2 {
          width: 250px !important;
      }

      .list-group-horizontal {
          width: max-content;
      }
  }

  @media(max-width:992px) {

      .sidebar,
      .content {
          height: max-content;
      }

      .sidebar {
          margin-bottom: 25px;
      }

      #sidebar-adjust {
          display: none;
      }
  }

  @media (max-width:992px) {
      .adjust {
          height: 70px;
      }
  }