nav {
  background-color: black;
}

/* ****************************************** */

.pages-container {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: black;
}

.left {
  z-index: 40;
  width: 50%;
  display: flex;
  justify-content: end;
  padding-top: 5rem;
}

.left .left-container {
  width: 80%;
}

.left h4 {
  font-weight: 900;
  color: var(--green);
  font-size: 1.2rem;
}

.left h1 {
  font-size: 6rem;
  font-weight: 900;
  position: relative;
}

.left h1::before {
  position: absolute;
  left: -5px;
  top: -5px;
  -webkit-text-stroke: 2px var(--green);
  z-index: -1;
  color: black;
}

.left p {
  line-height: 2rem;
  font-size: 1.2rem;
}

.right {
  width: 50%;
  z-index: 40;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.right .image-container {
  margin-top: 5rem;
  /* height: 78%; */
  height: 70%;
  width: 93%;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
