@charset "utf-8";

.banner > div > div > h2{
  font-size: 50px;
  line-height: 70px;
}
.banner > div > ul{
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.banner > div > ul > li{
  width: 20%;
  text-align: center;
}
.banner > div > ul > li > img{
  width: 70%;
}
.banner > div > ul > li > span{
  display: block;
  margin-top: 30px;
}





/* 유지보수 */
.repair{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.repair > li{
  width: 49%; height: 350px;
  border-radius: 30px;
  padding: 40px;
  box-sizing: border-box;
}
.repair > li:first-child{
  background: rgba(13, 84, 222, .7);
  margin-bottom: 30px;
}
.repair > li:nth-child(2){
  background-image: url(/img/homepage/system_down.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.repair > li:nth-child(3){background: var(--background);}
.repair > li:last-child{background: var(--point-color);} 
.repair > li:not(:nth-child(3)) > h3{color: #fff;}

.repair > li > h3{
  font-size: 20px;
  line-height: 30px;
}





/* 솔루션 맵 */
.solution > li{
  background: var(--background);
  border-radius: 30px;
  padding: 40px;
}
.solution > li:not(:last-child){margin-bottom: 30px;}
.solution > li > h3{
  font-size: 20px;
  margin-bottom: 30px;
}
.solution > li > h3 > span{
  color: var(--point-color);
  font-weight: 700;
  margin-left: 15px;
}
.solution > li > span{
  color: #777;
  margin-right: 15px;
}













/* tablet 해상도 */
@media screen and (min-width:767px) and (max-width:1536px) {

  .banner > div > div > h2{
    font-size: 40px;
    line-height: 70px;
  }
  .banner > div > ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .banner > div > ul > li{
    width: 20%;
    text-align: center;
  }
  .banner > div > ul > li > img{
    width: 70%;
    margin-top: 40px;
  }
  .banner > div > ul > li > span{
    display: block;
    margin-top: 30px;
  }

}













/* mobile 해상도 */
@media screen and (max-width:767px) {

  .banner > div > div > h2{
    font-size: 18px;
    line-height: 30px;
  }
  .banner > div > ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .banner > div > ul > li{
    width: 20%;
    text-align: center;
  }
  .banner > div > ul > li > img{
    width: 80%;
    margin-top: 15px;
  }
  .banner > div > ul > li > span{
    display: block;
    margin-top: 15px;
  }
  




/* 유지보수 */
.repair{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.repair > li{
  width: 49%; height: 150px;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
}
.repair > li:first-child{
  margin-bottom: 15px;
}

.repair > li > h3{
  font-size: 14px;
  line-height: 20px;
}





/* 솔루션 맵 */
.solution > li{
  background: var(--background);
  border-radius: 20px;
  padding: 20px;
}
.solution > li:not(:last-child){margin-bottom: 15px;}
.solution > li > h3{
  font-size: 14px;
  margin-bottom: 15px;
}
.solution > li > h3 > span{
  color: var(--point-color);
  font-weight: 700;
  margin: 5px 0 0 0;
  display: block;
}
.solution > li{white-sapce: nowrap;}
.solution > li > span{
  color: #777;
  margin: 0 10px 7px 0;
  display: inline-block;
}

}