.single footer {
  margin-top: 2rem;
}
.project-detail-banner {
  position: relative;
  height: 90vh;
  margin-bottom:150px;
  padding: 80px 48px;
  background-image: url(../assets/project-detail-banner.png);
  background-size: cover;
  background-position: center center;
  color: #fff;
  display: flex;
  background-repeat: no-repeat;
}
.project-detail-banner::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top: 0; right: 0; bottom: 0; left: 0 */
  background-color: #000000b7; /* dark overlay */
  z-index: 1;
}
.project-detail-banner .heading {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.project-detail-banner .heading h1 .letter {
  font-size: 5rem;
  font-weight: 300;
  display: inline-block;
}
.project-detail-banner .heading h1 .letter-space {
  display: inline-block;
  width: 0.4em;
}
.project-detail-banner .heading span {
  font-size: 30px;
  font-weight: 200;
}

.section1,.section2,.section3,.section4,.section5{
	margin: 0 100px 100px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* -------------------------------- section1 -------------------------------- */
.section1 .img-section {
  width: 50%;
}
.section1 .img-section img {
  width: 100%;
}
.section1 .content {
  width: 50%;
  padding: 125px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.section1 .content .part {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section1 .content .part h2 {
  font-size: 14px;
  font-weight: 600;
}
.section1 .content .part span {
  font-size: 14px;
  font-weight: 300;
}
/* -------------------------------- section2 -------------------------------- */
.section2 .img-section {
  width: 50%;
  align-self: flex-start;
}
.section2 .img-section img {
  width: 100%;
  height: 120vh;
  object-fit:cover ;
}
.section2 .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 125px;
}
.section2 .content p {
  font-size: 14px;
  font-weight: 300;
}
/* -------------------------------- section3 -------------------------------- */
.section3 img {
  width: 100%;
}
/* -------------------------------- section4 -------------------------------- */
.section4 {
  flex-direction: column;
  gap: 30px;
}
.section4 p {
  font-size: 14px;
  font-weight: 300;
  width: 80%;
}
/* -------------------------------- section5 -------------------------------- */
.section5 {
  gap: 50px;
}
.section5 .img-section {
  width: 50%;
}
.section5 .img-section img {
  width: 100%;
  height: 120vh;
  object-fit: cover;
}
@media (min-width: 1281px) and (max-width: 1366px) {
	.section2 .img-section img,
	.section5 .img-section img{
		height:90vh;
	}
}
