:root {
  --main: #070707;
  --white: white;
  --grey: #999;
  --32: 2rem;
  --1: 1rem;
  --border-radius: .5rem;
  --brand: #b00020;
  --blue\<deleted\|variable-594a0c63\>: #302dd7;
  --1-25: 1.25rem;
  --light-grey\<deleted\|variable-a3c0de89\>: #e9f0f1;
  --black: #0e0e0e;
  --turquoise\<deleted\|variable-aa8217db\>: #82e5ce;
  --blue-hover\<deleted\|variable-681f648a\>: #211fb9;
  --1-5: 1.5rem;
  --1-125: 1.125rem;
  --55: 2.625rem;
  --1-625: 1.625rem;
}

.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-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

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

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

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

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

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

body {
  background-color: var(--main);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.35;
}

h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: var(--grey);
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: color .25s;
}

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

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

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .5rem;
  font-weight: 600;
  display: block;
}

blockquote {
  border-left: .125rem solid var(--main);
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

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

figcaption {
  text-align: center;
  margin-top: .5rem;
  font-size: .875rem;
  font-weight: 500;
}

.padding-global {
  width: 100%;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.button {
  max-height: 3.25rem;
  min-height: 3.25rem;
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  border-radius: var(--border-radius);
  background-color: rgba(56, 152, 236, 0);
  background-image: linear-gradient(100deg, #c61e38, rgba(198, 30, 56, .5));
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.25rem;
  font-weight: 600;
  transition: background-color .25s;
  display: flex;
  position: relative;
}

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

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

.button.is-secondary {
  border: 1.5px solid var(--brand);
  background-image: none;
  font-weight: 500;
}

.button.is-secondary:hover {
  background-color: var(--brand);
  border-style: none;
}

.button.is-text {
  color: var(--blue\<deleted\|variable-594a0c63\>);
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
}

.button.is-icon {
  text-decoration: none;
}

.text-size-medium {
  font-size: var(--1-25);
}

.max-width-medium {
  max-width: 48rem;
}

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

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

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

.nav_menu-icon {
  line-height: 1;
}

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

.footer1_column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
  display: flex;
}

.footer1_column._2 {
  max-width: 340px;
}

.footer1_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.footer1_left {
  max-width: 22.5rem;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-right: 2.5rem;
  display: grid;
}

.form_input {
  width: 50%;
  height: 3.25rem;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0);
  border: .74px solid #bebebe;
  margin-bottom: 0;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  transition: background-color .25s, border-color .25s;
}

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

.form_input::-ms-input-placeholder {
  color: #929292;
  font-size: .875rem;
}

.form_input::placeholder {
  color: #929292;
  font-size: .875rem;
}

.form_input.is-white {
  border-color: var(--white);
}

.form_input.is-white:focus {
  background-color: #f3f7f8;
  border-color: #f3f7f8;
}

.form_input.is-message {
  width: 100%;
  min-height: 18.5625rem;
  padding-top: .75rem;
}

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

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

.read-more_link-wrapper {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-weight: 600;
  display: inline-block;
}

.layout22_item {
  background-color: #fff;
  padding: 2.5rem;
}

.text-size-small {
  font-size: var(--1);
}

.layout23_component {
  width: 100%;
  height: auto;
  background-color: rgba(221, 221, 221, 0);
  justify-content: center;
  align-items: center;
  display: flex;
}

.layout23_slide_nav {
  bottom: -.5rem;
}

.layout23_arrow-circle {
  width: 4rem;
  height: 4rem;
  background-color: var(--brand);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate(-50%);
}

.layout23_arrow-circle.right {
  transform: translate(50%);
}

.layout23_slide_right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: visible;
}

.layout23_slide_left {
  align-items: center;
  display: flex;
  overflow: visible;
}

.layout23_mask {
  height: auto;
}

.layout23_slide {
  max-width: 26.5rem;
  border-radius: var(--border-radius);
  background-color: #252525;
  border: 1px solid #969696;
  margin-right: 1.875rem;
  padding: 1.625rem;
}

.layout1_component {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.1fr;
}

.layout1_component.center {
  display: flex;
}

.layout1_component._2 {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3rem;
  flex-direction: row-reverse;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.layout1_component.small {
  grid-template-columns: 1fr 1.4fr;
}

.layout1_component.about {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.layout1_content {
  max-width: 48.4375rem;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.layout1_content._2 {
  width: 100%;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.faq_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.layout18_lightbox {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.layout19_lightbox {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.layout9_item {
  max-height: 23.125rem;
  min-height: 23.125rem;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid #969696;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 2.5rem;
  display: grid;
}

.layout9_item.values {
  transition: border-color .2s, border-width .2s, background-color .2s;
}

.layout9_item.values:hover {
  background-color: #121212;
  border-style: none;
}

.layout9_item.service {
  max-height: none;
  align-items: start;
  transition: all .2s;
}

.layout9_item.service:hover {
  background-image: linear-gradient(100deg, #c61e38, rgba(198, 30, 56, .5));
}

.form_error-message {
  border-left: .125rem solid var(--brand);
  color: var(--brand);
  background-color: rgba(231, 47, 60, .1);
  margin-top: .5rem;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
}

.protected_wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--light-grey\<deleted\|variable-a3c0de89\>);
  justify-content: center;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.protected_content {
  width: 22.5rem;
  text-align: center;
  flex-direction: column;
  margin-bottom: 0;
}

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

.password_grid {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-columns: 1fr;
  justify-items: stretch;
  margin-top: 1.5rem;
}

.not-found_content {
  width: 24rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

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

.fs-styleguide_header {
  background-color: rgba(48, 45, 215, .1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  background-color: rgba(221, 221, 221, 0);
  border-bottom: .5px solid #565656;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.footer_component {
  background-color: #151515;
}

.nav_menu {
  align-content: space-between;
  justify-content: space-between;
  display: flex;
}

.nav_link {
  padding: .5rem 1rem;
  transition: color .25s;
}

.nav_link:hover {
  color: var(--brand);
}

.nav_link.w--current {
  color: var(--brand);
  font-weight: 700;
}

.footer1_link {
  color: #d3d3d3;
  font-size: 1.125rem;
  line-height: 1.1;
  transition: color .25s;
}

.footer1_link:hover {
  color: var(--brand);
}

.footer_text {
  color: #a9a9a9;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.section_hero.lack {
  background-color: var(--black);
}

.layout1_image-wrapper {
  position: relative;
}

.layout1_image-wrapper.right {
  max-height: 30.875rem;
  max-width: 30.875rem;
  min-height: 30.875rem;
  min-width: 30.875rem;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.layout1_image-wrapper._2 {
  width: 80%;
}

.cms3_link {
  height: 100%;
  color: var(--main);
  flex-direction: column;
  display: flex;
  position: relative;
}

.cms3_link:hover {
  color: var(--main);
}

.form_checkbox {
  border-width: .125rem;
  border-color: var(--light-grey\<deleted\|variable-a3c0de89\>);
  cursor: pointer;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  transition: border-color .25s;
  display: flex;
}

.form_checkbox:hover {
  border-color: #e1e9eb;
}

.form_checkbox.w--redirected-checked {
  border-color: var(--turquoise\<deleted\|variable-aa8217db\>);
  background-color: var(--turquoise\<deleted\|variable-aa8217db\>);
  background-size: .875rem .875rem;
}

.form_checkbox.w--redirected-focus {
  box-shadow: none;
}

.logo {
  line-height: 0;
}

.logo-img {
  overflow: hidden;
}

.layout23_arrow {
  width: 2.25rem;
  font-size: 0;
  line-height: 0;
}

.layout23_arrow.is-rotated {
  transform: rotate(180deg);
}

.pricing4_help_circle {
  width: 1rem;
  height: 1rem;
  background-color: var(--light-grey\<deleted\|variable-a3c0de89\>);
  color: rgba(11, 11, 31, .33);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
}

.contact3_component {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  align-items: center;
  display: flex;
}

.contact3_content {
  max-width: 32.3125rem;
  border-radius: var(--border-radius);
  background-color: var(--black);
  border: 1px solid #4b4b4b;
  padding: 2rem;
}

.contact3_contact-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-columns: 1fr;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.text-rich-text a {
  color: var(--blue\<deleted\|variable-594a0c63\>);
  font-weight: 600;
}

.text-rich-text a:hover {
  color: var(--blue-hover\<deleted\|variable-681f648a\>);
}

.layout32_close {
  margin-right: -1rem;
  padding: 1rem;
}

.form_password-text {
  margin-top: .75rem;
  font-size: .875rem;
  font-weight: 600;
}

.lightbox_play {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.nav_button-wrapper {
  width: 11rem;
  flex: none;
  justify-content: flex-end;
  display: flex;
}

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

.container-large.inner {
  height: 72px;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
}

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

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

.nav_container {
  width: 100%;
  min-height: 3.4375rem;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 11rem auto;
  grid-auto-columns: auto;
  justify-content: stretch;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: flex;
}

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

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

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

.text-size-large {
  font-size: var(--1-5);
}

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

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

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

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

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

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

.padding-xlarge {
  padding: 4rem;
}

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

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

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

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

.nav_link-wrapper {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.margin-xhuge {
  margin: 8rem;
}

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

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

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

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

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

.margin-0 {
  margin: 0;
}

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

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  display: grid;
}

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

.padding-0 {
  padding: 0;
}

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

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

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

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

.fs-styleguide_item-header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 2rem;
}

.overflow-visible {
  overflow: visible;
}

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

.fs-styleguide_background {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .1);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.form_checkbox-icon {
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  width: .875rem;
  height: .875rem;
  background-size: 90%;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  border-radius: .125rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_2-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

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

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.padding-xxlarge {
  padding: 5rem;
}

.fs-styleguide_4-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.fs-styleguide_section-header {
  width: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-regular {
  font-size: var(--1-125);
}

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

.padding-xhuge {
  padding: 8rem;
}

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

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  width: .875rem;
  height: .875rem;
  border-width: .25rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.padding-custom3 {
  padding: 3.5rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-huge {
  margin: 6rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.fs-styleguide_heading-large {
  font-size: 6rem;
}

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

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

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, rgba(0, 115, 230, .1), rgba(255, 255, 255, 0));
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: stretch;
  display: grid;
  position: relative;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

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

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

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

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

.text-style-link {
  color: #000;
  text-decoration: underline;
}

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

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

.fs-styleguide_label {
  background-color: var(--blue\<deleted\|variable-594a0c63\>);
  color: #fff;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

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

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

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.fs-styleguide_3-col {
  width: 100%;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.overflow-auto {
  overflow: auto;
}

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

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

.padding-custom2 {
  padding: 2.5rem;
}

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

.fs-styleguide_item-wrapper {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.form_component {
  margin-bottom: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

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

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

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

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

.fs-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

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

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

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

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

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

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

.padding-xxhuge {
  padding: 12rem;
}

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

.fs-styleguide_1-col {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.form_message-success {
  padding: 1.25rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  background-color: rgba(48, 45, 215, .1);
  border: 1px dashed #0073e6;
  position: relative;
}

.padding-huge {
  padding: 6rem;
}

.fs-styleguide_color.is-3 {
  background-color: var(--white);
}

.fs-styleguide_color.is-1 {
  background-color: var(--main);
}

.fs-styleguide_color.is-2 {
  background-color: var(--light-grey\<deleted\|variable-a3c0de89\>);
}

.fs-styleguide_color.is-4 {
  background-color: var(--blue\<deleted\|variable-594a0c63\>);
}

.fs-styleguide_color.is-5 {
  background-color: var(--blue-hover\<deleted\|variable-681f648a\>);
}

.fs-styleguide_color.is-6 {
  background-color: var(--turquoise\<deleted\|variable-aa8217db\>);
}

.fs-styleguide_color.is-7 {
  background-color: var(--brand);
}

.margin-custom1 {
  margin: 1.5rem;
}

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

.margin-large {
  margin: 3rem;
}

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

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

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

.heading-style-h1 {
  font-size: var(--55);
  line-height: 1.1;
}

.heading-style-h1.letter {
  letter-spacing: -1.65px;
  font-size: 2.5vw;
}

.hide {
  display: none;
}

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

.text-size-huge {
  font-size: var(--32);
}

.text-size-xlarge {
  font-size: var(--1-625);
}

.vertical-sixteen {
  grid-column-gap: var(--1);
  grid-row-gap: var(--1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-sixteen.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.vertical-sixteen.center.maximum, .vertical-sixteen.center.ma {
  max-width: 809px;
}

.gap-2 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  display: flex;
}

.gap-10 {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: flex-start;
}

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

.max {
  max-width: 21.1875rem;
}

.hero-content {
  border-right: 1px solid #5a5a5a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.hero-content.last {
  border-right-style: none;
}

.wrap {
  flex-wrap: wrap;
}

.text-span {
  color: #a9a9a9;
  font-size: var(--32);
}

.image-small {
  width: 24px;
  height: 24px;
  max-height: 24px;
  min-height: 24px;
  min-width: 24px;
}

.gap-16 {
  grid-column-gap: var(--1);
  grid-row-gap: var(--1);
}

.image-medium {
  max-width: 56px;
  min-width: 56px;
  border-radius: 50%;
  transition: all .2s;
}

.image-medium:hover {
  background-color: var(--main);
  filter: invert();
  border: 1px #000;
}

.marquee-horizontal {
  z-index: 200;
  width: 100%;
  height: 8.25rem;
  background-color: #0e0e0e;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.track-horizontal._2 {
  overflow: visible;
}

.marquee-text {
  color: #fff;
  text-transform: uppercase;
  flex: none;
  margin-right: 4vw;
}

.full {
  pointer-events: none;
  background-image: linear-gradient(270deg, #070707, rgba(7, 7, 7, 0) 30%), linear-gradient(270deg, rgba(7, 7, 7, 0) 70%, #070707);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-users {
  grid-column-gap: 1.6875rem;
  grid-row-gap: 1.6875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section_about {
  background-color: var(--black);
  display: flex;
}

.section_about.about {
  background-color: var(--main);
}

.elipse_wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.elipse {
  z-index: -1;
  width: 210px;
  height: 210px;
  background-color: var(--brand);
  filter: blur(400px);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  border-radius: 50%;
  position: relative;
}

.vertical-40 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  display: flex;
}

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

.slide {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.faq-body {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  padding-left: 6.5625rem;
  display: block;
  position: relative;
}

.faq-body.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.inner {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.inner.shrink {
  flex: 1;
}

.faq {
  width: 100%;
  height: 3rem;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  display: flex;
}

.faq.w--open {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq-p {
  width: 100%;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 0;
  overflow: hidden;
}

.vertical-60 {
  width: 100%;
  grid-column-gap: 3.75rem;
  grid-row-gap: 3.75rem;
  flex-direction: column;
  padding-top: 2rem;
  display: flex;
}

.vertical-60.top-null {
  align-items: flex-start;
  padding-top: 0;
}

.section-title-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-direction: column;
  display: flex;
}

.heading-h3 {
  font-size: 3rem;
  line-height: 1.1875;
}

.heading-h3.color {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: #1f1f1f;
  border: 1px solid #262626;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

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

.toggle-text {
  z-index: 2;
  font-size: 1.8vw;
  font-weight: 700;
  position: relative;
}

.faq-wrap {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vertical-40-2 {
  width: 100%;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.icon-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.minus {
  display: none;
}

.svg {
  max-width: 3.75rem;
}

.nav-cover {
  background-color: var(--black);
  margin-top: 4.375rem;
}

.horizontal-8 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.grey {
  width: 1.255rem;
  height: 1.25rem;
  color: #4f4f4f;
}

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

.tiny.grey-color {
  color: #4f4f4f;
  font-size: .875rem;
}

.tiny.grey-color.white {
  color: var(--white);
}

.tes-image {
  max-height: 5.9375rem;
  max-width: 5.9375rem;
  min-height: 5.9375rem;
  min-width: 5.9375rem;
}

.form-field {
  width: 100%;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  display: flex;
}

.form-input.is-message {
  min-height: 17.4375rem;
}

.contact3_form {
  max-width: 49.6875rem;
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.625rem;
  }

  .padding-global {
    padding-right: var(--32);
    padding-left: var(--32);
  }

  .button.is-secondary {
    display: none;
  }

  .nav_menu-button {
    margin-right: -.75rem;
    padding: .75rem;
  }

  .nav_menu-button.w--open {
    color: var(--main);
    background-color: rgba(200, 200, 200, 0);
  }

  .footer1_grid {
    grid-template-columns: auto auto auto;
  }

  .footer1_left {
    margin-right: 0;
  }

  .form_input {
    width: 100%;
  }

  .layout23_slide {
    width: 100%;
    max-width: 100%;
  }

  .layout1_component {
    grid-template-columns: 1fr;
    align-items: center;
  }

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

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

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

  .layout9_item {
    max-height: none;
    min-height: auto;
    padding: 1rem;
  }

  .nav_menu {
    background-color: var(--black);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .nav_link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: block;
  }

  .footer_text {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout1_image {
    max-width: 100%;
  }

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

  .layout1_image-wrapper.right {
    justify-content: center;
    align-items: center;
  }

  .logo {
    margin-right: auto;
  }

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

  .nav_button-wrapper {
    width: auto;
    justify-content: flex-start;
    margin-top: .75rem;
    margin-bottom: 1rem;
    margin-left: 2.5rem;
  }

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

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

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

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

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

  .nav_link-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .margin-xhuge {
    margin: 6rem;
  }

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

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

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

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

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

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

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .inner {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column-reverse;
  }

  .inner.shrink {
    flex-direction: row;
  }

  .faq {
    height: auto;
  }

  .section-title-wrapper {
    width: 85%;
    margin-bottom: 40px;
  }

  .vertical-40-2 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

  .layout22_item {
    padding: 2rem;
  }

  .layout23_arrow-circle {
    width: 3rem;
    height: 3rem;
  }

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

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

  .layout1_content {
    max-width: none;
  }

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

  .layout9_item {
    padding: 2rem;
  }

  .protected_wrap, .not-found_wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .fs-styleguide_header {
    padding: 4rem 1.25rem;
  }

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

  .logo {
    padding-left: 0;
  }

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

  .nav_button-wrapper {
    margin-left: 1.25rem;
  }

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

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

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

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

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

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

  .margin-xhuge {
    margin: 4rem;
  }

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

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

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

  .padding-xxlarge {
    padding: 3rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .fs-styleguide_heading-large {
    font-size: 3rem;
  }

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

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

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

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

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

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

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

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

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

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

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

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

  .fs-styleguide_version {
    font-size: .875rem;
  }

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

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

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

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

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

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

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

  .text-size-huge, .text-size-xlarge {
    font-size: 1rem;
  }

  .section-title-wrapper {
    width: 95%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .padding-global {
    padding-right: var(--1);
    padding-left: var(--1);
  }

  .footer1_grid {
    grid-template-columns: auto;
  }

  .layout23_component {
    margin-bottom: 4rem;
  }

  .layout23_arrow-circle {
    transform: translate(-10%);
  }

  .layout23_arrow-circle.right {
    position: relative;
    transform: translate(10%);
  }

  .layout23_slide_right {
    z-index: 100;
    width: 45%;
  }

  .layout23_slide_left {
    z-index: 100;
  }

  .layout23_mask {
    z-index: 100;
    margin-left: 0;
    margin-right: 0;
  }

  .layout23_slide {
    padding: 1rem;
  }

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

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

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

  .layout9_item.service {
    padding: 1rem;
  }

  .fs-styleguide_header {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

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

  .layout1_image-wrapper.right {
    max-height: none;
    max-width: none;
    min-height: auto;
    min-width: auto;
  }

  .layout23_arrow {
    width: 1.5rem;
  }

  .contact3_component {
    flex-direction: column-reverse;
    display: flex;
  }

  .contact3_content {
    max-width: none;
    padding: 1rem;
  }

  .container-large.inner {
    justify-content: center;
    align-items: flex-start;
  }

  .nav_container {
    grid-template-columns: auto max-content;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .gap-10.vertical {
    flex-direction: column;
    align-items: center;
  }

  .max {
    max-width: 15rem;
  }

  .hero-content {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 1rem;
  }

  .hero-content.phone {
    border-right-style: none;
  }

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

  .text-span {
    font-size: var(--1);
  }

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

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

  .marquee-text {
    margin-right: 8vw;
  }

  .faq-body {
    padding-left: 0;
  }

  .inner {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .inner.shrink {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  .faq {
    width: auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    padding-bottom: 1rem;
    padding-right: 0;
  }

  .faq-p {
    width: auto;
  }

  .vertical-60.top-null {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .section-title-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .heading-h3 {
    text-align: center;
    font-size: 2rem;
  }

  .heading-h3.color {
    width: 40px;
    height: 40px;
    font-size: 4vw;
  }

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

  .toggle-text {
    white-space: normal;
    font-size: 3.5vw;
  }

  .faq-wrap {
    width: 100%;
  }

  .icon-wrap {
    flex: none;
  }

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

#w-node-d8547654-56c7-f54a-abb8-7f4f0841170c-36f48255, #w-node-_867c8a9b-9929-56bb-7384-ff61756f534b-36f48255 {
  align-self: center;
  justify-self: end;
}

#w-node-_2c80abe1-4895-b877-035b-4dbf6d7645f2-36f48255, #w-node-e531cccd-0721-108a-9e72-b02f5f99b91d-5f99b91d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_456e85bd-a038-fc5b-11df-4b6d2740e215-36f4829d, #w-node-_4dc95113-5233-f08d-a98d-5f0747e5e591-36f4829d {
  align-self: center;
  justify-self: end;
}

#w-node-_4dc95113-5233-f08d-a98d-5f0747e5e594-36f4829d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6be732fb-4ac9-af05-1a7b-ef2dfa4b94f2-36f4829d {
  align-self: center;
  justify-self: end;
}

#w-node-_6be732fb-4ac9-af05-1a7b-ef2dfa4b94f5-36f4829d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_6be732fb-4ac9-af05-1a7b-ef2dfa4b9500-36f4829d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1cb7205a-3a3a-7ba3-750a-d1db8a5cbe26-36f482a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4fd3d49-4256-d83f-9397-5d7be6ad8a0d-36f482a3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_52492424-a1ac-c432-e192-992b18ef00ac-36f482b1 {
  align-self: center;
  justify-self: end;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e28b5-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28ba-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28bf-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28c4-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28ca-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28d0-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e28d6-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e29e3-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e29fc-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e29ff-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2a01-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2a04-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2a6d-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2a77-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2a78-36f482b3, #w-node-_35400e75-d645-d4f9-bd42-3d142dedb980-36f482b3, #w-node-_35400e75-d645-d4f9-bd42-3d142dedb981-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2ae6-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2aeb-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2af0-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2af5-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2afa-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2aff-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b09-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b0e-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b13-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b18-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b1d-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b22-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b27-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b2c-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b31-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b36-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b3b-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2b3f-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2b40-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2b42-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2b45-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b4a-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b4f-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b64-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b69-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b6e-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b73-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b78-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b7d-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b87-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b8c-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b91-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b96-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2b9b-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2ba0-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2ba5-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2baa-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2baf-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2bb4-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2bb9-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2bbd-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2bbe-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2bc3-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2bc8-36f482b3, #w-node-_43e896db-8359-884b-328b-2aee0f1e2bcd-36f482b3 {
  justify-self: start;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2c53-36f482b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43e896db-8359-884b-328b-2aee0f1e2caf-36f482b3 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_2c80abe1-4895-b877-035b-4dbf6d7645f2-36f48255 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-cf9d9269-cf6a-7b9c-6b4d-8bdc2c603265-2c60325f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4dc95113-5233-f08d-a98d-5f0747e5e594-36f4829d, #w-node-_6be732fb-4ac9-af05-1a7b-ef2dfa4b9500-36f4829d {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cf9d9269-cf6a-7b9c-6b4d-8bdc2c603265-2c60325f {
    grid-column: span 1 / span 1;
  }

  #w-node-_6be732fb-4ac9-af05-1a7b-ef2dfa4b94f5-36f4829d {
    grid-column: 1 / 2;
  }
}


