header {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  color: #ffffff;
  background: #404040;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2509803922);
  z-index: 1;
}
header .logo_row {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
header .logo_row .logo > * {
  max-width: 100%;
  height: 50px;
}
header .logo_row .logo_text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin: 0 10px;
  text-align: center;
}
header .nav_row {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
header .nav_row .nav_link {
  display: inline-block;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
header .nav_row:hover .nav_link {
  opacity: 0.25;
}
header .nav_row .nav_link:hover {
  opacity: 1;
}
header a {
  color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
  }
  header .logo_row {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  header .logo_row {
    margin-bottom: 20px;
    flex-direction: column;
  }
  header .nav_row {
    flex-direction: column;
    width: 100%;
  }
  header .nav_row .nav_link {
    width: 100%;
  }
}

/*# sourceMappingURL=header.css.map */