header {
  width: 100%;
  background-color: #fff;
}

.header-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.header-items {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

.header-items a {
  font-size: 18px;
  align-items: center;
  font-family: 'Poppins';
  color: #293e5c;
}

.header-items :hover {
  color: #b1b794;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                               */
/* * -------------------------------------------------------------------------- */

@media (max-width: 550px) {
  .header-items {
    grid-template-columns: auto;
    gap: 5px;
  }
}