:root {
  --navy: rgb(28 33 49);
  --lightblue: rgb(169 216 241);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  background-color: var(--navy);
  height: 120px;
  padding: 0 35px 0 5%;

  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;

  overflow-y: visible;
}

.footer {
  background-color: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px auto;

  padding: 15px 5%;
}

#footer-logo {
  height: 50px;
  align-self: center;
}

.footer-links-top {
  justify-self: right;
  list-style-type: none;

  display: flex;
  column-gap: 15px;
  align-self: center;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

#sidebar-menu-icon {
  z-index: 15;
  grid-row: 1;
  grid-column: 2;

  font-size: 25pt;
  color: white;
  background: none;
  border-style: none;

  justify-self: right;
  align-self: center;
}

#header-logo-container {
  height: 100%;
  grid-column: 1;
  display: flex;
  align-items: center;
  column-gap: 15px;
  text-decoration: none;
  color: white;
}

.bh-logo {
  height: 50px;
}

.bh-redirect {
  display: flex;
  align-items: center;
  column-gap: 25px;

  background-color: var(--lightblue);
  padding: 10px 5%;
}

#redirect-title {
  font-family: "Poppins", sans-serif;
}

#redirect-button {
  text-decoration: none;
  text-align: center;
  line-height: 1;
  background-color: var(--navy);
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
}

#redirect-button:hover {
  opacity: 0.8;
}

#sidebar {
  width: 100%;
  height: 0px;
  z-index: 10;

  position: relative;
}

.sidebar-shown {
  display: block;
}

.sidebar-hidden {
  display: none;
}

#sidebar-menu-container {
  text-align: right;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  background-color: rgba(28, 33, 49, 0.895);

  position: absolute;
  right: 0;
  width: 25%;
  min-width: 200px;
}

.sidebar-menu-item {
  border-bottom: solid 1px lightgrey;
  border-top: solid 1px lightgrey;

  display: grid;
  align-items: center;

  height: 50px;

  padding-right: 25px;
}

.sidebar-menu-item:hover {
  background-color: var(--navy);
}

.sidebar-menu-item a {
  color: white;
  text-decoration: none;
}

.content {
  padding: 0 5%;
}

.content a {
  font-family: Arial, Helvetica, sans-serif;
}

#home-item {
  display: none;
}

@media only screen and (max-width: 900px) {
  .header {
    grid-template-columns: auto 1fr;
  }

  #logo-tagline {
    display: none;
  }

  #sidebar-menu-container {
    width: 40%;
    min-width: fit-content;
  }
}

@media only screen and (max-width: 550px) {
  #sidebar-menu-container {
    background-color: var(--navy);
    width: 75%;
  }

  .sidebar-menu-item {
    height: 75px;
  }

  #footer-logo {
    display: none;
  }

  .footer-links-top {
    grid-column: 2;
    flex-direction: column;
    text-align: right;
  }
}
