@font-face {
  font-family: Blkfort;
  src: url('../fonts/BLKFort-Extrabold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Blkfort;
  src: url('../fonts/BLKFort-Extrabold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

:root {
  --font-family-1: "Fort Book", sans-serif;
  --color-primary: #171414;
  --color-secondary: white;
  --space-1-5: 1.5rem;
  --color-accent-1: #ffce00;
  --color-neutral-50: #efefef;
  --color-accent-2: #8e50ed;
  --color-accent-3: #ff4713;
  --color-neutral-400: grey;
  --color-neutral-700: #3c3838;
  --color-neutral-300: #ada8a8;
  --color-neutral-900: #171414;
  --color-neutral-200: #cac5c4;
  --color-neutral-800: #272525;
  --color-neutral-100: #e5e0df;
  --color-neutral-500: #736f6f;
  --color-neutral-600: #565151;
  --color-neutral-20: #f2f2f2;
  --font-family-2: Blkfort, sans-serif;
  --space-3-5: 3.5rem;
  --space-2: 2rem;
  --space-1: 1rem;
  --space-2-5: 2.5rem;
  --color-terciary: #005eb8;
  --space-0-5: .5rem;
  --space-0-25: .25rem;
  --space-0-8125: .8125rem;
  --color-accent-4: #242f3e;
  --color-accent-5: #969191;
  --color-accent-6: #b1a6a6;
}

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

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

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

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

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

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

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

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

body {
  font-family: var(--font-family-1);
  color: var(--color-primary);
  background-color: #736f6f00;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
}

h1 {
  font-family: var(--font-family-1);
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.1em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1em;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1em;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1em;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

a {
  color: var(--color-primary);
  border-bottom: 0 #0000;
}

ul {
  margin-top: 1rem;
  margin-bottom: 0;
}

ol {
  margin-top: 0;
  padding-left: 40px;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
}

.c-section {
  position: relative;
}

.c-section.section-scroll-trigger {
  z-index: 1;
}

.c-section.scroll-trigger {
  width: auto;
  max-width: none;
}

.c-section.cc-color-bg-accent-1 {
  background-color: var(--color-accent-1);
}

.c-section.cc-color-bg-neutral-50 {
  background-color: var(--color-neutral-50);
}

.c-section.cc-hidden {
  display: none;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.c-main {
  z-index: 3;
  position: relative;
}

.c-main.style-guide {
  background-color: var(--color-secondary);
}

.section-4.scoll-trigger {
  z-index: 1;
}

.style-guide {
  background-color: #fff;
}

.property-value {
  color: #000;
  font-family: Space Mono, sans-serif;
}

.property-value.color-code {
  color: #726e6e;
  font-size: 1rem;
}

.c-class-name {
  color: #fff;
  background-color: #7443ff;
  border: 1px #000;
  border-radius: 4px;
  margin-top: 32px;
  margin-bottom: 16px;
  margin-right: 4px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  display: inline-block;
}

.c-color-bg-accent-1 {
  background-color: var(--color-accent-1);
  align-items: center;
}

.c-color-bg-accent-2 {
  background-color: var(--color-accent-2);
  align-items: center;
}

.c-color-bg-accent-3 {
  background-color: var(--color-accent-3);
  align-items: center;
}

.colors-grid {
  grid-column-gap: 40px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 100px);
  justify-content: start;
}

.style-guide-color-block {
  width: 100px;
  height: 64px;
}

.c-text-3 {
  font-size: .875rem;
}

.color-name {
  font-size: 1rem;
}

.c-color-bg-secondary {
  background-color: var(--color-secondary);
  display: inline-block;
}

.section-wide {
  margin: 4vw auto;
  display: block;
}

.section-5 {
  width: 90%;
  max-width: 1140px;
  margin: 4vw auto;
  display: block;
}

.c-color-bg-neutral-400 {
  background-color: var(--color-neutral-400);
}

.c-color-bg-neutral-700 {
  background-color: var(--color-neutral-700);
}

.c-color-bg-neutral-300 {
  background-color: var(--color-neutral-300);
}

.c-color-bg-neutral-900 {
  background-color: var(--color-neutral-900);
}

.c-color-bg-neutral-200 {
  background-color: var(--color-neutral-200);
}

.c-color-bg-neutral-800 {
  background-color: var(--color-neutral-800);
}

.c-color-bg-neutral-100 {
  background-color: var(--color-neutral-100);
}

.c-color-bg-neutral-500 {
  background-color: var(--color-neutral-500);
}

.c-color-bg-neutral-600 {
  background-color: var(--color-neutral-600);
}

.c-color-bg-neutral-50 {
  background-color: var(--color-neutral-50);
}

.c-color-bg-primary {
  background-color: var(--color-primary);
}

.margin-up-bottom-small {
  align-items: center;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.c-color-bg-neutral-20 {
  background-color: var(--color-neutral-20);
}

.container-4 {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 4vw;
  padding-right: 4vw;
}

.c-header {
  z-index: 10;
  border-bottom: 1px solid var(--color-neutral-100);
  background-color: var(--color-secondary);
  position: sticky;
  top: 0;
}

.c-custom-code_select-filler {
  display: none;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.c-footer {
  background-color: var(--color-secondary);
  margin-top: auto;
}

.c-footer_logo {
  padding-bottom: var(--space-1-5);
}

.c-footer_logo:hover {
  color: var(--color-neutral-500);
}

.c-title-1 {
  font-family: var(--font-family-1);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 4rem;
}

.c-title-2 {
  font-family: var(--font-family-1);
  font-size: 2.5rem;
  line-height: 3rem;
}

.c-title-3 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.c-title-4 {
  font-family: var(--font-family-2);
  font-size: 1.5rem;
  line-height: 2rem;
}

.c-title-5 {
  font-family: var(--font-family-2);
  font-size: 1.4rem;
  line-height: 2rem;
}

.c-title-6 {
  font-family: var(--font-family-2);
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.c-container {
  padding: var(--space-3-5);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.c-container.cc-first {
  margin-top: 0;
}

.c-container.cc-desktop-tablet_hidden {
  display: none;
}

.c-container.cc-no-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.c-container.cc-no-bottom-padding {
  padding-bottom: 0;
}

.c-text-2 {
  font-family: var(--font-family-1);
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.c-title-wrapper {
  margin-bottom: var(--space-1);
}

.c-text-wrapper {
  margin-bottom: var(--space-1-5);
}

.sg-wrapper {
  padding: var(--space-1) var(--space-2-5);
  background-color: var(--color-neutral-50);
}

.c-color-text-accent-1 {
  color: var(--color-accent-1);
}

.c-color-text-accent-2 {
  color: var(--color-accent-2);
}

.c-color-text-accent-3 {
  color: var(--color-accent-3);
  align-self: center;
}

.c-color-text-primary {
  color: var(--color-primary);
}

.c-color-text-secondary {
  color: var(--color-secondary);
}

.c-color-text-terciary {
  color: var(--color-terciary);
}

.c-title-7 {
  font-family: var(--font-family-2);
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.c-color-bg-terciary {
  background-color: var(--color-terciary);
}

.c-color-text-neutral-20 {
  color: var(--color-neutral-20);
}

.c-color-text-neutral-50 {
  color: var(--color-neutral-50);
}

.c-color-text-neutral-100 {
  color: var(--color-neutral-100);
}

.c-color-text-neutral-200 {
  color: var(--color-neutral-200);
}

.c-color-text-neutral-300 {
  color: var(--color-neutral-300);
}

.c-color-text-neutral-400 {
  color: var(--color-neutral-400);
}

.c-color-text-neutral-500 {
  color: var(--color-neutral-500);
}

.c-color-text-neutral-600 {
  color: var(--color-neutral-600);
}

.c-color-text-neutral-700 {
  color: var(--color-neutral-700);
}

.c-color-text-neutral-800 {
  color: var(--color-neutral-800);
}

.c-color-text-neutral-900 {
  color: var(--color-neutral-900);
}

.c-button-m {
  padding: var(--space-0-5) var(--space-2-5);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.c-button-m.cc-primary {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  flex: 1;
  position: relative;
}

.c-button-m.cc-secondary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #0000;
  flex: 1;
}

.c-button-m.cc-tertiary {
  background-color: #0000;
  padding: 0;
  display: inline-block;
}

.c-button-m.cc-tertiary:hover {
  text-decoration: underline;
}

.c-icon-2 {
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  width: 24px;
  height: 24px;
  display: flex;
}

.c-icon-2.cc-no-arrow {
  display: none;
}

.c-button_arrow-svg {
  flex-direction: row;
  justify-content: center;
  height: 1rem;
  display: flex;
}

.c-button_content {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  font-size: var(--space-1);
  justify-content: center;
  display: flex;
}

.c-button-wrapper {
  margin-bottom: var(--space-1);
}

.c-header_content {
  grid-column-gap: var(--space-1-5);
  align-items: flex-end;
  display: flex;
  position: relative;
}

.c-header_logo {
  flex-direction: column;
  align-self: center;
}

.c-header_items {
  display: flex;
}

.c-header_logo-link {
  align-items: center;
  display: flex;
}

.c-header_item-text {
  margin-right: var(--space-0-5);
  margin-left: var(--space-0-5);
  padding: var(--space-0-5) var(--space-0-5) var(--space-0-25);
  border-bottom: 6px solid #0000;
}

.c-header_item-text:hover {
  border-bottom: 6px solid var(--color-accent-3);
}

.c-header_menu-button {
  display: none;
}

.c-header_item {
  text-decoration: none;
}

.c-header_item-arrow {
  display: none;
}

.c-header_container {
  padding-top: var(--space-1);
  padding-right: var(--space-3-5);
  padding-left: var(--space-3-5);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.c-footer_table {
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: flex;
}

.c-footer_table-column {
  margin-right: var(--space-3-5);
  flex: none;
}

.c-footer_row {
  grid-column-gap: var(--space-3-5);
  grid-row-gap: var(--space-3-5);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

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

.c-link:hover {
  text-decoration: underline;
}

.c-footer_table-list {
  grid-column-gap: var(--space-0-25);
  grid-row-gap: var(--space-0-25);
  flex-direction: column;
  display: flex;
}

.c-footer_table-subtitle {
  margin-bottom: var(--space-0-8125);
  font-family: var(--font-family-2);
  overflow-wrap: normal;
  font-size: .875rem;
  line-height: 1.5rem;
}

.c-footer_table-item-link {
  font-size: .875rem;
  text-decoration: none;
  display: inline-block;
}

.c-footer_table-item-link:hover {
  text-decoration: underline;
}

.c-header_items-mobile {
  display: none;
  position: sticky;
}

.c-footer_separator {
  border-top: 1px solid #000;
}

.c-text-4 {
  font-size: .75rem;
}

.c-home_boxes {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center flex-start;
  align-items: stretch;
  display: flex;
}

.c-home_box-right {
  padding-left: var(--space-3-5);
  flex: 0 50%;
}

.c-home_box-left {
  padding-right: var(--space-3-5);
  border-right: 1px solid #000;
  flex: 0 50%;
}

.c-hero_image-div {
  padding-left: var(--space-3-5);
  flex: 0 50%;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-bottom: auto;
  display: flex;
}

.c-hero_content {
  padding-right: var(--space-3-5);
  flex-direction: column;
  flex: 0 50%;
  align-self: flex-start;
}

.c-hero_flex-boxes {
  grid-row-gap: var(--space-3-5);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.c-language_selector {
  z-index: 20;
  background-color: var(--color-secondary);
  border-bottom: 1px #000;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  display: none;
  position: absolute;
}

.c-header_language {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: auto;
  display: none;
}

.c-language_items {
  flex-direction: column;
  align-items: flex-end;
}

.c-language_item-text {
  padding-top: var(--space-0-5);
  padding-bottom: var(--space-0-25);
  border-bottom: 6px solid #0000;
  text-decoration: none;
}

.c-language_item-text:hover {
  opacity: .5;
}

.c-hero_image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  min-height: 520px;
}

.c-footer_container {
  padding: var(--space-1-5) var(--space-3-5);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.c-collaboration_titles {
  z-index: 2;
  grid-column-gap: var(--space-0-8125);
  grid-row-gap: var(--space-0-8125);
  display: flex;
  position: relative;
}

.c-collaboration_title {
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  border: 1px solid var(--color-secondary);
  flex: 0 33%;
  justify-content: center;
  text-decoration: none;
  display: flex;
}

.c-collaboration_title:hover {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.c-collaboration_model-1 {
  flex-direction: column;
  max-width: 740px;
  display: flex;
}

.c-collaboration_model-2, .c-collaboration_model-3 {
  flex-direction: column;
  max-width: 740px;
  display: none;
}

.c-accordeon-collmodels_row-wrapper {
  border-bottom: 1px solid #000;
  overflow: hidden;
}

.c-accordeon-collmodels_row {
  padding-top: var(--space-0-25);
  padding-bottom: var(--space-0-25);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.c-accordeon-collmodels_content {
  justify-content: flex-end;
  transition: height .5s;
  display: flex;
}

.c-accordeon {
  z-index: 1;
  grid-row-gap: 0px;
  border-top: 1px solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  position: relative;
}

.c-accordeon.cc-desktop-tablet_hidden {
  display: none;
}

.c-accordeon-collmodels_icon-plus {
  flex-direction: column;
  align-items: center;
  width: 2rem;
  transition: transform .3s;
  display: flex;
}

.c-collaboration_container {
  z-index: 1;
  padding-right: var(--space-3-5);
  padding-left: var(--space-3-5);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.c-collaboration_line-separator {
  z-index: 1;
  border-bottom: 1px solid #000;
}

.c-header_logo-svg {
  width: 110px;
  display: flex;
}

.c-text-upper {
  text-transform: uppercase;
}

.c-hero_title-wrapper {
  margin-bottom: var(--space-2);
}

.c-message_quote-up {
  padding: var(--space-0-8125);
  border-bottom: 2px solid var(--color-accent-2);
  display: inline-block;
}

.c-message_content {
  grid-column-gap: var(--space-1-5);
  grid-row-gap: var(--space-1-5);
  flex-direction: column;
  align-items: flex-start;
  max-width: 740px;
  display: flex;
}

.c-message_quote-bottom {
  padding: var(--space-0-8125);
  border-top: 2px solid var(--color-accent-2);
  display: inline-block;
}

.c-form_content {
  grid-column-gap: var(--space-1);
  grid-row-gap: var(--space-1);
  flex-direction: column;
  display: flex;
}

.c-form_content-row {
  grid-column-gap: var(--space-0-5);
  grid-row-gap: var(--space-0-5);
  display: flex;
}

.c-form_element {
  flex: 0 33%;
}

.c-form_input {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--color-primary);
  background-color: #0000;
  height: 50px;
  margin-bottom: 0;
  padding: 0;
}

.c-form_checkbox-content {
  grid-column-gap: var(--space-1);
  grid-row-gap: var(--space-1);
  align-items: stretch;
  display: flex;
}

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

.c-message_signature {
  align-self: flex-end;
  font-style: italic;
}

.c-container_title {
  padding-bottom: var(--space-3-5);
  text-transform: uppercase;
}

.c-home_box-middle {
  padding-right: var(--space-3-5);
  padding-left: var(--space-3-5);
  text-align: center;
  border-right: 1px solid #000;
  flex: 0 50%;
}

.c-home_box-right_text-alignment {
  padding-left: var(--space-3-5);
  text-align: right;
  flex: 0 50%;
}

.c-home_box-image {
  width: 100%;
}

.c-form_textarea {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  min-height: 130px;
  margin-bottom: 0;
}

.c-form_select {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--color-primary);
  color: var(--color-primary);
  font-size: var(--space-1);
  background-color: #0000;
  height: 50px;
  margin-bottom: 0;
  padding: 0;
}

.c-form_checkbox {
  margin-top: 0;
  margin-right: var(--space-1);
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  width: 26px;
  height: 26px;
  margin-left: 0;
  display: inline-block;
}

.c-form_checkbox-component {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form-block {
  margin-bottom: 0;
}

.c-scroll_position {
  height: 100%;
  margin-top: -56px;
  display: block;
  position: absolute;
}

.c-services_grid {
  grid-column-gap: var(--space-2-5);
  grid-row-gap: var(--space-2-5);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-list {
  grid-column-gap: var(--space-0-25);
  grid-row-gap: var(--space-0-25);
  flex-direction: column;
  display: flex;
}

.c-list-title {
  margin-bottom: var(--space-0-8125);
  font-family: var(--font-family-2);
  font-size: .875rem;
  line-height: 1.5rem;
}

.c-footer_table-item-text {
  font-size: .875rem;
  text-decoration: none;
  display: inline-block;
}

.c-color-bg-accent-4 {
  background-color: var(--color-accent-4);
  align-items: center;
}

.c-color-text-accent-4 {
  color: var(--color-accent-4);
}

.c-partner_box-right {
  flex: 0 25%;
}

.c-partner_box-left {
  padding-right: var(--space-3-5);
  border-right: 0 solid #000;
  flex: 0 70%;
}

.aws-logo {
  width: 13rem;
  max-width: 15rem;
}

.c-list-item_text {
  font-size: .875rem;
  text-decoration: none;
  display: inline-block;
}

.c-partner_boxes {
  grid-column-gap: var(--space-1);
  grid-row-gap: var(--space-1);
  grid-template-rows: auto auto;
  grid-template-columns: 65% 35%;
  grid-auto-columns: 1fr;
  place-content: center flex-start;
  align-items: stretch;
  display: grid;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-prefs_title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_text {
  color: var(--color-primary);
  font-size: .75rem;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 1rem;
  height: 1rem;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-banner_text {
  color: var(--color-neutral-300);
  max-width: 70%;
  margin-right: 1.5rem;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: none;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs_label {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.fs-cc-prefs_button {
  border: 1px solid var(--color-accent-4);
  background-color: var(--color-accent-4);
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-banner_button {
  background-color: var(--color-accent-1);
  color: var(--color-primary);
  text-align: center;
  border: 1px solid #000;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background-color: #0000;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: var(--color-accent-4);
  border-top: 1px solid #4353ff29;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.c-form_label {
  font-size: .875rem;
}

.c-accordeon_list-box {
  width: 92%;
  padding-top: 2rem;
  padding-bottom: 5rem;
  padding-right: 5rem;
}

.c-privacy_rich-content h4 {
  font-family: var(--font-family-2);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.c-privacy_rich-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.c-privacy_rich-content p {
  margin-bottom: 1.5em;
}

.c-privacy_rich-content h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  line-height: 1.1;
}

.c-privacy_rich-content ul {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.c-privacy_rich-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 3rem;
}

.c-privacy_rich-content ol {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.c-privacy_rich-content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-privacy_rich-content h5, .c-privacy_rich-content h6 {
  margin-bottom: 1rem;
}

.c-accordeon_list-wrapper {
  justify-content: flex-end;
  transition: height .5s;
  display: flex;
}

.c-accordeon_text {
  margin-right: 2rem;
  transition: margin-left .5s;
  position: relative;
}

.c-accordeon_script {
  display: none;
}

.c-colors-switcher {
  background-color: #000;
  display: none;
}

.c-hero-secondary_image-div {
  flex: 0 50%;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  margin-bottom: auto;
  padding-left: 3.5rem;
  display: flex;
}

.c-hero-secondary_content {
  grid-column-gap: var(--space-1-5);
  grid-row-gap: var(--space-1-5);
  flex-direction: column;
  flex: 0 50%;
  align-self: flex-start;
  padding-right: 3.5rem;
  display: flex;
}

.c-hero-secondary_image {
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 520px;
}

.c-button-width-m {
  width: 15rem;
  display: flex;
}

.c-hero-secondary_flex-boxes {
  grid-row-gap: 3.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.c-button_text-tertiary {
  font-family: Blkfort, sans-serif;
  font-weight: 700;
}

.c-wrapper-xl {
  padding-bottom: 2.5rem;
}

.c-accordeon_column {
  flex: 0 50%;
}

.c-accordeon-content_column {
  display: flex;
}

.c-accordeon_image-icon {
  transform: rotate(90deg)rotate(0);
}

.c-content_column {
  max-width: 740px;
}

.c-accordeon_icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  transition: transform .3s;
  display: flex;
}

.c-text-s {
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.334em;
}

.c-hidden {
  display: none;
}

.c-form-textfield {
  background-color: #0000;
  border: 1px solid #171414;
  border-radius: 0;
  min-height: 63px;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1.6rem;
}

.c-form-textfield::placeholder {
  color: #ada8a8;
}

.c-form_hidden-field {
  display: none;
}

.c-case-study_image {
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 520px;
}

.c-case-study_title-wrapper {
  margin-bottom: 2rem;
}

.c-case-study_content {
  flex: 1;
}

.c-case-study_flex-boxes {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.c-case-study_left-column {
  flex-direction: column;
  flex: 0 50%;
  align-self: flex-start;
  align-items: flex-start;
  padding-right: 3.5rem;
  display: flex;
}

.c-case-study_right-column {
  flex-direction: column;
  flex: 0 50%;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.c-expertise_title-hover {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  transition: transform .5s;
}

.c-expertise-table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-right: 1px solid var(--color-neutral-200);
  border-bottom: 1px solid var(--color-neutral-200);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-expertise_content {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
}

.c-expertise_text-hover {
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  max-height: 0;
  transition: all .5s;
}

.c-grid_animation-hover {
  display: none;
}

.c-expertise_box {
  border-top: 1px solid var(--color-neutral-200);
  border-left: 1px solid var(--color-neutral-200);
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  min-height: 13rem;
  padding: 1rem;
}

.c-expertise_box:hover {
  background-color: var(--color-neutral-50);
}

.c-expertise_text {
  padding-right: var(--space-0-25);
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-icon-xl {
  flex-direction: column;
  width: 1.3rem;
  display: flex;
}

.c-custom-code_accordeon {
  display: none;
}

.c-about-accordeon_row-wrapper {
  border-bottom: 1px solid #000;
  overflow: hidden;
}

.c-custom-code_replacewords {
  display: none;
}

.c-icon-svg {
  flex-direction: column;
  justify-content: space-around;
  display: flex;
}

.c-logo-4xl {
  width: 3rem;
  height: 3rem;
  position: relative;
  inset: 0% auto auto 0%;
}

.c-services_arrow {
  justify-content: flex-end;
  align-self: flex-end;
  height: 1.5rem;
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.c-expertise_link-and-arrow {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.c-about-accordeon_row {
  z-index: 1;
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.c-about-accordeon_text {
  font-family: var(--font-family-2);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.5rem;
}

.c-about-accordeon {
  z-index: 1;
  grid-row-gap: 0px;
  border-top: 1px solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  position: relative;
}

.c-custom-code_about-accordeon {
  display: none;
}

.c-list-ordered {
  margin-bottom: 1rem;
  list-style-type: decimal;
}

.c-rich-content h1 {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  line-height: 4rem;
}

.c-rich-content h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 3rem;
}

.c-rich-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.c-rich-content h4 {
  font-family: var(--font-family-2);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.c-rich-content h5 {
  font-family: var(--font-family-2);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.c-rich-content h6 {
  font-family: var(--font-family-2);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.c-rich-content p, .c-rich-content blockquote, .c-rich-content ol {
  margin-bottom: 1rem;
}

.sg-class-name {
  color: #fff;
  background-color: #7443ff;
  border: 1px #000;
  border-radius: 4px;
  margin-right: 4px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  display: inline-block;
}

.c-wrapper-m {
  margin-bottom: 1rem;
}

.sg-flex {
  justify-content: space-around;
  display: flex;
}

.c-list-unordered {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style-type: disc;
}

.sg-class-name-wrapper {
  flex: 1;
  margin-bottom: .5rem;
}

.c-link-secondary {
  text-decoration: underline;
}

.block-quote {
  margin-bottom: 1rem;
}

.list {
  margin-top: 0;
  margin-bottom: 1rem;
}

.c-referral-section {
  justify-content: space-between;
  max-width: 1920px;
  display: flex;
}

.c-referral-section.cc-inverse-order {
  flex-flow: row-reverse;
}

.c-referral-section_image-wrapper {
  object-fit: cover;
  align-self: center;
  width: 30%;
}

.c-referral-section_image {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 75% 50%;
  border-radius: 100%;
  width: 100%;
  max-width: 270px;
  height: 75%;
}

.c-referral-section_quote-wrapper {
  flex: 0 60%;
  align-self: center;
}

.c-referral_content {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  display: flex;
}

.c-referral_message {
  font-family: var(--font-family-2);
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.text-block {
  font-family: var(--font-family-2);
  font-size: 1.5rem;
  line-height: var(--space-2);
  font-weight: 800;
}

.c-referral_quote-up {
  padding-right: var(--space-0-8125);
}

.c-referral_quote-down {
  padding-left: var(--space-0-8125);
  display: block;
  transform: rotate(180deg);
}

.c-referral_quote {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 5rem;
  line-height: .9em;
  display: inline-block;
}

.c-referral_line-up {
  border-bottom: 2px solid #000;
  align-self: flex-start;
  width: 300px;
}

.c-referral_line-up.cc-color-primary-border {
  border-bottom-color: var(--color-secondary);
}

.c-referral_line-down {
  margin-bottom: var(--space-1);
  border-top: 2px solid #000;
  align-self: flex-end;
  width: 300px;
}

.c-referral_line-down.cc-border-color-secondary {
  border-top-color: var(--color-secondary);
}

.c-referral-section_quote-container {
  flex-flow: column;
  display: flex;
}

.c-referral-section_quote-container.cc-text-color-secondary {
  color: var(--color-secondary);
}

.c-referral_signature {
  font-family: var(--font-family-2);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6875rem;
}

.c-referral_signature-position {
  font-family: var(--font-family-1);
  font-style: normal;
}

.c-referral-section_image-container {
  justify-content: center;
  margin-right: auto;
  display: flex;
}

.c-home_box-left-no-border {
  padding-right: var(--space-3-5);
  flex: 0 50%;
}

.c-title-3_bold {
  font-family: var(--font-family-2);
  font-size: 2rem;
  line-height: 2.5rem;
}

.c-home_box_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.c-button-tertiary-bold {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  font-family: var(--font-family-2);
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.c-button-tertiary-bold:hover {
  text-decoration: underline;
}

.c-button-tertiary-bold.cc-primary {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  flex: 1;
  position: relative;
}

.c-button-tertiary-bold.cc-secondary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #0000;
  flex: 1;
}

.c-button-tertiary-bold.cc-tertiary {
  background-color: #0000;
  padding: 0;
  display: inline-block;
}

.c-button-tertiary-bold.cc-tertiary:hover {
  text-decoration: underline;
}

.c-button_border-animated {
  position: relative;
}

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

.c-home_boxes-reverse {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center flex-start;
  align-items: stretch;
  display: flex;
}

.c-hidden-content {
  display: none;
}

.c-title-accordeon {
  font-family: var(--font-family-2);
  font-size: 1.4rem;
  line-height: 2rem;
}

.c-captcha {
  width: 300px;
  height: 65px;
}

.c-form-wait {
  border: 1px solid #000;
  border-radius: 1px;
  padding: 20px;
  display: none;
}

.c-form-wait-message {
  text-align: center;
}

@media screen and (min-width: 1920px) {
  .c-container, .c-footer_container, .c-collaboration_container {
    margin-left: auto;
    margin-right: auto;
  }

  .c-expertise_text-hover {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-referral-section_quote-wrapper {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  .c-section.cc-color-bg-accent-1 {
    border-bottom: 1px #000;
  }

  .c-title-1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .c-container {
    padding-right: var(--space-1-5);
    padding-left: var(--space-1-5);
  }

  .c-header_content {
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
  }

  .c-header_logo {
    flex: none;
    justify-content: space-around;
  }

  .c-header_item {
    flex: none;
  }

  .c-header_container {
    padding-right: var(--space-1-5);
    padding-left: var(--space-1-5);
  }

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

  .c-hero_image {
    height: 400px;
    min-height: auto;
  }

  .c-footer_container, .c-collaboration_container {
    padding-right: var(--space-1-5);
    padding-left: var(--space-1-5);
  }

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

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_text {
    max-width: none;
    margin-right: 0;
  }

  .c-privacy_rich-content h3 {
    font-size: 2rem;
  }

  .c-hero-secondary_image {
    height: 400px;
    min-height: auto;
  }

  .c-form-textfield {
    flex: 1;
  }

  .c-case-study_image {
    height: 400px;
    min-height: auto;
  }

  .c-expertise-table {
    grid-template-columns: 1fr 1fr;
  }

  .c-expertise_text-hover {
    padding-top: var(--space-1-5);
    max-height: none;
  }

  .c-link-secondary {
    text-decoration: none;
  }

  .c-referral-section_image-wrapper {
    align-self: center;
    width: 40%;
  }

  .text-block {
    font-size: 1.4rem;
  }

  .c-referral_quote {
    font-size: 4rem;
  }

  .c-referral_line-up, .c-referral_line-down {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-color: var(--color-secondary);
    font-size: 1.2rem;
    line-height: var(--space-1-5);
  }

  h1 {
    font-size: 2.81258rem;
  }

  h2 {
    font-size: 2.343rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.406rem;
  }

  h6 {
    font-size: .75rem;
  }

  li {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  label {
    font-size: 1.2rem;
  }

  .c-header {
    border-bottom-style: solid;
  }

  .c-footer_logo {
    padding-top: 0;
    padding-bottom: 0;
  }

  .c-title-1, .c-title-2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .c-title-6 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .c-container {
    padding: var(--space-2) var(--space-1);
  }

  .c-container.cc-mobile_hidden {
    display: none;
  }

  .c-container.cc-desktop-tablet_hidden {
    display: block;
  }

  .c-header_content {
    flex-direction: row;
    align-items: flex-start;
  }

  .c-header_logo {
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }

  .c-header_items {
    background-color: var(--color-secondary);
    flex-direction: column;
    width: 100%;
    height: 100vh;
    transition: opacity .5s;
    display: none;
  }

  .c-header_logo-link {
    padding-left: 0;
  }

  .c-header_item-text {
    background-color: var(--color-secondary);
    border-bottom-style: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .c-header_item-text:hover {
    border-bottom-style: none;
  }

  .c-header_menu-button {
    background-color: var(--color-secondary);
    cursor: pointer;
    flex-direction: column;
    display: none;
    position: absolute;
    inset: 50% auto auto 0%;
    transform: translate(0, -50%);
  }

  .c-header_menu-button.w--open {
    background-color: var(--color-secondary);
    color: var(--color-primary);
  }

  .c-header_menu-wrapper {
    flex-direction: column;
  }

  .c-header_menu-wrapper-line-top {
    background-color: var(--color-primary);
    border: 1px solid #000;
    border-radius: 1px;
    width: 18px;
    height: 3px;
    padding-bottom: 0;
    padding-right: 0;
    transform: translate(0);
  }

  .c-header_menu-wrapper-line-medium, .c-header_menu-wrapper-line-bottom {
    background-color: var(--color-primary);
    border-radius: 1px;
    width: 18px;
    height: 3px;
    margin-top: 3px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .c-header_item {
    padding: var(--space-1);
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .c-header_item-arrow {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    padding-right: 0;
    display: block;
  }

  .c-header_container {
    padding-right: var(--space-1-5);
    padding-bottom: var(--space-1);
    padding-left: var(--space-1-5);
  }

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

  .c-footer_table-column {
    padding-top: var(--space-2);
    margin-right: 0;
  }

  .c-footer_row {
    grid-column-gap: var(--space-0-25);
    grid-row-gap: var(--space-0-25);
    flex-direction: column;
  }

  .c-link {
    padding-bottom: 0;
    padding-right: 0;
  }

  .c-header_items-mobile {
    z-index: 2;
    border-top: 1px solid var(--color-neutral-100);
    background-color: var(--color-secondary);
    opacity: 0;
    flex-direction: column;
    height: 100vh;
    transition: all .5s;
    display: none;
    transform: translate(0, -100vh);
    box-shadow: inset 0 2px 5px #0003;
  }

  .c-home_boxes {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
    flex-flow: column;
    display: flex;
  }

  .c-home_box-right {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .c-home_box-left {
    padding-right: 0;
    padding-bottom: var(--space-2);
    border-bottom: 1px solid #000;
    border-right-style: none;
    border-right-width: 0;
  }

  .c-hero_image-div {
    margin-top: var(--space-1-5);
    justify-content: flex-start;
    padding-left: 0;
  }

  .c-hero_content {
    padding-right: 0;
  }

  .c-hero_flex-boxes {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .c-header_language {
    margin-left: auto;
    position: absolute;
    right: 0%;
  }

  .c-language_items {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
  }

  .c-language_item-text {
    background-color: var(--color-secondary);
    border-bottom-style: none;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .c-language_item-text:hover {
    border-bottom-style: none;
  }

  .c-hero_image {
    height: auto;
  }

  .c-footer_container {
    padding: var(--space-2) var(--space-1);
  }

  .c-accordeon.cc-desktop-tablet_hidden {
    margin-top: var(--space-2);
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .c-accordeon-collmodels_icon-plus {
    width: 1.75rem;
  }

  .c-collaboration_container {
    padding: var(--space-2) var(--space-1);
  }

  .c-accordeon_text-wrapper {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
  }

  .c-collaboration_line-separator.cc-mobile_hidden {
    display: none;
  }

  .c-form_content {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
  }

  .c-form_content-row {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
    flex-direction: column;
  }

  .c-container_title {
    padding-bottom: var(--space-2);
  }

  .c-home_box-middle {
    padding: var(--space-2) 0px;
    text-align: left;
    border-bottom: 1px solid #000;
    border-right-style: none;
    border-right-width: 0;
  }

  .c-home_box-right_text-alignment {
    padding: var(--space-2) 0px 0px;
    text-align: left;
  }

  .c-form_checkbox-component {
    align-items: center;
    display: flex;
  }

  .c-services_grid {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
    grid-template-columns: 1fr;
  }

  .c-partner_box-right {
    padding: var(--space-1) 0px 0px;
    align-self: center;
  }

  .c-partner_box-left {
    border-right-style: none;
    border-right-width: 0;
    padding-right: 0;
  }

  .aws-logo {
    width: 15rem;
    max-width: 25rem;
  }

  .c-partner_boxes {
    grid-column-gap: var(--space-1);
    grid-row-gap: var(--space-1);
    flex-direction: column;
    display: flex;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .fs-cc-banner_text-link {
    font-size: .875rem;
  }

  .fs-cc-banner_close {
    padding: var(--space-0-25);
  }

  .fs-cc-banner_text {
    font-size: .875rem;
  }

  .fs-cc-banner_button {
    padding-top: var(--space-0-25);
    padding-bottom: var(--space-0-25);
    font-size: .875rem;
  }

  .c-accordeon_list-box {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-right: 0;
  }

  .c-privacy_rich-content p {
    font-size: 1rem;
  }

  .c-privacy_rich-content li {
    font-size: 1rem;
    line-height: 1.5;
  }

  .c-privacy_rich-content h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
  }

  .c-privacy_rich-content li {
    line-height: 1.5;
  }

  .c-accordeon_text {
    margin-right: 1.75rem;
    font-size: 2.343rem;
  }

  .c-hero-secondary_image-div {
    margin-top: var(--space-1-5);
    padding-left: 0;
  }

  .c-hero-secondary_content {
    padding-right: 0;
  }

  .c-hero-secondary_image {
    height: auto;
  }

  .c-hero-secondary_flex-boxes {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .c-accordeon_column {
    padding-left: 0;
  }

  .c-accordeon-content_column {
    flex-direction: column;
  }

  .c-content_column {
    padding-right: 0;
  }

  .c-accordeon_icon {
    width: 1.5rem;
  }

  .c-text-s {
    font-size: 1rem;
  }

  .c-form-textfield {
    flex: 1;
    font-size: 1.2rem;
  }

  .c-case-study_flex-boxes {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .c-case-study_left-column {
    padding-right: 0;
  }

  .c-case-study_right-column {
    padding-left: 0;
    display: none;
  }

  .c-expertise-table {
    grid-template-columns: 1fr;
  }

  .c-custom-code_replacewords {
    display: none;
  }

  .c-referral-section {
    flex-flow: column-reverse wrap-reverse;
  }

  .c-referral-section.cc-inverse-order {
    flex-flow: column-reverse;
  }

  .c-referral-section_image-wrapper, .c-referral-section_image {
    width: 100%;
  }

  .c-referral-section_quote-wrapper {
    margin-top: var(--space-2);
  }

  .c-referral-section_image-container {
    margin-top: 0;
  }

  .c-home_box-left-no-border {
    padding-right: 0;
  }

  .c-home_boxes-reverse {
    grid-column-gap: var(--space-2);
    grid-row-gap: var(--space-2);
    flex-flow: column-reverse;
    display: flex;
  }

  .c-title-accordeon {
    font-family: var(--font-family-1);
  }
}

@media screen and (max-width: 479px) {
  .container-4 {
    max-width: none;
  }

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

  .c-header_logo-link {
    padding-left: 0;
  }

  .c-header_container {
    max-width: none;
  }

  .c-accordeon-collmodels_row {
    grid-template-rows: auto;
    grid-template-columns: 90% 10%;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-prefs_button {
    text-align: center;
    margin-bottom: .5rem;
    display: block;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .c-privacy_rich-content h3 {
    font-size: 1.5rem;
  }

  .c-privacy_rich-content h2 {
    font-size: 2.5rem;
  }

  .text-block {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .c-referral_quote-up {
    padding-right: var(--space-0-25);
  }

  .c-referral_quote-down {
    padding-left: 0;
  }

  .c-referral_quote {
    font-size: 3rem;
  }

  .c-referral_signature-position {
    font-size: 1rem;
  }
}

#w-node-c26934f7-d665-47be-9278-cb53bcfb4fc6-992f68b0 {
  align-self: center;
}

#w-node-_1a5ea522-7aaa-78a6-cea8-87ce17b85c12-17b85c0c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2fe8fdd-8b2f-a3ac-8e7d-00cbf4d45bf1-f4d45bed {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-d2fe8fdd-8b2f-a3ac-8e7d-00cbf4d45bf7-f4d45bed {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: center;
}

#w-node-_5e90823e-7393-144c-ff66-7fd5827cde81-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde87-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde8b-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde91-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde95-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde9b-827cde7b, #w-node-ca102bed-ec77-1756-8776-fe53676279b6-676279b6, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7dcd-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7de0-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7df3-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7e06-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7e19-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7e2f-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7e45-2ede7dc8, #slide-1.w-node-d7300eca-429e-caa2-dc40-af532ede7e5b-2ede7dc8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7b24399e-0c04-9f63-80a1-4f876315d1bf-992f68bb, #w-node-_7b24399e-0c04-9f63-80a1-4f876315d1bf-992f68c5 {
  align-self: center;
}

#w-node-ca3fdcb5-e0db-5807-3b08-4268359700bf-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700c6-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700ec-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700f3-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700f8-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700ff-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-426835970106-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-42683597010d-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-42683597011a-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-426835970121-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-426835970126-992f68c5, #w-node-ca3fdcb5-e0db-5807-3b08-42683597012d-992f68c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c26934f7-d665-47be-9278-cb53bcfb4fc6-992f68c6 {
  align-self: center;
}

#w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696a86-992f68c6, #w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696a8d-992f68c6, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e6a-992f68c6, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e70-992f68c6, #w-node-_88f65818-22d9-3833-04cb-dd7fd8385326-992f68c6, #w-node-_88f65818-22d9-3833-04cb-dd7fd838532c-992f68c6, #w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696b21-992f68c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7b24399e-0c04-9f63-80a1-4f876315d1bf-992f6919 {
  align-self: center;
}

#w-node-ca3fdcb5-e0db-5807-3b08-4268359700bf-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700c6-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700ec-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700f3-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700f8-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-4268359700ff-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970106-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-42683597010d-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-42683597011a-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970121-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970126-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-42683597012d-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970132-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970139-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970140-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970147-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970151-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970158-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-42683597016b-992f6919, #w-node-ca3fdcb5-e0db-5807-3b08-426835970172-992f6919 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c26934f7-d665-47be-9278-cb53bcfb4fc6-992f6942 {
  align-self: center;
}

#w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696a86-992f6942, #w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696a8d-992f6942, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e6a-992f6942, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e70-992f6942, #w-node-_88f65818-22d9-3833-04cb-dd7fd8385326-992f6942, #w-node-_88f65818-22d9-3833-04cb-dd7fd838532c-992f6942, #w-node-_1de1d6ff-bd0d-1e6c-7ac0-73324a696b21-992f6942, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251a9f-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251aa6-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251aad-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ab4-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251abb-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ac2-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ac9-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ad1-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ad9-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ae1-992f6948, #w-node-_4e78c886-e859-e9af-3a7c-ace44b251ae9-992f6948, #w-node-e07084dd-c383-56c9-ba34-2bf67400c9d7-992f6948, #w-node-e07084dd-c383-56c9-ba34-2bf67400c9df-992f6948, #w-node-e07084dd-c383-56c9-ba34-2bf67400c9e7-992f6948, #w-node-_12345432-b391-cee4-051b-4790a06f988e-992f6948, #w-node-a0857725-69c0-ad70-f31a-b6d2c7fa2c28-992f6948, #w-node-_2bf9bfe6-6d5e-0a9b-aad4-682ac00c326b-992f6948, #w-node-_0149e844-6f3d-a0cf-9d5e-1d8dc1f8d83d-992f6948 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d5165eeb-be80-dcbe-20f2-01d51f209516-1f2094fa {
  align-self: center;
}

#w-node-_601beb08-7196-e949-8fca-f715c272557c-2752b9cb, #w-node-_601beb08-7196-e949-8fca-f715c2725582-2752b9cb, #w-node-_601beb08-7196-e949-8fca-f715c2725587-2752b9cb, #w-node-_601beb08-7196-e949-8fca-f715c272558d-2752b9cb, #w-node-_601beb08-7196-e949-8fca-f715c2725592-2752b9cb, #w-node-_601beb08-7196-e949-8fca-f715c2725598-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f287725-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f28772b-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f287730-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f287736-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f28773b-2752b9cb, #w-node-f0a6ff9a-71e1-3697-fee8-f4c67f287741-2752b9cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_81068f9f-bcc5-1634-ac28-9888a34e1148-584b7ead {
  align-self: center;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff936-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff941-babeac16 {
  justify-self: end;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff944-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff94f-babeac16 {
  justify-self: end;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff952-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff95d-babeac16 {
  justify-self: end;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff960-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff96b-babeac16 {
  justify-self: end;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff96e-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff979-babeac16 {
  justify-self: end;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff97c-babeac16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16a77a09-c8dd-f34a-d9fe-ab5b1d6ff987-babeac16 {
  justify-self: end;
}

#w-node-c26934f7-d665-47be-9278-cb53bcfb4fc6-7c695645 {
  align-self: center;
}

@media screen and (min-width: 1920px) {
  #w-node-d2fe8fdd-8b2f-a3ac-8e7d-00cbf4d45bf7-f4d45bed {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5e90823e-7393-144c-ff66-7fd5827cde8b-827cde7b, #w-node-_5e90823e-7393-144c-ff66-7fd5827cde95-827cde7b, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e6a-992f68c6, #w-node-_88f65818-22d9-3833-04cb-dd7fd8385326-992f68c6, #w-node-bde38165-2e2d-901c-b790-c9ff37ea8e6a-992f6942, #w-node-_88f65818-22d9-3833-04cb-dd7fd8385326-992f6942 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Blkfort';
  src: url('../fonts/BLKFort-Extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Blkfort';
  src: url('../fonts/BLKFort-Extrabold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Blkfort Book';
  src: url('../fonts/BLKFort-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fort Book';
  src: url('../fonts/Fort-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Twkeverett Regular';
  src: url('../fonts/TWKEverett-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Studio Pro ';
  src: url('../fonts/BB-Studio-Pro-Text.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}