.navigation-tab {
  height: 150px;
  width: 100%;
  max-width: 100%;
  background-color: #e9e9e9;
  display: flex;
  justify-content: center;
  justify-items: center;
}

.navigation-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.navigation-tab-item.active {
  width: 50%;
}

.navigation-tab-item.active .navigation-tab__icon {
  transform: translate(0px, -10px);
}

.navigation-tab-item.active .navigation-tab__txt {
  opacity: 1;
  transform: translate(0, 10px);
}

.navigation-tab-overlay {
  height: 100%;
  width: 220px;
  top: 0;
  transition: 0.3s;
  position: relative;
}

.navigation-tab__icon {
  display: block;
  color: #4298e7;
  transition-duration: 0.3s;
  line-height: 1;
  transform: translate(0, 11px);
}

.navigation-tab__txt {
  display: block;
  font-weight: 400;
  font-size: 100%;
  color: #4298e7;
  opacity: 0.4;
  transition-duration: 0.3s;
  transform: translate(0, 20px);
  user-select: none;
}
