.rnd_wrap{
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rnd_wrap .title{
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
}
.rnd_wrap .title::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: -2rem;
  width: 50px;
  height: 1px;
  background: #111;
  z-index: 10;
}
.rnd_wrap .con_wrap{
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.rnd_wrap .con_wrap .pic{
  width: 45%;
  padding: 0;
  margin: 0;
}
.rnd_wrap .con_wrap .pic img{
  width: 100%;
}
.rnd_wrap .con_wrap .con{
  width: 55%;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  word-break:keep-all; 
  word-wrap:break-word;
}
.rnd_wrap .con_wrap .con .no_list{
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}
.rnd_wrap .con_wrap .con .no_list span{
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  margin: 0 10px 0 0; 
  line-height: 30px;
  font-size: .95rem;
  color: #fff;
  text-align: center;
  background-color: #111;
  border-radius: 50%;
}

.step_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.step_wrap .items{
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: calc(33% - 1.5rem);
  padding: 2rem;
  margin: 0;
  border: 1px solid #f6ece8;
  border-radius: .5rem;
  transition: all .2s;
}
.step_wrap .items .pic{
  width: 50px;
}
.step_wrap .items .pic img{
  width: 100%;
}
.step_wrap .items  .no{
  font-size: .7rem;
  font-weight: 400;
  color: #f09156;
}
.step_wrap .items  .tt{
  font-size: 1.8rem;
  font-weight: 600;
}
.step_wrap .items  .con{
  font-size: .8rem;
  color: #707070;
  padding: 1rem 0 0 0;
}
.step_wrap .items:hover{
  background-color: #fcf1ea;
  border: 1px solid #f09156;
  border-radius: .5rem .5rem 3rem .5rem;
}
.step_wrap .items:hover{
  color: #ef6e1d;
}

.bar{
  width: 100%;
  height: 10px;
  background-image: url('/img/hr_10_1.png');
  background-position: center;
}

@media (max-width: 991.98px) { 
  .rnd_wrap{
    gap: 4rem;
  }
  .rnd_wrap .title::before{
    bottom: -1.5rem;
  }
  .rnd_wrap .con_wrap{
    flex-direction: column;
  }
  .rnd_wrap .con_wrap .pic{
    order: 1;
    width: 100%;
  }
  .rnd_wrap .con_wrap .con{
    order: 2;
    width: 100%;
    padding:0 2rem;
  }
  .step_wrap .items{
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 767.98px) {
  .rnd_wrap{
    gap: 3rem;
  }
  .rnd_wrap .title{
    font-size: 1.4rem;
  }
  .rnd_wrap .title::before{
    bottom: -1rem;
  }
  .rnd_wrap .con_wrap{
    gap: 1.5rem;
  }
  .rnd_wrap .con_wrap .con{
    padding:0 0 0 2rem;
  }
  .rnd_wrap .con_wrap .con .no_list span{
    width: 30px;
    height: 30px;
    padding: 5px 10px; 
    line-height: 30px;;
  }
  .step_wrap {
    gap: 1rem;
  }
  .step_wrap .items{
    width: 100%;
  }
}