:root {
  --red: #a51d38;
  --blue: #1d3555;
  --black: black;
  --light-grey: #efefef;
  --grey: #7b7b7b;
  --white: white;
  --light-grey-bg: #f8f9f9;
  --dark-grye: #333;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

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

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.sg-title {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.4em;
}

.sg-nav {
  border-right: 1px solid #ced5db;
  width: 240px;
  height: 0;
  position: fixed;
  inset: 0% auto 0 0;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
}

.spacer {
  background-color: #ece7e0;
  height: 48px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.sg-nav-container {
  background-color: var(--blue);
  width: 240px;
  height: 100vh;
  padding-top: 315px;
}

.sg-label {
  color: var(--black);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
}

.sg-description {
  color: #5c5c5c;
  max-width: 400px;
  font-weight: 400;
}

.icon {
  color: #fff;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.icon.purpose {
  width: auto;
  height: 55px;
}

.icon.small {
  width: 30px;
  height: 30px;
}

.divider-display-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.color-block {
  background-color: var(--blue);
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block._1 {
  background-color: var(--red);
}

.color-block._2 {
  background-color: var(--light-grey);
}

.color-block._3 {
  background-color: var(--grey);
}

.sg-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
}

.paragraph {
  color: var(--grey);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6em;
}

.paragraph.large {
  font-size: 18px;
  font-weight: 400;
}

.paragraph.large.dark {
  color: var(--blue);
}

.paragraph.small {
  opacity: .75;
  font-size: 14px;
}

.paragraph.card {
  color: var(--white);
  margin-left: 10px;
  margin-right: 10px;
  position: absolute;
  inset: 0%;
}

.paragraph.light {
  color: var(--white);
}

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

.paragraph.intro {
  color: var(--red);
}

.paragraph.top-space {
  margin-top: 10px;
}

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

.paragraph.contact {
  color: var(--black);
}

.paragraph.dark-blue {
  color: var(--blue);
}

.button {
  border-right: 3px solid var(--red);
  background-color: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  flex: none;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: all .2s;
}

.button:hover {
  border-right-color: var(--white);
  background-color: var(--blue);
  box-shadow: 6px 0 0 0 var(--red);
  color: var(--white);
}

.button._2 {
  border-right-color: var(--blue);
  background-color: var(--blue);
}

.button._2:hover {
  border-right-color: var(--white);
  background-color: var(--red);
  box-shadow: 6px 0 0 0 var(--blue);
}

.button._3 {
  border-right-color: var(--white);
  background-color: var(--white);
  color: var(--red);
}

.button._3:hover {
  border-right-color: var(--red);
  box-shadow: 6px 0 0 0 var(--white);
}

.button.menu {
  margin-top: 10px;
  margin-left: 20px;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.sg-block {
  margin-bottom: 32px;
}

.horizontal-line {
  opacity: .2;
  background-color: #1d1916;
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.ds-colour-block {
  width: 20%;
  padding-right: 16px;
  display: inline-block;
}

.block-quote {
  border-left-color: var(--red);
  color: var(--grey);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
}

.text-box {
  max-width: 750px;
}

.text-box._600px {
  max-width: 600px;
  min-height: 64px;
}

.text-box._500px {
  max-width: 500px;
  min-height: 64px;
}

.sg-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 60px 60px;
  position: relative;
}

.sg-section.header {
  background-color: var(--light-grey);
  color: #fafafa;
}

.sg-section.first-one {
  background-image: url('../images/watermark.svg');
  background-position: 95% 40px;
  background-repeat: no-repeat;
  background-size: 200px;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-4 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 33.33%;
}

.column.desk-4.dark-demo {
  background-color: var(--grey);
}

.ds-icon-grid {
  margin-top: 24px;
}

.sg-menu {
  width: 100%;
}

.ds-section-header {
  margin-bottom: 50px;
}

.divider-bottom {
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.sg-menu-link {
  width: 100%;
  color: var(--white);
  border-left: 4px solid #0000;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
  transition: background-color .2s, color .2s;
}

.sg-menu-link:hover {
  color: var(--grey);
}

.sg-menu-link.w--current {
  background-color: var(--white);
  color: var(--blue);
  padding-right: 0;
  font-weight: 600;
}

.sg-body {
  background-color: #fff;
}

.ds-icon {
  margin-bottom: 4px;
  margin-right: 24px;
  display: inline-block;
}

.heading-1 {
  color: var(--white);
  font-size: 50px;
  line-height: 1.3em;
}

.heading-1.dark {
  color: var(--blue);
  line-height: 1.1em;
}

.heading-1.center {
  text-align: center;
}

.heading-2 {
  color: var(--red);
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.1em;
}

.heading-2.light {
  color: var(--white);
}

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

.heading-3 {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
}

.heading-3.centre {
  text-align: center;
}

.heading-3.smaller {
  font-size: 20px;
}

.heading-3.title {
  margin-bottom: 10px;
}

.heading-4 {
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5em;
}

.heading-4.card {
  color: var(--white);
  margin-left: 10px;
  margin-right: 10px;
  position: absolute;
  inset: 0%;
}

.heading-5 {
  color: var(--blue);
}

.image {
  object-fit: cover;
  border-radius: 30px;
  width: 400px;
  height: 400px;
}

.image.bigger {
  width: 100%;
  height: 500px;
}

.image-wrap-white {
  background-color: var(--white);
  border-radius: 26px;
  justify-content: center;
  align-items: flex-start;
  width: 400px;
  height: 405px;
  display: flex;
  overflow: hidden;
}

.image-wrap-white.bigger {
  width: 100%;
  height: 505px;
}

.image-wrap-red {
  background-color: var(--red);
  border-radius: 30px;
  justify-content: center;
  align-items: flex-start;
  width: 400px;
  height: 420px;
  display: flex;
}

.image-display {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.image-wrap-blue {
  background-color: var(--blue);
  border-radius: 30px;
  justify-content: center;
  align-items: flex-start;
  width: 400px;
  height: 420px;
  display: flex;
}

.image-wrap-blue.bigger {
  width: 500px;
  height: 520px;
}

.section-test-1 {
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--blue);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.section-test-2 {
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.rich-text {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6em;
}

.rich-text ul {
  text-align: left;
  margin-top: 10px;
  padding-left: 25px;
  list-style-type: square;
}

.rich-text li {
  color: var(--grey);
  background-image: url('../images/bullet.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: 6px;
  margin-bottom: 5px;
  padding-left: 15px;
  list-style-type: none;
}

.navbar {
  background-color: var(--white);
  justify-content: center;
  align-items: flex-start;
  padding: 10px 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-container {
  flex: none;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.logo {
  width: 235px;
}

.background-video {
  object-fit: cover;
  object-position: 50% 0%;
  justify-content: center;
  align-items: center;
  height: 110vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.nav-link {
  color: var(--grey);
  font-size: 15px;
  font-weight: 400;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link.w--current {
  color: var(--blue);
}

.nav-menu {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.container.centre {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-wrapper {
  width: 700px;
}

.overlay {
  background-image: linear-gradient(90deg, #0003, #00000080);
  position: absolute;
  inset: 0%;
}

.hero-container {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.brand {
  justify-content: flex-start;
  align-items: center;
}

.section {
  padding: 100px 5% 160px;
  position: relative;
}

.section.grey {
  background-color: var(--light-grey-bg);
  background-image: url('../images/divider-lightgrey-bottom.svg');
  background-position: 50% 100%;
  background-repeat: repeat;
  background-size: auto;
}

.section.with-bottom-divider {
  background-image: url('../images/divider-lightgrey-bottom.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.max {
  width: 800px;
}

.watermark {
  width: 250px;
  position: absolute;
  inset: 10% 2% 10% auto;
  overflow: visible;
}

.grid-2-col {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  width: 100%;
}

.grid-2-col.special {
  grid-template-columns: 1fr .75fr;
}

.col-1 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sticky-col {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.service-block {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.service-image {
  width: 100%;
}

.service-overlay {
  text-align: center;
  background-color: #0006;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: absolute;
}

.sticky-item {
  width: 100%;
  position: sticky;
  top: 100px;
}

.highlight-text {
  color: var(--blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.highlight-text.top-space {
  margin-top: 40px;
  line-height: 24px;
}

.section-image {
  background-image: linear-gradient(#00000080, #00000080), url('../images/background-1.avif');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 140px 5% 160px;
  position: relative;
}

.divider-top {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.code-embed {
  border-radius: 30px;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.code-embed-2 {
  width: 100%;
  margin-top: 40px;
}

.footer {
  color: var(--white);
  background-image: linear-gradient(#1d3555e6, #1d3555e6), url('../images/footer-background.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 100px 5% 40px;
  position: relative;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.footer-col {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-heading {
  color: var(--white);
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
}

.icon-text-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
  display: flex;
}

.icon-text-wrap:hover {
  opacity: .7;
  color: var(--white);
}

.footer-text {
  text-align: left;
  font-weight: 300;
  line-height: 1.5em;
}

.footer-text.bold {
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-text.small {
  font-size: 12px;
}

.footer-icon {
  width: 15px;
  margin-top: 3px;
  overflow: visible;
}

.text-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.divider-line {
  background-color: var(--light-grey);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.link-light {
  color: var(--white);
}

.link-light:hover {
  opacity: .7;
  color: var(--white);
}

.header-container-wrapper {
  text-align: right;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.hero-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.hero-section.faq {
  background-image: url('../images/3.avif');
  background-position: 50%;
  background-size: cover;
}

.hero-section.about {
  background-image: url('../images/2.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section.contact {
  background-image: url('../images/2.avif');
  background-position: 50%;
  background-size: cover;
}

.hero-section.service {
  background-image: url('../images/1.avif');
  background-position: 50%;
  background-size: cover;
}

.hero-section.training {
  background-image: url('../images/training.avif');
  background-position: 50%;
  background-size: cover;
}

.left-col {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxlarge {
  margin: 0;
}

.margin-bottom.margin-small, .margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-medium {
  font-size: 1.125rem;
}

.text-size-large {
  font-size: 1.25rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h4 {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.padding-global {
  padding-left: 0%;
  padding-right: 0%;
}

.margin-top, .margin-top.margin-xxlarge, .margin-top.margin-small, .margin-top.margin-medium, .margin-top.margin-custom3, .margin-top.margin-0, .margin-top.margin-custom1, .margin-top.margin-xsmall, .margin-top.margin-xxsmall, .margin-top.margin-xlarge, .margin-top.margin-xxhuge, .margin-top.margin-tiny, .margin-top.margin-huge, .margin-top.margin-large, .margin-top.margin-xhuge, .margin-top.margin-custom2 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.slider-arrow-icon_default {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

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

.slider-arrow-2 {
  color: #000;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.slider-arrow-2.is-bottom-previous {
  inset: auto 4rem 0% auto;
}

.slider-arrow-2.is-centre-next, .slider-arrow-2.is-centre-previous {
  bottom: 4rem;
}

.slider-arrow-2.is-bottom-next {
  inset: auto 0% 0% auto;
}

.text-size-tiny {
  font-size: .75rem;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.hidden-ui-elements {
  display: none;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.padding-large {
  padding: 3rem;
}

.z-index-2 {
  z-index: 2;
  background-color: var(--white);
  position: relative;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.rl-styleguide_nav {
  z-index: 1000;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 0;
  margin-top: 1rem;
  padding: .5rem;
  position: sticky;
  top: 1rem;
}

.text-size-medium-2 {
  color: #b3a16d;
  font-size: 1.125rem;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.rl-styleguide_scheme {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
}

.icon-height-xlarge {
  height: 6.5rem;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.margin-tiny {
  margin: .25rem;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

.padding-0 {
  padding: 0;
}

.padding-left, .padding-left.padding-tiny, .padding-left.padding-large, .padding-left.padding-xsmall, .padding-left.padding-custom2, .padding-left.padding-xxhuge, .padding-left.padding-xxlarge, .padding-left.padding-custom1, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-custom3, .padding-left.padding-xhuge, .padding-left.padding-small, .padding-left.padding-medium, .padding-left.padding-xxsmall, .padding-left.padding-huge {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

.rl-styleguide_radius-large {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #000;
  border-radius: 0;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.text-weight-light {
  font-weight: 300;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
}

.rl-styleguide_radius-medium {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #000;
  border-radius: 0;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
}

.rl-styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #e8edff;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  color: #bb4198;
  background-color: #f9eff6;
}

.rl-styleguide_radius-small {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #000;
  border-radius: 0;
}

.margin-xsmall {
  margin: 1rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

.margin-horizontal, .margin-horizontal.margin-huge, .margin-horizontal.margin-custom2, .margin-horizontal.margin-large, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-0, .margin-horizontal.margin-medium, .margin-horizontal.margin-small, .margin-horizontal.margin-custom1, .margin-horizontal.margin-tiny, .margin-horizontal.margin-xxhuge, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-custom3 {
  margin-top: 0;
  margin-bottom: 0;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.form_radio-label {
  margin-bottom: 0;
}

.margin-right, .margin-right.margin-large, .margin-right.margin-custom2, .margin-right.margin-0, .margin-right.margin-custom3, .margin-right.margin-tiny, .margin-right.margin-custom1, .margin-right.margin-medium, .margin-right.margin-xhuge, .margin-right.margin-huge, .margin-right.margin-xlarge, .margin-right.margin-xxlarge, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-xxsmall, .margin-right.margin-xsmall {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-medium {
  margin: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.padding-vertical, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-tiny, .padding-vertical.padding-xsmall, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-custom2, .padding-vertical.padding-custom1, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-large, .padding-vertical.padding-xxlarge, .padding-vertical.padding-xxhuge, .padding-vertical.padding-small, .padding-vertical.padding-0 {
  padding-left: 0;
  padding-right: 0;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
}

.text-weight-normal {
  font-weight: 400;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-vertical, .margin-vertical.margin-xxsmall, .margin-vertical.margin-huge, .margin-vertical.margin-medium, .margin-vertical.margin-xhuge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-custom3, .margin-vertical.margin-small, .margin-vertical.margin-xsmall, .margin-vertical.margin-tiny, .margin-vertical.margin-large, .margin-vertical.margin-xlarge, .margin-vertical.margin-custom1, .margin-vertical.margin-xxlarge, .margin-vertical.margin-custom2 {
  margin-left: 0;
  margin-right: 0;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.padding-xhuge {
  padding: 7rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_radius-medium-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.category-filter-menu {
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.category-filter-menu.is-center {
  justify-content: center;
  align-items: center;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-xxsmall {
  margin: .5rem;
}

.text-weight-medium {
  font-weight: 500;
}

.rl-styleguide_radius-small-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.tab-link {
  background-color: #0000;
  border: 1px solid #0000;
  padding: .5rem 1.5rem;
}

.tab-link.w--current {
  background-color: #fff;
  border-color: #000;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pointer-events-auto {
  pointer-events: auto;
}

.aspect-ratio-square {
  aspect-ratio: 1;
}

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

.margin-large {
  margin: 3rem;
}

.rl-styleguide_spacing {
  border: 1px dashed #000;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.rl-styleguide_item-row.is-button-row {
  grid-template-columns: 19rem 1fr;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.padding-right, .padding-right.padding-custom1, .padding-right.padding-custom3, .padding-right.padding-large, .padding-right.padding-xsmall, .padding-right.padding-custom2, .padding-right.padding-xxsmall, .padding-right.padding-xxhuge, .padding-right.padding-0, .padding-right.padding-huge, .padding-right.padding-xlarge, .padding-right.padding-xhuge, .padding-right.padding-tiny, .padding-right.padding-xxlarge, .padding-right.padding-small, .padding-right.padding-medium {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.rl-styleguide_heading {
  z-index: 4;
  margin-bottom: 1.5rem;
  padding: .25rem .5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
}

.padding-xxlarge {
  padding: 5rem;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.text-color-white {
  color: #fff;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.text-size-small {
  font-size: .875rem;
}

.text-style-muted {
  opacity: .6;
}

.padding-medium {
  padding: 2rem;
}

.tabs-menu-3 {
  background-color: #eee;
  border: 1px solid #000;
  align-self: center;
  margin-bottom: 3rem;
  padding: .25rem;
  display: flex;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.rl-styleguide_color-spacer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

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

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.rl-styleguide_ratio-bg {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 100%;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.margin-small {
  margin: 1.5rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.padding-huge {
  padding: 6rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.rl-styleguide_scheme-list {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.rl-styleguide-accent {
  color: #000;
}

.icon-height-custom1 {
  height: 1.25rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

.color-scheme-1 {
  color: #000;
  background-color: #fff;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.icon-embed-small {
  color: #646464;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-3.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-3.is-secondary {
  color: #000;
  background-color: #0000;
}

.button-3.is-secondary.is-alternate {
  color: #fff;
  background-color: #0000;
}

.button-3.is-alternate {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.button-3.is-small {
  padding: .5rem 1.25rem;
}

.button-3.is-link {
  color: #000;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-3.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button-3.is-link.is-alternate {
  color: #fff;
  background-color: #0000;
}

.text-style-italic {
  font-style: italic;
}

.rl-styleguide_scheme-wrapper {
  padding: 1rem;
}

.padding-section-large-2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.form_radio-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form_radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.form_radio-icon.is-alternate {
  border-color: #fff;
}

.rl-styleguide_subheading {
  z-index: 3;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.rl-styleguide_subheading.is-text-small {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-custom2, .padding-horizontal.padding-tiny, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-large, .padding-horizontal.padding-huge, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-custom3, .padding-horizontal.padding-0, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-xlarge, .padding-horizontal.padding-small, .padding-horizontal.padding-medium {
  padding-top: 0;
  padding-bottom: 0;
}

.slider-arrow-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

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

.margin-xhuge {
  margin: 7rem;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.category-filter-link {
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #0000;
  flex: none;
  padding: .5rem 1rem;
  text-decoration: none;
}

.category-filter-link.w--current {
  background-color: #eee;
  border-color: #000;
}

.text-weight-xbold {
  font-weight: 800;
}

.margin-xxhuge {
  margin: 10rem;
}

.hide {
  display: none;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-bottom-2 {
  margin: 0 0 8px;
}

.margin-bottom-2.margin-xxhuge, .margin-bottom-2.margin-tiny, .margin-bottom-2.margin-custom1 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-2.margin-xxlarge {
  margin: 0;
}

.margin-bottom-2.margin-xsmall, .margin-bottom-2.margin-custom2, .margin-bottom-2.margin-xlarge, .margin-bottom-2.margin-custom3, .margin-bottom-2.margin-small, .margin-bottom-2.margin-large, .margin-bottom-2.margin-xhuge, .margin-bottom-2.margin-medium, .margin-bottom-2.margin-0, .margin-bottom-2.margin-huge, .margin-bottom-2.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.form_field-label.is-alternate {
  color: #fff;
}

.rl-styleguide_spacing-all {
  display: none;
}

.form_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.padding-tiny {
  padding: .25rem;
}

.form_radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.form_radio.is-alternate {
  color: #fff;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.padding-section-medium {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.background-color-black {
  background-color: #000;
}

.icon-height-xxsmall {
  height: 1rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

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

.rl-styleguide_form-wrapper {
  padding-right: 1.5rem;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #eee;
  border: 1px solid #eee;
  justify-content: center;
  align-items: center;
  padding: .175rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.is-alternate {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.tag.is-text {
  background-color: #0000;
  border-style: none;
  border-color: #0000;
  padding: 0;
  display: inline-block;
}

.tag.is-text.is-alternate {
  color: #fff;
  background-color: #0000;
}

.form_checkbox-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form_checkbox-icon.is-alternate {
  border-color: #fff;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-left, .margin-left.margin-small, .margin-left.margin-huge, .margin-left.margin-large, .margin-left.margin-custom2, .margin-left.margin-xxhuge, .margin-left.margin-custom1, .margin-left.margin-xhuge, .margin-left.margin-xxsmall, .margin-left.margin-medium, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-custom3, .margin-left.margin-xsmall, .margin-left.margin-xlarge, .margin-left.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.form_field-wrapper {
  position: relative;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.rl-styleguide_radius-large-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.overflow-scroll {
  overflow: scroll;
}

.margin-huge {
  margin: 6rem;
}

.rl-styleguide_nav-link {
  border-radius: 0;
  padding: .5rem 1rem;
  text-decoration: none;
}

.rl-styleguide_nav-link.w--current {
  background-color: #fff;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.margin-0 {
  margin: 0;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.margin-xxlarge {
  margin: 5rem;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.padding-bottom, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-tiny, .padding-bottom.padding-large, .padding-bottom.padding-medium, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom1, .padding-bottom.padding-0, .padding-bottom.padding-xxsmall {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.rl-styleguide_scheme-card {
  border-radius: 0;
  overflow: hidden;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-top, .padding-top.padding-custom2, .padding-top.padding-huge, .padding-top.padding-xhuge, .padding-top.padding-xsmall, .padding-top.padding-tiny, .padding-top.padding-custom3, .padding-top.padding-large, .padding-top.padding-xxsmall, .padding-top.padding-0, .padding-top.padding-xxlarge, .padding-top.padding-medium, .padding-top.padding-custom1, .padding-top.padding-xxhuge, .padding-top.padding-small, .padding-top.padding-xlarge {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.overflow-hidden {
  overflow: hidden;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.text-size-regular {
  font-size: 1rem;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.rl-styleguide_scheme-foreground {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #eee;
  border: 1px solid #000;
  border-radius: 0;
  flex-flow: column;
  padding: 1rem;
  display: flex;
}

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.form_checkbox.is-alternate {
  color: #fff;
}

.icon-height-medium {
  height: 3rem;
}

.overflow-auto {
  overflow: auto;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-style-link {
  text-decoration: none;
}

.icon-height-small {
  height: 2rem;
}

.padding-small {
  padding: 1.5rem;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.rl-styleguide_subheading-small {
  font-size: 1rem;
  font-weight: 400;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.form_input {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-select-input {
  background-image: url('../images/chevron-down.svg');
  background-position: 99%;
  background-repeat: no-repeat;
  background-size: auto;
}

.form_input.is-select-input.is-alternate {
  background-image: url('../images/chevron-down-white.svg');
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form_input.is-alternate {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.form_input.is-alternate::placeholder {
  color: #fff9;
}

.team-bio {
  color: #fff;
  flex-flow: column;
  max-height: 200px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  display: flex;
  position: static;
  overflow: scroll;
}

.team-bio.isabel {
  width: 100%;
  max-height: 220px;
  font-size: 15px;
  overflow: scroll;
}

.team-bio.jason, .team-bio.hannah, .team-bio.emtia {
  width: 100%;
  max-height: 190px;
  font-size: 15px;
  overflow: scroll;
}

.team-bio.rudi, .team-bio.elisma {
  width: 100%;
  max-height: 170px;
  font-size: 15px;
  overflow: scroll;
}

.intro-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin-top: 40px;
  display: flex;
}

.d-125-content-wrapper {
  transform-origin: 50% 0;
  color: var(--blue);
  cursor: s-resize;
  transform-style: preserve-3d;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(#192a40 100%, #192a40ad 100%, #334255f0 100%, #ffffff75);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: none;
}

.d-125-image-wrapper {
  transform-origin: 50% 100%;
  background-image: url('../images/Hannah-de-Waal.jpg');
  background-position: 50% 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.d-125-image-wrapper._5 {
  background-image: url('../images/placeholder-man.png');
}

.d-125-image-wrapper._4 {
  background-image: url('../images/placeholder-women.png');
}

.d-125-image-wrapper._2 {
  background-image: url('../images/placeholder-women.png');
  background-position: 50% 0;
  background-size: cover;
}

.d-125-image-wrapper._1 {
  background-image: url('../images/placeholder-man.png');
}

.d-125-image-wrapper._3 {
  background-image: url('../images/Isabel-Oliver.avif');
  background-position: 50%;
  background-size: cover;
}

.d-125-image-wrapper._6 {
  background-image: url('../images/placeholder-man.png');
}

.team-div {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.team-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.d-125-3d-wrapper {
  background-color: var(--red);
  perspective: 1000px;
  cursor: pointer;
  border: 10px #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  height: 300px;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: row-reverse;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  margin-right: 0%;
  display: grid;
  position: relative;
  inset: 0%;
}

.tap.desktop {
  color: #ff7800;
  text-shadow: none;
  margin-bottom: 40px;
  display: none;
}

.scroll-button {
  width: 40%;
  color: var(--light-grey);
  -webkit-text-stroke-color: #ff7800;
  cursor: s-resize;
  background-image: url('../images/arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

.container-3 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 60px;
}

.container-3.teams {
  padding-bottom: 0;
}

.team-qualification {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.div-block-13-copy {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-div {
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  border-radius: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  box-shadow: 0 20px 20px #0000000d;
}

.grid-3-cols {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-top: 5em;
  display: grid;
}

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

.heading-text-horizontal {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.utility-page-wrap {
  background-color: var(--red);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  background-color: var(--light-grey);
  text-align: center;
  border-radius: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 600px;
  padding: 20px 40px;
  display: flex;
}

.faq3_answer {
  overflow: hidden;
}

.faq3_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq3_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  background-image: url('../images/watermark.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 45%;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.icon-embed-small-2 {
  color: var(--red);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.faq3_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--blue);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.125rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq3_list {
  border-bottom: 1px solid var(--blue);
}

.faq3_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.text-weight-semibold {
  font-weight: 600;
}

.timeline1_progress-line {
  z-index: 0;
  width: 3px;
  height: 50vh;
  margin-top: -50vh;
  position: sticky;
  top: 0;
}

.timeline1_circle {
  z-index: 2;
  border: 1px solid var(--red);
  background-color: var(--light-grey);
  width: .9375rem;
  height: .9375rem;
  box-shadow: none;
  color: var(--grey);
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.timeline1_progress-line-cover {
  z-index: 2;
  width: 100%;
  height: 50vh;
  position: absolute;
  top: -50vh;
}

.timeline1_content-right {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-left: 20px;
  display: grid;
}

.timeline1_fade-overlay-top {
  z-index: 1;
  background-image: linear-gradient(180deg, var(--\<unknown\|relume-variable-color-scheme-1-background\>), #0000);
  width: 4px;
  height: 4rem;
  position: absolute;
}

.timeline1_item {
  z-index: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 10px;
}

.timeline1_circle-wrapper {
  z-index: 1;
  background-color: var(--light-grey);
  border-radius: 20px 0 0 20px;
  justify-content: center;
  align-items: flex-start;
  width: 2rem;
  height: 100%;
  margin-left: -5rem;
  display: flex;
  position: absolute;
}

.timeline1_line {
  opacity: .15;
  width: 3px;
  height: 100%;
}

.timeline1_row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #0000000f;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.timeline1_fade-overlay-bottom {
  z-index: 1;
  background-image: linear-gradient(180deg, #fff0, var(--\<unknown\|relume-variable-color-scheme-1-background\>));
  width: 4px;
  height: 4rem;
  position: absolute;
  bottom: 0%;
}

.timeline1_progress {
  z-index: 0;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: absolute;
}

.timeline1_content {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
  position: relative;
}

.timeline1_content-left {
  padding-right: 1rem;
  position: sticky;
  top: 10rem;
}

.grid-4-cols {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-top: 4em;
  display: grid;
}

.code-embed-3 {
  text-align: left;
  width: 70%;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.contact20_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: grid;
}

.image-2 {
  width: 40px;
  height: auto;
}

.paragraph-2 {
  text-align: center;
}

.link.dark {
  color: #333;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 400;
  display: flex;
}

.tel {
  margin-bottom: 20px;
}

.contract-info-wrapper {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block {
  text-align: right;
  background-image: url('../images/watermark.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 99.9999%;
  margin-top: 40px;
  display: flex;
}

.div-block-2 {
  width: 80%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.social-link {
  color: var(--red);
  text-align: left;
  font-weight: 300;
  line-height: 1.5em;
}

.social-link.bold {
  margin-bottom: 5px;
  font-weight: 600;
}

.social-link.small {
  font-size: 12px;
}

.title-copy {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.team-block {
  background-color: var(--red);
  perspective: 1000px;
  cursor: pointer;
  border: 10px #fff;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  height: 350px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.info-div {
  transform-origin: 50% 0;
  width: 100%;
  color: var(--blue);
  cursor: s-resize;
  transform-style: preserve-3d;
  background-image: linear-gradient(188deg, #192a4000 40%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Isabel-Oliver.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: none;
}

.info-div._1 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 42%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Emtia-Perold.avif');
  background-position: 0 0, 50% 30%;
}

.info-div._2 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 49%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Heleen-Vlok.avif');
  background-position: 0 0, 50% 30%;
}

.info-div._3 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 49%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Rudi-Oliver.avif');
  background-size: auto, cover;
}

.info-div._4 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 70%, #192a40 100%, #334255f0 100%, #fff0), url('../images/Charmaine-van-Eeden.avif');
  background-position: 0 0, 50% 30%;
}

.info-div._5 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 48%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Isabel-Oliver_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.info-div._6 {
  border-bottom: 6px solid var(--red);
  background-image: linear-gradient(188deg, #192a4000 50%, #334255f0 100%, #fff0 100%, #192a40ad), url('../images/Elisma-Badenhorst.jpg');
  background-position: 0 0, 50% 20%;
}

.team-grid-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: stretch stretch;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  inset: 0%;
}

.title-name {
  color: var(--white);
  text-shadow: 2px 2px #00000042;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}

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

.text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-span-7, .text-span-8, .text-span-9, .text-span-10, .text-span-11, .text-span-12, .text-span-13, .text-span-14, .text-span-15, .text-span-16, .text-span-17, .text-span-18, .text-span-19 {
  font-weight: 600;
}

.heading-6 {
  color: var(--red);
}

.code-embed-4 {
  width: 100%;
  max-width: 100%;
  margin-top: 60px;
  margin-bottom: 100px;
}

@media screen and (min-width: 1280px) {
  .sg-nav, .sg-nav-container {
    width: 280px;
  }

  .sg-content {
    margin-left: 280px;
  }

  .divider-bottom {
    bottom: -1px;
  }

  .grid-2-col {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .team-bio {
    aspect-ratio: auto;
  }

  .grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .team-grid-wrapper {
    max-width: 90%;
  }
}

@media screen and (min-width: 1920px) {
  .hero-section.about, .hero-section.contact {
    max-width: none;
  }

  .team-wrapper {
    max-width: 1000px;
  }

  .container-3.teams {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-13-copy {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .team-grid-wrapper {
    max-width: 1000px;
  }
}

@media screen and (max-width: 991px) {
  .sg-nav {
    z-index: 10;
    background-color: #fafafa;
    border-right-style: none;
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .sg-nav-container {
    width: auto;
    height: auto;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .sg-content {
    border-left-style: none;
    width: 100%;
    margin-left: 0;
    position: static;
  }

  .button {
    position: relative;
  }

  .button.menu {
    margin-left: 0;
  }

  .sg-block {
    margin-bottom: 40px;
  }

  .sg-menu-button {
    margin-right: 12px;
    padding: 15px;
    top: -10px;
  }

  .sg-menu-button.w--open {
    color: #cb2b31;
    background-color: #d0e8ff;
    border-radius: 40px;
  }

  .column {
    width: 50%;
  }

  .sg-menu {
    z-index: 500;
    background-color: #fafafa;
    border-bottom: 1px solid #f8f8f8;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
    box-shadow: 0 3px 5px #0000000d;
  }

  .sg-menu-icon {
    font-size: 32px;
  }

  .logo {
    margin-top: 3px;
  }

  .nav-link {
    text-align: center;
  }

  .nav-menu {
    background-color: var(--white);
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .max {
    width: 100%;
  }

  .grid-2-col.special {
    grid-template-columns: 1fr;
  }

  .service-grid {
    place-items: center;
  }

  .service-block {
    width: 500px;
  }

  .icon-2 {
    color: var(--red);
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .rl-styleguide_item-row {
    grid-template-columns: auto 1fr;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .hide-tablet {
    display: none;
  }

  .padding-huge {
    padding: 5rem;
  }

  .rl-styleguide_scheme-list {
    grid-template-columns: 1fr;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-huge {
    margin: 5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-container {
    max-width: 650px;
  }

  .d-125-3d-wrapper {
    margin-bottom: 40px;
  }

  .team-wrapper {
    flex-flow: column;
    flex: 0 auto;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 0%;
    display: flex;
  }

  .tap.desktop {
    color: var(--red);
    margin-bottom: 0;
    display: block;
  }

  .container-3.teams {
    padding-bottom: 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-3-cols {
    grid-column-gap: 1rem;
  }

  .heading-text-horizontal {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .faq3_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .timeline1_content-right {
    padding-left: 20px;
  }

  .timeline1_item {
    grid-template-columns: 1fr 10rem 1fr;
  }

  .timeline1_content {
    grid-column-gap: 2.3rem;
    grid-row-gap: 2.3rem;
  }

  .grid-4-cols {
    grid-column-gap: 1rem;
  }

  .code-embed-3 {
    width: 100%;
  }

  .contact20_grid-list {
    grid-column-gap: 1rem;
  }

  .team-grid-wrapper {
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .spacer {
    height: 32px;
  }

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

  .sg-content {
    margin-left: 0;
  }

  .paragraph {
    font-size: 14px;
  }

  .ds-colour-block {
    width: 25%;
  }

  .sg-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column.desk-4 {
    width: 100%;
  }

  .sg-menu {
    background-color: #fff;
  }

  .heading-1 {
    font-size: 30px;
  }

  .heading-2 {
    font-size: 28px;
  }

  .heading-3.centre {
    font-size: 18px;
  }

  .image.bigger, .image-wrap-white.bigger {
    width: 100%;
  }

  .background-video {
    height: auto;
    min-height: 500px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-2-col.special {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .service-block {
    width: 100%;
  }

  .section-image {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    flex-flow: column;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-xsmall {
    margin-top: -.8rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .category-filter-menu {
    width: 100vw;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .margin-large {
    margin: 2rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .team-bio.isabel, .team-bio.jason, .team-bio.hannah, .team-bio.emtia, .team-bio.rudi, .team-bio.elisma, .team-title {
    text-align: left;
  }

  .d-125-3d-wrapper {
    margin-bottom: 40px;
  }

  .team-wrapper {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .scroll-button {
    padding-right: 20px;
  }

  .container-3 {
    text-align: center;
  }

  .container-3.teams {
    padding-bottom: 0;
  }

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

  .grid-3-cols {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .heading-text-horizontal {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    width: 600px;
    height: 600px;
  }

  .faq3_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq3_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq3_icon-wrapper {
    width: 1.75rem;
  }

  .timeline1_circle {
    margin-top: .75rem;
  }

  .timeline1_content-right {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .timeline1_item {
    grid-template-rows: auto auto;
    grid-template-columns: 4rem 1fr;
    margin-left: 3rem;
    padding-top: 0;
  }

  .timeline1_circle-wrapper {
    background-color: var(--white);
    width: 2rem;
    margin-left: 0;
  }

  .timeline1_row {
    padding-top: 20px;
  }

  .timeline1_progress {
    z-index: 0;
  }

  .timeline1_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .timeline1_content-left {
    z-index: 1;
    padding-right: 0;
    position: relative;
    top: 0;
  }

  .grid-4-cols {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .code-embed-3 {
    width: 100%;
  }

  .contact20_grid-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team-grid-wrapper {
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .color-block {
    margin-bottom: 20px;
  }

  .paragraph.card {
    font-size: 13px;
  }

  .button {
    font-size: 16px;
  }

  .sg-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sg-menu-button {
    margin-right: 4px;
  }

  .column {
    margin-bottom: 0;
  }

  .heading-1 {
    text-align: center;
    font-size: 24px;
  }

  .heading-3 {
    font-size: 20px;
    line-height: 1.2em;
  }

  .heading-4.card {
    font-size: 16px;
  }

  .image-wrap-blue.bigger {
    width: 300px;
  }

  .rich-text ul {
    padding-left: 0;
  }

  .background-video {
    object-fit: cover;
    object-position: 0% 50%;
    min-height: 400px;
  }

  .section {
    padding-top: 40px;
  }

  .service-block {
    height: 300px;
  }

  .service-image {
    object-fit: cover;
    height: 100%;
  }

  .highlight-text {
    font-size: 16px;
  }

  .section-image {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .header-container-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .team-bio {
    text-align: left;
    max-height: 240px;
  }

  .team-bio.isabel {
    font-size: 14px;
    line-height: 23px;
  }

  .team-bio.jason, .team-bio.hannah {
    max-height: 300px;
  }

  .team-bio.emtia {
    max-height: 300px;
    font-size: 14px;
  }

  .team-bio.rudi, .team-bio.elisma {
    max-height: 300px;
  }

  .intro-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .d-125-content-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-div {
    justify-content: flex-end;
    align-self: flex-start;
    align-items: flex-start;
    height: 330px;
    margin-top: 20px;
  }

  .team-title {
    align-self: flex-start;
    font-size: 26px;
  }

  .d-125-3d-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .team-wrapper {
    align-items: center;
    max-width: none;
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .tap {
    color: #ff7800;
    text-shadow: none;
  }

  .scroll-button {
    width: 40%;
    margin-top: 10px;
  }

  .team-qualification {
    align-self: flex-start;
    font-size: 14px;
  }

  .grid-3-cols, .heading-text-horizontal {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq3_content {
    grid-template-columns: 1fr;
  }

  .timeline1_content-right {
    grid-row-gap: 2rem;
  }

  .timeline1_item {
    grid-template-columns: 3rem 1fr;
    margin-left: 1rem;
    padding-right: 20px;
  }

  .timeline1_circle-wrapper {
    justify-content: center;
    align-items: flex-start;
    margin-left: -2.6rem;
  }

  .timeline1_row {
    grid-column-gap: 1rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .timeline1_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .grid-4-cols {
    grid-template-columns: 1fr;
  }

  .code-embed-3 {
    width: auto;
  }

  .team-block {
    width: 100%;
  }

  .info-div {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-grid-wrapper {
    max-width: none;
  }
}

#w-node-d0d0f543-3d4e-6098-6daf-a52c599cd814-8a994018 {
  place-self: center;
}

#w-node-fbca5617-7b2c-ef3e-a29b-dd7005f24c99-8a994018 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acdb-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acf3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acf4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acf8-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acf9-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acfd-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154acfe-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad02-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad03-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad07-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad08-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad0c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad0d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad17-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad18-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad1c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad1d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad21-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad22-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad26-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad27-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad2b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad2c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad30-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad31-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad3b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad3c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad40-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad41-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad45-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad46-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad4a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad4b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad54-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad55-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad5e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad5f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad71-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad72-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad76-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad77-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad7b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad7c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad80-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad81-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad85-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad86-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad90-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad91-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad95-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad96-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad9a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad9b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ad9f-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ada0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ada4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ada5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ada9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adaa-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adb5-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adb6-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adba-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adbb-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adbf-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adc0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adc4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adc5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adc9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adca-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adce-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adcf-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154add3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154add4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154add8-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154add9-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154addd-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adde-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ade2-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ade3-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ade7-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ade8-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adf3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adf4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adf8-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adf9-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adfd-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154adfe-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae05-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae06-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae38-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae4f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae50-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae51-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae53-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae56-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae57-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae58-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae5c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae5f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae60-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae61-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae65-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae69-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae6a-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae70-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae74-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae75-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae79-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae7c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae81-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae82-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae83-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae87-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae8a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae8b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae8c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae92-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae95-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154ae96-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae97-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154ae9d-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aea0-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aea1-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aea2-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aeaa-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aead-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aeae-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aeaf-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aebb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aebc-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aebd-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aec1-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aec6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aec7-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aec8-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aece-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aed3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aed4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aed5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aedb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aee0-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aee1-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aee2-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aeea-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aef0-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aef1-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aef7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aefd-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aefe-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aeff-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af05-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af0a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af0b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af0c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af14-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af19-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af1a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af1b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af23-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af28-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af29-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af2a-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af34-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af3a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af3b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af43-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af4c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af4d-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af4e-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af57-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af58-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af59-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af62-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af63-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af64-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154af7f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af80-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af85-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af86-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af8e-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af8f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af96-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154af97-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afa6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afa7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afa8-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afa9-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afab-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afae-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afb2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afb3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afb4-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afbd-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afbe-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afbf-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afc8-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afc9-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afca-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afcb-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afd1-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afd2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afd3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afd4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afd6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afda-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afdb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afdc-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afdd-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afdf-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154afe8-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154afef-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aff0-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aff1-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aff2-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154aff4-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154aff7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154affb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154affc-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154affd-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b006-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b007-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b008-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b011-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b012-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b013-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b014-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b01a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b01b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b01c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b01d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b01f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b023-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b024-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b025-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b026-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b028-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0c3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0c6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0c7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0ca-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0cb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0ce-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0cf-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0d3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0d6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0d7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0da-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0db-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0de-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0e3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b0e7-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0e8-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0ea-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0ec-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0ed-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0ef-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f1-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f2-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f6-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f7-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0f9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0fb-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0fc-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b0fe-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b100-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b101-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b103-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b105-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b107-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b109-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b10b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b10c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b10e-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b10f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b111-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b112-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b114-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b115-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b117-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b118-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b11a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b11b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b11d-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b11e-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b120-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b126-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b129-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b12a-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b12c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b12e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b12f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b131-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b133-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b134-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b136-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b138-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b139-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b13b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b13d-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b13e-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b140-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b142-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b143-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b145-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b147-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b148-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b14a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b14c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b14d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b14f-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b151-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b152-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b154-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b156-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b157-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b159-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b15b-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b15c-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b15e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b163-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b167-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b169-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b16c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b171-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b176-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b17b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b180-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b187-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b188-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b18a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b18b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b18d-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b18e-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b190-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b191-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b193-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b194-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b196-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b197-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b199-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b19a-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b19c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b19d-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b19f-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1a0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1a2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1a3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1a5-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1a6-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1a8-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1a9-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1ab-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ac-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ae-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1af-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1b1-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1b2-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1b4-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1b5-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1b7-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1b8-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ba-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1bb-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1bd-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1be-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1c0-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1c1-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1c3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1c4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1c6-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1c7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1c9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ca-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1cc-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1cd-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1cf-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1d0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1d2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1d3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1d5-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1d6-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1d8-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1d9-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1db-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1dc-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1de-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1df-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1e4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1e8-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ea-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b1ed-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1f2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1f7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b1fc-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b201-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b208-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b209-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b20b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b20c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b20e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b20f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b211-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b212-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b214-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b215-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b217-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b218-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b21a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b21b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b21d-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b21e-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b220-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b221-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b223-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b224-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b226-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b227-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b229-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b22a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b22c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b22d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b22f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b230-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b232-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b233-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b235-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b236-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b238-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b239-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b23b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b23c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b23e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b23f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b241-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b242-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b244-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b245-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b247-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b248-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b24a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b24b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b24d-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b24e-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b250-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b251-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b253-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b254-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b256-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b257-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b259-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b25a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b25c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b25d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b25f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b260-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b265-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b268-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b269-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b26b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b26c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b26e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b26f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b271-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b272-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b274-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b275-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b277-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b278-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b27a-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b27b-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b27d-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b27e-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b280-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b281-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b283-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b284-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b286-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b287-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b289-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b28a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b28c-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b28d-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b28f-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b290-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b292-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b293-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b295-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b296-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b298-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b299-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b29b-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b29c-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b29e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b29f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b2a1-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b2a2-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b2a4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b2a5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b2a7-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b2a8-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b39a-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b39e-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b39f-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3a3-c804e9f0, #w-node-f4952a91-4b55-8292-5e68-06fe8154b3a5-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3a6-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3aa-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ab-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3af-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3b0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3b4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3b5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3b9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ba-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3be-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3bf-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3c3-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3c4-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3c8-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3c9-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3cd-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ce-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3d2-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3d3-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3d6-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3d7-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3db-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3dc-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3e0-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3e1-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3e5-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3e6-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ea-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3eb-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ef-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3f0-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3f4-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3f5-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3f9-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3fa-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3fe-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b3ff-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b403-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b404-c804e9f0 {
  justify-self: start;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b408-c804e9f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f4952a91-4b55-8292-5e68-06fe8154b409-c804e9f0 {
  justify-self: start;
}

#w-node-_02fffc70-45f3-587a-0fc0-9841211e49de-8fa994a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02fffc70-45f3-587a-0fc0-9841211e49f0-8fa994a4, #w-node-_5f60df77-2ee3-719d-7ee9-cf1196f776db-d16e4b8b {
  align-self: start;
}

#w-node-_5f60df77-2ee3-719d-7ee9-cf1196f776e7-d16e4b8b, #w-node-_5f60df77-2ee3-719d-7ee9-cf1196f776f3-d16e4b8b {
  align-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_5f60df77-2ee3-719d-7ee9-cf1196f776f3-d16e4b8b {
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b2e8c3ac-facf-bcf2-a634-612ed0fc5d83-8fa994a4 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }
}


