.projectPage {
  max-width: 1190px;
  margin: 109px auto 96px auto;
}

@media (max-width: 767px) {
  .projectPage {
    margin: 56px auto 56px auto;
  }
}

.projectPage__title {
  text-align: center;
  margin-bottom: 76px;
}

@media (max-width: 767px) {
  .projectPage__title {
    margin-bottom: 40px;
  }
}

@media (max-width: 1024px) {
  .projectPage__title {
    padding: 0 24px;
  }
}

.projectPage__title .uptitle {
  margin-bottom: 17px;
}

.projectPage__title h1 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .projectPage__title h1 {
    font-size: 24px;
    line-height: 120%;
  }
}

.projectPage__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .projectPage__anchor {
    display: none;
  }
}

.projectPage__anchor .dots-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
}

@media (max-width: 1024px) {
  .projectPage__anchor .dots-steps {
    gap: 20px;
  }
}

.projectPage__anchor .dots-steps li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  padding-left: 47px;
}

@media (max-width: 1024px) {
  .projectPage__anchor .dots-steps li {
    padding-left: 20px;
  }
}

.projectPage__anchor .dots-steps li::after {
  content: '';
  width: 4px;
  height: 4px;
  background: #00BCBB;
  border-radius: 24px;
  position: absolute;
  top: 50%;
  left: 0;
}

.projectPage__anchor .dots-steps li span {
  font-family: 'Prompt';
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  max-width: 145px;
}

.projectPage__anchor .dots-steps li .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid #00BCBB;
  border-radius: 50%;
  font-family: 'Nunito';
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #00BCBB;
}

.projectPage__anchor .dots-steps a:first-child li {
  padding-left: 0;
}

.projectPage__anchor .dots-steps a:first-child li::after {
  display: none;
}

.projectPage__anchor .dots-steps .active span {
  font-weight: 600;
}

.projectPage__anchor .dots-steps .active .number {
  background: #00BCBB;
  color: white;
}

.projectPage__steps {
  padding-top: 73px;
  position: relative;
  border-top: 1px dashed #D7E3EE;
  max-width: 1170px;
  margin: 32px auto 0 auto;
}

@media (max-width: 767px) {
  .projectPage__steps {
    margin-top: 40px;
    padding-top: 0;
  }
}

.projectPage__steps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .projectPage__steps li {
    padding: 30px 0;
  }
}

.projectPage__steps li:first-child {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .projectPage__steps li:first-child {
    padding-top: 30px;
  }
}

.projectPage__steps li .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

@media (max-width: 1024px) {
  .projectPage__steps li .description {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.projectPage__steps li .description .uptitle {
  font-family: 'Prompt';
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #00BCBB;
  text-transform: none;
  letter-spacing: initial;
}

@media (max-width: 767px) {
  .projectPage__steps li .description .uptitle {
    text-align: center;
  }
}

.projectPage__steps li .description .title {
  font-family: 'Prompt';
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #1E3246;
}

@media (max-width: 767px) {
  .projectPage__steps li .description .title {
    text-align: center;
    font-size: 20px;
    line-height: 0px;
    margin-bottom: 10px;
  }
}

.projectPage__steps li img {
  max-width: 380px;
  max-height: 360px;
}

@media (max-width: 767px) {
  .projectPage__steps li img {
    display: none !important;
  }
}

.projectPage__steps .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}