/* These are the project page styles  */

.projects-container {
  margin: auto;
  padding: 1em 2em;
  width: 1440px;
}

.projects {
  margin: 0 auto;
  /* position: absolute;
  left: 2em;
  bottom: 50; */
}

.project-wrapper {
  padding: 2em 0;
}

.project__item {
  display: flex;
  flex-direction: column;
  padding: 0.4em 0;
}

.project__item-image_wrapper {
  position: fixed;
  top: 20%;
  right: 2em;
  width: 600px;
  height: 400px;
  pointer-events: none;
  opacity: 0;
}

.project__item-image_inner .project__item-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project__item-image_inner h2 {
  font-family: "PP Neue Montreal";
  font-weight: 400;
  background-color: transparent;
}

.project__item-text {
  position: relative;
  font-family: "IBM Plex Mono", sans-serif;
  font-size: 32px;
  line-height: 1.2em;
  color: #83817b;
  opacity: 1;
  transition: opacity 350ms ease;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.project__item:hover .project__item-text {
  color: var(--color-text);
}

.project__item:hover .project__item-image_wrapper {
  z-index: -2;
}

.project__item-thumb {
  margin-top: 2em;
  height: 450px;
  width: 500px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 672px) {
  .project__item-image_wrapper {
    display: none;

  }
}