.history-section {
  padding: var(--page-top-padding) 0 var(--page-padding);
}

/* title */
.history-section .custom-main-title-wrap em {
  display: block;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ct-text-muted);
}
.history-section .custom-main-title-wrap em i {
  margin-right: 7px;
  font-weight: 400;
}

/* content */
.history-section .custom-main-content-wrap {
  display: grid;
  grid-template-columns: repeat(2, calc(calc(100% - var(--gap)) / 2));
  grid-gap: var(--gap);
}
.history-section .custom-main-content {
  padding: var(--box-padding);
  text-align: left;
}
.history-section .custom-main-content:nth-child(1) {
  grid-column: 1 / 3;
  background: var(--point-light);
}
.history-section .custom-main-content:nth-child(2) {
  background: var(--hover-color);
}
.history-section .custom-main-content:nth-child(3) {
  background: #FFFBF3;
}
.history-section .custom-main-content img {
  width: 45px;
  margin: 0 0 35px;
}
.history-section .custom-main-content p {
  margin: 15px 0 0;
  word-break: keep-all;
  line-height: 1.5em;
  font-size: 16px;
}

/* ################## RESPONSIVE ##################### */
@media (max-width: 767.98px) {
  .history-section .custom-main-content-wrap {
    display: flex;
    flex-direction: column;
  }
  .history-section .custom-main-title-wrap em {
    font-size: 16px;
  }
  .history-section .custom-main-content img {
    width: 35px;
  }
  .custom-main-content strong {
    font-size: 18px;
    word-break: keep-all;
  }
  .history-section .custom-main-content p {
    font-size: var(--nm-fz);
  }
  .history-section .custom-main-content p span {
    display: inline;
  }
}