/* CSS Document */

#company .info-table tr {
  display: flex;
  flex-wrap: wrap;
}
#company .info-table tr td:first-child {
  width: min(30%, 180px);
}
#company .info-table tr td:last-child {
  width: calc(100% - min(30%, 180px));
}
#company .info-table em {
  font-style: normal;
  font-size: .85rem;
}

@media screen and (max-width: 468px) {
  #company .info-table tr {
    padding: 1rem 0;
  }
  #company .info-table tr td {
    width: 100% !important;
    padding: .5rem !important;
  }
}