@font-face {
  font-family: InterDisplay;
  src: url('../fonts/interdisplay.var.woff2') format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../images/.') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --white: #fff;
  --black: black;
  --aero: #a7d6f4;
  --ink-blue: #002c5c;
  --greyc8: #cac8c8;
  --blue-ff: #4144ff;
  --grey86: #868686;
}

.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 {
  color: #fff;
  font-family: InterDisplay, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: InterDisplay, sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: var(--white);
  margin-bottom: 0;
  font-family: InterDisplay, sans-serif;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

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

sup {
  font-size: .925rem;
  top: -2.2rem;
}

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

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

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

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

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

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

.padding-large {
  padding: 3rem;
}

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

.form_message-success {
  background-color: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 1.25rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

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

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

.main-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  background-image: linear-gradient(0deg, #feca0000 40%, #fff 48%), url('../images/background.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 250%;
  flex-flow: column;
  padding-top: 12rem;
  padding-bottom: 8rem;
  display: flex;
}

.main-wrapper.long {
  background-size: auto, cover;
}

.button {
  color: #000;
  text-align: center;
  background-color: #feca00;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  font-family: InterDisplay, sans-serif;
  font-weight: 600;
}

.section_home-hero {
  background-color: #fff0;
}

.home-hero_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  display: grid;
  position: relative;
}

.home-hero_content-right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 41rem;
  margin-left: 0;
  display: grid;
}

.home-hero_content-right.book {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  place-items: start end;
}

.text-size-18 {
  color: var(--black);
  padding-top: 10px;
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
}

.text-size-18.white {
  color: var(--white);
  padding-top: 0;
  font-size: 1rem;
}

.text-size-18.white.bold {
  color: var(--aero);
  font-size: 1.125rem;
  font-weight: 700;
}

.section_contact {
  background-color: #fff0;
}

.glass-card {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #ffffff59;
  border: 2px solid #ffffff4d;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding: 4rem 2rem;
  display: grid;
  overflow: hidden;
  box-shadow: 0 2px 15px 20px #00000008;
}

.glass-card.small {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: visible;
}

.glass-card.small.first {
  margin-top: -110px;
  overflow: visible;
}

.wrapper {
  color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  width: 90%;
  max-width: none;
  height: 100%;
  padding-bottom: 0;
  display: flex;
}

.h2 {
  color: var(--ink-blue);
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

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

.h2.map {
  position: absolute;
  inset: auto auto 20% 0%;
}

.form-input {
  outline-offset: 0px;
  color: #000;
  letter-spacing: .5px;
  background-color: #fff;
  border: 1px #cac8c8ab;
  border-radius: 12px;
  outline: 3px #000;
  height: 3rem;
  margin-bottom: 0;
  padding: .75rem 1rem;
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 1rem;
  transition: all .2s;
}

.form-input:hover {
  border-color: var(--aero);
}

.form-input.big {
  height: 8rem;
}

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

.home-pricing_form {
  grid-column-gap: 1.9rem;
  grid-row-gap: 1.9rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.form-2-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.navbar_logo-wrapper {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 10rem;
  min-width: 10rem;
  max-width: 10rem;
  display: flex;
}

.navbar_logo-wrapper.is-open {
  color: #0d0d0d;
}

.navbar_logo-wrapper.is-main {
  color: #fff;
  width: 9rem;
  min-width: 9rem;
  max-width: 9rem;
  margin-right: 2rem;
  padding-bottom: .25rem;
  display: flex;
}

.navbar_menu-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar_link-mobile {
  color: #000;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  padding: 0 3.75rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.navbar_link-mobile.no-dropdown {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.navbar_dropdown-product-mobile {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.navbar_dropdown-product-mobile.is-resources {
  grid-template-rows: auto auto auto auto auto auto auto;
}

.navbar_menu-wrapper-desktop {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav_logo {
  width: 100%;
}

.nav_logo.is-inverted {
  filter: invert();
}

.navbar-wrapper {
  height: 5rem;
}

.navbar_dropdown-link-content {
  flex-direction: column;
  align-items: flex-start;
  max-width: 15rem;
  font-size: .875rem;
  line-height: 20px;
  display: flex;
}

.navbar_container-mobile {
  width: 100%;
  max-width: 92.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.navbar_dropdown-product-link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #000;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: grid;
}

.navbar_dropdown-product-link:hover {
  color: #372158;
}

.navbar_dropdown-icon {
  align-self: center;
  margin: auto 0;
  position: relative;
}

.navbar_dropdown-toggle-mobile {
  z-index: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  position: relative;
}

.navbar_dropdown-toggle-mobile.w--open {
  z-index: 9999;
  position: relative;
}

.navbar_dropdown-wrapper-mobile {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  display: flex;
}

.navbar_menu-button {
  display: none;
}

.navbar_menu-button.is-open {
  color: #0d0d0d;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: -1.25rem;
  display: flex;
}

.navbar_menu-button.is-main {
  z-index: 10000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: -1.25rem;
  display: none;
  position: relative;
}

.navbar_menu-wrapper-mobile {
  z-index: 10000;
  text-align: left;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
  display: none;
  position: absolute;
  inset: 0 0% auto;
  overflow: scroll;
}

.navbar_dropdown-link-mobile {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar_component {
  z-index: 999999999;
  border-bottom: 2px solid var(--white);
  color: #fff;
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar_menu-buttons {
  grid-column-gap: .75rem;
  grid-row-gap: 16px;
  border-radius: 4px;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  place-content: space-between flex-end;
  align-items: center;
  padding: 2px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.navbar_menu-buttons.is-menu-mobile {
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-content: space-between;
  justify-items: stretch;
  width: 12rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

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

.navbar_container {
  border-bottom: 1px #0414341a;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbar_mobile-menu-wrapper.is-new {
  margin-left: -3.75rem;
  margin-right: -3.75rem;
}

.navbar_mobile-link-wrapper {
  border-top: 1px solid #d6d6d6;
  flex-direction: column;
  display: flex;
}

.nav-button {
  background-color: var(--aero);
  color: var(--ink-blue);
  text-align: center;
  border-radius: 12px;
  flex: 0 auto;
  order: 0;
  align-self: auto;
  min-width: auto;
  padding: .75rem 2rem;
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all .2s;
}

.nav-button.neg {
  background-color: var(--ink-blue);
  color: var(--white);
  font-family: Euclidfa, Arial, sans-serif;
}

.navbar_menu-wrapper-mobile-top {
  justify-content: space-between;
  height: 5rem;
  min-height: 5rem;
  display: flex;
}

.navbar_mobile-dropdown-list {
  z-index: 10000;
  position: absolute;
}

.navbar_mobile-dropdown-list.w--open {
  z-index: 9999;
  background-color: #3721580d;
  margin-left: -3.75rem;
  margin-right: -3.75rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  position: relative;
}

.navbar_mobile-dropdown-list.is-new.w--open {
  background-color: #f7f7f7;
  margin-top: 0;
  margin-left: -3.75rem;
  margin-right: -3.75rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  position: relative;
}

.navbar_dropdown-link-heading {
  font-size: 1rem;
  font-weight: 600;
}

.footer_component {
  display: block;
}

.footer_logo-link-block {
  width: 9rem;
}

.footer-wrapper {
  z-index: 1000;
  background-color: var(--ink-blue);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
  overflow: hidden;
}

.footer-copyright_legal-link {
  color: var(--white);
  margin-right: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
}

.footer-copyright_legal-link:hover {
  color: var(--aero);
  text-decoration: underline;
}

.footer-copyright_legal-link.is-last {
  margin-right: 0;
}

.footer_content-right {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_content-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #000;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  margin-right: 3rem;
  display: grid;
  position: relative;
}

.footer_content-top {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  display: flex;
}

.home-hero_content-left {
  max-width: 50rem;
}

.home-hero_content-left.sticky {
  position: sticky;
  top: 120px;
  bottom: 0;
}

.navbar_dropdown-link-icon-copy {
  color: #fff;
  background-color: #ff2929;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: .3rem;
  display: flex;
}

.navbar_dropdown-link-icon-copy.is-2 {
  background-color: #ff6229;
}

.navbar_dropdown-link-icon-copy.is-3 {
  background-color: #ff8d29;
}

.navbar_dropdown-link-icon-copy.is-4 {
  background-color: #ffbb29;
}

.navbar_dropdown-link-icon-copy.is-5 {
  background-color: #4fd45d;
}

.navbar_dropdown-link-icon-copy.is-6 {
  background-color: #a3d439;
}

.navbar_dropdown-link-icon-copy.is-7 {
  background-color: #d4c739;
}

.navbar_dropdown-link-icon-copy.is-8 {
  background-color: #3ba042;
}

.navbar_dropdown-link-icon-copy.is-9 {
  background-color: #8d29ff;
}

.navbar_dropdown-link-icon-copy.is-10 {
  background-color: #2957ff;
}

.navbar_dropdown-link-icon-copy.is-11 {
  background-color: #29c2ff;
}

.navbar_dropdown-link-icon-copy.is-12 {
  background-color: #f829ff;
}

.h1-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.h1 {
  z-index: 2;
  color: var(--ink-blue);
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 2%;
  font-family: Euclidfa, Arial, sans-serif;
  font-weight: 700;
  position: relative;
}

.line1 {
  background-color: var(--aero);
  width: 375px;
  height: 25px;
  margin-top: 55px;
  position: absolute;
}

.line1.mobile {
  display: none;
}

.line2 {
  background-color: var(--aero);
  width: 455px;
  height: 25px;
  margin-top: 135px;
  position: absolute;
}

.line2.mobile {
  display: none;
}

.line3 {
  background-color: var(--aero);
  color: var(--aero);
  width: 610px;
  height: 25px;
  margin-top: 215px;
  position: absolute;
}

.line3.mobile {
  display: none;
}

.text-small {
  color: var(--black);
  margin-top: -1px;
  margin-bottom: 0;
  font-family: Euclidfa, Arial, sans-serif;
  font-size: .8rem;
  font-weight: 500;
  line-height: 18px;
}

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

._1-2-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff0;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  display: flex;
}

.icon-text-point {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #000;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.icon-6 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.icon-6.dark {
  color: var(--ink-blue);
}

.text-block-5 {
  color: var(--black);
  font-family: Euclidfa, Arial, sans-serif;
  font-weight: 600;
}

.svg-icon {
  color: var(--ink-blue);
  width: 1.5rem;
  height: 2rem;
}

.svg-icon:hover {
  cursor: pointer;
}

.div-block-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.contact-trigger {
  height: 1px;
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.path {
  color: var(--ink-blue);
}

.subline {
  color: var(--black);
  width: 70%;
  padding-top: 30px;
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 1.125rem;
}

.subline.white {
  width: 100%;
  padding-top: 15px;
}

.subline.contact {
  padding-top: 0;
}

.italic-text {
  color: var(--ink-blue);
  font-weight: 700;
}

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

.div-block-3 {
  background-color: var(--ink-blue);
  text-align: center;
  background-image: url('../images/bgweb.jpg');
  background-position: 50%;
  background-size: cover;
  padding: 100px 0;
}

.div-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-5 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  display: grid;
}

.svg-icon-big {
  color: var(--white);
  width: 4rem;
  height: 4rem;
}

.svg-icon-big:hover {
  cursor: pointer;
}

.h3 {
  color: var(--ink-blue);
  font-family: Euclidfa, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

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

.text-span, .text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-span-7, .text-span-8, .text-span-9, .text-span-10, .text-span-11, .text-span-12, .text-span-13, .text-span-14, .text-span-15, .text-span-16, .text-span-17 {
  color: var(--ink-blue);
  font-weight: 700;
}

.div-block-6 {
  z-index: 10000;
  background-color: #fff0;
  width: auto;
  height: auto;
  margin: -10px -25% -200px 0;
  position: sticky;
  inset: 120px 0% auto auto;
}

.image-2 {
  margin-top: -150px;
}

.sticky-block {
  height: 80px;
}

.div-block-7 {
  display: flex;
  position: relative;
}

.text-span-18 {
  box-shadow: inset 0 -18px 0 0 var(--aero);
  padding-left: 5px;
  padding-right: 5px;
}

.lottie-animation {
  width: 300px;
  height: 300px;
  margin-left: auto;
}

.link-block {
  display: none;
}

.image-3 {
  width: 100px;
  margin-top: -20px;
  margin-right: -20px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-3.bigger {
  width: 125px;
}

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

  h2 {
    font-size: 3.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

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

  .home-hero_content-right {
    max-width: 28rem;
    margin-left: 4rem;
  }

  .glass-card {
    grid-template-columns: auto 1fr;
  }

  .home-pricing_form {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .form-2-col {
    flex-wrap: wrap;
    display: flex;
  }

  .navbar_logo-wrapper {
    display: flex;
  }

  .navbar_logo-wrapper.is-open {
    z-index: 999;
    width: 9rem;
    min-width: 9rem;
    max-width: 9rem;
    display: flex;
    position: relative;
  }

  .navbar_logo-wrapper.is-main {
    margin-right: 0;
  }

  .navbar_menu-icon {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navbar_link-mobile {
    text-transform: none;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
    font-weight: 600;
    display: block;
  }

  .navbar_link-mobile.no-dropdown {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .navbar_dropdown-product-mobile {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar_dropdown-product-mobile.is-resources {
    grid-template-rows: auto auto auto;
  }

  .navbar_menu-wrapper-desktop {
    display: none;
  }

  .navbar_dropdown-link-content {
    max-width: 18rem;
  }

  .navbar_container-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar_dropdown-icon {
    margin-left: 0;
    position: relative;
  }

  .navbar_dropdown-toggle-mobile {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .navbar_menu-button {
    color: #fff;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: -1.25rem;
    padding: 1.25rem;
    display: flex;
  }

  .navbar_menu-button.is-open {
    width: 3rem;
    height: 3rem;
  }

  .navbar_menu-button.is-main {
    z-index: 9999;
    color: #fff;
    display: flex;
    position: relative;
  }

  .navbar_menu-wrapper-mobile {
    z-index: 10000;
    object-fit: fill;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    min-height: auto;
    padding-top: 5rem;
    display: none;
    position: fixed;
    inset: 0 0% 0%;
  }

  .navbar_dropdown-link-mobile {
    text-transform: none;
  }

  .navbar_component {
    text-align: left;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
  }

  .navbar_menu-buttons {
    display: none;
  }

  .navbar_menu-buttons.is-menu-mobile {
    justify-items: stretch;
    margin-top: 6rem;
  }

  .navbar_container {
    min-width: auto;
    max-width: none;
    position: relative;
  }

  .navbar_mobile-menu-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .navbar_mobile-menu-wrapper.is-new {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar_mobile-link-wrapper {
    display: block;
  }

  .navbar_menu-wrapper-mobile-top {
    z-index: 0;
    justify-content: space-between;
    height: 5rem;
    padding-bottom: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    position: absolute;
    inset: 0% 0% auto;
  }

  .navbar_mobile-dropdown-list {
    background-color: #fff;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: -20px;
    padding-top: 0;
    padding-bottom: 0;
    display: none;
  }

  .navbar_mobile-dropdown-list.w--open {
    background-color: #f7f7f7;
    width: 100%;
    margin: 0;
    padding: 0 2.5rem;
    position: relative;
  }

  .navbar_mobile-dropdown-list.is-new {
    position: relative;
  }

  .navbar_mobile-dropdown-list.is-new.w--open {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .footer_content-left {
    margin-bottom: 0;
  }

  .footer_content-top {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    margin-bottom: 0;
    display: grid;
  }

  .h1-wrapper {
    margin-top: 13px;
  }

  .line1 {
    width: 515px;
    margin-top: 50px;
  }

  .line2 {
    width: 300px;
    margin-top: 105px;
  }

  .line3 {
    width: 650px;
    margin-top: 160px;
  }

  ._1-2-grid {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
}

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

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

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

  .padding-vertical.padding-large {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

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

  .home-hero_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .home-hero_content-right {
    max-width: none;
    margin-left: 0;
  }

  .glass-card {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: start;
    max-width: 18rem;
    padding-bottom: 0;
    display: grid;
  }

  .navbar_logo-wrapper.is-open, .navbar_logo-wrapper.is-main {
    width: 8rem;
    min-width: 8rem;
    max-width: 8rem;
  }

  .navbar_link-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar_link-mobile.no-dropdown {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav_logo {
    position: relative;
    top: -.1rem;
  }

  .navbar_dropdown-toggle-mobile, .navbar_dropdown-toggle-mobile.w--open {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar_menu-button.is-open {
    width: 3rem;
    height: 3rem;
    margin-right: -.75rem;
  }

  .navbar_menu-button.is-main {
    margin-right: -.75rem;
  }

  .navbar_component {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
  }

  .navbar_menu-buttons.is-menu-mobile {
    width: 100%;
    margin-top: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar_mobile-menu-wrapper, .navbar_menu-wrapper-mobile-top {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar_mobile-dropdown-list.w--open {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar_mobile-dropdown-list.is-new.w--open {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer_logo-link-block {
    width: 8rem;
  }

  .footer-copyright_legal-link {
    text-decoration: underline;
  }

  .footer {
    padding-top: 1rem;
  }

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

@media screen and (max-width: 479px) {
  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .main-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    background-image: linear-gradient(0deg, #feca0000, #fff 66%), url('../images/background-mobile.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .glass-card {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding: 2rem 1.5rem;
  }

  .glass-card.small {
    margin-top: 0;
  }

  .glass-card.small.first {
    margin-top: 0;
  }

  .wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    width: 100%;
    max-width: none;
    display: grid;
  }

  .h2 {
    font-size: 2rem;
  }

  .h2.map {
    position: static;
    bottom: 0%;
  }

  .navbar_link-mobile {
    display: block;
  }

  .navbar_menu-wrapper-desktop {
    display: none;
  }

  .navbar-wrapper {
    height: 4.375rem;
  }

  .navbar_menu-button.is-main {
    margin-right: -.75rem;
  }

  .navbar_menu-wrapper-mobile {
    padding-top: 4.375rem;
    display: none;
    top: 0;
  }

  .navbar_component {
    display: flex;
  }

  .navbar_container {
    min-width: 0;
    max-width: none;
  }

  .navbar_menu-wrapper-mobile-top {
    height: 4.375rem;
    min-height: auto;
  }

  .navbar_mobile-dropdown-list {
    margin-top: 20px;
    display: none;
  }

  .navbar_mobile-dropdown-list.w--open {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer_content-left {
    width: auto;
    max-width: none;
    margin-right: 0;
  }

  .footer_content-top {
    flex-direction: column;
    place-items: center;
    margin-bottom: 2rem;
  }

  .home-hero_content-left.sticky {
    position: static;
  }

  .h1 {
    white-space: break-spaces;
    margin-top: 0;
    font-size: 2.75rem;
    line-height: 3rem;
    display: block;
  }

  .line1 {
    width: 225px;
    height: 15px;
    margin-top: 30px;
    display: none;
  }

  .line1.mobile {
    display: block;
  }

  .line2 {
    height: 15px;
    margin-top: 77px;
    display: none;
  }

  .line2.mobile {
    display: block;
  }

  .line3 {
    height: 15px;
    margin-top: 125px;
    display: none;
  }

  .line3.mobile {
    display: block;
  }

  .text-small {
    margin-top: 20px;
  }

  .div-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .icon-text-point {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: .25fr 1.5fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: flex;
  }

  .svg-icon.mobile {
    width: 2rem;
  }

  .div-block-2 {
    margin-bottom: 20px;
  }

  .contact-trigger {
    margin-top: 1rem;
  }

  .image {
    margin-left: -10px;
  }

  .subline {
    width: 100%;
  }

  .italic-text {
    font-size: 1.2rem;
  }

  .div-block-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .h3 {
    font-size: 2rem;
  }

  .div-block-6 {
    margin-right: 0%;
    overflow: hidden;
  }

  .image-2 {
    margin-top: 0;
  }

  .sticky-block {
    height: 0;
  }

  .div-block-7 {
    flex-flow: column;
  }

  .lottie-animation {
    width: 150px;
    height: 150px;
    margin-right: -15%;
  }

  .div-block-8 {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
  }

  .link-block {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-3 {
    width: 75px;
    margin-right: 0;
    position: static;
  }

  .div-block-9 {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    display: flex;
  }
}

#w-node-ae1e8dda-c7eb-7d96-b2b8-432009f2c6aa-a4967e48, #w-node-_3806ad4f-c349-f93c-22b7-dca38beac1ab-a4967e48, #w-node-_560a1d02-d717-bc09-1349-39287242bb8d-a4967e48, #w-node-_78ef825d-6a47-eb6d-edce-ee6eb313c9a8-a4967e48 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_98dd355b-3030-5026-3bd4-6947b6f06d0d-a4967e48 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2a4c57d9-95b3-4804-6324-b67de1f6d341-a4967e48, #w-node-ef431feb-2088-d214-0a26-b56ba9d5831d-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58323-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58329-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5832f-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58335-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5833b-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58341-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58347-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5834d-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5835c-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58362-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58368-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5836e-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58374-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5837a-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58380-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d58386-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5838c-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d5839b-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d583a1-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d583a7-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d583ad-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d583b3-a9d58238, #w-node-ef431feb-2088-d214-0a26-b56ba9d583b9-a9d58238, #w-node-_2a4c57d9-95b3-4804-6324-b67de1f6d341-03ff1dff, #w-node-_2a4c57d9-95b3-4804-6324-b67de1f6d341-9052e2fc, #w-node-_2a4c57d9-95b3-4804-6324-b67de1f6d341-01afd78c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_6b07863b-a566-8b2c-6897-cacdc46a3696-c46a368f {
    place-self: auto;
  }

  #w-node-_6b07863b-a566-8b2c-6897-cacdc46a3697-c46a368f {
    justify-self: start;
  }
}


@font-face {
  font-family: 'InterDisplay';
  src: url('../fonts/interdisplay.var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../images/.') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Euclidfa';
  src: url('../fonts/euclidfa-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Euclidfa';
  src: url('../fonts/euclidfa-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}