.navbar {
  background-color: white;
  position: relative;
  top: 0;
  padding: var(--p-1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 5px 3px #ccc;
}
.navbar__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__item_brand {
  margin-right: auto;
  flex-direction: column;
  align-items: flex-start;
}
.navbar__item_brand > a > img {
  width: 210px;
  height: auto;
}
.navbar__item_links > ul {
  display: inline-flex;
  list-style: none;
}
.navbar__item_links > ul > li {
  margin: 0 1.5rem;
}
.navbar__item_links > ul > li > a {
  padding: 10px;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.navbar__item_links > ul > li > a:hover {
  border-bottom: 2px solid #019e93;
}

/* || == :: mob-navbar == || */

.mob-navbar {
  display: none;
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  padding: 10px;
  width: 100%;
  max-height: 50px;
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.mob-navbar__item {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.mob-navbar__item_links {
  font-size: 2rem;
}
.mob-navbar__item_links > a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #25b2a9;
}
.mob-navbar__item_links > a > span {
  margin-top: 2px;
  font-size: 1.2rem;
  text-align: center;
  color: #22577a;
}
@media only screen and (max-width: 576px) {
  .mob-navbar {
    display: block;
  }
  .navbar {
    padding: var(--p-2);
  }
  .navbar__item_links {
    display: none;
  }
  .navbar__item_brand {
    margin-right: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar__item_brand > a > img {
    width: 150px;
    height: auto;
  }
}

/* ==== end: mob-navbar ==== */
