
body {
  background-color: var(--bg-color);
  line-height: 1.8rem;
  vertical-align: middle;
}

/* .mx-auto:first-child {
  margin-right: 1rem !important;
}
.mx-auto:last-child {
  margin-left: 1rem !important;
} */

#projects-header {
  padding: 13rem 1rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

#projects-container {
  margin-bottom: 3rem;
}

.project-info-col {
  position: relative;
}

.project-info {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.3rem;
  width: 100%;
  /* transition: all .2s ease-out; */
}

.project-info h1 {
  font-family: "Neusa Sans", sans-serif;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 3.5rem;
  font-weight: 600;
}

.project-info table {
  margin-top: 2rem;
  width: 100%;
  table-layout: fixed;
}
.project-info td {
  vertical-align: top;
  line-height: 1.3rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}
.project-info tr > td:first-child {
  width: 120px;
  font-weight: bold;
}

.project-detail img {
  max-width: 100%;
}

.project-detail p {
  margin: 3rem 0 3rem 0;
}
.project-detail p:last-child {
  margin-bottom: 0;
}

.project-cta {
  padding: .2rem .8rem;
  border: 1px solid;
  border-radius: 4px;
  transition: all .3s ease-in-out;
  position: relative;
  display: inline-block;
  color: var(--gray1);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
}
.project-cta:hover {
  background-color: var(--gray1);
  color: var(--bg-color);
  text-decoration: none;
}

@media screen and (max-width: 992px) {

  #projects-header {
    padding: 10rem 1rem 0 1rem;
  }

  .row {
    flex-direction: column;
  }

  .project-info {
    position: relative;
    margin-bottom: 3rem;
  }

  .project-info h1 {
    font-size: 3rem;
  }
}