
.style70  .item img {max-width:100%; width:100%;}
.style70 .flex2{display:flex; flex-wrap: wrap;  justify-content: space-between;  }
.style70 .flex2 .item{ width:29%; padding:0px 0 50px 0; text-align:center  }
.style70  .flex2 .item .txt { padding: 10px 0px 0 0px; text-align:center; font-size:18px; font-weight:500; }

/* item이 2개일 때 */
.style70 .flex2:has(.item:nth-child(2):last-child) {
  justify-content: space-around;
}

/* item이 3개일 때 */
.style70 .flex2:has(.item:nth-child(3):last-child) {
  justify-content: space-between;
}

/* item이 5개일 때 */
.style70 .flex2:has(.item:nth-child(5):last-child) {
  justify-content: space-evenly; gap:6%;
}

/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/
@media (max-width: 1023px) {

.style70 .flex2{flex-direction: column;   padding:10px 0 0px 0;  }
.style70 .flex2 .item{ width:100%; padding:0px 0px 30px 0;  }
.style70  .flex2 .item .txt { padding: 10px 0px 10px 0px; text-align:center; font-size:16px; }

/* item이 2개일 때 */
.style70 .flex2:has(.item:nth-child(2):last-child) {
  justify-content: space-between;
}

/* item이 5개일 때 */
.style70 .flex2:has(.item:nth-child(5):last-child) {
  justify-content: space-between; gap:0%;
}


}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}

