header {
  background-image: url(../assets/header/projects_bg_alt.webp);
}

/* nav .navtitle {
  color: var(--text);
}
nav a {
  color: var(--text);
}
nav .active {
  color: var(--sdarkgreen);
}
nav .burgermenu svg {
  fill: var(--text);
}
nav .burgermenu:hover svg {
  fill: var(--sdarkgreen) !important;
}
nav .open svg {
  fill: var(--bg);
}
nav .open svg:hover {
  fill: var(--plimegreen) !important;
}
.openedmenu nav .navtitle {
  color: var(--bg);
} */

.projects {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.projects .group {
  background: var(--pdarkgreen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  gap: 50px;
  padding: 50px 0;
  color: var(--bg);
}
.projects .groupalt {
  background: var(--plimegreen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  gap: 50px;
  padding: 50px 0;
  color: var(--text);
}
.projects h3 {
  font-size: 62px;
  font-weight: 900;
  font-family: var(--ff);
  text-align: center;
  text-indent: 10px;
}
.projects .project {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  height: 100%;
}
.projects .project .detailbox {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background: var(--stealgreen); */
}
.projects .project .detailbox h4 {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--ff);
  text-align: left;
  text-indent: 10px;
  width: 90%;
  padding: 10px 0px;
  overflow: hidden;
}
.projects .project .detailbox p {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--ff);
  text-align: left;
  /* text-justify: inter-ideograph; */
  /* width: 90%; */
  margin: 0px 20px;
  /* overflow: hidden; */
}
.projects .project .detailbox .copyright {
  font-size: 16px;
  font-weight: 100;
  text-align: left;
  /* text-justify: inter-ideograph; */
  /* width: 90%; */
  margin: 10px 20px;
  /* overflow: hidden; */
}
.projects .project .imgbox {
  width: 50%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  & img {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .projects .group {
    padding: 20px 0px;
    gap: 10px;
  }
  .projects .groupalt {
    padding: 10px 0px;
    gap: 10px;
  }
  .projects .project {
    width: 100%;
    flex-direction: column;
    height: 100%;
    gap: 20px;
  }
  .projects h3 {
    font-size: 36px;
    text-align: center;
    text-indent: 0px;
    margin: 30px 0px;
  }
  .projects .project .imgbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .projects .project .detailbox {
    width: 100%;
    gap: 10px;
  }
  .projects .project .detailbox h4 {
    width: 95%;
    text-indent: 0px;
    font-size: 30px;
  }
  .projects .project .detailbox p {
    font-size: 24px;
    width: 95%;
    /* text-align: justify; */
    /* text-justify: inter-word; */
  }
  .projects .project .detailbox .copyright {
    
  }

  .projects h3 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1400px) {
  .projects .project .detailbox h4 {
    font-size: 62px;
  }
  .projects .project .detailbox p {
    font-size: 26px;
  }
}

@media only screen and (min-width: 1800px) {
  .projects .project .detailbox h4 {
    font-size: 68px;
  }
  .projects .project .detailbox p {
    font-size: 30px;
  }
}