body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  padding-block: 24px;
}

@media (min-width: 768px) {
  header {
    max-height: 195px;
  }
}

header a {
  border: 0;
  outline: 0;
}

header ul {
  list-style: none;
  color: #ffffff;
  font-weight: bold;
}

header .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
  padding-inline: 24px;
  gap: 24px;
}

header .inner a {
  color: #ffffff;
}

header .gb-logo {
  order: 1;
}

header .what-oil-logo {
  order: 2;
  flex-grow: 1;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .gb-logo img {
  height: 64px;
  width: auto;
}

header .what-oil-logo img {
  height: 64px;
  width: auto;
}

@media (min-width: 560px) {
  header .gb-logo img {
    height: 96px;
    width: auto;
  }
  
  header .what-oil-logo img {
    height: 96px;
    width: auto;
  }
}

@media (min-width: 768px) {
  header .inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  header .gb-logo {
    order: 1;
    flex-basis: initial;
  }
  
  header .what-oil-logo {
    order: 3;
  }

  header .gb-logo img {
    max-width: 130px;
    width: 100%;
    height: auto;
  }

  header .what-oil-logo img {
    max-width: 370px;
    width: 100%;
    height: auto;
  }
}

main {
  display: flex;
  justify-content: center;
}

#oil-advisor {
  width: 100%;
  max-width: 1024px;
}

footer {
  margin-top: auto;
  font-size: 12px;
  color: #ffffff;
}

footer a {
  color: #ffffff;
}

footer h3 {
  color: #ffffff;
  text-transform: uppercase;
}

footer .footer-bar {
  height: 60px;
}

footer .inner {
  max-width: 1024px;
  margin: 0 auto;
  padding-inline: 24px;
}

footer .sections {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

footer .sections .section {
  flex: 1;
}

footer .accreditation-image {
  max-width: 100%;
  height: auto;
}

footer .footer-end {
  padding-block: 24px;
  margin-top: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  footer .sections {
    flex-direction: row;
  }

  footer .footer-end {
    flex-direction: row;
  }
}

footer .copyright {
  font-weight: bold;
  font-size: 14px;
}

footer .icon {
  width: 1em;
  height: 1em;
  margin-right: 4px;
}

footer .icon-l {
  width: 1.5em;
  height: 1.5em;
  margin-left: 8px;
}

footer .footer-end .copyright, footer .footer-end .social {
  display: flex;
  align-items: center;
}

footer .prefixed-text {
  display: flex;
  align-items: center;
}

.gb-orange-text {
  color: #ed692a;
}

.gb-orange-bg {
  background-color: #ed692a;
}

.gb-green-bg {
  background-color: #016938;
}