:root {
  --hover-color: #db4c46;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
}

a {
  color: var(--hover-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.prevent-scrolling {
  overflow-y: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------- */
/* Text styles */
/* ----------- */

.heading-1 {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

.heading-2 {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 5rem;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.heading-3 {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 3.8rem;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.heading-4 {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.8rem;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.heading-5 {
  font-family: 'Playfair Display', Garamond, 'Big Caslon', serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 1.15;
  color: #5f5f5f;
  margin: 0;
}

.heading-6 {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.heading-7 {
  font-family: 'Roboto Mono', 'Gill Sans', Copperplate, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.25;
  letter-spacing: 0.215em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

p {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 1.8;
  color: #5f5f5f;
  margin: 2.4rem 0;
}

p.small {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.8;
  color: #5f5f5f;
}

li.small {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.8;
  color: #5f5f5f;
}

li.medium {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 1.8;
  color: #5f5f5f;
}

.text-black {
  color: #000000;
}

ul.list li {
  font-family: Gerstner-Programm, Helvetica, 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.9rem;
  line-height: 1.8;
  color: #5f5f5f;
}

.font-bold {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .heading-1 {
    font-size: 8.5rem;
  }

  .heading-2 {
    font-size: 7rem;
  }

  .heading-3 {
    font-size: 5rem;
  }

  .heading-4 {
    font-size: 3.8rem;
  }

  ul.list li {
    font-size: 2.4rem;
  }
}

/* ------ */
/* Layout */
/* ------ */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  max-width: 144rem;
  padding: 0 2rem;
  margin: 0 auto;
}

@media (min-width: 480px) {
  /* for dealing with awkward line breaks that happen on mobile only */
  .mobile-break {
    display: none;
  }
}

@media (min-width: 768px) {
  .content-wrapper {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .content-wrapper {
    padding: 0 8rem;
  }
}

.grid-12,
.grid-11,
.grid-10,
.grid-9,
.grid-8,
.grid-7,
.grid-6,
.grid-5,
.grid-4,
.grid-3,
.grid-2 {
  width: 100%;
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-10 {
  grid-column: span 10;
}

.col-span-11 {
  grid-column: span 11;
}

@media (min-width: 768px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-11 {
    grid-template-columns: repeat(11, 1fr);
  }

  .grid-10 {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-9 {
    grid-template-columns: repeat(9, 1fr);
  }

  .grid-8 {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------- */
/* Helper styles */
/* ------------- */
/* If any of these change, you need to copy them over to Navigation.vue */
/* This is because header is unable to use this file until the old site is gone */

.site-max-width {
  width: 100%;
  max-width: 128rem;
}

.site-padding {
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .site-padding {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .site-padding {
    padding: 0 8rem;
  }
}

.center-content {
  display: flex;
  justify-content: center;
}

.no-wrap {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .full-width-mobile {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .full-width-tablet {
    width: calc(100% + 16rem);
    margin-left: -8rem;
  }
}

.no-margin {
  margin: 0;
}

.bg-dark {
  background: #0b0b0b;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-44 {
  margin-bottom: 4.4rem;
}

.mb-64 {
  margin-bottom: 6.4rem;
}

.mb-88 {
  margin-bottom: 8.8rem;
}

.mb-160 {
  margin-bottom: 16rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-16 {
  margin-top: 1.6rem;
}

.mt-24 {
  margin-top: 2.4rem;
}

.mt-44 {
  margin-top: 4.4rem;
}

.mt-64 {
  margin-top: 6.4rem;
}

.mt-88 {
  margin-top: 8.8rem;
}

.mt-160 {
  margin-top: 16rem;
}

@media (max-width: 767px) {
  .sm\:mb-16 {
    margin-bottom: 1.6rem;
  }

  .sm\:mb-24 {
    margin-bottom: 2.4rem;
  }

  .sm\:mb-44 {
    margin-bottom: 4.4rem;
  }

  .sm\:mb-64 {
    margin-bottom: 6.4rem;
  }

  .sm\:mb-88 {
    margin-bottom: 8.8rem;
  }

  .sm\:mb-160 {
    margin-bottom: 16rem;
  }

  .sm\:mt-16 {
    margin-top: 1.6rem;
  }

  .sm\:mt-24 {
    margin-top: 2.4rem;
  }

  .sm\:mt-44 {
    margin-top: 4.4rem;
  }

  .sm\:mt-64 {
    margin-top: 6.4rem;
  }

  .sm\:mt-88 {
    margin-top: 8.8rem;
  }

  .sm\:mt-160 {
    margin-top: 16rem;
  }
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[v-cloak] {
  display: none;
}

/* ---------- */
/* Animations */
/* ---------- */

@keyframes bob-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1rem);
  }
  100% {
    transform: translateX(0);
  }
}

/* ------- */
/* Prismic */
/* ------- */

.prismic-video-embed {
  position: relative;
  padding-bottom: 56.25%;
}

.prismic-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}