@font-face {
  font-family: Casasol;
  src: url('../fonts/CasaSol-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dallas;
  src: url('../fonts/Dallas-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dallas;
  src: url('../fonts/Dallas-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dallas;
  src: url('../fonts/Dallas-OutlineThin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dallas;
  src: url('../fonts/Dallas-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dallas outlinethick;
  src: url('../fonts/Dallas-OutlineThick.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-smoke: #f5f4ef;
  --black: black;
  --white: white;
  --black-2: #000f08;
  --light-grey: #f4f4f4;
}

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

body {
  background-color: var(--white-smoke);
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  color: #1d1d1d;
  margin-bottom: 0;
  font-family: Ibarra Real Nova, sans-serif;
}

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

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

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

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

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

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

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

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

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.hide {
  display: none;
}

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

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

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

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

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

.text-size-small.text-weight-semibold.text-inline {
  display: inline;
}

.text-rich-text h1 {
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-family: Casasol, sans-serif;
  font-weight: 400;
}

.text-rich-text h2 {
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-family: Casasol, sans-serif;
  font-weight: 400;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: Barlow, sans-serif;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

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

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

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

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

.page-wrapper {
  background-image: url('../images/grained.png');
  background-position: 0 0;
  background-size: auto;
  position: relative;
}

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

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

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

.background-color-black {
  background-color: var(--black);
  color: #f5f5f5;
}

.rl-styleguide_classes {
  display: none;
}

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

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

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

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

.show-tablet {
  display: none;
}

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

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

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

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

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  z-index: 100;
  position: static;
}

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

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

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

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

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

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

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.padding-vertical.padding-xlarge.padding-hero {
  padding-top: 10rem;
}

.padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

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

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

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

.text-size-medium {
  color: var(--black-2);
  font-size: 1.125rem;
}

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

.form-checkbox-label {
  margin-bottom: 0;
}

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

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

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

.heading-xxlarge {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-xxlarge.display {
  color: var(--black-2);
  text-transform: uppercase;
  font-family: Dallas, sans-serif;
  font-size: 6rem;
  font-weight: 400;
}

.heading-xxlarge.display.text-color-white {
  color: var(--white);
}

.form-radio-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  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;
}

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

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-medium.display {
  text-transform: uppercase;
  font-family: Casasol, sans-serif;
  font-weight: 400;
}

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

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

.heading-large.display {
  text-transform: uppercase;
  font-family: Dallas, sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

.image-wrapper-3-2 {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 2px solid var(--black-2);
  background-color: var(--black);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  text-align: center;
  letter-spacing: .9px;
  mix-blend-mode: normal;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1.5rem;
  font-family: Ibarra Real Nova, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  position: relative;
}

.button:hover {
  background-color: #000f0833;
}

.button.is-alternate {
  background-color: var(--white);
  color: #000;
}

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

.button.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.button.button-color-white {
  border-color: var(--light-grey);
  color: var(--light-grey);
  background-color: #ffffff21;
  transition: all .35s;
}

.button.button-color-white:hover {
  background-color: #f4f4f44a;
}

.form-input {
  border: 1px solid var(--black);
  color: var(--black);
  background-color: #0000;
  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-color: #fff;
  background-image: none;
}

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

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

.form-checkbox-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  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;
}

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

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.button-secondary {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

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

.button-secondary.is-alternate {
  border-color: var(--white);
  color: var(--white);
}

.button-secondary.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

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

.heading-small.display {
  text-transform: uppercase;
  font-family: Casasol, sans-serif;
  font-weight: 400;
}

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

.form-field-wrapper {
  position: relative;
}

.image-wrapper_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-wrapper-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

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

.stylesystem-images_layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

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

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

.heading-xlarge.display {
  text-transform: uppercase;
  font-family: Dallas, sans-serif;
  font-size: 4rem;
  font-weight: 400;
}

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

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

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

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

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

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

.rl-styleguide-message-delete-this {
  text-align: center;
  background-color: #f1f0ee;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.rl-styleguide-message-wrapper {
  text-align: left;
  background-color: #e4e2df;
  border-radius: 16px;
  padding: 2.5rem;
}

.rl-styleguide-message-fixed {
  z-index: 99;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.form-radio-label {
  margin-bottom: 0;
}

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

.text-lineheight-normal {
  line-height: 1.5;
}

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

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

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

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.text-lineheight-xshort {
  line-height: 1.2;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.text-lineheight-xtall {
  line-height: 2;
}

.icon-medium {
  height: 3rem;
}

.text-lineheight-none {
  line-height: 1;
}

.rl-styleguide_class-label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  border-radius: 2px;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_class-label.html-tags {
  background-color: #be4aa5;
}

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

.text-letterspacing-wide {
  letter-spacing: .025em;
}

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

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

.styleguide_color-sample {
  padding: 8rem 1.5rem 1.25rem;
}

.styleguide_color-sample.is-lightgrey {
  background-color: #f4f4f4;
}

.styleguide_color-sample.is-black {
  background-color: #000;
}

.styleguide_color-sample.is-white {
  background-color: #fff;
}

.text-lineheight-short {
  line-height: 1.3;
}

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

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

.icon-large {
  height: 5rem;
}

.button-tertiary {
  background-color: var(--light-grey);
  color: var(--black);
  text-align: center;
  border: 1px solid #0000;
  padding: .75rem 1.5rem;
}

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

.button-tertiary.is-alternate {
  color: #fff;
  background-color: #464646;
  border-color: #464646;
}

.button-tertiary.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

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

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

.button-link {
  color: var(--black);
  background-color: #0000;
  align-items: center;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

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

.button-link.with-icon {
  grid-column-gap: .5rem;
}

.icon-xsmall {
  height: 1.5rem;
}

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

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

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

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

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

.icon-xxsmall {
  height: 1rem;
}

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

.text-lineheight-tall {
  line-height: 1.7;
}

.icon-small {
  height: 2rem;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

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

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  display: flex;
}

.rl-styleguide_shadow-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 8rem;
  padding: 1rem;
  display: flex;
}

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

.text-letterspacing-xtight {
  letter-spacing: -.03em;
}

.text-letterspacing-normal {
  letter-spacing: 0;
}

.text-letterspacing-xwide {
  letter-spacing: .05em;
}

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

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

.icon-xlarge {
  height: 6.5rem;
}

.text-letterspacing-tight {
  letter-spacing: -.015em;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

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

.rl-styleguide_extension {
  display: none;
}

.with-icon {
  grid-column-gap: .75rem;
  align-items: center;
  display: flex;
}

.body {
  background-color: #f5efe8;
}

.button_cover {
  z-index: 1;
  background-color: var(--black);
  mix-blend-mode: normal;
  height: 0%;
  position: absolute;
  inset: auto 0% 0%;
}

.button_text {
  z-index: 10;
  mix-blend-mode: normal;
  font-family: Dallas, sans-serif;
  font-weight: 400;
  position: relative;
}

.button_text.text-color-white {
  color: var(--light-grey);
}

.navbar_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.navbar_menu-button {
  padding: 0;
}

.dropdown-icon {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
}

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-navbar2-button {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar_dropdwn-toggle {
  padding: .5rem 2.5rem .5rem 1rem;
}

.navbar_dropdown-list.w--open {
  background-color: var(--white);
  border: 1px solid #000;
  padding: .5rem;
  position: absolute;
}

.navbar_component {
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #0000;
  align-items: center;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar_logo-link {
  padding-left: 0;
}

.navbar_menu {
  align-items: center;
}

.navbar2_dropdown-link {
  padding: .5rem 1rem;
}

.navbar2_dropdown-link.w--current {
  color: var(--black);
}

.navbar_link {
  color: var(--black-2);
  padding: .5rem 1rem;
  font-family: Barlow, sans-serif;
  transition: all .45s;
}

.navbar_link:hover {
  color: #ef8354;
}

.navbar_link.w--current {
  color: var(--black);
}

.navbar_menu-dropdown {
  font-family: Barlow, sans-serif;
}

.navbar2_button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

.header_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
}

.header_image-list-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  column-gap: 1.5rem;
  width: 100%;
  height: 100%;
  margin-top: -60%;
  display: grid;
}

.header_image {
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.button-row.is-button-row-center {
  justify-content: center;
}

.header_content-right {
  grid-column-gap: 1rem;
  align-items: center;
  height: 100vh;
  padding-right: 0;
  overflow: hidden;
}

.header_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.header_content-left {
  max-width: 50rem;
  margin-left: 0;
  margin-right: 5rem;
}

.header_images-layout {
  grid-column-gap: 1rem;
  width: 100%;
  display: flex;
}

.header76_image-list-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.header_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout89_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

.image {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
  height: 60vh;
}

.contact30_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contact30_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.contact30_tab-pane {
  height: 100%;
}

.contact30_tabs-link {
  background-color: #0000;
  border-left: 2px solid #0000;
  padding: 0 0 0 2rem;
  display: block;
}

.contact30_tabs-link.w--current {
  opacity: 1;
  background-color: #0000;
  border-left-color: #000;
}

.contact30_tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact30_image-wrapper {
  width: 100%;
  height: 100%;
}

.testimonial_content {
  border: 1px solid var(--black);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 25rem;
  min-width: 25rem;
  margin-right: 2rem;
  padding: 2rem;
  display: flex;
}

.testimonial21_rating-icon {
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.testimonial21_client-image-wrapper {
  margin-right: 1rem;
}

.testimonial21_rating-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial21_customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.testimonial21_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.section-testimonial21 {
  overflow: hidden;
}

.testimonial21_client {
  text-align: left;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.testimonial21_loop-trigger {
  display: flex;
}

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

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

.section-cta {
  position: relative;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.success-message {
  background-color: var(--light-grey);
  padding: 1.5rem;
}

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

.error-text {
  color: #e23939;
}

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

.contact1_component {
  flex-direction: column;
  align-items: stretch;
}

.faq_list {
  border-bottom: 1px solid #000;
}

.faq3_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faq3_icon {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
}

.faq3_question {
  cursor: pointer;
  border-top: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

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

.faq3_answer {
  overflow: hidden;
}

.footer_logo-link {
  margin-bottom: 2rem;
  padding-left: 0;
}

.footer_link {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.line-divider {
  background-color: var(--black);
  width: 100%;
  height: 1px;
}

.footer_top-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer_legal-link {
  font-size: .875rem;
}

.footer_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

.footer_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

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

.footer_bottom-wrapper {
  justify-content: space-between;
  display: flex;
}

.div-block {
  opacity: .33;
  filter: blur(20px);
  background-color: #596f62;
  border-radius: 50%;
  width: 100rem;
  height: 20rem;
  position: absolute;
  inset: auto 0% 0% auto;
}

.logo-text {
  text-transform: uppercase;
  font-family: Barlow, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.blogpost1_social-link {
  background-color: var(--light-grey);
  border-radius: 20px;
  padding: .25rem;
}

.blogpost1_author-wrapper {
  align-items: center;
  display: flex;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.blogpost1_author-image-wrapper {
  margin-right: 1rem;
}

.blogpost1_breadcrumb {
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
}

.blogpost1_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blogpost1_content {
  margin-bottom: 4rem;
}

.blogpost1_content-bottom {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.blogpost1_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  min-height: 3.5rem;
}

.blogpost1_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blogpost1_date-wrapper {
  margin-top: .25rem;
  display: flex;
}

.blogpost1_content-top {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.blogpost1_tag-item {
  background-color: var(--light-grey);
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blogpost1_tag-item.w--current {
  border-bottom: 2px solid #000;
}

.blogpost1_share-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.blogpost1_divider {
  background-color: var(--black);
  width: 100%;
  max-width: 48rem;
  height: 1px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.blogpost1_tag-list-wrapper {
  width: 50%;
}

.blogpost1_title-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blogpost1_image-wrapper {
  width: 100%;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.breadcrumb-link {
  color: var(--black);
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.blogpost1_share {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-items: start;
  margin-top: 1rem;
  display: grid;
}

.blogpost1_tag-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.blogpost1_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.blog34_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

.blog34_button-wrapper {
  margin-top: 1.5rem;
  display: flex;
}

.blog34_component {
  flex-direction: column;
  align-items: center;
}

.blog34_meta-wrapper {
  margin-bottom: 1rem;
}

.blog34_category-link {
  background-color: var(--light-grey);
  margin-right: 1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog34_category-link.w--current {
  border-bottom: 2px solid #000;
}

.blog34_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

.blog34_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog34_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog34_image-wrapper {
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.filter_tag-remove {
  opacity: .5;
  filter: invert();
  cursor: pointer;
  border-radius: 999rem;
  flex-direction: column;
  width: 1.5rem;
  margin-top: .4rem;
  margin-right: .5rem;
  padding: .25rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.filter_search-field {
  background-image: url('../images/search.svg');
  background-position: 2px;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  border: 1px #000;
  min-height: 4.4rem;
  margin-bottom: 0;
  padding: 1rem 1.5rem 1rem 4rem;
  font-size: 1rem;
}

._2-col-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
}

._2-col-grid.filter {
  position: relative;
}

.filter_block {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.filter_block.bottom-line {
  border-bottom: 2px solid #e1e1e1;
}

.filter_block.padding-top {
  padding-top: 1rem;
}

.filtered-by_wrapper {
  background-color: #fff;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  justify-content: flex-end;
  align-items: center;
  min-height: 4.5rem;
  padding: .5rem 1rem;
  display: flex;
}

.grid-item.position-sticky {
  position: relative;
}

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

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

.topics_collection-item {
  margin-bottom: 1.5rem;
}

.filter_tags-wrapper {
  flex-flow: wrap;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: start;
  align-items: center;
  margin-right: 1rem;
  display: flex;
}

.filter_tag {
  background-color: var(--black-2);
  color: #fff;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-right: .5rem;
  padding: .5rem 2.5rem .5rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  position: relative;
}

.filter_tags-text {
  color: #8f8f8f;
  margin-right: 1rem;
}

.filter_select-wrapper {
  background-color: #fff;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  position: sticky;
  top: 2rem;
}

.blog9_featured-image-link {
  width: 100%;
}

.blog9_heading-wrapper {
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
}

.blog9_featured-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.blog9_author-image-wrapper {
  margin-right: 1rem;
}

.blog9_featured-author-wrapper {
  align-items: center;
  margin-top: 1rem;
  display: flex;
}

.blog9_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

.blog9_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blog9_image-wrapper {
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blog9_featured-blog {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 5rem;
  display: grid;
}

.blog9_featured-image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.blog9_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

.blog9_title-link.main-post {
  margin-bottom: 1rem;
}

.blog9_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.blog9_category-link {
  margin-bottom: .5rem;
  margin-right: 1rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog9_category-link.w--current {
  border-bottom: 2px solid #000;
}

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

.blog9_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog9_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog9_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.blog9_date-wrapper {
  align-items: center;
  display: flex;
}

.blog9_author-wrapper {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.hero_image-loader {
  position: sticky;
  top: 0%;
}

.div-block-2 {
  position: static;
  top: 2px;
}

.test_400vh {
  height: 500vh;
  position: sticky;
  top: 5rem;
}

.test_400vh.clickable-off {
  height: 80vh;
}

.test_fixed-image {
  background-color: #fff;
  height: 100vh;
  position: absolute;
  inset: 0% 0% 1%;
}

.image-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 10px 10px 13px #0000007d;
}

.hero_image-overlay {
  background-color: #0e0f13;
  position: absolute;
  inset: 0%;
}

.header-100vh {
  align-items: center;
  min-height: 80vh;
  max-height: 60rem;
  display: flex;
}

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

.section_hero {
  z-index: 100;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: auto;
  display: block;
  position: relative;
}

.section_hero.bg-color-transparent {
  background-color: #0000;
}

.cta4_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(104deg, #000, #fff);
  position: absolute;
  inset: 0%;
}

.cta4_background-image-wrapper.is--hidden {
  display: none;
}

.image-overlay-layer {
  z-index: 1;
  mix-blend-mode: multiply;
  background-color: #f5f4ef;
  position: absolute;
  inset: 0%;
}

.button-3 {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: #fff;
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  border: 3px solid #eb1c24;
  padding: 1rem 2.5rem;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  position: relative;
}

.section-header-2 {
  position: relative;
}

.text-color-white-2 {
  color: #fff;
  font-weight: 700;
}

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

.button_overlay {
  background-color: #eb1c24;
  height: 0%;
  position: absolute;
  inset: auto 0% 0%;
}

.header5_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button-text {
  z-index: 1;
  color: #fff;
  letter-spacing: .9px;
  text-transform: uppercase;
  font-family: Barlow, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}

.cta4_background-image-wrapper-2 {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.section-header5 {
  position: relative;
}

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

.logo2_component {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.logo2_logo-list {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
}

.logo2_content-left {
  max-width: 20rem;
}

.logo2_logo {
  max-height: 3.5rem;
}

.layout46_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.layout46_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.layout46_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.section-layout46 {
  position: relative;
}

.layout78_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.team2_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.team2_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.team2_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.team2_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team2_image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.layout3_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.circle_1 {
  z-index: 1;
  opacity: .41;
  filter: blur(300px);
  background-color: #ef8354;
  border-radius: 50%;
  width: 50vw;
  height: 50vh;
  position: absolute;
  inset: 0% 0% auto auto;
}

.circle_2 {
  z-index: 1;
  background-color: var(--white);
  opacity: .41;
  filter: blur(300px);
  border-radius: 50%;
  width: 50vw;
  height: 50vh;
  position: absolute;
  inset: 3% auto auto 0%;
}

.circle_3 {
  z-index: 1;
  opacity: .41;
  filter: blur(300px);
  background-color: #fff;
  border-radius: 50%;
  width: 50vw;
  height: 50vh;
  position: absolute;
  inset: auto auto 0% 0%;
}

.navbar22_component {
  background-color: var(--white);
  border-bottom: 1px solid #000;
  align-items: center;
  width: 100vw;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar22_container {
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar22_logo-link {
  z-index: 3;
  padding-left: 0;
}

.navbar22_link-wrapper {
  z-index: 0;
  display: flex;
}

.navbar22_link {
  padding: .5rem 1rem;
}

.navbar22_link.w--current {
  color: var(--black);
}

.navbar22_dropdwn-toggle {
  padding: .5rem 2.5rem .5rem 1rem;
}

.navbar22_dropdown-list.w--open {
  border: 1px solid var(--black);
  background-color: var(--white);
  padding: .5rem;
  position: absolute;
}

.navbar22_wrapper {
  z-index: 2;
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar22_menu {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto;
}

.navbar22_menu-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 0rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: grid;
  position: relative;
}

.navbar22_menu-left {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 8rem;
  padding-left: 5vw;
  display: flex;
  position: relative;
}

.navbar22_menu-links-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.navbar22_link-large {
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.navbar22_link-large.w--current {
  color: var(--black);
}

.navbar22_menu-right {
  background-color: var(--light-grey);
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 8rem 5vw 8rem 2.5rem;
  display: flex;
  position: relative;
  overflow: auto;
}

.navbar22_contact-form {
  z-index: 1;
  width: 100%;
  max-width: 35rem;
  position: relative;
}

.navbar22_form-wrapper {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.navbar22_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar22_bottom {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: auto auto 3rem 5vw;
}

.navbar22_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  margin-top: 1.5rem;
  display: grid;
  position: relative;
}

.navbar22_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.navbar22_menu-button {
  z-index: 1;
  padding: 0;
}

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

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

.menu-icon4_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.menu-icon4_line-top {
  background-color: var(--black);
  width: 24px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0;
}

.menu-icon4_line-middle {
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.menu-icon_line-middle-base {
  background-color: #000;
  width: 24px;
  height: 2px;
  position: absolute;
}

.menu-icon4_line-bottom {
  background-color: var(--black);
  width: 24px;
  height: 2px;
}

.section_header30 {
  margin-top: 5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
}

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

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

.button-group.is-center {
  justify-content: center;
}

.header30_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header30_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

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

.div-block-3 {
  grid-column-gap: 2rem;
  display: flex;
}

.textarea {
  min-height: 10rem;
}

.button-wrapper {
  display: flex;
}

.loader {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-xxlarge {
    font-size: 3.25rem;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .heading-xlarge {
    font-size: 2.75rem;
  }

  .navbar_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .navbar_menu-button {
    padding: 0;
  }

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

  .menu-icon2_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .menu-icon2_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon2_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_dropdwn-toggle {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 2rem 1rem 0;
    display: flex;
  }

  .navbar_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar_menu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    overflow: auto;
  }

  .navbar2_dropdown-link {
    text-align: center;
    width: auto;
    padding: .75rem 0;
    font-size: 16px;
  }

  .menu-icon2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar_link {
    text-align: center;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .navbar_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

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

  .header_content-right {
    height: 40rem;
    padding-left: 0;
    padding-right: 0;
  }

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

  .header_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

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

  .contact30_component {
    grid-column-gap: 3rem;
  }

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

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

  .blogpost1_content {
    margin-bottom: 3rem;
  }

  .blogpost1_title-wrapper {
    margin-bottom: 4rem;
  }

  .blogpost1_image-wrapper {
    margin-bottom: 3rem;
    padding-top: 56.25%;
  }

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

  ._2-col-grid.filter {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: .4fr .6fr;
  }

  .filter_block {
    padding-left: 1rem;
  }

  .filter_block.padding-top {
    padding-left: 1.5rem;
  }

  .panel_grid-right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .filter_tags-wrapper {
    margin-top: .5rem;
  }

  .blog9_featured-blog {
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }

  .blog9_featured-list {
    grid-row-gap: 3.5rem;
  }

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

  .logo2_component {
    grid-column-gap: 3rem;
  }

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

  .logo2_content-left {
    max-width: 16rem;
  }

  .layout46_component, .layout78_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

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

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

  .navbar22_component {
    position: relative;
  }

  .navbar22_container {
    grid-auto-columns: 1fr;
  }

  .navbar22_link-wrapper {
    display: none;
  }

  .navbar22_link {
    text-align: center;
    padding: 1rem 0;
    font-size: 1.125rem;
  }

  .navbar22_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar22_dropdwn-toggle {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 2rem 1rem 0;
    display: flex;
  }

  .navbar22_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar22_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .navbar22_menu-wrapper {
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
  }

  .navbar22_menu-left {
    flex: 0 auto;
    width: 100%;
    padding-top: 4.5rem;
    padding-right: 5vw;
  }

  .navbar22_menu-links-wrapper {
    padding-top: 2rem;
  }

  .navbar22_link-large {
    font-size: 2.5rem;
  }

  .navbar22_menu-right {
    height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 5vw;
  }

  .navbar22_contact-form {
    max-width: none;
  }

  .navbar22_bottom {
    width: 100%;
    padding-bottom: 8rem;
    padding-left: 5vw;
    padding-right: 5vw;
    position: static;
  }

  .navbar22_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

  .menu-icon4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon4_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .menu-icon4_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon4_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .menu-icon_line-middle-base {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .menu-icon4_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .header1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .text-rich-text figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

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

  .show-mobile-landscape {
    display: block;
  }

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

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

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .heading-xxlarge {
    font-size: 2.5rem;
  }

  .heading-xxlarge.display.text-color-white {
    font-size: 4rem;
  }

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

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

  .heading-xsmall {
    font-size: 1.125rem;
  }

  .heading-small {
    font-size: 1.25rem;
  }

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

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .button-2.is-navbar2-button {
    padding: .25rem 1rem;
  }

  .navbar_component {
    min-height: 4rem;
  }

  .header_content-right {
    height: 30rem;
  }

  .header_images-layout {
    flex-direction: row;
  }

  .header_component {
    padding-top: 4rem;
  }

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

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

  .testimonial_content {
    padding: 1.5rem;
  }

  .testimonial21_client-image-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

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

  .section-testimonial21 {
    display: none;
  }

  .testimonial21_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

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

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

  .faq3_icon {
    width: 1.75rem;
  }

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

  .footer_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer_credit-text {
    margin-top: 2rem;
  }

  .footer_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .blogpost1_content {
    margin-bottom: 2rem;
  }

  .blogpost1_divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .blogpost1_title-wrapper {
    margin-bottom: 3rem;
  }

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

  ._2-col-grid.filter {
    grid-template-columns: 1fr;
  }

  .filter_tags-wrapper {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .blog9_heading-wrapper {
    margin-bottom: 1.5rem;
  }

  .blog9_image-wrapper {
    padding-top: 66%;
  }

  .blog9_featured-blog {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .blog9_featured-image-wrapper {
    height: 100%;
  }

  .blog9_featured-list {
    grid-row-gap: 2rem;
  }

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

  .header-100vh {
    min-height: 70vh;
  }

  .logo2_wrapper {
    padding: .75rem 1rem;
  }

  .logo2_component {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo2_logo-list {
    grid-column-gap: 1rem;
    padding-top: 1rem;
  }

  .logo2_content-left {
    max-width: none;
  }

  .logo2_logo {
    max-height: 3rem;
  }

  .layout46_component, .layout78_component {
    grid-template-columns: 1fr;
  }

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

  .team2_image-wrapper {
    height: 100%;
  }

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

  .navbar22_component {
    min-height: 4rem;
  }

  .navbar22_menu-wrapper {
    grid-row-gap: 3rem;
  }

  .navbar22_menu-links-wrapper {
    flex-direction: column;
    padding-top: 1rem;
  }

  .navbar22_link-large {
    font-size: 1.5rem;
  }

  .navbar22_menu-right {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

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

  .header1_component {
    grid-row-gap: 3rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

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

  .show-mobile-portrait {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .padding-vertical.padding-xhuge {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

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

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

  .text-size-medium.text-color-white {
    font-size: .9rem;
  }

  .heading-xxlarge.display.text-color-white {
    text-align: left;
    white-space: normal;
    font-size: 2.3rem;
  }

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

  .heading-xlarge.display {
    font-size: 2.8rem;
  }

  .header_component, .layout89_component, .contact30_component, .faq3_component {
    grid-template-columns: 1fr;
  }

  .blogpost1_author-wrapper {
    margin-bottom: 1rem;
  }

  .blogpost1_content-bottom, .blogpost1_content-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blogpost1_share-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .blogpost1_tag-list-wrapper {
    width: 100%;
  }

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

  .blog9_featured-item {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog9_featured-image-wrapper {
    padding-top: 66%;
  }

  .header-100vh {
    min-height: 50vh;
  }

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

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

  .layout46_component, .layout78_component, .team2_list {
    grid-template-columns: 1fr;
  }

  .team2_image-wrapper {
    padding-top: 66%;
  }

  .layout3_component, .navbar22_menu-links-wrapper {
    grid-template-columns: 1fr;
  }

  .button-group.is-center {
    justify-content: flex-start;
  }

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

#w-node-_2dbf514b-fa4a-50d2-a80d-a78d20926e68-634dc1d6 {
  align-self: center;
}

#w-node-_6e1f9f82-4079-6661-9f16-1d39865f72f8-634dc1d6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_16d10316-5304-c255-933b-f66d83da811b-634dc1d6, #w-node-ba47ea32-9d9c-4037-ecbf-afb56f59581b-6f595815, #w-node-_4f4bca06-caaa-4194-17d3-bef8fabc903a-fabc9035 {
  justify-self: center;
}

#w-node-_4f4bca06-caaa-4194-17d3-bef8fabc9041-fabc9035 {
  justify-self: end;
}

#w-node-_4f4bca06-caaa-4194-17d3-bef8fabc9073-fabc9035, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9313f-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93141-fd4dc1f1 {
  justify-self: center;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9315f-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93160-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93164-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93165-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93169-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316a-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316e-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9316f-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93173-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93174-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93178-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93179-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93180-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93181-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93185-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93186-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318a-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318b-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9318f-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93190-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b3798-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b3799-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b379d-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b379e-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37a2-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37a3-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37a7-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37a8-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37ac-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37ad-fd4dc1f1 {
  justify-self: start;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37b1-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e26d6b-6b8a-4e68-07ea-5879ab2b37b2-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a1-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a2-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a6-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931a7-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ab-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ac-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931b0-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931b1-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ba-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931bb-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931c4-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931c5-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d4-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d5-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931d9-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931da-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931de-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931df-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e3-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e4-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e8-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931e9-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f0-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f1-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f5-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931f6-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931fa-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931fb-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba931ff-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93200-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93204-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93205-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93209-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9320a-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93211-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93212-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93216-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93217-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9321b-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9321c-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93220-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93221-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93225-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93226-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9322d-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9322e-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93232-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93233-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93237-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93238-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9323c-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9323d-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93241-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93242-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93246-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93247-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9324e-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9324f-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93253-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93254-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93258-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93259-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9325d-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9325e-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93262-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93263-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93267-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93268-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9326c-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9326d-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93271-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93272-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93276-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93277-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9327e-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9327f-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93283-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93284-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93288-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93289-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93290-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93291-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932d5-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932f2-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932f7-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932f8-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932fc-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba932fd-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9330d-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93319-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93323-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93324-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93327-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93328-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332b-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332c-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9332f-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93330-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93333-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93334-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93337-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93338-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9333b-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9333c-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93346-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93347-fd4dc1f1 {
  justify-self: start;
}

#w-node-_1bfecdfa-cf23-d065-290b-2142ac7792f5-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334b-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334c-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9334d-fd4dc1f1 {
  justify-self: start;
}

#w-node-_090a24d3-14a5-dfa2-fa04-d4a813666889-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93353-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93354-fd4dc1f1 {
  justify-self: start;
}

#w-node-edb34d17-99cc-692f-0430-12adb3f5bcf1-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93358-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93359-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9335a-fd4dc1f1 {
  justify-self: start;
}

#w-node-abefda6a-e9c5-21af-36b5-0ac7a543e5f9-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93360-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93361-fd4dc1f1 {
  justify-self: start;
}

#w-node-be0b581d-0d4f-6a5c-e56f-c71f2b87dae5-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93365-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93366-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93367-fd4dc1f1 {
  justify-self: start;
}

#w-node-_5f2284be-d63b-a2ed-4224-841634bd2cda-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9336d-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9336e-fd4dc1f1 {
  justify-self: start;
}

#w-node-_53f59b45-9eeb-d810-f61d-0b7531040bb4-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93372-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93377-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93378-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93379-fd4dc1f1 {
  justify-self: start;
}

#w-node-_142b856c-06a3-e4dd-2692-9efc37b12276-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9337f-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93380-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93381-fd4dc1f1 {
  justify-self: start;
}

#w-node-_95d37fb2-d622-83b6-f731-4b18a22a7cb8-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93389-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9338a-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9338b-fd4dc1f1 {
  justify-self: start;
}

#w-node-_46e3cf61-264e-9a1d-cad2-b40d089568e3-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93391-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93392-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93393-fd4dc1f1 {
  justify-self: start;
}

#w-node-_920b5748-cb2c-4ec9-7808-1e23fedc9e74-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339b-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339c-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9339d-fd4dc1f1 {
  justify-self: start;
}

#w-node-e422508c-6977-80a1-fda1-ce3c73c6fd3a-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a3-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a4-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933a5-fd4dc1f1 {
  justify-self: start;
}

#w-node-_737c0550-399b-3c73-23ed-09d6878d2bfd-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ad-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ae-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933af-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4a51ac62-a1f9-d133-d82b-d1c317772463-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933b9-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ba-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933bb-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933bf-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c0-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c8-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933c9-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ca-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933d0-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933d9-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933da-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933df-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933e8-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933e9-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933f0-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933f9-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933fa-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba933ff-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93408-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93409-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93410-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93411-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93419-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9341a-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9341f-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342d-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342e-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9342f-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93430-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93432-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93435-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93439-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343a-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343b-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343c-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9343e-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93447-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93448-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93449-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9344a-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9344c-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93455-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93456-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93457-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93458-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9345a-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9345d-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93464-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93465-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93466-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93467-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93469-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9346c-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba9346d-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93473-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93474-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93475-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93476-fd4dc1f1, #w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba93478-fd4dc1f1 {
  justify-self: start;
}

#w-node-_4cedf050-e1e5-dc03-bd36-0cf51ba934de-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725cb-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725cc-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d0-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d1-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d5-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725d6-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725da-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725db-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725df-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e0-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e7-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725e8-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725ec-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725ed-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f1-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f2-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f6-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725f7-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725fb-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd5404725fc-fd4dc1f1 {
  justify-self: start;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd540472600-fd4dc1f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9590ffdb-a06a-0e24-54f9-5fd540472601-fd4dc1f1 {
  justify-self: start;
}

#w-node-_2a6740b2-9b61-38ae-6a6e-ace4c9df7f63-fd4dc1f1, #w-node-_2669e740-54bd-f4e3-4f8d-3d94df62d50d-fd4dc1f1, #w-node-_17e5434e-e737-a59f-05c4-a327fe5e482a-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472616-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472617-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261a-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261b-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261e-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047261f-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472622-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472623-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472626-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd540472627-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262a-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262b-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262e-fd4dc1f1, #w-node-_9590ffdb-a06a-0e24-54f9-5fd54047262f-fd4dc1f1, #w-node-_1921fcc9-19d2-8329-c9fc-23311f30323e-4c12b4ea, #w-node-_1921fcc9-19d2-8329-c9fc-23311f30325f-4c12b4ea, #w-node-_1921fcc9-19d2-8329-c9fc-23311f303261-4c12b4ea, #w-node-_1921fcc9-19d2-8329-c9fc-23311f303269-4c12b4ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6d9c7a-e8d6-b2c0-2462-baf26ca29431-9873d45e, #w-node-_1a6d9c7a-e8d6-b2c0-2462-baf26ca29439-9873d45e {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-ba47ea32-9d9c-4037-ecbf-afb56f59581b-6f595815 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ba47ea32-9d9c-4037-ecbf-afb56f59581b-6f595815 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Casasol';
  src: url('../fonts/CasaSol-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dallas';
  src: url('../fonts/Dallas-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dallas';
  src: url('../fonts/Dallas-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dallas';
  src: url('../fonts/Dallas-OutlineThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dallas';
  src: url('../fonts/Dallas-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dallas outlinethick';
  src: url('../fonts/Dallas-OutlineThick.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}