@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-Lt.woff2") format("woff2"), url("/fonts/OracleSans-Lt.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-LtIt.woff2") format("woff2"), url("/fonts/OracleSans-LtIt.woff") format("woff");
  font-weight:200;
  font-style: italic;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-Rg.woff2") format("woff2"), url("/fonts/OracleSans-Rg.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-It.woff2") format("woff2"), url("/fonts/OracleSans-It.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-SBd.woff2") format("woff2"), url("/fonts/OracleSans-SBd.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-SBdIt.woff2") format("woff2"), url("/fonts/OracleSans-SBdIt.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-Bd.woff2") format("woff2"), url("/fonts/OracleSans-Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-BdIt.woff2") format("woff2"), url("/fonts/OracleSans-BdIt.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-XBd.woff2") format("woff2"), url("/fonts/OracleSans-XBd.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-display: fallback;
  font-family: "Oracle Sans";
  src: url("/fonts/OracleSans-XBdIt.woff2") format("woff2"), url("/fonts/OracleSans-XBdIt.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}

body,
html {
  margin: 0;
  font-family: Oracle Sans, Arial, Helvetica, sans-serif;
}

body {
  overflow-y: auto;
}

.page {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: #FBF9F8;
  box-sizing: border-box;
  min-height: 100vh;

  background: url('/img/rebranded/bgTop.svg') right top no-repeat, url('/img/rebranded/bgTop.png') right -40px no-repeat, url('/img/rebranded/bgBottom.svg') left bottom no-repeat, url('/img/rebranded/bgBottom.png') 144px bottom no-repeat;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F4F2 url('/img/rebranded/stripe.png') left top repeat-x;
  border-bottom: 1px solid #1615131F;
  padding-top: 8px;
  box-sizing: border-box;
  height: 80px;
  color: #161513;
  margin-bottom: 56px;
  flex: 0 0 auto;
}

.header-image {
  height: 32px;
}

/* CONTENT - LAYOUT */

.content-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  padding: 0 88px 88px 144px;

}

.content-image {
  display: flex;
  height: 197px;
  align-items: flex-end;
}

.content-image img {
  width: 197px;
  height: 161px;
}

@media only screen and (min-width: 1297px) {
  .content-wrapper {
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
  }

  .content-image {
    order: 1;
    align-self: flex-end;
    justify-self: flex-end;
    flex-grow: 1;
    justify-content: flex-end;
  }

  .content-image img {
    width: 405px;
    height: 331px;
  }
}

.content {
  max-width: 1120px;
}

/* CONTENT - STYLES */

.headline-error,
.headline-description {
  font-family: Georgia, Oracle Sans, Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0;
}

.headline-error {
  font-size: 64px;
  font-weight: 400;
  line-height: 96px;
}

.headline-description {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}

@media only screen and (min-width: 1297px) {
  .headline-error {
    font-size: 96px;
    line-height: 96px;
  }

  .headline-description {
    font-size: 40px;
    line-height: 48px;
  }
}

@media only screen and (min-width: 1597px) {
  .headline-error {
    font-size: 128px;
    line-height: 145.44px;
  }

  .headline-description {
    font-size: 56px;
    line-height: 64px;
  }
}

p {
  margin-bottom: 32px;
}

ul {
  padding-left: 30px;
  margin: 20px 0 32px;
}

p, ul {
  font-size: 20px;
  line-height: 32px;
}

a {
  color: #00688C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 4px;
  color: white;
  background-color: #1F3A4B;
}

.button:hover {
  background-color: #2C5266;
  text-decoration: none;
}

/* FOOTER */

.footer {
  display: flex;
  padding: 0 24px;
  line-height: 24px;
  color: #161513B2;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 400;
  position: relative;
  bottom: 0;
  gap: 96px;
}

@media only screen and (min-width: 900px) {
  .footer-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}