@font-face {
  font-family: Unbounded;
  src: url('../fonts/Syne-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope variablefont wght;
  src: url('../fonts/Manrope-VariableFont_wght.ttf') format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --light-grey: #f4f4f4;
  --black--800: #333;
  --gray-100: #f3f3f3;
  --white: white;
  --black--700: #4d4d4d;
  --black-900: #1a1a1a;
  --black--600: #6e6e6e;
  --yellow-200: #c5b89f;
  --transparent: transparent;
}

.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-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--light-grey);
  color: #000;
  font-family: Manrope variablefont wght, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  color: var(--black--800);
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-family: Unbounded, sans-serif;
  font-size: 3.0625rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

h3 {
  color: var(--black--800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 2.4375rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  color: var(--black--800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope variablefont wght, sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  color: var(--black--800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: .5rem;
}

a {
  color: #000;
  border-color: #000;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  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 #000;
  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;
}

.overflow-hidden {
  overflow: hidden;
}

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

.hide {
  display: none;
}

.page-wrapper {
  z-index: 5;
  background-color: var(--gray-100);
  opacity: 1;
  padding: 0 0 0;
  display: block;
  position: static;
}

.page-wrapper.is-styleguide {
  background-color: var(--white);
}

.container-large {
  justify-content: space-between;
  align-self: auto;
  align-items: center;
  width: 100%;
  max-width: 88rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container-large.styleguide {
  flex-direction: column;
}

.container-large.is-flex {
  align-self: flex-end;
  height: 10em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
}

.rl-styleguide_classes {
  flex: 0 auto;
}

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

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 75vh;
  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 {
  background-color: var(--gray-100);
}

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

.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-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-xhuge {
  width: 100%;
  padding: 7.5rem 0 0;
}

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

.padding-top.padding-large {
  width: 100%;
  padding: 0;
}

.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-top.padding-medium.has-top-border {
  border-top: 1px solid #0000001a;
}

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

.padding-bottom.padding-small {
  background-color: #0000;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxhuge {
  padding: 0 0 7.5rem;
}

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

.padding-bottom.padding-xhuge {
  padding: 0 0 7.5rem;
}

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

.hero_heading-wrapper {
  border-bottom: .5px #00000026;
  flex: 1;
  max-width: none;
  padding: 6.5rem 0;
}

.hero_heading-wrapper.padding-0,
.hero_heading-wrapper.padding-xxhuge,
.hero_heading-wrapper.padding-large,
.hero_heading-wrapper.padding-custom3,
.hero_heading-wrapper.padding-medium,
.hero_heading-wrapper.padding-tiny,
.hero_heading-wrapper.padding-xxlarge,
.hero_heading-wrapper.padding-custom1,
.hero_heading-wrapper.padding-xsmall {
  padding-left: 0;
  padding-right: 0;
}

.hero_heading-wrapper.padding-xhuge {
  padding: 7.5rem 0;
}

.hero_heading-wrapper.padding-xlarge,
.hero_heading-wrapper.padding-custom2,
.hero_heading-wrapper.padding-xxsmall,
.hero_heading-wrapper.padding-huge,
.hero_heading-wrapper.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.hero_heading-wrapper.padding-xxlarge {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
}

.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-weight-medium {
  font-weight: 500;
}

.text-navbar {
  z-index: 10;
  color: var(--black--700);
  white-space: break-spaces;
  margin-bottom: 0;
  padding: 2px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
  position: relative;
}

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

.styleguide_heading {
  z-index: 4;
  color: var(--black-900);
  background-color: #0000;
  border-bottom: 1px solid #33333326;
  padding: 1rem .5rem;
  font-family: Manrope variablefont wght, sans-serif;
  font-size: 2rem;
  position: sticky;
  top: 0;
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2rem;
  display: flex;
}

.heading-style-h6 {
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

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

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

.heading-style-h1 {
  color: var(--black-900);
  font-family: Unbounded, sans-serif;
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
}

.text-size-tiny {
  color: var(--black--700);
  font-size: .75rem;
  line-height: 1.65;
}

.button {
  z-index: 10;
  grid-column-gap: .5rem;
  grid-row-gap: 16px;
  border: 1px solid var(--black--600);
  opacity: 1;
  color: var(--black--600);
  text-align: center;
  background-color: #0000;
  border-radius: 100vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 1rem;
  text-decoration: none;
  transition: background-color .4s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  border-style: solid;
  border-color: var(--black--600);
  background-color: var(--yellow-200);
  color: var(--black--600);
}

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

.button.is-top-aligned {
  justify-content: flex-start;
  align-self: flex-end;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  transition-timing-function: ease-in-out;
  position: relative;
  overflow: hidden;
}

.button.is-top-aligned:hover {
  background-color: var(--yellow-200);
}

.button.is-category {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

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

.heading-style-h4 {
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

.styleguide_label {
  color: var(--black--800);
  white-space: nowrap;
  cursor: none;
  background-color: #0000;
  padding: .25rem .5rem;
  font-size: 1rem;
  display: inline-block;
}

.styleguide_label.is-html-tag {
  color: #0c0c0c;
  background-color: #be4aa500;
  font-size: 1rem;
  font-weight: 500;
}

.styleguide_label.is-white {
  font-size: .9rem;
}

.styleguide_label.is-black {
  color: var(--black-900);
  white-space: break-spaces;
  font-size: .9rem;
}

.text-size-regular--allcaps {
  color: var(--black--600);
  text-transform: uppercase;
  white-space: break-spaces;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.text-size-regular--allcaps.is-right-aligned {
  text-align: right;
}

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

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

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

.form-input {
  background-color: var(--white);
  color: #000;
  border: 1px solid #000;
  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;
}

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

.styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: 2rem;
  padding-bottom: 4rem;
  display: flex;
}

.styleguide_color {
  background-color: var(--yellow-200);
  color: var(--black--600);
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  padding: 1rem;
  display: flex;
}

.styleguide_color.is-black-900 {
  color: var(--black--800);
  background-color: #000;
  flex-direction: column;
  width: 10rem;
  min-width: 10rem;
  height: 10rem;
  padding: 16px;
  display: flex;
}

.styleguide_color.is-gray-100 {
  background-color: var(--gray-100);
}

.styleguide_color.is-black-800 {
  background-color: var(--black--800);
  color: var(--white);
  flex-direction: column;
  padding-bottom: 0;
  display: flex;
}

.styleguide_color.is-black-700 {
  background-color: var(--black--700);
}

.styleguide_color.is-black-600 {
  background-color: var(--black--600);
}

.styleguide_color.is-white {
  flex-direction: column;
  display: flex;
}

.styleguide_color.is-yellow-200 {
  background-color: var(--yellow-200);
}

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

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

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

.styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #0000;
  border-bottom: 1px solid #1a1a1a26;
  margin-bottom: 1rem;
  padding: 1rem .5rem;
  font-size: 2rem;
  position: sticky;
  top: 2rem;
}

.text-size-small {
  color: var(--black--700);
  font-size: .9rem;
  line-height: 1.65;
}

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

.text-size-large {
  color: var(--black--700);
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  font-family: Manrope variablefont wght, sans-serif;
  font-size: 1.5rem;
}

.text-size-large.is-hero {
  color: var(--black--600);
  flex: none;
  max-width: 65%;
  height: auto;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.styleguide_spacing-all {
  display: none;
}

.padding-section-small {
  border-bottom: 1px #000;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.styleguide_empty-box {
  z-index: auto;
  opacity: 1;
  background-color: #6e6e6e40;
  border: 1px dashed #000;
  width: 100%;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.styleguide_empty-box.pointer-events-off {
  background-color: #6e6e6e40;
}

.styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  border: 1px none var(--black--600);
  align-self: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 26px;
  padding-bottom: 110px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.padding-section-medium {
  flex: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-large {
  flex: 1;
  padding-top: 3.8rem;
  padding-bottom: 0;
  position: relative;
}

.body {
  background-color: var(--white);
  font-family: Manrope variablefont wght, sans-serif;
}

.nav_menu {
  align-items: center;
  display: flex;
  position: static;
}

.nav_menu.is-page-height-tablet {
  grid-column-gap: 2rem;
}

.navbar_hamburger-button {
  padding: 0;
}

.navbar {
  background-color: var(--gray-100);
  border: 1px #000;
  border-bottom: 1px solid #1a1a1a1f;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 1.5rem 5%;
  display: flex;
}

.nav_logo-link {
  align-self: center;
  padding-left: 0;
  line-height: 1;
}

.nav-link {
  text-align: center;
  object-fit: cover;
  background-color: #0000;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: visible;
}

.nav-link:hover {
  background-color: #0000;
  font-family: Manrope variablefont wght, sans-serif;
  font-weight: 500;
}

.nav-link.w--current {
  color: #000;
}

.nav-link.hide-on-desktop {
  display: none;
}

.footer {
  z-index: 0;
  background-color: #0000;
  border-top: 1px solid #0000000d;
  width: 100%;
  position: relative;
  bottom: 0;
}

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

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

.footer_top-wrapper {
  grid-column-gap: 0vw;
  grid-row-gap: 0px;
  border-top: 1px #0003;
  grid-template-rows: minmax(max-content, 1fr);
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  display: grid;
}

.footer_bottom-wrapper {
  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;
  place-content: center;
  align-items: baseline;
  display: grid;
}

.footer-link {
  color: var(--black--700);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.footer-link:hover {
  color: var(--black--800);
  font-weight: 400;
}

.footer_link-list {
  grid-column-gap: 1rem;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.footer_link-list.is-left {
  justify-content: flex-start;
  margin-right: 0;
}

.footer_link-list.is-right {
  margin-left: 0;
}

.footer_text-get-in-touch {
  color: var(--black--800);
  font-family: Unbounded, sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.footer_huge-logo-wrapper {
  margin-top: 5.5rem;
  margin-bottom: 4rem;
}

.section_hero {
  position: relative;
}

.hero_heading-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  white-space: break-spaces;
  flex-flow: column;
  justify-content: space-between;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding: 0;
  display: flex;
}

.line-horizontal {
  transform-origin: 0%;
  white-space: break-spaces;
  background-color: #1a1a1a40;
  border: 1px #000;
  flex-shrink: 0;
  align-self: center;
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  position: absolute;
  inset: auto 0% -1px;
}

.line-horizontal.is-nav-menu {
  display: none;
}

.heading-1 {
  color: var(--black-900);
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: break-spaces;
  width: 100%;
  max-width: 100%;
  margin-top: 3.5rem;
  margin-bottom: 4.9rem;
  padding-top: 0;
  font-family: Unbounded, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.heading-1.is-about {
  max-width: 88%;
  line-height: 1;
}

.project_full-width-image-wrapper {
  flex: 1;
  max-height: 85vh;
  overflow: hidden;
}

.image_full-width {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  overflow: visible;
}

.project-wrapper {
  grid-row-gap: 0rem;
  flex-flow: column wrap;
  height: auto;
  margin-top: -16px;
  display: flex;
  position: relative;
  overflow: visible;
}

.section_testimonials {
  background-color: #0000;
}

.projects_list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.section_projects {
  object-fit: fill;
  height: auto;
  margin-top: -130px;
}

.categories-filter_wrapper {
  grid-column-gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.featured-work_content-wrapper.is-full-width {
  width: 100%;
  line-height: 1;
}

.featured-work_content-wrapper.is-two-projects {
  grid-column-gap: 2rem;
  justify-content: space-between;
  display: flex;
}

.project_description-wrapper {
  z-index: 1005;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #0000;
  -webkit-text-stroke-color: transparent;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.project_description-wrapper.is-landingpage {
  align-items: flex-start;
}

.featured-work_wide-display {
  width: 66.666%;
}

.featured-work_small-display {
  width: 33.3333%;
  height: auto;
  font-weight: 400;
}

.featured-works-wrapper {
  grid-row-gap: 6rem;
  flex-direction: column;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.about_grid-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  white-space: break-spaces;
  background-image: none;
  border-radius: 0;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  padding: 0;
  display: grid;
}

.image_about {
  white-space: break-spaces;
  object-fit: cover;
  object-position: 50% 0%;
  flex: 0 auto;
  align-self: flex-start;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  min-height: 0;
  padding: 0% 0 0;
  display: block;
  position: static;
  inset: 0%;
}

.image_about.wide {
  object-fit: cover;
  object-position: 50% 50%;
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  height: 100%;
  max-height: none;
  margin-bottom: .25rem;
  display: inline-block;
  position: static;
}

.image_about.small {
  object-position: 50% 100%;
}

.image-wrapper {
  flex: 1;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: 45vh;
  overflow: visible;
}

.image-wrapper.hide-on-mobile {
  align-self: auto;
  max-width: none;
  height: 45vh;
}

.text-size-medium {
  color: var(--black--700);
  white-space: break-spaces;
  flex-flow: column wrap;
  flex: 0 auto;
  align-self: auto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  display: block;
}

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

.featured-work_image-wrapper {
  width: 100%;
  height: auto;
  padding-top: 0%;
  position: relative;
}

.featured-work_image-wrapper.is-full-width {
  perspective: 2000px;
  width: 100%;
  height: 40rem;
  position: static;
  overflow: hidden;
  transform: perspective(2000px);
}

.featured-work_image-wrapper.is-rectangle {
  height: auto;
  padding-top: 100%;
  position: relative;
}

.featured-work_image-wrapper.is-wide {
  height: 36rem;
}

.link-wrapper {
  z-index: auto;
  grid-row-gap: .25rem;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  position: relative;
}

.btn_back-to-top {
  z-index: 10;
  border: 1px solid var(--black--600);
  color: var(--white);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  margin-right: 0%;
  transition: background-color .6s ease-in-out;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.btn_back-to-top:hover {
  border-style: solid;
  border-color: var(--black--600);
  background-color: var(--yellow-200);
  color: var(--white);
}

.arrow {
  color: var(--black--600);
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow.is-rotated {
  align-self: center;
  align-items: center;
  transform: rotate(45deg);
}

.image_featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: none;
  position: relative;
  inset: 0%;
}

.image_featured.is-rectangle {
  display: block;
  position: absolute;
}

.featured-work_item {
  grid-row-gap: 1rem;
  opacity: 1;
  cursor: none;
  flex-direction: column;
  display: block;
  position: relative;
}

.nav_container {
  justify-content: space-between;
  width: 100%;
  max-width: 88rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-heading-wrapper {
  color: var(--black--800);
  border: 1px #000;
  border-top-color: #0000001a;
  max-width: 40%;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: block;
}

.services_content-right {
  flex: 1;
  max-width: none;
  margin-bottom: 0;
}

.experience-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px #0003;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  display: grid;
  position: relative;
}

.experience-item.first-child {
  border-bottom-color: #0000001a;
  padding-right: 2rem;
  position: relative;
}

.cursor-wrapper {
  z-index: 888;
  opacity: 0;
  color: #0000;
  -webkit-text-stroke-color: transparent;
  cursor: none;
  background-color: #0000;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.custom-cursor {
  z-index: 999;
  background-color: var(--yellow-200);
  opacity: 1;
  color: var(--yellow-200);
  -webkit-text-stroke-color: #f9f87100;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 7em;
  height: 7rem;
  display: flex;
  position: relative;
}

.section_services {
  position: relative;
}

.services_content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  flex: 1;
  align-items: center;
  display: flex;
}

.services_item {
  border-bottom: 1px solid #1a1a1a1a;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.text-size-regular {
  grid-row-gap: .5rem;
  color: #4d4d4d;
  white-space: break-spaces;
  flex-direction: column;
  margin-top: 0;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  display: flex;
  position: relative;
}

.text-size-regular.is-light {
  grid-row-gap: 0rem;
  color: var(--black--600);
  font-weight: 300;
}

.text-size-regular.is-testimonial {
  color: var(--black--600);
  justify-content: flex-start;
  align-self: flex-end;
}

.text-size-regular.is-weight-medium {
  color: var(--black--700);
  flex-flow: wrap;
  font-weight: 500;
  display: block;
}

.text-size-regular.is-allcaps {
  text-transform: uppercase;
  margin-bottom: 0;
}

.featured-work_text-left {
  grid-row-gap: .15rem;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.featured-work-link {
  grid-row-gap: .5rem;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.project-link {
  grid-row-gap: 1rem;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.projects_image-wrapper {
  width: 100%;
  height: 26rem;
  margin-bottom: 0;
}

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

.text-style-h3 {
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 2.06rem;
  font-weight: 500;
  line-height: .9;
}

.project_item {
  grid-column-gap: 16px;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.category-text_wrapper {
  z-index: auto;
  color: var(--black--600);
  cursor: none;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: static;
}

.about_text-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-self: flex-start;
  max-width: none;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.trigger {
  position: absolute;
  inset: 0% 0% auto auto;
}

.embed-cursor {
  background-color: var(--yellow-200);
  display: none;
}

.testimonials_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  height: 40vh;
  display: flex;
}

.testimonial_item {
  background-color: var(--white);
  border: .5px #1a1a1a0f;
  flex: 1;
  align-self: stretch;
  min-width: 14rem;
  margin: 0 -1px;
  transition: all .6s ease-in-out;
}

.testimonial_item:hover {
  background-color: #fff;
  border-style: none;
  border-color: #1a1a1a1a;
  flex: 1;
  align-self: auto;
}

.testimonial-content {
  grid-column-gap: 16px;
  grid-row-gap: 1.5rem;
  background-color: #fff;
  border: 1px #000;
  grid-template-rows: max-content 1fr;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1.5rem;
  display: grid;
}

.testimonial-content:hover {
  background-color: #0000;
}

.client-img {
  width: 5rem;
  height: 5rem;
  position: static;
}

.flex-item-line {
  transform-origin: 0%;
  background-color: #6e6e6e99;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% -1px;
}

.testimonial_client-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: .25rem;
  flex-flow: row;
  flex: 0 auto;
  align-content: flex-start;
  align-self: auto;
  align-items: flex-start;
  display: flex;
}

.test-size-tiny {
  color: var(--black-900);
  flex: none;
  font-size: .9rem;
}

.test-size-tiny.is-bold {
  color: var(--black--600);
  flex: none;
  font-weight: 600;
}

.test-size-tiny.is-white {
  color: var(--black--600);
}

.links-wrapper {
  background-color: #0000;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 5%;
  display: flex;
  position: static;
}

.project_images-wrapper {
  flex: 0 auto;
  margin-top: -200px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.project_image-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: grid;
  position: relative;
}

.project_image {
  object-fit: cover;
  flex: none;
  align-self: center;
  width: 100%;
  height: 26rem;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.project_details-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  background-color: var(--transparent);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  padding-top: 2rem;
  font-weight: 400;
  display: block;
  position: relative;
}

.project_detail {
  grid-column-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.line {
  background-color: #33333326;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  inset: auto auto 0% 0%;
}

.line.project-details {
  align-self: flex-start;
  display: none;
  position: static;
}

.project_text-wrapper {
  grid-row-gap: 2rem;
  border-top: 1px #00000026;
  flex-direction: column;
  margin-left: 0;
  margin-right: 92px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-right: 0;
  display: flex;
}

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

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

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

.project-deco-line {
  background-color: #1a1a1a1a;
  width: 100%;
  height: 1px;
}

.logo_image {
  line-height: 1;
}

.instructions_rich-text {
  flex-direction: column;
  margin-bottom: 2rem;
  display: flex;
}

.instructions_rich-text h2 {
  margin-bottom: 1rem;
}

.instructions_rich-text img {
  margin-right: 0;
}

.instructions_rich-text figure {
  margin-left: auto;
}

.rich-text_project-details {
  text-align: left;
  width: 100%;
  margin-top: -1px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
  text-decoration: none;
  position: static;
}

.rich-text_project-details h2 {
  margin-bottom: .5rem;
  font-size: 1.65rem;
}

.rich-text_project-details p {
  color: var(--black--700);
  max-width: 80%;
  margin-bottom: .5rem;
  line-height: 1.65;
}

.rich-text_project-details.hide {
  display: none;
}

.deco-line {
  background-color: #1a1a1a1a;
  width: 100%;
  height: 1px;
}

.project_basic-details-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  max-width: 40%;
  margin-top: 35px;
  display: flex;
}

.category-button_item {
  display: flex;
}

.category-button_item:last-child {
  color: #0000;
  display: flex;
}

.link-block {
  flex: 1;
  text-decoration: none;
}

.category-buttons_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.category_list {
  grid-column-gap: .5rem;
  align-items: baseline;
  display: flex;
}

.category-buttons_wrapper {
  flex: none;
}

.category_item {
  grid-column-gap: 0rem;
  align-items: baseline;
  display: flex;
}

.category_item:last-child {
  color: #0000;
}

.footer_admin-link {
  color: var(--black--700);
  font-size: 1rem;
}

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

.current-button-embed {
  position: absolute;
  inset: auto auto 0% 0%;
}

.cursor-text {
  z-index: 9999;
  color: var(--black-900);
  text-align: center;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 400;
  position: relative;
  inset: 0%;
}

.heading-7 {
  text-align: left;
  width: 650px;
  padding-left: 0;
  padding-right: 0;
  font-family: Unbounded, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.heading-8 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 0;
  margin-left: -71px;
  padding-top: 250px;
  padding-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 7rem;
  display: block;
}

.image {
  margin-top: 95px;
  margin-left: 20px;
  margin-right: 0;
  padding-left: 0;
}

.paragraph {
  margin-top: 32px;
  margin-left: -65px;
  padding-right: 170px;
}

.body-2 {
  margin-bottom: 0;
  padding-top: 0;
}

.heading-9 {
  margin-left: 200px;
  padding-top: 83px;
  font-family: Unbounded, sans-serif;
  font-size: 4rem;
}

.paragraph-2 {
  margin-top: 32px;
  margin-left: 200px;
}

.image-2 {
  margin-left: 80px;
}

.cell {
  padding-top: 0;
}

.section {
  padding-bottom: 118px;
}

.link-underline {
  background-color: #d0c8b6;
  width: 100%;
  height: 1.5px;
  margin-top: .25rem;
  transform: translate(-102%);
}

.section-nav {
  z-index: 1000;
  filter: invert();
  position: absolute;
  inset: 0% 0% auto;
}

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

.menu-button {
  filter: invert();
  mix-blend-mode: difference;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-right: 0;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.menu_component {
  z-index: -5;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border: 1px #0000000d;
  border-style: none solid;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 1px #0000000d;
}

.text-block-2 {
  -webkit-text-stroke-color: #d0c8b6;
}

.menu-wrapper {
  background-color: #fff;
  align-items: flex-start;
  width: 55rem;
  height: 100%;
  padding: 10rem 10rem 5rem 5rem;
  display: flex;
}

.menu-nav-link {
  color: #000;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5px;
  font-size: 3rem;
  line-height: 1;
  overflow: hidden;
}

.logo {
  filter: invert();
  mix-blend-mode: normal;
  width: 80%;
  height: 1rem;
}

.logo.home {
  filter: invert();
  width: auto;
}

.menu-social-link {
  color: #d0c8b6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5px;
  line-height: 1;
  overflow: hidden;
}

.page-padding {
  text-align: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.menu-bg-blur {
  z-index: -19;
  -webkit-backdrop-filter: brightness(70%) grayscale();
  backdrop-filter: brightness(70%) grayscale();
  background-color: #f3f3f380;
  width: 100%;
  height: 100%;
  position: absolute;
}

.menu-nav-heading {
  opacity: .3;
  color: #000;
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: .8rem;
  font-weight: 500;
}

.navbar_component {
  z-index: 4;
  border: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 1em;
  display: flex;
  position: relative;
}

.menu-icon-2 {
  mix-blend-mode: exclusion;
  width: 2.8rem;
  height: 2.5rem;
}

.text-block-3 {
  color: #d0c8b6;
}

.wrapper-2 {
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.wrapper-2.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.button-overflow {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 1.75rem;
  padding-right: 1.2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.subtitle-wrapper {
  margin-bottom: 18px;
  overflow: hidden;
}

.text-style-xmuted {
  color: #0003;
}

.text-style-xmuted.text-span {
  color: #ffffff47;
  display: inline-block;
}

.splide__list {
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.splide-2 {
  width: 100%;
  height: 65%;
}

.splide-2.slider1 {
  height: 48rem;
  max-height: 44rem;
  padding-left: 4rem;
  padding-right: 4rem;
  overflow: hidden;
}

.clip {
  position: relative;
  overflow: hidden;
}

.italic {
  font-style: normal;
  font-weight: 600;
}

.clip-2 {
  position: relative;
  overflow: hidden;
}

.feature-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-3 {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #2e313a;
  border-top-color: #2e2e2e;
  border-radius: 100rem;
  padding: .75rem 1.05rem .75rem 1.15rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.slide-content {
  grid-row-gap: .4rem;
  flex-direction: column;
  width: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
}

.mnml-faded-wrapper {
  width: 50%;
  height: 100%;
}

.portfolio-cms-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-about {
  background-color: #fcfcfc;
  border-radius: 20px;
  margin-top: 5rem;
}

.large-heading {
  letter-spacing: .3em;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.15em;
}

.large-heading.one,
.large-heading.two {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}

.section-choose {
  border-radius: 20px;
}

.heading-medium {
  font-size: 2rem;
  line-height: 1.2;
}

.heading-medium.text-color-white {
  color: var(--white);
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.section-3 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.section-3.clip {
  background-color: #fff;
}

.testimonial-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 48px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.testimonial-column.testimonial-name {
  grid-auto-rows: minmax(100px, 1fr);
}

.btn-whipe {
  mix-blend-mode: difference;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.slider-dots {
  display: none;
}

.image-3 {
  height: 20px;
}

.feature-card-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.section-nav-2 {
  z-index: 1000;
  position: absolute;
  inset: 0% 0% auto;
}

.choose-heading-wrapper {
  grid-column-gap: 7.5rem;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-link-2 {
  color: #fff;
  text-decoration: none;
}

.stripe-container {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.project-button {
  background-color: #33333308;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.testimonial-content-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: grid;
}

.parent-pad-side {
  padding-left: 4rem;
  padding-right: 4rem;
}

.grid-large {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(2rem, 1fr) minmax(auto, 96rem) minmax(2rem, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.section-testimonial {
  background-color: #0000;
  border-radius: 0;
  overflow: hidden;
}

.wrapper-title {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.card-hover-item {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  border-top: 1px #ebebeb2b;
  border-bottom: 1px #ebebeb2b;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 1em;
  padding: 0;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-text.bottom-hover-text {
  position: absolute;
  inset: auto 0% -100%;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.flex-split-btm {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.portfolio-heading-wrapper {
  width: 100%;
  max-width: 49rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-large {
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

.testimonial-slider {
  background-color: #0000;
  height: 100%;
}

.background-image {
  z-index: 1;
  background-image: url('../images/Space002.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-image.testimonial-003 {
  background-image: url('../images/IMG_0360.jpeg');
  background-position: 50% 10%;
}

.background-image.testimonial-003.erick {
  background-image: url('../images/ERICK-NIEBLA---SALES-MANAGER---ENSENADA-BAJA-CALIFORNIA.jpg');
}

.background-image.testimonial-002 {
  background-image: url('../images/F1.png');
}

.background-image.testimonial-001 {
  background-image: url('../images/ERICK-NIEBLA---SALES-MANAGER---ENSENADA-BAJA-CALIFORNIA.jpg');
}

.background-image.testimonial-004 {
  background-image: url('../images/ALAN-LOMBERA---ADMINISTRATION---ENSENADA-BAJA-CALIFORNIA.jpg');
}

.background-image.testimonial-005 {
  background-image: url('../images/RAÚL-ZAVALA---PRODUCTION-CHIEF---ENSENADA-BAJA-CALIFORNIA.jpg');
}

.background-image.testimonial-006 {
  background-image: url('../images/JONATHAN-JIMÉNEZ---PRODUCTION---ENSENADA-BAJA-CALIFORNIA.jpg');
}

.background-image.testimonial-007 {
  background-image: url('../images/F1.jpg');
}

.footer-block {
  flex-direction: column;
  display: flex;
}

.btn-parent {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  padding-top: 1px;
  padding-left: .9rem;
  padding-right: .9rem;
  font-size: .8rem;
  line-height: 1.2;
  display: flex;
  position: relative;
}

.btn-parent.dark {
  color: #000;
  border-color: #000;
  text-decoration: none;
}

.section-5 {
  z-index: 1;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-5.no-hide {
  overflow: visible;
}

.services-card {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  border: .2px solid #fcfcfc;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 36px;
  display: grid;
}

.ticker-parent {
  justify-content: center;
  padding-top: 1rem;
  display: flex;
  position: relative;
  inset: auto auto -4.3rem 0%;
  overflow: hidden;
}

.portfolio-item-title-wrapper {
  z-index: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.img-child {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-child.bg-red {
  margin-right: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.image-4 {
  height: 40%;
}

.text-wrapper {
  filter: grayscale();
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1.2rem;
  padding-top: .1rem;
  display: flex;
}

.heading-xlarge {
  color: #fff;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.2;
}

.project-type-text {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 500;
  text-decoration: none;
}

.subtitle-2 {
  z-index: 10;
  color: #0d0d0d;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: -26px;
  font-family: Unbounded, sans-serif;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}

.subtitle-2.white {
  color: #fff;
  margin-top: 0;
}

.choose-content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 10%;
  flex-direction: column;
  grid-template-rows: minmax(30%, auto) 30%;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(30%, auto);
  grid-auto-columns: 1fr;
  width: 50%;
  max-width: 48rem;
  height: 70vh;
  max-height: 100%;
  margin-right: 39px;
  padding-left: 1%;
  display: grid;
  position: relative;
  overflow: hidden;
}

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

.padding-vertical.padding-xhuge {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #000;
  border-radius: 20px 20px 0 0;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: grid;
}

.splide__track {
  cursor: grab;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.heading-small {
  text-align: left;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.testimonial-arrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1b1b1b1f;
  border-right: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50%;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  display: flex;
  inset: auto auto 0% 0;
}

.testimonial-arrow.right-arrow {
  border-bottom: 1px solid #ffffff1a;
  top: 0;
  bottom: auto;
  right: auto;
}

.pre-loader {
  z-index: 99999;
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.text-style-muted {
  color: #33333380;
}

.text-style-muted.text-span {
  color: #fff;
}

.text-size-tiny-2 {
  font-size: .7rem;
}

.text-size-tiny-2.text-style-allcaps.text-color-white {
  padding-right: 23px;
}

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

.max-width-large.new {
  text-align: left;
}

.section-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.section-2.no-verticle-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-2.no-verticle-padding.dark {
  z-index: 1;
  background-color: #000;
  margin-top: .018vw;
}

.choose-circle {
  z-index: 4;
  background-color: #0000001a;
  border-radius: 99vw;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  display: block;
}

.rotate-text {
  transform: rotate(-90deg);
}

.portfolio-cms-item {
  border-radius: .375rem;
  flex: none;
  width: 15rem;
  position: relative;
  overflow: hidden;
}

.text-size-xsmall {
  font-size: .8rem;
}

.splide__slide {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  width: 30%;
  min-width: 30%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.splide__slide.two {
  cursor: pointer;
  background-image: url('../images/F2.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  min-width: 23%;
  height: 100%;
  margin-right: .5rem;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.splide__slide.two.new {
  background-image: url('../images/IMG_5062.jpg');
  width: 90%;
  height: 70vh;
}

.splide__slide.four {
  cursor: pointer;
  background-image: url('../images/F4.png');
  background-position: 50%;
  background-size: auto 100%;
  width: 80%;
  min-width: 23%;
  height: 100%;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.splide__slide.one {
  cursor: pointer;
  background-image: url('../images/F1.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  min-width: 23%;
  height: 100%;
  margin-right: .5rem;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
}

.splide__slide.three {
  cursor: pointer;
  background-image: url('../images/F3.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  min-width: 23%;
  height: 100%;
  margin-right: .5rem;
  padding: 10px 1em 20px;
}

.portfolio-item {
  background-color: #000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: .375rem;
  flex: none;
  align-items: flex-end;
  width: 100%;
  height: 30rem;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.portfolio-item.is--large {
  background-color: #000;
  background-image: url('../images/milan.jpg');
  height: 45rem;
}

.portfolio-item.is--large.chapter-one {
  background-image: url('../images/CHAPTER-ONE.jpg');
}

.portfolio-item.is--small {
  background-color: #000;
  background-image: url('../images/ZONA-MACO.png');
}

.portfolio-item.is--medium {
  background-color: #000;
  background-image: url('../images/F1.jpg');
  height: 38rem;
}

.img-parent {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.footer-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid #2e313a;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: grid;
}

.heading-medium-2 {
  color: #fff;
  text-align: center;
  letter-spacing: .5rem;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

._w-h1 {
  width: 100%;
  padding-bottom: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
  position: relative;
  overflow: hidden;
}

.red-full-stop {
  color: #d1c8b6;
}

.red-full-stop.text-span {
  color: #000;
}

.stripe-wrapper {
  z-index: 5;
  border: 1px solid #000;
  justify-content: center;
  width: 100vw;
  min-width: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: absolute;
  inset: 0% auto;
  overflow: hidden;
}

.hero-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.card-circle {
  background-color: #ebebeb2b;
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.homepage {
  z-index: 1;
  background-color: #06c0;
  width: 100vw;
  height: 100vh;
  padding-top: 0;
  position: relative;
}

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

.red-rectangle {
  background-color: #d1c8b6;
  border-radius: 1.5px;
  width: 5px;
  height: 100%;
  position: absolute;
  top: auto;
}

.footer-menu {
  grid-column-gap: 2.625rem;
  grid-row-gap: 2.625rem;
  justify-content: space-between;
  display: flex;
}

.footer-intro {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.padding-horizontal-2 {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.padding-horizontal-2.padding-medium,
.padding-horizontal-2.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.project-button-image {
  z-index: 1;
  background-image: url('../images/angled-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .6rem;
  border: 1px solid #fff;
  border-radius: 99vw;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: background-color .35s, border-color .35s;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.menu-item-2 {
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.text-sm {
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

.text-sm.fade {
  color: #d1c8b6;
  text-align: center;
  letter-spacing: 2px;
  font-family: Unbounded, sans-serif;
  font-size: .8rem;
  font-weight: 100;
}

.tripple-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: grid;
}

.text-size-large-2 {
  font-size: 1.4rem;
  line-height: 1.45;
}

.text-size-large-2.text-align-center.text-color-white {
  color: #000;
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 100;
}

.spacer-large {
  width: 100%;
  padding-bottom: 8rem;
}

.splide__arrows {
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 2rem;
  display: none;
}

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

.padding-vertical-2.padding-huge {
  background-color: #fff;
  border-top: 1px solid #202020;
}

.intro-wrapper {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.pre-loader-text {
  color: #fff;
  letter-spacing: .1em;
  font-family: Unbounded, sans-serif;
  font-size: 2rem;
  font-weight: 300;
}

.choose_component {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 10rem;
  display: flex;
}

.pin-stripe {
  background-color: #ebebeb2b;
  width: 1px;
}

.pin-stripe.white {
  background-color: #ffffff1f;
}

.project-type-wrapper {
  z-index: 1;
  border: 1px solid #fff;
  border-radius: .375rem;
  padding: .45rem 1rem .35rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.background-video-6 {
  filter: brightness(92%);
  width: 100vw;
  height: 100vh;
  transition: all .35s;
  display: block;
  position: absolute;
  inset: 0%;
}

.body-display {
  color: #6e7488;
  font-size: 16px;
  line-height: 1.6em;
}

.body-display.white {
  color: #ffffffe6;
  font-family: Unbounded, sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.heading {
  z-index: 10;
  letter-spacing: .2em;
  font-family: Unbounded, sans-serif;
  font-size: 15px;
  font-weight: 100;
  position: relative;
}

.div-block-12 {
  z-index: 1000;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  opacity: 1;
  background-image: linear-gradient(#0000 19%, #111);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.section-footer {
  border-radius: 20px;
}

.text-size-small-2 {
  color: #000;
  text-align: left;
  font-family: Unbounded, sans-serif;
  font-size: 65%;
  font-weight: 100;
  line-height: 1.2;
}

.choose-item_upper {
  grid-column-gap: 4rem;
  border: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.text-block-4 {
  color: #d0c8b6;
  text-transform: uppercase;
}

.link-underline-2 {
  text-transform: uppercase;
  background-color: #d0c8b6;
  width: 100%;
  height: 1.5px;
  margin-top: .25rem;
  transform: translate(-102%);
}

.splide__arrow {
  background-color: #0000;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30%;
  border: 1px solid #d9d9e4;
  width: 4rem;
  height: 4rem;
  margin-left: -1px;
  transition: all .2s;
}

.splide__arrow:hover {
  background-color: #3732350f;
}

.splide__arrow.splide__arrow--next:active {
  transform: scale(.95);
}

.splide__arrow.splide__arrow--prev {
  transform: rotate(-180deg);
}

.splide__arrow.splide__arrow--prev:active {
  transform: scale(.95)rotate(-180deg);
}

.choose-item {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  position: relative;
}

.portfolio-cms-list {
  grid-column-gap: 1.8rem;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin-top: 10rem;
  display: flex;
}

.portfolio-cms-list.test {
  grid-column-gap: 1.8rem;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 20vw;
  display: block;
}

.menu-icon-3 {
  filter: invert();
  mix-blend-mode: exclusion;
  width: 2.8rem;
  height: 2.5rem;
}

.menu-icon-3.home {
  filter: none;
}

.letter-wrap {
  z-index: 1;
  color: #000;
  letter-spacing: 1px;
  -webkit-text-stroke-color: #272727;
  text-transform: uppercase;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  font-size: .8751rem;
  font-weight: 500;
  position: relative;
}

.spacer-medium {
  width: 100%;
  padding-bottom: 3rem;
}

.card-button-wrapper {
  display: flex;
}

.portfolio-item-content-wrapper {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.image-overlay {
  z-index: 1;
  outline-offset: 0px;
  color: #0d0d0d;
  background-color: #0000;
  outline: 3px #0d0d0d;
  position: absolute;
  inset: 0%;
}

.portfolio-item-overlay {
  z-index: 1;
  background-color: #00000080;
  border-radius: .375rem;
  position: absolute;
  inset: 0%;
}

.project-button-bg {
  z-index: -1;
  background-color: #d1c8b6;
  border-radius: 999vw;
  width: 0;
  height: 0;
  position: absolute;
  inset: auto;
}

.section-footer1 {
  background-color: #000;
}

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

.services-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-top: 1px solid #ebebeb2b;
  border-left: 1px solid #ebebeb2b;
  border-right: 1px solid #ebebeb2b;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: .25fr;
  display: grid;
}

.choose-item-line {
  background-color: #0000001a;
  width: 48rem;
  height: 1px;
  position: absolute;
  inset: 0% 0% auto;
}

.section-6 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.image-5 {
  height: 20px;
}

.image-6 {
  height: 40%;
}

.section-7 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5vw;
  display: flex;
  position: relative;
}

.section-7.no-verticle-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-7.no-verticle-padding.dark {
  z-index: 1;
  background-color: #000;
  margin-top: .018vw;
}

.heading-medium-3 {
  color: #fff;
  text-align: center;
  letter-spacing: .5rem;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.heading-10 {
  z-index: 10;
  letter-spacing: .2em;
  font-family: Unbounded, sans-serif;
  font-size: 15px;
  font-weight: 100;
  position: relative;
}

.text-block-5 {
  color: #d0c8b6;
  text-transform: uppercase;
}

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

.link-block-2,
.link-block-3 {
  text-decoration: none;
}

.div-block-13 {
  min-width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

.code-embed {
  height: 100%;
}

.large-growing-images {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  min-height: 550px;
  display: flex;
}

.large-growing-images.small {
  height: 70vh;
  min-height: 100%;
}

.growing-image {
  flex: 1;
  width: 40%;
  position: relative;
}

.growing-image.small {
  flex: 0 auto;
  width: 35%;
  margin-right: 0;
  overflow: visible;
}

.growing-image.right {
  margin-left: 24px;
}

.growing-background {
  background-image: url('../images/Image013.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.growing-background.seven {
  background-image: url('../images/ZONA-MACO.png');
}

.growing-background.eight {
  background-image: url('../images/IMG_5062.jpg');
}

.code-embed-2 {
  height: 100vh;
}

@media screen and (min-width: 1280px) {
  .section-3.clip {
    background-color: #fff;
  }

  .image-3.small-logo {
    height: 3em;
  }

  .card-hover-item {
    padding: 0;
  }

  .background-image.testimonial-003 {
    background-image: url('../images/IMG_0360.jpeg');
  }

  .background-image.testimonial-002 {
    background-image: url('../images/F1.png');
    background-position: 0 0;
    background-size: auto;
  }

  .background-image.testimonial-001 {
    background-image: url('../images/ERICK-NIEBLA---SALES-MANAGER---ENSENADA-BAJA-CALIFORNIA.jpg');
  }

  .background-image.testimonial-004 {
    background-image: url('../images/ALAN-LOMBERA---ADMINISTRATION---ENSENADA-BAJA-CALIFORNIA.jpg');
  }

  .background-image.testimonial-005 {
    background-image: url('../images/RAÚL-ZAVALA---PRODUCTION-CHIEF---ENSENADA-BAJA-CALIFORNIA.jpg');
  }

  .background-image.testimonial-006 {
    background-image: url('../images/JONATHAN-JIMÉNEZ---PRODUCTION---ENSENADA-BAJA-CALIFORNIA.jpg');
  }

  .background-image.testimonial-007 {
    background-image: url('../images/F1.jpg');
  }

  .services-card {
    text-decoration: none;
  }

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

@media screen and (min-width: 1440px) {
  .wrapper-title {
    padding-left: 0;
    padding-right: 0;
  }

  .services-card {
    padding: 48px;
  }

  .hero-container {
    margin-bottom: 257px;
    padding-left: 0;
    padding-right: 0;
  }

  .homepage {
    background-color: #90bdeb00;
  }

  .background-video-6 {
    margin-left: 0;
  }

  .div-block-12 {
    font-size: 7vh;
  }
}

@media screen and (min-width: 1920px) {
  .wrapper-title {
    width: 150%;
    padding-left: 0;
  }

  .hero-container {
    margin-top: 28vh;
  }

  .homepage {
    padding-top: 0;
  }

  .div-block-12 {
    background-image: linear-gradient(#0000 19%, #111);
  }
}

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

  h2,
  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: 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-top.padding-xhuge {
    padding-top: 4rem;
  }

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

  .padding-bottom.padding-xxlarge {
    padding-bottom: 3rem;
  }

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

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

  .hero_heading-wrapper {
    padding: 3rem 0;
  }

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

  .text-navbar {
    -webkit-text-stroke-color: var(--black-900);
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 300;
  }

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

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

  .button:hover {
    background-color: #0000;
  }

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

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

  .text-size-large.is-hero {
    color: var(--black--700);
    white-space: break-spaces;
    max-width: none;
    font-size: 1.25rem;
  }

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

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

  .nav_menu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .nav_menu.is-page-height-tablet {
    grid-row-gap: 2px;
    background-color: var(--gray-100);
    border-bottom-style: none;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 100vh;
    padding-top: 25%;
    padding-bottom: 0;
    transition: height .5s;
    display: flex;
    inset: 0%;
  }

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

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

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

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

  .navbar {
    padding: 1rem 0%;
  }

  .nav_logo-link.w--current {
    align-self: center;
  }

  .nav-link {
    text-transform: none;
    align-self: stretch;
    width: 100%;
    height: auto;
    padding: .75rem 0;
    font-size: 3rem;
    font-weight: 400;
  }

  .nav-link.hide-on-desktop {
    color: #1a1a1a;
    text-transform: uppercase;
    height: auto;
    font-size: 2rem;
    font-weight: 400;
    display: block;
  }

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

  .footer_contact {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .footer_top-wrapper {
    grid-column-gap: 0vw;
    grid-row-gap: 2rem;
    flex-flow: column wrap;
    grid-template-rows: minmax(max-content, 1fr);
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    justify-items: center;
    padding-top: 1rem;
    display: flex;
  }

  .footer-link {
    font-size: 1.125rem;
  }

  .footer_link-list.is-left {
    align-items: flex-start;
  }

  .footer_link-list.is-right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer_text-get-in-touch {
    font-size: 2rem;
    line-height: 1;
  }

  .hero_heading-content {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .line-horizontal {
    color: #1a1a1a33;
  }

  .line-horizontal.is-nav-menu {
    transform-origin: 0%;
    color: #1a1a1a80;
    align-self: stretch;
    display: block;
    position: relative;
  }

  .heading-1 {
    white-space: break-spaces;
    max-width: none;
    font-size: 3.5rem;
  }

  .heading-1.is-about {
    max-width: none;
  }

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

  .featured-work_content-wrapper.is-two-projects {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .project_description-wrapper {
    max-width: none;
  }

  .featured-work_wide-display,
  .featured-work_small-display {
    width: 100%;
  }

  .featured-works-wrapper {
    grid-row-gap: 4rem;
  }

  .image_about.wide {
    flex: 1;
  }

  .image-wrapper.hide-on-mobile {
    grid-row-gap: .5rem;
    flex-direction: column;
    display: block;
    position: relative;
  }

  .featured-work_image-wrapper {
    height: 50dvh;
    max-height: none;
  }

  .featured-work_image-wrapper.is-full-width {
    height: 50vh;
  }

  .featured-work_image-wrapper.is-rectangle {
    height: 50vh;
    padding-top: 0%;
  }

  .featured-work_image-wrapper.is-wide {
    height: 50vh;
  }

  .btn_back-to-top {
    width: 3rem;
    height: 3rem;
  }

  .nav_container {
    align-items: center;
  }

  .section-heading-wrapper {
    max-width: 80%;
  }

  .services_content-right {
    max-width: none;
  }

  .custom-cursor {
    display: none;
  }

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

  .services_item {
    border-bottom-color: #00000014;
  }

  .text-size-regular.is-light {
    position: static;
    inset: auto 0% -1rem;
  }

  .about_text-wrapper {
    grid-row-gap: 1rem;
    flex-direction: column;
    max-width: none;
    margin-left: 0;
    display: flex;
  }

  .testimonials_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    align-content: flex-start;
    align-items: stretch;
    height: auto;
  }

  .testimonial_item {
    flex: 1;
    align-self: stretch;
    min-width: 33vw;
    height: auto;
  }

  .testimonial-content {
    grid-template-rows: max-content auto;
  }

  .flex-item-line {
    width: 0%;
  }

  .testimonial_client-wrapper {
    flex-direction: row;
  }

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

  .rich-text_project-details p {
    max-width: none;
  }

  .menu_component {
    display: none;
  }

  .menu-wrapper {
    width: 100%;
  }

  .button-overflow {
    width: 10rem;
  }

  .splide-2.slider1 {
    height: 50rem;
    padding-left: 2rem;
  }

  .mnml-faded-wrapper {
    position: absolute;
    inset: -50% 0% auto;
    transform: rotate(90deg);
  }

  .portfolio-cms-wrapper {
    padding-bottom: 5rem;
    overflow: auto;
  }

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

  .testimonial-column {
    min-height: 400px;
    padding: 48px 24px;
  }

  .testimonial-column.testimonial-image {
    min-height: 450px;
  }

  .testimonial-column.testimonial-description {
    min-height: auto;
  }

  .choose-heading-wrapper {
    flex-direction: column;
    align-items: flex-end;
  }

  .testimonial-content-2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }

  .parent-pad-side {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-large {
    grid-template-columns: minmax(1rem, 1fr) minmax(auto, 104rem) minmax(1rem, 1fr);
  }

  .wrapper-title {
    width: 70vw;
  }

  .services-card {
    padding: 36px 24px;
  }

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

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

  .testimonial-arrow {
    height: 25%;
    top: 25%;
    bottom: auto;
  }

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

  .splide__slide {
    width: 90%;
    min-width: 90%;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  ._w-h1 {
    width: 100%;
    height: 100%;
  }

  .hero-container {
    margin-bottom: 42px;
  }

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

  .red-rectangle {
    height: 20px;
  }

  .footer-menu {
    padding-bottom: 2rem;
  }

  .footer-intro {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .tripple-grid {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .spacer-large {
    padding-bottom: 6rem;
  }

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

  .choose_component {
    margin-top: 25rem;
    position: relative;
  }

  .services-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .section-6,
  .section-7 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .large-growing-images.small {
    height: 45vw;
    min-height: 400px;
  }
}

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

  .hide-mobile-landscape {
    display: 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-top.padding-xhuge {
    padding-top: 2rem;
  }

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

  .hero_heading-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

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

  .text-navbar {
    flex: none;
    align-self: flex-start;
    width: auto;
    font-size: 2rem;
  }

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

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

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

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

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

  .text-size-regular--allcaps {
    font-size: .9rem;
  }

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

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

  .text-size-large.is-hero {
    max-width: none;
    margin-bottom: 0;
  }

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

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

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

  .nav_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .navbar {
    height: auto;
    min-height: 4rem;
  }

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

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

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

  .footer_bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: center;
    padding-bottom: 1rem;
  }

  .hero_heading-content {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .heading-1 {
    max-width: none;
    font-size: 2.5rem;
  }

  .heading-1.is-about {
    max-width: none;
  }

  .categories-filter_wrapper {
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .image_about.wide {
    object-fit: cover;
    display: inline-block;
  }

  .image-wrapper {
    height: auto;
  }

  .image-wrapper.hide-on-mobile {
    flex: 1;
    max-width: none;
    display: none;
  }

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

  .services_content-left {
    grid-column-gap: .5rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
  }

  .services_item {
    flex-direction: column;
  }

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

  .text-size-regular.is-allcaps {
    color: var(--black--800);
  }

  .testimonials_list {
    flex-direction: column;
  }

  .project_image {
    height: 22rem;
  }

  .project_details-wrapper {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .project_text-wrapper {
    padding-top: 2rem;
  }

  .category-button_item {
    flex: none;
    width: auto;
  }

  .category-buttons_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    display: flex;
  }

  .category-buttons_wrapper {
    flex: 1;
    align-self: auto;
    display: block;
  }

  .menu-item {
    width: auto;
  }

  .menu-wrapper {
    justify-content: space-between;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .splide-2.slider1 {
    height: 44rem;
  }

  .mnml-faded-wrapper {
    top: -40%;
  }

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

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

  .testimonial-column {
    min-height: auto;
  }

  .testimonial-column.testimonial-image {
    min-height: 400px;
  }

  .testimonial-column.testimonial-description {
    border-top: 1px solid #ffffff1f;
  }

  .choose-heading-wrapper {
    grid-row-gap: 3rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-content-2 {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

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

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

  .choose-content-wrapper {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

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

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

  .testimonial-arrow {
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1f;
    width: 50%;
    height: 60px;
    top: 0%;
  }

  .testimonial-arrow.right-arrow {
    border-right-style: none;
    left: auto;
    right: 0;
  }

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

  .rotate-text.no-rotate-on-mobile {
    transform: none;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  ._w-h1 {
    height: 150%;
  }

  .hero-container {
    margin-top: 23vh;
  }

  .homepage {
    padding-top: 0;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .footer-intro {
    max-width: 22rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .menu-item-2 {
    width: auto;
  }

  .tripple-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

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

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

  .choose_component {
    flex-direction: column;
    margin-top: 20rem;
    position: relative;
  }

  .div-block-12 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

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

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

  .large-growing-images {
    height: 65vw;
    min-height: 300px;
  }

  .large-growing-images.small {
    height: 60vw;
    min-height: auto;
  }
}

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

  h2 {
    font-size: 2rem;
    font-weight: 500;
  }

  .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-bottom.padding-xxhuge {
    padding-bottom: 2rem;
  }

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

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

  .hero_heading-wrapper {
    padding: 1.5rem 0;
  }

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

  .text-navbar {
    -webkit-text-stroke-color: transparent;
    width: 100%;
  }

  .button.is-top-aligned {
    justify-content: center;
    align-self: flex-end;
    width: auto;
    margin-left: 0;
    position: relative;
  }

  .button.is-top-aligned:hover {
    background-color: #0000;
  }

  .button.is-category {
    flex: 0 auto;
    justify-content: space-between;
    align-self: flex-start;
    width: auto;
  }

  .button.is-category.w--current {
    justify-content: flex-start;
    align-self: flex-start;
    width: auto;
  }

  .text-size-regular--allcaps {
    white-space: normal;
    font-weight: 600;
    line-height: 1.25;
  }

  .text-size-regular--allcaps.is-right-aligned {
    text-align: left;
    line-height: 1.65;
  }

  .text-size-large.is-hero {
    flex: none;
    height: auto;
    font-size: 1rem;
  }

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

  .padding-global {
    margin-top: auto;
    margin-bottom: auto;
  }

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

  .nav_menu.is-page-height-tablet {
    background-color: var(--gray-100);
    height: 100dvh;
    display: block;
  }

  .navbar {
    align-items: center;
    height: 4rem;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .nav-link,
  .nav-link.hide-on-desktop {
    height: auto;
  }

  .footer_bottom-wrapper {
    grid-template-columns: auto;
  }

  .footer-link {
    font-size: 1rem;
  }

  .footer_huge-logo-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .hero_heading-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border: 1px #000;
    border-bottom-color: #6e6e6e26;
    padding-bottom: 1rem;
  }

  .heading-1 {
    letter-spacing: -1px;
    max-width: none;
    font-size: 2.25rem;
  }

  .heading-1.is-about {
    max-width: none;
  }

  .project_full-width-image-wrapper {
    flex: none;
    height: 100%;
    max-height: none;
  }

  .project-wrapper {
    width: 100%;
  }

  .categories-filter_wrapper {
    flex-flow: column;
    align-items: stretch;
  }

  .project_description-wrapper {
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
  }

  .project_description-wrapper.is-landingpage {
    flex: 0 auto;
  }

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

  .about_grid-component {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .image_about,
  .image-wrapper {
    height: auto;
  }

  .image-wrapper.hide-on-mobile {
    display: none;
  }

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

  .featured-work_image-wrapper {
    height: 22rem;
  }

  .featured-work_image-wrapper.is-full-width,
  .featured-work_image-wrapper.is-rectangle,
  .featured-work_image-wrapper.is-wide {
    height: 20rem;
  }

  .image_featured {
    height: 100%;
  }

  .nav_container {
    align-items: center;
  }

  .section-heading-wrapper {
    margin-bottom: 1rem;
  }

  .services_content-right {
    padding-bottom: 0;
  }

  .experience-item {
    grid-column-gap: 1rem;
    grid-row-gap: .25rem;
    grid-template-rows: auto max-content;
    grid-template-columns: 10rem max-content 1fr;
    align-content: start;
    align-items: start;
    padding-bottom: 1rem;
  }

  .experience-item.first-child {
    grid-column-gap: 1rem;
    grid-row-gap: .25rem;
    flex-direction: row;
    grid-template-rows: auto max-content;
    grid-template-columns: 10rem max-content 1fr;
    grid-auto-columns: 1fr;
    padding-top: 0;
    display: grid;
  }

  .services_content-left {
    grid-column-gap: .5rem;
    grid-row-gap: 0rem;
    border-bottom: 1px #1a1a1a1a;
    flex-direction: row;
    flex: 0 auto;
    align-self: flex-start;
    align-items: center;
    padding-bottom: 0;
  }

  .services_item {
    grid-row-gap: .25rem;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-top: 0;
    padding-bottom: .5rem;
    padding-right: 0;
  }

  .services_item:last-child {
    border-bottom-style: none;
  }

  .text-size-regular {
    color: var(--black--600);
    flex-wrap: nowrap;
    flex: 1;
    margin-top: 0;
    font-size: .95rem;
    line-height: 1.65;
  }

  .text-size-regular.is-weight-medium {
    color: var(--black--800);
    font-weight: 500;
  }

  .text-size-regular.is-allcaps {
    color: var(--black--800);
    flex: 0 auto;
    font-weight: 500;
  }

  .featured-work_text-left {
    grid-row-gap: 0rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    display: flex;
  }

  .featured-work-link {
    grid-row-gap: .5rem;
  }

  .text-style-h3 {
    flex: none;
    width: auto;
    font-size: 1.25rem;
  }

  .testimonial_item {
    border-style: none;
  }

  .testimonial-content,
  .testimonial-content:hover {
    background-color: var(--white);
  }

  .links-wrapper {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .project_image {
    display: inline-block;
  }

  .project_details-wrapper {
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .project_basic-details-wrapper {
    max-width: none;
  }

  .category-button_item {
    grid-column-gap: .05rem;
    grid-row-gap: .25rem;
    flex-direction: row;
    flex: none;
    justify-content: flex-start;
    align-self: flex-end;
    align-items: baseline;
    width: auto;
    display: flex;
  }

  .category-buttons_list {
    flex-flow: wrap;
    justify-content: flex-start;
    width: auto;
  }

  .category_list {
    flex-direction: column;
  }

  .category-buttons_wrapper {
    flex: 1;
    width: auto;
  }

  .category_item {
    grid-column-gap: .125rem;
    align-items: baseline;
  }

  .menu-nav-link {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }

  .splide__list {
    flex-flow: column;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .splide-2.slider1 {
    height: auto;
    min-height: 120vh;
    max-height: none;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .mnml-faded-wrapper {
    width: 100%;
    height: auto;
  }

  .portfolio-cms-wrapper {
    flex-flow: column;
  }

  .large-heading {
    font-size: 36px;
  }

  .section-choose {
    overflow: hidden;
  }

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

  .testimonial-column.testimonial-image {
    width: 100%;
    min-height: 350px;
  }

  .testimonial-column.testimonial-description {
    border-top-style: none;
    padding-top: 36px;
  }

  .testimonial-column.testimonial-name {
    z-index: 1;
    background-color: #090b1959;
    border-top: 1px #ffffff1f;
    border-bottom: 1px #ffffff1f;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .parent-pad-side {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .wrapper-title {
    justify-content: flex-start;
    align-items: center;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }

  .card-hover-item {
    height: 30vh;
    margin-bottom: 3em;
    margin-right: 0;
  }

  .container.flex-split-btm {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .services-card {
    padding: 36px 18px;
  }

  .ticker-parent {
    display: none;
    bottom: -3rem;
  }

  .heading-xlarge {
    text-align: center;
    font-size: 1.5rem;
  }

  .choose-content-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
  }

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

  .splide__track {
    height: auto;
  }

  .testimonial-arrow {
    font-size: 12px;
  }

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

  .splide__slide.two.new {
    flex-flow: row;
    width: 70%;
    height: 30vh;
    margin-right: 0;
  }

  .splide__slide.four {
    width: 100%;
  }

  ._w-h1 {
    width: 100%;
    font-size: 100%;
    line-height: 100%;
  }

  .hero-container {
    margin-bottom: 75px;
    padding-left: 0;
    padding-right: 0;
  }

  .homepage {
    padding-top: 0;
  }

  .footer-menu {
    padding-top: 1rem;
  }

  .footer-intro {
    max-width: 20rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .tripple-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 36px;
  }

  .spacer-large {
    padding-bottom: 5rem;
  }

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

  .choose_component {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .background-video-6 {
    opacity: 1;
    height: 100vh;
    padding-top: 0;
    padding-right: 0;
  }

  .div-block-12 {
    background-image: linear-gradient(#0000 46%, #111);
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .portfolio-cms-list.test {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .spacer-medium {
    padding-bottom: 2rem;
  }

  .portfolio-item-overlay {
    border-radius: .375px;
  }

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

  .large-growing-images {
    min-height: auto;
  }

  .large-growing-images.small {
    flex-flow: row;
    width: 80vw;
    height: 30vw;
    min-height: auto;
  }

  .section-8 {
    height: 180vh;
  }
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea4ca-53f9d09b,
#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea4cb-53f9d09b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea507-53f9d09b,
#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea516-53f9d09b {
  align-self: stretch;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5d6-53f9d09b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5de-53f9d09b {
  align-self: start;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5e1-53f9d09b {
  align-self: end;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea606-53f9d09b {
  align-self: start;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea609-53f9d09b {
  align-self: end;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5f2-53f9d09b {
  align-self: start;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5f5-53f9d09b {
  align-self: end;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea61a-53f9d09b {
  align-self: start;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea61d-53f9d09b {
  align-self: end;
}

#w-node-a59e21da-72ad-c8ec-f55e-d428181be134-53f9d09b {
  align-self: start;
}

#w-node-a59e21da-72ad-c8ec-f55e-d428181be137-53f9d09b {
  align-self: end;
}

#w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc804-53f9d09b {
  align-self: start;
}

#w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc807-53f9d09b {
  align-self: end;
}

#w-node-_653eda97-768c-4263-cb2c-59c53156ba41-53f9d09b {
  align-self: start;
}

#w-node-_653eda97-768c-4263-cb2c-59c53156ba44-53f9d09b {
  align-self: end;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea700-53f9d09b {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70d-53f9d09b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70f-53f9d09b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea71c-53f9d09b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_25c2b4d5-5e81-c786-2bf4-e23f2323a2f5-2323a2f0 {
  justify-self: stretch;
}

#w-node-_25c2b4d5-5e81-c786-2bf4-e23f2323a2fd-2323a2f0,
#w-node-ebdc65a5-ff46-e7ca-7c29-c51fe9244c2b-2323a2f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8a0ec4d-d4d7-de8e-9e93-8134701d736c-53f9d09e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_46e44dee-c789-5a74-8064-3bec0aa4efde-53f9d09e,
#w-node-dc71cb17-8712-43b7-e3a7-d4c7c7d9e812-53f9d09e,
#w-node-aa41fb3e-0d24-82c8-e152-83ebd9f35c2c-53f9d09e,
#w-node-_44951fca-8eb0-1e86-7002-b051717ed561-53f9d09e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_37f6edda-7146-5693-10b0-d45e6aff8a7a-53f9d0a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_12541612-e08e-befc-3f99-d6568d4542fb-53f9d0a1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_49f3e610-9ab7-9a2e-f90d-3f9476ef94dc-53f9d0a1 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-b8e9e921-09df-80a3-c67b-247a597983e9-53f9d0a1 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_3ad5a96e-06a0-a828-5d4b-5d6fa7dd62c1-53f9d0a1,
#w-node-_3ad5a96e-06a0-a828-5d4b-5d6fa7dd62c2-53f9d0a1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_133d6fae-1caf-72c4-b056-e9e9397b5ed4-53f9d0a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_0df2c979-cb97-c1d0-d59e-a8eedf7c860a-53f9d0a4,
#w-node-_0df2c979-cb97-c1d0-d59e-a8eedf7c860b-53f9d0a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-53f9d0a5 {
  justify-self: start;
}

#w-node-_21e3537d-b206-b18b-b4de-1f9b5978963d-53f9d0a5 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-53f9d0a5 {
  justify-self: start;
}

#w-node-_762d57fc-195d-0d97-74e8-17c2c26a4e22-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_762d57fc-195d-0d97-74e8-17c2c26a4e23-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-53f9d0a5 {
  justify-self: start;
}

#w-node-_98eb347e-0534-2377-08e3-41ffa53a86fa-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863de-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-53f9d0a5,
#w-node-_336be75c-ab2b-838b-5642-972b6cc86402-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-53f9d0a5 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-53f9d0a5,
#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-53f9d0a5 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-53f9d0a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-53f9d0a5 {
  justify-self: start;
}

#w-node-dfd01f0c-60ba-0523-aa9a-c1b8c782b86e-b4c31ea9,
#w-node-d85b2460-36c1-9f28-408a-2cb04636e73c-b4c31ea9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-c8baf390-40b7-e38a-9fd0-43cdf38df5d4-2d1978a2,
#w-node-c8baf390-40b7-e38a-9fd0-43cdf38df5d5-2d1978a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5e3-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea60b-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5f7-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea61f-53f9d09b,
  #w-node-a59e21da-72ad-c8ec-f55e-d428181be139-53f9d09b,
  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc809-53f9d09b,
  #w-node-_653eda97-768c-4263-cb2c-59c53156ba46-53f9d09b {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea66c-53f9d09b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70d-53f9d09b {
    order: 9999;
    justify-self: end;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70f-53f9d09b {
    grid-column: span 2 / span 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea71c-53f9d09b {
    justify-self: start;
  }

  #w-node-_25c2b4d5-5e81-c786-2bf4-e23f2323a2f5-2323a2f0 {
    justify-self: center;
  }

  #w-node-a8a0ec4d-d4d7-de8e-9e93-8134701d736c-53f9d09e,
  #w-node-b8e9e921-09df-80a3-c67b-247a597983e9-53f9d0a1 {
    grid-column-start: 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5d6-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5e3-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5fe-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea60b-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5ea-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5f7-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea612-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea61f-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-a59e21da-72ad-c8ec-f55e-d428181be12c-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-a59e21da-72ad-c8ec-f55e-d428181be139-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc7fc-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc809-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_653eda97-768c-4263-cb2c-59c53156ba39-53f9d09b {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_653eda97-768c-4263-cb2c-59c53156ba46-53f9d09b {
    grid-column-end: 3;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea66c-53f9d09b {
    grid-column: span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70f-53f9d09b {
    justify-self: center;
  }

  #w-node-_25c2b4d5-5e81-c786-2bf4-e23f2323a30c-2323a2f0 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-c04d8183-04bf-4304-c9a2-2beeae632d69-53f9d09e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5d3-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5d6-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5e3-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5fb-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5fe-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea60b-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5e7-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5ea-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea5f7-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea60f-53f9d09b,
  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea612-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea61f-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a59e21da-72ad-c8ec-f55e-d428181be129-53f9d09b,
  #w-node-a59e21da-72ad-c8ec-f55e-d428181be12c-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-a59e21da-72ad-c8ec-f55e-d428181be139-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc7f9-53f9d09b,
  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc7fc-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_8eef99e8-7811-ad9c-6c49-96fa570bc809-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_653eda97-768c-4263-cb2c-59c53156ba36-53f9d09b,
  #w-node-_653eda97-768c-4263-cb2c-59c53156ba39-53f9d09b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_653eda97-768c-4263-cb2c-59c53156ba46-53f9d09b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70d-53f9d09b {
    justify-self: center;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea70f-53f9d09b {
    grid-column: span 1 / span 1;
  }

  #w-node-_1f4c4ad4-9e1c-a441-4999-274bcafea71c-53f9d09b {
    justify-self: center;
  }

  #w-node-_25c2b4d5-5e81-c786-2bf4-e23f2323a2f5-2323a2f0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c04d8183-04bf-4304-c9a2-2beeae632d69-53f9d09e {
    grid-column: span 1 / span 1;
  }

  #w-node-a8a0ec4d-d4d7-de8e-9e93-8134701d736c-53f9d09e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_26d68a58-6719-359e-7ac0-b9e601ebefc9-53f9d09e {
    grid-area: 2 / 1 / 2 / 2;
    align-self: start;
  }

  #w-node-_276567d5-ef40-db14-382b-30e4712b709d-53f9d09e {
    grid-area: 1 / 2 / 2 / 4;
    align-self: start;
  }

  #w-node-edd4a880-67f1-b83f-6987-b5aa43ea7f96-53f9d09e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-edd4a880-67f1-b83f-6987-b5aa43ea7f98-53f9d09e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_7d40ea8f-9008-12ba-9a74-33cf6d47ca7c-53f9d09e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_7d40ea8f-9008-12ba-9a74-33cf6d47ca7e-53f9d09e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_10a7ad83-7e0f-e7e5-26b8-3200f7d3fe4d-53f9d09e {
    grid-area: 2 / 1 / 3 / 2;
    align-self: start;
  }

  #w-node-_10a7ad83-7e0f-e7e5-26b8-3200f7d3fe4f-53f9d09e {
    grid-area: 1 / 2 / 2 / 3;
    align-self: start;
  }

  #w-node-_49f3e610-9ab7-9a2e-f90d-3f9476ef94dc-53f9d0a1 {
    grid-row: 3 / 4;
  }

  #w-node-b8e9e921-09df-80a3-c67b-247a597983e9-53f9d0a1 {
    grid-row: 4 / 5;
  }
}


@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Syne-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope variablefont wght';
  src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}