.project-section section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
}
.project-section section h3 {
  font-size: 1.5em;
  color: white;
  margin-bottom: 20px;
  margin-left: 200px;
}

.project-section section .container {
  position: relative;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-section section:nth-child(even) .container {
  flex-direction: row-reverse;
}

.project-section section .container .imgBx {
  position: relative;
  width: 70vw;
  object-fit: cover;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

.project-section section .container .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-section section .container .content {
  position: absolute;
  right: -100px;
  margin-top: 200px;
  margin-bottom: 40px;
  padding: 40px;
  background: #333;
  z-index: 1;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 6px solid;
}

.project-section section:nth-child(even) .container .content {
  left: -100px;
}

.project-section .project-section {
  margin-left: auto;
  margin-right: auto;
  display: column;
  justify-content: center;
  align-items: center;
}
.mobile-screen {
  display: none;
}
@media screen and (max-height: 768px) {
  .project-section section {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 768px) {
  .project-section {
    display: none;
  }
  .mobile-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-screen .content {
    right: 0;
    margin-bottom: 40px;
    margin-top: 10px;
    padding: 40px;
    background: #333;
    z-index: 1;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 6px solid;
  }
  .mobile-screen h3 {
    font-size: 1.5em;
    color: white;
    margin-bottom: 20px;
    text-align: center;
  }
  .mobile-screen > h3:first-child {
    font-size: 3em;
  }
}

.more-options {
  margin-top: 5%;
}
.content button {
  background: black;
  padding: 10px;
  margin: 10px;
  margin-top: 6px;
  align-items: center;
  color: orangered;
  border-color: orangered;
}
.content > button:hover {
  opacity: 0.7;
}

.technical-highlights span {
  color: orangered;
  font-weight: bold;
}

.technical-highlights ul {
  list-style-type: disc;
  padding-left: 20px;
}

.technical-highlights li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}