.midbar {
  order: 1;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

@media (max-width: 1025px) {
  
  .midbar {
    display: none; 
  }
  
}


.savin-nav {
  border-top: 1px solid lightgray;
}

.nav__menu {
  margin: 0 auto; 
}

@media (min-width: 1024px) {
  
  .savin-nav {
    height: 61px !important; 
  }
  
  .savin-nav .nav__logo {
    display: none; 
  }
}

.topbar {
  display: flex !important; {# Make sure it stays visible in mobile #}
  height: var(--topbar-height) !important; /* ↑ */
} 

.topbar svg {
  fill: white; 
  width: 16px; 
  height: 16px; 
}

.topbar  > :nth-child(5) {
  margin-left: auto; 
}


.consultation-content {
  text-align: center; 
}

.consultation-content p {
  color: #009959; 
  margin-bottom: 0 !important; 
  font-size: 21px; 
  font-weight: bold;
}

.consultation-content a {
  color: #006338 !important; 
  font-weight: bold; 
  text-decoration: underline !important; 
  font-size: 32px; 
  line-height: .5; 
}

.consultation-content.mobile {
  text-align: left; 
  padding-left: 5%;
}

.navbar-menu__parent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1px;
  background-color: #ccc;
}

.navbar-menu__parent::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1px;
  background-color: #ccc;
}