.project-section {
  margin-top: 120px;
  padding: 0;
  max-width: 2560px;
  background-color: #f8f8f8;
}

.project-headline {
  width: 100%;
  text-align: center;
  margin-bottom: 72px;
  margin-top: 72px;
}

.project {
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 72px;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.project-description {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.project-description:hover img {
  transform: scale(1.3);
}

.project-description:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.project-text {
  z-index: 2;
  color: white;
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.project-text h3 {
  margin-top: 16px;
  color: white;
  font-weight: bold;
}

.h3-project {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.h3-project span {
  margin-top: 16px;
  display: block;
  height: 2px;
  width: 44px;
  background-color: white;
}

/* (1347px) */
@media (max-width: 1347px) {
  .project {
    height: 360px;
  }
}

/* (991px) */
@media (max-width: 991px) {
  .project {
    flex-direction: column;
    gap: 0;
    height: 100%;
    margin-bottom: 0;
  }

  .project img {
    height: 360px;
  }

  .project-description {
    margin-bottom: 32px;
  }
}

/* (640px) */
@media (max-width: 640px) {
  .project img {
    height: 280px;
  }
}

/* 375px) */
@media (max-width: 375px) {
  .project img {
    height: 224px;
  }
}

@media (min-width: 2060px) {
  .project img {
    height: 560px;
  }
  .project{
      height: 560px;
  }
}
