.header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.icon-size {
  height: 35px;
}
.icon-size1 {
  height: 24px;
  width: 24px;
}
ul {
  display: flex;
}

ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 50px;
}
ul li .progress .chk {
  display: none;
}
ul li .progress {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #444444c0;
  margin: 12px 0;
  display: grid;
  place-items: center;
  color: #fff;
}
ul li .progress p {
  font-size: 13px;
}
.progress::after {
  content: " ";
  position: absolute;
  width: 107px;
  height: 5px;
  background-color: #444444c0;
  margin-right: 133px;
}
.one::after {
  width: 0;
  height: 0;
}
ul li .active {
  background-color: #d2482e;
}
li .active::after {
  background-color: #d2482e;
}
ul li .active p {
  display: none;
}
ul li .active .chk {
  display: flex;
}

@media (max-width: 768px) {
  ul {
    flex-direction: row;
  }
  ul li {
    flex-direction: column;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 70px 0 0;
    gap: 4px;
  }
  .progress::after {
    content: " ";
    position: absolute;
    width: 76px;
    height: 5px;
    background-color: #444444c0;
    margin-right: 105px;
  }
  .one::after {
    width: 0;
    height: 0;
  }
}

@media (max-width: 425px) {
  ul li {
    flex-direction: column;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0px 30px 0 0;
    gap: 0px;
  }
  .progress::after {
    content: " ";
    position: absolute;
    width: 31px;
    height: 5px;
    background-color: #444444c0;
    margin-right: 59px;
  }
  .one::after {
    width: 0;
    height: 0;
  }
  .icon-size {
    height: 26px;
  }
}
@media (max-width: 375px) {
  .progress::after {
    content: " ";
    position: absolute;
    width: 32px;
    height: 5px;
    background-color: #444444c0;
    margin-right: 60px;
  }
  .one::after {
    width: 0;
    height: 0;
  }
}
@media (max-width: 320px) {
  ul li {
    flex-direction: column;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0px 20px 0 0;
    gap: 0px;
  }

  .progress::after {
    content: " ";
    position: absolute;
    width: 22px;
    height: 5px;
    background-color: #444444c0;
    margin-right: 50px;
  }
  .one::after {
    width: 0;
    height: 0;
  }
}
