.__process-dev {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    var(--primary-lighter-blue) 0%,
    var(--bs-white) 100%
  );
}

.__process-dev::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../svg/map_world.svg") no-repeat center / cover;
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: 1;
}

.__process-dev > * {
  position: relative;
  z-index: 2;
}

.__process-dev_global {
  padding-top: 80px;
  padding-bottom: 120px;
  gap: 84px;
}
.__process-dev_left,
.__process-dev_right {
  flex: 1;
}
.__process-dev_left {
}
.__process-dev_title {
  padding-bottom: 16px;
}
.__process-dev_description {
  color: #5a6475;
}
/* .__process-dev_right {
} */
.__process-dev_box {
  position: relative;
}

.__process__line {
  position: absolute;
  left: 7%;
  top: 0;
  height: calc(100% - 25px);
  width: 15%;
  border-left: 2px dashed var(--primary-blue);
  border-bottom: 2px dashed var(--primary-blue);
  border-radius: var(--radius-sm);
}

.__process__step {
  display: flex;
  gap: var(--gap-third);
  align-items: stretch;
  margin-bottom: 32px;
}

.__process__icon {
  position: relative;
  width: 80px;
  height: 80px;
}

.__process__icon img {
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.__process__step:hover .__process__icon,
.__process__icon.active {
  background-image: url("../img/service/star_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.3s ease;
}

.__process__step:hover .__process__icon img,
.__process__icon.active img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.__process__step:hover .__process__icon::before,
.__process__icon.active::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: #b2ddff;
  z-index: -1;
  transition: all 0.3s ease;
}
.__process__info {
  gap: var(--gap-secondary);
  border-radius: var(--radius-xl);
  background-color: var(--bs-white);
  padding: 24px;
  border: 1px solid var(--primary-blue);
}
.__process__step__number {
  font-size: var(--text-sm);
  line-height: var(--leading-medium);
  letter-spacing: 0%;
}

.__process__description {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  letter-spacing: 0%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 458px;
}
.__process__btn {
  margin-top: 18px;
  padding-left: 6.25rem;
}
@media (max-width: 992px) and (min-width: 769px) {
  .__process-dev_global {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .__process-dev {
  }
  .__process-dev_global {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 48px;
    flex-direction: column;
  }
  .__process-dev_left,
  .__process-dev_right {
    width: 100%;
  }
  .__process__step {
    gap: var(--gap-third);
    margin-bottom: 16px;
  }
  .__process__icon {
    width: 40px;
    height: 40px;
  }
  .__process__line {
    left: 3%;
    width: 30%;
  }
  .__process-dev_box {
  }
  .__process__info {
    padding: 18px;
  }
  
  .__process__description {
    font-size: var(--text-xs);
    line-height: var(--leading-xs);
    letter-spacing: 0%;
  }
  .__process__btn {
    padding-left: 3.25rem;
  }
}
@media (max-width: 440px) {
  .__process__line {
    left: 5.5%;
  }
}
