@charset "UTF-8";

@-webkit-keyframes splide-loading{
  0%{
    transform:rotate(0)
  }

  to{
    transform:rotate(1turn)
  }
}

@keyframes splide-loading{
  0%{
    transform:rotate(0)
  }

  to{
    transform:rotate(1turn)
  }
}

.splide__container{
  position:relative;
  box-sizing:border-box
}

.splide__list{
  margin:0!important;
  padding:0!important;
  width:-webkit-max-content;
  width:-moz-max-content;
  width:max-content;
  will-change:transform
}

.splide.is-active .splide__list{
  display:flex
}

.splide__pagination{
  display:inline-flex;
  align-items:center;
  width:95%;
  flex-wrap:wrap;
  justify-content:center;
  margin:0
}

.splide__pagination li{
  list-style-type:none;
  display:inline-block;
  line-height:1;
  margin:0
}

.splide{
  visibility:hidden
}

.splide,.splide__slide{
  position:relative;
  outline:none
}

.splide__slide{
  box-sizing:border-box;
  list-style-type:none!important;
  margin:0;
  flex-shrink:0
}

.splide__slide img{
  vertical-align:bottom
}

.splide__slider{
  position:relative
}

.splide__spinner{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  display:inline-block;
  width:20px;
  height:20px;
  border-radius:50%;
  border:2px solid #999;
  border-left-color:transparent;
  -webkit-animation:splide-loading 1s linear infinite;
          animation:splide-loading 1s linear infinite
}

.splide__track{
  position:relative;
  z-index:0;
  overflow:hidden
}

.splide--draggable>.splide__track>.splide__list>.splide__slide{
  -webkit-user-select:none;
  -moz-user-select:none;
   -ms-user-select:none;
       user-select:none
}

.splide--fade>.splide__track>.splide__list{
  display:block
}

.splide--fade>.splide__track>.splide__list>.splide__slide{
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  opacity:0
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active{
  position:relative;
  z-index:1;
  opacity:1
}

.splide--rtl{
  direction:rtl
}

.splide--ttb>.splide__track>.splide__list{
  display:block
}

.splide--ttb>.splide__pagination{
  width:auto
}

/*! tailwindcss v2.0.3 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: neuzeit-grotesk, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

.container{
  width:100%
}

@media (min-width: 640px){
  .container{
    max-width:640px
  }
}

@media (min-width: 768px){
  .container{
    max-width:768px
  }
}

@media (min-width: 1024px){
  .container{
    max-width:1024px
  }
}

@media (min-width: 1280px){
  .container{
    max-width:1280px
  }
}

@media (min-width: 1536px){
  .container{
    max-width:1536px
  }
}


.aspect-w-16{
  position:relative;
  padding-bottom:calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%)
}


.aspect-w-16 > *{
  position:absolute;
  height:100%;
  width:100%;
  top:0;
  right:0;
  bottom:0;
  left:0
}

.aspect-w-16{
  --tw-aspect-w:16
}

.aspect-h-9{
  --tw-aspect-h:9
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

svg {
  fill: currentColor;
  pointer-events: none;
}

.dot-separator > *:not(:last-child)::after {
  content: ' . ';
}

.hyphen-separator > *:not(:last-child)::after {
  content: ' – ';
}

.bullet-separator > *:not(:last-child)::after {
  content: ' · ';
}

.animated-underline--add {
  background-image: linear-gradient(transparent 1px, currentColor 1px, currentColor 2px, transparent 2px);
  background-size: 0% 2px, 100% 2px;
  background-position: 0% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  padding-bottom: 2px;
}

.animated-underline--add.is-active, .animated-underline--add:hover {
  background-size: 100% 2px;
  transition: background-size 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-underline--remove, .case-study-details__rte a {
  background-image: linear-gradient(transparent 1px, currentColor 1px, currentColor 2px, transparent 2px);
  background-size: 100% 2px, 100% 2px;
  background-position: 0% 100%, 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.animated-underline--remove:hover, .case-study-details__rte a:hover {
  background-size: 0% 2px;
  transition: background-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grayscale {
  filter: grayscale(1);
}

.underline-thin {
  text-decoration:underline;
  text-decoration-thickness: 1px;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

@-webkit-keyframes body-animate-out {
  to {
    opacity: 0;
  }
}

@keyframes body-animate-out {
  to {
    opacity: 0;
  }
}

@-webkit-keyframes body-animate-in {
  to {
    opacity: 1;
  }
}

@keyframes body-animate-in {
  to {
    opacity: 1;
  }
}

html {
  transition: background-color 0.5s linear;
}

body.is-animating-out {
  -webkit-animation: body-animate-out 0.5s ease 1 forwards;
          animation: body-animate-out 0.5s ease 1 forwards;
  pointer-events: none;
  opacity: 1;
}

body.is-animating-in {
  -webkit-animation: body-animate-in 0.5s ease-out 1 forwards 0.6s;
          animation: body-animate-in 0.5s ease-out 1 forwards 0.6s;
  opacity: 0;
}

body.is-animating-in * {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}

.animation-slide-in {
  -webkit-animation:slide-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
          animation:slide-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
}

.animation-fade-in {
  -webkit-animation:fade-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
          animation:fade-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
}

@media (prefers-reduced-motion: no-preference){
  .motion-safe\:animation-slide-in {
    -webkit-animation:slide-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
            animation:slide-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
  }

  .motion-safe\:animation-fade-in {
    -webkit-animation:fade-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
            animation:fade-in var(--animate-duration, 0.5s) var(--animate-timing-function, ease-out) var(--animate-delay, 0s) var(--animate-iteration-count, 1) var(--animate-direction, normal) var(--animate-fill-mode, forwards) var(--animation-play-state, running);
  }
}

.animate[data-animate], .animate [data-animate] {
  opacity:0;
}

.page-theme--black {
  --bgColour: 0, 0, 0;
  --fgColour: 255, 255, 255;
  --borderColour: 68, 68, 68;
}

.page-theme--white {
  --bgColour: 255, 255, 255;
  --fgColour: 0, 0, 0;
  --borderColour: 222, 218, 218;
}

.case-study-details__rte > p:not(:last-child) {
  margin-bottom:1.75rem;
}

@media (min-aspect-ratio: 16 / 9) {
  .hero__video {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw !important;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .hero__video {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh !important;
  }
}

.image-video {
  --animate-duration: 1500ms;
}

.image-video__image.is-loading {
  --tw-bg-opacity:1;
  background-color:rgba(26, 26, 27, var(--tw-bg-opacity));
  filter: grayscale(0);
}

.image-video__image.is-loading img {
  opacity:0;
  visibility:hidden;
}

.image-video__image.is-loaded img {
  opacity:1;
  visibility:visible;
}

.image-video__image.is-broken {
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
  filter: grayscale(0);
}

.image-video__image.is-broken img {
  visibility:hidden;
}

.image-video__video {
  position:relative;
  --aspect-ratio: var(--aspect-ratio-mobile);
}

@media (min-width: 1024px) {
  .image-video__video {
    --aspect-ratio: var(--aspect-ratio-desktop);
  }
}

.image-video__video::before {
  content: "";
  display: block;
  padding-bottom: calc(100% / (var(--aspect-ratio)));
}

.image-video__video__poster {
  filter: blur(8px) grayscale(100%) brightness(0.5);
}

.profile-details__rte > p:not(:last-child) {
  margin-bottom:1.75rem;
}

.project-listing-details__image.is-loading {
  --tw-bg-opacity:1;
  background-color:rgba(26, 26, 27, var(--tw-bg-opacity));
  filter: grayscale(0);
}

.project-listing-details__image.is-loading img {
  opacity:0;
  visibility:hidden;
}

.project-listing-details__image.is-loaded img {
  opacity:1;
  visibility:visible;
}

.project-listing-details__image.is-broken {
  --tw-bg-opacity:1;
  background-color:rgba(209, 213, 219, var(--tw-bg-opacity));
  filter: grayscale(0);
}

.project-listing-details__image.is-broken img {
  visibility:hidden;
}

.project-listing-details__item {
  --animate-duration: 1500ms;
}

@media (min-width: 768px) {
  .project-listing-details__item:nth-child(2n+2) {
    --animate-delay: 0.2s;
  }
}

@media (min-width: 1280px) {
  .project-listing-details__item:nth-child(2n+2) {
    --animate-delay: 0s;
  }

  .project-listing-details__item:nth-child(3n+2) {
    --animate-delay: 0.2s;
  }

  .project-listing-details__item:nth-child(3n+3) {
    --animate-delay: 0.4s;
  }
}

@media (pointer: coarse) {
  .project-listing-details__item__link {
    opacity: 1 !important;
  }
}

.rte__text > p:not(:last-child) {
  margin-bottom: 1.25em;
}

.site-header__case-study-btn > * {
  opacity:1;
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
  transition-duration:500ms;
}

[aria-pressed="true"] .site-header__case-study-btn > *:nth-child(1), [aria-pressed="false"] .site-header__case-study-btn > *:nth-child(2){
  opacity:0;
  visibility:hidden
}

@media (min-width: 640px){
}

@media (min-width: 768px){
}

@media (min-width: 1024px){
}

@media (min-width: 1280px){
}

@media (min-width: 1536px){
}

.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
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity))
}

.bg-grey-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(26, 26, 27, var(--tw-bg-opacity))
}

.bg-theme-background {
  --tw-bg-opacity: 1;
  background-color: rgba(var(--bgColour), var(--tw-bg-opacity, 1))
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6
}

.border-theme-border {
  --tw-border-opacity: 1;
  border-color: rgba(var(--borderColour), var(--tw-border-opacity, 1))
}

.border-opacity-0 {
  --tw-border-opacity: 0
}

.border {
  border-width: 1px
}

.border-t {
  border-top-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: flex
}

.table {
  display: table
}

.grid {
  display: grid
}

.contents {
  display: contents
}

.hidden {
  display: none
}

.flex-col {
  flex-direction: column
}

.place-content-center {
  place-content: center
}

.items-start {
  align-items: flex-start
}

.items-center {
  align-items: center
}

.self-center {
  align-self: center
}

.self-stretch {
  align-self: stretch
}

.justify-items-center {
  justify-items: center
}

.justify-self-start {
  justify-self: start
}

.justify-self-end {
  justify-self: end
}

.justify-self-center {
  justify-self: center
}

.font-light {
  font-weight: 300
}

.font-normal {
  font-weight: 400
}

.font-bold {
  font-weight: 700
}

.h-6 {
  height: 1.5rem
}

.h-7 {
  height: 1.75rem
}

.h-9 {
  height: 2.25rem
}

.h-full {
  height: 100%
}

.h-screen {
  height: 100vh
}

.text-small {
  font-size: 1.125rem;
  line-height: 1.5rem
}

.text-medium {
  font-size: 1.25rem;
  line-height: 1.75rem
}

.text-xlarge {
  font-size: 1.5625rem;
  line-height: 3.125rem
}

.text-xxlarge {
  font-size: 1.875rem;
  line-height: 2.375rem
}

.leading-tight {
  line-height: 1.25
}

.leading-loose {
  line-height: 2
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.mb-1 {
  margin-bottom: 0.25rem
}

.mt-2 {
  margin-top: 0.5rem
}

.mb-2 {
  margin-bottom: 0.5rem
}

.mb-3 {
  margin-bottom: 0.75rem
}

.mb-4 {
  margin-bottom: 1rem
}

.mb-5 {
  margin-bottom: 1.25rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mt-7 {
  margin-top: 1.75rem
}

.mb-7 {
  margin-bottom: 1.75rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mb-9 {
  margin-bottom: 2.25rem
}

.mb-10 {
  margin-bottom: 2.5rem
}

.mb-11 {
  margin-bottom: 2.75rem
}

.mb-12 {
  margin-bottom: 3rem
}

.mb-14 {
  margin-bottom: 3.5rem
}

.mb-16 {
  margin-bottom: 4rem
}

.mb-20 {
  margin-bottom: 5rem
}

.mb-24 {
  margin-bottom: 6rem
}

.mt-28 {
  margin-top: 7rem
}

.mb-28 {
  margin-bottom: 7rem
}

.mb-32 {
  margin-bottom: 8rem
}

.mb-36 {
  margin-bottom: 9rem
}

.mb-40 {
  margin-bottom: 10rem
}

.mb-44 {
  margin-bottom: 11rem
}

.mb-48 {
  margin-bottom: 12rem
}

.mb-52 {
  margin-bottom: 13rem
}

.mb-56 {
  margin-bottom: 14rem
}

.mb-60 {
  margin-bottom: 15rem
}

.mb-64 {
  margin-bottom: 16rem
}

.mb-72 {
  margin-bottom: 18rem
}

.mb-80 {
  margin-bottom: 20rem
}

.mb-96 {
  margin-bottom: 24rem
}

.max-w-full {
  max-width: 100%
}

.max-w-prose-xs {
  max-width: 25ch
}

.max-w-prose-sm {
  max-width: 35ch
}

.max-w-8xl {
  max-width: 97.5rem
}

.min-h-full {
  min-height: 100%
}

.min-w-full {
  min-width: 100%
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover
}

.opacity-0 {
  opacity: 0
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1
}

.focus\:opacity-100:focus {
  opacity: 1
}

.overflow-hidden {
  overflow: hidden
}

.overflow-y-auto {
  overflow-y: auto
}

.overflow-y-hidden {
  overflow-y: hidden
}

.p-1 {
  padding: 0.25rem
}

.p-10 {
  padding: 2.5rem
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem
}

.pt-4 {
  padding-top: 1rem
}

.pb-5 {
  padding-bottom: 1.25rem
}

.pt-20 {
  padding-top: 5rem
}

.pt-24 {
  padding-top: 6rem
}

.pt-40 {
  padding-top: 10rem
}

.pb-48 {
  padding-bottom: 12rem
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px
}

.inset-x-0 {
  right: 0px;
  left: 0px
}

.top-0 {
  top: 0px
}

.left-0 {
  left: 0px
}

.bottom-16 {
  bottom: 4rem
}

.top-1\/2 {
  top: 50%
}

.left-1\/2 {
  left: 50%
}

* {
  --tw-shadow: 0 0 #0000
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000
}

.text-center {
  text-align: center
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-theme-foreground {
  --tw-text-opacity: 1;
  color: rgba(var(--fgColour), var(--tw-text-opacity, 1))
}

.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.not-italic {
  font-style: normal
}

.capitalize {
  text-transform: capitalize
}

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.w-6 {
  width: 1.5rem
}

.w-7 {
  width: 1.75rem
}

.w-9 {
  width: 2.25rem
}

.w-11 {
  width: 2.75rem
}

.w-full {
  width: 100%
}

.w-screen {
  width: 100vw
}

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-50 {
  z-index: 50
}

.gap-0 {
  gap: 0px
}

.gap-1 {
  gap: 0.25rem
}

.gap-0\.5 {
  gap: 0.125rem
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.col-span-1 {
  grid-column: span 1 / span 1
}

.col-start-1 {
  grid-column-start: 1
}

.row-start-1 {
  grid-row-start: 1
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform-gpu {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05
}

.rotate-45 {
  --tw-rotate: 45deg
}

.rotate-180 {
  --tw-rotate: 180deg
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

.duration-300 {
  transition-duration: 300ms
}

.duration-700 {
  transition-duration: 700ms
}

.duration-1500 {
  transition-duration: 1500ms
}

.duration-2500 {
  transition-duration: 2500ms
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(30px)
  }

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

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(30px)
  }

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

@media (min-width: 640px) {
  .sm\:text-xlarge {
    font-size: 1.5625rem;
    line-height: 3.125rem
  }

  .sm\:text-xxlarge {
    font-size: 1.875rem;
    line-height: 2.375rem
  }

  .sm\:leading-tight {
    line-height: 1.25
  }

  .sm\:mb-1 {
    margin-bottom: 0.25rem
  }

  .sm\:mb-2 {
    margin-bottom: 0.5rem
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem
  }

  .sm\:mb-4 {
    margin-bottom: 1rem
  }

  .sm\:mb-5 {
    margin-bottom: 1.25rem
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem
  }

  .sm\:mb-7 {
    margin-bottom: 1.75rem
  }

  .sm\:mb-8 {
    margin-bottom: 2rem
  }

  .sm\:mb-9 {
    margin-bottom: 2.25rem
  }

  .sm\:mb-10 {
    margin-bottom: 2.5rem
  }

  .sm\:mb-11 {
    margin-bottom: 2.75rem
  }

  .sm\:mb-12 {
    margin-bottom: 3rem
  }

  .sm\:mb-14 {
    margin-bottom: 3.5rem
  }

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

  .sm\:mb-20 {
    margin-bottom: 5rem
  }

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

  .sm\:mb-28 {
    margin-bottom: 7rem
  }

  .sm\:mb-32 {
    margin-bottom: 8rem
  }

  .sm\:mb-36 {
    margin-bottom: 9rem
  }

  .sm\:mb-40 {
    margin-bottom: 10rem
  }

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

  .sm\:mb-48 {
    margin-bottom: 12rem
  }

  .sm\:mb-52 {
    margin-bottom: 13rem
  }

  .sm\:mb-56 {
    margin-bottom: 14rem
  }

  .sm\:mb-60 {
    margin-bottom: 15rem
  }

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

  .sm\:mb-72 {
    margin-bottom: 18rem
  }

  .sm\:mb-80 {
    margin-bottom: 20rem
  }

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

@media (min-width: 768px) {
  .md\:h-8 {
    height: 2rem
  }

  .md\:h-9 {
    height: 2.25rem
  }

  .md\:h-11 {
    height: 2.75rem
  }

  .md\:text-medium {
    font-size: 1.25rem;
    line-height: 1.75rem
  }

  .md\:text-large {
    font-size: 1.375rem;
    line-height: 1.875rem
  }

  .md\:text-xlarge {
    font-size: 1.5625rem;
    line-height: 3.125rem
  }

  .md\:text-xxlarge {
    font-size: 1.875rem;
    line-height: 2.375rem
  }

  .md\:leading-tight {
    line-height: 1.25
  }

  .md\:mb-1 {
    margin-bottom: 0.25rem
  }

  .md\:mb-2 {
    margin-bottom: 0.5rem
  }

  .md\:mb-3 {
    margin-bottom: 0.75rem
  }

  .md\:mb-4 {
    margin-bottom: 1rem
  }

  .md\:mb-5 {
    margin-bottom: 1.25rem
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem
  }

  .md\:mb-7 {
    margin-bottom: 1.75rem
  }

  .md\:mb-8 {
    margin-bottom: 2rem
  }

  .md\:mb-9 {
    margin-bottom: 2.25rem
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem
  }

  .md\:mb-11 {
    margin-bottom: 2.75rem
  }

  .md\:mb-12 {
    margin-bottom: 3rem
  }

  .md\:mb-14 {
    margin-bottom: 3.5rem
  }

  .md\:mb-16 {
    margin-bottom: 4rem
  }

  .md\:mb-20 {
    margin-bottom: 5rem
  }

  .md\:mb-24 {
    margin-bottom: 6rem
  }

  .md\:mb-28 {
    margin-bottom: 7rem
  }

  .md\:mb-32 {
    margin-bottom: 8rem
  }

  .md\:mb-36 {
    margin-bottom: 9rem
  }

  .md\:mb-40 {
    margin-bottom: 10rem
  }

  .md\:mb-44 {
    margin-bottom: 11rem
  }

  .md\:mb-48 {
    margin-bottom: 12rem
  }

  .md\:mb-52 {
    margin-bottom: 13rem
  }

  .md\:mb-56 {
    margin-bottom: 14rem
  }

  .md\:mb-60 {
    margin-bottom: 15rem
  }

  .md\:mb-64 {
    margin-bottom: 16rem
  }

  .md\:mb-72 {
    margin-bottom: 18rem
  }

  .md\:mb-80 {
    margin-bottom: 20rem
  }

  .md\:mb-96 {
    margin-bottom: 24rem
  }

  .md\:opacity-0 {
    opacity: 0
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .md\:pt-44 {
    padding-top: 11rem
  }

  .md\:pb-64 {
    padding-bottom: 16rem
  }

  .md\:pt-80 {
    padding-top: 20rem
  }

  .md\:w-8 {
    width: 2rem
  }

  .md\:w-9 {
    width: 2.25rem
  }

  .md\:w-11 {
    width: 2.75rem
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .md\:transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }
}

@media (min-width: 1024px) {
  .lg\:text-xlarge {
    font-size: 1.5625rem;
    line-height: 3.125rem
  }

  .lg\:text-xxxlarge {
    font-size: 2.1875rem;
    line-height: 2.375rem
  }

  .lg\:leading-tight {
    line-height: 1.25
  }

  .lg\:leading-loose {
    line-height: 2
  }

  .lg\:mb-0 {
    margin-bottom: 0px
  }

  .lg\:mb-1 {
    margin-bottom: 0.25rem
  }

  .lg\:mt-2 {
    margin-top: 0.5rem
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem
  }

  .lg\:mb-3 {
    margin-bottom: 0.75rem
  }

  .lg\:mb-4 {
    margin-bottom: 1rem
  }

  .lg\:mb-5 {
    margin-bottom: 1.25rem
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem
  }

  .lg\:mb-7 {
    margin-bottom: 1.75rem
  }

  .lg\:mb-8 {
    margin-bottom: 2rem
  }

  .lg\:mb-9 {
    margin-bottom: 2.25rem
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem
  }

  .lg\:mb-11 {
    margin-bottom: 2.75rem
  }

  .lg\:mb-12 {
    margin-bottom: 3rem
  }

  .lg\:mb-14 {
    margin-bottom: 3.5rem
  }

  .lg\:mb-16 {
    margin-bottom: 4rem
  }

  .lg\:mb-20 {
    margin-bottom: 5rem
  }

  .lg\:mr-24 {
    margin-right: 6rem
  }

  .lg\:mb-24 {
    margin-bottom: 6rem
  }

  .lg\:ml-24 {
    margin-left: 6rem
  }

  .lg\:mb-28 {
    margin-bottom: 7rem
  }

  .lg\:mb-32 {
    margin-bottom: 8rem
  }

  .lg\:mb-36 {
    margin-bottom: 9rem
  }

  .lg\:mb-40 {
    margin-bottom: 10rem
  }

  .lg\:mb-44 {
    margin-bottom: 11rem
  }

  .lg\:mb-48 {
    margin-bottom: 12rem
  }

  .lg\:mb-52 {
    margin-bottom: 13rem
  }

  .lg\:mb-56 {
    margin-bottom: 14rem
  }

  .lg\:mb-60 {
    margin-bottom: 15rem
  }

  .lg\:mb-64 {
    margin-bottom: 16rem
  }

  .lg\:mb-72 {
    margin-bottom: 18rem
  }

  .lg\:mb-80 {
    margin-bottom: 20rem
  }

  .lg\:mb-96 {
    margin-bottom: 24rem
  }

  .lg\:gap-x-48 {
    -moz-column-gap: 12rem;
         column-gap: 12rem
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12
  }
}

@media (min-width: 1280px) {
  .xl\:mb-1 {
    margin-bottom: 0.25rem
  }

  .xl\:mb-2 {
    margin-bottom: 0.5rem
  }

  .xl\:mb-3 {
    margin-bottom: 0.75rem
  }

  .xl\:mb-4 {
    margin-bottom: 1rem
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem
  }

  .xl\:mb-6 {
    margin-bottom: 1.5rem
  }

  .xl\:mb-7 {
    margin-bottom: 1.75rem
  }

  .xl\:mb-8 {
    margin-bottom: 2rem
  }

  .xl\:mb-9 {
    margin-bottom: 2.25rem
  }

  .xl\:mb-10 {
    margin-bottom: 2.5rem
  }

  .xl\:mb-11 {
    margin-bottom: 2.75rem
  }

  .xl\:mb-12 {
    margin-bottom: 3rem
  }

  .xl\:mb-14 {
    margin-bottom: 3.5rem
  }

  .xl\:mb-16 {
    margin-bottom: 4rem
  }

  .xl\:mb-20 {
    margin-bottom: 5rem
  }

  .xl\:mb-24 {
    margin-bottom: 6rem
  }

  .xl\:mb-28 {
    margin-bottom: 7rem
  }

  .xl\:mb-32 {
    margin-bottom: 8rem
  }

  .xl\:mb-36 {
    margin-bottom: 9rem
  }

  .xl\:mb-40 {
    margin-bottom: 10rem
  }

  .xl\:mb-44 {
    margin-bottom: 11rem
  }

  .xl\:mb-48 {
    margin-bottom: 12rem
  }

  .xl\:mb-52 {
    margin-bottom: 13rem
  }

  .xl\:mb-56 {
    margin-bottom: 14rem
  }

  .xl\:mb-60 {
    margin-bottom: 15rem
  }

  .xl\:mb-64 {
    margin-bottom: 16rem
  }

  .xl\:mb-72 {
    margin-bottom: 18rem
  }

  .xl\:mb-80 {
    margin-bottom: 20rem
  }

  .xl\:mb-96 {
    margin-bottom: 24rem
  }

  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (min-width: 1536px) {
  .\32xl\:h-11 {
    height: 2.75rem
  }

  .\32xl\:h-12 {
    height: 3rem
  }

  .\32xl\:h-14 {
    height: 3.5rem
  }

  .\32xl\:text-xlarge {
    font-size: 1.5625rem;
    line-height: 3.125rem
  }

  .\32xl\:text-xxlarge {
    font-size: 1.875rem;
    line-height: 2.375rem
  }

  .\32xl\:text-xxxlarge {
    font-size: 2.1875rem;
    line-height: 2.375rem
  }

  .\32xl\:text-xxxxlarge {
    font-size: 2.5rem;
    line-height: 2.75rem
  }

  .\32xl\:leading-snug {
    line-height: 1.375
  }

  .\32xl\:leading-normal {
    line-height: 1.5
  }

  .\32xl\:leading-loose {
    line-height: 2
  }

  .\32xl\:w-11 {
    width: 2.75rem
  }

  .\32xl\:w-12 {
    width: 3rem
  }

  .\32xl\:w-14 {
    width: 3.5rem
  }
}

