:root {
  --black-light: #3d3d3d;
  --manus-blue: #47b5ff;
  --green-darkest: #00b879;
  --black: black;
  --green-selected: #38ffbb;
  --dropdown-margin-1: -350px;
  --dropdown-margin-2: -290px;
  --blue-dark: #00b8ff;
  --green-dark: #00d980;
  --green-light: #00d089;
  --white: white;
  --off-white: #f3f3f3;
  --padding-4: 4px;
  --pink-dark: #ed63e4;
  --pink-light: #d9a5d5;
  --blue-light: #0df;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 70px;
}

h2 {
  letter-spacing: -.5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 34px;
}

h3 {
  color: var(--black-light);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
}

h4 {
  color: var(--manus-blue);
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 24px;
}

p {
  color: #888;
  margin-bottom: 10px;
}

a {
  color: var(--green-darkest);
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

ul {
  color: #888;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 50px;
  font-weight: 400;
}

li {
  margin-top: 4px;
  margin-bottom: 4px;
  padding-left: 10px;
}

label {
  margin-bottom: 5px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  display: block;
}

.navbar-container {
  z-index: 100;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
}

.navbar-menu-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  height: 100%;
  display: flex;
}

.navbar-logo-wrapper {
  width: 20%;
}

.navbar-button-dropdown {
  color: #707070;
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.navbar-button-dropdown:hover {
  border-bottom: 4px solid var(--green-darkest);
  color: #000;
}

.navbar-button-text {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
}

.navbar-button {
  color: #707070;
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 22px;
  padding-right: 22px;
  text-decoration: none;
  display: flex;
}

.navbar-button:hover {
  border-bottom: 4px solid var(--green-darkest);
  color: var(--black);
}

.navbar-button.outer {
  margin-right: -20px;
}

.navbar-button.product-menu {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0);
  background-image: none;
  border-bottom-style: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  margin-left: 20px;
  margin-right: 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  display: inline-flex;
}

.navbar-button.product-menu:hover {
  color: #38ffbb;
}

.navbar-button.product-menu.w--current {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--green-selected);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: inline-flex;
}

.navbar-button.product-menu.selected {
  color: #00ec9c;
}

.navbar-button.product-menu.selected.tech {
  display: none;
}

.navbar-button.product-menu.selected.tech-s {
  display: flex;
}

.navbar-button.product-menu.desc {
  color: var(--green-selected);
  display: flex;
}

.image {
  width: 100%;
  max-width: 150px;
}

.chevron {
  width: 12px;
  height: 12px;
  margin-left: 8px;
}

.div-block {
  background-color: red;
  margin-top: 90px;
  padding: 50px 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dropdown-wrapper {
  z-index: -10;
  margin-top: var(--dropdown-margin-1);
  background-color: #ececec;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dropdown-wrapper.item-2 {
  margin-top: var(--dropdown-margin-2);
}

.dropdown-container {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.dropdown-block {
  width: 300px;
}

.dropdown-item.menu-header {
  margin-bottom: 10px;
}

.menu-link {
  color: #909090;
  border-left: 2px solid rgba(0, 0, 0, 0);
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  line-height: 25px;
  text-decoration: none;
}

.menu-link:hover {
  color: #000;
  border-left: 2px solid #727272;
}

.menu-link.menu-header {
  text-transform: uppercase;
  font-weight: 700;
}

.navbar-bg {
  z-index: -1;
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 7px 10px rgba(0, 0, 0, .1);
}

.dropdown-separator {
  background-color: #cacaca;
  width: 100px;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 10px;
}

.navbar-divider {
  background-color: #e9e9e9;
  width: 1px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-section {
  background-color: #3b3b3b;
  width: 100%;
  position: relative;
}

.header-section.full {
  background-color: rgba(59, 59, 59, 0);
  height: 100vh;
}

.header-section.product {
  background-color: #000;
  background-image: radial-gradient(circle at 80% -25%, #176954 6%, #0d4331 46%, #000);
  overflow: hidden;
}

.header-section.aboutus {
  background-color: rgba(59, 59, 59, 0);
  background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.header-container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  padding-top: 250px;
  padding-bottom: 180px;
  display: flex;
}

.header-container.full {
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 600px;
  padding-bottom: 100px;
}

.header-container.product {
  z-index: 5;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.header-container.centered {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 40px;
}

.rainbow-header {
  background-image: linear-gradient(90deg, #d9a5d5, var(--blue-dark) 50%, var(--green-dark));
  letter-spacing: -1.8px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 22px;
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 75px;
}

.button {
  border: 1px solid var(--green-darkest);
  color: var(--green-darkest);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  max-width: 350px;
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 20px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.button:hover {
  border-color: var(--green-light);
  background-color: var(--green-light);
  color: var(--white);
}

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

.button.white-hover:hover {
  background-color: rgba(255, 255, 255, .2);
  border-color: #fff;
}

.button.is-mega {
  border-color: #000;
  width: 100%;
}

.button.solid {
  border-style: solid;
  border-color: var(--green-darkest);
  background-color: var(--green-darkest);
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  min-width: 350px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.button.solid:hover {
  background-color: var(--green-light);
}

.button.solid.full-width {
  width: 100%;
}

.button.solid.full-width:hover {
  background-color: var(--green-light);
}

.spacer-50 {
  width: 50px;
  height: 50px;
}

.multi-item-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.item-container {
  width: 100%;
  max-width: 1300px;
  position: relative;
}

.item-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.item-link {
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.item-image {
  z-index: -1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.title-overlay {
  color: #fff;
  background-color: rgba(0, 0, 0, .6);
  width: 100%;
  padding: 16px;
}

.title-overlay-header {
  font-size: 16px;
  font-weight: 700;
}

.title-overlay-text {
  letter-spacing: .5px;
  font-size: 12px;
}

.agenda-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 33.3%;
  display: flex;
  position: absolute;
  top: -181px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.agenda-item {
  background-color: #47b5ff;
  width: 100%;
  display: flex;
}

.agenda-title {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 0;
  padding-right: 16px;
  display: flex;
}

.agenda-icon {
  color: #47b5ff;
  background-image: url('../images/agenda-icon.png');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin: 24px 20px 24px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.agenda-divider {
  background-color: #7fcbff;
  border-left: 20px solid #47b5ff;
  border-right: 20px solid #47b5ff;
  width: 100%;
  height: 1px;
  display: flex;
}

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

.article-section.gray {
  background-color: var(--off-white);
}

.article-section.solid-bg {
  background-color: #fff;
}

.article-container {
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  display: flex;
  position: relative;
}

.article-tl-ir {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.article-text {
  width: 40%;
}

.article-text.right-margin-40 {
  margin-right: 40px;
}

.article-text.left-margin-40 {
  margin-left: 40px;
}

.pre-header {
  color: var(--green-light);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.read-more:hover {
  color: #0098ff;
  text-decoration: underline;
}

.article-image {
  width: 60%;
}

.article-image.logos {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.article-tr-il {
  width: 100%;
  display: flex;
}

.spacer-100 {
  width: 100px;
  height: 100px;
}

.hype-section {
  padding-top: 200px;
  padding-bottom: 100px;
}

.black-bar {
  background-color: var(--black);
  justify-content: center;
  align-items: stretch;
  height: 300px;
  display: flex;
}

.gradient-bar {
  background-image: linear-gradient(90deg, #d9a5d5 5%, #0df 54%, #00d087 96%);
  height: 40px;
}

.hype-image-01 {
  height: 630px;
  position: absolute;
  top: auto;
  bottom: -97px;
  left: 0%;
  right: 0%;
}

.width-1300 {
  width: 100%;
  max-width: 1300px;
  position: relative;
}

.width-1300.right-align {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.heading-2 {
  color: #fff;
  text-align: right;
}

.hype-header {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #d9a5d5 6%, #0df 52%, #00d087 94%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 65px;
}

.news-section {
  background-color: #f3f3f3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: hidden;
}

.news-wrapper {
  width: 100%;
  max-width: 1300px;
}

.news-small {
  margin-top: -5px;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.news-item {
  background-color: #fff;
  flex-flow: column;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  display: flex;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .1);
}

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

.news-container {
  width: 100%;
  max-width: 1300px;
  position: relative;
}

.news-text-block {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  margin: 35px;
  display: flex;
}

.news-header {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
}

.news-link {
  padding-top: 20px;
}

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

.logos-wrapper._4-row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.logos-wrapper.small {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-button {
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.image-2 {
  filter: invert();
}

.logo-black {
  opacity: .5;
  filter: invert();
  width: 75%;
}

.footer-section {
  background-image: none;
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
}

.drop-shadow {
  opacity: .1;
  background-image: linear-gradient(#000, rgba(0, 0, 0, 0));
  height: 30px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.news-nav-buttons-wrapper {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.button-square {
  cursor: pointer;
  background-color: rgba(0, 46, 62, .2);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.button-square.swiper-btn-left, .button-square.swiper-btn-right {
  width: 60px;
}

.button-square.is-social {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
}

.arrow-left {
  width: 20px;
  height: 20px;
  display: flex;
  overflow: hidden;
}

.image-arrow-left {
  filter: invert();
  transform: rotate(90deg);
}

.arrow-block {
  display: flex;
}

.arrow-right {
  width: 20px;
  height: 20px;
  display: flex;
  overflow: hidden;
}

.image-arrow-right {
  filter: invert();
  transform: rotate(-90deg);
}

.swiper.is-news {
  width: 100%;
  position: relative;
  overflow: visible;
}

.swiper-wrapper.is-news {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.swiper-slide.is-news {
  background-color: var(--white);
  flex-flow: column;
  flex: none;
  justify-content: space-around;
  align-items: stretch;
  width: 400px;
  height: auto;
  display: flex;
  box-shadow: 7px 7px 20px rgba(0, 0, 0, .2);
}

.div-block-2 {
  width: 100%;
  max-width: 1300px;
  overflow: visible;
}

.header-buttons {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.image-3 {
  filter: invert();
  width: 300px;
  margin-left: -13px;
}

.footer-text {
  color: #fff;
  font-family: Montserrat, sans-serif;
}

.footer-text._12px {
  font-size: 12px;
}

.social-container {
  margin-left: -7px;
  display: flex;
}

.social-image {
  padding: var(--padding-4);
}

.footer-column {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.footer-column.align-right {
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  margin-left: 90px;
}

.footer-item {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 10px solid rgba(255, 255, 255, 0);
  margin-left: -20px;
  padding-left: 12px;
  font-size: 14px;
}

.footer-item:hover {
  border-left-color: var(--white);
}

.footer-item.sub {
  letter-spacing: 0;
  text-transform: capitalize;
  padding-left: 20px;
}

.line-hor {
  background-color: rgba(255, 255, 255, .5);
  width: 50%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.is-footer {
  color: var(--white);
  font-weight: 400;
  text-decoration: underline;
}

.headervideo {
  width: auto;
  height: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.darken-bg {
  z-index: -1;
  background-color: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.extra-img {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
}

.extra-img.last-slide {
  top: 0;
  bottom: 0;
  left: auto;
  right: -100%;
}

.usecase-text {
  z-index: 500;
  color: #fff;
  letter-spacing: 1px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 300;
}

.usecase-text:hover {
  color: #fff;
}

.slider-mask {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: visible;
}

.slider-arrow {
  background-color: #fff;
  width: 72px;
  height: 72px;
  top: 0;
  left: 0;
}

.slider-arrow.left {
  background-color: #0f8;
}

.slider-arrow.right {
  background-color: #0f8;
  top: 0;
  left: auto;
  right: 0;
}

.link-block-9 {
  opacity: .5;
  display: flex;
}

.link-block-9:hover {
  opacity: 1;
}

.slide-nav {
  display: none;
}

.image-178 {
  opacity: 1;
  margin-top: -3px;
  margin-left: 25px;
}

.slider-4 {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.usecase-title-wrapper {
  height: 50px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.slider-arrow-icon {
  color: #04863c;
  font-size: 40px;
}

.slide-8 {
  position: relative;
}

.heading-3 {
  letter-spacing: -.5px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 900;
}

.slogan-container {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  margin-top: 50px;
  margin-bottom: 100px;
  display: flex;
}

.slogan {
  text-align: right;
  letter-spacing: -5px;
  font-family: Montserrat, sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 95px;
}

.slogan.rainbow {
  background-image: linear-gradient(90deg, #d9a5d5, #0df 50%, #00d089 99%, #00d087);
  padding: 10px;
}

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

.slogan.product-header {
  color: var(--white);
  text-align: center;
  letter-spacing: -3px;
  width: 100%;
  font-size: 50px;
  line-height: 50px;
}

.cta-container {
  width: 100%;
  max-width: 1300px;
  margin-top: 150px;
  margin-bottom: 180px;
}

.cta-button {
  background-color: var(--off-white);
  color: #888;
  border-radius: 20px;
  width: 100%;
  padding: 40px;
}

.cta-button:hover {
  background-color: var(--manus-blue);
  color: var(--white);
}

.cta {
  margin-bottom: 16px;
  font-size: 70px;
  font-weight: 900;
  line-height: 70px;
}

.cta.sub {
  margin-top: -8px;
  margin-left: 2px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.cta-button-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.logo-marquee {
  background-color: #f5f5f5;
  width: 100%;
}

.marquee-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.marquee-logos {
  opacity: .3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  width: 200%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.marquee-logo {
  object-fit: contain;
  width: 50%;
  max-width: 50%;
}

.main-rainbow {
  background-image: linear-gradient(90deg, var(--pink-dark), var(--blue-dark) 50%, var(--green-dark));
  text-transform: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 75px;
  line-height: 100px;
}

.text-block-2 {
  white-space: nowrap;
}

.div-block-3 {
  flex-flow: column;
  display: flex;
}

.spacer-20 {
  width: 20px;
  height: 20px;
}

.div-block-4 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.manus-logo-full {
  height: 30px;
}

.dashdash {
  color: #fff;
  margin-top: 3px;
  margin-left: 10px;
  margin-right: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 50px;
}

.heading-4 {
  letter-spacing: -2px;
  margin-left: -5px;
}

.scroll-down-indicator {
  z-index: 999;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: 150px;
  margin-bottom: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.scroll-animation {
  width: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.gradient-block {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 400%;
  height: 100%;
  display: flex;
}

.image-180 {
  height: 100%;
}

.gradient-image {
  background-image: url('../images/gradient-banner.png');
  background-position: 0 0;
  background-size: 100% 100%;
  width: 200%;
  margin-right: -2px;
}

.gradient-bg {
  background-image: url('../images/gradient-noise-banner.png');
  background-position: 0 0;
  background-size: 100% 100%;
  width: 100%;
  margin-left: 10px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.image-181 {
  width: 350px;
}

.div-block-5 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.product-header {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  display: flex;
}

.header-logo {
  width: 250px;
}

.header-logo.manus {
  width: 100px;
}

.particle-animation {
  justify-content: center;
  align-items: stretch;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.header-product-image {
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  margin-bottom: -350px;
  display: flex;
  overflow: hidden;
}

.header-product-image.prime3 {
  margin-bottom: -260px;
}

.header-product-image.charger {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -80px;
  overflow: visible;
}

.hero-image {
  z-index: -800;
  width: 60%;
}

.hero-image.charger {
  width: 120%;
  max-width: 120%;
}

.product-menu {
  background-image: radial-gradient(circle, #106647, #104d3d);
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 50px;
  display: flex;
}

.menu-wrapper {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
}

.product-canvas {
  background-color: var(--off-white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
  display: flex;
}

.info-block {
  background-color: #fff;
  justify-content: space-around;
  width: 100%;
  max-width: 1300px;
  height: auto;
  display: flex;
  position: relative;
}

.left-block {
  width: 60%;
  padding: 50px 80px;
  overflow: hidden;
}

.rich-text-block {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
}

.right-block {
  flex-flow: column;
  justify-content: space-between;
  width: 40%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.top-block {
  background-color: #e6e6e6;
  height: 100%;
  padding: 40px 20px 40px 40px;
}

.bottom-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  display: grid;
}

.main-button {
  background-color: var(--green-darkest);
  letter-spacing: .5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  display: flex;
}

.main-button:hover {
  background-color: var(--green-light);
  font-weight: 700;
}

.main-button.is-outlined {
  color: #00b96d;
  background-color: rgba(0, 184, 121, 0);
  border: 1px solid #00b879;
  font-weight: 500;
}

.main-button.is-outlined:hover {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  color: #fff;
  font-weight: 700;
}

.main-button.height-40 {
  height: 40px;
}

.side-headers {
  font-size: 18px;
}

.in-line {
  color: #00b46a;
  text-transform: none;
  text-decoration: underline;
}

.list-of-links {
  flex-flow: column;
  padding-left: 40px;
  display: flex;
}

.block-desc {
  width: 100%;
  height: 100%;
}

.block-tech {
  display: none;
}

.tabs {
  width: 100%;
  margin-top: -50px;
}

.tabs-content {
  width: 60%;
  padding: 70px;
}

.tabs-menu {
  height: 50px;
}

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

.section {
  background-color: rgba(82, 54, 54, .58);
  height: 600px;
  position: relative;
  overflow: hidden;
}

.div-block-7 {
  width: 100%;
  height: 100%;
  position: relative;
}

.code-embed-2 {
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.code-embed-3 {
  aspect-ratio: auto;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.table {
  font-family: Montserrat, sans-serif;
}

.table-row {
  border-top: 1px solid var(--off-white);
  justify-content: flex-start;
  display: flex;
}

.table-cel {
  width: 100%;
  padding: 10px 20px;
}

.table-cel.bold {
  font-weight: 600;
}

.table-text {
  margin-bottom: 0;
}

.icon {
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  display: flex;
}

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

.inline-link {
  color: #00b96d;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-flex;
}

.inline-link:hover {
  color: #00a762;
  border-bottom-color: #00a762;
}

.code-embed-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-9 {
  color: rgba(255, 255, 255, .21);
  text-align: center;
  letter-spacing: -.2px;
  font-family: Oswald, sans-serif;
  font-weight: 300;
  line-height: 16px;
}

.text-block-3 {
  color: rgba(158, 158, 158, .75);
  font-size: 11px;
}

.div-block-10 {
  z-index: 4;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, .63));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.sub-tag {
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
}

.article-video {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.div-block-11 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.warning-block {
  border: 1px solid var(--green-darkest);
  color: var(--green-darkest);
  text-transform: none;
  width: 100%;
  margin-bottom: -100px;
  padding: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 200;
}

.warning-block:hover {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  color: var(--white);
  font-weight: 300;
}

.paragraph {
  margin-bottom: 5px;
}

.paragraph.warning {
  color: var(--manus-blue);
}

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

.form-container {
  width: 100%;
  max-width: 1300px;
}

.width-50 {
  width: 50%;
}

.hor-line {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.green {
  color: var(--green-darkest);
  -webkit-text-stroke-color: var(--green-darkest);
}

.green:hover {
  color: var(--green-light);
}

.warning {
  color: var(--manus-blue);
  font-weight: 200;
}

.account-button {
  opacity: .5;
  background-image: url('../images/logged-out_black.png');
  background-position: 50%;
  background-size: contain;
  border: 1px solid #000;
  border-radius: 12px;
  width: 24px;
  height: 24px;
}

.account-button:hover {
  background-image: url('../images/logged-in_inverted_black.png');
  background-position: 50%;
  background-size: cover;
}

.account-button.logged-in {
  border-color: var(--green-darkest);
  opacity: 1;
  background-image: url('../images/logged-in_black.png');
  background-position: 50%;
  background-size: cover;
}

.account-button.logged-in:hover {
  background-image: url('../images/logged-in_inverted_2_black.png'), url('../images/logged-in_black.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.product-h2 {
  color: var(--green-light);
}

.sticky-image {
  z-index: -10;
  background-image: url('../images/manus-crew.jpg');
  background-position: 50% 35%;
  background-size: cover;
  height: 700px;
  margin-top: -40px;
  margin-bottom: -700px;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.sticky-nog {
  background-color: #ff5f5f;
  height: 700px;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.heading-5 {
  color: var(--black);
}

.image-182 {
  width: 100%;
}

.hype-bar {
  z-index: 2;
  background-image: linear-gradient(90deg, var(--pink-dark), var(--manus-blue) 53%, var(--green-light));
  justify-content: center;
  align-items: stretch;
  height: 30px;
  display: none;
  position: fixed;
  top: 90px;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 8px 9px rgba(0, 0, 0, .2);
}

.hype-container {
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-bottom: 0;
  display: flex;
}

.careers-container {
  width: 100%;
  max-width: 1300px;
}

.careers {
  text-transform: none;
}

.collection-item {
  background-color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 30px 40px;
  display: flex;
}

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

.full-cards {
  justify-content: center;
  width: 100%;
  display: flex;
}

.cards-wrapper {
  width: 100%;
  max-width: 1300px;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.career-item {
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 30px;
  display: flex;
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, .1);
}

.field-label {
  color: #a3a3a3;
  font-size: 13px;
  font-weight: 500;
}

.textarea-2 {
  min-height: 300px;
  margin-bottom: 30px;
}

.file-upload {
  margin-bottom: 20px;
}

.text-block-28 {
  color: #d4d4d4;
}

.mainbutton {
  color: #00d88c;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #00d88c;
  border-radius: 0;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  margin-top: 2px;
  padding-top: 7px;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.mainbutton:hover {
  color: #000;
  background-color: #00d88c;
}

.mainbutton.solid {
  color: #212121;
  text-align: center;
  background-color: #00d88c;
  border-style: solid;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
}

.mainbutton.solid:hover {
  color: #00d88c;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
}

.form-block-3, .form-block {
  width: 100%;
}

.textarea {
  min-height: 300px;
}

.text-block-13 {
  color: #900;
  font-size: 20px;
}

.text-block-12 {
  color: #fff;
  font-size: 20px;
}

.apply-content {
  overflow: hidden;
}

.field-label-2 {
  color: #b8b8b8;
  font-size: 20px;
  font-weight: 400;
}

.field-label-3 {
  color: #b8b8b8;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 400;
}

.cancel-button {
  color: #00d88c;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid #00d88c;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  font-weight: 500;
}

.error-message {
  background-color: rgba(0, 0, 0, 0);
  border: 4px solid #b40000;
}

.hidden-but-visible {
  height: 0;
  display: flex;
  overflow: hidden;
}

.text-block-11 {
  letter-spacing: 1px;
  padding-top: 7px;
  padding-bottom: 5px;
}

.apply-trigger {
  cursor: pointer;
  background-color: #00d88c;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  margin-top: 30px;
  display: flex;
}

.form {
  margin-top: 40px;
}

.apply-wrapper {
  width: 100%;
}

.submit-button {
  letter-spacing: 1px;
  background-color: #00d88c;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  margin-top: 20px;
  padding-top: 7px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}

.success-message {
  background-color: #00d88c;
}

.text-block-10 {
  color: #fff;
  letter-spacing: 1px;
  padding-top: 7px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.solution-image {
  height: 100px;
  max-height: 100px;
}

.pipelines-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1300px;
  display: grid;
}

.pipeline-section {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.div-block-12 {
  background-color: #be4a4a;
  padding: 40px;
}

.pipeline-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1300px;
  display: grid;
}

.pipeline-item {
  background-color: #fff;
  padding: 40px 60px;
  box-shadow: 5px 9px 20px 5px rgba(0, 0, 0, .1);
}

.div-block-13 {
  z-index: -1;
  background-image: radial-gradient(circle at 50% 100%, #47b5ff, #3286d7 16%, #1555a8 64%, #043e69);
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0%;
  right: 0%;
}

.pipeline-image {
  padding-left: 50px;
  padding-right: 50px;
}

.body {
  background-color: #242424;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-14 {
  width: 100%;
  height: 100%;
}

.heading-6, .paragraph-2 {
  text-align: center;
}

@media screen and (min-width: 1920px) {
  .extra-img, .slider-mask {
    width: 1300px;
  }

  .scroll-down-indicator {
    width: 100%;
    margin-bottom: 0;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
}

@media screen and (max-width: 991px) {
  .slider-4 {
    height: 24vh;
  }
}

@media screen and (max-width: 479px) {
  .image-178 {
    margin-left: 0;
  }

  .slider-wrap {
    display: none;
  }

  .scroll-down-indicator {
    z-index: 600;
  }

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

  .career-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-block-2 {
    width: 100%;
  }

  .mainbutton {
    min-width: auto;
    max-width: none;
  }

  .mainbutton.solid {
    max-width: 100%;
  }
}


@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-DemiBold-Italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-ExtraBold-Italic.otf') format('opentype'), url('../fonts/TT-Commons-Bold-Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Bold.otf') format('opentype'), url('../fonts/TT-Commons-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Black-Italic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Medium-Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-ExtraLight-Italic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Light-Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Thin-Italic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tt Commons';
  src: url('../fonts/TT-Commons-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}