.project_block,
.project_block__black {
  position: relative;
  margin: 0 15px 30px 15px;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

.project_block__black {
  color: #ffffff;
}

.project_block::after,
.project_block__black::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 5px;
}

.project_block .image,
.project_block__black .image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 378px;
  max-height: 197px;
  overflow: hidden;
  border-radius: 5px;
}

.project_block .image img,
.project_block__black .image img {
  width: 100%;
  height: auto;
}

.project_block .categories,
.project_block__black .categories {
  position: absolute;
  top: 15px;
  left: 25px;
  z-index: 2;
}

.project_block .categories .line,
.project_block__black .categories .line {
  display: none;
  background-color: #ffffff;
}

.project_block__black .categories .line {
  background-color: var(--black);
}

.project_block .categories h3,
.project_block__black .categories h3 {
  display: inline-block;
  margin-right: 10px;
  font-family: var(--century-gothic);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.project_block .title,
.project_block__black .title {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  margin: 0;
  z-index: 2;
}

@media screen and (min-width: 750px) {
  .project_block,
  .project_block__black {
    margin: 0 20px 80px 20px;
  }

  .project_block__black {
    color: var(--black);
  }

  .project_block::after,
  .project_block__black::after {
    display: none;
  }

  .project_block .image,
  .project_block__black .image {
    max-width: 500px;
    max-height: 270px;
    border-radius: 11px;
  }

  .project_block .categories,
  .project_block__black .categories {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    margin-top: 30px;
    top: unset;
    left: 0;
    max-width: 500px;
  }

  .project_block .categories .line,
  .project_block__black .categories .line {
    display: block;
    width: 35px;
    height: 2px;
    margin-right: 15px;
  }

  .project_block .categories h3,
  .project_block__black .categories h3 {
    margin-right: 27px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
  }

  .project_block .title,
  .project_block__black .title {
    position: relative;
    left: 50px;
    right: 0;
    bottom: unset;
    max-width: 450px;
    margin-top: 20px;
  }
}
