@font-face {
  font-family: 'SEBANG_Gothic_Bold';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NEXON Lv1 Gothic OTF Light';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NEXON Lv1 Gothic OTF Bold';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.svice {
  width: 100%;
  background-color: #ff7f00;
  text-align: center;
}

.svice .flex {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  padding: 100px 0px;
}

.svice .flex h2 {
  font-size: 50px;
  font-family: "SEBANG_Gothic_Bold";
  color: #fff;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: opacity .5s, top .5s;
}

.svice.on .flex h2{
  top: 0;
  opacity: 1;
}

.svice .flex h2 div {
  background-color: #fff;
  width: 35px;
  height: 5px;
  margin: 10px auto 0;
}

.svice .flex ul {
  display: -ms-grid;
  display: grid;
  width: 800px;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin: 30px auto 0px;
}

.svice .flex ul li {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 250px;
  border-radius: 30px;
  font-size: 40px;
  font-family: "SEBANG_Gothic_Bold";
  opacity: 0;
  transition: opacity .5s
}

.svice .flex ul li img {
  margin-bottom: 20px;
}

@media(max-width:1000px){
  .svice .flex ul{
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .svice .flex ul li{
    height: 200px;
    font-size: 30px;
  }
}

@media(max-width:500px){
  .svice .flex h2{
    font-size: 40px;
  }
  .svice .flex ul li{
    height: 150px;
    font-size: 20px;
  }
}