.about-work-block {
  padding-bottom: 186px;
}

.about-work-block .block-title {
  text-align: left;
  width: 70%;
}

.about-work-block .block-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
}

.about-work-block .block-holder .left-side {
  width: 60%;
  flex-grow: 1;
}

.about-work-block .block-holder .right-side {
  width: 36%;
}

.about-work-block .stages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.about-work-block .stages svg {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: 45%;
  /* background-image: url("images/shape.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 100% 100%; */
  color: var(--primary);
  z-index: -1;
}

.about-work-block .stage {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.about-work-block .stage+.stage {
  margin-top: 20px;
}

.about-work-block .stage-3,
.about-work-block .stage-1 {
  margin-left: 27%;
}

.about-work-block .stage-2 {
  margin-left: 15%;
}

.about-work-block .stage__icon-holder {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--primary);
  background-color: var(--primary);
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.about-work-block .stage__icon-holder img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-work-block .stage__title {
  color: var(--gray);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  /* 27px */
  letter-spacing: 0.5px;
  max-width: 366px;
  width: 100%;
}

.about-work-block .image-holder {
  position: relative;
}

.about-work-block .block-image {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 47 / 68;
}

.about-work-block .block-subimage {
  position: absolute;
  bottom: -30px;
  left: -20px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 30 / 32;
  max-width: 300px;
  width: 100%;
}

@media (max-width: 769px) {
  .about-work-block {
    padding-bottom: 100px;
  }

  .about-work-block .block-holder {
    flex-direction: column;
  }

  .about-work-block .block-holder .side {
    width: 100%;
  }

  .about-work-block .block-holder .right-side {
    display: none;
  }

  .about-work-block .image-holder {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-work-block .stage {
    margin-left: 0 !important;
  }
}

@media (max-width: 498px) {
  .about-work-block {
    padding-bottom: 60px;
  }

  .about-work-block .stage__icon-holder {
    width: 60px;
    height: 60px;
  }

  .about-work-block .stage__title {
    font-size: 16px;
  }
}

/*# sourceMappingURL=block.css.map */