.navbar-nav-section {
  @apply border-accent-red;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 45px;
  color: white;
  line-height: 1;
  padding-bottom: 40px;
  margin-bottom: 30px;
  white-space: nowrap;
  border-bottom-width: 1px;
  border-style: solid;
}
.navbar-nav-section:focus {
  outline: none;
  box-shadow: none;
}
.navbar-nav-section.active {
  border-bottom-color: transparent;
}
@media (min-width: 1024px) {
  /* .navbar-nav-section {
    align-items: center;
  } */
  .navbar-nav-section {
    display: block;
    border: none;
    font-size: 18px;
    color: black;
    padding: 35px 0;
    margin: 0 20px;
  }
}
@media (min-width: 1440px) {
  .navbar-nav-section {
    padding: 45px 0;
  }
}
@media (min-width: 1024px) {
  .navbar-nav-section .label {
    display: inline-block;
    position: relative;
  }
  .navbar-nav-section .label::after {
    content: '';
    width: 0;
    height: 1px;
    background-color: transparent;
    display: block;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
  }
  .navbar-nav-section:hover .label::after,
  .navbar-nav-section.active .label::after {
    background-color: black;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .navbar-nav-section .icon-plus {
    display: none;
  }
}
@media (min-width: 1024px) {
  .navbar-nav-section {
    margin: 0 15px;
  }
}
