.webdesign06-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: start;
  align-items: start;
}
.webdesign06-box-image {
  position: relative;
  z-index: 1;

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.webdesign06-box-image > img {
  position: relative;
  z-index: 1;

  width: 100%;
  aspect-ratio: 4/1;
  object-fit: cover;

  filter: saturate(0.5);
}
.webdesign06-box-image > h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% - 10rem);
  padding: 0.5rem 1rem;

  text-align: center;
  color: var(--clr-2);
  background-color: var(--clr-1);

  display: inline-block;
}
.webdesign06-box-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
}
.webdesign06-box-text > p span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .webdesign06-box-image > img {
    aspect-ratio: 1/1;
  }
  .webdesign06-box-image > h1 {
    width: calc(100% - 2rem);
  }
}
