.work_flow_section_main {
  width: 100%;
  background-color: black;
  padding-top: 50px;
  position: relative;
  overflow: visible;
}

.work_flow_section_container {
  width: 100%;
  display: flex;
  gap: 70px;
  padding-bottom: 60px;
}

.work_flow_section_left_side {
  width: 45%;
  position: sticky;
  top: 150px;
  height: auto;
  align-self: start;
  z-index: 10;
}

.work_flow_tag_main {
  position: relative;
  width: 120px;
  height: 34px;
  border-radius: 24px;
  overflow: hidden;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 14px;
  z-index: 1;
}

.work_flow_tag_main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  background: conic-gradient(
    from 0deg,
    rgba(216, 156, 39, 0) 0%,
    rgba(216, 156, 39, 0) 80%,
    #d89c27 92%,
    #dfc86f 96%,
    #d89c27 98%,
    rgba(216, 156, 39, 0) 100%
  );
  animation: rotateBorder 3s linear infinite;
  z-index: -2;
}

.work_flow_tag_main::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #171717;
  border-radius: 24px;
  z-index: -1;
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  12.5% {
    transform: translate(-50%, -50%) rotate(60deg);
  }

  25% {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  37.5% {
    transform: translate(-50%, -50%) rotate(120deg);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }

  62.5% {
    transform: translate(-50%, -50%) rotate(240deg);
  }

  75% {
    transform: translate(-50%, -50%) rotate(270deg);
  }

  87.5% {
    transform: translate(-50%, -50%) rotate(300deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.work_flow_dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}

.work_flow_text {
  margin-top: 16px;
  letter-spacing: 1px;
  color: white;
}

.work_flow_title {
  font-family: var(--font-Glida-Display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-top: 24px;
}

.work_flow_section_right_side {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.work_flow_step_main {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.work_flow_step_number {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition:
    color 0.5s ease,
    text-shadow 0.5s ease;
}

.work_flow_step_title {
  font-family: var(--font-Glida-Display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

.work_flow_step_description {
  font-size: 18px;
  line-height: 28px;
  transition: color 0.5s ease;
  color: white;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .work_flow_title {
    font-size: 24px;
    line-height: 1.5;
  }
}

@media (max-width: 991px) {
  .work_flow_step_title {
    font-size: 22px;
  }

  .work_flow_step_description {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .work_flow_title {
    font-size: 22px;
    line-height: 1.5;
  }

  .work_flow_step_title {
    font-size: 20px;
  }

  .work_flow_step_description {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

@media (max-width: 576px) {
  .work_flow_section_main {
    overflow: hidden;
  }
  .work_flow_section_container {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
  }

  .work_flow_title {
    font-size: 18px;
    line-height: 1.5;
  }
  .work_flow_step_title {
    font-size: 16px;
  }

  .work_flow_step_description {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.4;
  }
  .work_flow_section_left_side {
    width: 100%;
    position: static;
    top: 150px;
    height: auto;
    align-self: start;
    z-index: 10;
  }

  .work_flow_section_right_side {
    width: 100%;
  }
}
