/* ========================
  header
  ======================= */

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  background-color: var(--off-white);
  font-size: var(--header-font-size);
  font-weight: var(--header-font-weight);
}

header a,
header ul {
  cursor: pointer;
  text-decoration: none;
  color: var(--off-black);
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  overflow: hidden;
}

.logo img {
  margin-left: 50px;
  height: 60%;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-basis: 500px;
  margin-right: 50px;
}

/* ========================
  footer
  ======================= */

footer {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--off-white);
  border-radius: 30px 30px 0 0;
  width: 65%;
  min-height: 200px;
  line-height: 1.5em;
}

footer a {
  cursor: pointer;
  text-decoration: none;
  color: var(--off-white);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}

.footer-container-row > * {
  padding: 0 0 0 0;
}

.footer-container-row {
  padding: 20px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 10px;
  width: 300px;
}

.footer-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.phone-infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.context-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.footer-icon {
  margin-right: 20px;
  font-size: var(--footer-icon-size);
}

.footer-icon.fa-phone {
  font-size: calc(var(--footer-icon-size) - 0.2em);
}

.footer-icon.fa-at {
  font-size: calc(var(--footer-icon-size) - 0.2em);
}

.copyright-line {
  margin-bottom: 8px;
}

.copyright-line a:hover {
  text-decoration: underline;
}
