
:root {
    --base-header-font: "Gill Sans", sans-serif;
    --base-body-font: "Nunito", sans-serif;
    --accent-color: #5b6fff;
  
    --neutral-650: #1f2225;
    --neutral-700: #0d0f12;
    --neutral-800: #0b0c0d;

    --orange-table: #FF9844;
    --blue-table: #6B84F7;
    --green-table: #09A85C;
  }
  
  th,
  td {
    color: white;
    font-family: var(--base-body-font);
    border-collapse: collapse;
    border: 5px solid white;
    padding: 10px;
    background-color: var(--neutral-700);
  }
  
  th {
    background-color: var(--neutral-650);
    font-weight: 550;
    letter-spacing: 2px;
  }
  
  .team-mems {
    font-size: 1.6rem;
    font-weight: 600;
    transform: rotate(330deg);
  }
  @media screen and (max-width: 1000px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
      display: none;
    }
    .sidebar a {
      float: none;
    }
    body > div.container {
      margin-left: 0px;
    }
    body > div.container {
      padding: 1px 20px;
      width: 100%;
      max-width: 100%;
    }
    .header {
      font-size: 36px;
    }
  }
  
  th,
  td,
  tr {
    border-collapse: collapse;
    font-family: "Nunito", sans-serif;
    padding: 10px;
    font-size: 15px;
    color: white;
    text-align: left !important;
  }
  
  table {
    border-collapse: collapse;
    text-align: center;
    margin: auto;
    display: inline-block;
    position: relative;
  }
  
  @media (max-width: 700px) {
    table {
      display: block;
      overflow-x: auto;
    }
  }

  :root {
    --accent-color: var(--green-nav);
  }

  table {
    border: none !important;
    display: block;
    overflow-x: auto;
  }

  th {
    background: none;
  }

  th.rotate {
    /* Something you can count on */
    height: 140px;
    white-space: nowrap;
    background: none;
    border: none;
  }

  th.rotate>div {
    transform: translate(0, 45px) rotate(270deg);
    width: 30px;
  }

  th.rotate>div>span {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
  }

  th,
  td,
  tr {
    border: .5rem var(--black-bg) solid;
  }

  .filled {
    background-color: var(--green-nav);
  }
.table-team {
  margin-top: 2rem;
  margin-bottom: 6rem;
  overflow-x: auto;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-lab {
  background-color: var(--green-table);
}
.bg-it {
  background-color: var(--blue-table);
}
.bg-hp {
  background-color: var(--orange-table);
}







.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  width: min(100%, 80rem);
  padding: 0 2rem;
  justify-content: center;
}
 .card {
	 width: 50%;
	 max-width: 320px;
   height: 10rem;
	 padding-top: 25.5%;
	 position: relative;
	 overflow: hidden;
	 border-radius: 1rem;
	 font-weight: 400;
	 font-size: 0.8rem;
	 line-height: 1.43em;
}
 .card__media {
	 position: absolute;
	 top: 0;
	 left: 0;
	 bottom: 0;
	 right: 0;
	 filter: blur(0);
	 transform: scale(1.1) translateY(5%);
	 transform-origin: center bottom;
	 transition: transform 800ms ease-out, filter 800ms ease-out;
}
 .card:hover .card__media {
	 transform: scale(1.4) translateY(0);
	 filter: blur(2px);
}
 .card__media::before {
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 z-index: 1;
	 content: "";
	 display: block;
	 width: 100%;
	 height: 75%;
	 background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	 opacity: 0.8;
}
 .card__media img {
	 width: 100%;
	 height: 125%;
	 display: block;
	 object-fit: cover;
	 object-position: center;
}
 .card__content {
	 --padding: 1rem;
	 position: relative;
	 z-index: 2;
	 width: calc(100% - var(--padding) * 2);
	 height: calc(100% - var(--padding) * 2);
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-end;
	 padding: var(--padding);
	 color: white;
}
 .card__wrapper {
	 transform: translateY(100%);
	 transition: transform 350ms ease-out;
}
 .card__wrapper h2 {
	 margin: 0;
	 transform: translateY(-100%);
	 font-weight: 200;
	 font-size: 2rem;
	 line-height: 1.3em;
	 transition: transform 150ms ease-out;
}
 .card__wrapper a {
	 background-color: white;
	 display: inline-block;
	 padding: 0.8rem 1rem;
	 border-radius: 0.5rem;
	 text-decoration: none;
	 color: black;
	 font-weight: 500;
}
 .card:hover .card__wrapper {
	 transform: translateY(0);
}
 .card:hover .card__wrapper h2 {
	 transform: translateY(0);
}
.card__description {
  margin-bottom: .5rem !important;
}
.card-container__pi {
  flex-direction: row;
  margin-bottom: 6rem;
}
.card_pi {
  flex: 0 40%;
  max-width: none;
}