.cycle_wrapper {
  position: relative;
  width: 100%;
  float: left;
}

.cycle_wrapper:before {
  content: "";
  position: absolute;
  display: block;
  top: 62.5px;
  width: 75%;
  height: 0;
  border-top: 1px solid #e1e1e1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cycle_wrapper .icon_box {
  float: left;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.cycle_wrapper .icon_box:last-child {
  margin-bottom:0;
}

.cycle_wrapper .icon_box_head {
  position: relative;
  margin-bottom: 35px;
  color: #f0641f;
  display: block;
  width: 100%;
}

.cycle_wrapper .svg_icon {
  display: inline-block;
  font-size: 48px;
  width: 125px;
  height: 125px;
  line-height: 125px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 0 1px #e1e1e1;
  background: linear-gradient(90deg, rgba(245,112,64,1)0%, rgba(245,149,57,1) 100%);
  color: #fff;
  position: relative;
  -webkit-transition: all 0s ease-in !important;
  transition: all 0s ease-in !important;
  margin-bottom: 0;
  border-radius: 300px;
}

.cycle_wrapper .icon_box_cntnt {
  color: #a1a1a1;
  padding: 0 15px;
}

.cycle_wrapper .icon_box_cntnt h5 {
  margin-bottom: 13px;
}

.cycle_wrapper .icon_box_cntnt p {
  margin: 0;
}


@media(max-width:768px){
  .cycle_wrapper .icon_box{
    width:50% !important;
  }
  .cycle_wrapper:before{
    display:none;
  }
}


@media(max-width:480px){
  .cycle_wrapper .icon_box{
    width:100% !important;
  }
}

