.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 {
  padding-top: 75px;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  color: #323232;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

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

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

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

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

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

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

p {
  margin-bottom: 10px;
}

a {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #323232;
  text-decoration: none;
}

a:hover {
  color: #141415;
  text-decoration: underline;
}

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

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

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

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

blockquote {
  overflow: visible;
  margin: 1em auto;
  padding: 1em 0px 1em 1em;
  border-style: solid;
  border-width: 0px 0px 0px 3px;
  border-color: #000 #000 #000 #fa5853;
  font-family: Manrope, sans-serif;
  color: #141415;
  font-size: 28px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 300;
}

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

figcaption {
  margin-top: 5px;
  color: #dadada;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

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

.nav-logo {
  height: 32px;
}

.nav-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-left: 0px;
  padding: 10px 1em;
  -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;
  opacity: 0.8;
  color: #323232;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  opacity: 1;
  color: #323232;
  text-decoration: none;
}

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

.footer {
  margin-top: auto;
  padding: 0px;
  -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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: left;
}

.section {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0px 0px;
  background-size: auto;
}

.section.dark {
  background-color: #141415;
}

.section.light-blue-bg {
  background-color: #f4f8fb;
  background-image: none;
}

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

.section.scrolling {
  display: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f4f8fb));
  background-image: linear-gradient(180deg, #fff, #f4f8fb);
  background-position: 0px 0px;
  background-size: auto;
}

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

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

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

.container.mobile {
  display: none;
}

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

.hero-text._1 {
  width: 50vw;
  padding-right: 1rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa5853), to(#f46692));
  background-image: linear-gradient(90deg, #fa5853, #f46692);
  font-size: 150px;
  text-align: right;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text._2 {
  width: 50vw;
  padding-left: 1rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#f46692), to(#ffc444));
  background-image: linear-gradient(90deg, #f46692, #ffc444);
  font-size: 150px;
  text-align: left;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.black-box {
  width: 100%;
  padding: 1em;
  background-color: #141415;
}

.white-text {
  color: #fff;
}

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

.content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.content.centered {
  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;
}

.content.phone-content-text {
  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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

.link-underline {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  width: 100%;
  height: 2px;
  background-color: #13cc78;
  background-image: -webkit-gradient(linear, left top, right top, from(#60aef8), color-stop(50%, #f46692), to(#f3a562));
  background-image: linear-gradient(90deg, #60aef8, #f46692 50%, #f3a562);
}

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

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

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

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

.brand {
  z-index: 2;
  margin-right: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

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

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-height: 100%;
  max-width: 100%;
  min-height: 60vh;
  -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;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 40vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

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

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

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

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

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

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

.subscribe-form-flex {
  position: relative;
  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-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -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;
}

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

.form-input {
  height: 47px;
  min-width: 350px;
  margin-bottom: 0px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #dadada;
  border-radius: 5px;
  background-color: rgba(244, 248, 251, 0.25);
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
  color: #141415;
  font-size: 18px;
  line-height: 1;
}

.form-input:focus {
  border-color: #fa5853;
}

.form-input::-webkit-input-placeholder {
  color: #dadada;
}

.form-input:-ms-input-placeholder {
  color: #dadada;
}

.form-input::-ms-input-placeholder {
  color: #dadada;
}

.form-input::placeholder {
  color: #dadada;
}

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

.success-message {
  padding: 15px 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #fa5853;
  border-radius: 5px;
  background-color: #f4f8fb;
  background-image: -webkit-gradient(linear, left top, right top, from(#60aef8), color-stop(54%, #f46692), to(#f3a562));
  background-image: linear-gradient(90deg, #60aef8, #f46692 54%, #f3a562);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-message {
  border-radius: 3px;
  background-color: #fee;
  color: #fa5853;
}

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

.text-gradient-1 {
  background-image: linear-gradient(111deg, #fa5853, #f46692 50%, #ffc444);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  padding-bottom: 10px;
  background-image: linear-gradient(111deg, #eb004c, rgba(235, 0, 76, 0.5) 50%, #eb004c);
  text-align: left;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -o-object-fit: fill;
  object-fit: fill;
}

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

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

.grey-text {
  color: #787878;
}

.gradient-line {
  width: 100%;
  height: 3px;
  background-image: linear-gradient(103deg, #fa5853, #f46692 50%, #ffc444 103%);
}

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

.nav-cta-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -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;
  text-align: right;
}

.button {
  display: none;
  min-width: 180px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 13px 20px;
  border-radius: 5px;
  background-color: #fa5853;
  background-image: -webkit-gradient(linear, left top, right top, from(#eb004c), color-stop(50%, #e54478), to(#eb004c));
  background-image: linear-gradient(90deg, #eb004c, #e54478 50%, #eb004c);
  -webkit-transition: letter-spacing 300ms ease, color 300ms ease;
  transition: letter-spacing 300ms ease, color 300ms ease;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0px;
  text-decoration: none;
}

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

.button.btn-subscribe {
  position: absolute;
  left: auto;
  top: 5px;
  right: 5px;
  bottom: 5px;
  display: none;
  width: 100px;
  min-width: 100px;
  border-radius: 15px;
  background-image: url('../images/Arrow-White.svg'), -webkit-gradient(linear, left top, right top, from(#eb004c), color-stop(50%, #ff4d87), to(#eb004c));
  background-image: url('../images/Arrow-White.svg'), linear-gradient(90deg, #eb004c, #ff4d87 50%, #eb004c);
  background-position: 50% 50%, 0px 0px;
  background-size: auto, auto;
  background-repeat: no-repeat, repeat;
  -webkit-transition: background-position 300ms ease, letter-spacing 300ms ease, color 200ms ease;
  transition: background-position 300ms ease, letter-spacing 300ms ease, color 200ms ease;
  line-height: 3.5;
}

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

.button.download {
  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-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;
  border-radius: 8px;
  background-color: #141415;
  background-image: none;
  font-size: 16px;
  font-weight: 400;
}

.button.download:hover {
  background-color: #212121;
  letter-spacing: 0px;
}

.button.download.brumbies {
  background-image: -webkit-gradient(linear, left top, right top, from(#eb004c), color-stop(50%, #f46692), to(#eb004c));
  background-image: linear-gradient(90deg, #eb004c, #f46692 50%, #eb004c);
}

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

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

.card-item.light {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fcfdff;
}

.white-40 {
  color: hsla(0, 0%, 100%, 0.4);
}

.card-item-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 2em;
  -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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.no-margin {
  margin: 0px;
}

.text-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -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;
  text-align: center;
}

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

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

.small-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  -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;
}

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

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

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

.customer-image {
  max-height: 30px;
}

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

.product-container {
  position: relative;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  -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;
}

.play-icon-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 100%;
  -webkit-transition: box-shadow 200ms ease;
  transition: box-shadow 200ms ease;
  cursor: pointer;
}

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

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

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

.product-phone-image {
  width: 100%;
}

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

.grid-10-columns {
  width: 100%;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

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

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

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

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

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

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

.app-icon-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  padding: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
  border-radius: 50%;
  background-image: linear-gradient(349deg, #fa5853, #f46692 52%, #ffc444);
}

.app-icon {
  width: 100%;
}

.main-hero-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  min-height: 50vh;
  -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;
}

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

.hero-text-holder {
  position: absolute;
  top: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-text-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  width: 100vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

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

.main-heading {
  font-size: 65px;
}

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

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

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

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

.download-button-icon {
  margin-right: 5px;
}

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

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

.card-feature-icon {
  height: 65px;
  margin-bottom: 0.5em;
}

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

.trusted-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  margin-bottom: 12vh;
  padding-bottom: 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;
  line-height: 1.2;
  -o-object-fit: fill;
  object-fit: fill;
}

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

.trusted-no {
  overflow: visible;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  background-image: linear-gradient(128deg, #eb004c, #f46692 50%, #eb004c);
  font-size: 63px;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-xl {
  display: none;
  font-size: 24px;
}

.text-xl.static {
  display: block;
}

.trusted-item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.trusted-white-overlay.bottom {
  top: 80vh;
  display: block;
  height: 20vh;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f4f8fb), color-stop(73%, hsla(0, 0%, 100%, 0.27)), to(hsla(0, 0%, 100%, 0)));
  background-image: linear-gradient(0deg, #f4f8fb, hsla(0, 0%, 100%, 0.27) 73%, hsla(0, 0%, 100%, 0));
}

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

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

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

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

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

.card-iphone-image {
  width: 290px;
}

.light-grey {
  color: #787878;
}

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

.card-phone-image-container {
  position: absolute;
  left: 26px;
  top: 26px;
  right: 26px;
  bottom: 0px;
  z-index: -1;
  overflow: hidden;
}

.width-pct {
  width: 100%;
}

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

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

.testimonial-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1.5em;
  -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-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.testimonial-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.testimonials-container {
  position: relative;
}

.testimonial-see-more {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 1em;
  z-index: 2;
  padding-top: 7em;
  border-radius: 0px 0px 20px 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#141415), color-stop(50%, rgba(20, 20, 21, 0.82)), to(rgba(20, 20, 21, 0)));
  background-image: linear-gradient(0deg, #141415, rgba(20, 20, 21, 0.82) 50%, rgba(20, 20, 21, 0));
  text-align: center;
}

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

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

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

.hero-text-line {
  position: relative;
  overflow: hidden;
  width: 6px;
  height: 115px;
  margin-top: 40px;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa5853), color-stop(50%, #f46692), to(#ffc444));
  background-image: linear-gradient(90deg, #fa5853, #f46692 50%, #ffc444);
}

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

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

.footer-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -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-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

.footer-brand-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-copyright {
  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-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.social-media-link {
  margin-left: 1em;
  opacity: 1;
  -webkit-transition: opacity 200ms ease, color 200ms ease;
  transition: opacity 200ms ease, color 200ms ease;
}

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

.social-media-content {
  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;
}

.made-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-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.app-icon-holder-xs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin-right: 10px;
  padding: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eb004c), to(#eb004c));
  background-image: linear-gradient(180deg, #eb004c, #eb004c);
}

.app-icon-text-holder {
  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-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

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

.phone-slide {
  position: relative;
}

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

.phone-slider-arrows {
  display: none;
}

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

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

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

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

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

.social-media-icon {
  margin-right: 14px;
}

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

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

.nav-logo-2 {
  height: 32px;
  margin-left: 20px;
}

.image {
  max-width: 40%;
  margin-bottom: 0px;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.text-center-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -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;
  text-align: center;
}

.image-2 {
  max-width: 40%;
  margin-bottom: 0px;
  -o-object-fit: fill;
  object-fit: fill;
}

.main-heading-2 {
  font-size: 70px;
}

.product-phone-image-2 {
  width: 100%;
}

.image-3 {
  width: 400px;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.heading-2 {
  display: none;
}

.heading-3 {
  display: none;
}

.text-block-2 {
  display: none;
}

.image-4 {
  margin-bottom: 25px;
}

.div-block {
  max-width: 100%;
}

.text-block-3 {
  float: left;
  font-family: Manrope, sans-serif;
  font-weight: 700;
}

.grid {
  grid-template-areas: "Area";
}

.grid.mobile {
  display: none;
}

.text-block-4 {
  font-family: Manrope, sans-serif;
}

.text-block-5 {
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.paragraph-6 {
  font-family: Manrope, sans-serif;
  font-size: 27px;
  font-weight: 800;
}

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

.text-span-2 {
  font-size: 23px;
  font-weight: 400;
}

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

.image-5 {
  position: static;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-clip: border-box;
  -webkit-text-fill-color: inherit;
}

.section-2 {
  background-color: #133156;
}

.container-2 {
  display: block;
  max-width: 1170px;
  padding-top: 17px;
  padding-bottom: 17px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.heading-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #f5be18;
}

.image-6 {
  display: block;
}

.heading-9 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  color: #f5be18;
}

.image-7 {
  max-width: 200px;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.paragraph-7 {
  color: #f5be17;
}

.container-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 770px;
  padding-top: 31px;
  padding-bottom: 31px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-span-3 {
  color: #eb004c;
  font-weight: 700;
  text-decoration: underline;
}

.paragraph-8 {
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-4 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.image-8 {
  padding-right: 16px;
  padding-left: 16px;
}

.heading-10 {
  font-size: 29px;
}

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

.tiparra-brumbie-mobile {
  display: none;
}

.text-span-5 {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.text-block-7 {
  margin-right: 20px;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

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

  h3 {
    font-size: 50px;
  }

  h4 {
    font-size: 38px;
  }

  figure {
    margin-top: 20px;
  }

  .content.centered {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -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;
  }

  .product-container {
    position: relative;
  }

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

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

  .heading-9 {
    font-size: 34px;
  }
}

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

  h2 {
    font-size: 55px;
  }

  .nav-link {
    margin-bottom: 0.5em;
    margin-left: 0px;
    font-weight: 600;
    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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

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

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

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

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

  .brand {
    padding-left: 0px;
  }

  .menu-button {
    position: absolute;
    left: auto;
    top: 7px;
    right: 10px;
    bottom: auto;
    display: none;
    width: 60px;
    height: 60px;
    padding: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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;
    border-radius: 10px;
    background-image: linear-gradient(135deg, #eb004c, #f46692 49%, #eb004c);
    -webkit-transition: background-color 200ms ease;
    transition: background-color 200ms ease;
    line-height: 1;
    text-align: center;
  }

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

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

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

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

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

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

  .button.download.brumbies {
    position: static;
    display: inline-block;
    max-width: 200px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: -webkit-gradient(linear, left top, right top, from(#eb004c), color-stop(50%, #f46692), to(#eb004c));
    background-image: linear-gradient(90deg, #eb004c, #f46692 50%, #eb004c);
  }

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

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

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

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

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

  .grid-10-columns {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    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-right: 1em;
    padding-left: 1em;
  }

  .main-heading {
    font-size: 52px;
  }

  .download-buttons.mobile-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

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

  .download-button-icon {
    max-width: 10%;
  }

  .trusted-white-overlay {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f8fb), to(hsla(0, 0%, 100%, 0)));
    background-image: linear-gradient(180deg, #f4f8fb, hsla(0, 0%, 100%, 0));
  }

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

  .footer-social-media-container {
    -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-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

  .hero-description {
    padding-right: 57px;
    padding-left: 57px;
  }

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

  .main-heading-2 {
    font-size: 40px;
  }

  .text-block {
    width: 70%;
  }

  .heading-3 {
    display: none;
  }

  .heading-9 {
    font-size: 21px;
  }

  .image-7 {
    max-width: 140px;
  }

  .container-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 700px;
    padding-right: 9px;
    padding-bottom: 30px;
    padding-left: 9px;
  }

  .paragraph-8 {
    margin-bottom: 22px;
    text-align: center;
  }

  .div-block-4 {
    display: block;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

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

  .tiparra-brumbie-mobile {
    display: block;
  }

  .tiparra-brumbies {
    display: none;
  }

  .text-block-6 {
    font-family: 'Open Sans', sans-serif;
    color: #fff;
  }

  .div-block-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .text-span-4 {
    color: #eb004c;
    font-weight: 700;
  }
}

@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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

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

  .nav-menu {
    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;
  }

  .menu-button {
    background-image: linear-gradient(132deg, #eb004c, #f46692 49%, #eb004c);
  }

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

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

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

  .subscribe-form-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

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

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

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

  .button {
    margin-bottom: 5px;
  }

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

  .button.download {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

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

  .card-item-content {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

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

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

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

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

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

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

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

  .main-hero-container {
    min-height: 45vh;
  }

  .hero-text-holder {
    -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;
  }

  .main-heading {
    font-size: 37px;
  }

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

  .download-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

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

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

  .footer-brand-content {
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

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

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

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

  .hero-description {
    padding-right: 0px;
    padding-left: 0px;
  }

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

  .heading-9 {
    font-size: 19px;
  }

  .image-7 {
    max-width: 130px;
  }

  .container-3 {
    max-width: 520px;
  }

  .paragraph-8 {
    margin-bottom: 18px;
    text-align: center;
  }

  .div-block-4 {
    max-width: 100%;
  }

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

  .tiparra-brumbies {
    display: none;
  }

  .image-9 {
    padding: 2px;
  }

  .container-4 {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@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-right: 0px;
    padding-left: 0px;
  }

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

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

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

  .container {
    display: block;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .container.use-cases {
    display: none;
  }

  .container.mobile {
    display: none;
  }

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

  .content.phone-content-text {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-button {
    display: none;
    background-image: linear-gradient(132deg, #eb004c, #f46692 49%, #eb004c);
  }

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

  .subscribe-form {
    display: none;
  }

  .subscribe-form-input-wrapper {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

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

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

  .text-gradient-2 {
    padding-right: 30px;
    background-image: linear-gradient(111deg, #eb004c, #f46692 50%, #eb004c);
    font-size: 35px;
    text-align: left;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .button {
    display: none;
  }

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

  .button.download {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button.download.brumbies {
    margin-bottom: 0px;
  }

  .card-item-content {
    padding: 1.5em;
  }

  .text-center {
    display: block;
  }

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

  .text-container {
    padding-bottom: 9px;
  }

  .ellipse-left {
    left: -60%;
    top: 30%;
    width: 320px;
    height: 350px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.7)), to(hsla(0, 0%, 100%, 0.7))), url('../images/Ellipse-1.png');
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.7), hsla(0, 0%, 100%, 0.7)), url('../images/Ellipse-1.png');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
  }

  .ellipse-right {
    left: 75vw;
    top: 30%;
    right: auto;
    width: 350px;
    height: 350px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.7)), to(hsla(0, 0%, 100%, 0.7))), url('../images/Ellipse-2.png');
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.7), hsla(0, 0%, 100%, 0.7)), url('../images/Ellipse-2.png');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
  }

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

  .main-hero-container {
    min-height: 30vh;
    padding-top: 2.3em;
    padding-bottom: 2.3em;
  }

  .ellipses-holder {
    display: block;
  }

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

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

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

  .main-heading {
    margin-top: 30px;
    font-size: 32px;
    text-align: left;
  }

  .card-feature-icon {
    height: 50px;
    max-width: none;
    margin-bottom: 0.5em;
    background-clip: border-box;
    -webkit-text-fill-color: inherit;
  }

  .card-feature-icon.wide {
    height: 40px;
  }

  .trusted-no {
    margin-bottom: 7px;
    background-image: linear-gradient(128deg, #eb004c, #f46692 50%, #eb004c);
  }

  .text-xl {
    display: none;
    font-size: 18px;
  }

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

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

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

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

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

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

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

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

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

  .hero-description {
    margin-bottom: 10px;
    padding-right: 0px;
    padding-left: 0px;
    font-size: 17px;
    line-height: 1.3;
    text-align: left;
  }

  .fade-in-on-scroll {
    overflow: visible;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .social-media-icon {
    margin-right: 10px;
  }

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

  .main-heading-2 {
    font-size: 32px;
  }

  .product-phone-image-2 {
    max-width: none;
  }

  .image-3 {
    width: 75%;
  }

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

  .paragraph {
    font-size: 17px;
    text-align: center;
  }

  .heading-2 {
    display: none;
  }

  .heading-3 {
    display: none;
  }

  .heading-4 {
    display: none;
  }

  .paragraph-2 {
    display: block;
    padding-top: 15px;
    float: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
  }

  .paragraph-2._2 {
    font-size: 25px;
  }

  .heading-5 {
    font-size: 35px;
  }

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

  .heading-7 {
    padding-top: 0px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .paragraph-3 {
    font-size: 17px;
    text-align: left;
  }

  .heading-7 {
    font-family: Manrope, sans-serif;
    font-weight: 700;
  }

  .paragraph-4 {
    font-size: 17px;
    text-align: center;
  }

  .paragraph-5 {
    font-size: 17px;
    text-align: center;
  }

  .text-block-2 {
    display: none;
  }

  .grid {
    display: none;
  }

  .grid.mobile {
    display: block;
    margin-bottom: 15px;
  }

  .paragraph-6 {
    font-size: 22px;
  }

  .text-span-2 {
    font-size: 18px;
  }

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

  .heading-9 {
    font-size: 19px;
    text-align: center;
  }

  .image-7 {
    width: 60%;
    height: 60%;
    max-width: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .div-block-3 {
    display: block;
  }

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

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

  .div-block-4 {
    max-width: 100%;
  }

  .heading-11 {
    font-size: 21px;
    text-align: left;
  }

  .div-block-5 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .div-block-6 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .text-span-6 {
    font-size: 14px;
    font-weight: 400;
  }

  .image-9 {
    padding: 4px;
  }

  .text-block-7 {
    margin-right: 12px;
  }

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

#w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-4aa62ab0 {
  -ms-grid-column-span: 8;
  grid-column-end: 10;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-_8bc2a47a-8a0f-182b-3e92-6862103022e3-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_50230120-4ab3-bcd8-6e8f-bf6d3fcfc621-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-c0c7aa43-673d-abf7-872e-25e74c465cdf-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_36fa30fb-4226-dcc5-0f1c-956bec46678f-4aa62ab0 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-_24dc28f4-703b-95fe-54f9-f178ad2ce70d-4aa62ab0 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: Area;
}

#w-node-_24dc28f4-703b-95fe-54f9-f178ad2ce70b-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_24dc28f4-703b-95fe-54f9-f178ad2ce706-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_24dc28f4-703b-95fe-54f9-f178ad2ce70c-4aa62ab0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-bf82d6d8-19d5-7d71-8ac6-e7bb3b408754-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_0d566606-fd33-a3ac-c52c-ded5bb91b946-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_7bea1a70-4116-a7db-c374-fff947065047-4aa62ab0 {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-column-span: 3;
  grid-column-end: 7;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_14da9062-0a53-6242-9830-6b49374cfe62-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee2ec-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee2f6-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee301-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_82dd1eb3-7499-bde9-a357-9afe3fd84b03-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_64ab14ec-0a71-9abe-100c-83874d852302-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_1511bf1a-c884-944b-f323-a3f0ea7187b5-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-4aa62ab0 {
  -ms-grid-column-span: 8;
  grid-column-end: 10;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-a136e70e-a0ad-9d01-ec68-2e537ec8b5e7-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_137c2bb4-4509-ee79-0592-7207c42c0509-4aa62ab0 {
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-4aa62ab0 {
    -ms-grid-column: span 6;
    grid-column-start: span 6;
    -ms-grid-column-span: 6;
    grid-column-end: span 6;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-4aa62ab0 {
    -ms-grid-column: span 6;
    grid-column-start: span 6;
    -ms-grid-column-span: 6;
    grid-column-end: span 6;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_72db7d5e-67ba-1361-b1aa-1a07ac8f1178-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-bf82d6d8-19d5-7d71-8ac6-e7bb3b408754-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_0d566606-fd33-a3ac-c52c-ded5bb91b946-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_7bea1a70-4116-a7db-c374-fff947065047-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_14da9062-0a53-6242-9830-6b49374cfe62-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee2ec-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee2f6-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-f8484799-6bc9-e1eb-fb4f-69bf208ee301-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_82dd1eb3-7499-bde9-a357-9afe3fd84b03-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-dc7224ca-e1a6-5f22-af6a-66bccec780c6-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-a136e70e-a0ad-9d01-ec68-2e537ec8b5e7-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_137c2bb4-4509-ee79-0592-7207c42c0509-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_82dd1eb3-7499-bde9-a357-9afe3fd84b03-4aa62ab0 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}

