:root {
  --white: white;
  --black: #141618;
  --dark-grey: #313a42;
  --grey: #586c80;
  --back-blue: #f0f9ff;
  --silver: #f4f9fd;
  --blue: #5994fa;
  --back-purple: #f7f5ff;
  --faint-blue: #e5f4ff;
  --soft-grey: #d0dbe7;
  --grey-smoke: #f7f7f7;
  --dark-blue: #4077d8;
  --hard-blue: #275cb8;
  --light-grey: #9caabb;
  --light-blue: #7babff;
}

.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-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: -.2px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--dark-grey);
  text-decoration: none;
  transition: opacity .2s, color .2s;
}

a:hover {
  color: var(--grey);
}

ul {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 20px;
}

li {
  color: var(--dark-grey);
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  margin-right: 5px;
  display: inline-block;
}

label {
  color: var(--grey);
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: 600;
}

em {
  font-family: Lato, sans-serif;
  font-style: italic;
  font-weight: 400;
}

blockquote {
  border-left: 4px solid #a5d2ff;
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.4em;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.wrapper.light-blue {
  background-color: var(--back-blue);
}

.wrapper.contact {
  width: 100%;
  height: 100%;
  min-width: 100vw;
  margin-bottom: 0;
  overflow: visible;
}

.wrapper.about {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section {
  z-index: 0;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.section.soft-gradient {
  background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
  padding-top: 95px;
  padding-bottom: 95px;
  position: relative;
}

.section.soft-gradient.phone {
  background-color: #fff;
  background-image: none;
}

.section.soft-gradient.phone.n {
  background-image: none;
  padding-top: 0;
  display: flex;
  position: relative;
}

.section.soft-gradient.phone.n.new {
  min-height: 80vh;
  min-width: 100vw;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section.soft-gradient.phone.a {
  padding-top: 30px;
}

.section.soft-gradient.non {
  background-image: none;
  padding-top: 0;
  padding-bottom: 40px;
}

.section.soft-gradient.home {
  min-height: 75vh;
  min-width: 100vw;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.blue {
  background-color: var(--blue);
  color: var(--back-purple);
  text-align: center;
  justify-content: center;
  display: block;
}

.section.blue.questions {
  display: none;
}

.section.blue.faq {
  background-color: #fff;
}

.section.no-padding {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 0;
  padding-bottom: 0;
}

.section.grey {
  background-color: #fff;
}

.section.grey.c {
  background-image: linear-gradient(99deg, var(--silver), #ffead3 93%);
}

.section.grey.c.s {
  background-image: linear-gradient(150deg, var(--silver) 25%, #ffead3 93%);
}

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

.section.large {
  background-color: rgba(247, 247, 247, .45);
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.section.light-blue {
  background-color: var(--back-blue);
}

.section.light-blue.privacy {
  background-color: rgba(0, 0, 0, 0);
}

.section.image-background {
  height: 500px;
  max-width: 80vw;
  min-width: 80vw;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-size: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  justify-content: center;
  margin-top: 25px;
  display: block;
}

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

.section.chat {
  background-color: rgba(0, 0, 0, 0);
  display: flex;
}

.section.mid {
  text-align: center;
  justify-content: center;
  display: block;
}

.section.sec {
  background-color: rgba(0, 0, 0, 0);
  display: block;
}

.section.new {
  padding-bottom: 0;
}

.section.o {
  min-height: 60vh;
  padding-top: 0;
}

.section.banner {
  width: auto;
  min-height: 60vh;
  min-width: 100vw;
  object-fit: fill;
  background-color: #fff;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.section.c {
  background-color: #fff;
  padding-bottom: 25px;
}

.button {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex: none;
  margin-bottom: 0;
  padding: 9px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s, box-shadow .2s, color .2s, background-color .2s;
}

.button:hover {
  opacity: .75;
  color: var(--white);
}

.button:active {
  opacity: .6;
}

.button.light {
  background-color: var(--faint-blue);
  box-shadow: none;
  color: var(--dark-blue);
}

.button.outline {
  box-shadow: inset 0 0 0 1px var(--soft-grey);
  color: var(--dark-blue);
  background-color: rgba(0, 0, 0, 0);
}

.button.outline:hover {
  box-shadow: inset 0 0 0 1px var(--blue);
  opacity: 1;
  color: var(--hard-blue);
}

.button.outline:active {
  opacity: .6;
}

.button.minimal {
  box-shadow: none;
  color: var(--dark-blue);
  background-color: rgba(0, 0, 0, 0);
  margin-left: 8px;
  margin-right: 8px;
  padding-left: 16px;
  padding-right: 16px;
}

.button.minimal:hover {
  opacity: 1;
  color: var(--hard-blue);
}

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

.button.about {
  display: block;
  position: absolute;
  top: auto;
  bottom: -9%;
  left: 0%;
  right: 0%;
  transform: translate(0);
}

.button.about.contact {
  display: inline-block;
  position: static;
}

.button.about.contact.u {
  width: 200px;
}

.button.left {
  text-align: left;
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-around;
  display: inline-block;
}

.button.nav-link {
  color: #fff;
  margin-bottom: 46px;
  margin-left: 36px;
  margin-right: 36px;
  padding-left: 20px;
  padding-right: 20px;
}

.button.nal {
  padding-left: 20px;
  padding-right: 20px;
}

.button.inqui {
  background-color: var(--blue);
  color: #fff;
}

.spacer {
  height: 48px;
  background-color: var(--silver);
  flex: none;
}

.spacer._64 {
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._32 {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
}

.spacer._32.new {
  width: 15px;
}

.spacer._24 {
  width: 24px;
  height: 24px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._48 {
  width: 48px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
}

.spacer._128 {
  width: 128px;
  height: 128px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._80 {
  width: 80px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._32 {
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._16 {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._96 {
  width: 96px;
  height: 96px;
  background-color: rgba(0, 0, 0, 0);
}

.text-box {
  text-align: center;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-box._550px {
  max-width: 550px;
}

.text-box._400px {
  max-width: 400px;
}

.text-box._800px {
  max-width: 800px;
}

.text-box._800px.center-align {
  text-align: center;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-box._600px {
  max-width: 600px;
}

.text-box.heading {
  max-width: 900px;
}

.text-box.heading.centered {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  display: flex;
}

.text-box.heading.main {
  z-index: 9999999;
  max-width: 700px;
  display: block;
  position: relative;
}

.text-box._1100px {
  max-width: 1100px;
}

.text-box._1100px.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-box._750px {
  max-width: 750px;
}

.text-box._750px.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-box._750px.centered.dif {
  display: block;
}

._12-columns {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: flex-start;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.tablet-swap {
  display: flex;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.container {
  width: 100%;
  max-width: 100vw;
  min-height: 50px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.container.center-align {
  min-height: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 60px;
  padding-right: 60px;
}

.container.center-align._25 {
  padding-top: 25px;
}

.container.head {
  min-height: 65vh;
  object-fit: fill;
  flex-direction: column;
  align-self: center;
  align-items: center;
  margin-top: -5px;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.container.s {
  text-align: center;
  display: flex;
}

.container.about {
  padding-top: 60px;
}

.container.mid {
  max-width: 100vw;
  background-color: var(--grey-smoke);
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.container.mid.top {
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  display: block;
}

.container.mobile-hidden {
  background-color: rgba(187, 197, 214, .1);
  display: none;
}

.container.grey {
  padding-left: 60px;
  padding-right: 60px;
}

.container.contact {
  flex-direction: row;
  flex: 0 auto;
}

.container.image {
  height: auto;
  max-width: none;
  min-height: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline;
  position: relative;
}

.container.new {
  padding-left: 30px;
  padding-right: 30px;
}

.container.privacy {
  padding-top: 30px;
}

.color-block {
  width: 100%;
  height: 60px;
  background-color: var(--black);
  margin-bottom: 32px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.grey {
  background-color: var(--grey);
}

.color-block.light-grey {
  background-color: var(--light-grey);
}

.color-block.dark-grey {
  background-color: var(--dark-grey);
}

.color-block.soft-grey {
  background-color: var(--soft-grey);
}

.color-block.silver {
  background-color: var(--silver);
}

.color-block.white {
  border: 1px solid var(--silver);
  background-color: #fff;
}

.color-block.hard-bue {
  background-color: var(--hard-blue);
}

.color-block.dark-blue {
  background-color: var(--dark-blue);
}

.color-block.blue {
  background-color: var(--blue);
}

.color-block.light-blue {
  background-color: var(--light-blue);
}

.color-block.soft-blue {
  background-color: #a5d2ff;
}

.color-block.faint-blue {
  background-color: var(--faint-blue);
}

.color-block.back-blue {
  background-color: var(--back-blue);
}

.color-block.back-purple {
  background-color: var(--back-purple);
}

.white {
  color: #fff;
  font-weight: 300;
}

.column {
  min-height: 32px;
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desktop-6-column {
  width: 50%;
}

.column.desktop-6-column.tablet-6-column {
  flex: 1;
  align-items: flex-start;
}

.column.desktop-1-column {
  width: 8.33%;
}

.column.desktop-4-column {
  width: 33.33%;
}

.column.desktop-3-column {
  width: 25%;
}

.column.desktop-3-column.tablet-4-column {
  text-align: left;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.column.desktop-7-column {
  width: 58.3333%;
}

.column.desktop-7-column.tablet-12-column {
  flex-direction: row;
  align-items: center;
  display: block;
}

.column.desktop-8-column {
  width: 66.6667%;
  text-align: left;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: static;
  left: 0;
  right: 0;
}

.column.desktop-8-column.tablet-8-column {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.column.desktop-11-column {
  width: 91.66%;
}

.column.desktop-9-column {
  width: 75%;
}

.column.desktop-2-column {
  width: 16.66%;
}

.column.desktop-5-column {
  width: 41.66%;
}

.column.desktop-10-column {
  width: 83.33%;
}

.ds-block {
  margin-bottom: 32px;
  font-size: 18px;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: var(--black);
  opacity: .2;
  margin-bottom: 36px;
}

.horizontal-line.alt {
  width: 80vw;
  height: 2px;
  justify-content: center;
  margin-top: 15px;
  display: flex;
}

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

.rich-text a {
  border-bottom: 1px solid var(--soft-grey);
}

.rich-text a:hover {
  border-bottom-color: var(--light-blue);
  color: var(--blue);
}

.nav-bar {
  z-index: 200;
  width: 100%;
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-bar.white {
  background-color: var(--grey-smoke);
  display: flex;
}

.logo-div {
  z-index: 3;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  display: block;
}

.nav-logo {
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .75;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-link {
  color: var(--white);
  cursor: pointer;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1em;
  text-decoration: none;
  transition: color .2s, opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  color: var(--hard-blue);
}

.footer-link.w--current {
  opacity: 1;
}

.footer-link.small {
  color: #fff;
  text-align: center;
  align-self: auto;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0;
  font-size: 18px;
}

.footer-link.small:hover {
  color: var(--hard-blue);
}

.footer-link.small.mobile-hidden {
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
  display: block;
}

.footer-link.small.mobile-hidden:hover {
  color: #fff;
}

.footer-links-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.footer {
  z-index: 0;
  background-color: var(--blue);
  color: var(--white);
  text-align: left;
  padding: 80px 50px 64px;
  position: relative;
}

.nav-dropdown {
  color: var(--white);
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 24px 5px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: color .2s, transform .2s;
  position: relative;
}

.nav-dropdown:hover {
  opacity: 1;
  color: #184736;
  transform: translate(0, -2px);
}

.nav-dropdown.w--current {
  color: #096ad0;
  font-weight: 700;
  transition-property: none;
}

.paragraph {
  line-height: 1.5em;
}

.paragraph.small {
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.large {
  font-size: 20px;
  line-height: 1.6em;
}

.paragraph.large.no-margin {
  display: block;
}

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

.paragraph.xl {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 25px;
  display: block;
}

.paragraph.medium {
  margin-bottom: 15px;
  font-size: 18px;
  display: block;
}

.paragraph.medium.closed {
  padding-left: 105px;
  padding-right: 105px;
}

.paragraph.medium.about {
  justify-content: center;
  align-self: center;
  display: block;
}

.paragraph.medium.contact {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.paragraph.medium.white {
  font-size: 18px;
}

.paragraph.grey {
  color: var(--light-grey);
}

.paragraph.white.faq {
  color: #fff;
}

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

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

.paragraph.contact.new {
  text-align: center;
}

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

.ds-menu-brand {
  margin-bottom: 50px;
  margin-left: 30px;
}

.ds-menu {
  width: 100%;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.radio-button {
  width: 20px;
  height: 20px;
  border-color: var(--light-grey);
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: var(--blue);
}

.form-error {
  color: #444;
  background-color: #ffc6c6;
  border-radius: 20px;
  padding: 16px;
}

.form {
  width: 100%;
  margin-bottom: 8px;
}

.form.about {
  width: 100%;
  max-width: 100%;
  min-height: auto;
  min-width: 620px;
  background-color: var(--grey-smoke);
  border-radius: 20px;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
  display: flex;
}

.form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

.check-box {
  width: 20px;
  height: 20px;
  border-color: var(--light-grey);
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  border-color: var(--blue);
  background-color: var(--blue);
  background-position: 50%;
  background-size: 16px;
}

.ds-content {
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.form-success {
  color: var(--dark-grey);
  background-color: #d5ffd4;
  border-radius: 20px;
  padding: 32px;
  font-size: 18px;
  line-height: 1.4em;
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  color: var(--black);
  background-color: #f7f9fa;
}

.ds-section-header {
  margin-bottom: 50px;
}

.text-input {
  max-width: 400px;
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: var(--silver) var(--silver) var(--soft-grey);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 24px;
  padding: 20px 3px;
  font-size: 15px;
  line-height: 1.4px;
  transition: border-color .2s;
}

.text-input:hover {
  border-bottom-color: var(--light-grey);
}

.text-input:focus {
  border-color: #184736 #184736 var(--blue);
}

.text-input::-ms-input-placeholder {
  color: var(--light-grey);
}

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

.text-area {
  min-height: 120px;
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: var(--silver) var(--silver) var(--soft-grey);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 16px;
  padding: 6px 3px;
  font-size: 15px;
  line-height: 1.5em;
  transition: border-color .2s;
}

.text-area:hover {
  border-bottom-color: var(--light-grey);
}

.text-area:focus {
  border-bottom-color: var(--blue);
}

.text-area::-ms-input-placeholder {
  color: var(--light-grey);
}

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

.tab-link {
  width: 210px;
  height: 58px;
  color: var(--grey);
  text-align: center;
  background-color: rgba(20, 22, 24, .05);
  border-radius: 20px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  margin-right: 6px;
  padding: 12px 18px 10px 16px;
  font-size: 18px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.tab-link:hover {
  height: 62px;
  background-color: rgba(20, 22, 24, .1);
  margin-top: -4px;
  padding-top: 10px;
}

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

.tab-link.w--current {
  border-bottom-color: var(--black);
  color: var(--blue);
  background-color: rgba(89, 148, 250, .13);
  border-radius: 20px;
  font-weight: 600;
}

.tab-link.w--current:hover {
  height: 58px;
  margin-top: 0;
  padding-top: 12px;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  background-color: var(--grey-smoke);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.nav-container.blue {
  background-color: var(--blue);
  display: none;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.logo {
  max-height: 40px;
  text-align: center;
}

.nav-link {
  color: var(--black);
  cursor: pointer;
  padding: 5px 12px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, transform .2s, color .2s;
}

.nav-link:active {
  transform: translate(0);
}

.nav-link.w--current {
  color: var(--dark-grey);
}

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

.nav-link.primary {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 20px;
  margin-left: 16px;
  padding-left: 24px;
  padding-right: 24px;
  transition: opacity .2s, background-color .2s, transform .2s, color .2s;
}

.nav-link.primary:hover {
  opacity: .8;
}

.nav-link.primary.w--current, .nav-link.primary.w--current:hover {
  color: var(--white);
}

.nav-link.primary.alt {
  color: var(--blue);
  background-color: #fff;
  justify-content: center;
  margin-left: 0;
  padding: 0;
  display: flex;
}

.nav-link.primary.white {
  color: var(--dark-blue);
  background-color: #fff;
}

.form-dropdown {
  width: 100%;
  height: 42px;
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: var(--silver) var(--silver) var(--soft-grey);
  color: var(--light-grey);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 24px;
  padding: 8px 16px 8px 2px;
  font-size: 15px;
  transition: border-color .2s;
  position: relative;
}

.form-dropdown:hover {
  border-bottom-color: var(--light-grey);
}

.form-dropdown:focus {
  border-bottom-color: var(--blue);
  color: var(--dark-grey);
}

.form-dropdown::-ms-input-placeholder {
  color: #999;
  font-size: 15px;
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  min-height: 20px;
  min-width: 50px;
  border: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  margin-bottom: 8px;
  display: flex;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

._2-column-grid {
  max-width: 100vw;
  min-width: 100vw;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  grid-template: "."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
  position: relative;
}

._2-column-grid.large-gaps {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}

._2-column-grid.large-gaps.cont {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

._3-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._3-column-grid.large-gaps {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

._3-column-grid.large-gaps.n {
  grid-template-columns: 1fr 1fr;
}

._3-column-grid.large-gaps.perf {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  margin: 0 6px 20px 0;
  display: flex;
}

._3-column-grid.large-gaps.perf.low {
  justify-content: space-around;
  align-items: flex-end;
  margin-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
}

.heading {
  letter-spacing: -.4px;
  font-weight: 600;
}

.heading.xl {
  text-align: center;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.25em;
}

.heading.xl.h2 {
  color: var(--black);
  justify-content: center;
  font-size: 30px;
  display: flex;
}

.heading.xl.left.new {
  color: var(--blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 56px;
}

.heading.l {
  margin-bottom: 12px;
  font-size: 38px;
  line-height: 1.3em;
}

.heading.l.no-margin {
  margin-bottom: 0;
}

.heading.l.c {
  justify-content: center;
  margin-bottom: 30px;
  display: flex;
}

.heading.l.top {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 35px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 45px;
  display: block;
}

.heading.l.faq {
  color: #000;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.heading.m {
  font-size: 30px;
  line-height: 1.4em;
}

.heading.m.n {
  font-weight: 500;
}

.heading.s {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.4em;
}

.heading.s.no-margin {
  margin-bottom: 0;
}

.heading.s.no-margin.b {
  color: #000;
}

.heading.s.white {
  color: #fff;
}

.heading.s.white.small {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 20px;
  display: flex;
}

.heading.s.black {
  color: #000;
}

.heading.s.faq {
  color: #fff;
}

.heading.xs {
  text-align: center;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5em;
}

.heading._2xs {
  font-size: 12px;
  line-height: 1.5em;
}

.heading.xl {
  margin-bottom: 12px;
  font-size: 56px;
  line-height: 1.2em;
}

.heading.xl.no-margin {
  margin-bottom: 0;
  line-height: 1.1em;
}

.heading.xl.n {
  font-size: 35px;
  font-weight: 500;
}

.heading._2xl {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.25em;
  display: block;
}

.heading._2xl.homepage {
  text-align: center;
  padding-right: 0;
  font-size: 60px;
  display: block;
}

.heading._2xl.new {
  text-align: center;
}

.heading._3xl {
  margin-bottom: 16px;
  font-size: 96px;
  font-weight: 600;
  line-height: 1em;
}

.heading._3xl.blue-text {
  font-weight: 600;
}

.error2 {
  width: 100%;
  max-width: 1230px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.licenses-grid {
  grid-column-gap: 96px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 128px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.utility-page-wrap {
  width: 100vw;
  height: 80vh;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--back-blue);
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

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

.utility-page-form {
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link.light-blue {
  color: #fff;
}

.link.light-blue:hover {
  color: var(--dark-blue);
}

.split-field-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.nav-button-animated {
  z-index: 900;
  width: 60px;
  height: 55px;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-right: -10px;
  padding: 0;
  position: relative;
  top: 0;
  right: 0;
}

.nav-button-animated.w--open {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}

.top-line {
  width: 32px;
  height: 3px;
  background-color: var(--black);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
}

.bottom-line {
  width: 32px;
  height: 3px;
  background-color: var(--black);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
}

.project-cover {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transition: filter .2s, color .2s;
  display: flex;
}

.project-cover:hover {
  opacity: 1;
  filter: brightness(110%);
}

.project-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  column-count: 2;
  column-rule-style: none;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: stretch;
  justify-content: center;
  column-gap: 80px;
  padding-bottom: 0;
  display: grid;
}

.project-grid:nth-child(2n) {
  flex-direction: row-reverse;
}

.project-thumbnail {
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.project-thumbnail:hover {
  opacity: .8;
  filter: saturate();
}

.text-link {
  display: block;
}

.text-link.white {
  color: #000;
  font-size: 14px;
}

.text-link.white.under, .text-link.under {
  font-weight: 400;
  text-decoration: underline;
}

.project-cover-full {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  transition: filter .2s, color .2s;
  display: flex;
}

.project-cover-full:hover {
  opacity: 1;
  filter: brightness(110%);
}

._4-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

._4-column-grid.large-gaps {
  grid-column-gap: 48px;
}

.nav-link {
  color: var(--black);
  letter-spacing: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 16px;
}

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

.nav-link.blue {
  color: #fff;
}

.logo-container {
  padding-left: 24px;
  padding-right: 24px;
}

.partner-logo {
  mix-blend-mode: normal;
  object-fit: contain;
  background-color: rgba(0, 0, 0, 0);
}

.partner-logo:hover {
  opacity: .6;
}

.logos-div {
  width: 100%;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.logos-div.stats {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.circle-badge {
  width: 150px;
  height: 150px;
  background-color: var(--blue);
  cursor: pointer;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -40%;
  left: 507px;
  right: 0%;
}

.circle-badge.new {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: static;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: visible;
}

.spinning-circle-text {
  width: 128px;
  position: absolute;
}

.nav-menu {
  z-index: 4;
  text-align: right;
  justify-content: center;
  align-items: center;
  margin-right: -8px;
}

.collection-list {
  color: var(--light-grey);
  display: flex;
}

.collection-item {
  padding-top: 4px;
  display: flex;
}

.collection-item:last-child {
  color: rgba(0, 0, 0, 0);
}

.project-item {
  margin-bottom: 64px;
}

.project-item.no-margin {
  margin-bottom: 0;
}

.project-thumbnail-details {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.project-dot {
  width: 6px;
  height: 6px;
  background-color: var(--black);
  border-radius: 300px;
  margin-top: 12px;
  margin-right: 8px;
}

.collection-list-wrapper {
  position: relative;
}

.project-title {
  display: flex;
}

.tabs-menu {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: -58px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tabs-menu.ns {
  margin-top: 0;
  margin-bottom: 0;
}

.tab-icon {
  width: 26px;
  margin-right: 8px;
}

.tab-icon.hidden {
  display: none;
}

.package-card {
  border: 1px solid var(--soft-grey);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  display: flex;
}

.grey-dollar {
  color: var(--light-grey);
  margin-right: 2px;
  font-size: 18px;
  display: inline;
  position: relative;
  top: -8px;
}

.tick-list {
  align-self: center;
  padding-left: 0;
  list-style-type: none;
}

.tick-list-item {
  text-align: left;
  background-image: url('../images/Simple-Blue-Tick.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-bottom: 6px;
  padding-left: 28px;
}

.icon {
  width: 36px;
  margin-bottom: 8px;
}

.colour-tab-icon {
  width: 26px;
  margin-right: 8px;
  display: none;
}

.colour-tab-icon.show {
  display: block;
}

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

.testimonial-slider {
  height: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
}

.slider-left-arrow {
  opacity: .4;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
}

.slider-left-arrow:hover {
  opacity: .8;
}

.slider-right-arrow {
  opacity: .4;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
}

.slider-right-arrow:hover {
  opacity: .8;
}

.hidden-slide-nav {
  display: none;
}

.questions-box {
  width: 100%;
  max-width: 800px;
  border: 2px solid #fff;
  border-radius: 20px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.answer {
  color: #4c5458;
  padding-right: 50px;
  display: block;
  overflow: hidden;
}

.question {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.question-arrow-icon {
  width: 20px;
  margin-top: 8px;
}

.question-box {
  width: 100%;
  background-color: var(--blue);
  text-align: left;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: -1px;
  padding: 28px 28px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-box.faq {
  background-color: var(--blue);
  border-style: solid;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.question-box.btm {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.emoji {
  color: rgba(0, 0, 0, 0);
  background-image: url('../images/Laptop.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 2px;
  padding-right: 2px;
  display: inline;
  overflow: visible;
}

.emoji.team {
  background-image: url('../images/Users.svg');
}

.emoji.sun {
  background-image: url('../images/Sun.svg');
}

.emoji.remote {
  background-image: url('../images/Compass.svg');
}

.emoji.design {
  background-image: url('../images/PencilCircle.svg');
}

.emoji.rocket {
  background-image: url('../images/RocketLaunch_1.svg');
}

.emoji.trophy {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Trophy.svg');
}

.emoji.white-hand {
  background-image: url('../images/White-Palm-Emoji.svg');
}

.emoji.handshake {
  background-image: url('../images/Handshake.svg');
}

.banner-div {
  width: 200%;
  align-items: center;
  display: flex;
  position: relative;
  left: -400px;
}

.mouse-icon {
  opacity: .5;
  margin-left: 32px;
  margin-right: 32px;
}

.static-container {
  width: 100%;
  max-width: 1400px;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.image {
  width: 50px;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.form-block.contact {
  width: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 30px;
  padding-right: 0;
  display: block;
}

.ds-nav {
  width: 240px;
  background-color: var(--blue);
  padding-top: 40px;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: auto;
}

.ds-menu-link {
  width: 100%;
  color: #fff;
  border-left: 4px solid rgba(0, 0, 0, 0);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
  transition: background-color .2s, opacity .2s, color .2s;
}

.ds-menu-link:hover {
  color: var(--hard-blue);
}

.ds-menu-link.w--current {
  background-color: var(--dark-blue);
  color: #fff;
  padding-right: 0;
  font-weight: 500;
}

.ds-title {
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.ds-horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #dee5eb;
  margin-bottom: 36px;
  position: relative;
  bottom: -80px;
}

.ds-horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

._1-2-column-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-1-column-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.ds-description {
  max-width: 400px;
  color: var(--grey);
}

.ds-module {
  min-height: 100px;
  min-width: 100px;
  background-color: var(--soft-grey);
  border-radius: 2px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.visible-spacer {
  background-color: #dee5eb;
  border-radius: 2px;
  margin-bottom: 24px;
  display: inline-block;
}

.footer-grid {
  grid-column-gap: 80px;
  grid-row-gap: 25px;
  grid-template-columns: .75fr .5fr .5fr;
  justify-content: stretch;
  align-items: start;
  justify-items: stretch;
}

.footer-logo-box {
  max-width: 400px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-menu-grid {
  width: 100%;
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
  justify-items: center;
}

.footer-links-column {
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-links-column.dif {
  align-items: flex-start;
}

.testimonial-slide {
  height: auto;
  overflow: visible;
}

.testimonial-slider-mask {
  height: auto;
}

.testimonial-slide-text-box {
  max-width: 850px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-slider-arrow {
  width: 21px;
}

.center-button-block {
  max-width: 400px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.photo-grid {
  width: 180%;
  grid-column-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .9fr 1.2fr .8fr 1fr;
  align-items: start;
  margin-left: -500px;
}

.inline-text-box {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
}

.project-info-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 4fr 1fr 1fr;
}

.project-detail-image {
  width: 100%;
  max-width: 50%;
  border-radius: 20px;
  display: inline-block;
}

.project-images-list {
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.more-projects-grid {
  grid-column-gap: 80px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: grid;
  position: relative;
}

.career-link-block {
  width: 100%;
  border-bottom: 1px solid var(--soft-grey);
  padding-top: 32px;
  padding-bottom: 20px;
  transition: padding-left .2s, background-color .2s, opacity .2s, color .2s;
}

.career-link-block:hover {
  background-color: var(--silver);
  padding-left: 28px;
}

.grid-cell {
  flex-direction: column;
  display: flex;
}

.tabs-content {
  padding-top: 24px;
}

.column-styleguide {
  width: 100%;
  height: 40px;
  background-color: #f7f6f3;
  margin-bottom: 20px;
}

.licenses-images-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.licenses-icons-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.project-image {
  border-radius: 20px;
  transition: transform .2s;
}

.banner-section {
  z-index: 200;
  background-color: var(--blue);
  color: #fff;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
}

.banner-container {
  max-width: 1080px;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner {
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
}

.banner-text {
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  display: block;
  transform: rotate(0);
}

.banner-text.n {
  padding-left: 0;
  padding-right: 10px;
  font-size: 20px;
  transform: none;
}

.banner-link {
  color: var(--blue);
  background-color: #fff;
  border-radius: 20px;
  margin-left: 3px;
  margin-right: 0;
  padding: 2px 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3em;
  text-decoration: none;
  display: none;
}

.banner-link:hover {
  color: var(--dark-blue);
}

.image-2 {
  max-width: 100%;
  min-width: 65%;
  margin-left: 0;
  display: block;
  position: relative;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  transform: translate(43px, 24px);
}

.image-2.hidden {
  display: none;
}

.div-block {
  justify-content: center;
  overflow: visible;
}

.container-2 {
  clear: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -50px;
  padding-top: 20px;
  padding-bottom: 0;
  font-weight: 400;
  display: flex;
}

.section-2 {
  clear: none;
  justify-content: center;
  padding-top: 0;
  display: flex;
  overflow: visible;
}

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

.gst {
  color: #9caabb;
  font-size: 16px;
}

.lottie-animation {
  width: 50px;
  height: 50px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.div-block-2 {
  width: 50px;
  height: 50px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 50%;
  right: 0;
  transform: translate(-24px, 52px);
}

.section-3 {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 59px;
  display: flex;
}

.section-3.new {
  text-align: center;
  background-color: rgba(165, 165, 165, .11);
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.text-span {
  font-size: 45px;
  text-decoration: none;
  transform: translate(0);
}

.lottie-animation-2 {
  width: 300px;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: visible;
}

.container-3 {
  display: flex;
}

.grid {
  grid-template-columns: 3fr 2.5fr;
  grid-template-areas: "Area"
                       "Area-2";
  display: block;
}

.lottie-animation-3 {
  width: 300px;
  justify-content: center;
  display: inline-block;
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: flex;
}

.lottie-animation-4 {
  width: 100px;
  text-align: center;
  object-fit: fill;
  justify-content: center;
  display: flex;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.div-block-4 {
  text-align: center;
  justify-content: center;
  margin-top: -103px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: visible;
}

.div-block-5 {
  width: 300px;
  justify-content: center;
  display: block;
}

.section-4 {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.html-embed {
  text-align: center;
  justify-content: center;
  align-self: center;
  display: flex;
}

.text-block {
  align-self: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.html-embed-2 {
  text-align: center;
  justify-content: center;
  display: flex;
}

.html-embed-3 {
  text-align: center;
  flex-flow: row;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.html-embed-3:hover {
  opacity: .8;
}

.columns {
  margin-top: 30px;
  margin-bottom: 100px;
  margin-right: -10px;
  padding-right: 0;
  display: block;
}

.column-2 {
  padding-bottom: 250px;
  display: block;
}

.grid-2 {
  grid-template: "Area-2"
                 "."
                 / 1fr;
  padding-bottom: 40px;
}

.container-4 {
  display: block;
}

.section-5 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-6 {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 120px;
  padding-bottom: 0;
  display: flex;
}

.container-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 57px;
  padding-bottom: 0;
  display: inline;
}

.container-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: flex;
}

.heading-3 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.heading-4 {
  text-align: center;
  font-size: 25px;
}

.text-span-2 {
  text-align: center;
  font-size: 20px;
}

.heading-5 {
  background-color: var(--faint-blue);
  text-align: center;
}

.div-block-8 {
  display: inline;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-4 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.div-block-9, .section-6 {
  display: flex;
}

.heading-6 {
  color: var(--black);
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.div-block-10 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-5 {
  mix-blend-mode: normal;
  background-color: rgba(0, 0, 0, 0);
  align-self: auto;
  margin-right: 10px;
  padding-right: 0;
}

.section-7 {
  background-color: rgba(0, 0, 0, .05);
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}

.lottie-animation-5 {
  display: inline-block;
}

.container-7 {
  max-height: 50px;
  max-width: 800px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-block;
}

.lottie-animation-6 {
  object-fit: fill;
  display: block;
  overflow: hidden;
}

.section-8, .lottie-animation-7 {
  display: block;
}

.lottie-animation-8 {
  clear: none;
  position: relative;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.lottie-animation-9 {
  width: 200px;
  height: 20px;
  display: block;
}

.div-block-12 {
  text-align: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 30px;
  display: flex;
}

.div-block-13 {
  text-align: center;
  margin-bottom: -35px;
  padding-bottom: 0;
}

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

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

.section-9 {
  background-color: var(--blue);
  padding-top: 30px;
}

.subscript {
  color: #fff;
}

.lottie-animation-10 {
  text-align: left;
  position: static;
}

.div-block-14 {
  width: auto;
  min-height: 100vh;
  min-width: 100vw;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-15 {
  width: 100vw;
  height: 100vw;
  display: inline;
  overflow: visible;
}

.section-10 {
  margin-bottom: 35px;
  padding-bottom: 0;
  padding-right: 0;
  display: inline;
}

.div-block-16 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding-left: 110px;
  padding-right: 110px;
  display: flex;
}

.container-9 {
  background-color: var(--blue);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: -5px;
  display: flex;
}

.html-embed-4 {
  text-align: center;
  justify-content: center;
  display: block;
}

.section-11 {
  min-height: 0;
}

.section-12 {
  min-height: 100px;
  min-width: 100px;
}

.html-embed-5 {
  min-height: 80vh;
  min-width: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.html-embed-6 {
  display: flex;
  position: absolute;
  top: 20%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-17 {
  justify-content: center;
  display: block;
}

.container-10 {
  text-align: left;
  justify-content: center;
  display: flex;
}

.grid-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  justify-items: stretch;
  padding-right: 0;
  display: grid;
}

.grid-5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  justify-items: stretch;
}

.div-block-18 {
  position: absolute;
}

.feature-section {
  width: 900px;
  background-color: var(--grey-smoke);
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0 40px;
  padding: 50px;
  display: flex;
}

.feature-section.lftimage {
  flex-direction: row-reverse;
  padding: 70px;
}

.feature-section.lft {
  flex-direction: row;
  padding: 50px;
  display: block;
}

.feature-section.bottom {
  margin-bottom: 50px;
}

.flex-container {
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.feature-image-mask {
  width: 100%;
  margin-right: 40px;
}

.feature-image {
  width: 70%;
  height: 70%;
  object-fit: contain;
  object-position: 50% 50%;
}

.div-block-19 {
  justify-content: center;
  display: flex;
  position: static;
}

.image-6 {
  max-width: 40%;
  border-radius: 20px;
  margin-top: 35px;
  padding-top: 0;
}

.grid-6 {
  background-color: var(--blue);
  grid-template-rows: 250px;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-13 {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  padding-top: 40px;
  display: block;
}

.div-block-21 {
  display: flex;
}

.div-block-21.grey {
  background-color: var(--blue);
  border-radius: 0 0 20px 20px;
  padding: 15px;
}

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

.grid-8 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area";
}

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

.grid-9.mobile-hidden {
  grid-template-columns: 1fr;
  align-items: center;
}

.image-7 {
  filter: grayscale();
}

.image-8, .image-9 {
  border-radius: 20px;
}

.div-block-22 {
  display: none;
}

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

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

.container-11 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-23 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-span-3 {
  color: rgba(255, 255, 255, .5);
}

.phoicon {
  width: 100%;
  max-width: 35px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  display: inline-block;
}

.phoicon.smaller {
  max-width: 25px;
  padding-bottom: 0;
}

.phoicon.lo {
  display: flex;
}

.pho {
  max-width: 35px;
  padding-bottom: 0;
  display: inline-block;
}

.pho.smaller {
  margin-right: 0;
}

.section-14 {
  height: 75px;
  background-color: var(--blue);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  display: flex;
}

.heading-8 {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: block;
}

.container-12 {
  height: 100px;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.image-12 {
  object-fit: contain;
  display: block;
}

.image-13 {
  max-width: 250px;
  display: block;
}

.container-13 {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.heading-9 {
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 35px;
  display: flex;
}

.counterup {
  display: block;
}

.section-15 {
  height: auto;
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 10px;
}

.grid-11 {
  grid-template-rows: 200px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.div-block-25 {
  max-height: 200px;
  max-width: 200px;
  min-height: 200px;
  min-width: 200px;
  color: #fff;
  background-color: #fff;
  border-radius: 1000px;
}

.grid-12 {
  display: flex;
}

.paragraph-3 {
  color: #fff;
  text-align: center;
}

.paragraph-4 {
  color: var(--black);
  text-align: center;
  margin-bottom: 6px;
  padding-top: 20px;
  padding-bottom: 0;
  font-weight: 700;
  text-decoration: underline;
  display: none;
}

.heading-10 {
  color: var(--black);
  text-align: center;
  font-weight: 600;
  display: block;
}

.div-block-26 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #f7f7f7;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  position: relative;
}

.div-block-27 {
  max-width: 100vw;
  min-width: 100vw;
  background-color: var(--grey-smoke);
  flex-direction: row;
  justify-content: space-between;
  padding-top: 0;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
}

.div-block-28 {
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 200px;
  min-height: 80px;
  min-width: 200px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-11 {
  font-size: 40px;
}

.stat {
  color: var(--blue);
  margin-bottom: 5px;
  font-size: 30px;
  display: flex;
}

.stat.counterup {
  color: var(--blue);
  font-size: 30px;
}

.text-block-3 {
  color: #525252;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.circle-spacer {
  width: 40px;
  background-color: var(--grey-smoke);
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.section-16 {
  background-color: rgba(187, 197, 214, .1);
}

.container-15 {
  max-width: 100vw;
  background-color: var(--grey-smoke);
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.feature-image-2 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 20px;
}

.div-block-35 {
  max-height: 150px;
  min-height: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-2 {
  display: inline-block;
}

.text-span-5 {
  font-size: 18px;
  display: inline-block;
  transform: translate(0, 1px);
}

.text-span-6 {
  font-size: 18px;
  transform: translate(0);
}

.contact-form {
  text-align: left;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.div-block-36 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-12, .paragraph-5 {
  text-align: center;
}

.div-block-37 {
  width: 300px;
  height: 150px;
  background-color: #f7f7f7;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
}

.div-block-37.hidden, .div-block-37.mobile-hidden {
  display: none;
}

.div-block-37.smallsies {
  width: 200px;
  height: 60px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--blue);
  border-radius: 100000px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: auto;
  align-items: center;
  justify-items: center;
  padding: 0 10px;
  display: flex;
}

.div-block-38 {
  background-color: var(--dark-blue);
}

.button-2 {
  color: var(--blue);
  background-color: #fff;
  border-radius: 20px;
  font-weight: 500;
}

.div-block-40 {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.div-block-40:hover {
  mix-blend-mode: soft-light;
}

.image-14 {
  mix-blend-mode: normal;
  margin-right: 5px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.image-14:hover {
  opacity: 1;
  mix-blend-mode: soft-light;
}

.div-block-41 {
  width: 25px;
  height: 30px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-41:hover {
  mix-blend-mode: soft-light;
}

.div-block-43 {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.div-block-43.n {
  flex-direction: row;
  align-items: center;
  padding-top: 0;
  display: block;
}

.div-block-44 {
  display: none;
}

.preloader {
  z-index: 2147483647;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.heading-13 {
  color: var(--blue);
  margin-bottom: 0;
  padding-top: 250px;
  padding-bottom: 0;
}

.lottie-animation-12 {
  margin-top: -170px;
}

.div-block-45 {
  width: 400px;
  height: 200px;
  min-height: 100px;
  min-width: 200px;
}

.lottie-animation-13 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-16 {
  flex-direction: column;
  align-items: center;
  padding-bottom: 90px;
  display: flex;
}

.link-block {
  width: 30px;
  height: 30px;
  position: absolute;
}

.link-block:hover {
  color: var(--hard-blue);
}

.link-block-2 {
  width: 30px;
  height: 30px;
  position: absolute;
}

.div-block-46 {
  width: 20vw;
  height: 2px;
  background-color: rgba(0, 0, 0, .34);
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-18 {
  width: 100vw;
  height: 30px;
  justify-content: center;
  align-items: center;
  display: none;
}

.grid-13 {
  grid-column-gap: 80px;
  text-align: center;
  grid-template: "Area"
  / 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  display: flex;
}

.section-19 {
  padding-left: 30px;
  padding-right: 30px;
}

.section-20 {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-block-4 {
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  display: flex;
}

.text-block-4.m {
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.div-block-47 {
  max-height: 30px;
  max-width: 30px;
  min-height: 30px;
  min-width: 30px;
  margin-left: 5px;
}

.div-block-48 {
  grid-row-gap: 1px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 10px;
  display: flex;
}

.div-block-49, .text-block-5 {
  justify-content: center;
  display: flex;
}

.image-15 {
  padding-top: 5px;
}

.div-block-50 {
  text-align: center;
}

.container-17 {
  max-width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  display: flex;
}

.section-21 {
  display: block;
}

.section-21.down {
  justify-content: center;
  align-items: stretch;
  display: block;
}

.grid-14 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: stretch;
  display: flex;
}

.grid-15 {
  text-align: center;
  justify-items: stretch;
}

.image-17 {
  border-radius: 20px;
  margin-right: 0;
}

.container-18 {
  justify-content: center;
  display: flex;
}

.heading-15 {
  text-align: left;
  margin-bottom: 0;
  font-weight: 600;
}

.heading-15.lft {
  text-align: right;
}

.heading-16 {
  text-align: left;
  font-weight: 600;
}

.paragraph-7 {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.paragraph-7.lft {
  text-align: left;
}

.container-19 {
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-18 {
  max-width: 80%;
  opacity: 1;
  mix-blend-mode: normal;
  border-radius: 20px;
  margin-right: 0;
}

.div-block-51 {
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 75px;
  display: flex;
}

.div-block-52 {
  width: 150px;
}

.section-22 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.lottie-animation-14 {
  position: relative;
  top: 50px;
}

.div-block-53 {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  display: flex;
}

.div-block-53.lft {
  text-align: right;
  padding-left: 0;
}

.div-block-54 {
  width: 100px;
}

.lottie-animation-15 {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.lottie-animation-15.lft {
  transform: rotate(0);
}

.div-block-55 {
  justify-content: center;
  padding-left: 0;
  display: none;
}

.div-block-55.lft {
  display: none;
}

.column-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.columns-2 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.columns-2.lft {
  flex-direction: row-reverse;
}

.div-block-56 {
  width: 50px;
  height: 50px;
  display: flex;
}

.column-4 {
  display: block;
}

.div-block-57 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.div-block-58 {
  padding-left: 10px;
}

.image-19 {
  margin-left: 0;
  padding-left: 0;
}

.div-block-59, .div-block-60, .div-block-61 {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.div-block-62 {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.section-23 {
  background-color: var(--grey-smoke);
  display: block;
}

.heading-17 {
  justify-content: center;
  font-weight: 600;
  display: flex;
}

.hero-overlay {
  height: 90vh;
  max-height: 780px;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.columns-3 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.column-6 {
  display: none;
}

.lottie-animation-16 {
  margin-top: -30px;
  padding-top: 0;
}

.text-span-7 {
  color: var(--blue);
}

.div-block-64 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-65 {
  max-height: 70vh;
  max-width: 100vw;
  min-height: 0;
  min-width: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-animation-18 {
  max-height: 70vh;
  max-width: 100vw;
  min-height: 70vh;
  min-width: 100vw;
  display: block;
  position: static;
}

.div-block-66 {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(.2);
}

.lottie-animation-19 {
  min-height: 70vh;
  object-fit: none;
  object-position: 50% 0%;
  transform-style: preserve-3d;
}

.div-block-68 {
  width: 100vw;
  height: 65vh;
  max-height: none;
  min-height: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-animation-20 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-animation-21 {
  width: 450px;
  transform: translate(0, -90px);
}

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

.div-block-70 {
  max-height: none;
  min-height: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.lottie-animation-22 {
  z-index: 0;
  width: 100vw;
  height: 90vh;
  opacity: .1;
  mix-blend-mode: normal;
  align-items: baseline;
  padding-bottom: 12px;
  padding-right: 153px;
  display: flex;
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
  transform: rotate(90deg)scale(1.8);
}

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

.link-3 {
  font-weight: 400;
  text-decoration: underline;
}

.div-block-71 {
  height: 0;
}

.section-25 {
  min-height: auto;
  min-width: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  display: flex;
}

.heading-18 {
  color: var(--blue);
  text-align: center;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.text-block-7 {
  color: var(--black);
  justify-content: center;
  margin-top: 25px;
  padding-bottom: 15px;
  display: flex;
}

.text-block-8 {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  display: inline;
}

.container-20 {
  padding-top: 35px;
}

.div-block-72 {
  width: 100%;
  height: auto;
  max-width: 80%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-21 {
  max-height: 30vh;
  border-radius: 20px;
  margin-right: 0;
}

.div-block-73 {
  display: flex;
}

.text-block-9 {
  padding-left: 5px;
}

.image-22 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-74 {
  width: 100vw;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-75 {
  min-height: auto;
  min-width: 100vw;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-23 {
  opacity: 1;
  position: static;
}

.tags {
  width: auto;
  height: 50px;
  background-color: var(--grey-smoke);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.div-block-76 {
  justify-content: center;
  padding-top: 20px;
  display: flex;
}

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

.div-block-77 {
  width: 10px;
}

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

.div-block-78 {
  width: 15px;
}

.text-span-8 {
  color: #fff;
}

.text-span-8:hover {
  color: #d8e0e9;
}

.empty-state {
  display: block;
}

.nav-link-menu {
  align-items: center;
  margin-right: 70px;
  font-size: 15px;
  display: flex;
}

.brand-box {
  margin-top: 20px;
  margin-left: 70px;
}

.brand-box.w--current {
  float: left;
  margin-left: 70px;
  position: static;
}

.brand-box.responsive {
  margin-left: 0;
}

.nav-backing {
  background-color: #fff;
  border-bottom: 1px #dfe8eb;
  border-left: 1px #dce1e3;
  border-right: 1px #dce1e3;
  margin-left: 0;
  margin-right: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
}

.nav-backing.hero {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
}

.logo-font {
  float: none;
  color: #00b27f;
  letter-spacing: 6px;
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  position: static;
  top: 0;
  bottom: 0;
  left: 0;
}

.logo-font.innerpages {
  color: #fff;
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 700;
}

.nav-link-2 {
  color: #fff;
  text-transform: uppercase;
  margin: 21px 18px 19px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #d8e0e3;
}

.nav-link-2.w--current {
  color: #00b27f;
  margin-top: 21px;
  margin-bottom: 19px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link-2.whitenav {
  color: var(--black);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 29px;
  font-size: 18px;
  font-weight: 200;
  line-height: 12px;
}

.nav-link-2.whitenav:hover {
  color: #7f878d;
  letter-spacing: 0;
  font-size: 20px;
}

.nav-link-2.order-btn {
  background-color: var(--hard-blue);
  color: #fff;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 200px;
  margin-top: 14px;
  margin-bottom: 13px;
  padding: 7px 20px 6px;
  font-size: 15px;
  font-weight: 500;
}

.nav-link-2.order-btn:hover {
  color: #292731;
  background-color: #fff;
  border-color: #fff;
}

.nav-link-2.order-btn.w--current {
  box-shadow: none;
  color: rgba(255, 255, 255, .9);
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 200px;
  margin-top: 17px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.nav-link-2.order-btn.w--current:hover {
  color: #282c31;
  background-color: #fff;
}

.responsive-nav {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  padding-top: 10px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.hero-home {
  text-align: center;
  background-color: #f5f8fa;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 200px;
  padding-bottom: 0;
}

.hero-div {
  margin-left: 150px;
}

.home-headline {
  width: 95%;
  color: var(--black);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 55px;
  font-weight: 300;
  line-height: 50px;
}

.home-subhead {
  width: 75%;
  color: var(--black);
  text-align: left;
  letter-spacing: .4px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
}

.home-subhead.topsub {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.cta {
  float: left;
  background-color: var(--hard-blue);
  color: #fff;
  text-align: center;
  text-transform: none;
  border-radius: 20px;
  margin-top: 30px;
  padding: 14px 60px;
  font-size: 15px;
  font-weight: 500;
}

.cta:hover {
  background-color: #2744db;
}

.image-24 {
  z-index: 1000;
  position: absolute;
  top: 26px;
  right: 87px;
}

.image-24.hidden {
  display: none;
}

.image-25 {
  margin-top: 165px;
  position: relative;
  top: 0;
}

.first-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 100px;
}

.column-13 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.image-26 {
  float: none;
}

.right-column-div {
  width: 85%;
  float: right;
}

.column-14 {
  padding-left: 0;
}

.column-15 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.section-body {
  text-align: center;
  margin-left: 150px;
  margin-right: 150px;
}

.section-body.normal {
  text-align: left;
}

.paragraph-11 {
  color: #4b535a;
  text-align: left;
  margin-top: 0;
  margin-bottom: 39px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.text-block-11 {
  float: none;
  color: #383b41;
  text-align: center;
  margin-top: 6px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.div-block-79 {
  width: 15%;
  float: none;
  clear: left;
  border-top: 3px solid #e8eff3;
  display: block;
}

.div-block-79.shape {
  width: auto;
  clear: none;
  margin-left: 45%;
  margin-right: 45%;
  display: block;
}

.div-block-79.shape.normal {
  width: 15%;
  float: none;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 10px;
  display: block;
}

.column-12 {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.benefit-row {
  margin-top: 20px;
}

.column-11 {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 70px;
  padding-right: 0;
}

.heading-19 {
  color: #383d41;
  border: 1px #000;
  border-bottom: 2px #e0e0e0;
  margin-top: 0;
  font-size: 38px;
  font-weight: 200;
  line-height: 44px;
  display: inline-block;
}

.heading-19.normal {
  text-align: left;
}

.split-section-1 {
  display: none;
}

.left-price-div {
  width: 40%;
  float: none;
  text-align: center;
  background-color: #fff;
  border: 1px rgba(182, 195, 201, .37);
  border-radius: 2px;
  margin-top: 0;
  margin-right: 2.5%;
  padding-top: 30px;
  padding-bottom: 40px;
  display: inline-block;
  position: static;
  left: 34px;
  box-shadow: 0 0 26px 2px rgba(59, 67, 71, .11), 0 2px 3px rgba(195, 205, 209, .42);
}

.left-price-div._2 {
  z-index: 1002;
  width: 110%;
  float: none;
  background-color: #15143f;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: 64px;
  padding-top: 174px;
  padding-bottom: 174px;
  display: block;
  position: relative;
  left: 0;
}

.column-16 {
  padding-right: 0;
}

.image-split-section {
  background-image: url('../images/header.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  margin-top: 0;
  padding-top: 236px;
  padding-bottom: 236px;
}

.div-block-80 {
  z-index: 1004;
  width: 105%;
  float: none;
  box-shadow: none;
  background-color: #f5f8fa;
  margin-top: -15px;
  padding: 60px 40px 30px 80px;
  position: relative;
}

.benefit-split-section {
  margin-top: 10px;
  margin-bottom: 30px;
}

.column-17 {
  z-index: 999999;
  padding-top: 0;
  padding-bottom: 0;
}

.column-10 {
  padding-left: 0;
  padding-right: 0;
}

.benefit-text {
  float: none;
  color: #383b41;
  margin-left: 9px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.paragraph-text {
  color: #63696d;
  padding-left: 42px;
}

.heading-20 {
  color: #383d41;
  border: 1px #000;
  border-bottom: 2px #e0e0e0;
  margin-top: 0;
  font-size: 38px;
  font-weight: 200;
  line-height: 44px;
  display: inline-block;
}

.blue-text-2 {
  color: var(--hard-blue);
  text-align: center;
  letter-spacing: .4px;
  font-size: 12px;
  font-weight: 500;
}

.blue-text-2.lighter {
  color: rgba(255, 255, 255, .64);
}

.hiw-paragraph {
  color: #4b535a;
  font-weight: 200;
}

.how-it-works-section {
  padding-top: 95px;
  padding-bottom: 95px;
}

.how-it-works-row {
  margin-top: 45px;
}

.column-18 {
  padding-left: 0;
}

.hiw-div {
  padding-left: 25px;
  padding-right: 25px;
}

.hiw-title {
  color: #30363a;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.hiw-icon {
  margin-bottom: 20px;
}

.div-block-81 {
  width: 15%;
  float: none;
  clear: left;
  border-top: 3px solid #e8eff3;
  display: block;
}

.div-block-81.shape {
  width: auto;
  clear: none;
  margin-left: 45%;
  margin-right: 45%;
  display: block;
}

.heading-21 {
  color: #383d41;
  border: 1px #000;
  border-bottom: 2px #e0e0e0;
  margin-top: 0;
  font-size: 38px;
  font-weight: 200;
  line-height: 44px;
  display: inline-block;
}

.div-block-82 {
  z-index: 1004;
  width: 105%;
  float: none;
  box-shadow: none;
  background-color: #f5f8fa;
  margin-top: -15px;
  padding: 60px 40px 30px 80px;
  position: relative;
}

.div-block-82.right {
  float: right;
}

.div-column {
  padding-left: 0;
  padding-right: 0;
}

.image-column {
  object-fit: fill;
  justify-content: center;
  padding: 0 10px 0 0;
  display: flex;
}

.heading-22 {
  color: #383d41;
  border: 1px #000;
  border-bottom: 2px #e0e0e0;
  margin-top: 0;
  font-size: 38px;
  font-weight: 200;
  line-height: 44px;
  display: inline-block;
}

.heading-22.lighter {
  color: #fff;
}

.text-block-12 {
  color: var(--hard-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
}

.right-pricing-div {
  width: 40%;
  float: none;
  border-radius: 2px;
  margin-left: 2.5%;
  padding-top: 30px;
  padding-bottom: 40px;
  display: inline-block;
  box-shadow: 0 0 28px 2px rgba(47, 53, 56, .12), 0 2px 3px rgba(195, 205, 209, .42);
}

.boldtext {
  font-weight: 500;
}

.usd-div {
  display: block;
}

.basic {
  margin-top: 45px;
}

.feature-text-pricing {
  color: #373c3f;
  margin-top: 2px;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 200;
}

.get-started {
  background-color: var(--hard-blue);
  border-radius: 2px;
  margin-top: 45px;
  padding: 14px 72px;
  font-weight: 500;
}

.get-started:hover {
  background-color: #370ebd;
}

.get-started.left-button {
  background-color: var(--hard-blue);
  margin-top: 71px;
}

.get-started.left-button:hover {
  background-color: #370ebd;
}

.country-selectors {
  flex: none;
  align-self: baseline;
  margin-top: 40px;
  display: block;
}

.currency-button {
  float: none;
  color: #4312e3;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #4312e3;
  border-radius: 200px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
}

.currency-button:hover {
  color: #fff;
  background-color: #4312e3;
}

.currency-button.selected {
  color: #fff;
  background-color: #4312e3;
  font-size: 11px;
}

.price-text {
  color: #2d3236;
  text-align: center;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 52px;
}

.gbp-div {
  display: none;
}

.div-block-83 {
  width: 15%;
  float: none;
  clear: left;
  border-top: 3px solid #e8eff3;
  display: block;
}

.div-block-83.shape {
  width: auto;
  clear: none;
  margin-left: 45%;
  margin-right: 45%;
  display: block;
}

.pricing-box-div {
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  display: flex;
}

.section-three {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 90px;
}

.monthly-text {
  color: #616c74;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 200;
}

.faq-section {
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px #dfe8eb;
  padding-top: 70px;
  padding-bottom: 60px;
}

.faq-row {
  margin-bottom: 30px;
}

.faq-question {
  color: #383d41;
  text-align: left;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}

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

.div-block-84 {
  width: 15%;
  float: none;
  clear: left;
  border-top: 3px solid #e8eff3;
  display: block;
}

.div-block-84.shape {
  width: auto;
  clear: none;
  margin-left: 45%;
  margin-right: 45%;
  display: block;
}

.div-block-84.shape.darker {
  border-top-color: rgba(232, 239, 243, .11);
}

.faq-content {
  margin-top: 40px;
}

.faq-column {
  padding-left: 12px;
  padding-right: 12px;
}

.faq-paragraph {
  color: #383d41;
  text-align: left;
  font-weight: 200;
}

.footer-2 {
  box-shadow: none;
  background-color: #fff;
  border-top: 1px #dae0e0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.social-icons-div {
  text-align: center;
}

.social-icon {
  opacity: .75;
  text-align: left;
  margin-left: 15px;
  margin-right: 15px;
}

.social-icon:hover {
  opacity: 1;
}

.copyright-text {
  color: #717f86;
  margin-top: 20px;
  font-weight: 200;
}

.image-27 {
  max-width: none;
  border-radius: 20px;
  margin-right: 0;
  padding-left: 0;
}

.image-28 {
  height: 100%;
  max-width: 95%;
  object-fit: fill;
  margin-right: 0;
  padding-top: 30px;
}

.div-block-85 {
  text-align: right;
  position: relative;
  top: -21%;
  bottom: auto;
  left: 12%;
  right: auto;
}

.text-block-13 {
  color: #fff;
  background-color: #5894fa;
  border-radius: 20px;
  padding: 10px;
  display: inline-block;
}

.bold-text {
  font-size: 14px;
}

.div-block-86 {
  z-index: 99999999;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.image-29 {
  border-radius: 5px;
  box-shadow: -1px 2px 5px rgba(0, 0, 0, .2);
}

.columns-5 {
  padding-top: 30px;
}

.testimonial-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
  align-content: start;
  align-items: stretch;
  position: -webkit-sticky;
  position: sticky;
}

.testimonial-cards-wrap-right {
  width: 50%;
  padding-top: 30px;
  padding-left: 10px;
}

.testimonial-author {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.testimonial-author-wrap {
  display: flex;
}

.container-22 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.testimonials-wrap {
  padding-left: 15px;
  display: flex;
}

.tagline {
  color: var(--hard-blue);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.reviews-wrap {
  align-items: center;
  display: flex;
}

.testimonial-author-image {
  width: 30%;
  max-width: none;
  object-fit: contain;
  margin-right: 0;
}

.heading-1 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
}

.testimonials-section {
  background-color: #fff;
  margin-left: 150px;
  margin-right: 150px;
  padding-top: 0;
  padding-bottom: 120px;
}

.testimonial-text {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
}

.review-stars {
  filter: hue-rotate(282deg);
  margin-right: 20px;
}

.testimonial-cards-wrap-left {
  width: 100%;
  padding-right: 0;
}

.testimonial-card {
  background-color: #f5f8fa;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 30px;
}

.quotation-mark {
  filter: invert();
  margin-bottom: 30px;
}

.body-3 {
  color: var(--black);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.body-3.bottom-margin-30 {
  margin-bottom: 30px;
}

.body-3.italic {
  font-style: italic;
  font-weight: 400;
}

.body-3.italic.bottom-margin-20 {
  margin-bottom: 20px;
}

.container-23 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.heading-23 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
}

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

.mob-hidden {
  margin-right: 0;
}

.div-block-87 {
  z-index: 2147483647;
  background-color: rgba(255, 255, 255, .74);
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-88 {
  background-color: var(--faint-blue);
  margin: 50px 220px;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-social-link {
  margin-left: 0;
  margin-right: 1rem;
  text-decoration: none;
  transition: all .35s;
}

.footer-social-link:hover {
  opacity: .5;
  text-decoration: none;
}

.checkbox-field-4 {
  color: #4f5c65;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .35s;
  display: flex;
}

.checkbox-field-4:hover {
  color: #4f5c65;
}

.footer-light {
  border-bottom: 1px #e4ebf3;
  justify-content: center;
  align-items: center;
  padding: 80px 30px 40px;
  display: flex;
  position: relative;
}

.hack42-45-form {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: block;
}

.text-block-oc-2 {
  color: #6b6c6f;
  letter-spacing: .02em;
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.text-block-oc-2.sub {
  color: #5c636d;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 1rem;
  display: block;
}

.text-block-oc-2.sub.no-side {
  color: #878f98;
  margin-left: 0;
  font-size: 14px;
}

.column-68 {
  text-align: center;
  flex: 0 auto;
  padding-left: 0;
  padding-right: 1rem;
  position: relative;
}

.column-68._01.right {
  padding-right: 0;
}

.footer-divider-two {
  width: 100%;
  height: 1px;
  background-color: #e4ebf3;
  margin-top: 40px;
  margin-bottom: 40px;
}

.hack42-45-added-value-row {
  border: 1px #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.footer-copyright {
  color: #878f98;
  text-transform: none;
}

.main-layout-wrapper {
  width: 60vw;
  max-width: 1080px;
  flex-direction: column;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0%;
  display: flex;
}

.footer-social-block-two {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  display: flex;
}

.text-block-70 {
  font-weight: 700;
}

.input-field {
  height: 75px;
  color: #4f5c65;
  letter-spacing: .02em;
  background-color: #fff;
  border: 2px solid #878f98;
  border-radius: 6px;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all .35s;
}

.input-field:active, .input-field:focus {
  background-color: #fff;
  border-color: #61a4f0;
}

.input-field::-ms-input-placeholder {
  color: rgba(135, 143, 152, .5);
  font-weight: 400;
}

.input-field::placeholder {
  color: rgba(135, 143, 152, .5);
  font-weight: 400;
}

.input-field.long.shadow-off {
  box-shadow: none;
}

.hack42-checkbox {
  width: 40px;
  height: 40px;
  box-shadow: none;
  text-align: center;
  border-width: 2px;
  border-color: #878f98;
  border-radius: 0;
  flex: 0 auto;
  margin-top: 0;
  margin-left: 0;
  transition: all .35s;
  display: none;
}

.hack42-checkbox.w--redirected-checked {
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #ebedf0;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border: 2px solid #38383b;
  border-radius: 0;
  margin-top: 0;
  margin-left: 0;
  box-shadow: 0 6px 10px 3px rgba(50, 63, 75, .06);
}

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

.container-01 {
  max-width: 1200px;
  margin-left: 40px;
  margin-right: 40px;
}

.card-03 {
  height: 100%;
  background-color: #fff;
  border: 2px rgba(0, 0, 0, 0);
  border-radius: 0;
  flex: 0 auto;
  margin-bottom: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 6px 10px 3px rgba(49, 47, 100, .06);
}

.card-03._50-p {
  width: 100%;
  border-style: solid;
  border-color: #94a2ab;
  margin-right: 120px;
  padding: 60px;
  box-shadow: 0 6px 10px 3px rgba(56, 56, 59, .06);
}

.card-03._50-p.r1 {
  width: 100%;
  background-image: url('../images/grundge.png');
  background-position: 0 0;
  background-size: 101px;
  border-width: 2px;
  border-color: #878f98;
  flex-direction: column;
  margin-right: 60px;
  padding: 60px 5rem;
  display: flex;
  box-shadow: 2px 0 100px 8px rgba(163, 163, 163, .3);
}

.card-03._50-p.r1._80 {
  background-color: #fdfdfd;
  background-image: none;
  border-bottom-color: #878f98;
  border-radius: 6px;
}

.form-block-3 {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: stretch;
  display: flex;
}

.div-title-holder {
  border-bottom: 1px solid #ebedf0;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 0;
}

.div-title-holder.top {
  margin-top: 60px;
  margin-bottom: 20px;
}

.div-title-holder.top.image._05 {
  margin-bottom: 40px;
}

.div-title-holder.image {
  border-bottom-width: 1px;
  border-bottom-color: rgba(135, 143, 152, .3);
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  display: flex;
}

.div-title-holder.image._02 {
  background-image: url('../images/1.svg');
}

.div-title-holder.image._02.top {
  background-image: none;
  border-bottom-width: 2px;
  border-bottom-color: #f5f7fa;
  margin-bottom: 40px;
}

.hack45-added-value {
  flex: 0 auto;
  margin-bottom: 0;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: .8;
}

.hack-button {
  color: #99eeeb;
  background-color: #141414;
  margin-left: auto;
  margin-right: auto;
  padding: .75rem 5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .1s;
  display: block;
}

.hack-button:hover {
  color: #fff;
}

.hack-button:active {
  transform: translate(0, .0625rem);
}

.hack-button.button-small {
  width: 100%;
  height: 80px;
  transform: scale3d(1none, 1none, 1none);
  color: #fdfdfd;
  text-transform: uppercase;
  transform-style: preserve-3d;
  background-color: #61a4f0;
  border: 2px solid #61a4f0;
  border-radius: 6px;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  transition-property: all;
  transition-duration: .35s;
  box-shadow: 0 6px 10px 3px rgba(79, 92, 101, .1);
}

.hack-button.button-small:hover {
  transform: scale(.95);
}

.container-24 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hack42-45-form-right {
  width: 100px;
  height: 100px;
  opacity: 1;
  color: #363f45;
  background-color: #fbff05;
  border: 2px #94a2ab;
  border-radius: 6px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-left: 4rem;
  margin-right: 6rem;
  padding: 10px;
  line-height: 1;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  box-shadow: 0 6px 10px 3px rgba(79, 92, 101, .06);
}

.section-26 {
  z-index: 2;
  width: 100%;
  text-align: center;
  background-color: #fff;
  background-image: url('../images/grundge.png');
  background-size: 101px;
  border: 1px #000;
  border-top: 1px solid #e1e3e5;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
  display: flex;
  position: relative;
}

.section-26._01 {
  background-color: #fff;
  background-image: url('../images/grundge.png');
  background-position: 0 0;
  background-size: 101px;
  border-style: none;
  border-color: #000;
  padding-left: 4rem;
  padding-right: 4rem;
  line-height: 1.45;
}

.section-26._01.q-page {
  background-color: #f5faff;
  background-image: none;
  flex-direction: column;
  margin-top: 0;
  padding-top: 8rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.image-30 {
  width: 35px;
  height: 35px;
  margin-bottom: 0;
  margin-right: 0;
  display: block;
}

.footer-bottom {
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hack-form-select {
  height: 2.8125rem;
  margin-bottom: 1.875rem;
}

.hack-form-select.hack44-select {
  width: 100%;
  height: 75px;
  color: #4f5c65;
  object-fit: fill;
  background-color: #fdfdfd;
  border: 2px solid #878f98;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 14px;
  line-height: 24px;
  transition: all .35s;
}

.hack-form-select.hack44-select:hover {
  background-color: #f5faff;
  border-color: #61a4f0;
}

.hack-form-select.hack44-select:focus {
  border-color: #61a4f0;
}

.hack42-checkbox-label {
  width: 100%;
  height: 250px;
  color: #4f5c65;
  text-align: center;
  background-color: #fdfdfd;
  border: 2px solid #878f98;
  justify-content: center;
  align-self: auto;
  align-items: flex-end;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  box-shadow: 0 6px 10px 3px rgba(148, 162, 171, .06);
}

.hack42-checkbox-label:hover {
  border-color: #363f45;
}

.hack42-checkbox-label._01 {
  box-shadow: none;
  color: #4f5c65;
  background-image: url('../images/7.svg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 96px;
  border-color: #878f98;
  border-radius: 6px;
  transition: all .35s;
}

.hack42-checkbox-label._01:hover {
  background-color: #f5faff;
  border-color: #61a4f0;
}

.hack42-checkbox-label._02 {
  box-shadow: none;
  background-image: url('../images/Group-7-1.svg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: 108px;
  border-width: 2px;
  border-color: #878f98;
  border-radius: 6px;
  align-items: flex-end;
  transition: all .35s;
}

.hack42-checkbox-label._02:hover {
  background-color: #f5faff;
  border-color: #61a4f0;
}

.hack42-checkbox-label._02._04 {
  box-shadow: none;
  background-image: url('../images/Group-6-2.svg');
  background-size: 202px;
}

.hack42-checkbox-label._02._04:hover {
  border-color: #61a4f0;
}

.hack42-checkbox-label._02._03 {
  box-shadow: none;
  color: #4f5c65;
  background-color: #fdfdfd;
  background-image: url('../images/Group-6-3.svg');
  background-size: 202px;
  border-radius: 6px;
}

.hack42-checkbox-label._02._03:hover {
  background-color: #f5faff;
  box-shadow: 0 6px 10px 3px rgba(148, 162, 171, .06);
}

.hack42-checkbox-label.half {
  width: 125px;
  height: 125px;
  box-shadow: none;
  border-color: #878f98;
  border-radius: 100%;
  align-items: center;
  transition: all .35s;
}

.hack42-checkbox-label.half:hover {
  background-color: #f5faff;
  background-image: none;
  border-width: 2px;
  border-color: #61a4f0;
}

.form-section-title {
  color: #4f5c65;
  letter-spacing: -1px;
  text-transform: none;
  margin-bottom: 1rem;
  padding-top: 29px;
  font-size: 46px;
  font-weight: 700;
  line-height: 39px;
}

.div-block-89 {
  text-align: left;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: 40px;
  display: flex;
}

.column-main {
  flex-direction: row;
  margin-bottom: 20px;
  display: flex;
}

.input-field-2.long {
  height: 150px;
  color: #4f5c65;
  letter-spacing: .02em;
  border: 2px solid #878f98;
  border-radius: 6px;
  padding: 20px;
  font-size: 16px;
  line-height: 24px;
  transition: all .35s;
}

.input-field-2.long:focus {
  border-color: #61a4f0;
}

.input-field-2.long::-ms-input-placeholder {
  color: rgba(135, 143, 152, .5);
}

.input-field-2.long::placeholder {
  color: rgba(135, 143, 152, .5);
}

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

.multistep_step-line {
  height: 2px;
  background-color: #109428;
  transition: all .2s cubic-bezier(.165, .84, .44, 1);
}

.multistep_step-line.grey {
  opacity: .52;
  filter: grayscale();
}

.multistep_form-progress-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content auto max-content auto max-content auto max-content;
  align-items: center;
}

.multistep_form-slider {
  height: auto;
  background-color: rgba(221, 221, 221, 0);
  flex-direction: row;
}

.multistep_component {
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: grid;
}

.multistep_radio-field {
  height: 9rem;
  color: #000;
  cursor: pointer;
  background-color: #f5f5f5;
  border: 1px solid #b0b0b0;
  border-radius: .25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 500;
  display: flex;
  position: static;
}

.hide {
  display: none;
}

.section_multistep {
  background-color: var(--blue);
  background-image: url('../images/Group-11-2.svg');
  background-position: 0 20px;
  background-size: contain;
}

.multistep_form-success {
  background-color: #eefff1;
}

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

.multistep_buttons-wrapper {
  justify-content: space-between;
  margin-top: 3rem;
  display: flex;
}

.multistep_buttons-wrapper.is-first {
  justify-content: flex-end;
}

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

.slider-button-submit {
  color: #fff;
  text-align: center;
  background-color: #109428;
  border-radius: 4px;
  padding: .75rem 2rem;
  font-weight: 600;
  transition: background-color .2s cubic-bezier(.165, .84, .44, 1);
}

.slider-button-back {
  color: #111;
  text-align: center;
  background-color: rgba(37, 50, 117, 0);
  border: 1px solid #535353;
  border-radius: 4px;
  padding: .75rem 2rem;
  font-weight: 600;
  transition: background-color .2s cubic-bezier(.165, .84, .44, 1);
}

.multistep_form-step {
  text-align: center;
  flex-direction: column;
  align-items: center;
  transition: all .2s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.multistep_form-step.grey {
  opacity: .62;
  filter: grayscale();
}

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

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

.next-arrow {
  display: none;
}

.multistep_lead-form-wrapper {
  width: 580px;
  background-color: #fff;
  border-radius: 4px;
  padding: 2rem 2rem 1rem;
}

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

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

.back-arrow {
  display: none;
}

.multistep_radio-button {
  width: 100%;
  height: 100%;
  text-align: center;
  border-style: none;
  border-radius: 4px;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
}

.multistep_radio-button.w--redirected-checked {
  background-color: #f4fff6;
}

.multistep_radio-button.w--redirected-focus {
  box-shadow: none;
  border-style: none;
}

.multistep_radio-button.w--redirected-focus-visible {
  box-shadow: none;
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

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

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

.multistep_radio-grid {
  min-height: 3rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 0;
  display: grid;
}

.multistep_radio-grid.is-two-options {
  grid-template-columns: 1fr;
}

.multistep_radio-button-label {
  text-align: center;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 600;
  position: static;
}

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

.slider-button-next {
  color: #fff;
  text-align: center;
  background-color: #109428;
  border-radius: 4px;
  padding: .75rem 2rem;
  font-weight: 600;
  transition: background-color .2s cubic-bezier(.165, .84, .44, 1);
}

.slider-button-next.blocked {
  background-color: var(--hard-blue);
  opacity: .6;
  cursor: not-allowed;
}

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

.multistep_info-text {
  color: #6d6d6d;
  text-align: center;
  padding-top: 9px;
  font-size: .875rem;
  font-weight: 400;
  position: relative;
}

.multistep_step-marker {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--hard-blue);
  color: #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.multistep_title {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
}

.form-input {
  height: auto;
  min-height: 2.75rem;
  color: #000;
  background-color: #fff;
  border: 1px solid #b1b1b1;
  border-radius: 4px;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
  transition: all .2s cubic-bezier(.165, .84, .44, 1);
}

.form-input:focus {
  background-color: #fcfffc;
  border-color: #8ba790;
}

.form-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, .6);
}

.form-input.is-text-area {
  height: auto;
  min-height: 7rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

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

.text-size-large.text-weight-semibold, .text-block-71 {
  padding-top: 15px;
}

.rte-label {
  color: #000;
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 15px;
}

.clone-wrap {
  width: 100%;
  min-height: 60vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.text-red {
  color: #ff0004;
}

.scrollbar {
  max-height: 600px;
  padding: 30px;
  overflow: auto;
}

.input {
  height: 48px;
  color: #000;
  background-color: #fff;
  border: 1px solid #b7bbd1;
  border-radius: 6px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 3px 6px -2px rgba(29, 1, 80, .1);
}

.input:hover {
  box-shadow: none;
  border-color: #434de7;
}

.input:focus {
  border: 1px solid #434de7;
}

.input::-ms-input-placeholder {
  color: #6e6e6e;
}

.input::placeholder {
  color: #6e6e6e;
}

.job_sticky-card {
  border: 1px solid #f2f3ff;
  border-radius: 15px;
  padding: 35px 30px;
}

.custom-scrollbar {
  display: none;
}

.form-separator {
  width: 100%;
  height: 1px;
  background-color: #f2f3ff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-row {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.popup-wrap {
  width: 100%;
  max-width: 680px;
  background-color: #fff;
  border-radius: 15px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.button-3 {
  width: 160px;
  height: 50px;
  background-color: var(--hard-blue);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  margin-top: 71px;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: 500;
  display: block;
  box-shadow: 0 10px 20px -3px rgba(29, 1, 80, .1);
}

.button-3:hover {
  box-shadow: none;
  background-color: #000;
}

.button-3.in-form {
  width: 100%;
  height: 52px;
  margin-top: 0;
  margin-left: 0;
}

.button-3.lowertop {
  margin-top: 45px;
}

.button-3.middle {
  display: inline-block;
}

.button-3.zero {
  margin-top: 5px;
  margin-left: 25px;
  font-size: 16px;
}

.button-3.zero.orange {
  background-color: #f37e24;
  transition: opacity .2s, color .2s;
}

.button-3.orange {
  background-color: #f37e24;
}

.message_success {
  color: #fff;
  background-color: #434de7;
  border-radius: 10px;
  font-weight: 600;
}

.form-border {
  width: auto;
  max-width: none;
  min-width: 400px;
  background-color: #fff;
  border: 1px solid #f2f3ff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  display: flex;
  box-shadow: 0 20px 30px -10px rgba(29, 1, 80, .1);
}

.paragraph-12 {
  opacity: .9;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.input-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
  position: relative;
}

.input-wrapper.mr-15 {
  margin-right: 15px;
}

.spacer-15 {
  width: 100%;
  height: 15px;
}

.h4 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.h3 {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
}

.popup {
  z-index: 2147483647;
  opacity: 1;
  background-color: rgba(0, 0, 0, .4);
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.input-label {
  z-index: 2;
  color: #000;
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 0;
  padding-left: 6px;
  padding-right: 7px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 15px;
  display: inline-block;
  position: relative;
  bottom: -7px;
  left: 6px;
}

.form_100w {
  width: 100%;
}

.spacer-20 {
  width: 100%;
  height: 20px;
}

.spacer-30 {
  width: 100%;
  height: 30px;
}

.popup-close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 13%;
  bottom: auto;
  left: auto;
  right: 15%;
}

.spacer-10 {
  width: 100%;
  height: 10px;
}

.multistep_radio-grid-2 {
  min-height: 3rem;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
}

.multistep_info-text-2 {
  color: #6d6d6d;
  text-align: center;
  font-size: .875rem;
  font-weight: 400;
  position: static;
}

.radio-button-field {
  display: inline-block;
}

.radio-button-field.space {
  margin-left: 15px;
}

.radio-button-label {
  color: var(--black);
  margin-bottom: 8px;
}

.radio-button-label-2 {
  color: var(--black);
}

.radio-button-2, .radio-button-3 {
  margin-top: 5px;
}

.image-31.desktophidden {
  display: none;
}

.text-field-inform {
  height: 48px;
  border: 1px solid #dbdbdb;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 22px;
}

.text-field-inform:active {
  color: #3b2ae5;
  border-color: #dbdbdb;
}

.text-field-inform.bigger {
  height: auto;
  min-height: 58px;
}

.form-03-outer-div {
  width: 100%;
  max-width: 1100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-title {
  color: #3b2ae5;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.button-4 {
  text-transform: none;
  background-color: #3b2ae5;
  border-radius: 0;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: all .2s;
}

.button-4:hover {
  opacity: .8;
}

.button-4.in-form {
  width: 100%;
  background-color: var(--hard-blue);
  text-align: center;
}

.button-4.in-form.orange {
  background-color: #f37e24;
}

.heading-2 {
  text-align: left;
  margin-top: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 45px;
}

.form-spacer {
  width: 20px;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  flex: 0 auto;
}

.content-wrap-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.paragraph-13 {
  opacity: .75;
  font-size: 16px;
  line-height: 22px;
}

._2-questions-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-text {
  color: var(--hard-blue);
  margin-bottom: 1px;
}

.contact-method {
  color: #3b2ae5;
  align-items: center;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: all .2s;
  display: flex;
}

.contact-method:hover {
  opacity: .8;
}

.contact-method.no-link:hover {
  opacity: 1;
}

.contact-method.no-link.hidden {
  display: none;
}

.contact-method-wrap {
  align-items: center;
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
}

.form-block-03 {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  margin-bottom: 0;
  padding: 20px;
}

.form-section-03 {
  width: 100%;
  background-color: #f5f8fa;
  border-bottom: 1px solid #dbdbdb;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.contact-icon {
  width: 22px;
  height: 22px;
  background-color: var(--hard-blue);
  color: var(--hard-blue);
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 4px;
  display: flex;
}

.contact-icon.orange {
  background-color: #f37e24;
}

.image-32, .image-33, .image-34 {
  margin-left: 5px;
}

.text-block-72 {
  text-align: center;
  font-weight: 600;
}

.div-block-90 {
  background-color: var(--grey);
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.div-block-90.blue {
  background-color: var(--hard-blue);
}

@media screen and (min-width: 1280px) {
  .wrapper {
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .wrapper.contact.smaller {
    min-height: 70vh;
  }

  .wrapper.top {
    background-color: #fff;
    border-radius: 0;
  }

  .wrapper.about {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .section {
    max-width: 100vw;
    min-width: 100vw;
  }

  .section.soft-gradient.phone.n {
    background-image: none;
  }

  .section.soft-gradient.home {
    min-height: 80vh;
    padding-bottom: 40px;
    position: relative;
  }

  .section.blue.faq {
    background-color: #fff;
  }

  .section.no-padding {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section.grey {
    background-image: none;
  }

  .section.large {
    padding-top: 50px;
    padding-left: 492px;
    padding-right: 492px;
  }

  .section.image-background {
    width: 80vw;
    height: 600px;
    min-width: 80vw;
    border-radius: 20px 20px 0 0;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .section.header {
    background-color: rgba(0, 0, 0, .03);
  }

  .section.sec {
    background-color: var(--grey-smoke);
    text-align: left;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .section.sec.a {
    background-color: #fff;
  }

  .section.o {
    max-width: 100vw;
    min-height: 0;
    min-width: 100vw;
  }

  .section.banner {
    height: 70vh;
    max-height: 70vh;
    min-height: 70vh;
    background-color: #fff;
    margin: 0;
    position: static;
  }

  .section.c {
    background-color: #fff;
    padding-bottom: 35px;
  }

  .button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.about.contact {
    object-fit: fill;
    display: block;
    position: static;
  }

  .button.left {
    text-align: center;
    border-radius: 20px;
  }

  .spacer._80 {
    height: 20px;
  }

  .text-box.heading.main {
    z-index: 999999;
    max-width: 1000px;
    min-width: 1000px;
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: stretch;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: relative;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  ._12-columns {
    align-self: center;
  }

  .container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .container.center-align {
    padding-bottom: 20px;
  }

  .container.center-align._25 {
    padding-top: 25px;
  }

  .container.head {
    height: 70vh;
    max-height: 70vh;
    min-height: 70vh;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(to bottom, var(--white), white);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .container.s, .container.about {
    align-items: center;
  }

  .container.mobile-hidden {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
  }

  .container.grey {
    max-width: 70vw;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .container.prcing {
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
    overflow: visible;
  }

  .container.new {
    border-radius: 0;
  }

  .nav-bar.white {
    background-color: var(--grey-smoke);
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-bar.blue {
    background-color: var(--blue);
  }

  .footer-link.small.mobile-hidden {
    text-align: center;
    display: block;
  }

  .footer-link.smaller {
    font-size: 20px;
  }

  .footer-links-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
    display: block;
  }

  .paragraph.xl {
    text-align: center;
    padding-left: 162px;
    padding-right: 162px;
    font-size: 30px;
    display: inline;
  }

  .paragraph.medium {
    padding-left: 144px;
    padding-right: 144px;
  }

  .paragraph.medium.closed {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .paragraph.medium.about {
    text-align: center;
  }

  .paragraph.medium.contact {
    padding-left: 70px;
    padding-right: 70px;
  }

  .paragraph.medium.white, .paragraph.medium.left, .paragraph.medium.noe {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph.white.faq {
    color: #fff;
  }

  .form.about {
    text-align: left;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .tab-link {
    transition: all .2s;
  }

  .nav-container {
    width: 100vw;
    max-width: 100vw;
    background-color: var(--grey-smoke);
    margin-left: 0;
    margin-right: 0;
    padding-left: 100px;
    padding-right: 100px;
  }

  .nav-container.blue {
    display: none;
  }

  .nav-link.primary {
    border-radius: 20px;
  }

  ._2-column-grid.large-gaps {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  ._2-column-grid.large-gaps.cont {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: flex;
  }

  ._3-column-grid {
    margin-left: 0;
    margin-right: 0;
  }

  ._3-column-grid.large-gaps {
    grid-template-columns: 1fr 1fr;
  }

  ._3-column-grid.large-gaps.perf {
    grid-column-gap: 300px;
    grid-row-gap: 300px;
    align-items: end;
    margin-left: 40px;
    margin-right: 40px;
  }

  ._3-column-grid.large-gaps.perf.low {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    align-items: flex-start;
  }

  ._3-column-grid.pricing {
    margin: 0 0 24px;
  }

  .heading.xl.left {
    margin-left: -25px;
    margin-right: -25px;
    padding-right: 0;
    display: block;
  }

  .heading.l.top {
    margin-top: 0;
    font-size: 50px;
  }

  .heading.l.top.white {
    padding-top: 25px;
  }

  .heading.l.faq {
    color: #000;
  }

  .heading.m.n {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading.s.faq {
    color: #fff;
  }

  .heading._2xl.homepage {
    text-align: center;
    font-size: 65px;
    display: inline;
  }

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

  .nav-link {
    font-size: 18px;
  }

  .partner-logo {
    align-self: auto;
  }

  .logos-div.mobile-hidden {
    padding-top: 0;
  }

  .logos-div.stats {
    justify-content: center;
  }

  .circle-badge {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .project-item {
    margin-bottom: 60px;
  }

  .tab-icon.hidden {
    display: block;
  }

  .questions-box {
    border-width: 2px;
    border-color: #fff;
    border-radius: 20px;
  }

  .question-arrow-icon {
    filter: none;
  }

  .question-box {
    border: 1px solid #fff;
  }

  .question-box.faq {
    border-radius: 20px 20px 0 0;
  }

  .question-box.btm {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-bottom: 0;
  }

  .emoji {
    background-image: url('../images/Laptop.svg');
  }

  .emoji.phone {
    background-image: url('../images/user-circle.svg');
  }

  .form-block.contact {
    padding-left: 70px;
    padding-right: 70px;
  }

  .footer-grid {
    grid-column-gap: 80px;
    grid-row-gap: 20px;
    text-align: left;
    grid-template-columns: 1.5fr 1fr 1fr;
    justify-content: space-around;
    justify-items: stretch;
  }

  .footer-logo-box {
    display: flex;
  }

  .footer-menu-grid {
    text-align: center;
    grid-template-columns: .25fr;
    justify-content: center;
    align-items: stretch;
    justify-items: center;
    display: flex;
  }

  .footer-links-column {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .footer-links-column.dif {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-image {
    margin-right: 0;
  }

  .banner-container {
    max-width: 1140px;
  }

  .image-2 {
    max-width: none;
    min-width: 45%;
    margin-left: 0;
    padding-left: 0;
    display: block;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
    overflow: visible;
    transform: translate(0, -55px);
  }

  .image-2.hi {
    z-index: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    display: none;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    transform: translate(0);
  }

  .div-block {
    justify-content: center;
    display: flex;
  }

  .container-2 {
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .section-2 {
    padding-bottom: 0;
  }

  .lottie-animation {
    padding-top: 0;
  }

  .div-block-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
    position: absolute;
  }

  .image-4 {
    right: 1162px;
  }

  .div-block-12 {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .section-10 {
    display: block;
  }

  .container-9 {
    background-color: #fff;
    align-items: center;
    display: flex;
  }

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

  .grid-4 {
    background-color: var(--blue);
    border-radius: 20px;
    padding: 25px 50px;
  }

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

  .feature-section {
    width: 950px;
    margin-left: 0;
    margin-right: 0;
  }

  .flex-container {
    justify-content: flex-start;
  }

  .section-13 {
    flex-direction: column;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .div-block-21 {
    max-width: 70vw;
    min-width: 70vw;
    background-color: var(--blue);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: center;
    margin-bottom: -5px;
  }

  .div-block-21.grey {
    width: 70vw;
    min-width: 70vw;
  }

  .div-block-23 {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .lottie-animation-11 {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

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

  .paragraph-4 {
    display: none;
  }

  .div-block-26 {
    background-color: var(--grey-smoke);
    text-align: center;
    border-radius: 0;
    flex-direction: row;
    align-items: flex-end;
    padding-top: 15px;
  }

  .div-block-27 {
    min-width: 100vw;
    background-color: var(--grey-smoke);
    justify-content: space-between;
    align-self: auto;
    align-items: flex-end;
    padding: 15px 46px;
    display: flex;
    position: relative;
  }

  .div-block-28 {
    background-color: var(--grey-smoke);
    justify-content: flex-end;
  }

  .stat {
    color: var(--blue);
    margin-bottom: 3px;
  }

  .stat.counterup {
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 35px;
  }

  .text-block-3 {
    color: #525252;
    font-size: 16px;
  }

  .circle-spacer, .container-15 {
    background-color: var(--grey-smoke);
  }

  .text-field {
    display: block;
  }

  .div-block-35 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-40 {
    justify-content: center;
  }

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

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

  .div-block-57 {
    justify-content: flex-start;
  }

  .div-block-62 {
    max-height: 70vh;
    max-width: 100vw;
    min-height: 70vh;
    min-width: 100vw;
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .section-23 {
    max-width: 100vw;
    min-width: 100vw;
    background-color: var(--grey-smoke);
    margin-top: 0;
  }

  .section-24 {
    max-width: 100vw;
    min-width: 100vw;
  }

  .columns-3 {
    width: 70vw;
    flex-direction: column;
    justify-content: center;
    align-self: auto;
    display: flex;
  }

  .column-6 {
    justify-content: center;
    display: none;
  }

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

  .column-7 {
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    align-self: center;
    display: flex;
  }

  .lottie-animation-16 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: -85px;
    display: flex;
  }

  .text-span-7 {
    color: var(--blue);
  }

  .div-block-64 {
    max-height: 70vh;
    max-width: 100vw;
    min-height: 70vh;
    min-width: 100vw;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .lottie-animation-17 {
    width: 100%;
    height: 300%;
    max-height: 100vh;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
    opacity: .4;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
    overflow: visible;
    transform: scale(2);
  }

  .div-block-65 {
    width: auto;
    height: auto;
    max-height: 70vh;
    max-width: none;
    min-height: 70vh;
    margin-bottom: 0;
    position: absolute;
  }

  .lottie-animation-18 {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    min-width: 100vw;
    opacity: .45;
    text-align: center;
    border-radius: 0;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    display: inline;
    position: static;
    transform: scale(2)rotate(90deg);
  }

  .div-block-66 {
    max-height: 100vh;
    max-width: 100vw;
    min-height: 100vh;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .lottie-animation-19 {
    width: 100vw;
    height: 70vh;
    max-height: 70vh;
    max-width: 100vw;
    opacity: .19;
    padding-bottom: 5px;
    transform: scale3d(2, 1.2, 1);
  }

  .div-block-67 {
    width: 400px;
    height: 400px;
    background-image: linear-gradient(113deg, #e3edff 31%, var(--blue) 76%, var(--hard-blue) 85%);
    position: absolute;
    overflow: hidden;
  }

  .div-block-68 {
    width: 100vw;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(310deg, #8dcfff, transparent 14%, #ffd7fe 27%, var(--faint-blue) 68%, white);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
  }

  .lottie-animation-20 {
    position: static;
  }

  .lottie-animation-21 {
    width: 600px;
    padding-bottom: 52px;
  }

  .div-block-69 {
    width: 600px;
    padding-right: 0;
    position: static;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .column-8 {
    padding-right: 300px;
  }

  .columns-4 {
    align-items: center;
    display: flex;
  }

  .column-9 {
    padding-left: 0;
  }

  .div-block-70 {
    max-height: 80vh;
    opacity: 1;
  }

  .lottie-animation-22 {
    height: 100vh;
    opacity: .1;
    margin-left: 18px;
    margin-right: 18px;
    padding: 0;
    transform: scale(2)rotate(90deg);
  }

  .hero-home {
    background-color: #f5f8fa;
  }

  .image-24 {
    top: -35px;
    right: 139px;
  }

  .image-24.hidden {
    display: none;
  }

  .column-11 {
    padding-left: 152px;
  }

  .image-column.builder {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .testimonial-text {
    position: static;
  }

  .mob-hidden {
    margin-left: 202px;
    margin-right: 0;
  }

  .popup {
    opacity: 1;
    display: none;
  }

  .contact-method-wrap.mob-hidden {
    margin-left: 0;
  }

  .image-35 {
    padding-top: 100px;
  }
}

@media screen and (max-width: 991px) {
  .section.image-background {
    height: 50vw;
  }

  .button {
    position: relative;
  }

  .button.light {
    font-size: 18px;
    line-height: 1.4;
  }

  .button.nal {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .text-box.heading.centered {
    padding-top: 25px;
  }

  .text-box.heading.main {
    max-width: 100vw;
    align-items: stretch;
    margin-left: 0;
    display: flex;
  }

  .text-box._750px.centered.dif {
    max-width: 80vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 25px;
    padding-right: 25px;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  ._12-columns.tablet-swap {
    flex-direction: column-reverse;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.head {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .container.mid {
    flex-direction: row;
    justify-content: center;
  }

  .column {
    width: 50%;
  }

  .column.desktop-1-column.tablet-hidden {
    display: none;
  }

  .column.desktop-4-column.tablet-12-column {
    width: 100%;
  }

  .column.desktop-3-column {
    flex-wrap: nowrap;
  }

  .column.desktop-3-column.tablet-4-column {
    width: 33.3333%;
  }

  .column.desktop-3-column.tablet-12-column, .column.desktop-7-column.tablet-12-column, .column.desktop-8-column.tablet-12-column {
    width: 100%;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  .logo-div {
    flex: 0 auto;
  }

  .nav-logo {
    flex: 1;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-dropdown {
    text-align: center;
    flex: 1;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 14px;
    display: block;
  }

  .paragraph.large.no-margin {
    padding-left: 50px;
    padding-right: 50px;
  }

  .paragraph.xl {
    text-align: center;
    margin-top: 0;
    padding-left: 115px;
    padding-right: 115px;
    font-size: 20px;
    display: inline;
  }

  .paragraph.medium.white {
    font-size: 17px;
  }

  .ds-menu-brand {
    margin-bottom: 20px;
  }

  .ds-menu {
    z-index: 500;
    border-top: 1px solid var(--light-blue);
    border-bottom: 1px solid var(--silver);
    background-color: var(--blue);
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    position: absolute;
    top: 80px;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-container {
    background-color: var(--grey-smoke);
    color: var(--grey-smoke);
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 14px;
  }

  ._2-column-grid {
    margin-left: 0;
  }

  ._3-column-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  ._3-column-grid.large-gaps.n {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  ._3-column-grid.large-gaps.perf {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    display: flex;
  }

  ._3-column-grid.large-gaps.perf.low {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: flex-start;
  }

  ._3-column-grid.pricing {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .heading.l.top {
    padding-left: 130px;
    padding-right: 130px;
  }

  .heading._2xl {
    padding-right: 0;
    font-size: 45px;
  }

  .heading._2xl.homepage {
    text-align: center;
    flex-direction: row;
    margin-left: 0;
    font-size: 45px;
    display: inline;
  }

  .error2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .licenses-grid {
    grid-column-gap: 40px;
    margin-left: 0;
  }

  .ds-body {
    flex-direction: column;
    display: flex;
  }

  .project-grid {
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-content: stretch;
    align-items: stretch;
    justify-items: center;
    column-gap: 64px;
  }

  ._4-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-link {
    font-size: 18px;
  }

  .logo-container {
    justify-content: center;
    display: flex;
  }

  .logos-div {
    grid-column-gap: 16px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .circle-badge {
    left: 309px;
  }

  .project-item {
    margin-bottom: 64px;
  }

  .testimonial-slider {
    padding-left: 80px;
    padding-right: 80px;
  }

  .slider-left-arrow, .slider-right-arrow {
    width: 40px;
  }

  .static-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    border-top: 1px solid #000;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-menu-button {
    color: var(--white);
    margin-left: auto;
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: var(--dark-blue);
    border-radius: 40px;
  }

  ._1-2-column-grid, ._2-1-column-grid {
    margin-left: 0;
  }

  .footer-grid {
    grid-column-gap: 10px;
    grid-template-columns: 3.45fr 2.75fr 1fr;
  }

  .footer-links-column, .footer-links-column.dif {
    align-items: center;
  }

  .testimonial-slider-arrow {
    width: 18px;
  }

  .photo-grid {
    width: 240%;
    margin-left: -75%;
  }

  .more-projects-grid {
    margin-left: 0;
  }

  .licenses-icons-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .banner-section {
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .image-2 {
    max-width: 75%;
    margin-right: 84px;
    position: static;
    right: -13%;
    transform: translate(29px, 14px);
  }

  .image-2.hi {
    transform: translate(24px, 10px);
  }

  .text-block {
    text-align: center;
    justify-content: center;
    align-self: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 0;
    font-weight: 500;
    text-decoration: none;
    display: flex;
  }

  .div-block-16 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-9 {
    max-width: 100vw;
    background-color: #fff;
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-10 {
    max-width: 100vw;
    padding-left: 50px;
    padding-right: 50px;
  }

  .feature-section {
    width: 550px;
    padding: 50px;
  }

  .feature-section.lft, .feature-section.bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .section-13 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .div-block-21 {
    background-color: var(--blue);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .div-block-22 {
    display: none;
  }

  .div-block-27 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-block-28 {
    min-width: 150px;
  }

  .text-block-3 {
    font-size: 12px;
  }

  .paragraph-7 {
    text-align: center;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-7.lft {
    text-align: center;
    margin-left: -70px;
    margin-right: -70px;
  }

  .columns-2 {
    flex-flow: column;
  }

  .columns-2.lft {
    flex-direction: column;
  }

  .div-block-57 {
    flex-direction: column-reverse;
  }

  .div-block-59, .div-block-60 {
    margin-left: -30px;
    margin-right: -30px;
  }

  .div-block-61 {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 0;
    padding-right: 0;
  }

  .column-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-62 {
    justify-content: center;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(0);
  }

  .columns-3 {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .column-6 {
    flex-direction: row;
    display: none;
  }

  .div-block-63 {
    position: static;
  }

  .column-7 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-70 {
    display: none;
  }

  .lottie-animation-22 {
    padding-top: 0;
    padding-bottom: 117px;
    top: -13%;
    transform: scale(2);
  }

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

  .link-3 {
    font-weight: 400;
  }

  .nav-link-menu {
    float: none;
    color: #363c40;
    background-color: rgba(255, 255, 255, .95);
    margin-top: 64px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    display: block;
    position: relative;
  }

  .brand-box {
    margin-top: 19px;
    margin-bottom: 22px;
    margin-left: 45px;
  }

  .nav-backing {
    padding-bottom: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .24);
  }

  .nav-backing.hero {
    display: none;
  }

  .logo-font {
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link-2 {
    color: #48545c;
    margin-top: 21px;
    margin-bottom: 15px;
  }

  .nav-link-2:hover {
    color: #def0fc;
  }

  .nav-link-2.order-btn {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 28px;
    margin-right: 280px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }

  .responsive-nav {
    padding-top: 0;
    display: block;
  }

  .hero-home {
    background-position: 0 0;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .hero-div {
    margin-left: 20px;
    margin-right: 20px;
  }

  .home-headline {
    width: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 60px;
    line-height: 78px;
  }

  .home-subhead {
    width: 100%;
    text-align: center;
    padding-left: 67px;
    padding-right: 67px;
  }

  .cta {
    float: none;
    padding-left: 117px;
    padding-right: 117px;
    display: inline-block;
  }

  .image-24 {
    margin-top: 20px;
    position: static;
  }

  .image-24.mob-hidden {
    display: none;
  }

  .image-24.hidden {
    display: block;
  }

  .image-25 {
    margin-top: 100px;
  }

  .first-section {
    text-align: center;
    padding-bottom: 80px;
  }

  .image-26 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .right-column-div {
    display: none;
  }

  .column-14 {
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
  }

  .section-body {
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .text-block-11 {
    clear: left;
    text-align: center;
    margin-left: 0;
    display: block;
  }

  .div-block-79.shape.normal {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .column-11 {
    padding-left: 160px;
  }

  .heading-19.normal {
    text-align: center;
  }

  .left-price-div {
    width: 45%;
  }

  .div-block-80 {
    width: 100%;
  }

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

  .hiw-div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-82 {
    width: 100%;
  }

  .div-block-82.right {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image-column {
    justify-content: center;
    display: flex;
  }

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

  .right-pricing-div {
    width: 45%;
  }

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

  .faq-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-2 {
    box-shadow: none;
    border-top-color: #bed1d1;
    padding-bottom: 25px;
  }

  .image-28 {
    max-width: 100%;
  }

  .testimonial-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    position: static;
  }

  .reviews-wrap {
    justify-content: center;
  }

  .testimonial-author-image {
    width: 56px;
  }

  .testimonial-text {
    text-align: center;
    position: static;
  }

  .mob-hidden {
    display: none;
  }

  .checkbox-field-4 {
    font-size: 14px;
    line-height: 24px;
  }

  .hack42-45-form {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: block;
  }

  .hack42-45-form._80 {
    width: auto;
  }

  .column-68 {
    flex-direction: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 1rem;
    display: block;
  }

  .main-layout-wrapper {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .input-field {
    width: 100%;
  }

  .hack42-checkbox {
    line-height: 24px;
  }

  .container-01 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .card-03._50-p {
    width: 100%;
    margin-right: 0;
  }

  .card-03._50-p.r1 {
    margin-right: 0;
    padding: 40px;
  }

  .card-03._50-p.r1._80 {
    width: 85vw;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 30px;
  }

  .form-block-3 {
    align-items: stretch;
  }

  .div-title-holder.image {
    margin-bottom: 40px;
  }

  .hack-button.button-small {
    width: 100%;
  }

  .container-24 {
    max-width: 728px;
  }

  .hack42-45-form-right {
    width: 100px;
    margin-bottom: 0;
  }

  .section-26 {
    flex-direction: row;
    padding: 4rem 3rem;
  }

  .section-26._01 {
    flex-direction: row;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-26._01.q-page {
    padding-top: 10rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .form-section-title {
    font-size: 38px;
  }

  .column-main {
    flex-direction: row;
  }

  .input-field-2.long {
    margin-left: 0;
    margin-right: 1rem;
  }

  .multistep_component {
    min-height: auto;
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

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

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

  .multistep_top.text-color-white {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .button-3 {
    justify-content: center;
    display: inline-block;
  }

  .popup {
    opacity: 0;
    display: none;
  }

  .popup-close {
    top: 5%;
    right: 5%;
  }

  .image-31.desktophidden {
    display: block;
  }

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

  .form-03-outer-div {
    grid-template-columns: 1fr;
  }

  .content-wrap-left {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .form-block-03 {
    margin-top: 20px;
  }

  .form-section-03 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

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

  .section.soft-gradient {
    padding-bottom: 60px;
  }

  .section.grey {
    display: flex;
  }

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

  .section.sec {
    background-color: var(--grey-smoke);
    padding-top: 0;
    padding-bottom: 20px;
  }

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

  .section.banner {
    margin-top: 0;
    display: block;
  }

  .button {
    padding: 7px 28px;
    font-size: 15px;
  }

  .button.minimal {
    margin-left: 0;
    margin-right: 0;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    width: 48px;
    height: 48px;
  }

  .spacer._32 {
    width: 24px;
    height: 24px;
  }

  .spacer._128 {
    width: 96px;
    height: 96px;
  }

  .spacer._80, .spacer._96 {
    width: 64px;
    height: 64px;
  }

  .text-box.heading.main {
    flex-direction: column;
    margin-left: 0;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .container.center-align {
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .container.head {
    height: 60vh;
    align-self: center;
    padding-top: 0;
    padding-bottom: 190px;
    display: flex;
  }

  .container.mobile-hidden {
    display: none;
  }

  .column.desktop-6-column.tablet-6-column, .column.desktop-4-column, .column.desktop-3-column, .column.desktop-3-column.tablet-4-column, .column.desktop-8-column, .column.desktop-8-column.tablet-8-column, .column.desktop-9-column, .column.desktop-5-column {
    width: 100%;
  }

  .nav-bar.white {
    background-color: #fff;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: row;
  }

  .nav-dropdown {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .nav-dropdown:hover {
    transform: none;
  }

  .paragraph {
    font-size: 15px;
  }

  .paragraph.large {
    font-size: 18px;
  }

  .paragraph.xl {
    text-align: center;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
  }

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

  .paragraph.contact.new {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-menu {
    background-color: #fff;
    padding: 16px 24px 24px;
  }

  .form.about.alt {
    width: auto;
    max-width: none;
    min-width: auto;
  }

  .ds-content {
    margin-left: 0;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .tab-link {
    width: auto;
    flex-direction: column;
    align-items: center;
    margin-left: 4px;
    margin-right: 4px;
    padding-top: 14px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
  }

  .nav-container {
    color: #fff;
    background-color: #fff;
  }

  .nav-link {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link.primary {
    margin-top: 15px;
    margin-left: 25px;
  }

  .field-block {
    min-height: auto;
  }

  .footer-container {
    flex-direction: column;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._2-column-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-left: 0;
  }

  ._2-column-grid.large-gaps {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  ._3-column-grid.large-gaps {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  ._3-column-grid.large-gaps.n {
    display: inline;
  }

  ._3-column-grid.large-gaps.perf {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-around;
    margin-bottom: 0;
    margin-right: 0;
  }

  .heading.l {
    font-size: 30px;
  }

  .heading.l.top {
    padding-left: 57px;
    padding-right: 57px;
  }

  .heading.m {
    font-size: 24px;
  }

  .heading.s {
    font-size: 20px;
  }

  .heading.xl {
    font-size: 42px;
  }

  .heading._2xl {
    padding-right: 0;
    font-size: 42px;
  }

  .heading._2xl.homepage {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 40px;
    display: block;
  }

  .heading._3xl {
    font-size: 42px;
  }

  .licenses-grid {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
    margin-left: 0;
  }

  .top-line, .bottom-line {
    height: 2px;
  }

  .project-grid {
    grid-row-gap: 32px;
    column-count: 1;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .text-link.white.under, .text-link.under {
    font-weight: 400;
  }

  ._4-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-link {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 18px;
  }

  .partner-logo {
    flex: 0 auto;
  }

  .logos-div {
    justify-content: space-between;
  }

  .circle-badge {
    width: 100px;
    height: 100px;
    bottom: -109px;
    left: 234px;
  }

  .spinning-circle-text {
    width: 84px;
  }

  .nav-menu {
    background-color: var(--white);
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .project-item {
    margin-bottom: 48px;
  }

  .tab-icon {
    width: 20px;
    margin-bottom: 2px;
    margin-right: 0;
  }

  .package-card {
    align-items: center;
  }

  .colour-tab-icon {
    width: 20px;
    margin-bottom: 2px;
    margin-right: 0;
  }

  .testimonial-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-left-arrow {
    height: 45px;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .slider-right-arrow {
    height: 45px;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .mobile-hidden {
    display: none;
  }

  .image {
    width: 32px;
  }

  .form-block.contact {
    width: 80vw;
    display: flex;
  }

  ._1-2-column-grid, ._2-1-column-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .footer-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    align-content: center;
    justify-content: center;
    align-self: center;
    justify-items: center;
  }

  .footer-logo-box {
    align-items: center;
  }

  .footer-menu-grid {
    text-align: center;
    align-items: center;
    display: block;
  }

  .footer-links-column {
    flex-direction: column;
    align-items: center;
  }

  .footer-links-column.dif {
    align-items: center;
  }

  .photo-grid {
    grid-column-gap: 32px;
  }

  .project-info-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
  }

  .more-projects-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .banner-section {
    text-align: left;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .banner {
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .image-2 {
    left: 112px;
    transform: translate(19px, 52px)rotate(30deg);
  }

  .image-2.hidden.shown {
    display: block;
    transform: translate(62px, 14px);
  }

  .image-2.hi {
    display: none;
    transform: translate(33px, 62px);
  }

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

  .div-block-12 {
    text-align: center;
  }

  .container-9 {
    padding-top: 50px;
  }

  .grid-4 {
    padding-left: 45px;
    padding-right: 45px;
  }

  .feature-section {
    width: 450px;
    padding: 40px 20px;
  }

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

  .feature-image-mask {
    margin-right: 0;
  }

  .feature-image {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-22 {
    justify-content: center;
    display: flex;
  }

  .image-10 {
    filter: grayscale();
  }

  .paragraph-2 {
    padding-left: 96px;
    padding-right: 96px;
  }

  .div-block-23 {
    display: none;
  }

  .div-block-26 {
    border-radius: 20px;
    flex: 1;
  }

  .div-block-27 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-color: #fff;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 15px;
    padding-left: 95px;
    padding-right: 95px;
  }

  .circle-spacer {
    display: none;
  }

  .feature-image-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .grid-15 {
    flex-flow: column wrap;
    justify-content: space-around;
    display: flex;
  }

  .paragraph-7 {
    text-align: center;
    padding-left: 61px;
    padding-right: 61px;
  }

  .paragraph-7.lft {
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
  }

  .image-18 {
    max-width: 90%;
  }

  .section-23 {
    background-color: rgba(0, 0, 0, 0);
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .columns-3 {
    justify-content: center;
    display: flex;
  }

  .div-block-63 {
    height: 50px;
  }

  .column-7 {
    flex-direction: row;
    display: flex;
  }

  .lottie-animation-16, .lottie-animation-22 {
    display: none;
  }

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

  .link-3 {
    font-weight: 400;
  }

  .section-25 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .container-21 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .brand-box {
    margin-top: 18px;
    margin-left: 20px;
    padding-left: 0;
  }

  .brand-box.w--current {
    margin-left: 45px;
  }

  .brand-box.responsive {
    margin-left: 20px;
    padding-left: 0;
  }

  .nav-backing {
    margin-left: 0;
    margin-right: 0;
    position: absolute;
  }

  .logo-font {
    margin-top: 0;
    margin-left: 0;
  }

  .nav-link-2.whitenav {
    color: #3a4b52;
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .nav-link-2.whitenav:hover {
    color: #253035;
  }

  .nav-link-2.order-btn {
    margin-right: 200px;
  }

  .menu-icon {
    color: #fff;
  }

  .menu-icon.w--open {
    color: #4312e3;
    background-color: rgba(255, 255, 255, .99);
  }

  .nav-menu-2 {
    background-color: rgba(255, 255, 255, .99);
  }

  .hero-home {
    background-position: 0 0;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .home-headline {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .right-column-div {
    width: 100%;
    display: none;
  }

  .left-price-div {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0%;
  }

  .div-block-80 {
    width: 100%;
  }

  .hiw-paragraph {
    margin-bottom: 30px;
  }

  .div-block-82 {
    width: 100%;
  }

  .right-pricing-div {
    width: 100%;
    margin-left: 0%;
  }

  .pricing-box-div {
    display: block;
  }

  .faq-paragraph {
    margin-bottom: 20px;
  }

  .testimonial-grid {
    grid-template-columns: 1.5fr;
  }

  .testimonial-cards-wrap-right {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }

  .testimonials-wrap {
    flex-direction: column;
  }

  .testimonial-text {
    position: static;
  }

  .testimonial-cards-wrap-left {
    width: 100%;
    padding-right: 0;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .checkbox-field-4 {
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hack42-45-form {
    width: 100%;
  }

  .text-block-oc-2.sub {
    margin-bottom: 20px;
  }

  .text-block-oc-2.sub.no-side {
    text-align: left;
  }

  .column-68 {
    flex-direction: row;
    flex: 1;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .column-68._01 {
    padding-left: 0;
    padding-right: 1rem;
  }

  .column-68._01.right, .column-68.none {
    padding-right: 0;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .main-layout-wrapper {
    max-width: none;
    flex-direction: column;
    flex: 0 auto;
    align-items: stretch;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .input-field {
    margin-right: 0;
  }

  .container-01 {
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .card-03 {
    padding: 30px 20px 20px;
  }

  .card-03._50-p {
    margin-top: 100px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    position: static;
  }

  .card-03._50-p.r1._80 {
    width: 85vw;
    margin-top: 125px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-title-holder.top.image._05 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .div-title-holder.image {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .div-title-holder.image._02.top, .div-title-holder.image._02.top._3 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .hack-button {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .hack-button.button-small {
    width: 100%;
  }

  .hack42-45-form-right {
    margin-top: 2rem;
    margin-right: 3rem;
  }

  .section-26 {
    padding: 4rem 2rem;
  }

  .section-26._01 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section-26._01.q-page {
    padding-top: 40px;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hack-form-select {
    font-size: .875rem;
  }

  .hack42-checkbox-label._01 {
    height: 225px;
    background-size: 100px;
    margin-right: 1rem;
  }

  .hack42-checkbox-label._02 {
    height: 225px;
    background-size: 100px;
  }

  .hack42-checkbox-label._02._04 {
    background-size: 100px;
  }

  .hack42-checkbox-label._02._03 {
    background-size: 100px;
    margin-right: 1rem;
  }

  .hack42-checkbox-label.half {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .form-section-title {
    margin-bottom: 10px;
    font-size: 32px;
  }

  .column-main.vert {
    flex-direction: column;
    margin-bottom: 0;
  }

  .column-main.flip {
    flex-direction: row;
  }

  .input-field-2.long {
    margin-left: 0;
    margin-right: 0;
  }

  .multistep_component {
    grid-row-gap: 3rem;
  }

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

  .multistep_lead-form-wrapper {
    width: 90vw;
  }

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

  .multistep_radio-grid {
    grid-auto-flow: row;
  }

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

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

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

  .scrollbar {
    padding-bottom: 20px;
    padding-right: 10px;
  }

  .popup-wrap {
    padding-left: 0;
  }

  .popup {
    opacity: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
  }

  .multistep_radio-grid-2 {
    grid-auto-flow: row;
  }

  .content-wrap-left {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  .wrapper {
    min-height: 100vh;
  }

  .wrapper.contact {
    width: auto;
    height: auto;
    min-height: auto;
    min-width: auto;
    justify-content: space-around;
    margin-top: 0;
  }

  .wrapper.top {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
  }

  .wrapper.about {
    margin-bottom: 35px;
  }

  .section {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .section.soft-gradient {
    padding-bottom: 300px;
  }

  .section.soft-gradient.phone {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.soft-gradient.phone.n {
    margin-bottom: -140px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.soft-gradient.phone.n.new {
    min-height: 90vh;
    padding-top: 0;
  }

  .section.soft-gradient.phone.a {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.soft-gradient.non {
    padding: 0 25px;
  }

  .section.soft-gradient.home {
    width: auto;
    height: auto;
    max-height: 100vh;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    object-fit: fill;
    background-image: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5));
    flex-flow: column wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 0;
    display: block;
    position: static;
  }

  .section.blue {
    text-align: center;
    justify-content: center;
    display: block;
  }

  .section.grey {
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
    position: relative;
  }

  .section.grey.c {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-image: linear-gradient(109deg, var(--soft-grey), white 74%);
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 100px;
    display: flex;
  }

  .section.grey.c.s {
    background-image: linear-gradient(135deg, var(--silver) 31%, #ffe6cc 82%);
  }

  .section.large {
    background-color: #f7f7f7;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section.image-background {
    max-width: 100vw;
    min-width: 100vw;
    border-radius: 0;
  }

  .section.sec {
    max-width: 100vw;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

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

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

  .section.banner {
    width: auto;
    height: auto;
    max-height: 50vh;
    max-width: 100vw;
    min-height: auto;
    min-width: 100vw;
    background-color: var(--white);
    text-align: center;
    margin-top: 0;
    padding: 60px 20px 0;
    display: block;
    position: static;
  }

  .section.c {
    max-width: 100vw;
  }

  .button.about.contact.u {
    width: 40vw;
    flex: 1;
  }

  .button.nav-link {
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 7px 0;
    font-size: 15px;
    display: flex;
  }

  .button.nal {
    padding-left: 20px;
    padding-right: 20px;
    display: inline;
  }

  .spacer._32 {
    width: 10px;
  }

  .spacer._32.new {
    width: 10px;
    height: 10px;
    display: block;
  }

  .spacer._80 {
    height: 20px;
    display: flex;
  }

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

  .text-box._800px {
    max-width: 100vw;
  }

  .text-box._600px {
    text-align: left;
    justify-content: flex-start;
  }

  .text-box.heading.centered {
    padding-top: 0;
  }

  .text-box.heading.main {
    max-width: 100%;
    align-items: center;
    padding-top: 10px;
    display: inline;
  }

  .text-box._750px.centered.dif {
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-box.l-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    text-align: center;
    margin-top: -16px;
    padding: 0 20px;
  }

  .container.center-align {
    display: inline;
  }

  .container.head {
    height: auto;
    max-height: none;
    max-width: 100vw;
    min-height: auto;
    flex-direction: column;
    margin-top: 0;
    padding: 0;
    display: block;
    position: static;
  }

  .container.mid {
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    display: inline-block;
  }

  .container.mid.top {
    flex-direction: column;
    display: flex;
  }

  .container.mobile-hidden {
    display: none;
  }

  .container.grey {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container.contact {
    margin-top: 40px;
  }

  .container.prcing {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .container.faq {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.l {
    padding-left: 20px;
    padding-right: 20px;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desktop-6-column {
    width: 100%;
    align-items: flex-start;
  }

  .column.desktop-6-column.tablet-6-column {
    align-items: center;
  }

  .column.desktop-3-column, .column.desktop-5-column {
    width: 100%;
  }

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

  .nav-bar {
    margin-bottom: 0;
  }

  .nav-bar.white {
    background-color: #fff;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-link.small {
    color: #fff;
    text-align: right;
    margin-right: 0;
  }

  .footer-links-container {
    flex-direction: row;
    justify-content: center;
    margin-right: 0;
    display: flex;
    position: static;
  }

  .footer {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph {
    text-align: left;
  }

  .paragraph.large.no-margin {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .paragraph.large.grey-text {
    text-align: center;
  }

  .paragraph.large.work {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph.xl {
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 400;
    display: block;
  }

  .paragraph.medium {
    text-align: center;
    flex: 0 auto;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .paragraph.medium.closed {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .paragraph.contact.new {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .ds-menu-brand {
    margin-bottom: 24px;
    margin-left: 16px;
  }

  .form {
    text-align: center;
  }

  .form.about {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    padding: 0 20px 20px;
  }

  .form.about.alt {
    width: 70vw;
    min-width: 180px;
    padding-top: 15px;
  }

  .form-success {
    width: 70vw;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 5px;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-input, .text-area {
    width: 100%;
  }

  .tab-link {
    height: auto;
    border-radius: 20px;
    margin-bottom: 8px;
    padding: 10px 25px;
  }

  .tab-link.w--current {
    background-color: rgba(89, 148, 250, .13);
  }

  .nav-container {
    max-width: 100vw;
    color: #fff;
    text-align: left;
    background-color: #fff;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-link.primary.alt {
    margin-right: 0;
  }

  .footer-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  ._2-column-grid {
    max-width: 100%;
    min-width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
    justify-items: center;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  ._2-column-grid.large-gaps.cont {
    flex-flow: column wrap;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    display: block;
  }

  ._3-column-grid {
    grid-template-columns: 1fr;
  }

  ._3-column-grid.large-gaps {
    justify-items: baseline;
    display: flex;
  }

  ._3-column-grid.large-gaps.n {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-left: 0;
    margin-right: 0;
    display: inline;
  }

  ._3-column-grid.large-gaps.perf {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }

  ._3-column-grid.large-gaps.perf.low {
    grid-column-gap: 30px;
    flex-flow: wrap;
    justify-content: center;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  ._3-column-grid.contact {
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
    display: flex;
  }

  .heading.xl.left {
    margin-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading.l {
    font-size: 26px;
  }

  .heading.l.top {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    margin-top: 20px;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 30px;
  }

  .heading.l.top.white {
    padding-left: 0;
    padding-right: 0;
  }

  .heading.m {
    object-fit: contain;
    position: relative;
  }

  .heading.m.n {
    flex: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 20px;
    display: flex;
    position: static;
  }

  .heading.s.no-margin.black {
    font-size: 18.5px;
  }

  .heading.xl.vit {
    margin-top: 12px;
    padding-top: 0;
  }

  .heading._2xl {
    text-align: center;
    font-size: 32px;
  }

  .heading._2xl.homepage {
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 30px;
    display: block;
  }

  .heading._3xl {
    font-size: 32px;
  }

  .error2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .link.light-blue {
    color: #fff;
  }

  .split-field-grid {
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
  }

  .top-line.white, .bottom-line.white {
    background-color: #fff;
  }

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

  .text-link.white {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    display: block;
  }

  .text-link.white.under {
    color: var(--dark-grey);
    font-weight: 400;
    text-decoration: underline;
  }

  .text-link.white.alt {
    display: none;
  }

  .text-link.under {
    font-weight: 400;
    text-decoration: underline;
  }

  ._4-column-grid {
    grid-template-columns: 1fr;
  }

  .logo-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partner-logo {
    background-color: rgba(0, 0, 0, 0);
  }

  .logos-div {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: stretch;
    justify-items: baseline;
  }

  .circle-badge {
    left: 110px;
    right: 20px;
  }

  .nav-menu.blue {
    background-color: var(--blue);
  }

  .collection-list {
    text-align: left;
    align-items: center;
    margin-top: 0;
    padding-bottom: 0;
    font-size: 14px;
  }

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

  .project-item {
    margin-bottom: 0;
  }

  .project-thumbnail-details {
    flex-wrap: wrap;
    align-items: center;
    padding-right: 0;
  }

  .tabs-menu {
    flex-flow: wrap;
    margin-top: 0;
    margin-bottom: -40px;
    padding-top: 20px;
  }

  .tabs-menu.ns {
    margin-bottom: 0;
    padding-top: 0;
  }

  .package-card {
    text-align: left;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .testimonial-slider {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-left-arrow {
    padding-left: 10px;
  }

  .slider-right-arrow {
    padding-right: 10px;
  }

  .mobile-hidden {
    display: none;
  }

  .answer {
    padding-left: 0;
  }

  .answer.faq {
    padding-right: 0;
  }

  .question-arrow-icon {
    filter: none;
    margin-left: 16px;
  }

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

  .emoji.white-hand {
    display: inline;
  }

  .static-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-block.contact {
    width: 70vw;
    max-width: none;
    min-width: 180px;
    border-radius: 0 0 20px 20px;
    margin-top: -60px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .ds-menu-button {
    padding: 4px;
  }

  .footer-grid {
    justify-items: center;
  }

  .footer-logo-box {
    align-items: center;
    margin-bottom: 24px;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .testimonial-slide-text-box {
    max-width: 100vw;
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: relative;
  }

  .testimonial-slider-arrow {
    width: 12px;
    margin-right: 0;
  }

  .photo-grid {
    width: 360%;
    margin-left: -25%;
  }

  .project-images-list {
    grid-row-gap: 24px;
  }

  .tag-text {
    text-align: left;
    align-self: center;
    margin-bottom: 0;
    font-size: 16px;
  }

  .more-projects-grid {
    grid-template-columns: 1fr;
  }

  .banner-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .banner {
    text-align: left;
    justify-content: center;
  }

  .banner-text {
    text-align: center;
    flex-direction: column;
    padding-bottom: 0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5em;
    display: block;
  }

  .banner-link {
    background-color: #fff;
    border-radius: 20px;
    flex: 0 auto;
    padding-top: 2px;
    padding-bottom: 2px;
    display: none;
  }

  .image-2 {
    z-index: 0;
    width: 100%;
    height: auto;
    max-width: none;
    min-height: auto;
    min-width: auto;
    float: none;
    clear: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 0;
    display: block;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: visible;
    transform: rotate(30deg);
  }

  .image-2.hidden.shown {
    display: inline;
    transform: translate(-10px, 7px);
  }

  .section-3 {
    margin-top: 0;
  }

  .text-span {
    font-size: 20px;
    font-style: normal;
    text-decoration: underline;
  }

  .lottie-animation-4 {
    margin-top: 15px;
  }

  .image-3 {
    display: inline-block;
  }

  .html-embed-3 {
    flex-direction: row;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    margin-top: 30px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    overflow: visible;
  }

  .grid-2 {
    grid-template-rows: auto auto auto;
    margin-top: 60px;
    padding-top: 0;
  }

  .container-4 {
    margin-bottom: 160px;
    padding-bottom: 103px;
  }

  .div-block-7 {
    text-align: center;
  }

  .heading-6 {
    text-align: center;
    font-size: 15px;
  }

  .image-5 {
    max-width: 70%;
    margin-right: 5px;
  }

  .section-7 {
    background-color: rgba(0, 0, 0, .05);
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .div-block-11 {
    padding-bottom: 20px;
  }

  .div-block-12 {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .div-block-13 {
    max-width: 100vw;
    margin-top: 0;
    padding-top: 0;
  }

  .grid-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    display: grid;
  }

  .container-8 {
    flex-direction: column;
    display: block;
  }

  .lottie-animation-10 {
    margin-left: 80px;
    margin-right: 80px;
  }

  .div-block-14 {
    min-height: 100vh;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .container-9 {
    margin-bottom: -2px;
    padding: 10px 25px 0;
  }

  .html-embed-5 {
    margin-bottom: 0;
  }

  .body {
    max-height: none;
    max-width: none;
  }

  .html-embed-6 {
    height: auto;
    min-height: auto;
    flex: 1;
    padding-top: 0;
    display: flex;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .container-10 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    padding: 15px 0 30px;
    display: flex;
  }

  .grid-5 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    justify-items: center;
    display: flex;
  }

  .feature-section {
    width: 80vw;
    flex-flow: column;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-section.lft {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-section.bottom {
    margin-bottom: 20px;
  }

  .flex-container {
    text-align: center;
    flex-flow: column;
  }

  .flex-container.imgup {
    flex-direction: column-reverse;
  }

  .feature-image {
    padding-bottom: 20px;
  }

  .image-6 {
    max-width: 65%;
    border-radius: 20px;
  }

  .div-block-20 {
    max-height: 805vh;
    max-width: 100vh;
    min-height: 80vh;
    min-width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    position: absolute;
    top: auto;
    bottom: -1%;
    left: 0%;
    right: 0%;
  }

  .div-block-21 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-21.grey {
    background-color: var(--blue);
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-22 {
    justify-content: center;
    padding-top: 0;
    display: flex;
  }

  .image-10 {
    filter: none;
    border-radius: 20px;
    margin-top: 20px;
  }

  .paragraph-2 {
    padding-left: 26px;
    padding-right: 26px;
  }

  .div-block-23 {
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .div-block-24 {
    justify-content: center;
    display: flex;
  }

  .phoicon {
    max-width: 30px;
    flex-direction: row;
    justify-content: center;
    display: inline-block;
  }

  .section-14 {
    padding-bottom: 0;
  }

  .heading-9 {
    font-size: 20px;
  }

  .counterup {
    font-size: 30px;
  }

  .section-15 {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .grid-11 {
    flex-direction: column;
    grid-template-rows: 200px auto;
    justify-items: center;
    display: flex;
  }

  .paragraph-4 {
    padding-top: 0;
  }

  .heading-10 {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 25px;
  }

  .div-block-26 {
    width: 100%;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #f7f7f7;
    border-radius: 20px;
    margin-top: 7px;
    margin-bottom: 7px;
    position: relative;
  }

  .div-block-27 {
    max-width: 85vw;
    min-width: 85vw;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-left: 50px;
    padding-right: 50px;
    position: static;
  }

  .div-block-28 {
    max-height: 150px;
    max-width: 100px;
    min-height: 75px;
    min-width: 200px;
  }

  .stat, .stat.counterup {
    font-size: 25px;
  }

  .div-block-31 {
    height: 15px;
  }

  .div-block-32 {
    height: 15px;
    display: block;
  }

  .section-16 {
    margin-top: -20px;
  }

  .div-block-33 {
    min-height: 10px;
  }

  .container-14 {
    z-index: 2147483647;
    background-color: #fff;
    align-self: auto;
    display: block;
    position: relative;
  }

  .div-block-34 {
    max-height: 100vh;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .container-15 {
    background-color: rgba(0, 0, 0, 0);
    align-self: auto;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .typed-words {
    display: inline;
  }

  .feature-image-2 {
    width: 80%;
    padding-top: 0;
    padding-bottom: 15px;
  }

  .div-block-35 {
    max-height: 150px;
    min-height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-span-5 {
    align-items: center;
    display: block;
  }

  .div-block-37 {
    width: 70vw;
    min-height: auto;
    min-width: 180px;
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 0;
  }

  .div-block-37.hidden.shown, .div-block-37.mobile-hidden {
    display: none;
  }

  .div-block-37.project {
    display: flex;
  }

  .div-block-39 {
    flex-direction: column;
    align-items: center;
    display: block;
  }

  .div-block-42, .div-block-43 {
    flex: 0 auto;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-44 {
    width: 10px;
    height: 10px;
    min-height: 10px;
    min-width: 10px;
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .section-17 {
    margin-top: 20px;
  }

  .preloader {
    flex-direction: row;
    display: none;
  }

  .lottie-animation-12 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-45 {
    width: 400px;
    height: 200px;
  }

  .lottie-animation-13 {
    width: auto;
    height: auto;
    max-height: 400px;
    max-width: 400px;
    min-height: auto;
    min-width: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: -133px;
    padding-bottom: 0;
    display: flex;
  }

  .heading-14 {
    color: #000;
    justify-content: center;
    display: flex;
  }

  .section-19 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-4 {
    font-size: 20px;
  }

  .text-block-4.m {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
  }

  .div-block-48 {
    grid-row-gap: 5px;
    flex-direction: column;
    padding-bottom: 0;
  }

  .div-block-49 {
    flex-wrap: nowrap;
  }

  .text-block-5 {
    font-size: 15px;
    font-weight: 500;
  }

  .container-17 {
    max-width: none;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-16 {
    margin-top: -5px;
    margin-right: 0;
  }

  .grid-14 {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .grid-15 {
    grid-column-gap: 10px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
    display: flex;
  }

  .container-18 {
    padding-left: 70px;
    padding-right: 70px;
  }

  .heading-15, .heading-15.lft, .heading-16, .paragraph-6 {
    text-align: center;
  }

  .paragraph-7 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 35px;
    padding-right: 35px;
  }

  .paragraph-7.lft {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-19 {
    justify-content: center;
  }

  .image-18 {
    max-width: 80%;
    display: block;
  }

  .div-block-51 {
    flex-direction: row;
    display: flex;
  }

  .lottie-animation-14 {
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .div-block-53 {
    align-items: center;
    padding-bottom: 15px;
    padding-left: 0;
  }

  .lottie-animation-15 {
    transform: rotate(-20deg);
  }

  .div-block-55 {
    display: none;
  }

  .columns-2 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .columns-2.lft {
    flex-direction: column;
  }

  .div-block-57 {
    flex-direction: column-reverse;
    margin-top: -20px;
  }

  .div-block-59, .div-block-60, .div-block-61 {
    width: 80vw;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-62 {
    max-height: 105vh;
    max-width: 100vw;
    min-height: 105vh;
    min-width: 100vw;
    padding-top: 75px;
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
  }

  .body-2 {
    max-width: 100vw;
    min-width: 100vw;
  }

  .section-23 {
    width: 100vw;
    height: auto;
    background-color: #fff;
    padding-top: 50px;
    position: static;
  }

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

  .columns-3 {
    flex-direction: column;
  }

  .column-6 {
    flex-direction: row-reverse;
    justify-content: center;
    display: none;
  }

  .lottie-animation-21 {
    display: none;
  }

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

  .collection-list-wrapper-2 {
    text-align: left;
  }

  .link-3 {
    color: var(--dark-grey);
    font-weight: 400;
  }

  .paragraph-8, .paragraph-9, .paragraph-10 {
    margin-bottom: 0;
  }

  .section-25 {
    padding-top: 30px;
  }

  .container-20 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .rich-text-block {
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-78 {
    width: 15px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-link-menu {
    position: relative;
  }

  .nav-backing {
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  }

  .logo-font {
    margin-left: 0;
  }

  .nav-link-2.whitenav {
    color: var(--black);
    text-align: center;
  }

  .nav-link-2.order-btn {
    margin-left: 20px;
    margin-right: 20px;
  }

  .responsive-nav {
    background-color: #fff;
  }

  .menu-icon.w--open {
    background-color: rgba(255, 255, 255, 0);
  }

  .nav-menu-2 {
    background-color: #fff;
  }

  .hero-home {
    background-color: #f5f8fa;
    background-position: 0 0;
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 0;
  }

  .home-headline {
    padding-left: 0;
    padding-right: 0;
    font-size: 28px;
    line-height: 38px;
  }

  .home-subhead {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cta {
    margin-bottom: 10px;
    padding-left: 73px;
    padding-right: 73px;
  }

  .image-24 {
    margin-top: 0;
    margin-right: 0;
    padding-top: 21px;
  }

  .image-24.hidden {
    display: block;
  }

  .column-13 {
    padding-left: 10px;
  }

  .column-14 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-15 {
    padding-left: 10px;
  }

  .section-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-11 {
    padding-bottom: 25px;
  }

  .column-12 {
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .column-11 {
    justify-content: center;
    padding-left: 0;
    display: flex;
  }

  .heading-19.normal {
    font-size: 28px;
  }

  .div-block-80 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefit-split-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefit-text {
    margin-bottom: 5px;
    display: block;
  }

  .paragraph-text {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .benefit-image {
    margin-bottom: 10px;
  }

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

  .how-it-works-section {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-18 {
    padding-right: 0;
  }

  .div-block-82 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-82.right {
    margin-top: 0;
  }

  .image-column {
    min-height: 300px;
    object-fit: contain;
    justify-content: center;
    padding-right: 0;
    display: flex;
  }

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

  .faq-question {
    text-align: center;
    padding-bottom: 15px;
    font-size: 20px;
  }

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

  .footer-2 {
    box-shadow: none;
  }

  .image-27 {
    max-width: 100%;
    display: block;
  }

  .image-29 {
    margin-bottom: 0;
  }

  .icon-2 {
    color: var(--hard-blue);
  }

  .columns-5 {
    flex-flow: wrap;
    display: flex;
  }

  .testimonial-author-wrap {
    align-items: center;
  }

  .testimonials-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reviews-wrap {
    flex-direction: column;
  }

  .testimonial-author-image {
    width: 48px;
    height: auto;
  }

  .testimonials-section {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-stars {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .mob-hidden {
    display: none;
    overflow: visible;
  }

  .hack42-45-form {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .column-68 {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .column-68._01 {
    flex-direction: row;
    flex: 1;
    align-items: stretch;
    display: block;
    position: relative;
  }

  .column-68._01.right {
    flex-direction: column;
    display: flex;
  }

  .column-68._01._0 {
    padding-right: 0;
  }

  .main-layout-wrapper {
    width: 100%;
    max-width: none;
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .input-field {
    width: 100%;
    height: 60px;
    flex: 1;
    margin-bottom: 1rem;
    padding-right: 20px;
  }

  .input-field.long {
    width: 200%;
    margin-bottom: 1rem;
  }

  .input-field.long.shadow-off._949 {
    width: 100%;
  }

  .form-group {
    width: 100%;
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  .container-01 {
    margin-left: auto;
    margin-right: auto;
  }

  .card-03._50-p {
    width: auto;
    margin-top: 140px;
    margin-right: 0;
    position: static;
  }

  .card-03._50-p.r1 {
    width: 90%;
    flex: 0 auto;
    margin-top: 0;
    margin-right: 0;
  }

  .card-03._50-p.r1._80 {
    width: auto;
    margin-top: 125px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hack45-added-value {
    font-size: 2rem;
  }

  .hack-button.button-small {
    width: 100%;
    background-color: #61a4f0;
    border-color: #61a4f0;
    font-size: 18px;
    line-height: 24px;
  }

  .container-24 {
    max-width: none;
  }

  .hack42-45-form-right {
    width: 100px;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 2rem;
  }

  .section-26 {
    padding: 2rem 20px;
  }

  .section-26._01 {
    padding: 4rem 20px;
  }

  .section-26._01.q-page {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hack-form-select.hack44-select {
    border-radius: 0;
  }

  .hack42-checkbox-label {
    margin-bottom: 20px;
  }

  .hack42-checkbox-label._01, .hack42-checkbox-label._02._03 {
    margin-right: 0;
  }

  .form-section-title {
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2em;
  }

  .column-main {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
    display: flex;
  }

  .column-main.flip {
    width: 100%;
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  .input-field-2.long {
    width: 100%;
    border-radius: 0;
    padding: 20px;
  }

  .multistep_image-wrapper {
    border-radius: 4px;
    box-shadow: 4px 4px 17px 4px rgba(0, 0, 0, .2);
  }

  .multistep_form-slider {
    width: 100%;
  }

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

  .multistep_radio-field {
    height: auto;
    padding: 2rem 1rem;
    font-size: .875rem;
  }

  .multistep_form-segment {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .section_multistep {
    background-image: url('../images/Group-11-2.svg'), linear-gradient(to bottom, null, null), url('../images/priscilla-du-preez-nF8xhLMmg0c-unsplash-1.jpg');
    background-size: contain, auto, cover;
  }

  .slider-button-submit {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .slider-button-back {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .field-label {
    font-size: .875rem;
  }

  .multistep_lead-form-wrapper {
    width: 92vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .multistep_lead-form-wrapper:focus {
    outline-offset: 0px;
    outline: 3px #333;
    box-shadow: 0 0 rgba(0, 0, 0, 0);
  }

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

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

  .multistep_radio-button-label {
    font-size: 1rem;
  }

  .multistep_radio-button-label.is-budget {
    font-size: .875rem;
  }

  .slider-button-next {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .multistep_title {
    font-size: 2rem;
  }

  .form-input::-ms-input-placeholder {
    font-size: .875rem;
  }

  .form-input::placeholder {
    font-size: .875rem;
  }

  .form-input.is-text-area {
    min-height: 5.9rem;
  }

  .scrollbar {
    max-height: 700px;
    padding: 20px;
  }

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

  .button-3 {
    display: inline-block;
  }

  .form-border {
    min-width: auto;
    padding: 20px;
  }

  .input-wrapper.mr-15 {
    margin-right: 0;
  }

  .popup {
    opacity: 0;
    display: none;
  }

  .spacer-30 {
    height: 15px;
  }

  .popup-close {
    top: 30px;
    right: 30px;
  }

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

  .radio-button-field.space {
    margin-left: 0;
    display: block;
  }

  .image-31 {
    object-fit: contain;
    margin-top: 21px;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .image-31.desktophidden {
    display: block;
  }

  .column-69, .content-wrap-left {
    padding-top: 40px;
  }

  ._2-questions-wrap {
    flex-direction: column;
  }

  .contact-method {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .contact-method.no-link.hidden {
    margin-right: 0;
    display: flex;
  }

  .contact-method-wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    padding-right: 0;
  }

  .form-block-03 {
    width: 100%;
    max-width: 100%;
  }

  .form-section-03 {
    padding-top: 0;
  }

  .contact-icon {
    min-height: 22px;
    min-width: 22px;
  }

  .container-25 {
    background-color: #fff;
  }
}

#w-node-_09a6835b-3667-879c-d9c7-850528c30147-cf3fcb86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a2d89eb-bc82-c659-ac8e-ea66218c1b91-cf3fcb86 {
  justify-self: start;
}

#w-node-ddda8be0-587a-8ab4-59dc-2908a102504c-cf3fcb86 {
  align-self: end;
}

#w-node-aca2881b-9b04-35d5-8843-fac19a833004-cf3fcb86, #w-node-_83501f6a-673d-8bda-a733-1181f8b15cde-cf3fcb86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ddda8be0-587a-8ab4-59dc-2908a102505b-cf3fcb86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e9230193-c3be-f6a5-5941-f0789a25a413-75d8490c, #w-node-d43b3c8f-8dd2-2da9-c6b1-f8e5b68301a5-75d8490c, #w-node-_1e61c607-5357-2e30-075b-5568f34a4025-92780c29, #w-node-_1e61c607-5357-2e30-075b-5568f34a402b-92780c29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5476fbb0-6227-98e0-e981-825fe1ca61af-94780c35 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a9cc5493-c8ed-dd5b-3659-dc84fe089160-0bc2e875, #w-node-a9cc5493-c8ed-dd5b-3659-dc84fe089160-b81891b6 {
  align-self: center;
}

@media screen and (min-width: 1280px) {
  #w-node-b66374b8-a69d-2cb6-3980-23c2cf3fcb8a-cf3fcb86 {
    justify-self: auto;
  }

  #w-node-_09a6835b-3667-879c-d9c7-850528c30147-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-aa82cd8a-ecd5-45e4-76b8-409ea8e37c0d-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ddda8be0-587a-8ab4-59dc-2908a102505b-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_09a6835b-3667-879c-d9c7-850528c30147-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_7a2d89eb-bc82-c659-ac8e-ea66218c1b91-cf3fcb86 {
    justify-self: auto;
  }

  #w-node-aa82cd8a-ecd5-45e4-76b8-409ea8e37c0d-cf3fcb86 {
    justify-self: center;
  }

  #w-node-ddda8be0-587a-8ab4-59dc-2908a102504c-cf3fcb86 {
    order: 9999;
  }

  #w-node-cf3476e8-490a-7bed-ffc8-6113616f088f-bb780c2b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7a2d89eb-bc82-c659-ac8e-ea66218c1b91-cf3fcb86 {
    justify-self: center;
  }

  #w-node-ddda8be0-587a-8ab4-59dc-2908a102505b-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_696f4f0b-56e1-71e3-e818-e72475d84916-75d8490c, #w-node-abdc72d5-bc5f-f0e5-fe20-2177c57dfa9c-92780c29, #w-node-_49b109b3-919e-b99a-8652-0e5d5083cb93-92780c29, #w-node-df99e517-0b9c-5e9c-b6e9-5de53575b7ff-92780c29, #w-node-_985bc95f-807b-eb97-9d3a-c8bf2760827e-92780c29, #w-node-_416de3ab-3f71-2bf2-000f-9963e189006f-92780c29, #w-node-f0585222-e808-b096-0dfa-5c442bcde948-92780c29, #w-node-_1e61c607-5357-2e30-075b-5568f34a401c-92780c29 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_26371770-b3a3-dafb-5894-ed5a3a89e35b-88780c3c {
    justify-self: auto;
  }
}


