/* BASIC css start */
/* ÇØ´ç ¼½¼Ç ¾È¿¡¼­¸¸ ½ºÅ¸ÀÏ Àû¿ë */

.icon-text-wrapper {
background : #eeeeee;
}

.custom-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0 20px 0;
}

.custom-icons .icon-text-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  margin-top: 20px;
}

.custom-icons .icon-wrapper {
  width: 70px; 
  height: 70px; 
  background-color: #f5f5f5;
  border-radius: 35%; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-icons .icon {
  width: 48px; 
  height: 48px;
}


.custom-icons .icon-wrapper:hover {
  transform: scale(1.05); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
  transition: all 0.3s ease; 
}

.custom-icons .text {
  font-size: 14px;
  color: #5e5e5e;
  font-weight: bold;
  line-height: 1.4;
}


/* BASIC css end */

