.textmininav {
  padding-top: 90px;
  padding-bottom: 90px;
}

.textmininav__pretitle {
  margin-bottom: 5px;
  color: var(--blue1);
}
.textmininav__pretitle p {
  font-size: 16px;
  line-height: 150%;
}

.textmininav__heading {
  margin-bottom: 30px;
  color: var(--blue1);
}

.textmininav__navbar {
  display: flex;
  margin-bottom: 50px;
}
.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(--blue4);
  margin-right: 13px;
}
.textmininav__navbar ul li a {
  color: var(--blue1);
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  transition: color 0.12s ease-in;
}
.textmininav__navbar ul li a:hover {
  color: var(--blue4);
  transition: color 0.12s ease-in;
}
.textmininav__navbar ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.textmininav__content {
  color: var(--grey);
  font-size: 24px;
  line-height: 150%;
}
.textmininav__content h1 {
  margin-bottom: 30px;
}
.textmininav__content h1,
.textmininav__content h2,
.textmininav__content h3,
.textmininav__content h4,
.textmininav__content h5,
.textmininav__content h6 {
  color: var(--blue1);
}
.textmininav__content p {
  font-size: 24px;
  line-height: 150%;
}

@media screen and (max-width: 1279px) {
  .textmininav {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .textmininav__navbar ul {
    gap: 10px 0;
  }
  .textmininav__navbar {
    margin-bottom: 30px;
  }
  .textmininav__content {
    font-size: 22px;
  }
  .textmininav__content p {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .textmininav__content p {
    font-size: 19px;
  }
  .textmininav__navbar ul li a {
    font-size: 14px;
  }
  .textmininav__heading h2.section-title {
    font-size: 27px;
  }
}
@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;
  }
}