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

body {
  font-family: 'DM Sans', sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}

h4 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}

h5 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}

h6 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.6;
}

a {
  margin-top: 26px;
  border-radius: 0px;
  color: #000;
  text-decoration: underline;
}

.nav-link {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #2b3851;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
}

.navbar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-color: transparent;
}

.header-background {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 500px;
  margin-bottom: 50px;
  padding-bottom: 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  color: #000;
}

.headline-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.button {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 20px 30px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 3px;
  background-color: #3a63d4;
  font-family: 'Space Mono', sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.subhead {
  margin-top: 0px;
  margin-bottom: 15px;
  font-family: 'Space Mono', sans-serif;
  color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.brand-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.site-title {
  margin-top: 12px;
  margin-bottom: 12px;
  font-family: Nunito, sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 900;
}

.body-container {
  padding-top: 0px;
}

.menu-button {
  color: #3a63d4;
}

.footer {
  padding-top: 60px;
  padding-bottom: 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: center;
}

.footer-flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
}

.footer-logo-link {
  max-height: 60px;
  min-width: 60px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.footer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.footer-heading {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link {
  display: block;
  margin-bottom: 10px;
  color: #444;
  text-decoration: none;
}

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

.hero {
  display: block;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0.5 auto;
  -ms-flex: 0 0.5 auto;
  flex: 0 0.5 auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

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

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

.site-navigation {
  padding-top: 20px;
}

.heading {
  margin-top: 0px;
  margin-bottom: 8px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-family: Nunito, sans-serif;
  color: #000;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 900;
}

.navbar-container {
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 1290px;
}

.body {
  background-color: #ee785c;
}

.image {
  max-width: 85%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.image-2 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.grid {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

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

.heading-2 {
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 36px;
  line-height: 28px;
  font-weight: 900;
  text-align: left;
}

.image-3 {
  padding-top: 33px;
}

.navbar-2 {
  background-color: rgba(238, 120, 92, 0);
}

.text-block {
  padding-top: 34px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 900;
}

.conta {
  max-width: 100%;
  margin-bottom: 97px;
}

.grid-3 {
  max-width: 1200px;
  margin-top: 28px;
  padding-top: 105px;
  padding-right: 17px;
  padding-left: 17px;
  justify-items: start;
  grid-auto-flow: row;
  grid-column-gap: 74px;
  -ms-grid-columns: 8.5fr 5fr;
  grid-template-columns: 8.5fr 5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.heading-1 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 72px;
  line-height: 100%;
  font-weight: 900;
  text-align: left;
  -o-object-fit: fill;
  object-fit: fill;
}

.heading-1.orange {
  padding-top: 0px;
  color: #ee785c;
  font-size: 36px;
  text-align: center;
}

.text-block-2 {
  color: #f2f2f2;
}

.text-block-3 {
  padding-top: 14px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 24px;
  line-height: 28px;
  text-align: left;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 97px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.main-buttons {
  display: block;
  width: 450px;
  max-width: none;
  margin-top: 50px;
  padding: 12px 70px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 29px;
  background-color: #2b3851;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
}

.main-buttons.header {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.main-buttons.features {
  max-width: none;
  min-width: auto;
}

.grid-4 {
  margin-top: 115px;
  padding-top: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-4 {
  max-width: 30%;
}

.image-5 {
  max-width: 30%;
}

.image-6 {
  max-width: 30%;
}

.heading-3 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 24px;
  font-weight: 700;
}

.feature-image {
  max-width: 30%;
}

.feature-heading {
  margin-top: 20px;
  padding-top: 20px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 24px;
  font-weight: 700;
}

.text-block-4 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
}

.body-text-1 {
  max-width: 95%;
  margin-top: 20px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}

.section-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 160px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-2 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  font-weight: 400;
}

.heading-4 {
  font-size: 36px;
}

.grid-5 {
  margin-top: 28px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
}

.div-block-2 {
  border-style: none;
  border-width: 1px;
  border-color: #ffc1b2;
  background-color: hsla(0, 0%, 100%, 0.04);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px;
  background-size: auto;
  background-clip: border-box;
}

.div-block-3 {
  border-top: 1px solid #ffc1b2;
  border-bottom: 1px solid #ffc1b2;
  background-color: hsla(0, 0%, 100%, 0.04);
}

.process-text {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-top: 1px none #ffc1b2;
  border-bottom: 1px none #ffc1b2;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 18px;
}

.process-block {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-color: hsla(0, 0%, 100%, 0.05);
}

.section-3 {
  min-height: 800px;
  background-color: #f2f2f2;
  background-image: url('../images/hifi-phone.png');
  background-position: 87% 100%;
  background-size: 592px;
  background-repeat: no-repeat;
}

.containerr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.image-7 {
  max-width: 50%;
  padding-top: 27px;
}

.image-8 {
  -o-object-fit: contain;
  object-fit: contain;
}

.design-process-bar {
  display: -ms-grid;
  display: grid;
  padding-top: 15px;
  padding-bottom: 15px;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 3.25fr 1fr 1fr;
  grid-template-columns: 3.25fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-top: 1px solid #ffc1b2;
  border-bottom: 1px solid #ffc1b2;
  background-color: hsla(0, 0%, 100%, 0.05);
}

.design-process-bar.no-lines {
  border-top-style: none;
  border-bottom-style: none;
  background-color: hsla(0, 0%, 100%, 0);
}

.downloadable-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f2f2f2;
}

.download-icon {
  max-width: 20px;
}

.process-title {
  padding-left: 25px;
}

.collection-item {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.process-title-block {
  padding-left: 20px;
}

.title-process-text-copy {
  padding-left: 20px;
}

.text-block-5 {
  font-family: 'Droid Serif', serif;
}

.div-block-4 {
  display: -ms-grid;
  display: grid;
  max-width: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-grid-row-align: center;
  align-self: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-4.features {
  margin-top: 99px;
}

.button-3 {
  margin-right: 160px;
  margin-left: 160px;
}

.div-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 50%;
  margin-top: 0px;
  padding-top: 343px;
  padding-bottom: 343px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

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

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

.secondary-button {
  width: 450px;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-style: solid;
  border-width: 1px;
  border-color: #2b3851;
  border-radius: 30px;
  background-color: rgba(56, 152, 236, 0);
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #2b3851;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
}

.secondary-button.hifi {
  color: #2b3851;
}

.secondary-button.demo {
  border-width: 0px;
  text-decoration: underline;
}

.grid-6 {
  margin-top: 47px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.team-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-member {
  max-width: 70%;
}

.text-block-6 {
  padding-top: 7px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
}

.section-4 {
  min-height: 1000px;
}

.ection {
  min-height: 1000px;
  padding-top: 22px;
}

.ection.features {
  min-height: 900px;
}

.ection.design-process {
  min-height: 930px;
  margin-top: 0px;
  padding-top: 47px;
}

.ection.footer {
  min-height: 650px;
}

.div-block-6 {
  margin-top: 40px;
}

.div-block-7 {
  margin-top: 50px;
  padding-top: 0px;
}

.container-2 {
  min-width: 1200px;
}

.section-5 {
  background-color: #2b3851;
  text-align: center;
}

.text-block-7 {
  padding-top: 12px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  text-align: center;
}

.text-block-8 {
  padding-top: 12px;
  padding-bottom: 31px;
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #f2f2f2;
  text-align: center;
}

.text-block-9 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.container-3 {
  max-width: none;
  margin-right: 17px;
  margin-left: 17px;
}

.navbar-3 {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #ee785c;
}

.nav-link-2 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #2b3851;
  letter-spacing: 1px;
}

.nav-link-2.w--current {
  color: #2b3851;
}

.nav-link-3 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #2b3851;
  letter-spacing: 1px;
}

.nav-link-4 {
  font-family: 'Proxima Nova', Verdana, sans-serif;
  color: #2b3851;
  letter-spacing: 1px;
}

.button-6 {
  background-color: rgba(56, 152, 236, 0);
}

.image-10 {
  max-width: 70%;
}

.text-block-10 {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .nav-link {
    color: #fff;
  }

  .navbar {
    padding-top: 0px;
  }

  .header-background {
    height: auto;
    min-height: 400px;
    padding-bottom: 50px;
  }

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

  .menu-button.w--open {
    background-color: #000;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .navbar-container {
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
    margin-left: 0px;
  }

  .nav-menu {
    background-color: #000;
    color: #fff;
  }

  .heading-2 {
    font-size: 30px;
  }

  .text-block {
    padding-top: 31px;
  }

  .grid-3 {
    margin-top: 2px;
    padding-top: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: minmax(auto, 400px) auto;
    grid-template-rows: minmax(auto, 400px) auto;
  }

  .heading-1 {
    margin-top: -23px;
    font-size: 62px;
  }

  .text-block-3 {
    font-size: 18px;
  }

  .div-block {
    margin-top: 87px;
    padding-top: 0px;
  }

  .main-buttons {
    min-width: 400px;
  }

  .main-buttons.header {
    max-width: none;
    min-width: 300px;
    margin-top: 15px;
  }

  .main-buttons.header.w--current {
    min-width: 400px;
  }

  .main-buttons.hifi {
    width: auto;
    min-width: auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  .feature-heading {
    padding-top: 0px;
  }

  .section-3 {
    background-size: 534px;
  }

  .containerr {
    max-width: none;
    padding-right: 20px;
    padding-left: 20px;
  }

  .div-block-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-5 {
    max-width: 49%;
    padding-top: 166px;
    padding-bottom: 488px;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .secondary-button {
    width: 450px;
    min-width: 400px;
    margin-top: 10px;
    padding-right: 69px;
    padding-left: 58px;
  }

  .secondary-button.hifi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    min-height: auto;
    min-width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .secondary-button.demo {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .team-member {
    max-width: 80%;
  }

  .ection.features {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ection.design-process {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ection.footer {
    min-height: 550px;
  }

  .container-2 {
    min-width: auto;
  }

  .text-block-7 {
    padding-top: 12px;
  }

  .menu-button-3 {
    padding-top: 22px;
    color: #2b3851;
  }

  .image-9 {
    max-height: 100%;
    margin-top: 30px;
  }

  .text-block-9 {
    font-family: 'Proxima Nova', Verdana, sans-serif;
    color: #2b3851;
    font-size: 22px;
    font-weight: 900;
  }

  .icon-2 {
    color: #2b3851;
  }

  .container-3 {
    background-color: transparent;
  }

  .navbar-3 {
    background-color: #ee785c;
  }

  .nav-menu-2 {
    background-color: #f2f2f2;
  }

  .nav-link-2 {
    margin-top: 0px;
    color: #ee785c;
  }

  .nav-link-3 {
    margin-top: 0px;
    color: #ee785c;
  }

  .nav-link-4 {
    margin-top: 0px;
    color: #ee785c;
  }

  .menu-button-4 {
    background-color: #ee785c;
  }

  .menu-button-4.w--open {
    background-color: #f2f2f2;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  h3 {
    font-size: 24px;
    line-height: 1.4;
  }

  h4 {
    font-size: 20px;
    line-height: 1.4;
  }

  h5 {
    font-size: 16px;
    line-height: 1.4;
  }

  h6 {
    font-size: 14px;
    line-height: 1.4;
  }

  p {
    font-size: 16px;
  }

  .navbar {
    padding-top: 0px;
  }

  .header-background {
    height: auto;
    padding-bottom: 40px;
  }

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

  .button {
    padding: 15px 20px;
    font-size: 18px;
  }

  .subhead {
    font-size: 24px;
    line-height: 1.2;
  }

  .body-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-image {
    -o-object-fit: contain;
    object-fit: contain;
  }

  .hero {
    padding: 40px 20px;
  }

  .flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-image-mask {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .heading {
    font-size: 40px;
  }

  .heading-2 {
    padding-top: 0px;
    font-size: 24px;
    line-height: 14px;
  }

  .text-block {
    margin-top: 0px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 900;
  }

  .grid-3 {
    grid-row-gap: 0px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .heading-1 {
    margin-top: 0px;
    font-size: 36px;
    line-height: 97%;
  }

  .heading-1.orange {
    font-size: 24px;
  }

  .text-block-3 {
    padding-top: 8px;
    font-size: 15px;
    line-height: 21px;
  }

  .div-block {
    margin-top: 0px;
    padding-bottom: 0px;
  }

  .main-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    height: 40px;
    max-width: 400px;
    min-width: auto;
    margin-top: 40px;
    padding-right: 49px;
    padding-left: 49px;
    font-size: 13px;
  }

  .main-buttons.header {
    width: auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  .main-buttons.header.w--current {
    width: 350px;
    height: 45px;
    min-width: auto;
  }

  .main-buttons.hifi {
    width: 230px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .grid-4 {
    margin-top: 60px;
  }

  .feature-heading {
    font-size: 20px;
    text-align: center;
  }

  .body-text-1.small {
    padding-top: 0px;
  }

  .section-3 {
    height: 400px;
    min-height: auto;
    min-width: auto;
    background-position: 84% 100%;
    background-size: 300px;
  }

  .containerr {
    padding-right: 0px;
    padding-left: 0px;
  }

  .div-block-4 {
    margin-right: auto;
    margin-left: auto;
  }

  .div-block-4.features {
    margin-top: 33px;
  }

  .div-block-5 {
    padding-top: 138px;
    padding-bottom: 92px;
  }

  .secondary-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    height: 40px;
    max-width: none;
    min-width: auto;
    margin-top: 10px;
    margin-bottom: 36px;
    padding-right: 35px;
    padding-left: 35px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 13px;
  }

  .secondary-button.hifi {
    width: 230px;
    margin-bottom: 1px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .secondary-button.demo {
    margin-top: 2px;
  }

  .grid-6 {
    padding-bottom: 30px;
  }

  .ection {
    min-height: 500px;
  }

  .ection.features {
    min-height: 570px;
    margin-top: 39px;
  }

  .ection.design-process {
    min-height: 750px;
  }

  .ection.footer {
    min-height: auto;
    padding-top: 0px;
  }

  .div-block-6 {
    margin-top: 0px;
  }

  .section-5 {
    max-width: none;
    min-width: auto;
  }

  .text-block-7 {
    font-size: 13px;
  }

  .text-block-8 {
    padding-bottom: 20px;
    font-size: 13px;
  }

  .image-9 {
    max-height: 100%;
    margin-top: -1px;
  }

  .image-10 {
    max-width: 80%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  h2 {
    line-height: 1.2;
  }

  h3 {
    line-height: 1.3;
  }

  h4 {
    line-height: 1.4;
  }

  h5 {
    line-height: 1.4;
  }

  .nav-link {
    background-color: #000;
    color: #fff;
  }

  .header-background {
    height: auto;
    padding-right: 0px;
    padding-bottom: 30px;
    padding-left: 0px;
  }

  .headline-container {
    padding-right: 10px;
    padding-left: 10px;
  }

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

  .site-title {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .menu-button {
    background-color: transparent;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .icon {
    color: #000;
  }

  .menu-button-2 {
    background-color: #000;
  }

  .menu-button-2.w--open {
    color: #fff;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
    text-align: left;
  }

  .footer-flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

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

  .heading {
    font-size: 36px;
  }

  .body {
    overflow: visible;
    max-width: none;
  }

  .heading-2 {
    margin-bottom: 9px;
    line-height: 20px;
  }

  .navbar-2 {
    padding-right: 11px;
    padding-left: 11px;
  }

  .text-block {
    padding-top: 20px;
  }

  .grid-3 {
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .heading-1.orange {
    color: #ee785c;
  }

  .text-block-3 {
    padding-top: 0px;
    font-size: 16px;
  }

  .main-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    max-width: none;
    min-width: auto;
    margin-top: 53px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }

  .main-buttons.header {
    width: auto;
    max-width: none;
    min-width: auto;
    margin-top: 60px;
  }

  .main-buttons.hifi {
    width: auto;
    height: 40px;
    min-height: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border-radius: 35px;
  }

  .grid-4 {
    margin-top: 0px;
  }

  .feature-heading {
    font-size: 17px;
  }

  .body-text-1 {
    font-size: 16px;
    line-height: 20px;
  }

  .body-text-1.small {
    padding-top: 0px;
  }

  .grid-5 {
    margin-top: 0px;
  }

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

  .section-3 {
    padding-right: 11px;
    padding-left: 11px;
    background-position: 89% 100%;
    background-size: 264px;
  }

  .containerr {
    max-width: none;
  }

  .div-block-4 {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  .div-block-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }

  .secondary-button {
    width: auto;
    margin-top: 7px;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    color: #f2f2f2;
  }

  .secondary-button.hifi {
    width: auto;
    min-height: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    color: #2b3851;
  }

  .secondary-button.demo {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    color: #2b3851;
  }

  .grid-6 {
    grid-column-gap: 0px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .team-member {
    max-width: 60%;
  }

  .ection {
    max-height: none;
    max-width: none;
    min-height: 520px;
    padding-right: 11px;
    padding-left: 11px;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .ection.features {
    max-width: 100%;
    padding-right: 11px;
    padding-left: 11px;
  }

  .ection.design-process {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .container-2 {
    max-width: 100%;
  }

  .image-9 {
    overflow: visible;
    min-width: 250px;
    padding-right: 11px;
  }

  .image-10 {
    max-width: 60%;
  }
}

#w-node-_5aafcebb-6b22-1c01-52bd-5567f5fc453a-f593b9fe {
  -ms-grid-column-align: auto;
  justify-self: auto;
}

#w-node-_8bac4c22-cd84-a9d9-77dd-c4e15f9b1730-f593b9fe {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  -ms-grid-column-align: start;
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_7ddcb802-0195-c715-e3f7-baadf0402a11-f593b9fe {
    -ms-grid-column-align: center;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5aafcebb-6b22-1c01-52bd-5567f5fc453a-f593b9fe {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-_2270ea20-ff7e-e6ed-e0f1-c23f4b916be2-f593b9fe {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }

  #w-node-e220b72a-78f1-0849-d03c-4fb9b6a0685d-f593b9fe {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7ddcb802-0195-c715-e3f7-baadf0402a11-f593b9fe {
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
  }
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/FontsFree-Net-ProximaNova-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/FontsFree-Net-Proxima-Nova-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/FontsFree-Net-Proxima-Nova-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}