.projects-page-top {
  width: 80%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 120px;
}
.projects-page-title {
  color: #000;
  font-weight: 300;
  font-size: 64px;
  max-width: 520px;
  padding-bottom: 24px;
}
.projects-page-description {
  font-size: 16px;
  line-height: 200%;
  color: #4D4D4D;
  font-weight: 300;
  max-width: 595px;
}
.projects-page-count {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  /* удаляем обычный border */
  border: none;
  /* добавляем псевдо-бордер через before */
}
.projects-page-count::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* 25% — #000, 75% — #0000001f */
  background: conic-gradient(#000 0deg 90deg, rgba(0, 0, 0, 0.1215686275) 90deg 360deg);
  /* создаём кольцо шириной 1px */
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}
.projects-page-count span {
  position: relative;
  z-index: 2;
}
.projects-page-count span:nth-child(1) {
  font-size: 42px;
  color: #181818;
  font-weight: 300;
}
.projects-page-count span:nth-child(2) {
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.16em;
  color: #000;
  font-weight: 400;
}

@media screen and (max-width: 1200px){
    .projects-page-top {
        width: 100%;
        padding: 100px 24px 70px;
    }
}

@media screen and (max-width: 992px){
    .projects-page-title {
        font-size: 44px;
    }
    
    .projects-page-description {
        font-size: 13px;
    }

    .projects-page-count {
        display: none;
    }
}