:root {
  --grey: #313144;
  --dark-grey: #141415;
  --gradient1-left: #383ba8;
  --text-color: #dadada;
  --color: white;
  --light-blue: #f4f8fb;
  --gradient1-middle: #653c63;
  --gradient1-right: #a83b38;
  --gradient2-left: #60aef8;
  --gradient2-middle: #f46692;
  --gradient2-right: #f3a562;
  --dark-black: #212121;
  --tomato: #fa5853;
  --light-grey: #787878;
  --city-mates-normale-schrift: var(--grey);
  --light-grey-2: whitesmoke;
}

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

body {
  color: var(--grey);
  background-color: #fff;
  padding-top: 75px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  color: var(--grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 75px;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  color: var(--grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 10px;
}

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

a:hover {
  color: var(--dark-grey);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
  list-style-type: disc;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
  list-style-type: decimal;
}

li {
  margin-bottom: 8px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

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

blockquote {
  border-style: solid;
  border-width: 0 0 0 3px;
  border-color: black black black var(--gradient1-left);
  color: var(--dark-grey);
  margin: 1em auto;
  padding: 1em 0 1em 1em;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  overflow: visible;
}

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

figcaption {
  color: var(--text-color);
  text-align: center;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
}

.fixed-nav {
  z-index: 9099;
  background-color: #fff;
  height: 75px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 1px #f1f1f1;
}

.nav-logo {
  height: 32px;
}

.nav-link {
  opacity: .8;
  color: var(--grey);
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 1em;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  color: var(--grey);
  text-decoration: none;
}

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

.footer {
  text-align: center;
  align-items: flex-start;
  margin-top: auto;
  padding: 0;
}

.footer-flex-container {
  text-align: left;
  justify-content: flex-end;
  display: flex;
}

.section {
  background-color: var(--color);
  display: flex;
  position: relative;
}

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

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

.section.second {
  background-color: var(--color);
  margin-top: 50vh;
}

.section.second.hide {
  display: none;
}

.section.timeline {
  z-index: -3;
}

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

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

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1em;
}

.container.nav-container {
  align-items: center;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.phone-container {
  padding-top: 6rem;
  padding-bottom: 0;
}

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

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

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

.hero-text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 210px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
}

.hero-text._1 {
  background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle));
  color: var(--grey);
  text-align: right;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: 45vw;
  padding-right: 1rem;
  font-family: Soiree, sans-serif;
  font-size: 130px;
  font-weight: 700;
}

.hero-text._2 {
  background-image: linear-gradient(to right, var(--gradient1-middle), var(--gradient1-right));
  text-align: left;
  -webkit-text-fill-color: transparent;
  object-fit: fill;
  -webkit-background-clip: text;
  background-clip: text;
  width: 55vw;
  padding-left: 1rem;
  font-family: Soiree, sans-serif;
  font-size: 130px;
  font-weight: 700;
  position: static;
}

.black-box {
  background-color: var(--dark-grey);
  width: 100%;
  padding: 1em;
}

.white-text {
  color: #fff;
}

.section-hero {
  padding-top: 3em;
  position: relative;
}

.section-hero.white {
  background-color: #fff;
}

.content {
  flex: 1;
}

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

.content.phone-content-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link {
  flex: 0 auto;
  margin-right: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link:hover {
  text-decoration: none;
}

.link-underline {
  background-color: #13cc78;
  background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 50%, var(--gradient2-right));
  width: 100%;
  height: 2px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.grid-6-col {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid-6-col.margin {
  margin-top: 2em;
  margin-bottom: 2em;
}

.grid-6-col.left {
  justify-items: start;
}

.grid-6-col.full-height {
  z-index: 11;
  height: 100%;
  position: relative;
}

.grid-6-col.margin-large {
  margin-top: 2em;
  margin-bottom: 4em;
}

.project-item {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 50px;
  text-decoration: none;
  position: relative;
}

.project-item:hover {
  text-decoration: none;
}

.nav-menu {
  z-index: 1;
  flex: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
}

.brand {
  z-index: 2;
  align-self: center;
  margin-right: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.menu-button {
  z-index: 2;
}

.wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.project-item-style-2 {
  border-bottom: 5px solid #fff;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-right: 160px;
  text-decoration: none;
  position: relative;
}

.project-item-style-2:hover {
  text-decoration: none;
}

.heading-display {
  font-size: 70px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  min-height: 60vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 40vw;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.represent-title {
  border: 1px solid var(--text-color);
  background-color: #fff;
  background-image: linear-gradient(86deg, var(--gradient1-left), var(--gradient2-left) 49%, var(--gradient1-left));
  color: #fff;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
}

.represent-container {
  margin-top: 100px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.represent-container.first {
  margin-top: 0;
}

.post-item {
  padding-bottom: 0;
}

.post-item:hover {
  text-decoration: none;
}

.subscribe-form {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0;
}

.subscribe-form-flex {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.subscribe-form-input-wrapper {
  text-align: left;
  flex: 1;
  position: relative;
}

.form-input {
  border: 1px solid var(--text-color);
  color: var(--dark-grey);
  background-color: rgba(244, 248, 251, .25);
  border-radius: 5px;
  min-width: 350px;
  height: 47px;
  margin-bottom: 0;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  transition: border-color .2s;
}

.form-input:focus {
  border-color: var(--gradient1-left);
}

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

.form-input.subscribe-input {
  border-radius: 20px;
  height: 70px;
  padding-left: 20px;
  font-size: 25px;
}

.success-message {
  border: 2px solid var(--gradient1-left);
  background-color: var(--light-blue);
  background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 54%, var(--gradient2-right));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 5px;
  padding: 15px 20px;
}

.error-message {
  color: var(--gradient1-left);
  background-color: #fee;
  border-radius: 3px;
}

.asset-licensing-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.text-gradient-1 {
  background-image: linear-gradient(111deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 5px;
  font-size: 75px;
}

.text-gradient-2 {
  background-image: linear-gradient(111deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Soiree, sans-serif;
  font-size: 60px;
}

.footer-logo-link {
  max-width: 130px;
  margin-bottom: 1em;
  margin-right: 2em;
}

.footer-logo-link.w--current {
  width: 110px;
  max-width: 110px;
}

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

.grey-text {
  color: var(--dark-grey);
  font-family: Roboto Condensed, sans-serif;
}

.grey-text.top-margin {
  margin-top: 2em;
}

.gradient-line {
  background-image: linear-gradient(103deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right) 103%);
  width: 100%;
  height: 3px;
}

.gradient-line.line-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

.nav-cta-button {
  text-align: right;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--gradient1-left);
  background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  opacity: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  border-radius: 5px;
  min-width: 180px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 13px 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing .3s, color .3s;
}

.button:hover {
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
}

.button.btn-subscribe {
  background-image: url('../images/Arrow-White.svg'), linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  border-radius: 15px;
  width: 100px;
  min-width: 100px;
  line-height: 3.5;
  transition: background-position .3s, letter-spacing .3s, color .2s;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: auto;
  right: 5px;
}

.button.btn-subscribe:hover {
  background-position: 55%, 0 0;
}

.button.download {
  background-color: var(--dark-grey);
  opacity: .2;
  background-image: none;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.button.download:hover {
  background-color: var(--dark-black);
  letter-spacing: 0;
}

.button.rounded-orage-button {
  background-color: var(--gradient1-right);
  background-image: none;
  border-radius: 200px;
  flex: 1;
  margin-left: 24px;
  margin-right: 12px;
}

.button.rounded-orage-button.no-margin {
  background-color: var(--gradient1-right);
  margin-top: 12px;
  margin-left: 0;
}

.button.rounded-orage-button.margin {
  margin-bottom: 2em;
}

.button.orange-button {
  background-color: var(--tomato);
  background-image: none;
}

.button.deactivated {
  opacity: .4;
}

.card-item {
  background-color: #1d1e1f;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
}

.card-item:hover {
  text-decoration: none;
}

.card-item.light {
  background-color: #fcfdff;
  justify-content: space-between;
}

.white-40 {
  color: rgba(255, 255, 255, .4);
}

.card-item-content {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 2em;
  display: flex;
  position: relative;
}

.no-margin {
  margin: 0;
}

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

.text-center.top-margin {
  margin-top: 5em;
}

.hero-product-demo {
  width: 100%;
  height: 160vh;
  display: block;
  position: relative;
}

.product-demo-sticky {
  z-index: 1;
  min-height: auto;
  padding-top: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.small-container {
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.small-container.left-align {
  align-items: flex-start;
}

.customers-panel {
  padding-top: 3em;
  padding-bottom: 3em;
}

.text-holder {
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.text-holder.overflow-hidden {
  overflow: hidden;
}

.customer-image {
  object-fit: contain;
  max-height: 50px;
}

.text-container {
  max-width: 50%;
  padding-bottom: 40px;
}

.product-container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  position: relative;
  top: -30px;
  overflow: hidden;
}

.play-icon-holder {
  z-index: 7;
  cursor: pointer;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  transition: box-shadow .2s;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
}

.play-icon-holder:hover {
  box-shadow: 0 0 9px 4px rgba(0, 0, 0, .3);
}

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

.play-icon-image {
  border: 1px solid rgba(250, 88, 83, .41);
  border-radius: 100%;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, .05);
}

.product-phone-image {
  z-index: 1;
  width: 100%;
  position: relative;
}

.product-phone-demo-image {
  opacity: 1;
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.team-item {
  color: #fff;
  text-align: center;
  width: 100%;
  padding-bottom: 20px;
}

.team-item:hover {
  text-decoration: none;
}

.change-log-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 2fr;
  grid-auto-columns: 1fr;
  align-content: space-around;
  justify-content: start;
  align-items: center;
  justify-items: start;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  display: grid;
}

.feature-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 3em;
}

.ellipse-left {
  z-index: -1;
  background-image: url('../images/Ellipse-1.png');
  background-position: 50%;
  background-size: cover;
  width: 520px;
  height: 650px;
  position: absolute;
  top: 5em;
  bottom: auto;
  left: -430px;
  right: auto;
}

.ellipse-left.top {
  top: -70%;
  bottom: auto;
  left: -34%;
  right: auto;
}

.ellipse-right {
  z-index: -1;
  background-image: url('../images/Ellipse-2.png');
  background-size: cover;
  width: 650px;
  height: 650px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -530px;
}

.ellipse-right.top {
  top: -53%;
  right: -505px;
}

.ellipse-right.bot {
  opacity: .3;
  top: auto;
  bottom: -71%;
  left: -16%;
  right: -15%;
}

.app-icon-holder {
  background-image: linear-gradient(349deg, var(--gradient1-left), var(--gradient1-middle) 52%, var(--gradient1-right));
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 20px;
  display: flex;
}

.app-icon {
  object-fit: scale-down;
  width: 80%;
  max-width: 100%;
}

.main-hero-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 70vh;
  display: flex;
  overflow: hidden;
}

.ellipses-holder {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.ellipses-holder.cta {
  z-index: 1;
}

.ellipses-holder._30-opacity {
  opacity: .3;
}

.hero-text-holder {
  flex-direction: row;
  justify-content: center;
  width: 99vw;
  display: flex;
  position: absolute;
  top: 200px;
  overflow: hidden;
}

.hero-text-sticky {
  flex-direction: row;
  justify-content: center;
  width: 99vw;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  overflow: visible;
}

.product-phone-content {
  z-index: -1;
  position: absolute;
  top: 36px;
  bottom: 35px;
  left: 36px;
  right: 37px;
  overflow: hidden;
}

.product-phone-image-holder {
  width: 400px;
  position: relative;
}

.iphone-lock-screen-image {
  opacity: 1;
  object-fit: cover;
  border-radius: 36px;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.main-heading {
  font-family: Soiree, sans-serif;
}

.main-heading.text-gradient-1 {
  background-image: linear-gradient(111deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
}

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

.download-buttons {
  margin-top: 2em;
  margin-bottom: 3em;
  display: flex;
}

.download-button {
  margin-right: 30px;
}

.download-button.last {
  margin-right: 0;
}

.download-button-icon {
  width: 25px;
  min-width: 25px;
  max-width: 25px;
  height: 25px;
  min-height: 25px;
  max-height: 25px;
  margin-right: 5px;
}

.feature-1-image {
  object-fit: cover;
  object-position: 50% 0%;
  height: 240px;
}

.card-feature-center {
  text-align: center;
  width: 100%;
}

.card-feature-icon {
  height: auto;
  max-height: 80px;
  margin-bottom: .5em;
}

.content-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.trusted-item {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20vh;
  display: flex;
}

.trusted-item.last {
  margin-bottom: 0;
}

.trusted-no {
  background-image: linear-gradient(128deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
}

.text-xl {
  font-family: Roboto Condensed, sans-serif;
  font-size: 24px;
}

.trusted-item-header {
  align-items: center;
  display: flex;
}

.trusted-white-overlay {
  background-image: linear-gradient(#fff, rgba(255, 255, 255, 0));
  width: 49vw;
  height: 10em;
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.trusted-white-overlay.bottom {
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, .27) 73%, rgba(255, 255, 255, 0));
  height: 20vh;
  top: 80vh;
}

.trusted-overlay-container {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.trusted-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.trusted-content.trusted-list {
  padding-top: 70vh;
}

.text-small {
  font-size: 60%;
}

.card-iphone {
  width: 100%;
  height: 390px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.card-iphone-image {
  z-index: 1;
  width: 100%;
  position: relative;
}

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

.card-iphone-overlay {
  z-index: 2;
  background-image: linear-gradient(to top, #1d1e1f, rgba(29, 30, 30, 0));
  height: 30%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-phone-image-container {
  z-index: 0;
  border-radius: 14px;
  position: absolute;
  top: 2.3%;
  bottom: 2.3%;
  left: 4.9%;
  right: 4.9%;
  overflow: hidden;
}

.card-phone-image-container.small {
  z-index: 0;
}

.card-phone-image-container.small.landscape {
  top: 4%;
  bottom: 4%;
  left: 2%;
  right: 2%;
}

.card-phone-image-container.justify-bottom {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.card-phone-image-container.on-dark {
  top: 8%;
  left: 8.5%;
  right: 8.5%;
}

.width-full {
  object-fit: fill;
  width: 100%;
}

.card-iphone-screelock {
  border-radius: 29px;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dont-take-our-word-title {
  text-align: center;
  margin-top: 5em;
  margin-bottom: 2em;
}

.testimonial-header {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1.5em;
  display: flex;
}

.testimonial-text {
  flex: 1;
}

.testimonial-picture {
  border-radius: 50%;
  width: 43px;
  height: 43px;
  margin-right: 15px;
}

.testimonials-container {
  position: relative;
}

.testimonial-see-more {
  z-index: 2;
  background-image: linear-gradient(to top, var(--dark-grey), rgba(20, 20, 21, .82) 50%, rgba(20, 20, 21, 0));
  text-align: center;
  border-radius: 0 0 20px 20px;
  padding-top: 7em;
  position: absolute;
  top: auto;
  bottom: 1em;
  left: 0%;
  right: 0%;
}

.more-testimonials {
  margin-top: 1em;
  position: relative;
  overflow: hidden;
}

.hero-text-holder-1 {
  text-align: right;
  width: 45vw;
  overflow: hidden;
}

.hero-text-holder-2 {
  text-align: left;
  width: 55vw;
  overflow: hidden;
}

.hero-text-line {
  background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  border-radius: 20px;
  width: 3px;
  height: 160px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.external-link {
  background-image: url('../images/External-Link-Icon.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 23px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.footer-social-media-container {
  text-align: left;
  border-bottom: 1px solid #d5d7db;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 2em;
  padding-bottom: 2em;
  display: flex;
}

.footer-list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.footer-list-item {
  margin-bottom: 0;
  padding-right: 1em;
}

.footer-brand-content {
  flex-direction: row;
  flex: 1;
  align-items: flex-start;
  padding-right: 50px;
  display: flex;
}

.footer-copyright {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.social-media-link {
  opacity: 1;
  margin-left: 1em;
  transition: opacity .2s, color .2s;
}

.social-media-link:hover {
  opacity: .7;
}

.social-media-content {
  flex-direction: row;
  display: flex;
}

.made-container {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.powered-by {
  margin-left: 1em;
}

.app-icon-holder-xs {
  background-image: linear-gradient(349deg, var(--gradient1-left), var(--gradient1-middle) 52%, var(--gradient1-right));
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 10px;
  padding: 10px;
  display: flex;
}

.app-icon-text-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.phone-holder-container {
  z-index: 2;
  height: 750px;
  position: relative;
  overflow: hidden;
}

.phone-slider-container {
  z-index: -1;
  background-color: rgba(250, 88, 83, .61);
  width: 239px;
  height: 511px;
  position: absolute;
  top: 25px;
  left: 75px;
  right: auto;
}

.phone-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.phone-slider-mask {
  width: 100%;
  height: 100%;
}

.phone-slide {
  position: relative;
}

.phone-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.phone-slider-arrows, .phone-slide-nav {
  display: none;
}

.phone-holder-image {
  width: 530px;
  min-width: 530px;
}

.grid-testimonial {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

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

.text-xs {
  font-size: 16px;
}

.hero-description {
  font-family: Roboto Condensed, sans-serif;
}

.fade-in-on-scroll.left {
  justify-content: flex-start;
  display: flex;
}

.fade-in-on-scroll.top-margin {
  margin-top: 2em;
  margin-bottom: 24px;
}

.fade-in-on-scroll.top-margin-small {
  margin-top: 24px;
  margin-bottom: 24px;
}

.licensing-images-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 1em;
}

.licensing-device-image {
  max-height: 418px;
}

.iphone-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.iphone-holder.shadow {
  height: 100%;
  box-shadow: 1px 1px 40px 60px #f4f8fb;
}

.iphone-holder.half {
  max-height: 370px;
  margin-top: 2em;
  position: relative;
}

.iphone-holder.bottom-visable {
  height: auto;
  margin-top: -350px;
  position: relative;
}

.iphone-holder.cta {
  width: 60%;
  height: 100%;
}

.feature-iphone {
  width: 70%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.iphone-overlay {
  z-index: 4;
  background-image: linear-gradient(10deg, #fff 48%, rgba(255, 255, 255, 0) 84%, rgba(0, 0, 0, 0));
  width: 100%;
  height: 40%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.iphone-overlay.light-blue {
  z-index: 4;
  background-image: linear-gradient(8deg, #f4f8fb 31%, rgba(244, 248, 251, 0) 78%, rgba(244, 248, 251, 0));
}

.oragne-circle {
  background-color: var(--gradient1-left);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.iphone-container {
  z-index: 3;
  margin-top: 5em;
  position: relative;
}

.half-iphone-container {
  background-color: #f4f8fb;
  width: 60%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.text-gradient-overlay {
  background-image: linear-gradient(69deg, rgba(244, 248, 251, 0), #f4f8fb 50%, #f4f8fb);
  width: 200%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(50%);
}

.hero-section.relative {
  position: relative;
}

.phone-holder {
  width: 100%;
}

.phones-holder {
  grid-column-gap: 24px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -30%;
  padding-bottom: 5em;
  padding-left: 2em;
  padding-right: 2em;
  display: grid;
  overflow: hidden;
}

.portrait-iphone-holder {
  width: 100%;
  position: relative;
}

.background-color {
  z-index: -5;
  background-image: linear-gradient(to top, rgba(112, 166, 237, .1), rgba(112, 166, 237, 0));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-color.blue {
  background-image: linear-gradient(#f4f8fb, #f4f8fb);
}

.background-color.white {
  background-color: #fff;
  background-image: none;
}

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

.card-grid.margin {
  margin-top: 4em;
  margin-bottom: 1em;
}

.grey-card-item-holder {
  background-color: #f5f5f7;
  border-radius: 32px;
}

.grey-card-item-holder.small-card {
  height: 290px;
}

.card-content-holder {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px 40px;
  display: flex;
  overflow: hidden;
}

.card-content-holder.center {
  justify-content: space-between;
}

.grey-card-iphone {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.grey-card-iphone.justify-botton {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.feature-icon-holder {
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 111px;
  display: flex;
  position: relative;
}

.icon-circle {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.icon-circle.top {
  z-index: 2;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .1);
}

.feature-icon-container {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.blue-card-background {
  background-color: var(--light-blue);
  border-radius: 20px;
  height: 600px;
  padding: 80px 2em;
  position: relative;
}

.cta-holder {
  background-color: #fff;
  border: 2px solid #ededed;
  border-radius: 90px;
  flex-direction: row;
  width: 350px;
  padding: 12px;
  display: flex;
  box-shadow: -6px 7px 20px rgba(0, 0, 0, .05);
}

.circle-button-holder {
  background-color: #fff;
  border: 2px solid #ededed;
  border-radius: 90px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: transform .2s, border-color .2s;
  display: flex;
}

.circle-button-holder:hover {
  border-color: var(--gradient1-left);
  transform: translate(0, -2px);
}

.circle-button-holder.margin-right {
  margin-right: 8px;
}

.call-to-action-holder {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.featured-blog-post-holder {
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.featured-blog-post-holder:hover {
  text-decoration: none;
  transform: translate(0, -4px);
  box-shadow: 0 6px 30px 1px rgba(0, 0, 0, .1);
}

.thumbnail-image-holder {
  width: 45%;
  height: 400px;
  position: relative;
}

.featured-blog-description-holder {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-left: 70px;
  display: flex;
}

.category-holder {
  color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  display: flex;
}

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

.featured-post-wrapper {
  margin-top: 5em;
}

.category-filter-holder {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  padding: 5px 15px;
  transition: opacity .2s;
  display: flex;
  position: relative;
}

.category-filter-holder:hover {
  opacity: .7;
  text-decoration: none;
}

.category-filter-holder.current {
  border-color: var(--gradient1-left);
}

.category-filter-holder.margin-right {
  margin-right: 5px;
}

.category-list {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.category-item:last-child {
  margin-right: 0;
}

.filter-holder {
  flex-direction: row;
  margin-top: 2em;
  display: flex;
}

.filter-holder.no-margin {
  margin-top: 1em;
}

.border-color {
  border: 2px solid #000;
  border-radius: 100px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.border-color.hidden {
  display: none;
}

.simple-blog-posts-holder {
  margin-top: 2em;
}

.simple-collection-list {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-holder {
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.blog-post-holder:hover {
  text-decoration: none;
  transform: translate(0, -4px);
  box-shadow: 0 6px 30px 1px rgba(0, 0, 0, .1);
}

.small-thumbnail-image {
  width: 100%;
  padding-top: 80%;
  position: relative;
  overflow: hidden;
}

.blog-description-holder-copy {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 1em;
  display: flex;
}

.description-holder {
  width: 70%;
  margin-bottom: 1em;
}

.main-blog-image {
  border-radius: 18px;
}

.rich-text-holder {
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.rich-text-container {
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.contact-left-side-holder {
  color: var(--grey);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

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

.contact-detail-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.list-item-card {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 7px;
  margin-bottom: .5em;
  padding: .7em;
  transition: box-shadow .2s, background-color .2s, border-color .2s;
  display: flex;
  box-shadow: -5px 7px 20px rgba(0, 0, 0, 0);
}

.list-item-card:hover {
  border: 2px solid var(--gradient1-left);
  background-color: #fff;
  text-decoration: none;
  box-shadow: -5px 7px 20px rgba(0, 0, 0, .06);
}

.list-item-card.w--current {
  border-color: var(--gradient1-left);
  background-image: url('../images/Red-Arrows.svg');
  background-position: 96%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 7px;
  box-shadow: -5px 7px 20px rgba(0, 0, 0, .1);
}

.list-item-card.middle {
  margin-top: 12px;
  margin-bottom: 12px;
}

.card-icon-holder {
  width: 24px;
  height: 24px;
  margin-right: 24px;
}

.list-item-text {
  font-weight: 600;
}

.white-background {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 25px;
}

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

.field-label {
  color: #323232;
  font-family: Roboto Condensed, sans-serif;
  font-weight: 400;
}

.text-field {
  border: 2px solid var(--text-color);
  background-color: #fff;
  border-radius: 8px;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: transform .2s, border-color .2s;
}

.text-field:focus {
  border-color: var(--gradient1-middle);
  transform: translate(0, -4px);
}

.text-area {
  border: 2px solid var(--text-color);
  border-radius: 8px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  max-height: 400px;
  transition: transform .2s, border-color .2s;
}

.text-area:focus {
  border-color: var(--gradient1-left);
  transform: translate(0, -4px);
}

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

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

.form-block.hidden {
  display: none;
}

.buttons-holder {
  display: flex;
}

.thumbnail-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 2em;
  display: grid;
}

.hero-image {
  object-fit: fill;
  border-radius: 12px;
  width: 100%;
}

.half-text-container {
  width: 80%;
}

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

.grey-borders-card {
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  box-shadow: 8px 8px 17px rgba(103, 103, 103, 0);
}

.grey-borders-card:hover {
  border-color: rgba(218, 218, 218, 0);
  transform: translate(0, -4px);
  box-shadow: 8px 8px 17px rgba(103, 103, 103, .1);
}

.blue-circle {
  background-color: rgba(99, 172, 244, .1);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.small-card-holder {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  display: flex;
}

.semi-bold {
  font-weight: 600;
}

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

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

.grid-9-col.margin {
  grid-template-rows: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

.job-postion-card-holder {
  cursor: pointer;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.simple-info {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.arrow-holder {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 40px;
  display: flex;
}

.card-background-color {
  z-index: -1;
  background-image: linear-gradient(to right, var(--gradient2-left), var(--gradient2-middle) 52%, var(--gradient1-left));
  opacity: 0;
  cursor: pointer;
  border-radius: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.simple-info-holder {
  z-index: 4;
  border: 2px solid var(--light-grey-2);
  background-color: #fff;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 3em;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.simple-info-holder:hover {
  border-color: #fafafa;
}

.more-info-holder {
  border: 2px solid var(--light-grey-2);
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  top: -15px;
  overflow: hidden;
}

.job-description-holder {
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.job-description-holder.last {
  margin-bottom: 2em;
}

.job-description-holder.top {
  margin-top: 40px;
}

.line {
  background-color: var(--light-grey-2);
  width: 70%;
  height: 2px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.margin-right, .job-content.title {
  flex: none;
  margin-right: 2em;
}

.arrow-image {
  width: 28px;
}

.city-image-holder {
  border-radius: 4px;
  height: 250px;
  margin-bottom: 24px;
  overflow: hidden;
}

.card-content {
  padding: 16px;
}

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

.small-description {
  color: #636363;
}

.timeline-proggres-holder {
  z-index: -3;
  background-color: rgba(90, 90, 90, .3);
  width: 3px;
  height: 100%;
  position: absolute;
}

.timeline-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.timeline-proggres-bar {
  background-image: linear-gradient(to bottom, var(--gradient2-left), var(--gradient1-left) 52%, var(--gradient2-right));
  width: 3px;
  height: 50vh;
  position: fixed;
  top: 0;
  bottom: 50vh;
  left: auto;
  right: auto;
}

.timeline-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
}

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

.page-wrapper {
  z-index: 0;
  position: relative;
}

.timeline-center {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.timeline-circle {
  background-color: #5a5a5a;
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 14px 9px #fff;
}

.timeline-right {
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 12px;
  padding: 28px;
}

.timeline-image {
  object-fit: cover;
  border-radius: 7px;
  width: 100%;
  height: 300px;
  margin-top: 1em;
}

.overlay-fade-top {
  z-index: 2;
  background-image: linear-gradient(#fff, rgba(255, 255, 255, 0));
  height: 120px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.overlay-fade-bottom {
  z-index: 2;
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  height: 120px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.press-update-backgound {
  border: 2px solid var(--light-grey-2);
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 20px 20px 10px;
  text-decoration: none;
}

.press-update-backgound:hover {
  text-decoration: none;
}

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

.white {
  background-color: #fffdfd;
}

.white-space {
  background-color: #fffdfd;
  height: 3em;
}

.customer-story-container {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.customer-story-background {
  z-index: -1;
  background-color: #1ad26f;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.customer-story-background._2 {
  background-color: red;
}

.customer-story-background._3 {
  background-color: #1da1f2;
}

.customer-story-background._4 {
  background-color: #fbad50;
}

.customer-story-image-container {
  width: 100%;
  height: 260px;
  position: relative;
}

.customer-story-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.customer-logo {
  width: 70px;
}

.customer-logo.invert {
  filter: invert();
  width: 90px;
}

.info-holder {
  padding: 25px;
}

.overlay {
  background-image: linear-gradient(to top, #19d26f, rgba(25, 210, 111, 0));
  height: 70px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay._2 {
  background-image: linear-gradient(to top, red, rgba(255, 0, 0, 0));
}

.overlay._3 {
  background-image: linear-gradient(to top, #1da1f2, rgba(29, 161, 242, 0));
}

.overlay._4 {
  background-image: linear-gradient(to top, #fbad50, rgba(251, 173, 80, 0));
}

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

.grid-4-columns.relative {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  position: relative;
}

.support-grid-layout {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 2fr 4fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.support-nav {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.support-navigation-cards {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1em;
  display: flex;
}

.collection-list-wrapper {
  width: 100%;
}

.support-cta-holder {
  border: 2px solid var(--gradient1-left);
  background-color: #fff;
  border-radius: 7px;
  flex-direction: column;
  margin-top: 1em;
  padding: 1em;
  display: flex;
  box-shadow: -4px 3px 20px rgba(0, 0, 0, .2);
}

.support-article-holder {
  border: 2px solid #ececec;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 11px 17px rgba(103, 103, 103, .1);
}

.icon-image {
  width: 44px;
  height: auto;
}

.icon-image.small {
  width: 20px;
}

.icon-image.medium {
  width: 28px;
}

.store-icon {
  height: 25px;
}

.blog-item-text-header {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-item-date {
  color: var(--light-grey);
  flex-direction: row;
  align-items: center;
  display: flex;
  position: relative;
}

.blog-item-date-circle {
  background-color: var(--light-grey);
  border-radius: 6px;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  margin-right: 10px;
}

.empty-state {
  background-color: var(--light-grey-2);
  color: var(--light-grey);
  border-radius: 6px;
  padding: 15px;
  font-size: 16px;
}

.blog-item-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.support-content {
  margin-top: 1em;
}

.search-button {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Search-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 50px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0;
}

.search-form {
  width: 100%;
  margin-bottom: 2em;
  position: relative;
}

.search-input {
  border: 2px solid var(--light-grey);
  color: rgba(50, 50, 50, .8);
  text-transform: uppercase;
  border-radius: 7px;
  height: auto;
  margin-bottom: 0;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.search-input:focus {
  border-color: var(--gradient1-left);
}

.brand-resources-grid-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blue-card-color {
  background-color: #f4f8fb;
  border-radius: 23px;
}

.blue-card-holder {
  width: 100%;
  height: 100%;
  padding: 30px;
}

.full-logo-holder {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 370px;
  margin-top: 2em;
  display: flex;
  position: relative;
}

.logo-holder {
  height: 50px;
}

.logo-full {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.resources-button-holder {
  position: absolute;
  top: auto;
  bottom: 5%;
  left: auto;
  right: 5%;
}

.grid-4-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-4-col.top-margin {
  margin-top: 2em;
}

.product-assets-holder {
  width: 100%;
  height: 100%;
}

.product-assets-phone {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-app-holder {
  border-radius: 5px;
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 4%;
  right: 4%;
}

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

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

.text-block, .text-block-2 {
  font-family: Roboto Condensed, sans-serif;
}

.paragraph {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Roboto Condensed, sans-serif;
}

.text-block-3, .text-block-4, .heading, .text-block-5 {
  font-family: Roboto Condensed, sans-serif;
}

.heading-2 {
  font-family: Roboto Condensed, sans-serif;
  font-size: 35px;
  font-weight: 400;
}

.bold-text, .bold-text-2, .bold-text-3 {
  font-family: Soiree, sans-serif;
}

.heading-3 {
  font-family: Roboto Condensed, sans-serif;
  font-weight: 700;
}

.hero-text-line-2 {
  background-image: linear-gradient(to right, #383ba8, #653c63 50%, #a83b38);
  border-radius: 20px;
  width: 3px;
  height: 160px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.card-background-color-2 {
  z-index: -1;
  background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 52%, var(--gradient1-right));
  opacity: 0;
  cursor: pointer;
  border-radius: 12px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grey-text-2 {
  color: #787878;
}

.more-info-holder-2 {
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  top: -15px;
  overflow: hidden;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: #383ba8;
  background-image: linear-gradient(to right, #383ba8, #653c63 50%, #a83b38);
  border-radius: 5px;
  min-width: 180px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 13px 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing .3s, color .3s;
}

.button-2:hover {
  color: #fff;
  letter-spacing: 1px;
  text-decoration: none;
}

.button-2.rounded-orage-button {
  background-color: #fa5853;
  background-image: none;
  border-radius: 200px;
  flex: 1;
  margin-left: 24px;
  margin-right: 12px;
}

.button-2.rounded-orage-button.margin {
  margin-bottom: 2em;
}

.line-2 {
  background-color: #f5f5f5;
  width: 70%;
  height: 2px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.section-2 {
  position: relative;
}

.section-2.hide {
  display: none;
}

.simple-info-holder-2 {
  z-index: 4;
  background-color: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 3em;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.simple-info-holder-2:hover {
  border-color: #fafafa;
}

.text-gradient-3 {
  background-image: linear-gradient(111deg, var(--gradient1-right), var(--gradient1-middle) 50%, var(--gradient1-left));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text-field-2 {
  color: #7e2828;
}

.text-field-2::placeholder {
  color: rgba(126, 40, 40, .5);
}

.form-submit-button {
  text-align: center;
  cursor: pointer;
  background-color: #7e2828;
  border: 3px solid #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  transition: all .275s;
  display: flex;
  position: relative;
}

.form-submit-button:hover {
  outline-offset: 3px;
  color: #7e2828;
  background-color: #fff;
  outline: 3px solid #fff;
}

@media screen and (min-width: 1280px) {
  .nav-link.w--current {
    color: var(--grey);
    font-family: Roboto Condensed, sans-serif;
  }

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

  .container {
    max-width: 1280px;
  }

  .nav-link-text {
    font-family: Roboto Condensed, sans-serif;
  }

  .card-phone-image-container.small {
    top: 13px;
    bottom: 13px;
    left: 13px;
    right: 13px;
  }

  .iphone-holder.bottom-visable {
    margin-top: -550px;
  }

  .blue-card-background {
    padding-left: 3em;
    padding-right: 3em;
  }

  .half-text-container {
    width: 65%;
  }

  .sticky {
    top: 47.2vh;
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 70px;
  }

  h3 {
    font-size: 50px;
  }

  h4 {
    font-size: 38px;
  }

  figure {
    margin-top: 20px;
  }

  .nav-link.w--current {
    color: var(--grey);
    font-family: Roboto Condensed, sans-serif;
    font-size: 20px;
    font-weight: 700;
  }

  .hero-text._1 {
    width: 45vw;
  }

  .hero-text._2 {
    width: 50vw;
  }

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

  .link-underline {
    background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  }

  .nav-link-text {
    font-family: Roboto Condensed, sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  .text-gradient-1 {
    background-image: linear-gradient(111deg, var(--gradient1-left), var(--gradient1-middle) 50%, var(--gradient1-right));
  }

  .button.orange-button {
    background-color: var(--gradient1-right);
  }

  .product-container {
    position: relative;
  }

  .play-icon-holder {
    margin-top: -76px;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
  }

  .hero-text-holder {
    flex-direction: row;
    width: 99vw;
    display: flex;
  }

  .hero-text-sticky {
    top: 75px;
  }

  .product-phone-image-holder {
    position: relative;
  }

  .card-iphone-image {
    object-fit: fill;
    margin-top: -1px;
  }

  .card-phone-image-container {
    top: 18px;
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .width-full {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-position: 50% 50%;
    margin-top: 0;
  }

  .hero-text-holder-2 {
    flex: 0 auto;
  }

  .hero-description {
    color: var(--city-mates-normale-schrift);
  }

  .iphone-overlay {
    background-image: linear-gradient(10deg, #fff 35%, rgba(255, 255, 255, 0) 73%, rgba(0, 0, 0, 0));
  }

  .phones-holder {
    grid-row-gap: 18px;
    margin-top: -35%;
    padding-left: 5em;
    padding-right: 5em;
  }

  .portrait-iphone-holder {
    position: relative;
  }

  .blue-card-background {
    padding-left: 5em;
    padding-right: 5em;
  }

  .field-label, .text-field {
    font-family: Roboto Condensed, sans-serif;
  }

  .hero-image {
    object-fit: fill;
  }

  .sticky {
    top: 47.6vh;
  }

  .text-block-6 {
    font-family: Roboto Condensed, sans-serif;
    font-size: 20px;
  }

  .video {
    width: 100%;
    min-width: auto;
    height: 100%;
  }
}

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

  h2 {
    font-size: 55px;
  }

  img {
    width: 100%;
  }

  .nav-link {
    text-align: left;
    margin-bottom: .5em;
    margin-left: 0;
    font-weight: 600;
  }

  .footer-flex-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.phone-container {
    padding-right: 0;
  }

  .hero-text {
    font-size: 100px;
  }

  .hero-text._1, .hero-text._2 {
    font-size: 110px;
  }

  .section-hero {
    padding-top: 1em;
  }

  .project-item {
    width: 100%;
    padding-right: 0;
  }

  .nav-menu {
    background-color: #fff;
    padding-top: 1em;
    padding-bottom: 1em;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .05);
  }

  .brand {
    padding-left: 0;
  }

  .menu-button {
    background-image: linear-gradient(135deg, var(--gradient1-left), var(--gradient1-middle) 49%, var(--gradient1-right));
    text-align: center;
    border-radius: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 15px;
    line-height: 1;
    transition: background-color .2s;
    display: flex;
    position: absolute;
    top: 7px;
    bottom: auto;
    left: auto;
    right: 10px;
  }

  .menu-button.w--open {
    background-color: var(--grey);
  }

  .project-item-style-2 {
    padding-right: 0;
  }

  .heading-display {
    font-size: 55px;
  }

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

  .asset-licensing-grid {
    grid-template-columns: 1fr;
  }

  .text-gradient-1 {
    font-size: 40px;
  }

  .nav-cta-button {
    text-align: left;
    justify-content: flex-start;
    padding-left: 1em;
  }

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

  .customers-panel {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .text-container {
    max-width: 70%;
  }

  .product-container {
    font-size: 16px;
  }

  .play-icon-holder {
    width: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }

  .play-icon-image {
    width: 100px;
  }

  .product-phone-demo-image {
    border-radius: 10px;
  }

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

  .team-item {
    min-height: 300px;
  }

  .ellipse-left {
    left: -450px;
  }

  .ellipse-right {
    right: -560px;
  }

  .main-hero-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .download-buttons.mobile-vertical {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .download-button {
    margin-bottom: 10px;
  }

  .download-button.last {
    margin-bottom: 0;
  }

  .card-feature-icon {
    object-fit: scale-down;
  }

  .hero-text-line {
    height: 90px;
    margin-top: 25px;
  }

  .footer-social-media-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .licensing-device-image {
    max-height: 250px;
  }

  .iphone-holder.bottom-visable {
    margin-top: -425px;
  }

  .iphone-holder.cta {
    width: 80%;
    height: auto;
  }

  .phones-holder {
    margin-top: -38%;
    padding-bottom: 3em;
    padding-left: 1em;
    padding-right: 1em;
  }

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

  .featured-blog-post-holder {
    flex-direction: column;
  }

  .thumbnail-image-holder {
    width: 100%;
    height: 60vw;
  }

  .featured-blog-description-holder {
    padding: 35px;
  }

  .simple-collection-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

  .rich-text-holder {
    width: 80%;
  }

  .contact-left-side-holder {
    flex-direction: row;
  }

  .hero-image {
    object-fit: fill;
  }

  .simple-info-holder {
    padding-left: 1em;
    padding-right: 1em;
  }

  .job-description-holder {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .line {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .timeline-item {
    grid-template-columns: 1fr 80px 1fr;
  }

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

  .grid-4-columns.relative {
    grid-template-columns: 1fr 1fr;
  }

  .support-grid-layout {
    grid-template-columns: 2fr 3fr;
  }

  .support-article-holder {
    padding: 1em;
  }

  .hero-text-line-2 {
    height: 90px;
    margin-top: 25px;
  }

  .image-2, .image-3 {
    object-fit: scale-down;
  }

  .line-2 {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .simple-info-holder-2 {
    padding-left: 1em;
    padding-right: 1em;
  }
}

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

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 24px;
  }

  blockquote {
    font-size: 22px;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .section.second {
    margin-top: 400px;
  }

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

  .container.phone-container {
    padding-top: 3rem;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-text._1 {
    text-align: center;
    width: 100%;
    padding-right: 0;
  }

  .hero-text._2 {
    text-align: center;
    width: 100%;
    padding-left: 0;
  }

  .content.phone-content-text {
    padding-right: 1em;
  }

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

  .project-item {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .nav-menu {
    flex-direction: column;
    display: flex;
  }

  .menu-button {
    background-image: linear-gradient(132deg, var(--gradient1-left), var(--gradient1-middle) 49%, var(--gradient1-right));
  }

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

  .heading-display {
    font-size: 45px;
  }

  .utility-page-content {
    max-width: none;
  }

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

  .subscribe-form-input-wrapper {
    margin-right: 0;
  }

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

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

  .button {
    margin-bottom: 5px;
  }

  .button.btn-subscribe {
    margin-right: 0;
    bottom: 0;
  }

  .button.download {
    justify-content: flex-start;
  }

  .button.rounded-orage-button.margin {
    margin-bottom: 1em;
  }

  .card-item {
    flex-direction: column;
  }

  .card-item-content {
    align-self: auto;
  }

  .text-center.mobile-left {
    align-items: flex-start;
  }

  .hero-product-demo {
    height: 130vh;
  }

  .customer-image {
    margin-bottom: 1em;
  }

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

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

  .team-item {
    min-height: auto;
  }

  .change-log-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-text-holder {
    flex-direction: column;
    align-items: center;
  }

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

  .download-buttons {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .download-buttons.mobile-vertical {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .download-button {
    width: 100%;
    margin-right: 0;
  }

  .trusted-item {
    margin-bottom: 3em;
  }

  .trusted-overlay-container {
    display: none;
  }

  .trusted-content {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .trusted-content.trusted-list {
    padding-top: 0;
  }

  .hero-text-holder-1, .hero-text-holder-2 {
    text-align: center;
    width: 100%;
  }

  .hero-text-line {
    width: 30%;
    height: 2px;
    margin-top: 0;
  }

  .footer-social-media-container, .footer-list {
    flex-direction: column;
  }

  .footer-brand-content {
    flex-direction: column;
    padding-right: 0;
  }

  .footer-copyright {
    padding-top: 1em;
  }

  .made-container {
    padding-top: 1em;
    padding-right: 0;
  }

  .grid-testimonial, .licensing-images-grid {
    grid-template-columns: 1fr 1fr;
  }

  .iphone-holder.bottom-visable {
    margin-top: -214px;
  }

  .iphone-holder.cta {
    width: 100%;
    margin-top: 2em;
  }

  .iphone-overlay, .iphone-overlay.light-blue {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .phones-holder {
    grid-template-rows: .5fr .5fr auto .5fr .5fr;
    grid-template-columns: .5fr .5fr .5fr .5fr;
    margin-top: -48%;
  }

  .blue-card-background {
    height: auto;
  }

  .filter-holder.no-margin {
    flex-direction: column;
    align-items: flex-start;
  }

  .simple-collection-list {
    grid-template-columns: 1fr;
  }

  .small-thumbnail-image {
    padding-top: 60%;
  }

  .description-holder {
    width: 80%;
  }

  .rich-text-holder {
    width: 100%;
  }

  .contact-left-side-holder {
    flex-direction: column;
  }

  .contact-grid-holder {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .half-text-container {
    width: 100%;
  }

  .job-description-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .job-description-holder.last {
    margin-bottom: 1em;
  }

  .timeline-proggres-holder {
    left: 30px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
  }

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

  .grid-4-columns, .support-grid-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text-line-2 {
    width: 30%;
    height: 2px;
    margin-top: 0;
  }

  .button-2 {
    margin-bottom: 5px;
  }

  .button-2.rounded-orage-button.margin {
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 30px;
    font-weight: 500;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-weight: 400;
  }

  .fixed-nav {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-logo {
    aspect-ratio: auto;
    object-fit: scale-down;
    width: 157px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer {
    text-align: left;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .section.second {
    margin-top: 50vh;
  }

  .hero-text {
    font-size: 80px;
  }

  .hero-text._1 {
    background-image: linear-gradient(to right, var(--gradient1-left), var(--gradient1-middle));
    font-size: 80px;
  }

  .hero-text._2 {
    background-image: linear-gradient(to right, var(--gradient1-middle), var(--gradient1-right));
    font-size: 80px;
  }

  .heading-display {
    font-size: 38px;
  }

  .subscribe-form-input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .form-input {
    width: 100%;
    min-width: auto;
  }

  .form-input.subscribe-input {
    border-radius: 10px;
    height: 60px;
    font-size: 18px;
  }

  .text-gradient-1 {
    font-size: 45px;
  }

  .text-gradient-2 {
    font-size: 40px;
  }

  .button.btn-subscribe {
    border-radius: 10px;
    width: 100%;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 0;
    position: relative;
    top: 0;
    right: 0;
  }

  .button.rounded-orage-button {
    margin-left: 0;
  }

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

  .hero-product-demo {
    height: 80vh;
  }

  .ellipse-left {
    width: 320px;
    height: 350px;
    top: 30%;
    left: -60%;
  }

  .ellipse-right {
    width: 350px;
    height: 350px;
    top: 30%;
    left: 75vw;
    right: auto;
  }

  .app-icon-holder {
    width: 80px;
    height: 80px;
  }

  .app-icon {
    object-fit: scale-down;
  }

  .product-phone-content {
    top: 26px;
    bottom: 26px;
    left: 27px;
    right: 27px;
  }

  .product-phone-image-holder {
    width: 300px;
  }

  .iphone-lock-screen-image {
    border-radius: 30px;
  }

  .card-feature-icon {
    width: auto;
    height: auto;
  }

  .hero-text-line {
    margin-top: 15px;
  }

  .footer-social-media-container, .footer-list {
    flex-direction: column;
  }

  .footer-list-item {
    margin-bottom: 10px;
  }

  .footer-brand-content, .made-container {
    flex-direction: column;
  }

  .powered-by {
    margin-top: .5em;
    margin-left: 0;
  }

  .phone-holder-container {
    height: 520px;
  }

  .phone-slider-container {
    width: 158px;
    height: 337px;
    top: 17px;
    left: 50px;
  }

  .phone-holder-image {
    width: 350px;
    min-width: 350px;
  }

  .licensing-images-grid {
    grid-template-columns: 1fr;
  }

  .iphone-overlay.light-blue {
    top: auto;
    bottom: -1%;
    left: 0%;
    right: 0%;
  }

  .iphone-container {
    height: 100vh;
  }

  .half-iphone-container {
    width: 100%;
  }

  .phone-holder._1, .phone-holder._3, .phone-holder._4, .phone-holder._6 {
    display: none;
  }

  .phones-holder {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: .5fr .5fr .5fr;
    grid-auto-rows: auto;
    grid-auto-columns: .5fr;
    margin-top: 0%;
    padding-left: 1em;
    padding-right: 1em;
  }

  .background-color.blue {
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

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

  .blue-card-background {
    padding: 20px 1em;
  }

  .cta-holder {
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 1em;
  }

  .featured-blog-description-holder {
    padding: 1em;
  }

  .category-list {
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .category-list-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .filter-holder {
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .simple-collection-list {
    grid-template-columns: 1fr;
  }

  .description-holder {
    width: 100%;
  }

  .contact-grid-holder {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .list-item-card.w--current {
    background-size: auto 15px;
  }

  .buttons-holder {
    margin-bottom: 24px;
    display: flex;
  }

  .hero-image {
    object-fit: fill;
  }

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

  .timeline-proggres-holder {
    left: 14px;
  }

  .timeline-item {
    grid-template-columns: 30px 1fr;
  }

  .timeline-right {
    padding: 14px;
  }

  .timeline-image {
    height: 200px;
  }

  .grid-4-columns.relative {
    grid-template-columns: 1fr;
  }

  .logo-holder {
    height: 30px;
  }

  .resources-button-holder {
    justify-content: center;
    align-items: center;
    display: flex;
    top: auto;
    bottom: 5%;
    left: 0%;
    right: 0%;
  }

  .grid-4-col.top-margin {
    grid-template-columns: 1fr;
  }

  .image-2, .image-3 {
    object-fit: scale-down;
  }

  .button-2.rounded-orage-button {
    margin-left: 0;
  }

  .div-block-21 {
    max-width: 90vw;
  }
}

#w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-0c573aa1 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-bf82d6d8-19d5-7d71-8ac6-e7bb3b408754-0c573aa1, #w-node-_0d566606-fd33-a3ac-c52c-ded5bb91b946-0c573aa1, #w-node-_7bea1a70-4116-a7db-c374-fff947065047-0c573aa1, #w-node-_64ab14ec-0a71-9abe-100c-83874d852302-0c573aa1, #w-node-_1511bf1a-c884-944b-f323-a3f0ea7187b5-0c573aa1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ece89d93-2df3-9c66-994e-a99360ef72ee-0c573aa1 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_3b85f699-c949-f7e1-8df4-af4ae38e2f15-0c573aa1, #w-node-_8502412a-6474-098f-1e09-76bce2a84c58-0c573aa1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-0c573aa1 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-a136e70e-a0ad-9d01-ec68-2e537ec8b5e7-0c573aa1, #w-node-_137c2bb4-4509-ee79-0592-7207c42c0509-0c573aa1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-a8be1144-33e5-4510-22ce-cb492d5fbc02-2d5fbc02 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8410c039-633e-19df-d83a-fa7e44f2df85-0c573aae, #w-node-cf7dcf62-595e-9456-f415-2812c5b70dfc-0c573aae {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-a8d2195f-98fe-b819-5328-795e712ab843-0c573aae {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-b9080989-83bf-781a-bcca-0f9d8dacde28-0c573aae {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-e7b0e74a-29a6-ccdb-1845-34fc0b727a2b-0c573aae {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: end;
}

#w-node-_19470797-235b-8339-a890-adfbc92bf179-0c573aae {
  grid-area: 1 / 3 / 2 / 8;
}

#w-node-_3b23471c-eb85-d1a1-8be9-f33501398417-0c573aae, #w-node-e27c33cf-c3e0-c861-4793-98b5718d4e61-0c573aae, #w-node-_37917662-20c4-6178-c504-ea68a0078fc2-0c573aae, #w-node-_66fa827a-7aa4-1890-8d92-f7a63eea9f96-0c573aae, #w-node-d59633b8-fa86-aefc-a5ab-2d0835304757-0c573aae, #w-node-ba850ee5-a8f5-03ad-d299-c89ac3e5feeb-0c573aae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8db46236-34c0-a907-dbd5-3aa2c9c6ad29-0c573aae {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_44c8ebde-d6e5-79c5-562a-0898e0996880-0c573aae {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_6b2937af-f671-f986-6e59-60c6e3521123-0c573aae, #w-node-_22822b01-40a8-15ed-2252-cbb21de08462-0c573aae, #w-node-_8209658e-3276-86b5-e287-9dfabd602855-0c573aae {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c055d83f-c0af-5d19-da6c-c78bb607a2fa-0c573aae, #w-node-_121480ff-bc3b-e13d-eed2-6fc3ceb35ba2-0c573aae, #w-node-_7593ef08-75b4-5ff4-9d21-fa16b2a944df-0c573aae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6bfee67b-61d8-98de-cd39-1cf7cdc75345-0c573aae {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_6bfee67b-61d8-98de-cd39-1cf7cdc75353-0c573aae {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
  justify-self: center;
}

#w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-0c573ab0, #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-0c573ab0 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-0c573ab0, #w-node-_810989da-0a8a-7867-51ee-93304e9e3e60-0c573ab0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2663c628-7b54-4b84-2cd8-69c75601bc60-0c573ab2 {
  grid-area: 1 / 3 / 2 / 8;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8d7-0c573ab4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8e6-0c573ab4 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_7991320a-a1b5-78af-97ed-275d7a66a8f7-0c573ab4 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-c5dc0ea8-c2c5-b242-03cf-50ab7bad8cfe-0c573ab7 {
  grid-area: 1 / 1 / 3 / 2;
  align-self: end;
  justify-self: center;
}

#w-node-b21c3592-6097-a00f-7870-a45f43f4c8ca-0c573ab7 {
  grid-area: 2 / 2 / 3 / 4;
  align-self: end;
  justify-self: center;
}

#w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-0c573ab7 {
  grid-area: 2 / 4 / 4 / 5;
  align-self: start;
  justify-self: center;
}

#w-node-_134b2cf9-1cde-2284-cfef-2f33ec3a7754-0c573ab7 {
  grid-area: 3 / 1 / 5 / 2;
  align-self: end;
  justify-self: center;
}

#w-node-_96411b2f-d8b7-4022-8470-ca36b1742fb8-0c573ab7 {
  grid-area: 4 / 2 / 5 / 4;
  align-self: end;
  justify-self: center;
}

#w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-0c573ab7 {
  grid-area: 4 / 4 / 6 / 5;
  align-self: start;
  justify-self: center;
}

#w-node-_7f53f6a7-ff3e-f2fa-58b3-66c188953508-0c573ab7 {
  grid-area: 3 / 2 / 4 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-0c573ab7 {
  grid-area: 5 / 1 / 6 / 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-_53a09231-6224-33b5-eda7-63dda24c0245-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c0247-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c0249-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c024b-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c024d-0c573ab7, #w-node-_4536715f-1b07-6698-b18c-32248f50c5ee-0c573ab7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b262d101-88e2-3de7-f57b-8d4a24389714-0c573ab7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b0293b47-d88a-9d64-f93a-680bc42fe107-0c573ab7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: center;
}

#w-node-_8fa5e293-ccac-c85e-13e3-87448104db82-0c573ab7, #w-node-_93ce9fe0-86a8-ae50-dcd3-aec252772f34-0c573ab7, #w-node-c761fa66-c3dd-1109-ff39-d5157388a9b8-0c573ab7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_683f6423-2343-b727-5633-7065e36f1185-0c573ab7 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-0c573ab7 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-0c573ab7 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-0c573ab7 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: end;
}

#w-node-e78b4ad7-ec14-a261-424e-16eea79edf09-0c573ab7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-0c573ab7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
  justify-self: center;
}

#w-node-_1e7ba95a-12f5-d14f-865c-58c6925923e9-0c573abb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e1c4f535-3127-939f-3b3c-b1fd35478144-0c573abb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1e7ba95a-12f5-d14f-865c-58c6925923f0-0c573abb, #w-node-_28629c33-4257-71a6-acd3-330ff62be0ab-0c573abb, #w-node-_1a295a86-cf11-59c3-3bcd-ebc7bcbcf3bd-0c573abb, #w-node-dc4af716-a088-4ac6-0cf2-c02239306c12-0c573abb, #w-node-de36af8a-24a1-2976-1cf9-2f3aa5c76409-0c573abb, #w-node-f932aca1-7ca1-1f39-9677-c9eca9d4e8fc-0c573abb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573abc {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_18d37471-af41-f2e5-0b72-17d258bac949-0c573abc, #w-node-fd85a797-d4a1-2318-cdc7-e62ce47a5531-0c573abc, #w-node-a403c714-2711-b310-0b4c-64360bef309a-0c573abc {
  grid-area: 1 / 3 / 2 / 9;
}

#w-node-d2fbeefd-03b1-d4bd-bfc6-32f02622a3c0-0c573abc, #w-node-_381af94e-ef60-702f-1610-0be12ad975fa-0c573abc, #w-node-_25295085-d617-4925-f461-e156fc35cf36-0c573abc, #w-node-e369206c-1d98-efa3-045e-22f86aa3b83d-0c573abc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434de-0c573abc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434e0-0c573abc {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573abc {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
  justify-self: center;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7e0-0c573ac0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7f2-0c573ac0 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-0c573ac0 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e803-0c573ac0 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e810-0c573ac0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
}

#w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-0c573ac0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
  justify-self: center;
}

#w-node-_55fc5522-bb2b-2f60-a4a5-2e1d59064549-0c573ac1, #w-node-_55fc5522-bb2b-2f60-a4a5-2e1d59064553-0c573ac1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3ad5-0c573ac2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3aed-0c573ac2 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573ac2 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-ed754a59-142e-5306-6934-ed458e9b3ae4-0c573ac2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434e0-0c573ac2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
}

#w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573ac2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: start;
  justify-self: center;
}

@media screen and (min-width: 1440px) {
  #w-node-_6bfee67b-61d8-98de-cd39-1cf7cdc75353-0c573aae {
    align-self: start;
    justify-self: center;
  }

  #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-0c573ab0 {
    grid-column: span 3 / span 3;
  }

  #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-0c573ab0 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-0c573ab7 {
    align-self: center;
  }

  #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-0c573ab7, #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573abc, #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-0c573ac0, #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573ac2 {
    align-self: start;
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-0c573aa1, #w-node-ece89d93-2df3-9c66-994e-a99360ef72ee-0c573aa1, #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-0c573aa1 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-0c573ab0, #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-0c573ab0 {
    grid-column: span 8 / span 8;
  }

  #w-node-_683f6423-2343-b727-5633-7065e36f1185-0c573ab7 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-0c573ab7 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-0c573ab7 {
    grid-area: 1 / 2 / 3 / 3;
  }

  #w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-0c573ab7 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_1e7ba95a-12f5-d14f-865c-58c6925923e9-0c573abb, #w-node-_1e7ba95a-12f5-d14f-865c-58c6925923f0-0c573abb, #w-node-_28629c33-4257-71a6-acd3-330ff62be0ab-0c573abb, #w-node-_1a295a86-cf11-59c3-3bcd-ebc7bcbcf3bd-0c573abb, #w-node-dc4af716-a088-4ac6-0cf2-c02239306c12-0c573abb, #w-node-de36af8a-24a1-2976-1cf9-2f3aa5c76409-0c573abb, #w-node-f932aca1-7ca1-1f39-9677-c9eca9d4e8fc-0c573abb {
    grid-column: span 1 / span 1;
  }

  #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573abc {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_18d37471-af41-f2e5-0b72-17d258bac949-0c573abc {
    grid-area: 1 / 2 / 2 / 6;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-0c573ac0, #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573ac2 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-0c573aa1, #w-node-bf82d6d8-19d5-7d71-8ac6-e7bb3b408754-0c573aa1, #w-node-_0d566606-fd33-a3ac-c52c-ded5bb91b946-0c573aa1, #w-node-_7bea1a70-4116-a7db-c374-fff947065047-0c573aa1, #w-node-_3b85f699-c949-f7e1-8df4-af4ae38e2f15-0c573aa1, #w-node-_8502412a-6474-098f-1e09-76bce2a84c58-0c573aa1, #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-0c573aa1, #w-node-a136e70e-a0ad-9d01-ec68-2e537ec8b5e7-0c573aa1, #w-node-_137c2bb4-4509-ee79-0592-7207c42c0509-0c573aa1 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6bfee67b-61d8-98de-cd39-1cf7cdc75353-0c573aae {
    justify-self: start;
  }

  #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-0c573ab0, #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-0c573ab0 {
    grid-column: span 6 / span 6;
  }

  #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8d7-0c573ab4 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8e6-0c573ab4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_7991320a-a1b5-78af-97ed-275d7a66a8f7-0c573ab4 {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-0c573ab7 {
    grid-area: 2 / 4 / 3 / 5;
    align-self: end;
    justify-self: center;
  }

  #w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-0c573ab7 {
    grid-area: 4 / 4 / 5 / 5;
    align-self: end;
    justify-self: center;
  }

  #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-0c573ab7 {
    grid-column-end: 5;
  }

  #w-node-_53a09231-6224-33b5-eda7-63dda24c0245-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c0247-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c0249-0c573ab7, #w-node-_53a09231-6224-33b5-eda7-63dda24c024b-0c573ab7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_53a09231-6224-33b5-eda7-63dda24c024d-0c573ab7, #w-node-_4536715f-1b07-6698-b18c-32248f50c5ee-0c573ab7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-0c573ab7 {
    justify-self: start;
  }

  #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573abc {
    grid-column: span 2 / span 2;
  }

  #w-node-e7dc4c6c-be0c-f036-05ee-ea9fb8b1bc6d-0c573abc {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_5358a172-3e22-2e96-3258-fa3b6e333bcf-0c573abc {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-c9167761-0118-d8da-34c9-88620a9a20ab-0c573abc {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-c9167761-0118-d8da-34c9-88620a9a20ae-0c573abc {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_61634497-f93e-badc-8fff-e8ba29c41226-0c573abc {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_61634497-f93e-badc-8fff-e8ba29c41229-0c573abc {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_18d37471-af41-f2e5-0b72-17d258bac949-0c573abc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fd85a797-d4a1-2318-cdc7-e62ce47a5531-0c573abc, #w-node-a403c714-2711-b310-0b4c-64360bef309a-0c573abc {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573abc {
    justify-self: start;
  }

  #w-node-_76c393bd-f465-d630-3a41-e281cce6c579-0c573abc, #w-node-_55c4f116-ba92-9f1f-7bc2-9b7d088aa78c-0c573abc, #w-node-_5ec808e3-0e3d-f84c-645c-beab699ed3c8-0c573abc, #w-node-c167524c-aed7-c111-817e-ae6d035c5133-0c573abc, #w-node-bdabcbf3-78e7-2932-47c6-7e77260c1e69-0c573abc, #w-node-b17f6aec-0f44-4ea4-5dfe-01c47c28ec86-0c573abc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7e0-0c573ac0 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7f2-0c573ac0 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e7fa-0c573ac0 {
    grid-column: span 2 / span 2;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e803-0c573ac0 {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-0c573ac0 {
    justify-self: start;
  }

  #w-node-ed754a59-142e-5306-6934-ed458e9b3ad5-0c573ac2 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-ed754a59-142e-5306-6934-ed458e9b3aed-0c573ac2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b5fef013-a912-18b5-255d-f2d05dda7c52-0c573ac2 {
    grid-column: span 2 / span 2;
  }

  #w-node-ed754a59-142e-5306-6934-ed458e9b3ae4-0c573ac2 {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573ac2 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8410c039-633e-19df-d83a-fa7e44f2df85-0c573aae, #w-node-cf7dcf62-595e-9456-f415-2812c5b70dfc-0c573aae {
    grid-column: span 4 / span 4;
  }

  #w-node-a8d2195f-98fe-b819-5328-795e712ab843-0c573aae, #w-node-b9080989-83bf-781a-bcca-0f9d8dacde28-0c573aae, #w-node-e7b0e74a-29a6-ccdb-1845-34fc0b727a2b-0c573aae {
    grid-column: span 8 / span 8;
  }

  #w-node-_19470797-235b-8339-a890-adfbc92bf179-0c573aae {
    grid-column: 1 / 3;
  }

  #w-node-_6bfee67b-61d8-98de-cd39-1cf7cdc75353-0c573aae {
    justify-self: center;
  }

  #w-node-f4754d0d-aaf0-b03b-e438-37a76edca0bd-0c573ab0, #w-node-_71a70dac-b47c-e160-5240-5f2d2ae02b7b-0c573ab0 {
    grid-column: span 3 / span 3;
  }

  #w-node-_810989da-0a8a-7867-51ee-93304e9e3e50-0c573ab0, #w-node-_810989da-0a8a-7867-51ee-93304e9e3e54-0c573ab0, #w-node-_810989da-0a8a-7867-51ee-93304e9e3e58-0c573ab0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c5dc0ea8-c2c5-b242-03cf-50ab7bad8cfe-0c573ab7 {
    grid-area: 1 / 1 / 3 / 2;
    align-self: end;
    justify-self: center;
  }

  #w-node-b21c3592-6097-a00f-7870-a45f43f4c8ca-0c573ab7 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: end;
    justify-self: center;
  }

  #w-node-_6100e9f7-c266-d539-49f2-36ba0f2f222a-0c573ab7 {
    grid-area: 2 / 3 / 3 / 4;
    align-self: end;
    justify-self: center;
  }

  #w-node-_134b2cf9-1cde-2284-cfef-2f33ec3a7754-0c573ab7 {
    grid-area: 3 / 1 / 5 / 2;
    align-self: end;
    justify-self: center;
  }

  #w-node-_96411b2f-d8b7-4022-8470-ca36b1742fb8-0c573ab7 {
    grid-area: 4 / 1 / 5 / 4;
    align-self: start;
    justify-self: center;
  }

  #w-node-b8e1c276-0417-8be7-5251-cea6eb586b2f-0c573ab7 {
    grid-area: 4 / 3 / 5 / 4;
    align-self: end;
    justify-self: center;
  }

  #w-node-_7f53f6a7-ff3e-f2fa-58b3-66c188953508-0c573ab7 {
    grid-area: 3 / 1 / 4 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_6d543952-9836-4a83-ff2f-f22cde15c0aa-0c573ab7 {
    grid-column-end: 4;
  }

  #w-node-_683f6423-2343-b727-5633-7065e36f1185-0c573ab7 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-d418cca7-24ea-bf31-041d-3be16c0d0430-0c573ab7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a5ef09e5-6cbb-1536-db37-970e446055c9-0c573ab7 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_879b0df6-b25a-d37d-9c82-7798283ffcbb-0c573ab7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e78b4ad7-ec14-a261-424e-16eea79edf16-0c573ab7 {
    justify-self: center;
  }

  #w-node-e1c4f535-3127-939f-3b3c-b1fd35478144-0c573abb {
    grid-column: span 1 / span 1;
  }

  #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573abc {
    justify-self: center;
  }

  #w-node-_5ec808e3-0e3d-f84c-645c-beab699ed3c8-0c573abc, #w-node-c167524c-aed7-c111-817e-ae6d035c5133-0c573abc, #w-node-bdabcbf3-78e7-2932-47c6-7e77260c1e69-0c573abc, #w-node-b17f6aec-0f44-4ea4-5dfe-01c47c28ec86-0c573abc {
    grid-column: span 1 / span 1;
  }

  #w-node-a70f84fd-27d8-6687-cecb-85c2c112e816-0c573ac0, #w-node-cb8ecc22-ce78-fe25-e497-3f5f257434ee-0c573ac2 {
    justify-self: center;
  }
}


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