.office-solution .navigation {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  background: black;
  color: white;
  border-radius: 10px;
  gap: 20px;
}

.office-solution .navigation .nav-item {
  display: flex;
  flex-direction: column;
  padding: 12px 10px 8px 10px;
  min-width: 130px;
  align-items: center;
}
.office-solution .navigation .nav-item .underline {
  border-radius: 20px;
  width: 50%;
  height: 2px;
  transition: 0.2s ease-in;
  margin: auto;
}
.office-solution .navigation .nav-item:hover .underline {
  background: #e50051;
}

.office-solution .navigation a {
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .office-solution .navigation {
    flex-direction: column;
  }
}
