@font-face {
  font-display: swap;
  font-family: "Plantin";
  src: url("/fonts/Plantin-Regular.woff2") format("woff2"),
    url("/fonts/Plantin-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Whyte";
  src: url("/fonts/Whyte-Book.woff2") format("woff2"),
    url("/fonts/Whyte-Book.woff") format("woff"),
    url("/fonts/Whyte-Book.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Whyte";
  font-weight: bold;
  src: url("/fonts/Whyte-Bold.woff2") format("woff2"),
    url("/fonts/Whyte-Bold.woff") format("woff"),
    url("/fonts/Whyte-Bold.otf") format("opentype");
}

:root {
  --color-white: #fff;
  --color-navy-grey: #212225;
  --color-black: #252424;
  --color-dark-grey: rgba(37, 36, 36, 0.6);
  --color-light-grey: #f2f2f2;
  --color-grey: #e5e5e5;
  --color-pale-orange: #f4e0c1;
  --color-orange: #e95b2e;
  --color-dark-orange: #c4441c;
  --color-mustard: #ffdb96;
  --color-light-purple: #e9dfe0;
  --color-light-cyan: #baccd4;
  --color-light-red: #f6ceb4;
  --color-light-brown: #f6f2ea;
  --color-pale-brown: #ffedd2;

  --text-hero-base: 28px;

  --card-font-size-xs: 12px;
  --card-font-size-s: 12.19px;
  --card-font-size-m: 12.3784px;
  --card-font-size-l: 16.2593px;

  --font-size-tiny: 16px;
  --font-size-xs: 18px;
  --font-size-sm: 24px;
  --font-size-s: 26px;
  --font-size-m: 38px;
  --font-size-lg: 42px;
  --font-size-xl: 50px;
  --font-size-xxl: 64px;

  --line-height-s: 21px;
  --line-height-m: 24px;
  --line-height-mplus: 43.2px;
  --line-height-lg: 77px;
  --margin-xs: 24px;
  --margin-s: 36px;
  --margin-m: 10em;

  --spacing-0: 0.25rem; /* 8px */
  --spacing-1: 0.5rem; /* 8px */
  --spacing-2: 0.75rem; /*12px*/
  --spacing-3: 1rem; /* 16px */
  --spacing-4: 1.5rem; /*24px */
  --spacing-5: 2rem; /* 30px */
  --spacing-6: 2.5rem; /* 40px */
  --spacing-7: 3rem; /* 48px */
  --spacing-8: 3.5rem; /* 56px */
  --spacing-9: 4rem; /* 64px */
  --spacing-10: 4.5rem; /* 72px */
  --font-family: "Whyte";
  --headings-font-family: "Plantin";

  --z-index-header: 100;
  --z-index-footer: 110;
}
/* reset */
/* Consistent line spacing */
html {
  line-sizing: normal;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden;
  font-family: var(
    --font-family,
    "Lucida Grande",
    "Lucida Sans Unicode",
    "Lucida Sans",
    Geneva,
    Verdana,
    sans-serif
  );
}
button,
input {
  font: inherit;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* Switch to rem units for headings */
/* @@@ Initial values are based on existing browser defaults */
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.17rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.83rem;
}
h6 {
  font-size: 0.67rem;
}

/* Keep h1 margins consistent, even when nested */
h1 {
  margin: 0.67em 0;
}
/* Embedded Elements
  ********************/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}
img,
svg,
video,
canvas {
  height: auto;
}
/* Remove the border on images inside links in IE 10 and earlier */
img {
  border-style: none;
}

input,
textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
*,
::before,
::after {
  box-sizing: border-box;
}
/* reset */

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.logo {
  margin: auto;
  margin-top: var(--spacing-4);
}

.nav-links {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: var(--margin-s);
}
.nav-item:hover {
  text-shadow: 1px 0 0 var(--color-black);
}

@media (min-width: 768px) {
  .logo {
    display: inline-block;
    margin: 0;
  }
  .nav-links {
    display: flex;
  }
  .navbar {
    padding-top: var(--margin-xs);
    padding-left: var(--margin-xs);
    padding-right: var(--margin-xs);
    padding-bottom: 6em;
  }
}

.heading {
  font-weight: normal;
  color: var(--color-black);
  font-family: var(
    --headings-font-family,
    "Times New Roman",
    Times,
    Baskerville,
    Georgia,
    serif
  );
  margin-bottom: var(--spacing-3);
}

.subheading {
  font-size: var(--font-size-sm);
  padding-top: var(--spacing-5);
}

.center-text {
  text-align: center;
  margin: auto;
}

.text-content {
  font-size: var(--font-size-tiny);
  max-width: 50ch;
  line-height: var(--spacing-4);
  margin-bottom: var(--spacing-7);
}

.hero-text {
  font-weight: normal;
  font-size: var(--text-hero-base);
  line-height: var(--line-height-mplus);
  text-align: center;
  position: relative;
  z-index: var(--z-index-header);
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-text .btn {
  font-size: var(--font-size-xs);
  margin-top: 1em;
}
.hero-img-large {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}

@media (min-width: 768px) {
  .hero-text {
    text-align: unset;
    max-width: 50ch;
    position: absolute;
    display: block;
  }
  .hero-text .heading {
    font-size: var(--font-size-xl);
    line-height: 130%;
  }
  .hero-text .btn {
    margin-top: var(--margin-xs);
  }
  .subheading {
    font-size: var(--font-size-xl);
  }
  .text-content {
    max-width: fit-content;
    font-size: var(--font-size-s);
    line-height: 145%;
    margin-bottom: var(--spacing-9);
  }

  .hero-img-large {
    display: block;
  }
  .hero-img-small {
    display: none;
  }
  .hero__inner {
    --aspect-ratio: 0.8;
  }
}

@media (min-width: 1200px) {
  .hero-text .heading {
    font-size: var(--font-size-xxl);
    line-height: 130%;
  }
  .hero-text .btn {
    font-size: var(--font-size-sm);
    margin-top: var(--margin-s);
  }
}

.text-block {
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
}

.btn {
  color: var(--color-white);
  background-color: var(--color-orange);
  border: none;
  border-radius: 6.25em;
  text-align: center;
  font-weight: bold;
  padding: var(--spacing-1) var(--spacing-5);
}
.btn:hover {
  background-color: #fc825b;
}

.ipad-container {
  margin-bottom: var(--spacing-9);
  margin-left: var(--spacing-3);
  margin-right: var(--spacing-3);
}

.fact-cards {
  display: flex;
  flex-direction: column;
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
  padding-top: var(--spacing-5);
}

.fact-title {
  font-weight: bold;
  background-color: var(--color-mustard);
  width: max-content;
  border-radius: 1em;
  padding: var(--spacing-2) var(--spacing-3);
  margin-bottom: var(--spacing-1);
}

.fact-content {
  background: var(--color-white);
  border-radius: 1em;
  padding: var(--spacing-4);
  margin-bottom: var(--spacing-5);
  line-height: var(--spacing-4);
}

@media (min-width: 768px) {
  .ipad-container {
    margin-bottom: 12em;
  }
  .fact-content {
    width: 28em;
    font-size: var(--font-size-xs);
  }
  .fact-cards {
    margin: auto;
  }
  .fact-card-wrapper {
    display: flex;
    flex-direction: row;
  }
  .fact-title {
    flex-shrink: 0;
    align-self: flex-start;
    margin-right: var(--spacing-2);
  }
}

@media (min-width: 1100px) {
  .fact2 {
    transform: translateX(10em);
  }
  .fact3 {
    transform: translateX(-10em);
  }
  .fact3 .fact-content {
    max-width: 385px;
  }
  .fact4 {
    transform: translateX(10em);
  }
}

.cards {
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
}

.team-cards {
  display: flex;
  overflow: auto;
  margin-bottom: var(--spacing-8);
  padding-right: var(--spacing-3);
}

.team-body {
  background-color: var(--color-white);
  border-radius: 1.85em;
  width: 100%;
  min-width: 260px;
  padding: var(--spacing-3);
  margin-right: var(--spacing-3);
  display: flex;
  flex-direction: column;
}

.team-photo {
  border-radius: 1.5em;
  width: 100%;
  max-width: 228px;
  max-height: 228px;
  margin-bottom: var(--spacing-3);
}

.team-title {
  font-weight: bold;
  font-size: 1.25em;
  padding: 0;
  margin: 0;
}
.team-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-subtitle {
  color: var(--color-orange);
  font-weight: normal;
  font-size: var(--font-size-tiny);
  padding: 0;
  margin: 0;
  line-height: 119%;
}

.team-copy {
  margin-top: var(--spacing-1);
}

.team-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-end;
}

.team-links-icon {
  width: var(--spacing-4);
  height: var(--spacing-4);
  margin-right: var(--spacing-2);
  border-radius: 50%;
}
.team-links-icon:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  .team-title {
    font-size: var(--font-size-sm);
  }
  .team-copy {
    font-size: var(--font-size-xs);
  }
  .team-subtitle {
    font-size: var(--font-size-xs);
  }
  .team-cards {
    flex-direction: column;
  }
  .text-block {
    margin: auto;
  }
  .team-body {
    flex-direction: row;
    max-width: 900px;
    margin: auto;
    margin-bottom: var(--spacing-4);
  }
  .team-layout {
    width: 100%;
    margin-left: var(--spacing-4);
    padding-right: var(--spacing-6);
  }
  .team-photo {
    margin-bottom: 0;
  }
}

.team-cards {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.team-cards::-webkit-scrollbar {
  display: none;
}

.certificate-example {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin-top: var(--spacing-7);
  margin-bottom: var(--spacing-7);
}

.centered-div {
  padding-bottom: var(--spacing-6);
}

@media (min-width: 768px) {
  .certificate-block {
    padding-bottom: 5em;
  }
  .centered-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: var(--spacing-10);
  }
}
.small-signup {
  padding-bottom: var(--spacing-5);
  padding-top: var(--spacing-5);
}

.bg-orange {
  background-color: var(--color-pale-orange);
}
.bg-grey {
  background-color: var(--color-light-grey);
}
.bg-white {
  background-color: var(--color-white);
}
.bg-light-red {
  background-color: var(--color-light-red);
}

.curved-top {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

footer {
  background-color: var(--color-navy-grey);
}

.footer-info {
  display: flex;
  padding-left: var(--spacing-4);
  padding-right: var(--spacing-4);
  padding-top: var(--spacing-10);
  padding-bottom: var(--spacing-10);
}

.footer-info-logo {
  margin-right: var(--spacing-9);
  width: var(--spacing-7);
}

.footer-info-links {
  color: var(--color-white);
  font-size: var(--font-size-tiny);
}

.footer-info-links li {
  margin-bottom: var(--margin-xs);
}
.footer-info-links li:hover {
  text-shadow: 1px 0 0 var(--color-white);
}

@media (min-width: 768px) {
  .footer-info {
    justify-content: space-around;
  }
  .footer-info-links {
    display: flex;
  }
  .left-footer {
    padding-right: var(--spacing-9);
  }
  .right-footer {
    padding-right: var(--spacing-9);
  }
}

.bg-light-orange {
  background-color: var(--color-pale-orange);
}

.content-block {
  display: flex;
  flex-direction: column;
}

.nowrap {
  white-space: nowrap;
}
/* form */
.cta {
  max-width: 327px;
  margin: auto;
  margin-top: var(--spacing-5);
  margin-bottom: var(--spacing-5);
}
.custom-form {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.form {
  font-size: var(--font-size-xs);
}
.form-input {
  display: inline-block;
  flex: 1;
  padding: var(--spacing-2) var(--spacing-4);
  border: none;
  background: var(--color-white);
  border-radius: 66px;
  font-size: var(--font-size-tiny);
  cursor: text;
}
.form-input:focus {
  outline: 0;
  box-shadow: inset 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: inset 0 0 0 3px -moz-mac-focusring; /* Firefox */
  outline: inset 0 -webkit-focus-ring-color; /* Webkit, Safari */
}

.form-input::placeholder {
  color: var(--color-dark-grey);
}
.form-submit {
  padding: var(--spacing-2) var(--spacing-4);
  margin-top: var(--spacing-2);
  font-size: var(--font-size-tiny);
}

input[type="checkbox"] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
}
input[type="checkbox"] + :hover:before {
  border: 2px solid var(--color-dark-orange);
}

input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  margin-top: 1.25em;
  margin-left: 1.25em;
  font-size: var(--font-size-tiny);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  cursor: pointer;
}

input[type="checkbox"] + label::before {
  content: "";
  margin-right: 1.125em;
  width: 1.25em;
  height: 1.25em;
  background: var(--color-pale-brown);
  border: 2px solid var(--color-orange);
  border-radius: 0.2em;
  flex-shrink: 0;
}

input[type="checkbox"]:checked + label::before {
  background: var(--color-orange);
  border: 2px solid var(--color-dark-orange);
}

input[type="checkbox"]:checked + label::before {
  width: 1.25em;
  height: 1.25em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: url("data:image/svg+xml; utf8,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4 10L11.5 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/* input[type="checkbox"]:focus + label::before {
  outline: inset #5d9dd5 solid 1px;
  box-shadow: 0 0px 8px #5e9ed6;
  border-radius: 0.2em;
} */

@media (min-width: 768px) {
  .cta-heading {
    max-width: 35ch;
  }
  .cta {
    max-width: 787px;
    font-size: var(--font-size-sm);
    margin-top: 0;
  }
  .custom-form {
    flex-direction: row;
    align-items: center;
  }
  .form {
    display: block;
    width: 100%;
    max-width: 722px;
    font-size: var(--font-size-sm);
  }

  .form-submit {
    white-space: nowrap;
    margin-left: -6em;
    display: inline-block;
    margin-top: 0;
    font-size: var(--font-size-xs);
  }
  .form-input {
    width: 100%;
    font-size: var(--font-size-xs);
  }
}

/* aspect ratio */
.o-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.o-aspect-ratio {
  position: relative;
}
.o-aspect-ratio::before {
  content: "";
  display: block;
  padding-top: calc(100% * var(--aspect-ratio, 1));
}
.o-aspect-ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero__inner {
  --aspect-ratio: 1.2;
}
@media screen and (orientation: landscape) {
  .hero__inner {
    --aspect-ratio: 9/16;
  }
}
/* aspect ratio */

.header {
  position: relative;
}
.svg-block {
  --aspect-ratio: 0.75;
  width: 100%;
  padding-right: 1em;
  padding-bottom: 3.5em;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .svg-block {
    position: relative;
  }
}

@media (min-width: 1100px) {
  .svg-block {
    /* width: 80%; */
    --aspect-ratio: 0.60742971887;
    position: relative;
  }
}

/* curved borders with background color */
.scooped {
  position: relative;
}
.scooped:before {
  position: absolute;
  left: 0px;
  top: -15px;
  right: 0px;
  bottom: 0px;
  height: 1em;
  background-color: inherit;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  content: "";
}
.scooped:after {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -15px;
  height: 1em;
  background-color: #f4e0c0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  content: "";
}
.curved-corners {
  border-radius: 2.25em;
}

/* GRID experiment */
.ipad-img {
  width: 100%;
  max-width: 990px;
  padding-top: var(--spacing-4);
  padding-left: var(--spacing-3);
  padding-right: var(--spacing-3);
}

.grid-wrapper {
  display: grid;
  background: url(/images/ipadframe.png);
  --aspect-ratio: 1450/2100;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0fr 1fr 1fr 1fr;
  grid-template-rows: 2.4fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    ". . . b b . f"
    "a c . . . . f"
    ". . . . . . ."
    ". . . . g . ."
    ". d . . g . .";
  font-size: clamp(0.2rem, 1vw, 0.6rem);
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr 1fr 0.1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1.5fr 1fr 1fr 1fr;
    grid-template-areas:
      ". . . . . . f"
      "a a . b b . f"
      ". . . . . . g"
      ". e e . d . g";
  }
}

.oc-1 {
  display: none;
  grid-area: a;
  position: relative;
}
.oc-1 .overview-card {
  width: 63em;
  position: absolute;
  right: 3em;
  display: flex;
  padding: var(--spacing-3);
  background-color: #f6ceb4;
  border-radius: 2em;
}

.oc-2 {
  display: none;
  grid-area: b;
  align-self: flex-end;
  position: relative;
}
.oc-2 .overview-card {
  width: 54em;
  background-color: #f4e0c1;
  border-radius: 2em;
  position: absolute;
  padding-top: var(--spacing-2);
  padding-left: var(--spacing-2);
  padding-right: var(--spacing-4);
}
.oc-2 .overview-img {
  padding-right: var(--spacing-3);
  width: 20em;
}
.oc-2 .overview-images {
  display: none;
}

.oc-3 {
  grid-area: c;
  align-self: center;
}
.oc-3 .overview-card {
  /* width: 20em; */
  background-color: #baccd4;
  border-radius: 2em;
  position: absolute;
}

.oc-4 {
  grid-area: b;
  align-self: flex-end;
  position: relative;
  justify-self: flex-start;
}
.oc-4 .overview-card {
  width: 45em;
  background-color: #e0d3e4;
  position: absolute;
  padding-top: var(--spacing-3);
  padding-left: var(--spacing-3);
  padding-right: var(--spacing-0);
  border-radius: 2em;
}
@media (min-width: 768px) {
  .oc-4 .overview-card {
    margin-top: 4em;
  }
  .oc-5 .overview-card {
    margin-top: 2.5em;
    margin-left: 4em;
  }
}
@media (min-width: 1000px) {
  .oc-5 .overview-card {
    margin-top: 0;
    margin-left: 3.5em;
  }
}
.oc-4 .overview-img {
  bottom: 2em;
  width: 13em;
}
.oc-4 .overview-img {
  max-width: 154.73px;
}

.oc-5 {
  grid-area: g;
  justify-self: center;
  position: relative;
  padding-right: 4.5em;
  padding-top: 11em;
}
.oc-5 .overview-card {
  background-color: #f4e0c1;
  border-radius: 2em;
  width: 22em;
  position: absolute;
}
@media (min-width: 500px) {
  .oc-5 {
    padding-top: 6em;
  }
}
@media (min-width: 768px) {
  .oc-5 {
    justify-self: flex-end;
    align-self: center;
    padding-top: 0;
    grid-area: d;
  }
}

.overview-avatar {
  max-width: 10em;
  width: 100%;
}

.overview-title {
  color: var(--color-black);
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: var(--spacing-0);
  max-width: 255px;
  line-height: 1.33;
  margin-top: 0;
}
.texticon {
  display: flex;
  align-items: center;
}
.texticon img {
  margin-left: 0.75em;
  max-width: 18px;
  width: 100%;
}

@media (min-width: 768px) {
  .overview-title {
    font-size: 2em;
  }
}
.overview-subtitle {
  color: var(--color-dark-grey);
  margin-top: 0;
  font-size: 1.5em;
}

.overview-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.overview-copy {
  color: var(--color-black);
  font-weight: normal;
  max-width: 45ch;
  font-size: 1.5em;
  line-height: 1.44;
}
.overview-copy span {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.overview-copy span p {
  margin-left: 9.28px;
  font-size: 1em;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
@media (min-width: 1100px) {
  .overview-copy span p {
  font-size: 13.9219px;
  }
}

.overview-button {
  background-color: var(--color-black);
  border-radius: 2em;
  font-size: 1em;
  width: 100%;
  max-width: max-content;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0.6em 1em;
  margin-bottom: var(--spacing-2);
}

.overview-button-text {
  color: var(--color-white);
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.overview-button-icon {
  width: 2em;
  height: 2em;
  margin-left: 1em;
}

.overview-list {
  color: var(--color-black);
}

.overview-list li {
  position: relative;
  list-style-type: none;
  font-size: 1.5em;
}

.overview-list li:before {
  content: "";
  background-image: url(/images/listicon.png);
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  margin-right: 0.2rem;
}

.overview-list ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.overview-list-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color-dark-grey);
  margin-bottom: var(--spacing-1);
}

.overview-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.overview-header-img {
  width: 100%;
  max-width: 5em;
  width: 100%;
  margin-right: 1.5em;
}

.overview-content {
  flex: 2;
}

.overview-images {
  flex: 1;
}

.centered-icon {
  width: 9.2771084337em;
  height: 10em;
  align-self: center;
  margin-top: 3em;
  margin-bottom: 3em;
}

.overview-copy-small {
  padding: 1em;
  margin-left: 0.8em;
  margin-right: 0.8em;
  margin-bottom: 0.8em;
  background: var(--color-white);
  border-radius: 1.3em;
}

.overview-card-tiny {
  padding: 1.5em 1em;
  border-radius: 2.1em;
  position: absolute;
}
.overview-card-tiny .overview-title {
  font-size: 1.5em;
}
.overview-copy-small .overview-title {
  font-size: 1.5em;
}
.flex3 {
  flex: 3;
}
.fc {
  display: flex;
  flex-direction: column;
}
.fr {
  display: flex;
  flex-direction: row;
}

/* smaller cards */
.sc {
  font-size: 1.3em;
  padding: 0;
  margin: 0;
}

.osc-1 {
  display: none;
  grid-area: b;
  justify-self: flex-start;
  align-self: center;
  padding-bottom: 1.5em;
}

.osc-2 {
  grid-area: a;
  align-self: center;
}

.osc-3 {
  display: none;
  grid-area: g;
  padding-bottom: 14em;
  position: relative;
  justify-self: center;
  align-self: center;
  white-space: nowrap;
}

.osc-4 {
  display: none;
  align-self: center;
  grid-area: g;
  justify-self: center;
  position: relative;
}

@media (min-width: 768px) {
  .oc-2 .overview-images {
    display: block;
  }
  .oc-3 {
    grid-area: f;
    justify-self: center;
  }
  .oc-4 {
    grid-area: e;
    align-self: center;
  }

  .osc-2 {
    grid-area: f;
    justify-self: center;
    padding-bottom: 14em;
  }
  .osc-3 {
    display: block;
  }
  .osc-4 {
    display: block;
  }
  .oc-1 {
    display: block;
  }
  .osc-1 {
    display: block;
  }
  .oc-2 {
    display: block;
  }
}

@media (min-width: 1100px) {
  .oc-3 ,
  .osc-2,
  .osc-3, .osc-4 {
    margin-right: 5em;
  }
  .osc-3 {
    margin-top: -7em;
  }
  .osc-4 {
    margin-top: -8em;
  }
}
.plain {
  width: 31em;
  border-radius: 2rem;
  padding: 18.5px;
}

/* Legal + Imprint pages */

.bulk-text h1 {
  font-weight: 400;
  margin-bottom: var(--spacing-6);
}

.bulk-text h3 {
  margin: 0;
}

.bulk-text h1:not:first-child {
  margin-top: var(--spacing-6);
}

.bulk-text p {
  margin-bottom: var(--spacing-2);
  line-height: 135%;
  margin-top: 0;
}

.bulk-text {
  max-width: 900px;
  width: 100%;
  margin-bottom: var(--spacing-10);
}

.bold-text {
  font-weight: 700;
}

.email-link {
  text-decoration: underline;
}

/* cookie */
.cookie-bar.fixedPos {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-footer);
}

.cookie-bar {
  line-height: 120%;
  background-color: var(--color-mustard);
  color: var(--color-black);
  padding: var(--spacing-1) var(--spacing-2);
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-bar {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
  }
}

.cb-accept {
  padding: var(--spacing-1) var(--spacing-4);
  font-size: var(--font-size-xs);
  color: var(--color-black);
  font-weight: bold;
  background: var(--color-light-grey);
  border-radius: 1.2em;
  white-space: nowrap;
}
.cb-accept:hover {
  background-color: #ffeac1;
}

.cb-privacy {
  font-weight: bold;
}
.cb-privacy:hover {
  color: #6d6d6d;
}
/* animations */
.anim-card {
  opacity: 0;
}
.oc-1 .active {
  animation: slide-in-left 500ms forwards;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-10em);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.rs.active {
  animation: slide-in-right 500ms forwards;
}

.custom-anim.active {
  animation: slideFromL 500ms forwards;
}
@keyframes slide-in-right {
  0% {
    transform: translateX(5em);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.oc-2 .active {
  animation: fade-scale 600ms forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.osc-1 .active {
  animation: fade-scale 600ms forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.oc-4 .active {
  animation: slideFromR 700ms forwards;
}
.oc-5 .active {
  animation: slideUp 700ms forwards;
}
@media (min-width: 768px) {
  .oc-4 .active {
    animation: slideUp 700ms forwards;
  }
  .custom-anim.active {
    animation: slide-in-right 500ms forwards;
  }
}

@keyframes slideFromR {
  0% {
    opacity: 0;

    transform: translateX(8em);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromL {
  0% {
    opacity: 0;

    transform: translateX(-8em);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-scale {
  0% {
    opacity: 0;
    transform: scale(0.2);
    transform-origin: bottom;
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;

    transform: translateY(5em);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fact-card-wrapper {
  opacity: 0;
}
.fact-card-wrapper.active {
  animation: fadeIn 500ms ease-in-out;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

/* animations */
@media (min-width: 768px) {
  #graduation-cap {
    opacity: 0;
  }
  #arrow {
    opacity: 0;
  }
  .hero-text {
    opacity: 0;
    height: 50%;
  }
  #checkmark {
    opacity: 0;
  }
  #speech-bubble {
    opacity: 0;
  }
  #speech-lines {
    opacity: 0;
  }

  .main-anim {
    transform: translateY(-1000px);
    opacity: 0;
  }
}
/* blur experimentation */
.magnifying-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: 100;
}
.magnifying-container:hover {
  cursor: grab;
}
.magnifying-glass {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  border: 2px solid #252424;
  background: rgba(246, 242, 234, 0.25);
  backdrop-filter: blur(0.2em);
  -webkit-backdrop-filter: blur(0.2em);
}

.magnifying-holder {
  width: 55px;
  height: 10px;
  background: #e0d3e4;
  border: 2px solid #252424;
  border-left: 1.5px solid;
  transform: rotate(135deg);
  position: absolute;
  left: -35px;
  right: 0;
}

@media (min-width: 768px) {
  .magnifying-container {
    opacity: 0;
  }
}

@media (min-width: 1200px) {
  .magnifying-glass {
    height: 4em;
    width: 4em;
    border: 3px solid #252424;
  }
  .magnifying-holder {
    border: 3px solid #252424;
    width: 70px;
    height: 12px;
    left: -43px;
    border-left: 1.5px solid;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .svg-block {
    --aspect-ratio: 0.35;
    left: 5em;
  }
  .hero-img-large {
    display: block;
  }
  .hero-img-small {
    display: none;
  }
  .magnifying-container {
    display: none;
  }
  .hero-text {
    min-height: 90vh;
    display: block;
    padding-top: 0.75em;
    text-align: inherit;
  }
  .bulk-text h1 {
    margin-bottom: 0;
    font-size: 1.75em;
  }
  .bulk-text h2 {
    font-size: 1.2em;
  }
  .cookie-bar {
    font-size: 0.75em;
  }
  .fact-content {
    font-size: 0.75em;
    line-height: unset;
  }
}
