.service .list ul {
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display:flex;
  -webkit-flex-wrap:wrap;
  flex-wrap:wrap;
}
.pop {
  list-style: none;
}
.pop:before, .pop:after {
  content: "";
  display: table;
}
.pop:after {
  clear: both;
}
.pop {
  zoom: 1;
}
/* -------------------------------- */
.pop li {
  position: relative;
  float: left;
  cursor: pointer;
  padding: 10px;
  text-align: center;
}


.pop li:focus-within {
  outline: 3px #f00 dotted;
}
.pop li .content a {
  text-decoration: none;
  color: inherit;
  position: relative;
  display: block;
}

.pop li .content a:hover {
    color: #009788;
}
.pop li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 9999;
}
.pop li:hover .item-icon, .pop li:focus .item-icon {
  border: 1px #348ec6 solid;
}
.pop li:hover .item-icon p::before, .pop li:focus .item-icon p::before {
  content: "";
  width: 40%;
  height: 1px;
  background-color: #000;
  display: block;
  left: 50%;
  top: 30px;
  position: absolute;
  transform: translate(-50%, 0);
}
.pop li:hover .item-icon p::after, .pop li:focus .item-icon p::after {
  top: 40px;
}
.pop li .item-icon {
  background-color: #fff;
  border-radius: 10px;
  padding: 20% 0;
  border: 1px #fff solid;
  transition: all 200ms ease-out;
  height: 100%;
}

.pop li .item-icon img {
    height: 70px;
}

.pop li .item-icon a {
    color: #000;
    text-decoration: none;
}

.pop li .item-icon svg {
    width: 70px;
    height: 70px;
    fill: #009788;
}

.pop li .item-icon svg path {
    fill: #009788;
}

.pop li .item-icon svg .d {
    fill: #009788;
}
.pop li .item-icon p {
  font-weight: bold;
  font-size: 120%;
  /* margin: 0; */
  position: relative;
  text-align: center;
}
.pop li .item-icon p::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: solid 1px #009788;
  border-right: solid 1px #009788;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 35px;
  transition: all 200ms ease-out;
}
.pop .cover {
  z-index: 2;
}
.pop .cover:focus {
  outline: 0;
}
/* -------------------------------- */
.pop li::after {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  color: rgba(255, 255, 255, .1);
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  height: 0;
}
.pop li:hover::after, .pop li:focus::after {
  opacity: 1;
}
.pop .cover::after {
  z-index: -1;
}
/* -------------------------------- */
/* -------------------------------- */
.pop li .content {
  background-color: #fff;
}
.pop li .content .more {
  padding: 25px 10px;
  clear: both;
}
.pop li .content .more a {
  border-radius: 50px;
  background-color: #eaeaea;
  padding: 5px 35px;
  font-size: 95%;
}
.pop li .content .more a:hover {
  background-color: #ffd561;
}
/* -------------------------------- */
.pop .content {
  opacity: 0;
  height: 0;
  width: 100%;
  left: -50%;
  transform: translate(50%, -50%);
  top: 50%;
  border-radius: 10px;
  position: absolute;
  /* Ideally: height: 100%; width: 100%; but works at it should just in FF */
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
}
.pop .content ul {
  display: none;
}
.pop .expanded {
  opacity: 1;
  display: block;
  padding: 0;
  /* Cover the entire area */
  height: auto;
  -webkit-box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 30%);
  box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 30%);
  z-index: 9999;
}
.pop .expanded ul {
  display: block;
}
.pop .content ul {
  padding: 10px;
  margin: 0;
  list-style: none;
}
.pop .content ul li {
  width: 100%;
  padding: 5px;
}
/* -------------------------------- */
.pop .title {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  padding: 15px 10px 10px 10px;
  border-bottom: 1px #dedede solid;
}
/* -------------------------------- */
.pop .close {
  display: none;
  color: #fff;
  cursor: pointer;
  height: 25px;
  width: 25px;
  position: absolute;
  text-align: center;
  text-indent: -9999px;
  right: 10px;
  top: 10px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  background-color: #d6d6d6;
  background-image: url(../../images/index/ic_close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 42%;
  z-index: 9999;
}
.pop .cover .close {
  display: block;
}
@media screen and (min-width: 768px) {
  .pop li {
    width: 20%;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .pop li {
    width: 33.333%;
  }
  .pop li:last-child {
    float: none;
    margin: auto;
    clear: both;
  }
  .pop li:last-child a {
    /* display: block; */
  }
}
@media screen and (min-width: 540px) {
  .pop li > a {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pop li .content {
    display: none;
  }
   .pop li > a {
  opacity: 0;
  text-indent: -9999px;
  }
}
@media screen and (max-width: 480px) {
  .pop li {
    width: 50%;
  }
}