#service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5% 20%;
}
#service .wrap_li {
  margin-bottom: 6%;
  background: #fff;
}
#service li {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-bottom: 10%;
  text-align: center;
  opacity: 0;
}
#service li object {
  margin: 0 auto;
  width: 180px;
  height: 180px;
}
#service li a {
  margin-top: auto;
}

#service li p {
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.3rem;
}
#service li h3 {
  text-align: center;
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}
#service button {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #26b9d3;
  color: #fff;
  padding: 10px 40px 10px 30px;
  border-radius: 3px;
  text-align: center;
  outline: none;
  transition: ease 0.2s;
  border: none;
  border: solid #26b9d3 2px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px){
  #service ul {
    margin: 0% 10%;
  }
}
@media screen and (max-width: 599px){

  #service .wrap_li {
      background: rgba(255, 255, 255, .9);
      padding: 0% 10%;
      margin-bottom: 0%;
    }
  #service li {
    display: block;
    flex-direction: row;
    width: 100%;
    padding-bottom: 20%;
    text-align: center;
    border-bottom: solid lightgray 1px;
  }
  #service li:last-child{
border: none;
  }

#service button {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #26b9d3;
  color: #fff;
  padding: .5rem 3rem .5rem 3rem;
  border-radius: 3px;
  text-align: center;
  outline: none;
  transition: ease 0.2s;
  border: none;
  border: solid #26b9d3 2px;
  font-weight: bold;
  letter-spacing: 1px;
}
  }
#service button a {
  color: #fff;
}
#service button:hover {
  background: white;
  color: #26b9d3;
  border: solid 2px #26b9d3;
  cursor: pointer;
}

#service button::after {
  content: "";
  position: absolute;
  top: 38%;
  right: 13px;
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s;
}

#service button:hover::after {
  right: 11px;
}

#service button:hover::after {
  border-top: 3px solid #26b9d3;
  border-right: 3px solid #26b9d3;
}
