.navigation_container {
  margin: 92px 0 80px;
  border-bottom: 1px solid #ededee;
}
.navigation_list {
  display: flex;
  width: 100%;
}
.navigation_item {
  flex-grow: 1;
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 16px;
  font-weight: 600; font-family: 'Proxima Nova Lt', sans-serif;
  color: #404a51;
  padding: 0 15px;
  cursor: pointer;
}
.navigation_item,
.navigation_item:hover {
  text-decoration: none;
}
.navigation_item:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 1;
}
.navigation_item:not(:last-child) {
  border-right: 1px solid #f8f8f9;
}
.navigation_item:first-child {
  border-top-left-radius: 5px;
}
.navigation_item:last-child {
  border-top-right-radius: 5px;
}

/*mobile*/
@media (max-width: 767px) {
  .navigation_container .container {
    padding: 0;
  }
  .navigation_list {
    overflow: auto;
    padding: 0 20px;
    max-width: 100%;
  }
  .navigation_item {
    white-space: nowrap;
    padding: 0 20px;
    background: transparent;
    border-right: none !important;
  }
  .navigation_item:first-child {
    background: #fff;
    border-radius: 5px 5px 0 0;
  }
}
