@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: Spacegrotesk;
  src: url('../fonts/SpaceGrotesk-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --body-heading: #222;
  --blue-main: #2649bd;
  --dark-grey: #978d7f;
  --line-border: #e0ddd6;
  --green: #5dd2a1;
  --white: white;
  --error-red: #cf000c;
  --secondary: #373737;
  --dark-slate-grey: #383838;
  --light-grey: #eae8e5;
  --light-green: #ccf8e9;
  --body-background: #f5f4f2;
}

.w-embed-youtubevideo {
  background-image: url('../images/youtube-placeholder.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

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

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

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('../images/custom-checkbox-checkmark.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 {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.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 {
  color: #222;
  background-color: #f5f4f2;
  font-family: Spacegrotesk, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 29px;
}

h1 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 54px;
  font-weight: 500;
  line-height: 62px;
}

h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 43px;
  font-weight: 500;
  line-height: 50px;
}

h3 {
  margin-bottom: 15px;
  font-size: 34px;
  font-weight: 500;
  line-height: 39px;
}

h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 500;
  line-height: 35px;
}

h5 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

h6 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

p {
  margin-bottom: 25px;
}

a {
  color: var(--body-heading);
  text-decoration: none;
  transition: color .3s;
  display: inline;
}

a:hover {
  color: var(--blue-main);
}

ul {
  padding-left: 22px;
}

ol {
  margin-bottom: 20px;
  padding-left: 26px;
}

li {
  line-height: 42px;
}

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

form {
  flex-direction: column;
  display: flex;
}

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

strong {
  font-weight: bold;
}

blockquote {
  border-left: 3px solid var(--blue-main);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 18px 43px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

figure {
  margin-top: 60px;
  margin-bottom: 60px;
}

figcaption {
  color: var(--dark-grey);
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.page-wrapper {
  overflow: hidden;
}

.header {
  background-color: #fff;
  position: fixed;
  inset: 0% 0% auto;
}

.topbar {
  border-bottom: 1px solid var(--line-border);
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
  padding: 10px 3%;
  display: flex;
}

.header-wrap {
  justify-content: space-between;
  align-items: center;
  padding: .5rem 3%;
  display: flex;
}

.topbar-content {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.topbar-content.hide.flex {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.small-text {
  font-size: 16px;
  line-height: 26px;
}

.small-text.hide {
  line-height: 1.1;
}

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

.dot {
  background-color: var(--body-heading);
  border-radius: 10px;
  width: 4px;
  height: 4px;
  margin-left: 30px;
  margin-right: 30px;
}

.uppercase-link {
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.icon-link {
  flex: 1;
  margin-left: 10px;
}

.nav-link {
  text-transform: capitalize;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 26px;
}

.nav-link.w--current {
  color: var(--blue-main);
}

.nav-link.first {
  padding-left: 0;
}

.nav-link.last {
  padding-right: 0;
}

.brand {
  align-items: center;
  width: 100%;
  max-width: 13rem;
  display: flex;
}

.brand.w--current {
  align-items: center;
  display: flex;
}

.page-title-wrapper {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8rem;
  position: relative;
}

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

.container.flex {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.page-title {
  color: var(--blue-main);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  position: relative;
}

.page-description {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
}

.page-container {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-6 {
  font-size: 18px;
  line-height: 21px;
}

.link {
  color: var(--blue-main);
  text-decoration: underline;
}

.uppercase-text {
  text-align: center;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.button {
  border: 2px solid var(--blue-main);
  background-color: var(--blue-main);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 20px 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 14px;
  transition-property: all;
  transition-duration: .2s;
  display: inline-block;
}

.button:hover {
  border-color: var(--error-red);
  background-color: var(--error-red);
  color: var(--white);
  transform: translate(0, -2px);
}

.button.small {
  padding: 14px 36px;
}

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

.button.outline {
  color: var(--blue-main);
  background-color: #0000;
}

.button.outline:hover {
  border-color: var(--line-border);
  background-color: var(--blue-main);
  color: var(--white);
  border-radius: 5px;
}

.footer {
  color: var(--white);
  background-image: url('../images/freepik__retouch__30442.png');
  background-position: 50%;
  background-size: cover;
  align-items: flex-start;
}

.footer-menu-bar {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-logo-link {
  max-width: 15rem;
  display: block;
  overflow: hidden;
}

.footer-logo-link.w--current {
  justify-content: center;
  align-items: center;
  max-width: 17rem;
  display: flex;
}

.footer-image {
  width: 100%;
  height: 100%;
}

.footer-heading {
  color: var(--body-heading);
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-link {
  color: var(--body-heading);
  text-transform: capitalize;
  padding: 3px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.footer-link:hover {
  color: var(--error-red);
}

.line-5 {
  background-color: var(--error-red);
  width: 74px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.footer-logo {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

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

.footer-copyright {
  border-bottom: 1px solid var(--secondary);
  color: var(--dark-grey);
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  display: flex;
}

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

.footer-link-label {
  color: var(--green);
}

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

.footer-list-item {
  align-items: center;
  padding: 22px 3px 0;
  font-size: 1.25rem;
  line-height: 30px;
  display: flex;
}

.footer-line-link {
  background-color: #0000;
  width: 0;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-social-media {
  justify-content: flex-end;
  display: flex;
}

.social-link-item {
  background-color: var(--dark-slate-grey);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  display: flex;
  overflow: hidden;
}

.social-link-item.first {
  margin-left: 0;
}

.footer-label {
  margin-left: 10px;
  margin-right: 10px;
}

.footer-label.first {
  margin-left: 0;
}

.page-title-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.page-description-wrap {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  display: flex;
}

.heading-1 {
  font-size: 54px;
  line-height: 62px;
}

.section-hero {
  background-color: #fff;
  flex-direction: column;
  padding-top: 6rem;
  display: flex;
  position: relative;
}

.hero-wrapper {
  z-index: 2;
  width: 100%;
  max-width: 48%;
  position: relative;
}

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

.hero-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-title.white {
  color: var(--white);
}

.color-primary {
  color: var(--blue-main);
}

.hero-description {
  margin-top: 20px;
}

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

.hero-cta {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.hero-button {
  margin-right: 20px;
}

.hero-button.qoute-button {
  margin-right: 0;
}

.counter-list {
  flex-flow: column wrap;
  justify-content: flex-end;
  display: flex;
}

.hero-hexagon-large {
  filter: hue-rotate(68deg);
  flex-direction: row;
  width: 80px;
  height: 80px;
  display: flex;
  position: absolute;
  bottom: 60px;
  right: 80%;
  overflow: hidden;
}

.section-reason {
  background-image: linear-gradient(#e3eeff, #fff0 32%), url('../images/3771155_76825.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.reason-wrapper {
  position: relative;
}

.reason-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.title {
  flex-direction: column;
  width: 100%;
  max-width: 760px;
  margin-bottom: 70px;
  display: flex;
}

.title.center {
  text-align: center;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.title.left {
  text-align: left;
  align-items: flex-start;
  max-width: 100%;
}

.title.our-value-title {
  margin-bottom: 0;
}

.reason-layout-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 884px;
  display: grid;
}

.reason-item {
  text-align: center;
  border: 1px solid #000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
  transition: border-radius .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  display: flex;
}

.reason-item:hover {
  border-color: var(--green);
  background-color: var(--white);
  border-radius: 10px;
}

.reason-icon {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 81px;
  height: 81px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.reason-icon-image {
  width: 100%;
  height: 100%;
}

.intro-wrap {
  margin-bottom: 3rem;
  position: relative;
}

.intro-container {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.intro-image {
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.intro-image-large {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.intro-block-content {
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.intro-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.intro-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 46px;
}

.intro-description {
  margin-top: 20px;
  margin-bottom: 40px;
}

.investor-block-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.investor-image {
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.investor-wrap {
  position: relative;
}

.investor-block {
  flex-direction: column;
  width: 100%;
  max-width: 88%;
  display: flex;
  position: relative;
}

.investor-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 46px;
}

.investor-description {
  margin-top: 20px;
  margin-bottom: 40px;
}

.investor-image-large {
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 86%;
  height: 410px;
  display: flex;
  overflow: hidden;
}

.section-services {
  background-color: #f5f4f2;
  border-top: 1px solid #e0ddd6;
}

.title-link-wrap {
  justify-content: flex-start;
  display: flex;
}

.title-link-wrap.center {
  justify-content: center;
}

.title-link-wrap.left {
  text-align: left;
  margin-bottom: 2rem;
}

.title-art {
  z-index: -1;
  width: 39%;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -36px;
  left: -160px;
  right: 0;
  overflow: hidden;
}

.data-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.data-collection-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.data-list-item {
  background-color: var(--white);
  text-align: center;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  min-height: 100px;
  padding: 40px 4%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.data-icon {
  width: 100px;
  height: 100px;
}

.data-icon.solution {
  width: 86px;
  height: 86px;
}

.data-slogan {
  color: var(--blue-main);
  padding-top: 30px;
  padding-bottom: 18px;
}

.data-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 27px;
  line-height: 35px;
}

.data-text {
  margin-top: 5px;
  margin-bottom: 0;
}

.data-image {
  opacity: .08;
  justify-content: center;
  align-items: center;
  width: 160px;
  min-height: 80px;
  display: flex;
  position: absolute;
  bottom: -26px;
  right: -20px;
  overflow: hidden;
}

.data-content {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.title-icon {
  opacity: .2;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 150px;
  height: 100%;
  min-height: 150px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0%;
  overflow: hidden;
}

.page-header-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 52%;
  display: flex;
  position: relative;
}

.page-header-title.term-header-title {
  width: 64%;
}

.project-main-image {
  width: 100%;
  min-height: 500px;
}

.project-summary-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: url('../images/Motifs.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.project-summary-rte ol {
  color: var(--blue-main);
}

.project-summary-rte h3 {
  margin-top: 0;
  margin-bottom: 25px;
}

.project-summary-rte li {
  padding-bottom: 5px;
  line-height: 30px;
}

.inline-link {
  color: var(--blue-main);
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  display: flex;
}

.label-link {
  padding-left: 10px;
}

.benefits {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.benefit-wrap {
  background-color: var(--light-grey);
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  padding: 10%;
  display: flex;
  position: sticky;
  top: 12rem;
  overflow: hidden;
}

.project-button-wrapper {
  margin-top: 42px;
}

.benefit-title {
  margin-top: 0;
  margin-bottom: 46px;
}

.benefit-image {
  opacity: .15;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  overflow: hidden;
}

.benefit-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.benefit-list ul {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.benefit-list li {
  color: var(--blue-main);
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 32px;
  list-style-type: decimal;
}

.benefit-list ol {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.project-attachment {
  position: relative;
}

.attachment-image {
  z-index: 1;
  background-image: url('../images/Pattern.png'), linear-gradient(#020a2c, #2649bd 54%, #020a2c 103%);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 450px;
  display: flex;
  position: relative;
}

.attachment-info {
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 92px;
  position: relative;
}

.attach-title {
  margin-top: 0;
  margin-bottom: 82px;
}

.attach-title.color-primary {
  width: 100%;
  max-width: 850px;
}

.attach-block-list {
  grid-column-gap: 123px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.attach-info-title {
  text-transform: capitalize;
  margin-top: 0;
  font-size: 23px;
  line-height: 31px;
}

.attach-info-description {
  margin-bottom: 0;
}

.gradient-top {
  z-index: -1;
  background-image: url('../images/Gradient-Top.svg');
  background-position: 50% 0;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.gradient-botton {
  z-index: -1;
  background-image: url('../images/Gradient-Bottom.svg');
  background-position: 50% 0;
  background-repeat: repeat-x;
  background-size: cover;
  width: 100%;
  height: 30rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.gradient-botton.hue_rotate {
  filter: hue-rotate(36deg);
}

.other-project {
  padding-top: 10rem;
}

.section-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 500;
  line-height: 50px;
  position: relative;
}

.section-title.heading-1 {
  font-size: 42px;
  line-height: 50px;
}

.section-title.heading-1.our-value-heading {
  z-index: 1;
  margin-top: -7px;
  position: relative;
}

.data-button {
  margin-top: 35px;
}

.team-collection-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-collection-item {
  background-color: var(--light-grey);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.team-picture {
  width: 100%;
}

.team-profile {
  flex-direction: column;
  width: 100%;
  padding: 8% 10%;
  display: flex;
}

.team-profile-name {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.team-profile-job-title {
  margin-top: 10px;
  margin-bottom: 0;
}

.team-item-link {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.team-bio {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-avatar {
  background-image: url('../images/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.team-bio-meta {
  flex-direction: column;
  justify-content: center;
  padding: 7%;
  display: flex;
}

.team-name {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 34px;
  line-height: 42px;
}

.team-short-description {
  margin-bottom: 0;
}

.team-description {
  padding: 60px 160px;
  position: relative;
}

.team-network {
  width: 47px;
  min-height: 100px;
  position: absolute;
  top: 100px;
  left: 0;
}

.social-media-link {
  background-color: var(--blue-main);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 47px;
  margin-bottom: 15px;
  display: flex;
  overflow: hidden;
}

.blog-collection-list {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-footer {
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-category {
  align-items: center;
  display: flex;
}

.blog-title {
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 27px;
  font-weight: 600;
  line-height: 35px;
}

.blog-link {
  display: flex;
}

.blog-description {
  margin-bottom: 36px;
}

.blog-author {
  align-items: center;
  display: flex;
}

.blog-avatar {
  border-radius: 100%;
  width: 56px;
  height: 56px;
  margin-right: 20px;
  display: flex;
  overflow: hidden;
}

.blog-author-name {
  font-weight: 600;
}

.blog-timer {
  color: var(--dark-grey);
}

.blog-grid-item {
  background-color: var(--white);
  border-radius: 30px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.blog-meta {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 20px;
  display: flex;
}

.other-articles {
  border-top: 1px solid var(--line-border);
  padding-top: 100px;
}

.blog-summary-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-summary-title {
  text-transform: capitalize;
  width: 100%;
  max-width: 768px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.blog-summary-meta {
  padding-top: 100px;
}

.blog-summary-grid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.blog-rich-text {
  padding-top: 60px;
  padding-bottom: 0;
}

.blog-rich-text a {
  color: var(--blue-main);
  text-decoration: underline;
}

.blog-rich-text li {
  padding-bottom: 15px;
  line-height: 32px;
}

.hero-about {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  min-height: 40vh;
  display: grid;
  position: relative;
}

.hero-about-section {
  flex-flow: column;
  display: flex;
  position: relative;
}

.uppercase-large-text {
  color: var(--blue-main);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 43px;
  font-weight: 500;
  line-height: 50px;
}

.uppercase-large-text.no-wrap {
  white-space: nowrap;
  font-size: 2rem;
}

.hero-big-title {
  border-bottom: 1px solid var(--line-border);
  flex-direction: column;
  align-self: flex-start;
  padding-bottom: 5px;
  display: flex;
  position: relative;
}

.hero-about-intro {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.hero-about-title {
  margin-top: 0;
  margin-bottom: 26px;
}

.hero-about-title.first {
  font-size: 24px;
  line-height: 32px;
}

.hero-about-title.last {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
}

.hero-about-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.our-story-wrap {
  grid-column-gap: 36px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.our-story-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.our-story-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 10rem;
  display: flex;
  overflow: hidden;
}

.our-story-paragraph {
  width: 100%;
  max-width: 310px;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 1rem;
}

.our-story-title {
  margin-bottom: 30px;
}

.story-rich-text strong {
  float: left;
  margin-top: 10px;
  margin-right: 12px;
  font-size: 62px;
  font-weight: 700;
  line-height: 54px;
  display: block;
}

.story-rich-text p {
  margin-top: 25px;
  margin-bottom: 0;
}

.our-partners {
  padding-bottom: 100px;
}

.partners-title {
  margin-bottom: 94px;
}

.our-partner-title {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 38px;
}

.partner-brand-list {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  height: 31vh;
  display: flex;
}

.partner-brand-item {
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 28%;
  margin: -15px -30px;
  display: flex;
}

.our-value {
  background-color: var(--secondary);
  color: var(--white);
  position: relative;
}

.partner-brand {
  padding: 15px 30px;
}

.our-value-info {
  z-index: 5;
  grid-column-gap: 5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.color-green {
  color: var(--blue-main);
}

.our-value-item {
  border-top: 1px solid #4e4e4e;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 64px;
  display: flex;
}

.number {
  color: var(--blue-main);
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 62px;
  line-height: 62px;
}

.our-value-title {
  margin-bottom: 10px;
}

.bold-text {
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 30px;
}

.our-value-description {
  margin-bottom: 0;
}

.our-value-meta {
  grid-column-gap: 5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 154px;
  display: grid;
}

.our-value-wrap {
  z-index: 1;
}

.circle-image {
  width: 100%;
  max-width: 32%;
  height: 100%;
  max-height: 800px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.circle-line {
  width: 100%;
  height: 100%;
  position: relative;
}

.our-value-cricle {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.our-value-image {
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 232px;
  display: flex;
  position: absolute;
  bottom: 90px;
  right: 80px;
  overflow: hidden;
}

.button-wrap {
  z-index: 1;
  margin-top: 2rem;
  position: relative;
}

.contact-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

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

.form-wrapper {
  background-color: var(--blue-main);
  color: var(--white);
  border-radius: 10px;
  padding: 8% 2rem;
  position: relative;
}

.sidebar-block-item {
  margin-top: 70px;
}

.sidebar-block-item.quote {
  margin-top: 46px;
}

.sidebar-block-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 39px;
}

.sidebar-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 50px;
}

.sidebar-number {
  color: var(--blue-main);
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 700;
  line-height: 39px;
}

.sidebar-paragraph {
  margin-top: 36px;
  margin-bottom: 0;
}

.sidebar-paragraph.quote {
  margin-top: 25px;
}

.block-background {
  background-color: var(--blue-main);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 100%;
  position: relative;
  inset: 0%;
}

.form-control {
  z-index: 1;
  flex-direction: column;
  display: flex;
  position: relative;
}

.form-image {
  opacity: .2;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: absolute;
  bottom: -30px;
  right: -35px;
  overflow: hidden;
}

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

.button-filed {
  align-items: center;
  margin-top: 5px;
  margin-right: -18px;
  display: flex;
}

.input-group {
  margin-bottom: 40px;
}

.input-filed {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--green);
  width: 100%;
  height: 56px;
  color: var(--white);
  background-color: #0000;
  margin-bottom: 0;
  padding: 18px 0 10px;
  font-family: Spacegrotesk, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.input-filed:focus {
  border-bottom-color: var(--green);
}

.input-filed::placeholder {
  color: var(--white);
  font-family: Spacegrotesk, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.input-filed.tracking {
  max-width: 500px;
  margin-right: 20px;
}

.input-filed.gray {
  color: var(--dark-grey);
  text-align: center;
  border-bottom-color: #c1bbb2;
  margin-bottom: 20px;
  padding-bottom: 18px;
}

.input-filed.gray::placeholder {
  color: var(--dark-grey);
}

.textarea {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--green);
  min-height: 100px;
  color: var(--white);
  background-color: #0000;
  margin-bottom: 0;
  padding: 10px 0;
  font-family: Spacegrotesk, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.textarea:focus {
  border-bottom-color: var(--green);
}

.textarea::placeholder {
  color: var(--white);
  font-family: Spacegrotesk, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.form-title {
  margin-bottom: 20px;
}

.form-paragraph {
  margin-left: 30px;
}

.underline-link {
  color: var(--light-green);
  text-decoration: underline;
}

.underline-link:hover {
  color: var(--white);
}

.legal-content {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -36px;
  display: flex;
}

.legal-rich-text a {
  color: var(--blue-main);
}

.legal-rich-text h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 27px;
  line-height: 35px;
}

.legal-rich-text strong {
  font-weight: 500;
}

.legal-rich-text h4 {
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 35px;
}

.legal-rich-text h2 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 42px;
}

.legal-rich-text p {
  margin-top: 20px;
  margin-bottom: 0;
}

.legal-rich-text ul {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 20px;
}

.legal-rich-text li {
  padding-bottom: 10px;
  line-height: 28px;
}

.success-message {
  border: 1px solid var(--light-green);
  background-color: #0000;
}

.error-message {
  border: 1px solid var(--error-red);
  color: var(--error-red);
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
}

.tracking-title {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 42px;
}

.tracking {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-tracking-system {
  background-color: var(--blue-main);
  min-height: 100px;
  color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  padding: 40px 36px;
  display: flex;
}

.tracking-form {
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.full-width-grid {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.investor-grid-layout {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 55vh;
  display: grid;
  overflow: hidden;
}

.investor-grid-image {
  background-image: url('../images/Investor_v2.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 30px;
  width: 100%;
  overflow: hidden;
}

.investor-grid-image.image-1 {
  background-image: url('../images/Investor_v1.jpg');
}

.investor-grid-image.image-3 {
  background-image: url('../images/Investor_v3.jpg');
}

.investor-grid.left {
  padding-left: 0;
}

.investor-number {
  color: var(--blue-main);
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 600;
  line-height: 56px;
}

.investor-column {
  flex-direction: column;
  display: flex;
  position: relative;
}

.investor-paragraph {
  margin-top: 20px;
  margin-bottom: 0;
}

.investor-contact {
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  display: flex;
}

.investor-contact-info {
  width: 100%;
  max-width: 705px;
  min-height: 50px;
}

.investor-contact-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 46px;
}

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

.faq-title {
  width: 100%;
  max-width: 948px;
}

.faq-grid {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  margin-top: 90px;
  display: grid;
}

.faq-sidebar {
  background-color: var(--light-grey);
  border-radius: 20px;
}

.faq-image {
  background-image: url('../images/image1.jpeg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 40vh;
  overflow: hidden;
}

.faq-block {
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  display: flex;
}

.faq-button-wrapper {
  margin-top: 36px;
}

.faq-block-title {
  margin-top: 0;
  font-size: 26px;
  line-height: 34px;
}

.faq-block-title.last {
  margin-top: 46px;
}

.toogle-wrapper {
  overflow: hidden;
}

.toogle-questions {
  z-index: 9999;
  border-bottom: 2px solid var(--line-border);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.toogle-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
}

.toogle-answer {
  text-align: left;
  padding: 0;
}

.toogle-info {
  padding-top: 5px;
  padding-bottom: 5px;
}

.paragraph {
  margin-top: 25px;
  margin-bottom: 0;
}

.toogle-icon {
  width: 15px;
  height: 15px;
  position: relative;
  overflow: hidden;
}

.left-down {
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
}

.utility-page-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
}

.utility-page-content {
  background-color: var(--light-grey);
  text-align: center;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 54%;
  margin-bottom: 0;
  padding: 74px 60px 80px;
  display: flex;
}

.utility-page-title {
  color: var(--blue-main);
  white-space: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  display: block;
}

.utility-page-paragraph {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.utility-page-button {
  margin-top: 30px;
}

.utility-page-form {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.section-testimonial {
  background-image: url('../images/Motifs.svg');
  background-repeat: repeat-x;
  background-size: auto;
  padding-top: 130px;
  padding-bottom: 200px;
  position: relative;
}

.testimonial-list-wrapper {
  padding-left: 185px;
}

.testimonial-list {
  width: 100%;
  max-width: 825px;
}

.testimonial-description {
  margin-bottom: 36px;
  font-family: Domine, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
}

.testimonial-author {
  align-items: center;
  display: flex;
}

.testimonial-author-image {
  border: 2px solid var(--white);
  border-radius: 5px;
  width: 90px;
  height: 90px;
  margin-right: 30px;
  overflow: hidden;
}

.testimonial-author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}

.testimonial-author-titles {
  color: var(--blue-main);
  font-size: 16px;
  line-height: 24px;
}

.arrow {
  background-color: var(--blue-main);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  overflow: hidden;
}

.testimonial-title {
  width: 100%;
  max-width: 980px;
  margin-bottom: 56px;
  padding-left: 185px;
  position: relative;
}

.testimonial-quote {
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: absolute;
  top: 80px;
  left: 100px;
  overflow: hidden;
}

.section-get-started {
  padding-top: 100px;
  padding-bottom: 100px;
}

.get-started-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.get-started-info {
  flex-direction: column;
  display: flex;
}

.get-started-button {
  margin-top: 20px;
}

.media {
  align-items: center;
  margin-right: 36px;
  display: flex;
}

.media-image {
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  display: flex;
  overflow: hidden;
}

.media-list {
  align-items: center;
  display: flex;
}

.testimonial-summary {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-pic {
  background-image: url('../images/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 560px;
  display: flex;
  overflow: hidden;
}

.testimonial-content {
  align-items: center;
  padding: 7%;
  display: flex;
}

.testimonial-summary-name {
  margin-top: 10px;
  font-size: 34px;
  line-height: 42px;
}

.testimonial-short-description {
  margin-top: 20px;
  margin-bottom: 0;
}

.created-by {
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.author-name-label {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
}

.card-title {
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
}

.count-number {
  color: var(--blue-main);
  text-align: center;
  padding-bottom: 5px;
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
}

.delivery-image {
  z-index: 1;
  width: 5rem;
  height: 5rem;
  position: absolute;
  bottom: -72px;
  left: 20px;
}

.section-achievments {
  background-color: #f5f4f2;
}

.hero-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 46%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.hyphen-green {
  background-color: var(--light-green);
  width: 200px;
  height: 17px;
  display: none;
  position: absolute;
  top: 90px;
  right: 220px;
}

.hyphen-pink {
  background-color: #f9e9f1;
  width: 200px;
  height: 17px;
  display: none;
  position: absolute;
  top: 99px;
  right: -160px;
}

.hero-single-image {
  z-index: 1;
  background-image: url('../images/rb_39960.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.counter-slider {
  background-color: #0000;
  height: auto;
  overflow: hidden;
}

.none {
  display: none;
}

.counter-slide-item {
  width: 25%;
}

.data-collection-slider {
  background-color: #0000;
  height: auto;
}

.data-collection-mask {
  margin-left: -18px;
  margin-right: -18px;
}

.data-slider-item {
  width: 33.33%;
  height: 100%;
  padding: 0 18px;
}

.location-image {
  z-index: 1;
  position: absolute;
  bottom: -52px;
  right: 23px;
}

.testimonial-slider {
  background-color: #0000;
  height: auto;
  display: flex;
  overflow: hidden;
}

.testimonial-slider-mask, .testimonial-slide-item {
  width: 100%;
  height: 100%;
}

.title-contact {
  color: var(--body-heading);
  margin-top: 0;
}

.blog-slider {
  background-color: #0000;
  height: auto;
}

.blog-slider-mask {
  margin-left: -18px;
  margin-right: -18px;
}

.blog-slide-item {
  width: 33.33%;
  height: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.outline-arrow {
  border: 2px solid var(--blue-main);
  background-color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
}

.outline-arrow.arrow-left {
  inset: -120px 65px auto auto;
}

.outline-arrow.arrow-right {
  inset: -120px 0 auto auto;
}

.section-description {
  margin-top: 15px;
  margin-bottom: 0;
}

.pagination-item {
  background-color: var(--white);
  width: 50px;
  height: 50px;
  color: var(--body-heading);
  border-width: 0;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
  display: flex;
  overflow: hidden;
}

.pagination-item:hover {
  background-color: var(--blue-main);
  color: var(--white);
}

.subscribe-wrapper {
  overflow: hidden;
}

.subscribe-grid {
  grid-column-gap: 36px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  max-height: 20rem;
  display: grid;
}

.subscribe-picture {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.subscribe-body {
  background-color: var(--light-grey);
  border-radius: 20px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
  display: flex;
  position: relative;
}

.newsletter-picture {
  justify-content: center;
  align-items: center;
  width: 130px;
  display: flex;
  position: absolute;
  inset: -70px -40px auto auto;
  overflow: hidden;
}

.subscribe-form-flex {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.subscribe-form-input-wrapper {
  width: 100%;
  max-width: 370px;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.blog-summary-info-box {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 768px;
  display: flex;
}

.blog-single-author {
  margin-right: 20px;
}

.button-link-wrapper {
  margin-top: 25px;
  display: flex;
}

.background-text {
  z-index: -1;
  color: #000;
  width: 85%;
  height: 85%;
  margin: auto;
  position: absolute;
  inset: 0;
}

.investor-sub-title {
  margin-bottom: 10px;
}

.team-slider {
  background-color: #0000;
  height: auto;
}

.team-slider-mask {
  margin-left: -18px;
  margin-right: -18px;
}

.team-slide-item {
  width: 25%;
  padding-left: 18px;
  padding-right: 18px;
}

.project-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.body {
  background-color: #fff;
}

.service-wrapper, .service-list {
  width: 100%;
  height: 100%;
}

.service-item {
  background-color: var(--white);
  text-align: center;
  border-radius: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 2.5rem 4%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-heading {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
}

.hue_rotate {
  filter: hue-rotate(78deg);
}

.image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  position: static;
  inset: 0%;
}

.unsplash-image {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: auto;
  display: block;
}

.color-secondary {
  color: var(--error-red);
}

.phone-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.phone-image {
  width: 3rem;
}

.contact-title {
  margin-bottom: 1rem;
}

.image-4 {
  filter: hue-rotate(62deg);
}

.image-5 {
  filter: hue-rotate(49deg);
}

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

.image-6 {
  border-radius: 10px;
}

.image-6.greyscale {
  filter: grayscale();
}

.service-h1 {
  color: var(--blue-main);
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1.1;
}

.service-h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
}

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

.text-benefits {
  color: var(--blue-main);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.slogan-text {
  color: var(--light-grey);
  text-align: center;
  text-transform: uppercase;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-visual.mobile {
  width: 100%;
  height: 100%;
}

.image-7 {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.legal-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--body-heading);
  -webkit-text-stroke-color: var(--body-heading);
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 1rem;
  text-decoration: underline;
  display: flex;
}

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

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

.copyright {
  color: var(--body-heading);
  font-size: 1rem;
}

.text-block {
  font-size: 42px;
  font-weight: 500;
  line-height: 50px;
}

.credits {
  color: var(--body-heading);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.certifications-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.certifications-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--body-heading);
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.margin-top.margin-medium {
  margin: 2rem 0 0;
}

.margin-top.margin-small {
  margin-top: 1rem;
}

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

.text-size-medium {
  font-size: 1.25rem;
  line-height: 1.1;
}

.gallery-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image-wrapper {
  height: 15rem;
}

.gallery-img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

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

.margin-vertical.margin-large {
  margin: 4rem 0;
}

.margin-vertical.margin-huge {
  margin: 6rem 0;
}

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

.youtube {
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}

.div-block {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.hours-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.red-span {
  color: #cf000b;
  white-space: nowrap;
  font-weight: 500;
}

.image-9 {
  width: 4rem;
  height: 4rem;
}

.image-10 {
  width: 100%;
  height: 100%;
}

.blue-span {
  color: var(--blue-main);
  font-weight: 600;
}

.image-11 {
  min-height: 4rem;
}

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

.image-12 {
  border-radius: 20px;
}

.topbar-flex {
  flex-flow: column;
  display: flex;
}

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

.text-size-tiny.black {
  color: var(--body-heading);
}

.text-size-tiny.black.semibold {
  font-weight: 600;
}

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

.heading-style-h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-style-h2.text-color-dark {
  color: var(--body-heading);
}

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

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

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

.fs-styleguide_hero-label {
  color: #000;
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.padding-custom3 {
  padding: 3.5rem;
}

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

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.overflow-visible {
  overflow: visible;
}

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

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

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

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

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

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

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

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

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

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

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

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

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

.text-size-medium-2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
}

.padding-small {
  padding: 1rem;
}

.fs-styleguide_header {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

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

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

.pointer-events-auto {
  pointer-events: auto;
}

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

.text-color-alternate {
  color: #fff;
}

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

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

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.heading-style-h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

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

.margin-custom1 {
  margin: 1.5rem;
}

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

.form_component {
  margin-bottom: 0;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

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

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

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

.margin-xxlarge {
  margin: 5rem;
}

.margin-small {
  margin: 1rem;
}

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

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

.hide-2 {
  display: none;
}

.overflow-scroll {
  overflow: scroll;
}

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

.padding-xhuge {
  padding: 8rem;
}

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

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

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

.padding-xxhuge {
  padding: 12rem;
}

.text-color-primary {
  color: #000;
}

.padding-large {
  padding: 3rem;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

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

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

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

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

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

.heading-style-h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
}

.padding-custom1 {
  padding: 1.5rem;
}

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

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

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

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

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.padding-0 {
  padding: 0;
}

.overflow-auto {
  overflow: auto;
}

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

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

.margin-xxhuge {
  margin: 12rem;
}

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

.padding-custom2 {
  padding: 2.5rem;
}

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

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

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

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

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

.text-color-secondary {
  color: #222;
}

.margin-bottom, .margin-bottom.margin-large, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.text-size-regular-2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.1;
}

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

.margin-large {
  margin: 3rem;
}

.margin-0 {
  margin: 0;
}

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

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

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

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

.form_message-success {
  color: #114e0b;
  background-color: #cef5ca;
  padding: 1.25rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.background-color-alternate {
  background-color: #fff;
}

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

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

.padding-section-large.top-huge {
  padding-top: 14rem;
}

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

.margin-xlarge {
  margin: 4rem;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button-2.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button-2.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #222;
}

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

.button-2.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

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

.margin-top-2, .margin-top-2.margin-xxlarge, .margin-top-2.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-medium {
  margin: 2rem;
}

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

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

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-custom2 {
  margin: 2.5rem;
}

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

.padding-medium {
  padding: 2rem;
}

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

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

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

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

.padding-xxlarge {
  padding: 5rem;
}

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

.form_message-error {
  color: #3b0b0b;
  background-color: #f8e4e4;
  margin-top: .75rem;
  padding: .75rem;
}

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

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

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

.text-size-large {
  color: #fff;
  font-size: 1.5rem;
}

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

.fs-styleguide_label {
  color: #fff;
  background-color: #03086b;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

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

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

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

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

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.fs-styleguide_3-col {
  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;
  width: 100%;
  display: grid;
}

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

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

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

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

.margin-huge {
  margin: 6rem;
}

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

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

.margin-xhuge {
  margin: 8rem;
}

.padding-huge {
  padding: 6rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.form_input {
  background-color: #0000;
  border: 1px solid #eee;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: #222;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

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

.background-color-secondary {
  background-color: #03086b;
}

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

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

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

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

.background-color-tertiary {
  background-color: #dd23bb;
}

.padding-xlarge {
  padding: 4rem;
}

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

.spacer-large {
  padding-top: 3rem;
}

.background-color-primary {
  color: #fff;
  background-color: #000;
}

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

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

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

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

.fs-styleguide_message {
  color: #5e5515;
  background-color: #fcf8d8;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

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

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

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

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

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

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

.heading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

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

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

.section-main {
  padding-top: 8rem;
}

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

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

.services-grid-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.special-wrap {
  color: var(--error-red);
}

.section-hp-header {
  background-image: linear-gradient(#000000bf, #000000bf), url('../images/alp-truck-1-1.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hp-header-content {
  max-width: 60rem;
}

.padding-section-xhuge {
  padding-top: 15rem;
}

.heading-wrapper-hero {
  width: 100%;
}

.quote-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}

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

.milestones-heading-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
}

.button-3 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-3.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

.section_faq4 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

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

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

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

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

.faq4_list {
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

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

.faq4_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

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

.faq4_accordion {
  border: var(--\<unknown\|relume-variable-border-width\>) solid var(--\<unknown\|relume-variable-color-scheme-1-border\>);
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-foreground\>);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

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

.faq4_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

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

.faq4_icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.button-4 {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-4.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

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

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

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

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

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

.faq6_list-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq6_accordion {
  border-bottom: 1px solid #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.faq6_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq6_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq6_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.language-wrapper {
  z-index: 999;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
  position: fixed;
  inset: auto 1% 1% auto;
}

.language-flag {
  width: 2rem;
}

.milestones-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

@media screen and (min-width: 1280px) {
  .page-container {
    padding-top: 80px;
  }

  .footer-logo {
    padding-top: 120px;
  }

  .footer-navbar-wrapper {
    grid-column-gap: 100px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-wrapper {
    max-width: 571px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 64px;
  }

  .hero-description {
    margin-top: 25px;
  }

  .hero-cta {
    margin-top: 50px;
  }

  .hero-hexagon-large {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 420px;
  }

  .title.center {
    max-width: 638px;
  }

  .investor-block {
    max-width: 520px;
  }

  .attach-info-title {
    font-size: 25px;
    line-height: 33px;
  }

  .section-title {
    font-size: 46px;
    line-height: 54px;
  }

  .team-avatar {
    min-height: 570px;
  }

  .team-bio-meta {
    padding: 9%;
  }

  .blog-avatar {
    width: 60px;
    height: 60px;
  }

  .blog-rich-text {
    padding-bottom: 5px;
  }

  .hero-about {
    min-height: auto;
  }

  .investor-grid-layout {
    min-height: 58vh;
  }

  .testimonial-pic {
    min-height: 570px;
  }

  .testimonial-content {
    padding: 9%;
  }

  .count-number {
    font-size: 50px;
    line-height: 56px;
  }

  .hyphen-green {
    width: 250px;
    display: flex;
    top: 100px;
    right: 190px;
  }

  .hyphen-pink {
    width: 250px;
    display: flex;
    top: 88px;
    right: -150px;
  }

  .subscribe-picture {
    min-height: 470px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 20px;
    line-height: 30px;
  }

  .page-title {
    font-size: 78px;
    line-height: 78px;
  }

  .page-container {
    padding-top: 0;
  }

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

  .footer-navbar-wrapper {
    grid-column-gap: 140px;
  }

  .page-description-wrap {
    max-width: 528px;
  }

  .hero-wrapper {
    max-width: 600px;
  }

  .hero-description {
    margin-top: 30px;
  }

  .hero-cta {
    margin-top: 60px;
  }

  .hero-hexagon-large {
    width: 100px;
    height: 100px;
    bottom: 28px;
    right: 550px;
  }

  .title.center {
    max-width: 694px;
  }

  .intro-title {
    font-size: 43px;
    line-height: 50px;
  }

  .investor-block {
    max-width: 600px;
  }

  .investor-title {
    font-size: 43px;
    line-height: 50px;
  }

  .investor-image-large {
    width: 580px;
    height: 467px;
  }

  .section-services {
    padding-top: 0;
    padding-bottom: 0;
  }

  .title-art {
    width: 45%;
  }

  .data-list-item {
    padding: 45px 30px;
  }

  .data-title {
    font-size: 30px;
    line-height: 38px;
  }

  .project-main-image {
    min-height: 600px;
  }

  .project-summary-grid {
    padding: 120px 0;
  }

  .project-attachment {
    padding-bottom: 225px;
  }

  .attachment-image {
    min-height: 500px;
  }

  .attachment-info {
    padding-bottom: 120px;
  }

  .attach-info-title {
    font-size: 27px;
    line-height: 35px;
  }

  .gradient-top {
    height: 540px;
  }

  .gradient-botton {
    height: 512px;
  }

  .other-project {
    padding-top: 120px;
  }

  .section-title {
    font-size: 50px;
    line-height: 58px;
  }

  .team-avatar {
    min-height: 630px;
  }

  .team-bio-meta {
    padding: 10%;
  }

  .team-description {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .team-network {
    top: 120px;
  }

  .blog-title {
    font-size: 30px;
    line-height: 38px;
  }

  .blog-avatar {
    width: 66px;
    height: 66px;
  }

  .blog-meta {
    padding-left: 50px;
    padding-right: 50px;
  }

  .other-articles {
    padding-top: 120px;
  }

  .blog-rich-text {
    padding-bottom: 30px;
  }

  .hero-about {
    min-height: auto;
  }

  .hero-big-title {
    margin-right: 70px;
  }

  .hero-about-title.first, .hero-about-title.last {
    font-size: 28px;
    line-height: 36px;
  }

  .our-partners {
    padding-bottom: 120px;
  }

  .partners-title {
    margin-bottom: 120px;
  }

  .our-partner-title {
    font-size: 35px;
    line-height: 43px;
  }

  .partner-brand-list {
    height: 35vh;
  }

  .circle-image {
    max-height: 820px;
  }

  .sidebar {
    max-width: 400px;
  }

  .button-filed {
    margin-right: 0;
  }

  .input-filed, .input-filed::placeholder {
    font-size: 20px;
    line-height: 30px;
  }

  .full-width-grid {
    grid-row-gap: 120px;
  }

  .investor-grid-layout {
    grid-column-gap: 120px;
    min-height: 70vh;
  }

  .investor-column {
    flex-direction: column;
    padding-right: 32px;
    display: flex;
    position: relative;
  }

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

  .faq-grid {
    grid-column-gap: 70px;
    margin-top: 110px;
  }

  .faq-image {
    min-height: 46vh;
  }

  .utility-page-content {
    max-width: 50%;
  }

  .utility-page-title {
    font-size: 43px;
    line-height: 50px;
  }

  .section-testimonial {
    padding-top: 160px;
    padding-bottom: 380px;
  }

  .testimonial-quote {
    width: 200px;
    height: 200px;
    top: 70px;
    left: 70px;
  }

  .section-get-started {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .testimonial-pic {
    min-height: 630px;
  }

  .testimonial-content {
    padding: 10%;
  }

  .testimonial-summary-name {
    font-size: 54px;
    line-height: 62px;
  }

  .card-title {
    font-size: 27px;
    line-height: 35px;
  }

  .count-number {
    font-size: 60px;
    line-height: 66px;
  }

  .delivery-image {
    bottom: -72px;
    left: 26px;
  }

  .section-achievments {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-image {
    max-width: 730px;
  }

  .hyphen-green {
    width: 270px;
    height: 23px;
    top: 100px;
    right: 250px;
  }

  .hyphen-pink {
    width: 270px;
    height: 23px;
    top: 98px;
    right: -202px;
  }

  .hero-single-image {
    height: 90%;
  }

  .location-image {
    bottom: -52px;
    right: 31px;
  }

  .pagination-item {
    width: 56px;
    height: 56px;
    margin-top: 70px;
    font-size: 20px;
    line-height: 30px;
  }

  .subscribe-body {
    padding-left: 50px;
    padding-right: 50px;
  }

  .newsletter-picture {
    width: 200px;
    top: -80px;
    right: -70px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .hero-visual.mobile {
    width: 100%;
  }

  .hp-header-content {
    max-width: 60rem;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 22px;
    line-height: 32px;
  }

  .header {
    margin-left: auto;
    margin-right: auto;
  }

  .header-wrap {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .page-title {
    font-size: 90px;
    line-height: 90px;
  }

  .page-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-logo {
    padding-top: 160px;
  }

  .footer-navbar-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .page-description-wrap {
    max-width: none;
  }

  .section-hero {
    padding-top: 0;
  }

  .section-hero.padding {
    padding-top: 7rem;
  }

  .hero-wrapper {
    max-width: 680px;
  }

  .hero-hexagon-large {
    width: 120px;
    height: 120px;
    bottom: 15px;
    right: 628px;
  }

  .section-reason {
    background-image: linear-gradient(#e3eeff, #fff0 32%), url('../images/rb_61769.png');
    background-position: 0 0, 100% 100%;
    background-size: auto, contain;
  }

  .title.center {
    max-width: 750px;
  }

  .intro-image-large {
    width: 100%;
    height: auto;
  }

  .investor-image-large {
    width: 680px;
    height: 548px;
  }

  .section-services {
    padding-top: 0;
    padding-bottom: 0;
  }

  .title-art {
    width: 55%;
  }

  .data-list-item {
    padding: 50px 36px;
  }

  .page-header-title {
    max-width: 60%;
  }

  .project-main-image {
    min-height: 650px;
  }

  .project-summary-grid {
    padding-bottom: 160px;
    padding-left: 0;
    padding-right: 0;
  }

  .project-attachment {
    padding-bottom: 0;
  }

  .attachment-info {
    padding-bottom: 160px;
  }

  .gradient-top {
    height: 625px;
  }

  .gradient-botton {
    height: 503px;
  }

  .other-project {
    padding-top: 0;
  }

  .section-title {
    font-size: 54px;
    line-height: 62px;
    position: relative;
  }

  .section-solutions {
    padding-top: 0;
    padding-bottom: 0;
  }

  .team-avatar {
    min-height: 700px;
  }

  .team-bio-meta {
    padding: 12%;
  }

  .team-description {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .team-network {
    top: 160px;
  }

  .other-articles {
    padding-top: 160px;
  }

  .blog-rich-text {
    padding-bottom: 57px;
  }

  .hero-about {
    min-height: auto;
  }

  .hero-big-title {
    margin-right: 70px;
  }

  .hero-about-intro {
    flex-direction: column;
    max-width: 570px;
    display: flex;
  }

  .hero-about-title.first, .hero-about-title.last {
    font-size: 2rem;
    line-height: 50px;
  }

  .our-partners {
    padding-bottom: 160px;
  }

  .partners-title {
    margin-bottom: 154px;
  }

  .our-partner-title {
    font-size: 43px;
    line-height: 50px;
  }

  .number {
    font-size: 96px;
    line-height: 96px;
  }

  .circle-image {
    max-width: 36%;
    max-height: 950px;
  }

  .input-filed, .input-filed::placeholder {
    font-size: 22px;
    line-height: 32px;
  }

  .legal-rich-text ul {
    padding-left: 22px;
  }

  .full-width-grid {
    grid-row-gap: 160px;
  }

  .investor-grid-layout {
    grid-column-gap: 160px;
    min-height: 60vh;
  }

  .faq-grid {
    margin-top: 150px;
  }

  .faq-image {
    min-height: 43vh;
  }

  .utility-page-content {
    max-width: 37%;
  }

  .section-testimonial {
    padding-top: 200px;
    padding-bottom: 300px;
  }

  .testimonial-quote {
    width: 300px;
    height: 300px;
    top: 0;
    left: -30px;
  }

  .section-get-started {
    padding-bottom: 120px;
  }

  .testimonial-pic {
    min-height: 700px;
  }

  .testimonial-content {
    padding: 12%;
  }

  .count-number {
    font-size: 70px;
    line-height: 76px;
  }

  .delivery-image {
    left: -23px;
  }

  .section-achievments {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-image {
    max-width: 830px;
  }

  .hyphen-green {
    width: 324px;
    height: 27px;
    right: 210px;
  }

  .hyphen-pink {
    width: 324px;
    height: 27px;
    top: 109px;
    right: -170px;
  }

  .hero-single-image {
    height: 100%;
  }

  .location-image {
    right: -20px;
  }

  .pagination-item {
    width: 66px;
    height: 66px;
    font-size: 22px;
  }

  .subscribe-grid {
    grid-column-gap: 36px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .subscribe-picture {
    width: 100%;
    height: 100%;
    min-height: 550px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 54px;
  }

  h2 {
    font-size: 36px;
    line-height: 44px;
  }

  h3 {
    font-size: 30px;
    line-height: 38px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  h6 {
    font-size: 16px;
    line-height: 22px;
  }

  .header {
    border-bottom: 1px solid var(--line-border);
  }

  .topbar {
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .small-text.hide {
    display: none;
  }

  .dot {
    margin-left: 15px;
    margin-right: 15px;
  }

  .dot.hide {
    display: none;
  }

  .nav-link {
    border-bottom: 1px solid var(--green);
    color: var(--white);
    display: block;
  }

  .nav-link:hover {
    color: var(--white);
  }

  .nav-link.first {
    padding-left: 25px;
  }

  .nav-link.first.w--current {
    color: var(--white);
  }

  .nav-link.last {
    border-bottom-width: 0;
    padding-right: 25px;
  }

  .page-title-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container {
    width: 100vw;
  }

  .container.flex {
    flex-flow: column;
    align-items: center;
    width: auto;
  }

  .page-title {
    font-size: 52px;
    line-height: 60px;
  }

  .page-description {
    margin-top: 10px;
  }

  .page-container {
    padding-bottom: 80px;
  }

  .heading-6 {
    font-size: 16px;
    line-height: 22px;
  }

  .footer {
    padding-top: 3rem;
    padding-bottom: 40px;
  }

  .footer-menu-bar {
    justify-content: flex-start;
    padding-bottom: 50px;
  }

  .line-5 {
    inset: 0% auto auto 0%;
  }

  .footer-logo {
    width: 25%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-navbar {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-copyright {
    grid-row-gap: 10px;
    border-top: 1px solid var(--secondary);
    border-bottom-width: 0;
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .footer-navbar-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: start end;
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 2rem;
  }

  .footer-navbar-list {
    padding-left: 0;
  }

  .footer-list-item {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-social-media {
    justify-content: center;
    margin-right: 0;
  }

  .page-title-container {
    grid-column-gap: 0px;
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .page-description-wrap {
    justify-content: flex-start;
    max-width: none;
    padding-left: 70px;
    padding-right: 70px;
  }

  .heading-1 {
    font-size: 46px;
    line-height: 54px;
  }

  .section-hero {
    padding-top: 4rem;
  }

  .hero-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-title.tablet, .hero-title.white.mobile {
    text-align: center;
  }

  .hero-description {
    margin-bottom: 0;
  }

  .hero-button {
    padding-right: 0;
  }

  .counter-list {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .hero-hexagon-large {
    width: 100px;
    display: none;
    bottom: 300px;
  }

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

  .title {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    display: flex;
  }

  .title.left {
    align-items: center;
  }

  .title.our-value-title {
    align-items: flex-start;
  }

  .reason-layout-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .reason-item {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .intro-container {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .intro-image-large {
    background-position: 50%;
    width: 100%;
  }

  .intro-block-content {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .intro-block {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    max-width: none;
    margin-top: 10px;
    margin-bottom: 3rem;
  }

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

  .intro-description {
    margin-top: 20px;
  }

  .investor-block-content {
    text-align: center;
    align-items: center;
  }

  .investor-block {
    width: auto;
    max-width: none;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 25px;
  }

  .investor-title {
    font-size: 34px;
    line-height: 42px;
  }

  .investor-description {
    margin-top: 20px;
  }

  .investor-image-large {
    background-position: 50%;
    width: 100%;
  }

  .title-art {
    display: none;
    left: 0;
  }

  .data-collection-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .data-title {
    font-size: 28px;
  }

  .title-icon {
    opacity: .1;
    height: 200px;
    margin: auto;
    position: absolute;
    inset: 0;
  }

  .page-header-title {
    justify-content: center;
    max-width: none;
    padding-right: 0;
    position: static;
  }

  .project-summary {
    background-image: none;
    padding-bottom: 36px;
  }

  .project-summary-grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
    padding: 60px 0 0;
  }

  .inline-link {
    justify-content: center;
  }

  .benefits {
    justify-content: space-between;
  }

  .benefit-wrap {
    max-width: none;
    padding: 50px;
  }

  .project-button-wrapper {
    justify-content: center;
    margin-top: 30px;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
  }

  .project-attachment {
    padding-bottom: 108px;
  }

  .attachment-image {
    min-height: 400px;
  }

  .attachment-info {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .attach-title.color-primary {
    margin-bottom: 50px;
  }

  .attach-block-list {
    grid-column-gap: 80px;
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .gradient-top {
    height: 444px;
  }

  .gradient-top.hue_rotate {
    height: 600px;
  }

  .other-project {
    padding-top: 80px;
  }

  .section-title, .section-title.heading-1 {
    font-size: 36px;
    line-height: 44px;
  }

  .section-title.heading-1.our-value-heading {
    margin-top: 0;
  }

  .hide {
    display: none;
  }

  .team-collection-list {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .team-bio {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .team-avatar {
    min-height: 728px;
  }

  .team-bio-meta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .team-short-description {
    font-size: 18px;
    line-height: 28px;
  }

  .team-description {
    flex-direction: column;
    padding: 40px 80px 80px;
    display: flex;
  }

  .team-network {
    order: 1;
    justify-content: center;
    width: 100%;
    min-height: auto;
    display: flex;
    position: static;
  }

  .social-media-link {
    width: 47px;
    margin-bottom: 0;
    margin-right: 20px;
  }

  .team-rich-text {
    padding-bottom: 40px;
  }

  .other-team {
    border-top: 1px solid var(--line-border);
    padding-top: 80px;
  }

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

  .section-articles {
    padding-bottom: 80px;
  }

  .other-articles {
    padding-top: 76px;
  }

  .blog-summary-title {
    font-size: 42px;
    line-height: 50px;
  }

  .blog-summary-meta {
    padding-top: 70px;
  }

  .blog-rich-text {
    padding-top: 40px;
  }

  .hero-about {
    min-height: auto;
  }

  .hero-about-section {
    justify-content: space-between;
  }

  .uppercase-large-text {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-about-intro {
    max-width: 73%;
  }

  .hero-about-image {
    display: none;
  }

  .our-story-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .our-story-wrapper {
    text-align: center;
    align-items: center;
    padding-top: 0;
  }

  .our-story-paragraph {
    max-width: none;
  }

  .our-story-title {
    margin-bottom: 50px;
  }

  .our-partners {
    padding-bottom: 80px;
  }

  .partners-title {
    margin-bottom: 70px;
  }

  .our-partner-title {
    font-size: 25px;
    line-height: 33px;
  }

  .partner-brand-list {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    height: auto;
    margin-top: 36px;
    display: grid;
  }

  .partner-brand-item {
    width: 340px;
    height: 340px;
    margin: 0;
  }

  .our-value {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .partner-brand {
    padding: 0;
  }

  .our-story {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .our-value-info {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .our-value-meta {
    grid-column-gap: 36px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 76px;
  }

  .circle-image {
    display: none;
  }

  .contact-wrapper {
    grid-row-gap: 70px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .sidebar {
    text-align: center;
  }

  .form-wrapper {
    text-align: center;
    padding-right: 8%;
  }

  .sidebar-block-item {
    margin-top: 40px;
  }

  .sidebar-block-title {
    font-size: 28px;
    line-height: 36px;
  }

  .sidebar-title {
    font-size: 36px;
    line-height: 44px;
  }

  .block-background {
    display: none;
  }

  .legal-rich-text h2 {
    font-size: 32px;
  }

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

  .tracking-title {
    font-size: 30px;
    line-height: 40px;
  }

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

  .full-width-grid {
    grid-row-gap: 60px;
  }

  .investor-grid-layout {
    grid-row-gap: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .investor-grid-image {
    height: 100%;
    min-height: 728px;
  }

  .investor-grid {
    text-align: center;
    padding-left: 0;
  }

  .investor-column {
    max-width: none;
    padding-left: 70px;
    padding-right: 70px;
  }

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

  .investor-contact-info {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .investor-contact-title {
    font-size: 34px;
    line-height: 42px;
  }

  .investor-mailing {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .faq-title.uppercase-large-text {
    max-width: none;
  }

  .faq-grid {
    grid-column-gap: 0px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .faq-image {
    min-height: 728px;
  }

  .faq-block {
    padding-top: 74px;
  }

  .faq-button-wrapper {
    margin-top: 0;
  }

  .toogle {
    padding-bottom: 30px;
  }

  .toogle-title {
    padding-right: 40px;
  }

  .utility-page-content {
    max-width: 82%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .utility-page-paragraph {
    font-size: 20px;
  }

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

  .testimonial-list-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .testimonial-description {
    font-size: 20px;
    line-height: 38px;
  }

  .arrow {
    width: 50px;
    height: 50px;
  }

  .testimonial-title {
    margin-bottom: 40px;
    padding-left: 80px;
  }

  .testimonial-quote {
    left: 0;
  }

  .section-get-started {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .testimonial-summary {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .testimonial-pic {
    min-height: 728px;
  }

  .testimonial-content {
    padding: 60px;
  }

  .nav-menu {
    background-color: var(--blue-main);
  }

  .menu-button {
    background-color: var(--blue-main);
    width: 45px;
    height: 45px;
    color: var(--white);
    cursor: pointer;
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    overflow: hidden;
  }

  .menu-button:hover, .menu-button:focus {
    background-color: var(--blue-main);
  }

  .menu-icon-top-line {
    background-color: var(--white);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-burger-icon {
    flex-direction: column;
    justify-content: center;
    width: 25px;
    height: 25px;
    display: flex;
    overflow: hidden;
  }

  .menu-icon-middle-line {
    background-color: var(--white);
    width: 100%;
    height: 1px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-bottom-line {
    background-color: var(--white);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .count-number {
    font-size: 3rem;
    line-height: 62px;
  }

  .delivery-image {
    display: none;
  }

  .hero-image {
    order: -1;
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
  }

  .hyphen-green {
    display: none;
  }

  .hero-single-image {
    height: 100%;
    min-height: 400px;
  }

  .none {
    padding-top: 3rem;
    display: block;
  }

  .counter-slide-item {
    width: 100%;
  }

  .data-slider-item {
    width: 50%;
  }

  .location-image {
    display: none;
  }

  .blog-slide-item {
    width: 50%;
  }

  .outline-arrow {
    display: none;
  }

  .outline-arrow.arrow-left {
    inset: 0 auto 0 -15px;
  }

  .outline-arrow.arrow-right {
    inset: 0 -15px 0 auto;
  }

  .subscribe-wrapper {
    padding-top: 0;
    padding-bottom: 36px;
  }

  .subscribe-grid {
    grid-column-gap: 0px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .newsletter-picture {
    display: none;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .blog-summary-info-box {
    max-width: none;
  }

  .button-link-wrapper {
    z-index: 1;
    justify-content: center;
    position: relative;
  }

  .team-slide-item {
    width: 50%;
  }

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

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

  .slogan-text {
    font-size: 2.5rem;
  }

  .hero-visual.mobile {
    display: none;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

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

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

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

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

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

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

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

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

  .margin-large {
    margin: 2.5rem;
  }

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

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

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

  .padding-section-large.center {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

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

  .margin-xlarge {
    margin: 3rem;
  }

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

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

  .margin-medium {
    margin: 1.5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

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

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

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

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

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-huge {
    padding: 5rem;
  }

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

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

  .hide-tablet {
    display: none;
  }

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

  .padding-xlarge {
    padding: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  h3 {
    font-size: 26px;
    line-height: 34px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  blockquote {
    padding-left: 36px;
    padding-right: 0;
  }

  .topbar {
    justify-content: center;
  }

  .nav-link {
    padding: 15px 35px;
  }

  .nav-link.first {
    padding-left: 35px;
    padding-right: 35px;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .page-title-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-title {
    font-size: 38px;
    line-height: 48px;
  }

  .page-container {
    padding-bottom: 70px;
  }

  .footer-menu-bar {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-image {
    object-fit: contain;
  }

  .footer-logo {
    width: 30%;
    margin-left: -5px;
    margin-right: -5px;
  }

  .footer-navbar {
    padding-top: 30px;
  }

  .footer-copyright {
    flex-direction: column;
  }

  .footer-navbar-wrapper {
    grid-column-gap: 30px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .copyright-wrapper {
    padding-bottom: 10px;
  }

  .footer-social-media {
    justify-content: flex-start;
  }

  .page-title-container, .page-description-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-wrapper {
    padding-top: 0;
  }

  .hero-header {
    padding-top: 2rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-title.white.mobile {
    text-align: center;
  }

  .hero-description {
    margin-top: 25px;
  }

  .hero-hexagon-large {
    width: 80px;
    bottom: 230px;
  }

  .section-reason {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .title {
    margin-bottom: 50px;
  }

  .title.our-value-title {
    align-items: center;
  }

  .section-introduction {
    padding-bottom: 30px;
  }

  .intro-wrap {
    padding-bottom: 0;
  }

  .intro-container {
    grid-column-gap: 0px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .intro-block-content {
    align-items: center;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .intro-title {
    font-size: 30px;
    line-height: 38px;
  }

  .investor-block-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .investor-block {
    text-align: center;
    padding-right: 0;
  }

  .investor-title {
    font-size: 30px;
    line-height: 38px;
  }

  .section-services {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .title-art {
    top: -30px;
  }

  .data-collection-list {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .data-list-item {
    justify-content: center;
    min-height: 528px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .data-title {
    font-size: 24px;
    line-height: 32px;
  }

  .data-image {
    width: 30%;
    right: 20px;
  }

  .title-icon {
    max-width: 150px;
    height: 150px;
  }

  .page-header-title {
    width: auto;
  }

  .project-main-image {
    min-height: 368px;
  }

  .project-summary-grid {
    padding-top: 60px;
  }

  .benefit-title.heading-1 {
    margin-bottom: 30px;
  }

  .benefit-image {
    opacity: .08;
    width: 150px;
    height: 150px;
    right: 0;
  }

  .project-attachment {
    background-image: none;
    padding-bottom: 0;
  }

  .attachment-info {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .attach-block-list {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .gradient-top, .gradient-botton {
    display: none;
  }

  .other-project {
    padding-top: 70px;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-title.heading-1 {
    font-size: 34px;
  }

  .section-solutions {
    padding-bottom: 70px;
  }

  .team-profile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team-avatar {
    min-height: 528px;
  }

  .team-bio-meta {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .team-description {
    padding: 30px 0 70px;
  }

  .other-team {
    padding-top: 70px;
  }

  .blog-collection-list {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .blog-footer, .blog-category {
    justify-content: center;
  }

  .section-articles {
    padding-bottom: 0;
  }

  .blog-meta {
    padding-left: 80px;
    padding-right: 80px;
  }

  .other-articles {
    padding-top: 70px;
  }

  .uppercase-large-text {
    font-size: 26px;
    line-height: 34px;
  }

  .our-story-wrap {
    grid-row-gap: 10px;
  }

  .our-story-wrapper {
    text-align: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
  }

  .our-partners {
    padding-bottom: 70px;
  }

  .partner-brand-item {
    height: 250px;
  }

  .our-value {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .our-value-info {
    grid-column-gap: 0px;
    grid-row-gap: 76px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .our-value-item {
    text-align: center;
    border-top: 0 #0000;
    align-items: center;
    padding-top: 0;
  }

  .our-value-meta {
    grid-column-gap: 0px;
    grid-row-gap: 76px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 60px;
    padding-right: 60px;
  }

  .contact-wrapper {
    grid-row-gap: 60px;
  }

  .form-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sidebar-title {
    font-size: 32px;
    line-height: 40px;
  }

  .button-filed {
    text-align: center;
    flex-direction: column;
    margin-top: 0;
    margin-right: 0;
  }

  .form-paragraph.small-text {
    margin-top: 30px;
    margin-left: 0;
  }

  .legal-rich-text h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .legal-rich-text h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .tracking-title {
    font-size: 28px;
    line-height: 38px;
  }

  .investor-grid-image {
    min-height: 500px;
  }

  .investor-column {
    padding-left: 40px;
    padding-right: 40px;
  }

  .investor-contact-title {
    font-size: 30px;
    line-height: 38px;
  }

  .investor-mailing {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq-grid {
    margin-top: 20px;
  }

  .faq-image {
    min-height: 528px;
  }

  .faq-block {
    padding: 50px 20px;
  }

  .toogle {
    padding-bottom: 20px;
  }

  .utility-page-content {
    max-width: 90%;
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .utility-page-button {
    margin-top: 20px;
  }

  .section-testimonial {
    text-align: center;
    background-image: none;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .testimonial-list-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-item {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .testimonial-description {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
    font-size: 19px;
    line-height: 29px;
  }

  .testimonial-author {
    order: -1;
  }

  .arrow {
    display: none;
  }

  .testimonial-title {
    padding-left: 0;
  }

  .testimonial-quote {
    width: 100px;
    height: 100px;
    top: 0;
  }

  .section-get-started {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .get-started-wrapper {
    text-align: center;
    flex-direction: column;
  }

  .testimonial-pic {
    min-height: 528px;
  }

  .testimonial-content {
    padding: 50px;
  }

  .section-achievments {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-image {
    position: static;
  }

  .none {
    z-index: 99;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: .5rem;
    display: block;
  }

  .data-slider-item, .blog-slide-item {
    width: 100%;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .slogan-text {
    font-size: 2rem;
  }

  .legal-wrapper {
    flex-flow: wrap;
  }

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

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

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

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

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

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

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

  .spacer-medium {
    padding-top: 1.25rem;
  }

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

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

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

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

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

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

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

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

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

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

  .margin-large {
    margin: 1.5rem;
  }

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

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

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

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

  .margin-xlarge {
    margin: 2rem;
  }

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

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

  .margin-medium {
    margin: 1.25rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

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

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

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

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

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

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

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

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

  .padding-xlarge {
    padding: 2rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

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

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

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

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

  .faq4_question {
    padding: 1rem 1.25rem;
  }

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

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

  .faq4_icon-wrappper {
    width: 1.75rem;
  }

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

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

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

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

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }

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

  .milestones-wrapper, .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }

  h1 {
    font-size: 34px;
    line-height: 42px;
  }

  blockquote {
    padding-left: 30px;
    font-size: 20px;
    line-height: 30px;
  }

  .topbar {
    justify-content: center;
  }

  .topbar-content.hide {
    display: none;
  }

  .nav-link {
    padding-left: 25px;
    padding-right: 25px;
  }

  .nav-link.w--current {
    color: var(--white);
  }

  .nav-link.first {
    padding-left: 25px;
    padding-right: 25px;
  }

  .brand, .brand.w--current {
    padding-left: 0;
  }

  .page-title-wrapper {
    padding-bottom: 0;
  }

  .container {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .page-header {
    text-align: center;
    justify-content: center;
  }

  .page-title {
    font-size: 32px;
    line-height: 34px;
  }

  .page-description {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 18px;
    line-height: 28px;
  }

  .page-container, .page-container.no-padding-top {
    padding-bottom: 0;
  }

  .uppercase-text {
    letter-spacing: 0;
    line-height: 18px;
  }

  .footer {
    text-align: left;
    padding: 0 0 2rem;
  }

  .footer-menu-bar {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 60px;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-logo-link.w--current {
    height: auto;
  }

  .line-5 {
    display: none;
  }

  .footer-logo {
    width: auto;
    margin-left: -16px;
    margin-right: -16px;
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .footer-navbar {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  .footer-navbar-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
    place-items: start center;
    width: 100%;
    padding: 30px 2rem 0;
  }

  .copyright-wrapper {
    flex-wrap: wrap;
    font-size: 17px;
    line-height: 27px;
  }

  .footer-navbar-list {
    margin-bottom: 0;
  }

  .footer-list-item {
    flex-direction: row;
    padding-bottom: 10px;
    display: flex;
  }

  .footer-label {
    margin-left: 10px;
    margin-right: 10px;
  }

  .page-title-container {
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
  }

  .page-description-wrap {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .heading-1 {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-wrapper {
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
  }

  .hero-header {
    padding-top: 0;
  }

  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-title.white.mobile {
    font-size: 1.5rem;
    line-height: 1.1;
    display: none;
  }

  .hero-description.text-color-white.mobile {
    margin-top: 0;
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-button.track-button {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .counter-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-hexagon-large {
    top: 265px;
    bottom: auto;
    right: 0;
  }

  .reason-layout-grid {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .reason-item {
    text-align: center;
    align-items: center;
  }

  .section-introduction {
    padding-bottom: 0;
  }

  .intro-container {
    grid-row-gap: 30px;
  }

  .intro-image-large {
    height: 280px;
  }

  .intro-block-content {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .intro-title {
    font-size: 26px;
    line-height: 36px;
  }

  .investor-block-content {
    padding-left: 0;
    padding-right: 0;
  }

  .investor-title {
    font-size: 26px;
    line-height: 36px;
  }

  .investor-image-large {
    height: 280px;
  }

  .section-services {
    padding-top: 0;
    padding-bottom: 0;
  }

  .data-list-item {
    min-height: auto;
    padding-top: 34px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .data-title {
    font-size: 24px;
    line-height: 32px;
  }

  .data-image {
    width: 45%;
    bottom: 0;
  }

  .page-header-title {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .project-main-image {
    min-height: 280px;
  }

  .project-summary {
    padding-bottom: 0;
  }

  .benefit-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .project-button-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .attachment-image {
    min-height: 280px;
  }

  .attach-title.color-primary {
    letter-spacing: 0;
  }

  .gradient-top, .gradient-botton {
    display: none;
  }

  .section-title {
    font-size: 30px;
    line-height: 40px;
  }

  .section-title.heading-1 {
    text-align: center;
  }

  .team-collection-list {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .team-item-link {
    text-align: center;
  }

  .team-avatar {
    min-height: 280px;
  }

  .team-bio-meta {
    padding: 40px 20px;
  }

  .team-name {
    font-size: 28px;
    line-height: 36px;
  }

  .blog-footer {
    flex-direction: column;
  }

  .blog-title {
    font-size: 24px;
    line-height: 32px;
  }

  .blog-avatar {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .blog-meta {
    padding: 40px 20px;
  }

  .blog-summary-title {
    font-size: 36px;
    line-height: 44px;
  }

  .blog-rich-text {
    padding-top: 40px;
  }

  .hero-about {
    grid-template-columns: 1fr;
    display: block;
  }

  .hero-about-section {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .uppercase-large-text {
    font-size: 20px;
    line-height: 28px;
  }

  .uppercase-large-text.no-wrap {
    font-size: 1.5rem;
  }

  .hero-big-title {
    align-self: center;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .hero-about-intro {
    max-width: none;
  }

  .hero-about-title.first {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-about-title.last {
    font-size: 22px;
    line-height: 32px;
  }

  .our-story-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .partner-brand-list {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .partner-brand-item {
    width: 260px;
    height: 260px;
  }

  .our-value, .our-story {
    padding-top: 0;
    padding-bottom: 0;
  }

  .our-value-info {
    grid-row-gap: 66px;
    grid-template-rows: auto auto;
    padding-left: 0;
    padding-right: 0;
  }

  .number {
    font-size: 72px;
    line-height: 70px;
  }

  .our-value-meta {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-wrapper {
    grid-row-gap: 0rem;
  }

  .sidebar {
    width: auto;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .form-wrapper {
    padding: 40px 2%;
  }

  .sidebar-title {
    line-height: 40px;
  }

  .sidebar-number {
    font-size: 1rem;
  }

  .block-background {
    width: auto;
  }

  .form-image {
    width: auto;
    max-width: 100%;
  }

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

  .input-group {
    margin-bottom: 30px;
  }

  .input-filed {
    font-size: 18px;
    line-height: 28px;
  }

  .input-filed::placeholder {
    font-size: 18px;
    line-height: 22px;
  }

  .input-filed.tracking {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .textarea {
    font-size: 18px;
    line-height: 28px;
  }

  .textarea::placeholder {
    font-size: 18px;
    line-height: 22px;
  }

  .legal-rich-text h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .legal-rich-text h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .form-tracking-system {
    padding: 34px 20px;
  }

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

  .tracking-paragraph {
    margin-bottom: 5px;
  }

  .full-width-grid {
    grid-row-gap: 70px;
  }

  .investor-grid-image {
    min-height: 280px;
  }

  .investor-column {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-title.uppercase-large-text {
    font-size: 21px;
    line-height: 29px;
  }

  .faq-grid {
    margin-top: 20px;
  }

  .faq-image {
    min-height: 280px;
  }

  .faq-block {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .faq-button-wrapper {
    margin-top: 20px;
  }

  .faq-block-title.last {
    margin-top: 36px;
  }

  .toogle-title {
    padding-right: 0;
  }

  .toogle-icon {
    display: none;
  }

  .utility-page-wrap {
    max-width: none;
    max-height: none;
  }

  .utility-page-content {
    padding: 44px 30px 50px;
  }

  .utility-page-title {
    margin-top: 0;
  }

  .utility-page-button {
    margin-top: 10px;
  }

  .utility-page-form {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .testimonial-description {
    font-size: 16px;
    line-height: 26px;
  }

  .testimonial-author {
    text-align: center;
    flex-direction: column;
  }

  .testimonial-author-image {
    margin-bottom: 30px;
    margin-right: 0;
    display: block;
  }

  .testimonial-author-titles {
    margin-top: 5px;
  }

  .arrow {
    display: none;
  }

  .testimonial-quote {
    margin-left: auto;
    margin-right: auto;
    top: 30px;
    right: 0;
  }

  .media {
    margin-top: 15px;
    margin-right: 0;
  }

  .media-list {
    flex-direction: column;
  }

  .testimonial-pic {
    min-height: 280px;
  }

  .testimonial-content {
    text-align: center;
    justify-content: center;
    padding: 36px 18px;
  }

  .created-by {
    justify-content: center;
  }

  .count-number {
    font-size: 48px;
    line-height: 56px;
  }

  .section-achievments {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-image {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-single-image {
    min-height: 230px;
  }

  .subscribe-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .subscribe-body {
    padding: 40px 20px;
  }

  .subscribe-form-input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .no-padding-bottom {
    padding-bottom: 0;
  }

  .blog-single-author {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .background-text {
    width: 100%;
    height: 65%;
  }

  .team-slide-item {
    width: 100%;
  }

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

  .service-h1 {
    font-size: 2.5rem;
  }

  .legal-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

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

  .form {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .credits {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    display: flex;
  }

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

  .youtube {
    width: auto;
    height: auto;
  }

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

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

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

  .container-large {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

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

  .heading-wrapper {
    grid-template-columns: 1fr;
    place-items: start center;
  }

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

  .yt-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .section-header {
    width: 100%;
  }

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

  .section-hp-header {
    height: auto;
    min-height: 85vh;
    padding-bottom: 2rem;
  }

  .padding-section-xhuge {
    padding-top: 10rem;
  }

  .section11-grid, .faq6_content, .service-grid {
    grid-template-columns: 1fr;
  }

  .recaptcha {
    margin-top: 1rem;
  }
}

#w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-39906642, #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-3990664a {
  align-self: center;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42a5c-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42a7b-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a80-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a85-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a8a-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a90-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a96-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42a9c-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42b7e-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42b86-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42b9d-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42bb6-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42bb9-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42bbb-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42bbe-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42c0e-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c18-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c19-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42c8b-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c90-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c95-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c9a-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42c9f-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42ca4-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cae-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cb3-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cb8-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cbd-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cc2-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cc7-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42ccc-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cd1-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cd6-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cdb-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42ce0-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42ce4-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42ce5-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cea-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cef-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42cf4-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d08-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d0d-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d12-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d17-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d1c-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d21-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d2b-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d30-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d35-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d3a-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d3f-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d44-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d49-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d4e-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d53-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d58-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d5d-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42d61-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42d62-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d67-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d6c-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d71-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d82-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d87-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d8c-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d91-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d96-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42d9b-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42da0-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42da5-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42daa-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42daf-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42db3-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42db4-c61c9f44 {
  justify-self: start;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42db7-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42e38-c61c9f44, #w-node-_04f8c413-e97a-609d-e621-b7da44c42e65-c61c9f44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04f8c413-e97a-609d-e621-b7da44c42ea3-c61c9f44 {
  justify-self: start;
}

#w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-2942e514, #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-3cf2e5f6 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-bb60eb42-c427-a458-8179-bb0c9dd05063-3990662a {
    order: -9999;
    align-self: end;
  }

  #w-node-_9aa536a3-7ae9-04b6-98f0-e32ea8956f1c-3990662a {
    order: -9999;
  }

  #w-node-a6a77f86-0fad-fcec-2e41-3ba96e751c6e-3990662a {
    order: 9999;
  }

  #w-node-a6a77f86-0fad-fcec-2e41-3ba96e751c60-3990662a {
    order: -9999;
    align-self: end;
  }

  #w-node-_058b8ba8-193b-7982-b349-f6eca33dcffe-3990662a {
    align-self: end;
  }

  #w-node-_058b8ba8-193b-7982-b349-f6eca33dd00a-3990662a {
    order: 9999;
  }

  #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-39906642, #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-3990664a {
    justify-self: center;
  }

  #w-node-bb60eb42-c427-a458-8179-bb0c9dd05063-33cced48 {
    align-self: end;
  }

  #w-node-_9aa536a3-7ae9-04b6-98f0-e32ea8956f1c-33cced48, #w-node-a6a77f86-0fad-fcec-2e41-3ba96e751c6e-33cced48 {
    order: -9999;
  }

  #w-node-a6a77f86-0fad-fcec-2e41-3ba96e751c60-33cced48, #w-node-_058b8ba8-193b-7982-b349-f6eca33dcffe-33cced48 {
    align-self: end;
  }

  #w-node-_058b8ba8-193b-7982-b349-f6eca33dd00a-33cced48 {
    order: -9999;
  }

  #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-2942e514, #w-node-_64578459-c9f7-4bf0-aee2-e00862a99c7c-3cf2e5f6 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0c028cdf-bf91-729b-0483-104ec8a259f2-c8a259ea {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Spacegrotesk';
  src: url('../fonts/SpaceGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}