.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: normal;
}
.tablinks {
  background-color: white;
  border: none;
  color: #555;
  padding: 8px 16px;
  font-weight: normal;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.tablinks.active {
  border-bottom: 2px solid black;
  color: black;
}
.tabcontent {
  display: none;
}
.tabcontent.active, #impactTab {
  display: block;
}
