/*
Theme Name: Tijgerbrood
Author: Tijgerbrood
Author URI: http://tijgerbrood.nl
Description: Theme for handmade Wordpress site. Created by Tijgerbrood.nl.
Version: 1.0.3
*/
/* Resets */

* {
  box-sizing: border-box;
  margin: 0;
}

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

embed,
iframe,
object {
  margin: 0;
  max-width: 100%;
}

figure {
  padding: 0;
  margin: 0
}

svg {
  vertical-align: top
}


/* Images */

.cover-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-img.top img {
  object-position: center top;
}

.cover-img.bottom img {
  object-position: center bottom;
}


/* Lazyloading */

.no-js .lazyload {
  display: none;
}

.js .lazyload {
  opacity: .001;
  vertical-align: top;
}

.js img.lazyloaded {
  opacity: 1;
  vertical-align: top;
}

img[data-sizes="auto"] {
  display: block;
}



/* Flexbox & layout */

.display-none {
  display: none;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.sm-show,
.sm-show-flex,
.sm-show-inline,
.md-show,
.md-show-flex,
.md-show-inline,
.lg-show,
.lg-show-flex,
.lg-show-inline {
  display: none;
}

.hide {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (min-width: 768px) {
  .sm-inline {
    display: inline;
  }

  .sm-block {
    display: block;
  }

  .sm-inline-block {
    display: inline-block;
  }

  .sm-flex {
    display: flex;
  }

  .sm-inline-flex {
    display: inline-flex;
  }

  .sm-show {
    display: block !important;
  }

  .sm-show-inline {
    display: inline-block !important;
  }

  .sm-show-flex {
    display: flex !important;
  }

  .sm-hide {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .md-inline {
    display: inline;
  }

  .md-block {
    display: block;
  }

  .md-inline-block {
    display: inline-block;
  }

  .md-flex {
    display: flex;
  }

  .md-inline-flex {
    display: inline-flex;
  }

  .md-show {
    display: block !important;
  }

  .md-show-inline {
    display: inline-block !important;
  }

  .md-show-flex {
    display: flex !important;
  }

  .md-hide {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .lg-inline {
    display: inline;
  }

  .lg-block {
    display: block;
  }

  .lg-inline-block {
    display: inline-block;
  }

  .lg-flex {
    display: flex;
  }

  .lg-inline-flex {
    display: inline-flex;
  }

  .lg-show {
    display: block !important;
  }

  .lg-show-inline {
    display: inline-block !important;
  }

  .lg-show-flex {
    display: flex !important;
  }

  .lg-hide {
    display: none !important;
  }
}

.cover {
  width: 100%;
  height: 100%;
}

.border-box {
  box-sizing: border-box;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.self-stretch {
  align-self: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.flex-auto {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.flex-none {
  flex: none;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-last {
  order: 99999;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.z-1 {
  z-index: -1;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z98 {
  z-index: 98;
}

.z99 {
  z-index: 99;
}

.z100 {
  z-index: 100;
}

.z101 {
  z-index: 101;
}

.z102 {
  z-index: 102;
}

.z103 {
  z-index: 103;
}

.z104 {
  z-index: 104;
}

.center-all {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-y {
  top: 50%;
  transform: translateY(-50%);
}

.center-x {
  left: 50%;
  transform: translateX(-50%);
}


/* Heights */

.vh-100 {
  height: 100vh;
}

.vh-75 {
  height: 75vh;
}

.vh-50 {
  height: 50vh;
}

.vh-25 {
  height: 25vh;
}

.full-height {
  height: 100%;
}

.h-2 {
  height: 2rem;
}

.h-3 {
  height: 3rem;
}

.h-4 {
  height: 4rem;
}

.h-5 {
  height: 5rem;
}

.h-6 {
  height: 6rem;
}

.h-8 {
  height: 8rem;
}

.h-10 {
  height: 10rem;
}

.h-12 {
  height: 12rem;
}

.h-13 {
  height: 13rem;
}

.h-15 {
  height: 15rem;
}

.h-18 {
  height: 18rem;
}

.h-20 {
  height: 20rem;
}

.h-25 {
  height: 25rem;
}

.h-30 {
  height: 30rem;
}

.h-35 {
  height: 35rem;
}

.h-40 {
  height: 40rem;
}

.h-50 {
  height: 50rem;
}


/* Margin, padding and cols */

.ml0,
.mx0 {
  margin-left: 0;
}

.mr0,
.mx0 {
  margin-right: 0;
}

.mt0,
.my0 {
  margin-top: 0;
}

.mb0,
.my0 {
  margin-bottom: 0;
}

.pl0,
.px0 {
  padding-left: 0;
}

.pr0,
.px0 {
  padding-right: 0;
}

.pt0,
.py0 {
  padding-top: 0;
}

.pb0,
.py0 {
  padding-bottom: 0;
}

.col,
.col-right {
  box-sizing: border-box;
}

.m0 {
  margin: 0;
}

.ml1,
.mx1 {
  margin-left: 0.5rem;
}

.mr1,
.mx1 {
  margin-right: 0.5rem;
}

.mt1,
.my1 {
  margin-top: 0.5rem;
}

.mb1,
.my1 {
  margin-bottom: 0.5rem;
}

.m1 {
  margin: 0.5rem;
}

.ml2,
.mx2 {
  margin-left: 1rem;
}

.mr2,
.mx2 {
  margin-right: 1rem;
}

.mt2,
.my2 {
  margin-top: 1rem;
}

.mb2,
.my2 {
  margin-bottom: 1rem;
}

.m2 {
  margin: 1rem;
}

.ml3,
.mx3 {
  margin-left: 2rem;
}

.mr3,
.mx3 {
  margin-right: 2rem;
}

.mt3,
.my3 {
  margin-top: 2rem;
}

.mb3,
.my3 {
  margin-bottom: 2rem;
}

.m3 {
  margin: 2rem;
}

.ml4,
.mx4 {
  margin-left: 4rem;
}

.mr4,
.mx4 {
  margin-right: 4rem;
}

.mt4,
.my4 {
  margin-top: 4rem;
}

.mb4,
.my4 {
  margin-bottom: 4rem;
}

.m4 {
  margin: 4rem;
}

.mtn1 {
  margin-top: -0.5rem;
}

.mtn2 {
  margin-top: -1rem;
}

.mtn3 {
  margin-top: -2rem;
}

.mtn4 {
  margin-top: -4rem;
}

.mbn1 {
  margin-bottom: -0.5rem;
}

.mbn2 {
  margin-bottom: -1rem;
}

.mbn3 {
  margin-bottom: -2rem;
}

.mbn4 {
  margin-bottom: -4rem;
}

.mln1 {
  margin-left: -0.5rem;
}

.mln2 {
  margin-left: -1rem;
}

.mln3 {
  margin-left: -2rem;
}

.mln4 {
  margin-left: -4rem;
}

.mrn1 {
  margin-right: -0.5rem;
}

.mrn2 {
  margin-right: -1rem;
}

.mrn3 {
  margin-right: -2rem;
}

.mrn4 {
  margin-right: -4rem;
}

.ml-auto,
.mx-auto {
  margin-left: auto;
}

.mr-auto,
.mx-auto {
  margin-right: auto;
}

.mxn1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.mxn2 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.mxn3 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.mxn4 {
  margin-left: -4rem;
  margin-right: -4rem;
}

.p0 {
  padding: 0;
}

.pl1,
.px1 {
  padding-left: 0.5rem;
}

.pr1,
.px1 {
  padding-right: 0.5rem;
}

.pt1,
.py1 {
  padding-top: 0.5rem;
}

.pb1,
.py1 {
  padding-bottom: 0.5rem;
}

.p1 {
  padding: 0.5rem;
}

.pt2,
.py2 {
  padding-top: 1rem;
}

.pb2,
.py2 {
  padding-bottom: 1rem;
}

.pl2,
.px2 {
  padding-left: 1rem;
}

.pr2,
.px2 {
  padding-right: 1rem;
}

.p2 {
  padding: 1rem;
}

.pt3,
.py3 {
  padding-top: 2rem;
}

.pb3,
.py3 {
  padding-bottom: 2rem;
}

.pl3,
.px3 {
  padding-left: 2rem;
}

.pr3,
.px3 {
  padding-right: 2rem;
}

.p3 {
  padding: 2rem;
}

.pt4,
.py4 {
  padding-top: 4rem;
}

.pb4,
.py4 {
  padding-bottom: 4rem;
}

.pl4,
.px4 {
  padding-left: 4rem;
}

.pr4,
.px4 {
  padding-right: 4rem;
}

.p4 {
  padding: 4rem;
}

.col {
  float: left;
}

.col-right {
  float: right;
}

.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

.col-auto {
  width: auto;
}



/* Common classes */

.pointer {
  cursor: pointer;
}

.no-pointer-events,
.pointer-events-none {
  pointer-events: none;
}

.opac-0 {
  opacity: 0;
}

.opac-25 {
  opacity: 0.25;
}

.opac-33 {
  opacity: 0.33;
}

.opac-50 {
  opacity: 0.5;
}

.opac-66 {
  opacity: 0.66;
}

.opac-75 {
  opacity: 0.75;
}

.opac-100 {
  opacity: 1;
}

.left-align {
  text-align: left;
}

.center {
  text-align: center;
}

.right-align {
  text-align: right;
}

.justify {
  text-align: justify;
}

@media (min-width: 768px) {
  .sm-left-align {
    text-align: left;
  }

  .sm-center {
    text-align: center;
  }

  .sm-right-align {
    text-align: right;
  }

  .sm-justify {
    text-align: justify;
  }
}

@media (min-width: 992px) {
  .md-left-align {
    text-align: left;
  }

  .md-center {
    text-align: center;
  }

  .md-right-align {
    text-align: right;
  }

  .md-justify {
    text-align: justify;
  }
}

@media (min-width: 1200px) {
  .lg-left-align {
    text-align: left;
  }

  .lg-center {
    text-align: center;
  }

  .lg-right-align {
    text-align: right;
  }

  .lg-justify {
    text-align: justify;
  }
}

.nowrap {
  white-space: nowrap;
}

.break-word {
  word-wrap: break-word;
}

.no-underline,
.text-decoration-none {
  text-decoration: none;
}

.no-underline:hover,
.text-decoration-none:hover {
  text-decoration: none;
}

.list-reset {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  letter-spacing: -0.31em;
}

.list-inline li {
  letter-spacing: normal;
  display: inline-block;
}

.border {
  border-style: solid;
  border-width: 1px;
}

.border-top {
  border-top-style: solid;
  border-top-width: 1px;
}

.border-right {
  border-right-style: solid;
  border-right-width: 1px;
}

.border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.border-left {
  border-left-style: solid;
  border-left-width: 1px;
}

hr {
  border: 0;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid currentColor;
}

blockquote {
  margin: 0;
}

/* Colors */

:root {
  --black: #000;
  --white: #fff;
  --gray: #888;
  --gray-light: #f8f8f8;
  --blue: #E9520C;
  --yellow: #ffb900;
  --red: #f00;
  --green: #00C640;
}

.white {
  color: var(--white)
}

.black {
  color: var(--black)
}

.gray {
  color: var(--gray)
}

.blue {
  color: var(--blue)
}

.yellow {
  color: var(--yellow)
}

.red {
  color: var(--red)
}

.green {
  color: var(--green)
}

.bg-white {
  background-color: var(--white)
}

.bg-black {
  background-color: var(--black)
}

.bg-gray {
  background-color: var(--gray-light)
}

.bg-blue {
  background-color: var(--blue)
}

.bg-yellow {
  background-color: var(--yellow)
}

.bg-red {
  background-color: var(--red)
}

.bg-green {
  background-color: var(--green)
}

.border-white {
  border-color: var(--white)
}

.border-black {
  border-color: var(--black)
}

.border-gray {
  border-color: var(--gray-light)
}

.border-current {
  border-color: currentColor
}

.fill-white {
  fill: var(--white)
}

.fill-black {
  fill: var(--black)
}

.fill-blue {
  fill: var(--blue)
}

.fill-yellow {
  fill: var(--yellow)
}

.fill-red {
  fill: var(--red)
}

.fill-green {
  fill: var(--green)
}

.fill-current {
  fill: #eee
}

/* Containers */

:root {
  --container: 64rem;
  --xs-container: 24rem;
  --sm-container: 32rem;
  --md-container: 48rem;
  --lg-container: 56rem;
  --max-container: 80rem;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto
}

.xs-container {
  max-width: var(--xs-container);
}

.sm-container {
  max-width: var(--sm-container);
}

.md-container {
  max-width: var(--md-container);
}

.lg-container {
  max-width: var(--lg-container);
}

.max-container {
  max-width: var(--max-container);
}

/* Site header */

:root {
  --nav-pad: 10px;
  --logo: 2.25rem;
}

@media (min-width: 768px) {
  :root {
    --nav-pad: 1rem;
    --logo: 2.5rem;
  }
}

@media (min-width: 992px) {
  :root {
    --logo: 2.75rem;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--nav-pad);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.55);
}

.ghostnav {
  height: var(--logo);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-header>a,
.site-header>label {
  pointer-events: auto;
}


/* Logo */

.logo {
  display: inline-block;
  height: var(--logo);
}

a.site-logo {
  transition: none;
  flex: none;
}

.site-logo:active {
  opacity: .75;
  transform: translateY(1px);
  -webkit-tap-highlight-color: transparent;
}


/* Tag */

.site-tag {
  width: 100%;
  font-size: clamp(10px, 3vw, .8125rem);
  letter-spacing: -0.015em;
  line-height: 1.75;
  pointer-events: none;
}

.js .site-tag {
  overflow: hidden;
}


/* Nav button */

.nav-btn {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  flex: none;
  display: inline-block;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  margin: -1.25rem 1rem -1rem 0;
  background-color: #414141;
}

.nav-btn:focus,
.nav-btn:active {
  background-color: rgba(0, 0, 0, .1);
}

.nav-btn>span {
  display: block;
  position: absolute;
  width: 1rem;
  height: 3px;
  border-radius: 1px;
  background-color: currentColor;
  transition: all .2s ease-in-out, background-color 0s;
}

.nav-btn>span:nth-child(1) {
  left: .5rem;
  top: 1.25rem;
  transform-origin: top left;
}

.nav-btn>span:nth-child(2) {
  left: .5rem;
  top: calc(50% - 1px);
}

.nav-btn>span:nth-child(3) {
  right: .5rem;
  bottom: 1.25rem;
  transform-origin: bottom right;
}

.nav-btn:hover>span:nth-child(1) {
  width: 1.5rem;
}

.nav-btn:hover>span:nth-child(3) {
  width: 1.5rem;
}

input[type="checkbox"].nav-check:checked~.site-header .nav-btn>span:nth-child(1) {
  transform: rotate(45deg);
  left: calc(1.25rem + 1.5px);
  width: 1rem;
}

input[type="checkbox"].nav-check:checked~.site-header .nav-btn>span:nth-child(2) {
  transform: rotate(-45deg);
}

input[type="checkbox"].nav-check:checked~.site-header .nav-btn>span:nth-child(3) {
  transform: rotate(45deg);
  right: calc(1.25rem + 1.5px);
  bottom: calc(1.25rem - 1.5px);
  width: 1rem;
}



.main-nav {
  opacity: 0;
}

/* Define custom fonts */

@font-face {
  font-family: 'Cera';
  src: url('../../fonts/cerabasic-black-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cera';
  src: url('../../fonts/cerabasic-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Fonts */

:root {
  --sans: 'Cera', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --regular: 400;
  --bold: 700;
}

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

html {
  font-family: var(--sans);
  font-weight: var(--regular);
  font-size: 17px;
  overflow-x: hidden;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 19px;
  }
}

@media (min-width: 1560px) {
  html {
    font-size: 20px;
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 22px;
  }
}


/* Typography */

:root {
  --h1: 1.875rem;
  --h2: 1.5rem;
  --h3: 1.25rem;
  --h4: 1.125rem;
  --h5: .875rem;
  --h6: .8125rem;
  --large: 2.5rem;
  --huge: 3rem;
}

@media (min-width: 768px) {
  :root {
    --h1: 3rem;
    --h2: 1.75rem;
    --large: 3.5rem;
    --huge: 4rem;
  }
}

@media (min-width: 992px) {
  :root {
    --large: 4rem;
    --huge: 4.75rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --h2: 2rem;
    --large: 4.5rem;
    --huge: 5.5rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--bold);
}

h1 {
  margin-top: .375em;
  margin-bottom: .25em;
}

h2 {
  margin-top: .75em;
  margin-bottom: .375em;
}

h3 {
  margin-top: 1em;
  margin-bottom: .5em;
}

h1,
.h1 {
  font-size: var(--h1);
  letter-spacing: -.01em;
  line-height: 1.05;
}

h2,
.h2 {
  font-size: var(--h2);
  letter-spacing: -.01em;
  line-height: 1.1;
}

h3,
.h3 {
  font-size: var(--h3);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.large {
  font-size: var(--large);
  letter-spacing: -.01em;
  line-height: 1;
}

.huge {
  font-size: var(--huge);
  letter-spacing: -.01em;
  line-height: .9;
}

h4,
h5,
h6 {
  font-weight: inherit;
  margin-bottom: 1em;
  margin-top: .5em;
}

h4,
.h4 {
  font-size: 1rem
}

h5,
.h5 {
  font-size: .875rem
}

h6,
.h6 {
  font-size: clamp(11px, .75rem, 14px)
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.bold {
  font-weight: 700
}

.regular {
  font-weight: 400
}

.italic {
  font-style: italic
}

.caps {
  text-transform: uppercase;
}

.line-height-1 {
  line-height: 1
}

.line-height-2 {
  line-height: 1.25
}

.line-height-3 {
  line-height: 1.5
}

.line-height-4 {
  line-height: 2
}

.letter-spacing-25 {
  letter-spacing: .025em
}

.letter-spacing-50 {
  letter-spacing: .05em
}

.letter-spacing-100 {
  letter-spacing: .1em
}

.letter-spacing-n25 {
  letter-spacing: -.025em
}

.letter-spacing-n50 {
  letter-spacing: -.05em
}

.letter-spacing-n100 {
  letter-spacing: -.1em
}


/* Globals */

a {
  color: var(--blue);
  text-decoration: underline;
  transition: color 200ms;
}

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

.bg-blue a,
.bg-red a {
  color: var(--white);
}

.bg-blue a:hover,
.bg-red a:hover {
  color: var(--black);
}

.bg-black a {
  color: var(--white);
}

.bg-black a:hover {
  color: var(--blue);
}

::-moz-selection {
  color: var(--white);
  background: var(--black);
}

::selection {
  color: var(--white);
  background: var(--black);
}

details.accordion summary::marker,
details.accordion summary::-webkit-details-marker {
  display: none;
}

details.accordion summary {
  outline: none;
  cursor: pointer;
  padding: .75rem 0;
  line-height: 1rem;
  list-style-type: none;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 21" xmlns="http://www.w3.org/2000/svg" stroke-width="1.6" stroke="%23fff" fill="none"><line x1="12" y1="0" x2="12" y2="21"></line><line x1="24" y1="10" x2="0" y2="10"></line></svg>');
  background-repeat: no-repeat;
  background-size: 1.09375rem 1.25rem;
  background-position: right center;
  transition: letter-spacing 200ms cubic-bezier(.4, 1.15, .8, 1.2), padding 350ms cubic-bezier(0, 1.15, .8, 1.3);
}

@media (hover: hover) {
  details.accordion summary:hover {
    letter-spacing: .1em;
  }
}

details.accordion summary:active {
  transition: none;
  opacity: .75;
}

details.accordion[open] summary {
  font-size: 1.25rem;
  letter-spacing: -.01em;
  font-weight: 700;
  padding: 1.5rem 0 1rem;
  transition: letter-spacing 200ms 60ms ease-out, padding 350ms cubic-bezier(0, 1.15, .8, 1.3);
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 21" xmlns="http://www.w3.org/2000/svg" stroke-width="1.6" stroke="%23fff" fill="none"><line x1="24" y1="10" x2="0" y2="10"></line></svg>');
}

@media (min-width: 768px) {
  details.accordion[open] summary {
    font-size: 1.375rem
  }
}

@media (min-width: 1200px) {
  details.accordion[open] summary {
    font-size: 1.5rem
  }
}

details.accordion[open]>*:not(summary) {
  -webkit-animation: openAccordion 350ms cubic-bezier(0, 1.15, .8, 1.15);
  animation: openAccordion 350ms cubic-bezier(0, 1.15, .8, 1.15);
}

@-webkit-keyframes openAccordion {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1rem);
  }

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

@keyframes openAccordion {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

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

/* Btns */

.btn,
button.btn,
input[type="submit"].btn,
input[type="button"].btn {
  -webkit-appearance: none;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.25;
  padding: .75em 1.5em;
  border: 0;
  border-radius: 1.5em;
  font-weight: 700;
  font-family: inherit;
  color: var(--black) !important;
  background-color: #19E162;
  box-shadow: 0 .25em .5em -.25em rgba(0, 0, 0, .15);
  transition: all 50ms ease-out;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  outline: none;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn:disabled,
.btn.disabled {
  opacity: .4;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: none;
}


@media (hover: hover) {
  .btn {
    position: relative;
    -webkit-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
  }

  .btn:hover {
    box-shadow: 0 1em 1em -.25em rgba(0, 0, 0, .25);
  }

  .btn:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  .btn span {
    position: relative;
    z-index: 1;
  }

  .btn:before {
    content: '';
    display: block;
    border-radius: 2em;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: inherit;
    transition: all 100ms cubic-bezier(.25, .75, .5, 1);
  }

  .btn:hover:before {
    border-radius: 3em;
    top: -.5em;
    right: -.5em;
    bottom: -.5em;
    left: -.5em;
    transition: all 150ms cubic-bezier(0, 1, .5, 1.5);
  }

  .btn:active {
    -webkit-transition: none;
    transition: none;
    opacity: .9;
  }
}

.btn:active {
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}


/* Outline button */

.btn-outline {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  padding: .625em 1.25em;
  border-radius: 1.5em;
  font-weight: 700;
  box-shadow: 0 0 0 1px currentColor;
  transition: box-shadow 100ms, letter-spacing 200ms cubic-bezier(.4, 1.15, .8, 1.2);
}

.btn-outline.green-outline {
  box-shadow: 0 0 0 1px var(--green);
}

.btn-outline:active {
  transition: none;
  transform: translateY(2px);
  opacity: .9;
}

@media (hover:hover) {

  .btn-outline:hover,
  a.btn-outline:hover {
    text-decoration: none;
    box-shadow: 0 0 0 3px currentColor;
    letter-spacing: .075em;
    color: inherit;
  }

  .btn-outline.green-outline:hover,
  a.btn-outline.green-outline:hover {
    box-shadow: 0 0 0 3px var(--green);
  }
}


/* Text link */

.text-link,
a.text-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding: .125em 0;
  display: inline-block;
  transition: color 300ms, letter-spacing 200ms cubic-bezier(.4, 1.15, .8, 1.2), padding 350ms cubic-bezier(0, 1.15, .8, 1.3);
}

@media (hover: hover) {

  .text-link:hover,
  a.text-link:hover {
    letter-spacing: .1em;
    padding-left: .25em;
    padding-right: .25em;
  }
}

.text-link:active,
a.text-link:active {
  transition: none;
  opacity: .75;
  transform: translateY(2px);
}


/* External link */

.external-link {
  display: inline-flex;
  align-items: center;
}

.external-link svg {
  fill: currentColor;
  margin-left: .25rem;
  height: 1em;
  width: auto;
}



/* Social links */

a.insta-link,
a.linkedin-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: var(--bold);
  margin-inline: .125em;
  vertical-align: bottom;
}

a.insta-link:active,
a.linkedin-link:active {
  transition: none;
  transform: translateY(1px);
  opacity: .75;
}

a.insta-link span:first-child {
  margin-right: .25em;
  padding-inline: .125em;
  width: 1.2em;
  height: 1.2em;
  box-shadow: inset 0 0 0 .125em currentColor;
  border-radius: 30%;
  position: relative;
  flex: none;
}

a.insta-link span:first-child:before,
a.insta-link span:first-child:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
}

a.insta-link span:first-child:before {
  width: .5em;
  height: .5em;
  box-shadow: inset 0 0 0 .125em currentColor;
  top: calc(50% - .25em);
  left: calc(50% - .25em);
}

a.insta-link span:first-child:after {
  width: .125em;
  height: .125em;
  background: currentColor;
  top: .25em;
  right: .25em;
}

a.insta-link span:last-child {
  text-decoration: underline;
}

a.linkedin-link span:first-child {
  text-decoration: underline;
}

a.linkedin-link span:last-child {
  color: var(--blue);
  background-color: var(--white);
  margin-left: .25em;
  padding-inline: .125em;
  border-radius: .125em;
  flex: none;
  transition: background-color 200ms;
}

a.linkedin-link:hover span:last-child {
  background-color: var(--black);
}

.bg-gray a.linkedin-link span:last-child,
.bg-gray a.linkedin-link:hover span:last-child {
  color: var(--gray);
}

.bg-blue a.linkedin-link span:last-child,
a.linkedin-link:hover span:last-child {
  color: var(--blue);
}

body.color-transition,
main.color-transition,
footer.color-transition {
  transition: color 200ms, background-color 300ms;
  transition-delay: 100ms;
}

/* if you want specific color transitions for certain elements, put them here */
header.color-transition,
body.color-transition header {
  transition: color 150ms;
  transition-delay: 100ms;
}

.js [data-listener="inviewChangeColor"] {
  background-color: inherit;
}

.js [data-listener="inviewChangeColor"] {
  color: inherit;
}

/* Footer team heads */

footer {
  overflow: hidden;
}

.team-bye li {
  width: 16% !important;
  max-width: 4.75rem !important;
}

.js .team-bye li {
  opacity: .001;
}

.team-bye li:nth-child(2) {
  margin-top: 4rem;
}

.team-bye li:nth-child(1) {
  margin-top: 1rem;
}

@media(min-width: 768px) {
  .team-bye li:nth-child(3) {
    margin-top: -1rem;
  }
}

.team-bye li:nth-child(1) img.point {
  position: absolute;
  right: -75%;
  top: 20%;
  width: 70%;
}

.team-bye li:nth-child(2) img.hand {
  position: absolute;
  right: 100%;
  top: 35%;
  width: 70%;
}

.team-bye li:nth-child(3) img.point {
  position: absolute;
  left: -80%;
  top: 30%;
  width: 70%;
}

.js .team-bye [data-speech].speech {
  z-index: 3;
}

/* Team heads */

.team-heads {
  list-style: none;
  padding-left: 0;
}

.team-heads li {
  width: 6.5rem;
  position: relative;
  box-sizing: content-box;
}

.team-heads li picture img {
  vertical-align: top;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.team-heads li picture:nth-child(2) img,
.team-heads li picture:nth-child(3) img {
  position: absolute;
  top: -1px;
  left: 0;
}

.team-heads li picture:nth-child(3) {
  top: -2px;
}

.team-heads li>span {
  display: block;
  position: relative;
}

/* Team heads speech */

.js [data-speech] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.js [data-speech]:after {
  opacity: 0;
  pointer-events: none;
  content: attr(data-speech);
  display: inline;
  position: absolute;
  right: -75%;
  top: -1rem;
  font-size: 12px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .2)
}

.js .bg-white [data-speech]:after,
.js .bg-gray [data-speech]:after {
  color: var(--black) !important;
  text-shadow: -1px -1px 0 white, 1px 1px 0 white, -1px 1px 0 white, 1px -1px 0 white, 0 -1px 0 white, 0 1px 0 white, 1px 0 0 white, 1px 0 0 white;
}

.js .flip-speech[data-speech]:after {
  right: auto;
  left: -100%;
}

.js [data-speech]:before {
  opacity: 0;
  pointer-events: none;
  content: '';
  display: inline-block;
  position: absolute;
  right: calc(-75% + 1rem);
  top: 0;
  width: 2.25rem;
  height: 4rem;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 130" xmlns="http://www.w3.org/2000/svg" stroke-width="1" stroke="%23fff" fill="none"><path d="M119,0 C108.597796,85.3333333 69.2644628,128 1,128"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}

.js .flip-speech[data-speech]:before {
  right: auto;
  left: calc(-75% + 1rem);
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 130" xmlns="http://www.w3.org/2000/svg" stroke-width="1" stroke="%23fff" fill="none"><path d="M2,0 C12.4022039,85.3333333 51.7355372,128 120,128"></path></svg>');
  background-position: left top;
}

.js .bg-white [data-speech]:before,
.js .bg-gray [data-speech]:before,
.js .bg-yellow [data-speech]:before {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 130" xmlns="http://www.w3.org/2000/svg" stroke-width="1" stroke="%23000" fill="none"><path d="M119,0 C108.597796,85.3333333 69.2644628,128 1,128"></path></svg>');
}

.js .bg-white .flip-speech[data-speech]:before,
.js .bg-gray .flip-speech[data-speech]:before,
.js .bg-yellow .flip-speech[data-speech]:before {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 130" xmlns="http://www.w3.org/2000/svg" stroke-width="1" stroke="%23000" fill="none"><path d="M2,0 C12.4022039,85.3333333 51.7355372,128 120,128"></path></svg>');
}

.js [data-speech].speech:before,
.js [data-speech].speech:after {
  opacity: 1;
}

.js [data-speech]>span,
.js span[data-speech] {
  transition: transform 150ms;
}

.js [data-speech]:active>span,
.js span[data-speech]:active {
  opacity: .9;
  transform: scale(.95);
  transition: none;
}

@media(hover: hover) {

  .js [data-speech]:hover>span,
  .js span[data-speech]:hover {
    transform: scale(1.05);
  }

  .js [data-speech]:active>span,
  .js span[data-speech]:active {
    transform: scale(1);
  }
}

/* Site header */

.site-header>a,
.site-header>a:hover,
.site-header label {
  color: inherit;
}

input[type="checkbox"].nav-check:checked~.site-header>a,
input[type="checkbox"].nav-check:checked~.site-header>a:hover,
input[type="checkbox"].nav-check:checked~.site-header>label,
input[type="checkbox"].nav-check:checked~.site-header>.site-tag {
  color: var(--white);
}


/* Main nav */

.main-nav {
  pointer-events: none;
  position: fixed;
  z-index: 99;
  background-color: var(--blue);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s cubic-bezier(.165, .84, .44, 1);
}

input[type="checkbox"].nav-check:checked~.main-nav {
  opacity: 1;
  pointer-events: visible;
}

html.nav-open,
html.nav-open body {
  overflow-x: hidden;
  overflow-y: hidden;
}


/* Nav menu items */

.main-nav ul {
  width: min(var(--max-container, 80rem), 100% - 4rem);
  margin-top: auto;
  margin-inline: auto;
  display: grid;
  grid-gap: 1em;
}

.main-nav li {
  transform: translateY(5em);
  opacity: 0;
}

@media (min-width: 768px),
(orientation: landscape) {
  .main-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: .5em 2em;
  }

  .main-nav li {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .main-nav ul {
    grid-gap: .5em 3em;
  }
}


input[type="checkbox"].nav-check:checked~.main-nav li {
  transform: translateY(0);
  opacity: 1;
  transition: .3s cubic-bezier(.165, .84, .44, 1);
}

input[type="checkbox"].nav-check:checked~.main-nav .primary-menu li:nth-child(1) {
  transition-delay: .15s;
}

input[type="checkbox"].nav-check:checked~.main-nav .primary-menu li:nth-child(2) {
  transition-delay: .2s;
}

input[type="checkbox"].nav-check:checked~.main-nav .primary-menu li:nth-child(3) {
  transition-delay: .25s;
}

input[type="checkbox"].nav-check:checked~.main-nav .primary-menu li:nth-child(4) {
  transition-delay: .3s;
}

input[type="checkbox"].nav-check:checked~.main-nav .primary-menu li:nth-child(5) {
  transition-delay: .35s;
}


/* Main nav links */

.main-nav a {
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  line-height: 1.25;
}

.main-nav a:hover {
  text-decoration: none;
}

.main-nav a:active {
  opacity: .5;
  transform: translateY(2px);
}

@media (hover:hover) {
  .main-nav a {
    transition: 160ms;
  }

  .main-nav a:hover {
    color: var(--black);
    transform: translateY(-5px);
  }

  .main-nav a:active {
    transition: none;
    transform: translateY(-3px);
  }
}


/* Primary menu */

.main-nav .primary-menu a {
  font-weight: 700;
  font-size: clamp(2.5rem, 6.5vmax, 4rem);
  letter-spacing: -.025em;
}

@media (max-width: 767px) and (orientation: landscape) {

  .main-nav .primary-menu,
  .main-nav .secondary-menu {
    display: flex;
  }
}

.js .main-nav #primary-menu a .letter {
  transform-origin: left top;
  text-decoration: inherit;
  display: inline-block;
}


/* Coming soon links */

.main-nav .primary-menu a:not([href]) {
  cursor: not-allowed;
  position: relative;
}

.main-nav .primary-menu a:not([href]):after {
  content: 'Coming soon!';
  position: absolute;
  top: calc(100% - .5em);
  right: -1.5em;
  font-weight: 400;
  font-size: .75rem;
  line-height: 1em;
  letter-spacing: normal;
  transform: rotate(-4deg);
}

@media (min-width: 992px) {
  .main-nav .primary-menu a:not([href]):after {
    top: calc(100% - .75em);
  }
}


/* Secondary menu */

.main-nav .secondary-menu {
  margin-bottom: clamp(2rem, 8vh, 4rem);
}

input[type="checkbox"].nav-check:checked~.main-nav .secondary-menu li:nth-child(1) {
  transition-delay: .35s;
}

input[type="checkbox"].nav-check:checked~.main-nav .secondary-menu li:nth-child(2) {
  transition-delay: .4s;
}

input[type="checkbox"].nav-check:checked~.main-nav .secondary-menu li:nth-child(3) {
  transition-delay: .45s;
}

input[type="checkbox"].nav-check:checked~.main-nav .secondary-menu li:nth-child(4) {
  transition-delay: .5s;
}

input[type="checkbox"].nav-check:checked~.main-nav .secondary-menu li:nth-child(5) {
  transition-delay: .55s;
}

.main-nav .secondary-menu a {
  letter-spacing: -.01em;
  font-size: 1.125rem;
}

.main-nav .secondary-menu a:active {
  transform: translateY(1px);
}

@media (hover:hover) {
  .main-nav .secondary-menu a:hover {
    transform: translateY(-2px);
  }

  .main-nav .secondary-menu a:active {
    transform: translateY(-1px);
  }
}

/* This files extends on base.css with media queries for different sizes */


/* Flexbox & layout */

@media (min-width: 768px) {
  .sm-items-start {
    align-items: flex-start;
  }

  .sm-items-end {
    align-items: flex-end;
  }

  .sm-items-center {
    align-items: center;
  }

  .sm-items-stretch {
    align-items: stretch;
  }

  .sm-justify-start {
    justify-content: flex-start;
  }

  .sm-justify-center {
    justify-content: center;
  }

  .sm-justify-end {
    justify-content: flex-end;
  }

  .sm-justify-between {
    justify-content: space-between;
  }

  .sm-flex-wrap {
    flex-wrap: wrap;
  }

  .sm-order-0 {
    order: 0;
  }

  .sm-order-last {
    order: 99999;
  }

  .sm-relative {
    position: relative;
  }

  .sm-absolute {
    position: absolute;
  }

  .sm-fixed {
    position: fixed;
  }

  .sm-sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .sm-top-0 {
    top: 0;
  }

  .sm-right-0 {
    right: 0;
  }

  .sm-bottom-0 {
    bottom: 0;
  }

  .sm-left-0 {
    left: 0;
  }
}

@media (min-width: 992px) {
  .md-items-start {
    align-items: flex-start;
  }

  .md-items-end {
    align-items: flex-end;
  }

  .md-items-center {
    align-items: center;
  }

  .md-items-stretch {
    align-items: stretch;
  }

  .md-justify-start {
    justify-content: flex-start;
  }

  .md-justify-center {
    justify-content: center;
  }

  .md-justify-end {
    justify-content: flex-end;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .md-flex-wrap {
    flex-wrap: wrap;
  }

  .md-order-0 {
    order: 0;
  }

  .md-order-last {
    order: 99999;
  }

  .md-relative {
    position: relative;
  }

  .md-absolute {
    position: absolute;
  }

  .md-fixed {
    position: fixed;
  }

  .md-sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .md-top-0 {
    top: 0;
  }

  .md-right-0 {
    right: 0;
  }

  .md-bottom-0 {
    bottom: 0;
  }

  .md-left-0 {
    left: 0;
  }
}

@media (min-width: 1200px) {
  .lg-items-start {
    align-items: flex-start;
  }

  .lg-items-end {
    align-items: flex-end;
  }

  .lg-items-center {
    align-items: center;
  }

  .lg-items-stretch {
    align-items: stretch;
  }

  .lg-justify-start {
    justify-content: flex-start;
  }

  .lg-justify-center {
    justify-content: center;
  }

  .lg-justify-end {
    justify-content: flex-end;
  }

  .lg-justify-between {
    justify-content: space-between;
  }

  .lg-flex-wrap {
    flex-wrap: wrap;
  }

  .lg-order-0 {
    order: 0;
  }

  .lg-order-last {
    order: 99999;
  }

  .lg-relative {
    position: relative;
  }

  .lg-absolute {
    position: absolute;
  }

  .lg-fixed {
    position: fixed;
  }

  .lg-sticky {
    position: -webkit-sticky;
    position: sticky;
  }

  .lg-top-0 {
    top: 0;
  }

  .lg-right-0 {
    right: 0;
  }

  .lg-bottom-0 {
    bottom: 0;
  }

  .lg-left-0 {
    left: 0;
  }
}



/* Heights */

@media (min-width: 360px) {
  .xs-h-2 {
    height: 2rem;
  }

  .xs-h-3 {
    height: 3rem;
  }

  .xs-h-4 {
    height: 4rem;
  }

  .xs-h-5 {
    height: 5rem;
  }

  .xs-h-6 {
    height: 6rem;
  }

  .xs-h-8 {
    height: 8rem;
  }

  .xs-h-10 {
    height: 10rem;
  }

  .xs-h-12 {
    height: 12rem;
  }

  .xs-h-13 {
    height: 13rem;
  }

  .xs-h-15 {
    height: 15rem;
  }

  .xs-h-18 {
    height: 18rem;
  }

  .xs-h-20 {
    height: 20rem;
  }

  .xs-h-25 {
    height: 25rem;
  }

  .xs-h-30 {
    height: 30rem;
  }

  .xs-h-35 {
    height: 35rem;
  }

  .xs-h-40 {
    height: 40rem;
  }

  .xs-h-50 {
    height: 50rem;
  }

  .xs-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .sm-h-2 {
    height: 2rem;
  }

  .sm-h-3 {
    height: 3rem;
  }

  .sm-h-4 {
    height: 4rem;
  }

  .sm-h-5 {
    height: 5rem;
  }

  .sm-h-6 {
    height: 6rem;
  }

  .sm-h-8 {
    height: 8rem;
  }

  .sm-h-10 {
    height: 10rem;
  }

  .sm-h-12 {
    height: 12rem;
  }

  .sm-h-13 {
    height: 13rem;
  }

  .sm-h-15 {
    height: 15rem;
  }

  .sm-h-18 {
    height: 18rem;
  }

  .sm-h-20 {
    height: 20rem;
  }

  .sm-h-25 {
    height: 25rem;
  }

  .sm-h-30 {
    height: 30rem;
  }

  .sm-h-35 {
    height: 35rem;
  }

  .sm-h-40 {
    height: 40rem;
  }

  .sm-h-50 {
    height: 50rem;
  }

  .sm-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 992px) {
  .md-h-2 {
    height: 2rem;
  }

  .md-h-3 {
    height: 3rem;
  }

  .md-h-4 {
    height: 4rem;
  }

  .md-h-5 {
    height: 5rem;
  }

  .md-h-6 {
    height: 6rem;
  }

  .md-h-8 {
    height: 8rem;
  }

  .md-h-10 {
    height: 10rem;
  }

  .md-h-12 {
    height: 12rem;
  }

  .md-h-13 {
    height: 13rem;
  }

  .md-h-15 {
    height: 15rem;
  }

  .md-h-18 {
    height: 18rem;
  }

  .md-h-20 {
    height: 20rem;
  }

  .md-h-25 {
    height: 25rem;
  }

  .md-h-30 {
    height: 30rem;
  }

  .md-h-35 {
    height: 35rem;
  }

  .md-h-40 {
    height: 40rem;
  }

  .md-h-50 {
    height: 50rem;
  }

  .md-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 1200px) {
  .lg-h-2 {
    height: 2rem;
  }

  .lg-h-3 {
    height: 3rem;
  }

  .lg-h-4 {
    height: 4rem;
  }

  .lg-h-5 {
    height: 5rem;
  }

  .lg-h-6 {
    height: 6rem;
  }

  .lg-h-8 {
    height: 8rem;
  }

  .lg-h-10 {
    height: 10rem;
  }

  .lg-h-12 {
    height: 12rem;
  }

  .lg-h-13 {
    height: 13rem;
  }

  .lg-h-15 {
    height: 15rem;
  }

  .lg-h-18 {
    height: 18rem;
  }

  .lg-h-20 {
    height: 20rem;
  }

  .lg-h-25 {
    height: 25rem;
  }

  .lg-h-28 {
    height: 28rem;
  }

  .lg-h-30 {
    height: 30rem;
  }

  .lg-h-35 {
    height: 35rem;
  }

  .lg-h-40 {
    height: 40rem;
  }

  .lg-h-50 {
    height: 50rem;
  }

  .lg-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 1560px) {
  .xl-h-2 {
    height: 2rem;
  }

  .xl-h-3 {
    height: 3rem;
  }

  .xl-h-4 {
    height: 4rem;
  }

  .xl-h-5 {
    height: 5rem;
  }

  .xl-h-6 {
    height: 6rem;
  }

  .xl-h-8 {
    height: 8rem;
  }

  .xl-h-10 {
    height: 10rem;
  }

  .xl-h-12 {
    height: 12rem;
  }

  .xl-h-13 {
    height: 13rem;
  }

  .xl-h-15 {
    height: 15rem;
  }

  .xl-h-18 {
    height: 18rem;
  }

  .xl-h-20 {
    height: 20rem;
  }

  .xl-h-25 {
    height: 25rem;
  }

  .xl-h-30 {
    height: 30rem;
  }

  .xl-h-35 {
    height: 35rem;
  }

  .xl-h-40 {
    height: 40rem;
  }

  .xl-h-50 {
    height: 50rem;
  }

  .xl-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 360px) {
  .xs-vh-100 {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .sm-vh-100 {
    height: 100vh;
  }

  .sm-vh-75 {
    height: 75vh;
  }

  .sm-vh-50 {
    height: 50vh;
  }

  .sm-vh-25 {
    height: 25vh;
  }
}

@media (min-width: 992px) {
  .md-vh-100 {
    height: 100vh;
  }

  .md-vh-75 {
    height: 75vh;
  }

  .md-vh-50 {
    height: 50vh;
  }

  .md-vh-25 {
    height: 25vh;
  }
}

@media (min-width: 1200px) {
  .lg-vh-100 {
    height: 100vh;
  }

  .lg-vh-75 {
    height: 75vh;
  }

  .lg-vh-50 {
    height: 50vh
  }

  .lg-vh-25 {
    height: 25vh;
  }
}


/* Margin, padding and cols */

@media (min-width: 360px) {

  .xs-mt0,
  .xs-my0 {
    margin-top: 0;
  }

  .xs-mb0,
  .xs-my0 {
    margin-bottom: 0;
  }

  .xs-mxn1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .xs-mxn2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .xs-mxn3 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .xs-mxn4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .xs-ml0,
  .xs-mx0 {
    margin-left: 0;
  }

  .xs-mr0,
  .xs-mx0 {
    margin-right: 0;
  }

  .xs-m0 {
    margin: 0;
  }

  .xs-ml1,
  .xs-mx1 {
    margin-left: 0.5rem;
  }

  .xs-mr1,
  .xs-mx1 {
    margin-right: 0.5rem;
  }

  .xs-mt1,
  .xs-my1 {
    margin-top: 0.5rem;
  }

  .xs-mb1,
  .xs-my1 {
    margin-bottom: 0.5rem;
  }

  .xs-m1 {
    margin: 0.5rem;
  }

  .xs-ml2,
  .xs-mx2 {
    margin-left: 1rem;
  }

  .xs-mr2,
  .xs-mx2 {
    margin-right: 1rem;
  }

  .xs-mt2,
  .xs-my2 {
    margin-top: 1rem;
  }

  .xs-mb2,
  .xs-my2 {
    margin-bottom: 1rem;
  }

  .xs-m2 {
    margin: 1rem;
  }

  .xs-ml3,
  .xs-mx3 {
    margin-left: 2rem;
  }

  .xs-mr3,
  .xs-mx3 {
    margin-right: 2rem;
  }

  .xs-mt3,
  .xs-my3 {
    margin-top: 2rem;
  }

  .xs-mb3,
  .xs-my3 {
    margin-bottom: 2rem;
  }

  .xs-m3 {
    margin: 2rem;
  }

  .xs-ml4,
  .xs-mx4 {
    margin-left: 4rem;
  }

  .xs-mr4,
  .xs-mx4 {
    margin-right: 4rem;
  }

  .xs-mt4,
  .xs-my4 {
    margin-top: 4rem;
  }

  .xs-mb4,
  .xs-my4 {
    margin-bottom: 4rem;
  }

  .xs-m4 {
    margin: 4rem;
  }

  .xs-mtn1 {
    margin-top: -0.5rem;
  }

  .xs-mtn2 {
    margin-top: -1rem;
  }

  .xs-mtn3 {
    margin-top: -2rem;
  }

  .xs-mtn4 {
    margin-top: -4rem;
  }

  .xs-mbn1 {
    margin-bottom: -0.5rem;
  }

  .xs-mbn2 {
    margin-bottom: -1rem;
  }

  .xs-mbn3 {
    margin-bottom: -2rem;
  }

  .xs-mbn4 {
    margin-bottom: -4rem;
  }

  .xs-mln1 {
    margin-left: -0.5rem;
  }

  .xs-mln2 {
    margin-left: -1rem;
  }

  .xs-mln3 {
    margin-left: -2rem;
  }

  .xs-mln4 {
    margin-left: -4rem;
  }

  .xs-mrn1 {
    margin-right: -0.5rem;
  }

  .xs-mrn2 {
    margin-right: -1rem;
  }

  .xs-mrn3 {
    margin-right: -2rem;
  }

  .xs-mrn4 {
    margin-right: -4rem;
  }

  .xs-ml-auto,
  .xs-mx-auto {
    margin-left: auto;
  }

  .xs-mr-auto,
  .xs-mx-auto {
    margin-right: auto;
  }

  .xs-pl0,
  .xs-px0 {
    padding-left: 0;
  }

  .xs-pr0,
  .xs-px0 {
    padding-right: 0;
  }

  .xs-pt0,
  .xs-py0 {
    padding-top: 0;
  }

  .xs-pb0,
  .xs-py0 {
    padding-bottom: 0;
  }

  .xs-p0 {
    padding: 0;
  }

  .xs-pl1,
  .xs-px1 {
    padding-left: 0.5rem;
  }

  .xs-pr1,
  .xs-px1 {
    padding-right: 0.5rem;
  }

  .xs-pt1,
  .xs-py1 {
    padding-top: 0.5rem;
  }

  .xs-pb1,
  .xs-py1 {
    padding-bottom: 0.5rem;
  }

  .xs-p1 {
    padding: 0.5rem;
  }

  .xs-pl2,
  .xs-px2 {
    padding-left: 1rem;
  }

  .xs-pr2,
  .xs-px2 {
    padding-right: 1rem;
  }

  .xs-pt2,
  .xs-py2 {
    padding-top: 1rem;
  }

  .xs-pb2,
  .xs-py2 {
    padding-bottom: 1rem;
  }

  .xs-p2 {
    padding: 1rem;
  }

  .xs-pl3,
  .xs-px3 {
    padding-left: 2rem;
  }

  .xs-pr3,
  .xs-px3 {
    padding-right: 2rem;
  }

  .xs-pt3,
  .xs-py3 {
    padding-top: 2rem;
  }

  .xs-pb3,
  .xs-py3 {
    padding-bottom: 2rem;
  }

  .xs-p3 {
    padding: 2rem;
  }

  .xs-pl4,
  .xs-px4 {
    padding-left: 4rem;
  }

  .xs-pr4,
  .xs-px4 {
    padding-right: 4rem;
  }

  .xs-pt4,
  .xs-py4 {
    padding-top: 4rem;
  }

  .xs-pb4,
  .xs-py4 {
    padding-bottom: 4rem;
  }

  .xs-p4 {
    padding: 4rem;
  }

  .xs-col,
  .xs-col-right {
    box-sizing: border-box;
  }

  .xs-col {
    float: left;
  }

  .xs-col-right {
    float: right;
  }

  .xs-col-1 {
    width: 8.33333%;
  }

  .xs-col-2 {
    width: 16.66667%;
  }

  .xs-col-3 {
    width: 25%;
  }

  .xs-col-4 {
    width: 33.33333%;
  }

  .xs-col-5 {
    width: 41.66667%;
  }

  .xs-col-6 {
    width: 50%;
  }

  .xs-col-7 {
    width: 58.33333%;
  }

  .xs-col-8 {
    width: 66.66667%;
  }

  .xs-col-9 {
    width: 75%;
  }

  .xs-col-10 {
    width: 83.33333%;
  }

  .xs-col-11 {
    width: 91.66667%;
  }

  .xs-col-12 {
    width: 100%;
  }

  .xs-col-auto {
    width: auto;
  }
}

@media (min-width: 768px) {

  .sm-mt0,
  .sm-my0 {
    margin-top: 0;
  }

  .sm-mb0,
  .sm-my0 {
    margin-bottom: 0;
  }

  .sm-mxn1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .sm-mxn2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .sm-mxn3 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .sm-mxn4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .sm-ml0,
  .sm-mx0 {
    margin-left: 0;
  }

  .sm-mr0,
  .sm-mx0 {
    margin-right: 0;
  }

  .sm-m0 {
    margin: 0;
  }

  .sm-ml1,
  .sm-mx1 {
    margin-left: 0.5rem;
  }

  .sm-mr1,
  .sm-mx1 {
    margin-right: 0.5rem;
  }

  .sm-mt1,
  .sm-my1 {
    margin-top: 0.5rem;
  }

  .sm-mb1,
  .sm-my1 {
    margin-bottom: 0.5rem;
  }

  .sm-m1 {
    margin: 0.5rem;
  }

  .sm-ml2,
  .sm-mx2 {
    margin-left: 1rem;
  }

  .sm-mr2,
  .sm-mx2 {
    margin-right: 1rem;
  }

  .sm-mt2,
  .sm-my2 {
    margin-top: 1rem;
  }

  .sm-mb2,
  .sm-my2 {
    margin-bottom: 1rem;
  }

  .sm-m2 {
    margin: 1rem;
  }

  .sm-ml3,
  .sm-mx3 {
    margin-left: 2rem;
  }

  .sm-mr3,
  .sm-mx3 {
    margin-right: 2rem;
  }

  .sm-mt3,
  .sm-my3 {
    margin-top: 2rem;
  }

  .sm-mb3,
  .sm-my3 {
    margin-bottom: 2rem;
  }

  .sm-m3 {
    margin: 2rem;
  }

  .sm-ml4,
  .sm-mx4 {
    margin-left: 4rem;
  }

  .sm-mr4,
  .sm-mx4 {
    margin-right: 4rem;
  }

  .sm-mt4,
  .sm-my4 {
    margin-top: 4rem;
  }

  .sm-mb4,
  .sm-my4 {
    margin-bottom: 4rem;
  }

  .sm-m4 {
    margin: 4rem;
  }

  .sm-mtn1 {
    margin-top: -0.5rem;
  }

  .sm-mtn2 {
    margin-top: -1rem;
  }

  .sm-mtn3 {
    margin-top: -2rem;
  }

  .sm-mtn4 {
    margin-top: -4rem;
  }

  .sm-mbn1 {
    margin-bottom: -0.5rem;
  }

  .sm-mbn2 {
    margin-bottom: -1rem;
  }

  .sm-mbn3 {
    margin-bottom: -2rem;
  }

  .sm-mbn4 {
    margin-bottom: -4rem;
  }

  .sm-mln1 {
    margin-left: -0.5rem;
  }

  .sm-mln2 {
    margin-left: -1rem;
  }

  .sm-mln3 {
    margin-left: -2rem;
  }

  .sm-mln4 {
    margin-left: -4rem;
  }

  .sm-mrn1 {
    margin-right: -0.5rem;
  }

  .sm-mrn2 {
    margin-right: -1rem;
  }

  .sm-mrn3 {
    margin-right: -2rem;
  }

  .sm-mrn4 {
    margin-right: -4rem;
  }

  .sm-ml-auto,
  .sm-mx-auto {
    margin-left: auto;
  }

  .sm-mr-auto,
  .sm-mx-auto {
    margin-right: auto;
  }

  .sm-pl0,
  .sm-px0 {
    padding-left: 0;
  }

  .sm-pr0,
  .sm-px0 {
    padding-right: 0;
  }

  .sm-pt0,
  .sm-py0 {
    padding-top: 0;
  }

  .sm-pb0,
  .sm-py0 {
    padding-bottom: 0;
  }

  .sm-p0 {
    padding: 0;
  }

  .sm-pl1,
  .sm-px1 {
    padding-left: 0.5rem;
  }

  .sm-pr1,
  .sm-px1 {
    padding-right: 0.5rem;
  }

  .sm-pt1,
  .sm-py1 {
    padding-top: 0.5rem;
  }

  .sm-pb1,
  .sm-py1 {
    padding-bottom: 0.5rem;
  }

  .sm-p1 {
    padding: 0.5rem;
  }

  .sm-pl2,
  .sm-px2 {
    padding-left: 1rem;
  }

  .sm-pr2,
  .sm-px2 {
    padding-right: 1rem;
  }

  .sm-pt2,
  .sm-py2 {
    padding-top: 1rem;
  }

  .sm-pb2,
  .sm-py2 {
    padding-bottom: 1rem;
  }

  .sm-p2 {
    padding: 1rem;
  }

  .sm-pl3,
  .sm-px3 {
    padding-left: 2rem;
  }

  .sm-pr3,
  .sm-px3 {
    padding-right: 2rem;
  }

  .sm-pt3,
  .sm-py3 {
    padding-top: 2rem;
  }

  .sm-pb3,
  .sm-py3 {
    padding-bottom: 2rem;
  }

  .sm-p3 {
    padding: 2rem;
  }

  .sm-pl4,
  .sm-px4 {
    padding-left: 4rem;
  }

  .sm-pr4,
  .sm-px4 {
    padding-right: 4rem;
  }

  .sm-pt4,
  .sm-py4 {
    padding-top: 4rem;
  }

  .sm-pb4,
  .sm-py4 {
    padding-bottom: 4rem;
  }

  .sm-p4 {
    padding: 4rem;
  }

  .sm-col,
  .sm-col-right {
    box-sizing: border-box;
  }

  .sm-col {
    float: left;
  }

  .sm-col-right {
    float: right;
  }

  .sm-col-1 {
    width: 8.33333%;
  }

  .sm-col-2 {
    width: 16.66667%;
  }

  .sm-col-3 {
    width: 25%;
  }

  .sm-col-4 {
    width: 33.33333%;
  }

  .sm-col-5 {
    width: 41.66667%;
  }

  .sm-col-6 {
    width: 50%;
  }

  .sm-col-7 {
    width: 58.33333%;
  }

  .sm-col-8 {
    width: 66.66667%;
  }

  .sm-col-9 {
    width: 75%;
  }

  .sm-col-10 {
    width: 83.33333%;
  }

  .sm-col-11 {
    width: 91.66667%;
  }

  .sm-col-12 {
    width: 100%;
  }

  .sm-col-auto {
    width: auto;
  }
}

@media (min-width: 992px) {

  .md-mt0,
  .md-my0 {
    margin-top: 0;
  }

  .md-mb0,
  .md-my0 {
    margin-bottom: 0;
  }

  .md-mxn1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .md-mxn2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .md-mxn3 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .md-mxn4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .md-ml0,
  .md-mx0 {
    margin-left: 0;
  }

  .md-mr0,
  .md-mx0 {
    margin-right: 0;
  }

  .md-m0 {
    margin: 0;
  }

  .md-ml1,
  .md-mx1 {
    margin-left: 0.5rem;
  }

  .md-mr1,
  .md-mx1 {
    margin-right: 0.5rem;
  }

  .md-mt1,
  .md-my1 {
    margin-top: 0.5rem;
  }

  .md-mb1,
  .md-my1 {
    margin-bottom: 0.5rem;
  }

  .md-m1 {
    margin: 0.5rem;
  }

  .md-ml2,
  .md-mx2 {
    margin-left: 1rem;
  }

  .md-mr2,
  .md-mx2 {
    margin-right: 1rem;
  }

  .md-mt2,
  .md-my2 {
    margin-top: 1rem;
  }

  .md-mb2,
  .md-my2 {
    margin-bottom: 1rem;
  }

  .md-m2 {
    margin: 1rem;
  }

  .md-ml3,
  .md-mx3 {
    margin-left: 2rem;
  }

  .md-mr3,
  .md-mx3 {
    margin-right: 2rem;
  }

  .md-mt3,
  .md-my3 {
    margin-top: 2rem;
  }

  .md-mb3,
  .md-my3 {
    margin-bottom: 2rem;
  }

  .md-m3 {
    margin: 2rem;
  }

  .md-ml4,
  .md-mx4 {
    margin-left: 4rem;
  }

  .md-mr4,
  .md-mx4 {
    margin-right: 4rem;
  }

  .md-mt4,
  .md-my4 {
    margin-top: 4rem;
  }

  .md-mb4,
  .md-my4 {
    margin-bottom: 4rem;
  }

  .md-m4 {
    margin: 4rem;
  }

  .md-mtn1 {
    margin-top: -0.5rem;
  }

  .md-mtn2 {
    margin-top: -1rem;
  }

  .md-mtn3 {
    margin-top: -2rem;
  }

  .md-mtn4 {
    margin-top: -4rem;
  }

  .md-mbn1 {
    margin-bottom: -0.5rem;
  }

  .md-mbn2 {
    margin-bottom: -1rem;
  }

  .md-mbn3 {
    margin-bottom: -2rem;
  }

  .md-mbn4 {
    margin-bottom: -4rem;
  }

  .md-mln1 {
    margin-left: -0.5rem;
  }

  .md-mln2 {
    margin-left: -1rem;
  }

  .md-mln3 {
    margin-left: -2rem;
  }

  .md-mln4 {
    margin-left: -4rem;
  }

  .md-mrn1 {
    margin-right: -0.5rem;
  }

  .md-mrn2 {
    margin-right: -1rem;
  }

  .md-mrn3 {
    margin-right: -2rem;
  }

  .md-mrn4 {
    margin-right: -4rem;
  }

  .md-ml-auto,
  .md-mx-auto {
    margin-left: auto;
  }

  .md-mr-auto,
  .md-mx-auto {
    margin-right: auto;
  }

  .md-pl0,
  .md-px0 {
    padding-left: 0;
  }

  .md-pr0,
  .md-px0 {
    padding-right: 0;
  }

  .md-pt0,
  .md-py0 {
    padding-top: 0;
  }

  .md-pb0,
  .md-py0 {
    padding-bottom: 0;
  }

  .md-p0 {
    padding: 0;
  }

  .md-pl1,
  .md-px1 {
    padding-left: 0.5rem;
  }

  .md-pr1,
  .md-px1 {
    padding-right: 0.5rem;
  }

  .md-pt1,
  .md-py1 {
    padding-top: 0.5rem;
  }

  .md-pb1,
  .md-py1 {
    padding-bottom: 0.5rem;
  }

  .md-p1 {
    padding: 0.5rem;
  }

  .md-pl2,
  .md-px2 {
    padding-left: 1rem;
  }

  .md-pr2,
  .md-px2 {
    padding-right: 1rem;
  }

  .md-pt2,
  .md-py2 {
    padding-top: 1rem;
  }

  .md-pb2,
  .md-py2 {
    padding-bottom: 1rem;
  }

  .md-p2 {
    padding: 1rem;
  }

  .md-pl3,
  .md-px3 {
    padding-left: 2rem;
  }

  .md-pr3,
  .md-px3 {
    padding-right: 2rem;
  }

  .md-pt3,
  .md-py3 {
    padding-top: 2rem;
  }

  .md-pb3,
  .md-py3 {
    padding-bottom: 2rem;
  }

  .md-p3 {
    padding: 2rem;
  }

  .md-pl4,
  .md-px4 {
    padding-left: 4rem;
  }

  .md-pr4,
  .md-px4 {
    padding-right: 4rem;
  }

  .md-pt4,
  .md-py4 {
    padding-top: 4rem;
  }

  .md-pb4,
  .md-py4 {
    padding-bottom: 4rem;
  }

  .md-p4 {
    padding: 4rem;
  }

  .md-col,
  .md-col-right {
    box-sizing: border-box;
  }

  .md-col {
    float: left;
  }

  .md-col-right {
    float: right;
  }

  .md-col-1 {
    width: 8.33333%;
  }

  .md-col-2 {
    width: 16.66667%;
  }

  .md-col-3 {
    width: 25%;
  }

  .md-col-4 {
    width: 33.33333%;
  }

  .md-col-5 {
    width: 41.66667%;
  }

  .md-col-6 {
    width: 50%;
  }

  .md-col-7 {
    width: 58.33333%;
  }

  .md-col-8 {
    width: 66.66667%;
  }

  .md-col-9 {
    width: 75%;
  }

  .md-col-10 {
    width: 83.33333%;
  }

  .md-col-11 {
    width: 91.66667%;
  }

  .md-col-12 {
    width: 100%;
  }

  .md-col-auto {
    width: auto;
  }
}

@media (min-width: 1200px) {

  .lg-mt0,
  .lg-my0 {
    margin-top: 0;
  }

  .lg-mb0,
  .lg-my0 {
    margin-bottom: 0;
  }

  .lg-mxn1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .lg-mxn2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .lg-mxn3 {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .lg-mxn4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .lg-ml0,
  .lg-mx0 {
    margin-left: 0;
  }

  .lg-mr0,
  .lg-mx0 {
    margin-right: 0;
  }

  .lg-m0 {
    margin: 0;
  }

  .lg-ml1,
  .lg-mx1 {
    margin-left: 0.5rem;
  }

  .lg-mr1,
  .lg-mx1 {
    margin-right: 0.5rem;
  }

  .lg-mt1,
  .lg-my1 {
    margin-top: 0.5rem;
  }

  .lg-mb1,
  .lg-my1 {
    margin-bottom: 0.5rem;
  }

  .lg-m1 {
    margin: 0.5rem;
  }

  .lg-ml2,
  .lg-mx2 {
    margin-left: 1rem;
  }

  .lg-mr2,
  .lg-mx2 {
    margin-right: 1rem;
  }

  .lg-mt2,
  .lg-my2 {
    margin-top: 1rem;
  }

  .lg-mb2,
  .lg-my2 {
    margin-bottom: 1rem;
  }

  .lg-m2 {
    margin: 1rem;
  }

  .lg-ml3,
  .lg-mx3 {
    margin-left: 2rem;
  }

  .lg-mr3,
  .lg-mx3 {
    margin-right: 2rem;
  }

  .lg-mt3,
  .lg-my3 {
    margin-top: 2rem;
  }

  .lg-mb3,
  .lg-my3 {
    margin-bottom: 2rem;
  }

  .lg-m3 {
    margin: 2rem;
  }

  .lg-ml4,
  .lg-mx4 {
    margin-left: 4rem;
  }

  .lg-mr4,
  .lg-mx4 {
    margin-right: 4rem;
  }

  .lg-mt4,
  .lg-my4 {
    margin-top: 4rem;
  }

  .lg-mb4,
  .lg-my4 {
    margin-bottom: 4rem;
  }

  .lg-m4 {
    margin: 4rem;
  }

  .lg-mtn1 {
    margin-top: -0.5rem;
  }

  .lg-mtn2 {
    margin-top: -1rem;
  }

  .lg-mtn3 {
    margin-top: -2rem;
  }

  .lg-mtn4 {
    margin-top: -4rem;
  }

  .lg-mbn1 {
    margin-bottom: -0.5rem;
  }

  .lg-mbn2 {
    margin-bottom: -1rem;
  }

  .lg-mbn3 {
    margin-bottom: -2rem;
  }

  .lg-mbn4 {
    margin-bottom: -4rem;
  }

  .lg-mln1 {
    margin-left: -0.5rem;
  }

  .lg-mln2 {
    margin-left: -1rem;
  }

  .lg-mln3 {
    margin-left: -2rem;
  }

  .lg-mln4 {
    margin-left: -4rem;
  }

  .lg-mrn1 {
    margin-right: -0.5rem;
  }

  .lg-mrn2 {
    margin-right: -1rem;
  }

  .lg-mrn3 {
    margin-right: -2rem;
  }

  .lg-mrn4 {
    margin-right: -4rem;
  }

  .lg-ml-auto,
  .lg-mx-auto {
    margin-left: auto;
  }

  .lg-mr-auto,
  .lg-mx-auto {
    margin-right: auto;
  }

  .lg-pl0,
  .lg-px0 {
    padding-left: 0;
  }

  .lg-pr0,
  .lg-px0 {
    padding-right: 0;
  }

  .lg-pt0,
  .lg-py0 {
    padding-top: 0;
  }

  .lg-pb0,
  .lg-py0 {
    padding-bottom: 0;
  }

  .lg-p0 {
    padding: 0;
  }

  .lg-pl1,
  .lg-px1 {
    padding-left: 0.5rem;
  }

  .lg-pr1,
  .lg-px1 {
    padding-right: 0.5rem;
  }

  .lg-pt1,
  .lg-py1 {
    padding-top: 0.5rem;
  }

  .lg-pb1,
  .lg-py1 {
    padding-bottom: 0.5rem;
  }

  .lg-p1 {
    padding: 0.5rem;
  }

  .lg-pl2,
  .lg-px2 {
    padding-left: 1rem;
  }

  .lg-pr2,
  .lg-px2 {
    padding-right: 1rem;
  }

  .lg-pt2,
  .lg-py2 {
    padding-top: 1rem;
  }

  .lg-pb2,
  .lg-py2 {
    padding-bottom: 1rem;
  }

  .lg-p2 {
    padding: 1rem;
  }

  .lg-pl3,
  .lg-px3 {
    padding-left: 2rem;
  }

  .lg-pr3,
  .lg-px3 {
    padding-right: 2rem;
  }

  .lg-pt3,
  .lg-py3 {
    padding-top: 2rem;
  }

  .lg-pb3,
  .lg-py3 {
    padding-bottom: 2rem;
  }

  .lg-p3 {
    padding: 2rem;
  }

  .lg-pl4,
  .lg-px4 {
    padding-left: 4rem;
  }

  .lg-pr4,
  .lg-px4 {
    padding-right: 4rem;
  }

  .lg-pt4,
  .lg-py4 {
    padding-top: 4rem;
  }

  .lg-pb4,
  .lg-py4 {
    padding-bottom: 4rem;
  }

  .lg-p4 {
    padding: 4rem;
  }

  .lg-col,
  .lg-col-right {
    box-sizing: border-box;
  }

  .lg-col {
    float: left;
  }

  .lg-col-right {
    float: right;
  }

  .lg-col-1 {
    width: 8.33333%;
  }

  .lg-col-2 {
    width: 16.66667%;
  }

  .lg-col-3 {
    width: 25%;
  }

  .lg-col-4 {
    width: 33.33333%;
  }

  .lg-col-5 {
    width: 41.66667%;
  }

  .lg-col-6 {
    width: 50%;
  }

  .lg-col-7 {
    width: 58.33333%;
  }

  .lg-col-8 {
    width: 66.66667%;
  }

  .lg-col-9 {
    width: 75%;
  }

  .lg-col-10 {
    width: 83.33333%;
  }

  .lg-col-11 {
    width: 91.66667%;
  }

  .lg-col-12 {
    width: 100%;
  }

  .lg-col-auto {
    width: auto;
  }
}

.sidescroll {
  position: relative;
  width: 100%;
  height: 100vh;
}

.sidescroll .inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.sidescroll .h-scroller {
  position: absolute;
  height: 100%;
}

.sidescroll .h-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
}

.sidescroll .h-content {
  flex-shrink: 0;
}

/* Opening shapes */

.title-shapes .title {
  padding-top: 25vh;
  margin-bottom: -2em;
}

.home-shapes {
  pointer-events: none;
  height: 18em;
  max-width: 18em;
}

.home-shapes svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.title-shapes .title-section {
  height: 14em;
  margin-top: 14rem;
}

@media (max-width: 767px) and (orientation: landscape) {
  .title-shapes .title {
    margin-bottom: -3em;
  }

  .home-shapes {
    max-width: 40vw;
    max-height: 40vw;
  }

  .title-shapes .title-section {
    margin-top: 8em;
  }
}

@media (min-width: 768px) {
  .title-shapes .title {
    padding-top: 25vh;
    margin-bottom: 1rem;
  }

  .home-shapes {
    max-width: none;
  }

  .title-shapes .title-section {
    margin-top: 18em;
  }
}

@media (min-height: 920px) and (orientation: portrait) {
  .title-shapes .title {
    padding-top: 30vh;
  }

  .title-shapes .title-section {
    margin-top: 20em;
  }
}

@media (min-width: 1560px) and (min-height: 920px) {
  .title-shapes .title-section {
    margin-top: 24em;
  }
}


/* Meet the team */
.team-section {
  margin-top: -15vh;
}

@media (min-width: 768px) {
  .team-section {
    margin-top: -8vh;
  }
}

.js .team-title {
  box-sizing: content-box;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 50vw 1rem 25vw;
}


/* Meet the team heads */

.team-hi-section {
  margin-top: -55vh;
  padding-top: 4rem;
}

.team-hi {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.team-hi li {
  width: 20%;
  max-width: 4.75rem;
}

.js .team-hi li {
  opacity: .001;
}

@media (max-width: 768px) {
  .team-hi li:nth-child(2) {
    margin-top: -6rem;
  }

  .team-hi li:nth-child(1),
  .team-hi li:nth-child(3) {
    margin-top: 6rem;
  }
}

.team-hi li:nth-child(1) img.hand {
  position: absolute;
  left: -60%;
  top: 35%;
  width: 70%;
}

.team-hi li:nth-child(2) img.hand {
  position: absolute;
  left: 95%;
  top: 10%;
  width: 70%;
}

.team-hi li:nth-child(3) img.hand {
  position: absolute;
  left: -65%;
  top: 40%;
  width: 70%;
}

.js .team-hi [data-speech].speech {
  z-index: 3;
}


/* Team bubbles */

.team-bubbles li {
  width: 8rem;
}

.team-bubbles li:nth-child(1) {
  margin-top: 4rem;
}

.team-bubbles li:nth-child(2) {
  margin-top: 10rem;
  margin-left: -.5rem;
}

.team-bubbles li:nth-child(3) {
  margin-left: -4rem;
}

.js .team-heads .thinking .head {
  z-index: 0;
}


/* Bubbling shapes */

.no-js .bubble-icon {
  display: none;
}

#bubble-icon-temp {
  display: none;
}

.js .bubble-icon {
  display: inline-block;
  position: absolute;
  left: calc(50% - .75rem);
  top: calc(50% - .75rem);
  width: 1.5rem;
  height: 1.5rem;
  padding: .5rem;
  box-sizing: content-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .js .bubble-icon {
    width: 1.75rem;
    height: 1.75rem;
    left: calc(50% - .875rem);
    top: calc(50% - .875rem);
  }
}

.js .bubble-icon .popper {
  display: none;
}

.js .bubble-icon.pop {
  cursor: default;
  pointer-events: none;
}

.js .bubble-icon.pop path,
.js .bubble-icon.pop rect {
  display: none;
}

.js .bubble-icon.pop .popper {
  display: inherit;
}


/* Three heads Siema slider */

.no-js .head-sliders {
  display: none;
}

.js .head-sliders {
  font-size: 12rem;
  /* adjust this font size to change size of the heads */
}

@media (min-width: 768px) {
  .js .head-sliders {
    font-size: 13rem;
    /* adjust this font size to change size of the heads */
  }
}

@media (min-width: 992px) {
  .js .head-sliders {
    font-size: 15rem;
    /* adjust this font size to change size of the heads */
  }
}

.js .head-sliders img {
  vertical-align: top;
}

.js .head-sliders .head-slider:active {
  cursor: -webkit-grabbing !important;
}

.js .head-sliders .head-slider,
.js .head-sliders .head-slider>div {
  width: 1em;
}

.js .head-sliders .head-slider:nth-child(1) {
  height: .6em;
  margin-top: 0;
  margin-bottom: 4px;
}

.js .head-sliders .head-slider:nth-child(2) {
  height: .49em;
  margin-top: 0;
  margin-bottom: 4px;
}

.js .head-sliders .head-slider:nth-child(2)>div img {
  margin-top: -.61em;
}

.js .head-sliders .head-slider:nth-child(3) {
  height: .75em;
  margin-top: 0;
  margin-bottom: 0;
}

.js .head-sliders .head-slider:nth-child(3)>div img {
  margin-top: -1.125em;
}

@media (min-width: 1530px) {
  .js .head-sliders .head-slider:nth-child(1) {
    height: 0.58em;
  }

  .js .head-sliders .head-slider:nth-child(2) {
    height: .445em;
  }
}


/* Tower of Heads */

.tower-of-heads {
  font-size: 3rem;
  /* adjust this font size to change size of the heads */
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .tower-of-heads {
    font-size: 3.5rem;
    /* adjust this font size to change size of the heads */
  }
}

@media (min-width: 992px) {
  .tower-of-heads {
    font-size: 4rem;
    /* adjust this font size to change size of the heads */
  }
}

.tower-of-heads li.head {
  width: 2em;
}

.tower-of-heads li.shape {
  width: .8125em;
  position: absolute;
  z-index: 1;
}

.js .tower-of-heads li {
  opacity: .001;
}

.tower-of-heads li:nth-child(2) {
  margin-bottom: -.65em;
  z-index: 0;
  position: relative;
}

.tower-of-heads li:nth-child(4) {
  margin-bottom: -.8em;
  margin-left: -.125em;
  z-index: 2;
  position: relative;
}

.tower-of-heads li:nth-child(6) {
  z-index: 3;
  position: relative;
}

.tower-of-heads li:nth-child(1) {
  top: -.375em;
  left: 0;
  z-index: 0;
}

.tower-of-heads li:nth-child(3) {
  top: 2.375em;
  right: 0;
  z-index: 0;
}

.tower-of-heads li:nth-child(5) {
  top: 4.5em;
  left: .4125em;
  z-index: 0;
}

.tower-of-heads li:nth-child(7) {
  bottom: -.25em;
  right: -.25em;
  z-index: 0;
}

.js .tower-of-heads [data-shake-tower]>span {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.js .tower-of-heads:not(.animating) [data-shake-tower]:active {
  opacity: .9 !important;
  transform: scale(.95) !important;
}

@media(hover: hover) {
  .js .tower-of-heads:not(.animating) [data-shake-tower]:hover {
    transform: scale(1.03) !important;
  }

  .js .tower-of-heads:not(.animating) [data-shake-tower]:active {
    transform: scale(.98) !important;
  }
}


/* Collaboration */

.rise-title {
  padding-top: .75em;
}

@media(min-width: 992px) {
  .rise-title span {
    transition: transform 350ms ease-out;
  }

  .no-js .rise-title span:nth-child(2),
  .js .rise-title.enter span:nth-child(1) {
    transform: translateY(-.25em);
  }

  .no-js .rise-title span:nth-child(2),
  .js .rise-title.enter span:nth-child(2) {
    transform: translateY(-.5em);
  }
}

.js [data-listener="inviewTalkingHead"] {
  opacity: 0;
  transition: opacity 200ms;
}

.js [data-listener="inviewTalkingHead"].enter {
  opacity: 1;
  transition: opacity 600ms;
}

/* Studio C-Level Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 52em) {

  /* approx 832px, fitting for desktop */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}