/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
.desc-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  
  div {
    min-width: 200px;
    ul {
      list-style: none; padding: 0; margin: 0;
    }
  }
}
@media (width < 576px) {
    .desc-two-col {
        flex-wrap: nowrap;
    }
}