.textmininav {
  margin-top: 50px;
  margin-bottom: 50px;
}

.textmininav__navbar {
  display: flex;
}
.textmininav__navbar ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.textmininav__navbar ul li {
  padding-right: 13px;
  border-right: 1px solid var(--highlight);
  margin-right: 13px;
}
.textmininav__navbar ul li a {
  color: var(--highlight);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  transition: color 0.12s ease-in;
}
.textmininav__navbar ul li a:hover {
  color: var(--dunkelgrau);
  transition: color 0.12s ease-in;
}
.textmininav__navbar ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

@media screen and (max-width: 1279px) {
  .textmininav__navbar ul {
    gap: 10px 0;
  }
  .textmininav__navbar {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .textmininav__content p {
    font-size: 19px;
  }
  .textmininav__navbar ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) {
  .textmininav__navbar ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .textmininav__navbar ul li {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    position: relative;
    padding-bottom: 8px;
  }
  .textmininav__navbar ul li::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 18px;
    height: 1px;
    background-color: var(--blue4);
  }
  .textmininav__navbar ul li:last-child::after {
    display: none;
  }
  .textmininav__navbar ul li:last-child {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=textmininav-section.css.map */
