html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  background: var(--bg-base);
  height: 100%;
}
footer {
  background: var(--color-main-two);
  width: 100%;
}
header .navbar {
  background-color: var(--color-website-heading);
  padding: 15px;
  box-shadow: 0px 3px 18px 1px #bdbdbd;
}
header .logo {
  max-height: 100px;
  margin-right: auto;
  margin-left: auto;
}
.d-flex {
  padding-left: 0px;
}
section li {
  list-style: none;
}
footer .footer-content {
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.separator {
  height: 30px;
  background-color: lightgrey;
  width: 2px;
  margin-right: 15px;
  margin-left: 15px;
}
a.back-button-anchor {
  text-decoration: none;
}
.back-button {
  padding: 8px 12px;
  margin: 0px 30px 20px;
  border-radius: 7px;
  transition: all 70ms;
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  cursor: pointer;
  color: initial;
  text-decoration: none;
}
.back-button .back-arrow {
  transform: rotate(180deg);
  margin-right: 10px;
}
.back-button:hover {
  opacity: 1;
  background: var(--color-main-one);
  color: var(--color-main-one-partner);
  box-shadow: 0px 0px 20px 6px #c9c9c9;
}
.content-centered {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 950px;
}
.section-content {
  flex-grow: 1;
  padding: 30px 0px;
}
