.header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  border-bottom: 5px solid var(--base_blue_opacity_50);
  position: relative;
}

.header .logo {
  position: absolute;
  left: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .header .logo {
    left: 10px;
  }
}

.header .logo_img {
  width: 140px;
  height: auto;
}

.header .title {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--base_teal);
  text-align: center;
  text-transform: uppercase;
}


@media (max-width: 1000px) {
  .header .title {
    display: none;
  }
}

.header .links {
  position: absolute;
  right: 40px;
  display: flex;
  gap: 30px;
}

@media (max-width: 900px) {
  .header .links {
    right: 10px;
    gap: 20px;
  }
}

.header .link {
  font-size: 1em;
  color: var(--base_blue);
  text-decoration: none;
}

.header .home_icon {
  width: 24px; /* Adjust as needed */
  height: 24px;
}

