.tab-list {
  display: flex;
  align-items: stretch; /* Default */
  justify-content: space-between;
  flex-basis: 100%;
  margin: 0 0 2em 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.tab-list-item {
  display: inline-block;
  list-style: none;
  padding: 0.5rem 0.75rem;
  display: block;
  flex: 0 1 auto; /* Default */
  list-style-type: none;
  margin: auto;
  overflow: hidden;
  color: #17354E;
  font-family: 'Montserrat Regular', sans-serif;
  font-size: 24px;
  line-height: 29px;
}

.tab-list-active {
  border-bottom: solid var(--link) 3px;
  display: block;
  flex: 0 1 auto; /* Default */
  list-style-type: none;
  font-weight: bold;
  overflow: hidden;
}

