@charset "utf-8";
/********** Boxes with Icon SECTION - KE✓ **********/
h4.h4InBox {
  font-size: 1.125rem; font-weight: 500;
}

.numInBox {
  padding-right: 6px;
  font-size: 1.125rem; font-weight: 600;
  color: var(--c-secondary);
}
h4.numInBox {
  margin-bottom: 0.75rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-secondary);
}

.paraInBox {
  font-size: 0.75rem;
  color: var(--black-light);
  line-height: 1.35; letter-spacing: -0.3px;
  white-space: pre-line;
}

@media screen and (min-width: 768px) {
  h4.h4InBox {font-size: 1.25rem;}
  .numInBox {font-size: 1.25rem;}
  h4.numInBox {margin-bottom: 1rem; padding-bottom: 1rem;}
  .paraInBox {
    font-size: 0.875rem;
    line-height: 1.5; letter-spacing: -0.2px;
  }
}

/***** 6 flex Boxes 1 → 3 - KE✓ *****/
.flexBoxes {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
  .flexBoxes .flexBox {
    display: flex; flex-direction: row;
    align-items: center; justify-content: center;
    width: 100%;
    padding: 1rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    background: #FFF;
  }
  .flexBox:hover {transform: translateY(-8px);}

  .flexUp {width: 40%;}
  .flexBox > .paraInBox {width: 50%;}
  .smLine {
    display: block;
    width: 2px; height: 40px;
    margin: 0 0.5rem;
    background-color: var(--c-secondary);
  }
    .flexIcon {width: 40px; margin-bottom: 1rem;}



@media screen and (min-width: 768px) {
  .flexBoxes {gap: 1.5rem;}
  .flexBoxes .flexBox {
    flex-direction: column;
    width: calc(100% / 3 - 1rem);
    padding: 1.25rem 0; border-radius: 8px;
  }
  .flexUp, .flexBox > .paraInBox {width: 100%;}
    .smLine {width: 40px; height: 2px; margin: 0.75rem auto;}
    .flexIcon {width: 50px; margin-bottom: 1.25rem;}
}

@media screen and (min-width: 1024px) {
  .flexBoxes .flexBox {
    padding: 1.5rem 0; border-radius: 8px;
  }
}

/***** 4 flex Boxes 1 → 2&1 → 3&2 - KE✓ *****/
.img4Boxes {
  display: flex; flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.img4Box {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%; height: 120px;
    
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    background: #FFF;
    overflow: hidden;
}
.img4Box:hover {transform: translate(4px, 4px);}
.img4Box:hover .img4Part {width: 100%;}
.img4Box:hover .img4Para {display: none;}

  .img4Part {
    width: 30%; height: inherit;
    background-position: 50% 50%;
    background-size: cover; background-repeat: no-repeat;

  }
  .img4Para {width: 70%; padding: 1rem;}
  .img4Para h4.h4InBox {padding-bottom: 6px;}

@media screen and (min-width: 375px) {
    .img4Box {height: 140px;}
  .img4Part {width: 40%;}
  .img4Para {width: 60%;}
}

@media screen and (min-width: 768px) {
  .img4Boxes {gap: 1.25rem;}
    .img4Box {flex-direction: column; width: calc(100% / 2 - 1.25rem); height: 280px;}

    .img4Part, .img4Para {width: 100%;}
    .img4Part {height: 50%;}
    .img4Box:hover .img4Part {width: 100%; height: 100%;}

    .img4Para {padding: 1.25rem;}
    .img4Para h4.h4InBox {padding-bottom: 8px;}

}

@media screen and (min-width: 1024px) {
  .img4Box {width: calc(100% / 4 - 1.25rem);}
}

