.tabs-container {
    display: block;
}
.tabs-container .nav-tabs-ul {
  border: none;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.tabs-container .nav-tabs-ul li {
  height: 40px;
  flex: 1;
}
.tabs-container .nav-tabs-ul li a {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  border: 1px solid #d7dce1;
  border-radius: 0;
  margin-right: 0;
  color: #0074C7;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}
.tabs-container .nav-tabs-ul > li.active > a,
.tabs-container .nav-tabs-ul > li.active > a:focus,
.tabs-container .nav-tabs-ul > li.active > a:hover {
  color: #fff;
  border: 1px solid #0074C7;
  background: #0a61ad;
}

.tabs-container .nav-tabs-ul > li > a:hover {
  background: transparent;
  border: 1px solid #0074C7;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
    .tabs-container .nav-tabs-ul li {
        height: 70px;
    }
}
