.hosting-page-ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0 20px;
}
.hosting-page-ul li {
  position: relative;
  padding: 50px;
}
.hosting-page-ul li div {
  position: relative;
  z-index: 2;
}
.hosting-page-ul li span {
  content: "";
  bottom: -6px;
  top: 0;
  position: absolute;
  border: 6px solid white;
  z-index: 1;
}
.hosting-page-ul li:nth-child(1) span {
  border-radius: 0 0 0 100px;
  width: 50%;
  border-top: 0;
  border-right: 0;
  left: 0;
}
.hosting-page-ul li:nth-child(2n+3) span {
  border-radius: 100px 0 0 100px;
  width: 50%;
  border-right: 0 !important;
  left: 0;
  right: auto;
}
.hosting-page-ul li:nth-child(2n+2) span {
  border-radius: 0 100px 100px 0;
  width: 50%;
  border-left: 0;
  left: auto;
  right: 0;
}
.hosting-page-ul li:nth-child(4n+3) span {
  bottom: -5px;
  top: 1px;
}
.hosting-page-ul li:last-child:nth-child(even) span {
  border-bottom: 0;
  border-radius: 0 100px;
}
.hosting-page-ul li:last-child:nth-child(odd) span {
  border-bottom: 0;
  border-radius: 100px 0 0;
}