@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Light.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Bold.ttf') format("truetype"), url('../fonts/Muli-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-BoldItalic.ttf') format("truetype"), url('../fonts/Muli-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: #050505;
  --white: white;
  --glemo-blue: #0059ff;
  --alice-blue: #00de8233;
  --096ad0: #00de820a;
  --blue-violet: #00baff;
  --steel-blue-60: #0059ff9e;
  --midnight-blue: #000;
  --medium-spring-green: #a5a5a5;
  --thistle: #e6e6e6;
  --dark-slate-blue: #0059ff;
  --slate-blue: #e0ebff;
  --gainsboro: #e5e5e5;
  --white-2: #fff3;
  --black-2: #171a2e;
  --lawn-green: #8ffe68;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: Pt root ui, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 300;
  line-height: 1em;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2em;
}

h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2em;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5em;
}

a {
  color: var(--white);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 12px;
}

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

blockquote {
  border-left: 4px solid var(--glemo-blue);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 20px;
  font-size: 23px;
  font-weight: 300;
  line-height: 32px;
}

.section {
  justify-content: center;
  margin-left: 80px;
  margin-right: 2%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.section.grid {
  z-index: -1;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

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

.section.divider {
  background-color: var(--alice-blue);
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.section.full-screen.stretch {
  align-items: stretch;
}

.section.light-blue {
  background-color: var(--096ad0);
  border-style: none;
}

.section.wider-padding {
  padding-top: 160px;
  padding-bottom: 160px;
  padding-right: 5rem;
}

.section.wider-padding.dark-blue {
  background-color: var(--black);
}

.section.wider-padding.background-image {
  background-image: url('../images/cinematic---big.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  align-items: center;
  display: flex;
}

.section.wider-padding.map {
  background-position: 50%;
  padding-top: 240px;
  padding-bottom: 240px;
}

.section.light-blue {
  background-color: #096ad014;
}

.section.blue {
  color: #096ad0;
  background-color: #096ad0;
}

.section.background-image {
  background-image: url('../images/img-portfolio_1img-portfolio.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  overflow: visible;
}

.section.half-screen-background-image {
  background-image: url('../images/169---big.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 50%;
}

.section.half-screen-background-image.right {
  background-position: 100%;
}

.section.page-header {
  padding-top: 220px;
  padding-bottom: 20px;
}

.section.page-header.image {
  background-image: url('../images/cinematic---big.svg');
  background-position: 50%;
  background-size: cover;
  padding-bottom: 160px;
}

.section.full-screen {
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.section.map {
  background-image: url('../images/map.svg');
  background-size: cover;
}

.section.hero {
  align-items: center;
  padding-top: 220px;
  padding-bottom: 220px;
}

.section.hero.black-violet-section.page {
  height: auto;
  min-height: auto;
}

.section.hero.black-violet-section.post {
  padding-bottom: 0;
}

.section.hero.page {
  padding-top: 140px;
  padding-bottom: 20px;
  position: relative;
}

.section.bg-white {
  background-color: var(--white);
  color: var(--black);
  margin-left: 80px;
  padding-left: 60px;
}

.section.bg-white.round-border {
  border-radius: 24px;
  margin-bottom: 140px;
  margin-left: 100px;
  margin-right: 4%;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.section.upp0-100 {
  padding-top: 0;
}

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

.section._0-100 {
  padding-top: 100px;
}

.section.page {
  padding-top: 220px;
}

.section.posts {
  padding-top: 0;
}

.section.hero-block {
  flex-direction: column;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  left: 0;
  right: 0;
}

.wrapper.grid-container {
  z-index: -1;
  display: block;
  position: fixed;
  inset: auto 0 0;
}

.wrapper.space-around {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.wrapper.navbar-latinsoft {
  flex-direction: row;
  align-items: center;
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.wrapper.lg-negative-margins {
  flex-direction: row;
  flex: 0 auto;
  margin-top: -80px;
  margin-bottom: -80px;
  display: flex;
}

.wrapper.navbar {
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.wrapper.navbar.auto {
  padding-left: 0;
  padding-right: 0;
}

.wrapper.mobile-navbar-container {
  flex-direction: column;
  align-items: stretch;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.wrapper.auto {
  width: auto;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.wrapper.auto._10.bg-white {
  background-color: var(--white);
  color: var(--black);
}

.wrapper.auto._10.bg-white.info-list {
  border-radius: 20px;
  padding: 60px 40px;
}

.wrapper.auto.hero {
  width: 100%;
}

.wrapper.left-alight {
  margin-left: 0;
}

.color-block {
  background-color: var(--alice-blue);
  border-radius: 3px;
  width: 100px;
  height: 100px;
  margin-left: 0;
  margin-right: 0;
}

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

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

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

.color-block.white.border {
  border: 1px solid #3d9afc;
}

.color-block.light-blue {
  background-color: var(--096ad0);
  border-style: none;
}

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

.grid {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  height: 100vh;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.block {
  border-style: none;
  border-width: 1px;
  flex-wrap: nowrap;
  flex: 1;
  place-content: flex-start;
  align-items: flex-start;
  min-width: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.block.lg-50 {
  float: left;
  justify-content: center;
  width: 50%;
  min-height: 400px;
  padding: 80px;
  display: flex;
}

.block.lg-50.blue {
  text-align: left;
  border-radius: 24px;
  justify-content: center;
}

.column-overlay {
  border-left: 1px solid #096ad00d;
  border-right: 1px solid #096ad00d;
  width: 100%;
  height: 100%;
}

.column-overlay.white {
  border-left-color: #ffffff14;
  border-right-color: #ffffff14;
}

.centre-align {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.centre-align.bottom-margin {
  margin-bottom: 40px;
}

.col {
  flex-flow: column;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
}

.col.centre-align {
  align-items: center;
}

.col.lg-4 {
  flex-wrap: wrap;
  flex: 0 auto;
  width: 33.33%;
}

.col.lg-4.align-bottom {
  justify-content: flex-end;
}

.col.lg-4.align-bottom.md-4 {
  align-items: center;
}

.col.lg-4.sm-2.lg-vertical-align {
  justify-content: center;
  padding-left: 0;
}

.col.lg-4.flex-stretch {
  align-items: stretch;
}

.col.lg-4.alight-right {
  text-align: right;
  padding-left: 0;
  padding-right: 0;
}

.col.lg-4.lp0 {
  margin-right: 60px;
}

.col.lg-3 {
  flex: none;
  width: 25%;
}

.col.lg-3.hidden-lg-down.md-1 {
  padding-left: 0;
  padding-right: 0;
}

.col.lg-3.md-4 {
  align-self: center;
}

.col.lg-3.no-padding {
  float: left;
}

.col.lg-3.flex-stretch {
  align-items: stretch;
}

.col.lg-3.lp0 {
  padding-left: 0;
}

.col.lg-3.lp0.sticky {
  position: sticky;
}

.col.lg-3.hidden {
  display: none;
}

.col.lg-1 {
  flex: 0 auto;
  width: 8.33%;
}

.col.lg-6 {
  align-items: flex-start;
  width: 50%;
}

.col.lg-6.centre-align {
  justify-content: flex-start;
  align-items: center;
}

.col.lg-6.centre-align-vertical {
  justify-content: center;
}

.col.lg-6.hidden-lg-down {
  padding-left: 15px;
  padding-right: 15px;
}

.col.lg-6.md-3.centre-align {
  align-items: center;
}

.col.lg-6.sm-margin-bottom.stretch {
  align-items: stretch;
}

.col.lg-6._100--tablet {
  padding-left: 0;
  padding-right: 0;
}

.col.lg-6.padd-0 {
  padding-left: 0;
}

.col.lg-6.no-margins {
  padding: 0;
}

.col.lg-6.img50 {
  padding-top: 15px;
  padding-bottom: 0;
}

.col.lg-2 {
  width: 16.66%;
}

.col.lg-5 {
  width: 41.66%;
}

.col.lg-5.align-vertically {
  justify-content: center;
}

.col.lg-5.bottom-margin-mobile, .col.lg-5.padd-0 {
  padding-left: 0;
  padding-right: 0;
}

.col.lg-5.padd-0.tablet100 {
  padding-top: 20px;
}

.col.lg-7 {
  width: 58.33%;
}

.col.lg-8 {
  width: 66.66%;
}

.col.lg-8.padd-0 {
  padding-left: 0;
  padding-right: 0;
}

.col.lg-9 {
  width: 75%;
}

.col.lg-9.md-1 {
  padding: 0;
}

.col.lg-9.md-1.hidden-md-down {
  overflow: visible;
}

.col.lg-9.md-1.no-margins {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.col.lg-10 {
  width: 83.33%;
}

.col.lg-11 {
  width: 91.66%;
}

.col.lg-12 {
  width: 100%;
}

.col.lg-12.md-1, .col.no-margins {
  padding-left: 0;
  padding-right: 0;
}

.col.sticky {
  position: sticky;
  top: 100px;
}

.paragraph-small {
  text-transform: none;
  margin-bottom: 10px;
}

.paragraph-small.no-top-margins {
  margin-top: 0;
}

.paragraph-small.align-to-h1 {
  margin-bottom: 6px;
  margin-left: 5px;
}

.paragraph-small.divider-line {
  margin-left: 8px;
  margin-right: 8px;
}

.paragraph-small.short-paragraph {
  width: 75%;
}

.paragraph-small.white {
  color: #fff9;
}

.paragraph-small.footer {
  margin-bottom: 0;
  font-size: 13px;
}

.row {
  flex-flow: column;
  place-content: stretch center;
  align-items: center;
  display: flex;
}

.row.flex-horizontal {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  display: flex;
}

.row.flex-horizontal.blue.padding {
  margin-left: -30px;
  margin-right: -30px;
  padding: 20px;
}

.row.flex-horizontal.no-bottom-margin {
  margin-bottom: 0;
}

.row.centre-align {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.row.no-bottom-margins {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.row.align-centre {
  justify-content: center;
  align-items: flex-start;
}

.row.align-centre.flex-vertical-align {
  align-items: center;
}

.row.margin-bottom {
  margin-bottom: 100px;
}

.row.spacebeetwin {
  justify-content: space-between;
  align-items: center;
}

.row.negative-margin {
  margin-left: -15px;
  margin-right: -15px;
}

.button {
  border: 1px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
  text-transform: uppercase;
  border-radius: 40px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.button:hover {
  border: 1px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  transform: translate(0, -4px);
  box-shadow: 0 6px 20px #013a7554;
}

.button.ghost {
  border: 1px solid var(--glemo-blue);
  box-shadow: none;
  color: var(--white);
  background-color: #0000;
}

.button.ghost:hover {
  background-color: var(--glemo-blue);
  color: var(--black);
}

.button.ghost.reversed {
  border-color: var(--black);
  color: var(--black);
  background-color: #0000;
  transition-duration: .1s;
}

.button.ghost.reversed:hover {
  border-color: var(--white);
  color: var(--black);
  background-color: #fff;
}

.button.ghost.text-white {
  color: var(--white);
}

.button.ghost.text-white:hover {
  color: var(--black);
}

.button.reversed {
  color: var(--glemo-blue);
  text-transform: uppercase;
  background-color: #fff;
  font-weight: 400;
}

.button.reversed:hover {
  background-image: none;
}

.button.lg-wide {
  text-align: center;
  width: 100%;
}

.button.lg-wide.ghost.white-text {
  color: var(--white);
}

.button.margin-left {
  margin-right: 20px;
}

.button.side-margins {
  border-color: var(--white);
  margin-bottom: 15px;
  margin-right: 15px;
}

.button.form-button {
  box-shadow: none;
  color: var(--black);
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
}

.button.language {
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  padding: 0;
  display: flex;
}

.button.language.active {
  color: var(--white);
  background-color: #0000;
}

.button.big {
  width: 100%;
}

.navbar {
  background-color: #0000;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.fixed {
  z-index: 200;
  background-image: linear-gradient(74deg, #784dff21, #16133c00 66%);
  padding: 5px 2% 5px 0;
  display: block;
  position: fixed;
}

.margin-bottom {
  margin-bottom: 40px;
}

.margin-bottom.small {
  margin-bottom: 20px;
}

.form {
  width: 100%;
}

.form-field {
  background-color: var(--alice-blue);
  color: #fff;
  background-image: none;
  border: 1px solid #00de82;
  border-radius: 100px;
  min-width: 150px;
  margin-bottom: 10px;
  padding: 20px 16px;
}

.form-field::placeholder {
  color: #fff9;
}

.form-field.no-bottom-margins {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--glemo-blue);
  color: var(--white);
  background-color: #0000;
  background-image: none;
  border-radius: 0;
  margin-bottom: 20px;
  padding-left: 0;
}

.form-field.no-bottom-margins.margin-right {
  border-style: none;
  margin-right: 20px;
}

.form-field.side-margins {
  margin-left: 16px;
  margin-right: 16px;
}

.form-field.side-margins.no-bottom-margins {
  border: 1px solid var(--steel-blue-60);
  background-color: var(--096ad0);
  border-radius: 100px;
  padding-left: 10px;
}

.form-field.name {
  text-transform: uppercase;
}

.form-field.name::placeholder {
  color: #fff;
  text-transform: none;
  background-image: none;
}

.text-area {
  border: 1px solid var(--glemo-blue);
  color: var(--white);
  background-color: #00de8259;
  border-radius: 10px;
  min-height: 140px;
  margin-bottom: 20px;
  padding-top: 16px;
  padding-left: 16px;
}

.text-area::placeholder {
  color: #fff9;
}

.page-preview-link {
  background-color: var(--blue-violet);
  box-shadow: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 36px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.page-preview-link:hover {
  background-color: #6d49e8;
  transform: translate(0, -4px);
  box-shadow: 0 8px 40px #0000001a;
}

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

.price-table-container {
  border: 1px solid var(--glemo-blue);
  border-radius: 24px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 50px;
  display: flex;
}

.price-table-container.flex-stretch {
  border-color: var(--steel-blue-60);
  align-items: stretch;
}

.price-table-container.flex-stretch.violet {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.price-table-container.link {
  text-decoration: none;
  transition: border .2s ease-in-out;
}

.price-table-container.link:hover {
  border-color: var(--glemo-blue);
}

.logo {
  flex: 1;
  margin-left: 20px;
  position: absolute;
}

.logo.w--current {
  flex: 1;
}

.logo.rel {
  align-items: center;
  display: flex;
  position: relative;
}

.logo.rel.w--current {
  flex: 0 auto;
  display: flex;
}

.column-styleguide {
  border: 1px solid var(--glemo-blue);
  background-color: #096ad00f;
  border-radius: 6px;
  width: 100%;
  height: 40px;
  margin-bottom: 0;
}

.styleguide-caption {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.styleguide-caption.small-divider {
  margin-top: -15px;
  font-size: 12px;
}

.white.paragraph-small {
  color: var(--black);
}

.horizontal-line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
}

.horizontal-line.blue {
  background-color: var(--medium-spring-green);
}

.horizontal-line.light {
  color: var(--glemo-blue);
  background-color: #297fcacc;
  margin-top: 10px;
  margin-bottom: 20px;
}

.horizontal-line.light.white {
  background-color: #fffc;
}

.footer-logo {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.footer-link {
  opacity: .5;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
}

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

.footer-link.spacing {
  margin-left: 16px;
  margin-right: 16px;
}

.footer-link.spacing.last {
  margin-right: 0;
}

.footer-link.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-link.no-padding.last {
  margin-right: -20px;
}

.contact-form-container {
  border-radius: 6px;
  width: 100%;
}

.contact-form-container.card {
  border: 1px none var(--alice-blue);
  background-color: var(--blue-violet);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 10px 0 80px #1f2c3d1a;
}

.contact-form-container.card.white-background {
  border: 1px solid var(--glemo-blue);
  background-color: #fff;
}

.contact-form-container.light-blue.padding {
  color: var(--black);
  padding: 40px;
}

.icon {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}

.light-blue {
  background-color: #096ad00a;
}

.question {
  align-items: flex-start;
  display: flex;
}

.answer-text {
  margin-top: 8px;
}

.question-arrow-icon {
  margin-top: 26px;
  margin-left: 24px;
  margin-right: 8px;
}

.question-arrow-icon.left {
  margin-top: 11px;
  margin-left: 0;
  margin-right: 16px;
}

.answer {
  color: #9096a4;
  padding-right: 8px;
  display: block;
  overflow: hidden;
}

.answer._2 {
  margin-left: 32px;
  padding-left: 0;
  padding-right: 0;
}

.question-container {
  border: 1px solid var(--medium-spring-green);
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding: 20px 32px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-container.transparent {
  background-color: #0000;
  border-style: none;
  margin-bottom: 16px;
  padding: 10px 0;
}

.question-container.transparent.link {
  position: relative;
}

.service-icon {
  float: left;
  border: 1px solid var(--glemo-blue);
  color: var(--glemo-blue);
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-top: 11px;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.service-icon._2 {
  border-color: var(--glemo-blue);
  color: var(--glemo-blue);
  width: 40px;
  height: 40px;
  margin-top: 11px;
  margin-bottom: 0;
}

.question-text {
  flex: 1;
  margin-top: 15px;
  margin-left: 24px;
}

.brand-wrapp {
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  display: flex;
}

.nav-menu-2 {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-around;
  align-items: center;
  margin-right: 20px;
  display: flex;
  position: relative;
}

.nav-link-latinsoft-web {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  justify-content: center;
  padding: 16px 10px 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  transition: opacity .15s;
  display: flex;
  position: relative;
}

.nav-link-latinsoft-web:hover {
  opacity: 1;
  color: var(--glemo-blue);
}

.nav-link-latinsoft-web.w--current {
  color: var(--glemo-blue);
  letter-spacing: 0;
  text-transform: none;
  background-image: url('../images/logo-marks.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 15px;
  transition-property: none;
}

.nav-link-latinsoft-web.border {
  border: 1px solid var(--glemo-blue);
  opacity: 1;
  border-radius: 50px;
  padding-top: 6px;
  padding-bottom: 6px;
  transition: background-color .2s;
}

.nav-link-latinsoft-web.border:hover, .nav-link-latinsoft-web.border.cta {
  background-color: var(--glemo-blue);
  color: var(--black);
}

.nav-link-latinsoft-web.dropdown {
  opacity: 1;
  margin-left: 10px;
  padding-left: 0;
  padding-right: 0;
}

.nav-link-latinsoft-web.full-opacity {
  opacity: 1;
}

.nav-link-latinsoft-web.burger-nav {
  opacity: 1;
  color: #096ad099;
  background-color: #fff;
  flex: 0 auto;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  text-decoration: none;
  transition: opacity .15s, color .2s;
  display: block;
  position: relative;
}

.nav-link-latinsoft-web.burger-nav:hover {
  opacity: 1;
  color: var(--glemo-blue);
}

.nav-link-latinsoft-web.light-mode {
  color: var(--white);
  padding-left: 15px;
  padding-right: 15px;
}

.menu-burger-latinsoft.w--open {
  color: var(--alice-blue);
  background-color: #fff;
}

.nav-bar {
  z-index: 200;
  background-color: #0000;
  border-bottom: 1px solid #fff3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 100px;
  position: absolute;
}

.nav-bar.sample-website {
  flex-direction: column;
  position: static;
}

.nav-bar.burger-nav {
  background-color: var(--black);
}

.nav-bar.center {
  padding-left: 0;
  position: static;
}

.nav-logo-latinsoft {
  display: flex;
}

.nav-logo-latinsoft.w--current {
  display: flex;
  position: relative;
}

.toggle-grid {
  z-index: 100;
  background-color: var(--midnight-blue);
  color: #fff;
  border-radius: 60px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 16px;
  position: fixed;
  bottom: 0;
  right: 0;
}

.logo-navbar {
  max-width: 200px;
}

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

.partner-logo {
  width: 100px;
}

.phone-image.negative-margins {
  margin-bottom: -125px;
}

.no-margins {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.no-margins.no-change-color {
  color: var(--white);
}

.styleguide-small-divider {
  opacity: .85;
  color: var(--white);
  width: 100%;
  margin-top: 0;
}

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

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

.column-image {
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform .2s;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.slide {
  background-color: #0000;
}

.slide.small {
  width: 70%;
  margin-left: 10px;
  margin-right: 10px;
}

.slider-arrow, .slide-nav {
  color: var(--glemo-blue);
}

.full-width-image {
  border-radius: 20px;
  width: 100%;
}

.overflow-visible {
  overflow: visible;
}

.small-icon {
  float: left;
  margin-right: 16px;
  display: block;
}

.inline-form {
  width: 75%;
  display: flex;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.components-list-container {
  width: 100%;
  padding-top: 5px;
  display: none;
}

.components-list-container._2 {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: block;
}

.flex-stretch {
  flex-direction: column;
  display: flex;
}

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

.flex-horizontal-justify-start-align-centre {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.tick-icon {
  margin-right: 8px;
}

.flex-horizontal {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: var(--medium-spring-green);
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  font-size: 14px;
  display: grid;
}

.flex-horizontal.align-bottom {
  align-items: flex-end;
}

.blog-thumbnail-container {
  border: 1px solid var(--alice-blue);
  color: var(--black);
  border-radius: 8px;
  flex: 1;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all .2s;
  overflow: hidden;
}

.blog-thumbnail-container:hover {
  color: var(--glemo-blue);
  transform: translate(0, -5px);
}

.blog-thumbnail-container.no-border {
  border-style: none;
}

.blog-thumbnail-container.no-border:hover {
  transform: none;
}

.padding {
  padding: 20px;
}

.padding.no-horizontal-padding {
  color: var(--black);
  padding-left: 0;
  padding-right: 0;
}

.margin-bottom-gutter {
  margin-bottom: 30px;
}

.tab {
  width: 100%;
}

.tabs-menu {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.tab-link {
  opacity: .5;
  color: var(--glemo-blue);
  text-align: center;
  background-color: #0000;
  flex: 1;
  width: 33.33%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.tab-link.w--current {
  opacity: 1;
  background-color: #0000;
  font-weight: 700;
}

.intro-hero-headline {
  color: var(--white);
  letter-spacing: -3px;
  margin-bottom: 0;
  font-family: Muli, Arial, sans-serif;
  font-size: 5.5em;
  position: static;
}

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

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

.nav-link-with-icon-containr {
  align-items: center;
  display: flex;
}

.menu-icon {
  margin-right: 8px;
}

.navbar-links-container {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

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

.nav-link {
  color: var(--thistle);
  cursor: pointer;
  padding: 10px 26px;
  font-size: 16px;
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--glemo-blue);
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-link.cta {
  background-color: var(--glemo-blue);
  color: var(--black);
  padding-top: 24px;
  padding-bottom: 24px;
  transition: background-color .1s ease-in-out;
}

.nav-link.cta:hover {
  background-color: var(--blue-violet);
  color: var(--white);
}

.nav-link.big {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  font-size: 35px;
  font-weight: 300;
}

.back-to-legowerk-link {
  z-index: 100;
  background-color: var(--midnight-blue);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 90px;
  margin: 16px;
  padding: 8px 14px;
  font-size: 10px;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
}

.dropdown-container {
  background-color: var(--blue-violet);
  width: 100%;
  display: none;
  position: fixed;
  top: 100%;
}

.hover.hover-on-image {
  opacity: 1;
  background-color: #16133cb3;
  border-radius: 6px;
  width: auto;
  height: 100%;
  padding: 30px;
  display: block;
  position: absolute;
}

.portrait-container {
  margin-bottom: 30px;
  position: relative;
}

.team-small-container {
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.div-block-29 {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.image-9 {
  margin-right: 20px;
}

.bold {
  font-weight: 500;
}

.form-with-button {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-with-button.horizontal {
  flex-direction: row;
  align-items: flex-start;
}

.testimonial-container {
  background-color: #fff;
  align-items: flex-start;
  padding: 50px;
  display: flex;
}

.testimonial-container.border {
  border: 1px solid var(--glemo-blue);
}

.quotation-mark {
  opacity: .1;
  margin-right: 24px;
}

.slider-3 {
  background-color: #0000;
  height: 100%;
}

.slide-nav-2 {
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: -20px;
  font-size: 10px;
  display: flex;
  position: relative;
  left: 0;
}

.hide {
  display: none;
}

.flex-horizontal-space-between {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-horizontal-space-between.accordion.right {
  text-align: right;
  justify-content: flex-end;
}

.horizontal-short-line {
  background-color: var(--alice-blue);
  height: 1px;
  margin-left: -50px;
  margin-right: -50px;
}

.div-block-32 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.social-link {
  border: 1px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  border-radius: 50px;
  margin-left: 6px;
  margin-right: 6px;
  padding: 8px;
  display: inline;
}

.team-small-container-1 {
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.section-header {
  justify-content: center;
  margin: 0 auto 80px;
  display: block;
}

.half-screen-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  display: flex;
}

.half-screen-content.centre-align {
  align-items: flex-start;
}

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

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

.app-download-container {
  display: flex;
}

.feature-icon-horizontal {
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.icon-side {
  width: 50px;
  margin-right: 30px;
}

.value-proposition-container {
  z-index: 1;
  display: block;
  position: relative;
}

.value-proposition-container.vertical-align {
  flex: 1;
  align-items: center;
  display: flex;
}

.value-proposition-buttons.rihgt {
  text-align: right;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 0;
  display: flex;
}

.value-proposition-hero-image {
  border-radius: 20px;
  margin-bottom: 20px;
}

.computer-image {
  width: 70vw;
  margin-left: 10vw;
  position: absolute;
}

.computer-image-container {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.side-image {
  background-color: var(--glemo-blue);
  background-image: url('../images/screenshot_1screenshot.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  max-width: none;
  height: 20vw;
}

.side-image.lightbox-video {
  position: relative;
}

.side-image.map {
  background-image: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.border-to-edge-picture {
  float: left;
  background-image: url('../images/cinematic---big.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 600px;
  position: relative;
  top: 0;
}

.big-blog-thumbnail-container {
  margin-bottom: 80px;
  transition: transform .2s ease-in-out;
  position: relative;
}

.big-blog-thumbnail-container.no-bottom-margins {
  margin-bottom: 0;
}

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

.rich-text-block img {
  border-radius: 6px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  margin-bottom: 20px;
  text-decoration: none;
}

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

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

.footer-logo-2 {
  margin-bottom: 40px;
}

.avatar-container {
  display: flex;
}

.div-block-48 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
}

.full-width {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.works-link {
  color: var(--black);
  text-decoration: none;
  position: relative;
}

.centred-logo {
  margin-left: 20px;
  margin-right: 20px;
}

.video-placeholder {
  width: 100%;
  height: 100vh;
}

.lightbox-link {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  transition: transform .2s ease-in-out;
  display: none;
  overflow: hidden;
}

.lightbox-link:hover {
  transform: scale(1.01);
}

.play-icon {
  width: 110px;
  height: 110px;
  position: absolute;
}

.nav-menu-container {
  background-color: var(--midnight-blue);
  text-align: center;
}

.icon-2 {
  margin-right: 20px;
}

.transparent-overlay {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.dropdown-link-text {
  color: var(--white);
  margin-right: 20px;
  text-decoration: none;
}

.dropdown-chevron {
  margin-right: -1px;
}

.dropdown-link {
  opacity: .6;
  color: var(--glemo-blue);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 15px;
}

.dropdown-link:hover, .dropdown-link.w--current {
  opacity: 1;
}

.dropdown-list-2 {
  border: 1px solid #000;
}

.dropdown-list-2.w--open {
  border-color: var(--glemo-blue);
  background-color: var(--dark-slate-blue);
  opacity: 1;
  border-radius: 6px;
  margin-top: 0;
}

.nav-cta-button-container {
  align-items: center;
  margin-left: 10px;
  display: flex;
}

.small-slide {
  width: 50%;
  padding-left: 30px;
  padding-right: 30px;
}

.date-container {
  display: flex;
}

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

.negative-margin {
  margin-left: -18px;
}

.container-center {
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.blog-tag {
  border: 1px solid var(--glemo-blue);
  color: #fff;
  letter-spacing: 1px;
  text-transform: none;
  border-radius: 50px;
  margin: 0 10px 10px 0;
  padding: 6px 20px;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}

.blog-tag.w--current {
  border-color: var(--midnight-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
}

.blog-tag.active {
  border-color: var(--glemo-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
  font-weight: 500;
}

.blog-tag.lable {
  margin: 0 10px 10px 0;
  font-size: 10px;
}

.blog-tag.button {
  padding-top: 10px;
}

.blog-tag.light-mode {
  background-color: #16133ce6;
  margin-left: 10px;
  padding: 2px 10px;
}

.blog-tag.big {
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  margin-right: 0;
}

.back-icon {
  margin-right: 8px;
}

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

.utility-page-content {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  width: 320px;
  padding: 30px;
  display: flex;
}

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

.utility-page-icon {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.video-preview {
  z-index: 1;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.play-icon-1 {
  z-index: 2;
  position: relative;
}

.video-preview-container {
  z-index: 1;
  transition: transform .2s;
  position: relative;
}

.video-preview-container:hover {
  z-index: 1;
  position: relative;
  transform: translate(-5px, -5px);
}

.map {
  background-image: url('../images/map.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  overflow: hidden;
}

.pin {
  position: absolute;
}

._0-opacity {
  opacity: 0;
}

.lightbox-image {
  transition: transform .2s ease-in-out;
}

.lightbox-image:hover {
  transform: translate(0, -5px);
}

.how-it-works-line {
  background-color: #096ad033;
  width: 100vw;
  height: 1px;
  margin-bottom: 33px;
}

.how-it-works-step {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.step-number {
  margin-top: 0;
  margin-bottom: 0;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
}

.circle {
  z-index: 1;
  background-color: var(--glemo-blue);
  border: 1px #096ad0;
  border-radius: 49px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 5px 30px #1f2c3d1a;
}

.circle.no-margins {
  color: var(--white);
}

.how-it-works-tab {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.step-container {
  margin-bottom: 80px;
}

.no-underline {
  text-decoration: none;
}

.black-bg {
  background-color: var(--black);
  color: var(--white);
}

.paragraph-hero-position {
  align-items: flex-end;
}

.main-line {
  background-color: var(--white);
  height: 6px;
  margin-bottom: 20px;
}

.sidenav__scroll-wrap {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #05050599;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100vh;
  padding: 100px 20px 110px 100px;
  display: flex;
  overflow: auto;
}

.left-nav__menu {
  z-index: 190;
  background-color: #0000;
  align-items: center;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.sidenav-btn__wrap {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color .25s;
  display: flex;
  position: relative;
}

.sidenav-btn__wrap:hover {
  background-color: #0000;
}

.sidenav-btn__line {
  background-color: #fff;
  flex: none;
  width: 23px;
  height: 2px;
}

.sidenav-btn__line.line-middle {
  background-color: #f3f3f3;
  width: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.sidenav-btn__line.line-top, .sidenav-btn__line.line-bottom {
  transform-origin: 0%;
  background-color: #f3f3f3;
  width: 20px;
}

.sidenav {
  background-color: #171717;
  width: 254px;
  height: 100vh;
  margin-top: 48px;
}

.sidenav.sidenav__left {
  color: var(--white);
  background-color: #0000;
  flex-wrap: wrap;
  width: 100vw;
  margin-top: 0;
  padding-left: 80px;
  display: flex;
  overflow: visible;
}

.sidenav-btn__left-fixed {
  z-index: 2;
  color: var(--black);
  text-align: center;
  cursor: pointer;
  border-right: 1px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 100vh;
  margin-top: -1px;
  padding: 0;
}

.sidenav-btn__left-fixed.w--open {
  background-color: #0000;
}

.short-paragraph-hero {
  color: var(--white);
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  max-width: 300px;
  margin-bottom: 0;
  margin-left: 60px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.short-paragraph-hero.hide {
  display: none;
}

.mail-mav-left {
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  position: absolute;
  inset: auto 0% 15%;
  transform: rotate(-90deg);
}

.mail-mav-left.link {
  text-align: left;
  margin-bottom: 40px;
  font-weight: 400;
  position: relative;
  bottom: 40px;
}

.image-10 {
  border: 1px solid var(--thistle);
  border-radius: 50%;
  max-width: none;
}

.small-slide-three {
  width: 50%;
  padding-left: 0;
  padding-right: 20px;
}

.h1-hero-title {
  font-size: 50px;
}

.h1-hero-title.post {
  text-transform: none;
}

.image-team {
  border-radius: 10px;
}

.overlay {
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  width: 50px;
  height: 50%;
  padding-left: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.portfolio-card-link-image {
  perspective: 1000px;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-image: url('../images/img-portfolio_1img-portfolio.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
  padding: 0;
  text-decoration: none;
  transition: all .3s;
  display: block;
  position: relative;
  overflow: hidden;
}

.portfolio-card-link-image:hover {
  perspective: 1000px;
  transform: rotateX(-10deg)rotateY(0)rotateZ(0);
}

.portfolio-card-link-image.post-block {
  z-index: 1;
  background-color: var(--glemo-blue);
  color: var(--black);
  transform-style: preserve-3d;
  background-image: none;
  border-radius: 20px;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4px 4px 10px;
  transition-duration: .3s;
  display: flex;
  position: static;
}

.portfolio-card-link-image.post-block:hover {
  background-color: var(--white);
  transform: rotateX(-10deg)rotateY(0)rotateZ(0)translate(0, -10px);
}

.card-wrapp {
  perspective: 1000px;
  border-radius: 18px;
  height: 30vw;
  min-height: 300px;
  max-height: 400px;
  transition: transform .2s ease-in-out;
  position: relative;
}

.card-wrapp.block-post {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: none;
  display: flex;
}

.card-wrapp.block-post._50 {
  width: 49%;
}

.h2 {
  text-transform: none;
  margin-top: 0;
}

._30px-step {
  width: 100%;
  height: .5rem;
}

.client-logo-wrap {
  color: var(--white);
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.clients-logo {
  width: 90%;
}

.transition {
  z-index: 996999;
  background-color: var(--glemo-blue);
  display: none;
  position: fixed;
  inset: 0%;
}

.text-block-3 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.accordion-item {
  margin-bottom: 0;
  list-style-type: none;
}

.border-line-btm {
  z-index: 1;
  background-color: #3a366d;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.accordion-content {
  overflow: hidden;
}

.accordion-content__inner-wrap {
  margin-left: auto;
  padding-top: 0;
  display: flex;
  position: relative;
}

.accordion-content__inner-wrap.small {
  background-color: #313131e6;
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 20px;
}

.plus-cirkle {
  border: 1px solid var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-left: 20px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  box-shadow: 0 0 0 1px #04031280;
}

.plus-cirkle.small {
  border-color: var(--glemo-blue);
  background-color: var(--glemo-blue);
  box-shadow: none;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0;
  top: auto;
  bottom: auto;
}

.plus-cirkle.big {
  background-color: var(--glemo-blue);
  border-style: none;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  inset: 0% 0% 0% auto;
}

.plus-cirkle.small-copy {
  box-shadow: none;
  background-color: #e5e5e5;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 0;
  top: auto;
  bottom: auto;
}

.arrow-down {
  color: var(--white);
  background-image: url('../images/plus-big-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 40px;
  height: 40px;
}

.arrow-down.small {
  width: 20px;
  height: 20px;
}

.arrow-down.position {
  z-index: 10;
  width: 22px;
  height: 22px;
  position: absolute;
  inset: auto .5rem .5rem auto;
}

.accordion-trigger {
  z-index: 200000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  font-weight: 500;
  transition: padding .2s;
  display: flex;
  position: relative;
}

.accordion-trigger:hover {
  padding-left: 10px;
}

.accordion-trigger.small {
  align-items: center;
  min-height: 60px;
  padding: 0 60px 0 10px;
}

.accordion-trigger.small:hover {
  padding-left: 20px;
  padding-right: 60px;
}

.accordion-trigger.small.light-mode {
  padding-right: 60px;
}

.accordion-trigger.light-mode {
  z-index: 100;
  opacity: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-trigger.main {
  top: 100px;
}

.accordion {
  border-top: 1px #dcdcdc;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.accordion.first {
  margin-top: 40px;
}

.line {
  z-index: 1;
  background-color: var(--white);
  opacity: .5;
  width: 100%;
  height: 1px;
}

.line.gray {
  background-color: #fff6;
}

.line.up-position {
  position: absolute;
  inset: 0% 0% auto;
}

.line.position {
  position: absolute;
  inset: auto 0% 0%;
}

.down-page-wrapp {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 1px;
  display: flex;
  position: absolute;
  top: auto;
  left: auto;
  right: 0%;
}

.number {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
}

.number.green {
  color: var(--slate-blue);
  font-size: 18px;
}

.number.green.small {
  text-transform: none;
}

.number.total {
  font-size: 18px;
  font-weight: 700;
}

.number.total.small {
  text-transform: none;
}

.h3 {
  font-size: 21px;
}

.h3.total {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Muli, Arial, sans-serif;
  font-weight: 400;
}

.h3.no-change-color {
  margin-bottom: 10px;
}

.total-price-wrapp {
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.total-price-wrapp.small {
  color: var(--thistle);
  min-height: auto;
}

.total-price-wrapp.small.green {
  color: var(--white);
  border-radius: 0 0 18px 18px;
  min-height: 60px;
  margin-bottom: 40px;
  padding: 5px 20px 5px 5px;
}

.total-price-wrapp.green {
  background-color: var(--glemo-blue);
  color: var(--black);
  font-weight: 700;
}

._20step {
  height: 20px;
}

.accardion-title-wrapp {
  align-items: center;
  width: 100%;
  display: flex;
}

.down-page-wrapp-copy {
  border: 1px solid var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.down-page-wrapp-copy._1, .down-page-wrapp-copy._2 {
  border-color: var(--glemo-blue);
}

.arrow-down-hero-wrapp {
  z-index: 100;
  color: var(--glemo-blue);
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
  display: flex;
  position: absolute;
  inset: auto 0% 0 auto;
}

.mode-switch {
  border: 1px solid var(--glemo-blue);
  cursor: pointer;
  border-radius: 100px;
  width: 45px;
  height: 25px;
  padding: 4px;
}

.switch-dot {
  background-color: var(--glemo-blue);
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.wrap-swich {
  z-index: 220;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  min-height: 100px;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.wrap-swich.mobile {
  display: none;
}

.link {
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
}

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

.link.text-green:hover {
  box-shadow: inset 12px 12px 0 1px #000;
}

.link.blog-card-link {
  transform-style: preserve-3d;
  padding-bottom: 40px;
  transition: all .2s;
  transform: translate(0, -5px)rotateX(-10deg)rotateY(0)rotateZ(0);
}

.link.blog-card-link:hover {
  transform: translate(0, -5px)rotateX(-10deg)rotateY(0)rotateZ(0);
}

.link.language {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  padding: 4px 10px;
  font-size: 16px;
  font-weight: 400;
}

.link.language:hover {
  color: var(--glemo-blue);
}

.nav-burger {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin-bottom: auto;
  display: flex;
  position: absolute;
  inset: 50% 0;
}

.brand-logo-white {
  z-index: 1;
  position: relative;
}

.brand-logo-black {
  z-index: 1;
  display: none;
  position: absolute;
}

.plus {
  width: 34px;
  height: 34px;
}

.plus.small {
  width: 20px;
  height: 20px;
  margin: 10px;
}

._80px-step {
  width: 100%;
  height: 80px;
}

.gradient-blur {
  z-index: 10;
  background-image: radial-gradient(circle at 0 0, #0059ff8c, #05050500 44%, #05050500);
  width: 100vw;
  height: 100vh;
  display: block;
  overflow: hidden;
}

.wrapp-form {
  text-align: left;
  align-items: flex-end;
  width: 50%;
  padding: 80px 40px 100px;
  display: flex;
  position: relative;
}

.div-block-57 {
  justify-content: space-between;
  display: flex;
}

.glur-wrapp {
  z-index: -1;
  height: 100vh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.glur-wrapp.nav {
  z-index: -1;
  opacity: .87;
  height: auto;
  max-height: 70px;
}

.div-block-61 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-top: 20px;
  display: grid;
}

.card {
  border-radius: 24px;
  min-height: 300px;
  padding: 40px;
}

.card.green {
  background-color: var(--glemo-blue);
  color: var(--black);
}

.card.black {
  border: 1px solid var(--white);
  background-color: var(--black);
  color: var(--white);
}

.ttle-acardion {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Muli, Arial, sans-serif;
}

.down-page-wrapp-border {
  border: 1px solid var(--glemo-blue);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.mask {
  border-radius: 20px;
  margin-left: 15px;
}

.company-logo-project {
  height: 10vw;
}

.arrow-down-hero-wrapp-copy {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin-bottom: 73px;
  display: flex;
  position: relative;
}

.arrow-down-hero-wrapp-copy-copy {
  z-index: 1;
  background-color: var(--glemo-blue);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 40px;
  line-height: 1.2em;
  transition: all .2s;
  display: flex;
  position: relative;
  top: -100px;
}

.arrow-down-hero-wrapp-copy-copy:hover {
  border: 1px solid var(--glemo-blue);
  background-color: var(--white);
  color: var(--black);
}

.start-project-wrapp {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.start-project-wrapp.hide {
  display: none;
}

.blog-image-card {
  perspective: 1000px;
  background-image: url('../images/img-portfolio_1img-portfolio.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  width: 100%;
  height: 29vw;
  min-height: 200px;
  max-height: 400px;
  margin-bottom: 30px;
  padding: 10px;
  transition: transform .2s ease-in-out;
  position: relative;
}

.bg-image {
  background-image: linear-gradient(to right, #0003, #0000 52%);
  position: absolute;
  inset: 0%;
}

.project-link {
  z-index: 1;
  background-color: var(--glemo-blue);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  line-height: 1.2em;
  transition: top .3s;
  display: flex;
}

.project-link:hover {
  top: -110px;
}

.cube-wrapper {
  opacity: .4;
  cursor: pointer;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  position: fixed;
  inset: 4% auto 0% 14%;
}

.cube-wrapper.right {
  z-index: 0;
  top: 43%;
  left: auto;
  right: 19px;
}

.cube-wrapper.page {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  top: -21%;
  left: -18%;
  right: 0%;
}

.cube-element {
  transform-style: preserve-3d;
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-left: 28px;
  padding-right: 28px;
  display: block;
  position: static;
  top: 259px;
  left: 0;
  right: 0;
  transform: rotateX(-154deg)rotateY(-114deg)rotateZ(-131deg);
}

.cube-element.right {
  transform-style: preserve-3d;
  transform: rotateX(-180deg)rotateY(46deg)rotateZ(-137deg);
}

.cube-element.page {
  width: 8.36868%;
}

._3dhexaback {
  transform-style: preserve-3d;
  background-color: #181818cc;
  border: 3px #00ff85;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  transition: background-color .5s;
  display: none;
  position: absolute;
  transform: translate3d(0, 0, -250px)rotateX(0)rotateY(180deg)rotateZ(0);
}

._3dhexatop {
  transform-style: preserve-3d;
  background-color: #181818cc;
  border: 3px #00ff85;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  display: none;
  position: absolute;
  transform: translate(0, 250px)rotateX(90deg)rotateY(0)rotateZ(0);
}

.cube-front-side {
  transform-style: preserve-3d;
  background-color: #0000;
  background-image: url('../images/glemo.white.svg'), linear-gradient(209deg, #0059ffd6, #0059ff82 29%, #0059ff00 79%);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  border: 3px #00ff8500;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  transition: background-color .5s;
  position: absolute;
  transform: translate(250px)rotateX(0)rotateY(90deg)rotateZ(0);
}

.cube-front-side.right {
  background-image: radial-gradient(circle at 0 0, #0059ff82 15%, #17171700);
}

.cube-front-side.big {
  transform-style: preserve-3d;
  background-image: linear-gradient(122deg, #784dffd6, #6d66ba82 0%, #784dff00 34%);
  width: 1000px;
  height: 1000px;
  transform: translate(500px)rotateX(0)rotateY(90deg)rotateZ(0);
}

._3dhexaleft {
  transform-style: preserve-3d;
  background-color: #18181800;
  border: 3px #00ff8500;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  transition: background-color .5s;
  display: none;
  position: absolute;
  transform: translate(-250px)rotateX(0)rotateY(-90deg)rotateZ(0);
}

.cube-up-side {
  background-image: linear-gradient(294deg, var(--glemo-blue), #17171700 58%);
  transform-style: preserve-3d;
  border: 3px #00ff8533;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  position: absolute;
  transform: translate(0, -250px)rotateX(90deg)rotateY(0)rotateZ(0);
}

.cube-up-side.big {
  transform-style: preserve-3d;
  background-image: linear-gradient(339deg, #665be6, #17171700 58%);
  width: 1000px;
  height: 1000px;
  transform: translate(0, -500px)rotateX(90deg)rotateY(0)rotateZ(0);
}

.cube-left-side {
  background-color: #18181800;
  background-image: linear-gradient(214deg, var(--glemo-blue), #15124400 66%);
  transform-style: preserve-3d;
  border: 3px #00ff8500;
  width: 500px;
  height: 500px;
  padding-top: 21px;
  padding-bottom: 21px;
  transition: background-color .5s;
  position: absolute;
  transform: translate3d(0, 0, 250px);
}

.cube-left-side.big {
  transform-style: preserve-3d;
  background-image: linear-gradient(61deg, #784dff80, #15124400 66%);
  width: 1000px;
  height: 1000px;
  transform: translate3d(0, 0, 500px);
}

.content-wrapp {
  justify-content: space-between;
  align-items: center;
}

.cube {
  z-index: -1;
  float: none;
  width: 100%;
  height: 100vh;
  position: static;
  overflow: hidden;
}

.showreal-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 80vh;
  margin-left: 50px;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: hidden;
}

.lainsoft-footer {
  z-index: 1;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 140px 4%;
  display: block;
  position: relative;
  overflow: hidden;
}

.lainsoft-footer.down {
  border-top: 1px solid #fff3;
  padding-top: 40px;
  padding-bottom: 40px;
  position: static;
}

.black-gradient-card {
  z-index: -1;
  background-image: linear-gradient(#0000, #000c);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 50%;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.black-gradient-card.position {
  z-index: auto;
  background-image: linear-gradient(#0000, #000000ba 66%, #000);
}

.black-gradient-card.hide {
  display: none;
}

.mask-2 {
  z-index: 1;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
  overflow: hidden;
}

.previous {
  opacity: .45;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100px;
  height: 35px;
  margin: auto auto 30px 3%;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.previous:hover {
  opacity: 1;
}

.form-wrap-full {
  height: 100%;
}

.checkbox {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.checkbox:active {
  border: 1px solid var(--glemo-blue);
  background-color: var(--slate-blue);
}

.checkbox.w--redirected-checked {
  border-width: 10px;
  border-color: var(--glemo-blue);
  background-color: var(--glemo-blue);
}

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

.slider-2 {
  background-color: #0000;
  height: 100%;
  position: relative;
}

.form-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.arrow-2 {
  width: 16px;
  margin-right: 8px;
  transform: rotate(180deg);
}

.form-multistep-full {
  z-index: 999;
  background-color: var(--blue-violet);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 800px;
  height: 100%;
  min-height: 600px;
  margin-left: auto;
  padding-top: 50px;
  padding-left: 0%;
  padding-right: 0%;
  position: fixed;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: auto;
}

.success-message {
  letter-spacing: 1px;
  padding: 50px;
}

.checkbox-image {
  width: 45px;
}

.checkbox-image.dig {
  width: 33px;
}

.checkbox-image.f {
  width: 30px;
}

.paragraph {
  color: var(--gainsboro);
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.form-wrapper {
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  display: block;
  position: relative;
}

.next {
  justify-content: center;
  align-items: center;
  width: auto;
  height: 47px;
  margin: auto auto 25px;
  padding-right: 10px;
  display: block;
  position: absolute;
  right: 3%;
}

.error-message {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.next-button {
  background-color: var(--glemo-blue);
  color: var(--black);
  text-transform: uppercase;
  background-image: url('../images/button-arrow-black.svg');
  background-position: 92%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50px;
  flex: 1;
  align-self: center;
  padding: 10px 45px 10px 25px;
  font-size: 15px;
  transition: background-color .2s ease-in;
}

.title-left {
  margin-top: 15px;
  position: absolute;
  inset: 0% 0 auto 0%;
}

.counter-image {
  width: 16px;
  margin-right: 5px;
  display: block;
}

.form-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 390px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.slider-content-wrap {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 165px;
  padding-left: 0;
  display: flex;
  position: relative;
}

.submit-button {
  background-color: var(--glemo-blue);
  box-shadow: none;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  width: 260px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: background-color .2s ease-in, box-shadow .2s ease-in;
  display: block;
}

.details-right {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
  margin-right: 3%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.form07_link {
  color: var(--glemo-blue);
  font-size: 13px;
  font-weight: 700;
}

.previous-button {
  opacity: 1;
  text-indent: -2px;
  flex: none;
  align-self: center;
  padding: 5px 0;
  font-size: 15px;
  transition: opacity .2s ease-in;
}

.previous-button:hover {
  opacity: 1;
  border-bottom-color: #0000008c;
}

.form12_checkbox_field {
  background-color: #fff;
  border: 1.2px solid #3e34c81a;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  width: 12%;
  height: 140px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  padding: 30px 22px 22px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 35px #c6d3ff47;
}

.text-block-22 {
  color: var(--glemo-blue);
  font-weight: 400;
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  width: 31%;
  height: 140px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.text-counter {
  color: var(--glemo-blue);
  font-size: 14px;
}

.slide-2 {
  border-radius: 20px;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.field-title {
  margin-bottom: 5px;
  padding-left: 6px;
  font-size: 14px;
  font-weight: 400;
}

.checkbox_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.checkbox_wrap.checkbox_centre {
  justify-content: center;
}

.checkbox-title {
  color: #686868;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.form-section-title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 300;
  line-height: 32px;
}

.checkbox-simple {
  border-color: var(--glemo-blue);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 10px;
}

.checkbox-simple.w--redirected-checked {
  background-color: var(--glemo-blue);
  background-size: contain;
}

.checkbox-label {
  text-align: left;
  width: 98%;
}

.checkbox-field-2 {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.button-open-form {
  border: 1px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
  text-transform: uppercase;
  border-radius: 40px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 30px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.button-open-form:hover {
  background-color: #1bf99d;
}

.button-open-form.button.hide-on-mobile {
  background-color: var(--glemo-blue);
}

.close-button {
  z-index: 10;
  cursor: pointer;
  background-color: #492cab;
  border-radius: 50%;
  transition: padding .2s, background-color .2s, box-shadow .2s;
  position: absolute;
  inset: 0% 20px auto auto;
  transform: rotate(45deg);
}

.close-button:hover {
  padding: 4px;
}

.close-button.sec {
  border: 1px solid var(--white);
  opacity: 1;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-left: 56px;
  display: flex;
  inset: 38% auto auto 10%;
}

.heading, .h4.main-page {
  color: var(--white);
}

.h4.main-page.light-mode.sticky {
  position: sticky;
  top: 100px;
}

.position-cirkle-button {
  flex-direction: column;
  align-items: center;
  display: block;
  position: absolute;
  inset: auto 5% -80px auto;
}

.arrow {
  width: 60%;
  max-width: 90%;
}

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

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

.heading-2 {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% auto 0% -191%;
}

.hero-project-image {
  flex-direction: column;
}

.no-change-color {
  color: var(--white);
}

.section-video-lightbox {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
  position: relative;
}

.project-image {
  flex-direction: column;
  display: flex;
  position: relative;
}

.image-full-size {
  border-radius: 20px;
  width: 100%;
}

.play-wrapp {
  border: 1px solid var(--glemo-blue);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: absolute;
}

.card-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.brand-icon {
  margin-right: 0;
}

.brand-icon-wrapp {
  justify-content: center;
  align-items: center;
  width: 80px;
  display: flex;
}

.logo-wrapp {
  position: relative;
}

.social-share-icon {
  background-color: #252134;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: .5em;
  display: flex;
}

.social-share-icon.facebook {
  background-color: var(--glemo-blue);
  background-image: url('../images/facebook-ic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-share-icon.facebook.hide {
  display: none;
}

.social-share-icon.mail {
  background-color: var(--glemo-blue);
  background-image: url('../images/mail-.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px;
}

.social-share-icon.mail.hide {
  display: none;
}

.social-share-icon.twitter {
  background-color: var(--glemo-blue);
  background-image: url('../images/twitter-ic.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.social-share-icon.twitter.hide {
  background-color: var(--glemo-blue);
  display: none;
}

.social-share-wrapp {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.text-block-50 {
  margin-right: 10px;
}

.arrow-down-hero-wrapp-copy-copy-copy {
  z-index: 1;
  background-color: var(--glemo-blue);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  margin-right: 20px;
  font-size: 21px;
  line-height: 1.2em;
  transition: all .2s;
  display: flex;
  position: relative;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_text {
  color: #252134;
  font-size: 12px;
}

.fs-cc-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_label-2 {
  color: var(--blue-violet);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

.fs-cc-banner_text-link-2 {
  font-weight: 400;
  text-decoration: underline;
  display: inline;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_component {
  z-index: 997;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: -8px;
  display: flex;
}

.fs-cc-banner_component-2 {
  z-index: 999999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-top: 1px #4353ff29;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_button-2 {
  border: 2px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
  text-transform: uppercase;
  border-radius: 500px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
}

.fs-cc-prefs_button-2.fs-cc-button-alt {
  border-color: var(--medium-spring-green);
  color: var(--black);
  background-color: #fff;
  font-weight: 400;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_button-2 {
  border: 2px solid var(--glemo-blue);
  background-color: var(--glemo-blue);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  border-radius: 100px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button-2.fs-cc-button-alt {
  color: #252134;
  background-color: #0000;
  border-style: solid;
  border-color: #bfbfbf;
}

.fs-cc-prefs_title {
  color: var(--dark-slate-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-banner_close-icon {
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 40px;
}

.fs-cc-banner_text {
  margin-bottom: 20px;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 16px;
  height: 16px;
}

.fs-cc-components-2 {
  display: block;
}

.fs-cc-banner_container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -12px -12px auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_form-2 {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 576px;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_space-small {
  margin-bottom: 12px;
}

.brand-wrapper {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.site-top__menu-link {
  color: var(--black);
  letter-spacing: .5px;
  border-bottom: 2px solid #0000;
  align-items: center;
  margin-bottom: -4px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 0 2px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.site-top__menu-link:hover {
  color: #f3f7fb;
}

.site-top__menu-link.w--current {
  border-bottom: 2px solid var(--glemo-blue);
  color: var(--glemo-blue);
  justify-content: center;
  margin-left: 4px;
  margin-right: 4px;
  font-weight: 400;
  display: inline-block;
}

.form-multistep-wrapp {
  z-index: 999;
  background-color: #050505bd;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  padding-top: 50px;
  padding-left: 0%;
  padding-right: 0%;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.webflow-badge {
  height: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.site-top__menu-right-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  align-items: center;
  margin-left: 10px;
  display: flex;
}

.language-chooser {
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-height: 40px;
  font-size: 14px;
  list-style-type: none;
  display: flex;
}

.language-chooser.language-chooser-image {
  color: var(--white);
  background-color: #0000;
}

.language-chooser.language-chooser-image.qtranxs_language_chooser {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  list-style-type: none;
}

.list-item {
  margin-bottom: 0;
  list-style-type: none;
}

.social-wrapp {
  display: flex;
}

.post-info {
  padding: 20px;
}

.color {
  z-index: -10;
  opacity: 0;
  background-image: linear-gradient(214deg, #00de82, #784dff);
  position: absolute;
  inset: 0%;
}

.bg-accardion-color {
  z-index: -1;
  opacity: 0;
  background-image: linear-gradient(90deg, #00baff8f, #0000);
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.accardion-wrapp {
  position: relative;
}

.cube_sectionr {
  z-index: -2;
  background-color: #000;
  background-image: linear-gradient(#000, #000);
  position: fixed;
  inset: 0%;
}

.language-chooser-image {
  background-color: var(--glemo-blue);
  color: var(--black);
  border-radius: 50%;
  padding: 10px;
  list-style-type: none;
}

.qtranxs_language_chooser {
  display: flex;
}

.color-copy {
  z-index: -10;
  opacity: 1;
  background-image: linear-gradient(214deg, #00de82, #784dff);
  position: absolute;
  inset: 0%;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-4 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-4:hover {
  color: #1a1b1fbf;
}

.nav-link-4:focus-visible, .nav-link-4[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-subscribe-right {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.hero-form {
  margin-bottom: 12px;
}

.hero-form-container {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.hero-form-input {
  color: #1a1b1f;
  border: 1px solid #d1d6db;
  width: 240px;
  height: auto;
  margin-bottom: 0;
  margin-right: 9px;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 20px;
  transition: all .2s;
}

.hero-form-input:hover, .hero-form-input:focus {
  border-color: #76879d;
}

.hero-form-input::placeholder {
  color: #1a1b1fcc;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.footer-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px 40px;
  position: relative;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #1a1b1f;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #3a4554;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.flex-ard-main {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.flex-ard-main.hide {
  display: none;
}

.preloader-main-page {
  z-index: 99999;
  background-color: var(--blue-violet);
  background-image: linear-gradient(243deg, var(--glemo-blue), var(--blue-violet));
  perspective: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
}

.preloader-main-page_content {
  background-color: var(--black);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.close-div {
  position: relative;
  overflow: hidden;
}

.logo-preloader {
  width: 200px;
}

.spinner--gradient {
  position: absolute;
  inset: auto auto 5%;
}

.spinner__box {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.circle-border {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 3px;
}

.circle-core {
  background-color: #0000;
  background-image: linear-gradient(to bottom, var(--blue-violet), var(--glemo-blue));
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.center-button-position {
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.center-button-position.hide {
  display: none;
}

.center-button-position.desctop-hide {
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
}

.link-block {
  height: 500px;
}

.fs-cc-prefs_toggle-wrapper-2 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-banner_component {
  z-index: 998;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #edf4ff;
  background-image: linear-gradient(256deg, var(--glemo-blue), var(--blue-violet));
  border-top: 1px solid #cce1ff;
  border-radius: 20px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  margin: 10% 4% 4% auto;
  padding: 32px;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-components {
  justify-content: flex-end;
  display: none;
}

.fs-cc-prefs_label {
  color: var(--blue-violet);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-banner_button {
  border: 2px solid var(--blue-violet);
  background-color: var(--blue-violet);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-style: solid;
  border-color: var(--glemo-blue);
  background-color: #0000;
  border-radius: 100px;
}

.fs-cc-prefs_form {
  background-color: #fff;
  width: 100%;
  max-width: 576px;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_title-2 {
  color: var(--glemo-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_button {
  border: 2px solid var(--blue-violet);
  background-color: #5641f8;
  border-radius: 100px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--glemo-blue);
  color: #252134;
  background-color: #fff;
  border-radius: 100px;
  font-weight: 400;
}

.arrow-down-hero-wrapp-copy-copy-copy {
  z-index: 1;
  background-color: var(--glemo-blue);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 40px;
  font-size: 16px;
  line-height: 1.2em;
  transition: all .2s;
  display: flex;
  position: relative;
}

.arrow-down-hero-wrapp-copy-copy-copy:hover {
  border: 1px solid var(--glemo-blue);
  background-color: var(--white);
  color: var(--black);
}

.h1-post {
  font-size: 60px;
}

.fs-cc-banner_text-link {
  text-decoration: underline;
}

.text-span {
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  display: inline-block;
}

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

.grid-2.main {
  margin-top: 10px;
}

.row-posts {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-68 {
  margin-top: 20px;
}

.html-embed {
  height: 110%;
  min-height: 510px;
}

.lable {
  position: absolute;
  inset: auto 0% 0%;
}

.image-post-wrapper {
  position: relative;
}

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

.category-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
  display: flex;
}

.dropdown-list-3 {
  background-color: var(--midnight-blue);
  border-radius: 10px;
}

.dropdown-list-3.w--open {
  background-color: #16133cc2;
  border-radius: 8px;
}

.dropdown-toggle {
  color: var(--white);
  padding-left: 0;
  padding-right: 20px;
}

.dropdown-toggle.w--open {
  color: var(--white);
}

.icon-3 {
  margin-right: 0;
}

.icon-navdrop.in {
  z-index: 20;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-right: 0;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 12px;
  transform: rotate(-90deg);
}

.dropdown-2 {
  display: block;
}

.links {
  color: #424242;
  cursor: pointer;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: 16px;
  transition: background-color .2s, color .2s;
}

.links.w--current {
  padding-left: 1em;
  padding-right: 1em;
}

.links.nav {
  text-transform: none;
  height: 100%;
  min-height: 80px;
  max-height: 80px;
  padding: 1em;
  font-size: 16px;
  line-height: 1em;
  display: flex;
}

.links.nav.dropdown {
  padding-right: 1.5em;
}

.links.nav.menu-children {
  color: #fff;
  text-transform: none;
  background-color: #0000;
  border-radius: 4px;
  min-height: 40px;
  padding: 1em;
}

.links.nav.menu-children:hover {
  color: var(--glemo-blue);
  border-radius: 0;
}

.icon-4 {
  color: var(--gainsboro);
  margin-right: 0;
  font-size: 12px;
}

.link-nav-title {
  cursor: pointer;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  transition: background-color .2s, color .2s;
}

.link-nav-title.w--current {
  background-color: #ffdf1f;
  padding-left: 1em;
  padding-right: 1em;
}

.link-nav-title.drop {
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.link-nav-title.drop.w--open {
  box-shadow: inset 0 -4px #003876;
}

.link-nav-title.drop.child {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.link-nav-title.drop.child:hover {
  color: var(--glemo-blue);
}

.link-nav-title.drop.child.w--open {
  box-shadow: none;
}

.drop-tree-wrapp-2 {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  padding-left: 0;
  line-height: 1.2;
  position: relative;
}

.drop-tree-wrapp-2.child, .drop-tree-wrapp-2.main {
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
}

.nav-link-propdown {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-link-propdown:hover {
  color: var(--glemo-blue);
}

.nav-link-propdown.w--current {
  color: #111;
  border-bottom: 1px solid #111;
}

.nav-link-propdown.w--open {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
}

.dropdown-list-tree-3 {
  background-color: #503e98;
  border-radius: 8px;
  padding: 18px 0 0;
  top: 0;
  right: -100%;
}

.dropdown-list-tree-3.w--open {
  border: 1px solid var(--blue-violet);
  text-transform: none;
  background-color: #784dff1a;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  top: 100%;
  left: 0;
  box-shadow: 5px 5px 11px #0000001c;
}

.dropdown-list-tree-3.childe {
  color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 0;
  top: 100%;
  left: 0;
  right: auto;
}

.dropdown-list-tree-3.childe.w--open {
  width: auto;
  top: 0%;
  left: 100%;
}

.post-ecscerpt {
  margin-bottom: 0;
  font-size: 16px;
}

.div-block-69 {
  z-index: 0;
  justify-content: flex-end;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.post-block {
  transform-style: preserve-3d;
  position: relative;
}

.post-block:hover {
  transform: rotateX(-30deg)rotateY(0)rotateZ(0)translate(0, -5px);
}

.arrow-down-copy {
  color: var(--white);
  background-image: url('../images/plus-big-2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 20px;
  height: 22px;
}

.arrow-down-copy.small {
  width: 20px;
  height: 20px;
}

.arrow-down-copy.position {
  z-index: 10;
  position: absolute;
  inset: auto .5rem .5rem auto;
}

.background-video {
  width: 100%;
  height: 100vh;
  font-family: Muli, Arial, sans-serif;
}

.play-pause-button {
  inset: 0%;
}

.play-pause-button.play-wrapp {
  position: static;
  inset: 0%;
}

.div-block-70 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.play-state {
  background-image: url('../images/play-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-11 {
  color: #0000;
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 0;
  height: 0;
  display: none;
}

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

.section-2 {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 140px;
  display: flex;
}

.video {
  margin-left: 5%;
  margin-right: 5%;
}

.grid-background {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .05;
  grid-template: ". . . . ."
  / 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100vh;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
  position: fixed;
}

.div-grid-bg {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.div-content-media {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 100px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.centrado {
  text-align: center;
  text-transform: none;
  font-family: Muli, Arial, sans-serif;
  font-size: 60px;
  font-weight: 600;
}

.heading-3 {
  text-transform: none;
  font-family: Muli, Arial, sans-serif;
  font-weight: 200;
}

.div-options-hardware {
  grid-column-gap: 16px;
  grid-row-gap: 4px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.arrow-3 {
  opacity: 0;
  width: 12px;
  height: 12px;
  position: absolute;
  inset: 34px 0% 0% auto;
}

.section-project {
  z-index: 1;
  padding-top: 120px;
  position: relative;
}

.div-technology-container {
  cursor: pointer;
  background-color: #181818;
  padding: 30px 50px 10px 40px;
  position: relative;
}

.div-testimoninal {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  border: 3px solid #181818;
  grid-template: ". ."
                 ". ."
                 ". ."
                 / auto 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  margin-bottom: 4px;
  padding: 30px 40px 40px;
  display: grid;
}

.grande {
  opacity: .9;
  font-size: 20px;
  line-height: 24px;
}

.png-tec-base {
  opacity: 0;
  left: -10%;
}

.png-tec-base._2, .png-tec-base._1, .png-tec-base._4, .png-tec-base._5, .png-tec-base._3 {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.h4-technology {
  color: #4451f6;
  margin-bottom: 40px;
}

.grid-project-ci {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 100px;
  grid-template: ". . . . ."
                 ". . . . ."
                 ". . . . ."
                 / 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  position: relative;
}

.bar-flag {
  opacity: .2;
  background-color: #fff;
  height: 1px;
}

.quote-icon {
  width: 30px;
}

.text-small {
  z-index: 1;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Muli, Arial, sans-serif;
  font-size: 12px;
  font-weight: 200;
  position: relative;
}

.text-small.click-me {
  opacity: .2;
  position: absolute;
  inset: 30px 20px auto auto;
}

.text-small.role {
  opacity: .4;
  line-height: 16px;
}

.div-png-tec-responsive {
  z-index: 0;
  margin-top: 40px;
  display: none;
  position: relative;
  overflow: hidden;
}

.paragraph-options {
  opacity: .3;
}

.heading-4 {
  position: relative;
}

.div-background-interaction {
  background-color: var(--glemo-blue);
  height: 60px;
  position: absolute;
  inset: 60px 0% 0%;
}

.div-title-project-technology {
  flex-direction: column;
  justify-content: center;
  align-self: start;
  align-items: stretch;
  display: flex;
  position: sticky;
  top: 15%;
}

.grid-project-technology {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template: ". . . . ."
  / 1fr 1fr 1fr 1fr 1fr;
  margin-left: 10%;
  margin-right: 10%;
  position: relative;
}

.text-title-small {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.heading-2-projects {
  z-index: 1;
  margin-top: auto;
  margin-bottom: auto;
  font-family: Muli, Arial, sans-serif;
  font-weight: 500;
  line-height: 60px;
}

.div-title-project {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 25%;
}

.div-title-project.ideas {
  display: none;
}

.div-picture-testimonial {
  filter: grayscale();
  background-image: url('../images/232ae1d8-8fe6-41c3-a1c5-a029dc37b8fb-1.png');
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 100px;
  align-self: center;
  width: 80px;
  height: 80px;
}

.div-picture-testimonial._2 {
  background-image: url('../images/download-3.jpeg');
  background-position: 50%;
  background-size: cover;
  align-self: center;
}

.div-png-tec {
  z-index: 0;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.div-conteiner-titles {
  height: 60px;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
}

.div-bg-box {
  z-index: 2;
  background-color: #4451f6;
  position: absolute;
  inset: 0%;
}

.margin-bottom-2, .margin-bottom-2.margin-large {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom-2.margin-xsmall {
  margin-top: 100px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
}

.margin-bottom-2.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.card_job {
  width: 14.6875rem;
}

.card_job.is-singapore {
  position: absolute;
  bottom: 14.25rem;
  right: 9.5rem;
}

.card_job.is-la {
  position: absolute;
  top: 8.675rem;
  left: 4.7rem;
}

.card_job.is-la.hide-tablet.is-br {
  top: 19.2rem;
  left: 13.9rem;
}

.card_job.is-barcelona {
  position: absolute;
  top: 5.75rem;
  right: 32rem;
}

.card_job.is-barcelona.hide-tablet {
  top: 2rem;
}

.card_job.is-cape {
  position: absolute;
  bottom: 7.75rem;
  right: 26.5rem;
}

.card_job.is-cape.hide-tablet {
  bottom: 13.2rem;
}

.map_lottie {
  width: 2.5rem;
  position: absolute;
  inset: 16% 51% auto auto;
}

.map_lottie.is-singapore {
  top: auto;
  bottom: 30%;
  right: 22%;
}

.map_lottie.is-cape {
  top: 8px;
  bottom: 11%;
  right: 37%;
}

.map_lottie.is-la {
  top: 36%;
  left: 15%;
  right: auto;
}

.map_lottie.is-la.is-br {
  top: 68%;
  left: 34%;
}

.text-align-center {
  text-align: center;
  font-family: Muli, Arial, sans-serif;
  font-size: 24px;
  font-weight: 200;
}

.text-align-center.title {
  margin-top: 0;
  font-size: 60px;
  font-weight: 600;
}

.padding-global {
  background-image: linear-gradient(180deg, black, #87878700 53%, var(--midnight-blue));
  margin-top: 0;
  padding-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.container-medium {
  width: 100%;
  max-width: 74.5rem;
  margin-left: auto;
  margin-right: auto;
}

.map_wrapper {
  position: relative;
}

.map_image {
  opacity: 1;
}

.padding-section-medium {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.bold-text {
  align-self: center;
  font-family: Muli, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.header_component {
  z-index: 2;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding-top: 0;
  display: flex;
  position: relative;
}

.section_header {
  position: relative;
}

.header_background {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header_background-image {
  opacity: .4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-size-regular {
  font-size: 1rem;
}

.text-size-regular.text-color-grey {
  font-family: Muli, Arial, sans-serif;
}

.text-size-regular.text-color-grey.text-align-center {
  font-weight: 300;
}

.container-large {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ellipse_header {
  z-index: 0;
  filter: blur(80px);
  mix-blend-mode: hard-light;
  background-image: linear-gradient(315deg, #0163ff, #01bcfd);
  border-radius: 700px;
  width: 42rem;
  height: 42rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.button-wrapper {
  display: inline-block;
  position: relative;
}

.button-particles {
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
  border-radius: 200px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.eyebrow_wrapper {
  z-index: 2;
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  background-color: #141414;
  border: 1px solid #f6f8fa26;
  border-radius: 200px;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .625rem .5rem .5rem;
  display: inline-flex;
}

.margin-top-2, .margin-top-2.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

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

.button-particles_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overlay_black-gradient {
  background-image: linear-gradient(#14141400, #000);
  width: 100%;
  height: 18rem;
  position: absolute;
  inset: auto 0% 0%;
}

.overlay_black-gradient.top {
  -webkit-text-stroke-color: var(--white-2);
  background-image: linear-gradient(#000, #14141400);
  inset: 0% 0% auto;
}

.button-2 {
  z-index: 1;
  color: #f6f8fa;
  text-align: center;
  background-color: #1b1b1b;
  border: 1px #000;
  border-radius: 200px;
  padding: .75rem 1.5rem;
  font-size: 1.125rem;
  text-decoration: none;
  transition: box-shadow .25s;
  position: relative;
}

.button-2:hover {
  box-shadow: none;
}

.gradient_hue {
  z-index: 3;
  mix-blend-mode: color;
  background-image: linear-gradient(156deg, #69fadd, #8a84e2 70%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.div-bar-input {
  z-index: 2;
  background-color: #ffffff1a;
  align-items: center;
  width: auto;
  margin-left: 16px;
  padding: 4px 10px;
  display: flex;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.grid-generative-design {
  grid-column-gap: 0px;
  grid-row-gap: 4px;
  grid-template: "."
                 "."
                 / 1fr minmax(0, 4px) 1fr minmax(0, 4px) 1fr;
  grid-auto-flow: column;
  margin-bottom: 0;
  margin-left: 5%;
  margin-right: 5%;
  position: relative;
}

.h4-cs {
  color: #5f67f9;
}

.h4-cs._2 {
  color: #10b976;
}

.h4-cs._4 {
  color: #f9a95f;
}

.h4-cs._3 {
  color: #ddd596;
}

.grid-parameters {
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / auto;
  width: 100%;
}

.grid-parameters._4 {
  grid-column-gap: 0px;
  grid-row-gap: 4px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / auto;
}

.grid-parameters._1, .grid-parameters._3 {
  grid-column-gap: 0px;
  grid-row-gap: 4px;
  grid-template: "."
                 "."
                 "."
                 "."
                 / auto;
}

.grid-parameters._2 {
  grid-column-gap: 0px;
  grid-row-gap: 4px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / auto;
}

.div-content-gd {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.div-circle-inside {
  background-color: #fff;
  width: 4px;
  margin-right: 20px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.div-circle-inside.yellow {
  background-color: #cad36e;
}

.div-circle-inside.pink {
  background-color: #ff75f1;
}

.div-circle-inside.red {
  background-color: #ff595c;
}

.div-circle-inside.blue {
  background-color: #4a98ff;
}

.div-circle-inside.purple {
  background-color: #5f67f9;
}

.text-bg {
  z-index: 0;
  opacity: .05;
  color: #fff;
  justify-content: flex-end;
  align-self: center;
  width: 100%;
  font-size: 160px;
  line-height: 200px;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
}

.grid-colors {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template: ". ."
                 ". ."
                 ". ."
                 / auto 1fr;
  width: 100%;
  margin-top: 30px;
}

.grid-colors._3 {
  grid-template-rows: auto auto auto;
  grid-template-areas: ". ."
                       ". ."
                       ". .";
}

.grid-colors._4 {
  grid-template-rows: auto auto;
  grid-template-areas: ". ."
                       ". .";
}

.section-design {
  z-index: 1;
  margin-bottom: 140px;
  padding-top: 120px;
  position: relative;
}

.div-card-gd {
  z-index: 1;
  background-color: #181818;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 400px;
  padding: 30px 30px 10px;
  display: flex;
  position: relative;
}

.div-card-gd._3 {
  background-image: url('../images/20251113_0830_Futuristic-Digital-Globe_simple_compose_01k9yfmvnzfm69d911sct3jb5a_11zon.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-card-gd._2 {
  background-image: url('../images/20251113_0824_Intelligent-Growth-Vibes_simple_compose_01k9yf9t0bekna4d89c1wskcvd_11zon.webp');
  background-position: 50%;
  background-size: cover;
}

.div-card-gd._4 {
  background-image: url('../images/20251113_0838_Glowing-Compass-Icon_simple_compose_01k9yg10h2f7jb246x6bygt9kk_11zon.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-card-gd._5 {
  background-image: url('../images/20251113_0827_Topografia-Abstrata-Vibrante_simple_compose_01k9yffmpsfc7tsk4akrqv1pq0-1.png');
  background-position: 50%;
  background-size: cover;
}

.div-card-gd._6 {
  background-image: url('../images/20251113_0839_Golden-Gift-Radiance_simple_compose_01k9yg49sve3nv4mjfqrkaw2kb.png');
  background-position: 50%;
  background-size: cover;
}

.div-card-gd._7 {
  background-image: url('../images/20251113_0839_Holographic-Icon-Display_simple_compose_01k9yg4h6hejcr40asj580nw0a_11zon.webp');
  background-position: 50%;
  background-size: cover;
}

.grid-case-study {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template: ". . . . ."
                 ". . . . ."
                 / 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  margin-bottom: 200px;
  margin-left: 10%;
  margin-right: 10%;
  position: relative;
}

.text-io {
  z-index: 1;
  color: #fff9;
  letter-spacing: 4px;
  text-transform: uppercase;
  align-self: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Muli, Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  position: relative;
}

.background-gd-card {
  z-index: 0;
  opacity: 0;
  background-color: #181818;
  position: absolute;
  inset: 0%;
}

.div-color {
  background-color: #181818;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 30px;
  display: flex;
  position: relative;
}

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

.div-content-case-study {
  flex-direction: column;
  justify-content: center;
  align-self: start;
  align-items: flex-start;
  display: flex;
  top: 25%;
}

.gif {
  border-radius: 1000px;
  align-self: start;
  width: 32vw;
  height: 32vw;
  display: block;
  position: sticky;
  top: 25%;
  box-shadow: 1px 1px 100px #a440c14d;
}

.div-inputoutput {
  background-color: #181818;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 16px 30px;
  display: flex;
  position: relative;
}

.color-2 {
  color: #4451f6;
  font-weight: 600;
}

.text-span-3 {
  color: #181818;
  background-color: #fff;
  margin-right: 12px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 16px;
  font-weight: 600;
}

.text-small-title-cs {
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
}

.div-content-card-gd {
  overflow: hidden;
}

.chart_embed {
  margin-bottom: 1.5rem;
}

.chart_code-source {
  width: 100%;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.section-media {
  z-index: 1;
  margin-top: 100px;
  position: relative;
}

.div-pictures {
  filter: none;
  cursor: pointer;
  background-image: url('../images/54551532411_c9223739e5_k.jpg');
  background-position: 50%;
  background-size: cover;
  position: relative;
}

.div-pictures._3 {
  background-image: url('../images/54551474902_368618b027_k.jpg');
}

.div-pictures._6 {
  background-color: #bfbfbf;
  background-image: url('../images/54555464612_d310552748_k_11zon.webp');
  background-position: 50%;
  background-size: cover;
}

.div-pictures._7 {
  background-image: url('../images/Imagem-do-WhatsApp-de-2025-04-03-às-09.41.50_e04b31b9.jpg');
  background-position: 50%;
  background-size: cover;
}

.div-pictures._4 {
  filter: none;
  background-image: url('../images/955a7ffa-ee19-46f6-9b12-4e5da2adf35d.jpg');
  background-size: contain;
  background-attachment: scroll;
}

.div-pictures._5 {
  background-image: url('../images/54551475132_920ab709a8_k.jpg');
  background-size: cover;
}

.div-pictures._8 {
  background-image: url('../images/54552349596_7d548f9e07_k.jpg');
  background-size: cover;
}
.div-pictures._9 {
  background-image: url('../images/imgInc1.jpg');
  background-size: cover;
}

.grid-media {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template: ". . . . . . . . ." 140px
                 ". . . . . . . . ." 30px
                 ". . . . . . . . ." minmax(100px, 1fr)
                 ". . . . . . . . ." minmax(100px, 1fr)
                 ". . . . . . . . ." 100px
                 ". . . . . . . . ." 100px
                 ". . . . . . . . ." 100px
                 ". . . . . . . . ." 100px
                 / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  min-height: 95vh;
  margin-bottom: 160px;
  margin-left: 10%;
  margin-right: 10%;
  position: relative;
}

.div-bg-pictures {
  opacity: 0;
  background-color: #4451f64d;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.heading-5 {
  font-family: Muli, Arial, sans-serif;
}

.first-button {
  background-color: #181818;
  align-items: center;
  margin-top: 10px;
  padding-right: 20px;
  display: flex;
}

.div-left-first-button {
  background-color: var(--glemo-blue);
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 44px;
  margin-right: 20px;
  display: flex;
}

.image {
  width: 0;
  height: 20px;
}

.text-button {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.bold-text-2 {
  text-align: left;
}

.pink {
  color: #e95d90;
}

.experience-block {
  padding-right: 48px;
}

.wrapper-2 {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.green {
  color: #3cc74e;
}

.blue-2 {
  color: #609bff;
}

.number-2 {
  color: #8491a0;
  margin-bottom: 8px;
  font-size: 117px;
  font-weight: 400;
  line-height: 100%;
  display: block;
}

.heading_55px {
  color: #fff;
  width: 100%;
  max-width: 780px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Muli, Arial, sans-serif;
  font-size: 55px;
  line-height: 110%;
  display: inline-block;
}

.paragraph_16px {
  color: #fff;
  margin-bottom: 0;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

.experience-section {
  padding: 265px 72px 120px;
}

.heading_24px {
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Muli, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.overline_16px {
  color: var(--white);
  margin-bottom: 8px;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.experience-grid {
  grid-column-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.logo-bar-section {
  overflow: hidden;
}

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

.logo-box {
  border: 1px solid #181823;
  justify-content: center;
  align-items: center;
  width: 24vw;
  height: 140px;
  display: flex;
}

.animated-link-button {
  color: #181823;
  border-bottom: 1px solid #5b6876;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.165, .84, .44, 1), padding .35s cubic-bezier(.165, .84, .44, 1), background-color .35s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.animated-link-button:hover {
  color: #fff;
  background-image: linear-gradient(#5221e6, #5221e6);
  padding-left: 16px;
  padding-right: 16px;
}

.animated-link-button.white {
  color: #fff;
}

.normal-wrapper._120px-bottom_m {
  margin-bottom: 120px;
}

.paragraph_18px {
  color: #fff;
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18px.light-grey {
  color: #8491a0;
}

.paragraph_18px.light-grey._40px-bottom_m {
  margin-bottom: 40px;
  font-family: Muli, Arial, sans-serif;
}

.dribbble-image {
  background-image: url('../images/Dribbble.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 1024px;
  background-attachment: fixed;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 640px;
}

.dribbble-section {
  padding-top: 120px;
  padding-bottom: 120px;
  display: block;
}

.brower-bar {
  background-color: #181823;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  height: 37px;
  padding-left: 16px;
  display: flex;
}

.wrapper-v2 {
  width: 100%;
  max-width: 1076px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.heading_55px-2 {
  color: #fff;
  width: 100%;
  max-width: 780px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 55px;
  line-height: 110%;
  display: inline-block;
}

.heading_55px-2._24px-bottom {
  margin-bottom: 24px;
  font-family: Muli, Arial, sans-serif;
  font-size: 60px;
  font-weight: 600;
}

.dots {
  background-color: #8491a0;
  border-radius: 100px;
  width: 12px;
  height: 12px;
  margin-right: 6px;
}

.testimonial-sticky-block {
  position: sticky;
  top: 64px;
}

.wrapper-3 {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.heading_18px {
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.heading_18px.light-grey {
  color: #8491a0;
}

.heading_18px.light-grey._4px-bottom_m {
  color: var(--glemo-blue);
  margin-bottom: 4px;
  font-family: Muli, Arial, sans-serif;
}

.testimonial-block._120px-bottom_m {
  margin-bottom: 120px;
}

.heading_55px-3 {
  color: #fff;
  width: 100%;
  max-width: 780px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 55px;
  line-height: 110%;
  display: inline-block;
}

.heading_55px-3._24px-bottom {
  margin-bottom: 24px;
  font-family: Muli, Arial, sans-serif;
}

.testimonial-section {
  padding: 120px 72px;
}

.paragraph_16px-2 {
  color: #fff;
  margin-bottom: 0;
  font-family: Muli, Arial, sans-serif;
  font-size: 16px;
  line-height: 150%;
  text-decoration: none;
}

.testimonial-image-2 {
  object-fit: cover;
  border-radius: 4px;
  height: 360px;
}

.heading_24px-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

.heading_24px-2._64px-bottom_m {
  margin-bottom: 64px;
  font-family: Muli, Arial, sans-serif;
  font-weight: 400;
}

.testimonial-text {
  -webkit-text-stroke-color: var(--black);
  border: 1px solid #f5f5f500;
  padding: 64px;
}

.textblock {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
}

.textblock.left {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.splide__list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.splide__track {
  cursor: ew-resize;
}

.featured-icon {
  background-color: var(--glemo-blue);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.featured-icon.is-lime {
  background-color: #ff9a00;
}

.featured-icon.is-lime._5 {
  background-image: url('../images/Enviamos-o-comprador-qualificado-para-o-nosso-parceiro.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.featured-icon.is-green {
  background-color: #00baff;
}

.featured-icon.is-green._2 {
  background-image: url('../images/Parceiros-oriundos-das-vendas-de-imoveis.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.featured-icon.is-orange {
  background-color: #cccf0a;
}

.featured-icon.is-orange._4 {
  background-image: url('../images/Parceiros-oriundos-das-vendas-de-imoveis.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.featured-icon.is-blue {
  background-color: #00ffa2;
  background-image: url('../images/Comprador-busca---imoveis.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 32px;
}

.featured-icon.is-rose {
  background-color: #f15c00;
}

.featured-icon.is-rose._6 {
  background-image: url('../images/Aplicativos-sao-consumidos-pelos-parceiros-por-meio-do-marketplace-receita-recorrente.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.featured-icon._1 {
  background-image: url('../images/O-marketplace--é-nutrido-por-comunidade-web3-e-governado-por-token-DAO.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.heading-style-h2 {
  color: #f6f6f8;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h2.text-align-center {
  text-align: center;
  order: 0;
  align-self: center;
}

.features_item-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  padding: 2rem;
  display: flex;
}

.container-medium-2 {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-small {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  font-family: Muli, Arial, sans-serif;
}

.text-size-medium {
  font-size: 1.125rem;
}

.text-size-medium.text-color-grey.text-align-center {
  font-weight: 300;
}

.icon-1x1-regular {
  width: 1.5rem;
  height: 1.5rem;
}

.features_item {
  background-image: url('../images/blue.glemo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}

.features_item.is-rose {
  background-image: url('../images/orange.glemo.svg');
}

.features_item.is-lime {
  background-image: url('../images/lightorange.glemo.svg');
}

.features_item.is-green {
  background-image: url('../images/lgihtblue.glemo.svg');
}

.features_item.is-blue {
  background-image: url('../images/green.glemo.svg');
}

.features_item.is-orange {
  background-image: url('../images/yellow.glemo.svg');
}

.heading-style-h5 {
  text-transform: none;
  font-family: Muli, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.padding-section-medium-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 0;
  display: flex;
}

.stats_item-number {
  color: var(--blue-violet);
  text-align: center;
  font-family: Muli, Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
}

.stats_item-title {
  color: var(--white);
  text-align: center;
  font-family: Muli, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}

.stats_group {
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.background-style-2 {
  background-image: url('../images/raster.svg'), radial-gradient(circle closest-corner, #171717, #131314 20%, #111112 40%, #141315 60%, #151517 80%, #171717 97%, #171717);
  background-position: 50%, 0 0;
  background-size: cover, auto;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.stats_inner {
  border: 2px solid #262626;
  border-radius: 2rem;
  padding: 3rem;
}

.stats_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.padding-section-medium-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: block;
}

.hero_content-bottom {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  height: 80vh;
  margin-bottom: -10vh;
  display: flex;
  position: sticky;
  top: 10vh;
}

.hero_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

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

.lightbox-play-icon {
  z-index: 2;
  color: #fff;
  width: 64px;
  height: 64px;
  position: absolute;
}

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  background-image: none;
  background-size: auto;
  border-radius: 15px;
  position: absolute;
  inset: 0%;
}

.heading-6 {
  text-align: left;
  width: 50%;
  font-family: Muli, Arial, sans-serif;
  font-size: 60px;
  font-weight: 600;
}

.image-overlay-layer {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.starbucks-logo {
  width: 100%;
  min-width: 150px;
  min-height: 150px;
  margin-bottom: 1rem;
}

.header-hero-vertical-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 90vh;
  max-height: 60rem;
  display: flex;
}

.social-grid-child {
  background-color: #8080804f;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
}

.grid-fifty-child {
  display: flex;
}

.mgm-app-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: static;
  top: -30rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.text-color-black {
  color: #000;
}

.panel-current {
  background-color: #8080804f;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 8%;
}

.panel-current.ag-bg {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ag-kelly-current.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.panel-current.axacraft-bg {
  background-image: linear-gradient(#0009, #0009), url('../images/axacraft-kelly-current.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-starbucks-china-innovation {
  background-color: #0000;
}

.nyt-logo {
  max-width: 170px;
}

.section-starbucks-china-intro {
  background-color: #0000;
}

.geekwire-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #8080804f;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 10%;
  display: grid;
}

.logo4_list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
}

.section-china-roastery {
  background-color: #0000;
}

.main-wrapper {
  padding-left: 5%;
  padding-right: 5%;
}

.h2-small {
  font-size: 2rem;
}

.footer7_credit-text {
  color: #b1b1b1;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .575rem;
}

.h3-centered {
  text-align: center;
}

.h3-centered.h3-large {
  font-size: 3rem;
}

.single-panel-text-split-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #8080804f;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 10%;
  display: grid;
}

.single-panel-text-split-wrapper.bg-purple {
  background-color: #4a57f5;
}

.full-width-image-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.img_100 {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.img_100._10_radius {
  border-radius: 10px;
  height: auto;
}

.img_100.less-rounded {
  border-radius: 10px;
}

.img_100.padding-below {
  margin-bottom: 4%;
}

.h1-white {
  color: #fff;
}

.mgm-app-background {
  background-image: url('../images/original_open-uri20131119-23818-yd33yv.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.max-width-hero-text-wrapper {
  width: 100%;
  max-width: 55rem;
}

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

.curiousoffice-child {
  display: flex;
}

.curiousoffice-child.left {
  padding-right: 15%;
  display: block;
}

.panel-rounded-main {
  background-color: #8080804f;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 10% 20%;
}

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

.line-divider {
  background-color: #0000;
  width: 100%;
  height: 1px;
}

.container-large-3 {
  width: 100%;
  max-width: 1140rem;
  margin-left: auto;
  margin-right: auto;
}

.section-international-products {
  background-color: #0000;
}

.link-2 {
  color: #0a0a0a;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: underline;
}

.link-2.text-color-white:hover {
  color: silver;
}

.page-wrapper-2 {
  color: #0000;
}

.section-mgm-wsj {
  background-color: #0000;
}

.button-link {
  color: #fff;
  background-color: #0000;
  align-items: center;
  padding: .25rem 0;
  line-height: 1;
  display: flex;
}

.button-link.with-icon {
  color: #fff;
}

.button-link.with-icon.text-color-purple {
  color: #03f;
}

.mgm-entertainment-app-img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.margin-top-3.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.img-curious-logos {
  width: 100%;
  max-width: 100%;
}

.kelly-smith-hero-image {
  object-fit: cover;
  background-image: linear-gradient(#000, #fff);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.single-panel-text-split-child {
  display: flex;
}

.single-panel-text-split-child.left {
  padding-right: 15%;
  display: block;
}

.text-weight-semibold {
  color: #bdbdbd;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .8rem;
  font-weight: 600;
}

.text-weight-semibold.text-color-dark-grey {
  color: #69645e;
}

.section-mgm-intro {
  background-color: #0000;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.link-curious-office {
  display: inline-block;
}

.cta4_background-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.footer7_bottom-wrapper {
  justify-content: center;
  display: flex;
}

.geekwire-child {
  display: flex;
}

.geekwire-child.left {
  padding-right: 15%;
  display: block;
}

.footer7_link {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.footer7_link:hover {
  color: #a1a1a1;
}

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

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.paragraph-centered-large {
  text-align: center;
}

.paragraph-centered-large.text-color-white {
  font-size: 1.8rem;
  line-height: 1.2;
}

.footer7_component {
  background-color: #8080804f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.container-small-centered {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.china-digital-partner-logos {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 80%;
  margin-top: 4%;
}

.text-color-light-purple {
  color: #b4b9f6;
}

.nyt-article-link {
  color: #f5534a;
  margin-top: 5%;
  text-decoration: underline;
}

.full-image-tall-panel {
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 5%;
}

.full-image-tall-panel.bg-mgm-wsj {
  background-image: linear-gradient(#00000091, #00000091), url('../images/julian-paefgen-uxU_jyu9e7U-unsplash.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  min-height: 800px;
  display: flex;
}

.full-image-tall-panel.bg-starbucks-china {
  background-image: linear-gradient(#00000087, #00000087), url('../images/starbucks-china.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 14%;
  padding-bottom: 14%;
}

.full-image-tall-panel.bg-starbucks-china-2 {
  background-image: linear-gradient(#00000075, #00000075), url('../images/starbucks-china-roastery-app.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 14%;
  padding-bottom: 14%;
}

.full-image-tall-panel.bg-starbucks-china-roastery {
  background-image: linear-gradient(#0000007a, #0000007a), url('../images/leed-exterior-facade-of-starbucks-reserve-roastery-shanghai.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 14%;
  padding-bottom: 14%;
}

.full-image-tall-panel.bg-starbucks-international-products {
  background-image: linear-gradient(#0000007d, #0000007d), url('../images/shanghai-starbucks-vp-international-hero-image.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 14%;
  padding-bottom: 14%;
}

.logo6_wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: .875rem;
  display: flex;
}

.panel-rounded-centered-main {
  background-color: #8080804f;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10%;
  display: flex;
}

.panel-rounded-centered-main.bg-starbucks {
  background-color: #4e412d;
  padding-top: 13%;
  padding-bottom: 13%;
}

.padding-bottom, .padding-bottom.padding-xlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

._100-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex_right_wrapper {
  justify-content: flex-end;
  display: flex;
}

.panel-rounded-intro {
  text-align: center;
  background-color: #8080804f;
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  padding: 5% 20% 10%;
}

.social-link-break {
  background-color: #8080804f;
  height: 1px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.curiousoffice-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ebe8e0;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 10%;
  display: grid;
}

.button-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

.logo6_logo {
  max-height: 3.5rem;
}

.full-image-panel {
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  padding: 5%;
}

.full-image-panel.bg-defender {
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/hagerty-classic-car-insurance-land-rover.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 10%;
  padding-bottom: 10%;
}

.full-image-panel.bg-mgm {
  background-image: linear-gradient(#0000008c, #0000008c), url('../images/park_mgm_las_vegas.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.full-image-panel.bg-nyse {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/1638808103166.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 8%;
  padding-bottom: 8%;
}

.full-image-panel.bg-porsche {
  background-image: linear-gradient(#0000007d, #0000007d), url('../images/classic-bahama-yellow-porsche.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 8%;
  padding-bottom: 8%;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.wsj-logo {
  width: 250px;
}

.container-2 {
  width: 100%;
  max-width: 1140px;
  margin: 4rem auto;
}

.container-grid-fifty {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1140px;
  margin: 8rem auto;
  display: grid;
}

.container-grid-fifty.horizontal-center {
  place-content: stretch space-between;
  align-items: stretch;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.logo4_wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: .875rem;
  display: flex;
}

.paragraph-3, .heading-7, .bold-text-3, .bold-text-4 {
  color: var(--white);
}

.bold-text-5 {
  -webkit-text-stroke-color: var(--white);
}

.bold-text-6 {
  text-align: center;
  font-weight: 400;
}

.bold-text-6.center {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-71 {
  flex-flow: row;
  display: flex;
}

.container-3 {
  order: 0;
  align-self: center;
  width: 100%;
  max-width: 100%;
}

.image-13, .image-14, .image-15, .image-16 {
  width: 100%;
}

.container-4 {
  flex-flow: column;
  display: flex;
}

.bold-text-7 {
  font-weight: 400;
}

.timeline10_item {
  z-index: 2;
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  background-image: linear-gradient(45deg, #fff0, #ffffff70);
  border: 1px solid #e7eaee1c;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 12rem 1fr;
  grid-auto-columns: 1fr;
  padding: 2rem;
  display: flex;
  overflow: hidden;
}

.timeline10_item.is-alternate {
  background-color: var(--glemo-blue);
  box-shadow: 0 2px 5px #0003;
}

.timeline10_content {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
  position: relative;
}

.timeline10_list {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  display: grid;
}

.timeline-10-instructions-delete {
  z-index: 1;
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  position: relative;
}

.timeline10_circle {
  z-index: 2;
  background-color: var(--glemo-blue);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: .9375rem;
  height: .9375rem;
  margin-top: 3rem;
  box-shadow: 0 0 0 8px #fff;
}

.padding-global-2 {
  padding-left: 3%;
  padding-right: 3%;
}

.timeline1_instructions-list {
  padding-left: 1.25rem;
}

.timeline-heading {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.timeline-heading.text-color-white {
  color: var(--white);
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section_timeline {
  z-index: -3;
  background-color: var(--black);
}

.timeline10_progress {
  z-index: 0;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 100%;
  display: flex;
  position: absolute;
}

.text-size-tiny {
  color: #4b5563;
  font-size: .875rem;
}

.text-size-tiny.text-color-586174 {
  color: var(--white);
}

.text-size-tiny.text-color-white {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
}

.timeline10_progress-line-cover {
  z-index: 2;
  background-color: var(--black);
  color: var(--black);
  width: 100%;
  height: 50vh;
  position: absolute;
  top: -50vh;
}

.timeline10_progress-line {
  z-index: 0;
  background-color: var(--glemo-blue);
  width: 3px;
  height: 50vh;
  margin-top: -50vh;
  position: sticky;
  top: 0;
}

.styleguide_label {
  color: #1e51f7;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #ebeffa;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.text-size-medium-3 {
  font-size: 1.125rem;
}

.timeline1_instructions-list-item {
  padding-left: .5rem;
}

.timeline10_row {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.timeline10_fade-overlay-bottom {
  z-index: 1;
  background-image: linear-gradient(#fff0, #fff);
  width: 4px;
  height: 4rem;
  position: absolute;
  bottom: 0%;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.heading-style-h5-2 {
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
}

.heading-style-h5-2.z-index-2 {
  z-index: 2;
  position: relative;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.timeline10_line {
  background-color: #d9dadb;
  width: 3px;
  height: 100%;
}

.timeline10_circle-wrapper {
  z-index: 1;
  justify-content: center;
  width: 2rem;
  display: flex;
  position: relative;
}

.div-block-17 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--black);
  display: flex;
}

.timeline10_fade-overlay-top {
  z-index: 1;
  background-image: linear-gradient(#fff, #0000);
  width: 4px;
  height: 4rem;
  position: absolute;
}

.timeline10_empty-space {
  width: 100%;
}

.container-small-2 {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h6 {
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.heading-style-h6.text-color-db4729 {
  color: var(--white);
  font-size: 2rem;
}

.heading-style-h6.text-color-white {
  color: var(--white);
}

.container-large-4 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 40px;
  display: flex;
}

.image-cover {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 40px;
  height: 40px;
  display: block;
}

.div-block-72 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 40px;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .accordion {
    width: 100%;
  }

  .glur-wrapp, .cube {
    position: absolute;
  }

  .checkbox-image.dm {
    width: 50px;
    padding-top: 9px;
  }

  .checkbox-image.dig {
    width: 33px;
  }

  .checkbox-image.m {
    padding-top: 10px;
  }

  .checkbox-image.f {
    width: 27px;
  }

  .cube_sectionr {
    z-index: -10;
    position: absolute;
  }

  .link-nav-title {
    font-size: 18px;
  }

  .link-nav-title.drop:hover, .link-nav-title.drop.w--open {
    color: #252134;
    background-color: #0000;
  }

  .link-nav-title.drop.child.w--open {
    background-color: #003876;
  }

  .drop-tree-wrapp-2:hover, .nav-link-propdown:hover {
    background-color: #0000;
  }

  .section-2 {
    padding-top: 100px;
  }

  .video {
    border-radius: 0;
  }

  .paragraph-options {
    opacity: .37;
  }

  .margin-bottom-2.margin-xsmall._2 {
    margin-bottom: 60px;
  }

  .map_image {
    opacity: 1;
  }

  .section-design {
    padding-top: 0;
  }

  .div-pictures {
    filter: none;
  }

  .div-pictures._6 {
    filter: none;
    background-image: url('../images/9fb5da23-7e34-4138-b9a3-fb7e16e868bc.jpg');
  }

  .div-pictures._7 {
    background-image: url('../images/54551474902_368618b027_k.jpg');
  }

  .div-pictures._4 {
    filter: none;
    background-size: cover;
  }

  .div-pictures._5 {
    filter: none;
    background-image: url('../images/17e7751b-aa12-4232-9e8b-81040cab34e2.jpg');
  }

  .div-pictures._8 {
    filter: none;
    background-image: url('../images/955a7ffa-ee19-46f6-9b12-4e5da2adf35d.jpg');
  }
   .div-pictures._9 {
    filter: none;
    background-image: url('../images/imgInc1.jpg');
  }
}

@media screen and (min-width: 1440px) {
  .mask-2 {
    position: static;
    overflow: hidden;
  }

  .checkbox-image.dm {
    width: 50px;
    padding-top: 9px;
  }

  .checkbox-image.dig {
    width: 33px;
  }

  .checkbox-image.m {
    padding-top: 10px;
  }

  .checkbox-image.f {
    width: 27px;
  }

  .form-wrapper {
    position: static;
  }

  .link-2 {
    margin-bottom: 5px;
    font-size: 1.3em;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 1vw;
    line-height: 1.4em;
  }

  .section {
    margin-left: 20%;
    margin-right: 4%;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .section.hero.black-violet-section {
    align-items: flex-end;
  }

  .section.bg-white.round-border {
    margin-left: 20%;
    margin-right: 10%;
  }

  .section._0pad.main-image {
    margin-left: 0;
    margin-right: 0;
    padding-right: 0%;
  }

  .wrapper.auto._10.bg-white.info-list {
    padding-bottom: 40px;
  }

  .row.flex-horizontal {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    justify-content: space-between;
  }

  .button.ghost.text-white.w--current {
    background-color: var(--glemo-blue);
    color: var(--black);
    background-image: url('../images/button-arrow-black.svg');
  }

  .navbar.fixed {
    padding-right: 4%;
  }

  .form-field::placeholder {
    color: var(--glemo-blue);
    background-image: none;
  }

  .nav-bar {
    position: fixed;
    inset: 0% 0% auto;
  }

  .nav-link.cta {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .form-with-button.horizontal {
    flex-direction: row;
  }

  .side-image {
    height: 20vw;
  }

  .main-line {
    margin-bottom: 40px;
  }

  .short-paragraph-hero {
    max-width: 500px;
    font-size: 24px;
  }

  .h1-hero-title {
    font-size: 70px;
  }

  .portfolio-card-link-image {
    position: static;
  }

  .card-wrapp.block-post._50 {
    width: 49%;
  }

  .text-block-3 {
    flex-direction: row;
  }

  .border-line-btm {
    background-color: #252134;
  }

  .accordion-content__inner-wrap.small {
    padding-left: 1em;
  }

  .accordion-trigger {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .down-page-wrapp-copy {
    border: 1px solid var(--glemo-blue);
    border-radius: 50%;
  }

  .gradient-blur {
    background-image: radial-gradient(circle at 0 0, #120d4b, #0000 70%, #0000);
  }

  .div-block-61 {
    padding-top: 60px;
  }

  .project-link {
    margin-left: 20px;
    margin-right: 0;
  }

  .cube-wrapper {
    height: 80vh;
    top: -8%;
    left: 16%;
  }

  .cube-wrapper.right {
    top: 31%;
  }

  ._3dhexaback {
    width: 1000px;
    height: 1000px;
    transform: translate3d(0, 0, -500px)rotateX(0)rotateY(180deg)rotateZ(0);
  }

  ._3dhexatop {
    width: 1000px;
  }

  .cube-front-side {
    background-image: linear-gradient(238deg, #292558cc, #17171700 64%);
    width: 1000px;
    height: 1000px;
    transform: translate(500px)rotateX(0)rotateY(90deg)rotateZ(0);
  }

  ._3dhexaleft {
    width: 1000px;
    transform: translate(0)rotateX(0)rotateY(-90deg)rotateZ(0);
  }

  .cube-up-side {
    width: 1000px;
    height: 1000px;
    transform: translate(0, -500px)rotateX(90deg)rotateY(0)rotateZ(0);
  }

  .cube-left-side {
    width: 1000px;
    height: 1000px;
    transform: translate3d(0, 0, 500px);
  }

  .content-wrapp {
    justify-content: flex-start;
  }

  .cube {
    height: 90vh;
  }

  .showreal-wrapper {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .lainsoft-footer {
    padding: 140px 10% 140px 20%;
  }

  .form-multistep-full {
    max-width: 1000px;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    margin-left: 20px;
    margin-right: 0;
  }

  .fs-cc-components-2 {
    z-index: 99999999;
    position: fixed;
  }

  .fs-cc-prefs_close {
    justify-content: center;
    align-items: center;
  }

  .site-top__menu-right-container {
    font-size: 16px;
    display: flex;
  }

  .language-chooser.language-chooser-image.qtranxs_language_chooser {
    list-style-type: none;
  }

  .fs-cc-components {
    z-index: 99999999;
    position: fixed;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    margin-left: 0;
  }

  .links {
    border-color: #0003;
  }

  .links.w--current {
    border-color: #0000004d;
  }

  .links.nav {
    font-size: 18px;
  }

  .link-nav-title {
    border-color: #0003;
  }

  .link-nav-title.w--current {
    border-color: #0000004d;
  }

  .grid-generative-design {
    grid-template-rows: auto;
  }

  .div-card-gd._3 {
    background-image: url('../images/20251113_0830_Futuristic-Digital-Globe_simple_compose_01k9yfmvnzfm69d911sct3jb5a_11zon.webp');
    background-position: 50%;
    background-size: cover;
  }

  .div-card-gd._2 {
    background-image: url('../images/20251113_0824_Intelligent-Growth-Vibes_simple_compose_01k9yf9t0bekna4d89c1wskcvd_11zon.webp');
    background-position: 50%;
    background-size: cover;
  }

  .div-card-gd._4 {
    background-image: url('../images/20251113_0838_Glowing-Compass-Icon_simple_compose_01k9yg10h2f7jb246x6bygt9kk_11zon.webp');
    background-position: 50%;
    background-size: cover;
  }

  .div-card-gd._5 {
    background-image: url('../images/20251113_0827_Topografia-Abstrata-Vibrante_simple_compose_01k9yffmpsfc7tsk4akrqv1pq0-1_11zon.webp');
    background-position: 50%;
    background-size: cover;
  }

  .div-card-gd._6 {
    background-image: url('../images/20251113_0839_Golden-Gift-Radiance_simple_compose_01k9yg49sve3nv4mjfqrkaw2kb.png');
    background-position: 50%;
    background-size: cover;
  }

  .div-card-gd._7 {
    background-image: url('../images/20251113_0839_Holographic-Icon-Display_simple_compose_01k9yg4h6hejcr40asj580nw0a_11zon.webp');
    background-position: 50%;
    background-size: cover;
  }

  .background-gd-card {
    background-image: none;
    background-size: auto;
  }

  .background-gd-card._4 {
    background-image: none;
  }

  .div-pictures._7 {
    background-image: url('../images/Imagem-do-WhatsApp-de-2025-04-03-às-09.41.50_e04b31b9.jpg');
    background-position: 50% 0;
    background-size: cover;
  }

  .textblock.left {
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  .featured-icon {
    background-image: url('../images/O-marketplace--é-nutrido-por-comunidade-web3-e-governado-por-token-DAO.svg');
    background-position: 50%;
    background-repeat: no-repeat;
  }

  .heading-style-h2.text-align-center {
    text-align: center;
  }

  .container-small {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .geekwire-wrapper, .single-panel-text-split-wrapper {
    padding-bottom: 10%;
  }

  .h1-white.h1-centered {
    font-size: 5em;
  }

  .link-2 {
    font-size: 1.7em;
  }

  .mgm-entertainment-app-img {
    width: 100%;
  }

  .link-curious-office {
    display: inline-block;
  }

  .curiousoffice-wrapper {
    padding-bottom: 10%;
  }

  .background-video-2 {
    width: 80%;
  }

  .background-video-3 {
    width: 100%;
  }
}

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

  h2 {
    font-size: 40px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.grid {
    margin-left: 0;
    margin-right: 0;
  }

  .section.full-screen {
    min-height: 800px;
  }

  .section.wider-padding {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.half-screen-background-image, .section.half-screen-background-image.right {
    background-size: 48%;
  }

  .section.no-vertical-padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.page-header {
    padding-top: 140px;
  }

  .section.hero {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .section.hero.black-violet-section.page {
    padding-top: 180px;
  }

  .section.hero.black-violet-section.post {
    padding-top: 100px;
  }

  .section.bg-white.round-border {
    margin-bottom: 60px;
    margin-left: 100px;
  }

  .wrapper.space-around {
    flex-wrap: wrap;
  }

  .wrapper.navbar-latinsoft {
    flex-direction: row;
    width: 100%;
    padding-left: 0;
    display: flex;
  }

  .wrapper.lg-negative-margins {
    margin-top: 0;
    margin-bottom: 0;
  }

  .wrapper.navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .wrapper.auto._10.bg-white.info-list {
    padding: 20px;
  }

  .grid {
    flex-flow: wrap;
    place-content: stretch space-between;
    align-items: stretch;
    height: 100vh;
  }

  .block {
    flex: 0 0 100%;
    align-self: stretch;
    width: auto;
    min-height: auto;
  }

  .block.mobile {
    flex-basis: 25%;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .col {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .col.lg-4 {
    width: 50%;
  }

  .col.lg-4.align-bottom.md-4 {
    width: 100%;
  }

  .col.lg-4.flex-stretch.md-4 {
    flex-wrap: nowrap;
  }

  .col.lg-4.md-4 {
    width: 100%;
  }

  .col.lg-4.md-3 {
    width: 75%;
  }

  .col.lg-4.md-33 {
    width: 33.33%;
  }

  .col.lg-4.lp0 {
    padding-left: 0;
  }

  .col.lg-3 {
    flex-wrap: nowrap;
    width: 33.33%;
  }

  .col.lg-3._1-col-in-mobile {
    width: 25%;
  }

  .col.lg-3._2-col-in-mobile {
    width: 50%;
  }

  .col.lg-3.md-4 {
    width: 100%;
  }

  .col.lg-3.md-2 {
    width: 50%;
  }

  .col.lg-3.no-padding {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-3.hidden-md-down {
    display: none;
  }

  .col.lg-3.md-1 {
    width: 25%;
  }

  .col.lg-3.lp0.sticky {
    width: 100%;
    position: static;
  }

  .col.lg-1, .col.lg-1.empty, .col.lg-1.hidden-lg-down {
    display: none;
  }

  .col.lg-6.centre-align-vertical.md-4.md-margin-bottom {
    margin-bottom: 40px;
  }

  .col.lg-6.centre-align-vertical.md-4.md-margin-bottom.md-centre-align {
    align-items: center;
  }

  .col.lg-6.md-3 {
    width: 75%;
  }

  .col.lg-6.md-4, .col.lg-6._100--tablet {
    width: 100%;
  }

  .col.lg-2.md-1 {
    width: 25%;
  }

  .col.lg-2.md-33 {
    width: 33.33%;
  }

  .col.lg-2.md-2 {
    width: 50%;
  }

  .col.lg-2.hidden-md-down {
    display: none;
  }

  .col.lg-2.md-4 {
    width: 100%;
  }

  .col.lg-5 {
    width: 50%;
  }

  .col.lg-5.md-4 {
    width: 100%;
  }

  .col.lg-5.md-3 {
    width: 75%;
  }

  .col.lg-5.padd-0.tablet100, .col.lg-8.md-4, .col.lg-9.md-1 {
    width: 100%;
  }

  .col.lg-10.md-2 {
    width: 50%;
  }

  .col.lg-11.md-3 {
    width: 75%;
  }

  .col.no-padding {
    padding: 0;
  }

  .paragraph-small.short-paragraph {
    width: 100%;
  }

  .row {
    flex-flow: wrap;
    justify-content: flex-start;
    margin-right: 0;
  }

  .row.flex-horizontal.blue.padding {
    margin-left: -20px;
    margin-right: -20px;
  }

  .row.flex-horizontal.no-bottom-margin {
    flex-wrap: wrap;
  }

  .row.no-bottom-margins {
    margin-bottom: 0;
  }

  .row.align-centre {
    justify-content: center;
  }

  .row.md-reverse-layout {
    flex-flow: column-reverse wrap;
  }

  .row.md-reverse-layout.md-centre-align {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .button {
    color: var(--black);
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar.fixed {
    flex-direction: column;
    padding-right: 0;
    display: flex;
  }

  .margin-bottom {
    margin-bottom: 40px;
  }

  .margin-bottom.md-centre-align {
    text-align: center;
  }

  .page-preview-link {
    height: 22px;
  }

  .price-table-container {
    text-align: center;
    margin-bottom: 30px;
  }

  .price-table-container.link {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-form-container.card {
    padding: 40px;
  }

  .service-icon {
    margin-right: 0;
    display: flex;
  }

  .service-icon._2 {
    display: flex;
  }

  .nav-menu-2 {
    background-color: var(--blue-violet);
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    max-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    position: absolute;
    overflow: auto;
  }

  .nav-link-latinsoft-web {
    text-align: center;
    flex: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 30px;
    font-weight: 400;
    display: block;
  }

  .nav-link-latinsoft-web.border {
    flex: 0 auto;
  }

  .nav-link-latinsoft-web.dropdown {
    margin-left: auto;
    padding-right: 60px;
    display: block;
  }

  .nav-link-latinsoft-web.dropdown:hover {
    border-bottom-style: none;
    border-bottom-width: 0;
    padding-bottom: 24px;
  }

  .nav-link-latinsoft-web.burger-nav {
    opacity: 1;
  }

  .nav-link-latinsoft-web.light-mode {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .menu-burger-latinsoft {
    color: #2e323c;
    display: block;
    position: relative;
  }

  .menu-burger-latinsoft.w--open {
    color: var(--glemo-blue);
    background-color: #0000;
  }

  .nav-bar {
    display: flex;
  }

  .nav-logo-latinsoft {
    flex: 1;
  }

  .partner-logo {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .phone-image {
    max-width: 82%;
  }

  .phone-image.negative-margins {
    max-width: 50%;
    margin-bottom: -382px;
  }

  .hidden-lg-down {
    display: none;
  }

  .md-1 {
    width: 25%;
  }

  .md-2 {
    width: 50%;
  }

  .md-3 {
    width: 75%;
  }

  .md-4 {
    width: 100%;
  }

  .slide.small {
    width: 80%;
  }

  .inline-form {
    width: 100%;
  }

  .blog-thumbnail-container {
    margin-bottom: 30px;
  }

  .intro-hero-headline {
    letter-spacing: -2px;
    font-size: 5em;
    line-height: 1em;
  }

  .centred-logo-container {
    display: block;
  }

  .hover.hover-on-image {
    opacity: 1;
    background-color: #0000;
    height: auto;
    padding-left: 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .portrait-container {
    flex-direction: column-reverse;
    display: flex;
  }

  .slide-nav-2 {
    justify-content: flex-end;
    margin-bottom: 0;
    padding-left: 0;
  }

  .flex-horizontal-space-between {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .flex-horizontal-space-between.accordion {
    justify-content: flex-start;
  }

  .horizontal-short-line {
    margin-left: -30px;
    margin-right: -30px;
  }

  .team-small-container-1 {
    margin-bottom: 40px;
    display: flex;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .computer-picture {
    max-width: 70vw;
  }

  .app-download-button {
    width: 130px;
  }

  .app-download-container {
    display: flex;
  }

  .feature-icon-horizontal {
    margin-bottom: 20px;
  }

  .value-proposition-container {
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .value-proposition-container.vertical-align {
    text-align: left;
    flex-direction: column;
  }

  .value-proposition-hero-image {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .computer-image {
    width: 70%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
  }

  .side-image.lightbox-video {
    width: 80%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .border-to-edge-picture {
    height: 500px;
  }

  .footer-social-links-container {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .social-media-icons-contianer {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .social-media-icons-contianer.no-bottom-margins {
    margin-bottom: 0;
  }

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

  .footer-logo-2 {
    margin-bottom: 40px;
  }

  .div-block-49 {
    flex-direction: column;
    display: flex;
  }

  .md-align-centre {
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

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

  .white-burger {
    color: #fff;
  }

  .menu-button-3 {
    background-color: var(--black);
  }

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

  .nav-link-3 {
    background-color: var(--midnight-blue);
    color: #fff;
    text-align: left;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding-top: 31px;
    padding-bottom: 31px;
    display: flex;
  }

  .nav-menu-container {
    background-color: var(--midnight-blue);
    text-align: right;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 10%;
    position: absolute;
    top: 100%;
  }

  .nav-dropdown-link {
    float: left;
    background-color: var(--alice-blue);
    color: #fff;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
  }

  .dropdown-list {
    background-color: var(--midnight-blue);
  }

  .dropdown-list.w--open {
    height: 50vh;
    overflow: auto;
  }

  .text-block-2 {
    text-align: left;
  }

  .icon-2 {
    font-size: 20px;
  }

  .transparent-overlay {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
  }

  .burger-icon {
    color: var(--glemo-blue);
  }

  .dropdown-link-text {
    margin-right: 0;
  }

  .dropdown-chevron {
    flex: 0 auto;
  }

  .dropdown {
    flex: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .dropdown-list-2.w--open {
    flex-flow: column;
    align-items: center;
    display: flex;
    position: relative;
  }

  .nav-cta-button-container {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .small-slide {
    width: 100%;
  }

  .partner-logo-container {
    justify-content: center;
    width: 50%;
    display: flex;
  }

  .date-container {
    flex-wrap: wrap;
  }

  .negative-margin {
    margin-left: -19px;
  }

  .container-center {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .blog-tag.button {
    color: var(--white);
  }

  .how-it-works-line {
    top: 245px;
  }

  .how-it-works-tab {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .step-container {
    margin-bottom: 80px;
  }

  .footer-newsletter-form-container {
    width: 100%;
    margin-top: 40px;
  }

  .paragraph-hero-position {
    width: 100%;
    position: static;
    inset: 0%;
  }

  .sidenav__scroll-wrap {
    height: 100vh;
    overflow: auto;
  }

  .left-nav__menu {
    align-items: stretch;
  }

  .sidenav.sidenav__left {
    height: auto;
    overflow: visible;
  }

  .short-paragraph-hero {
    margin-bottom: 0;
    margin-left: 0;
    right: 0%;
  }

  .small-slide-three {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .h2.white {
    font-size: 30px;
  }

  ._30px-step {
    height: 20px;
  }

  .client-logo-wrap {
    padding-bottom: 40px;
    padding-right: 20px;
  }

  .clients-logo {
    width: 100%;
  }

  .accordion-item {
    list-style-type: none;
  }

  .accordion-trigger {
    display: flex;
  }

  .accordion-trigger.small:hover {
    padding-left: 10px;
  }

  .accordion-trigger.light-mode:hover {
    padding-left: 0;
  }

  .number {
    padding-right: 20px;
  }

  .total-price-wrapp.small.green {
    padding-right: 0;
  }

  .accardion-title-wrapp {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .down-page-wrapp-copy {
    width: 100px;
    height: 100px;
  }

  .down-page-wrapp-copy._1, .down-page-wrapp-copy._2 {
    width: 100%;
    height: 100%;
  }

  .arrow-down-hero-wrapp {
    width: 100px;
    height: 100px;
  }

  ._80px-step {
    height: 40px;
  }

  .arrow-down-hero-wrapp-copy {
    margin-bottom: -30px;
  }

  .arrow-down-hero-wrapp-copy-copy {
    margin-bottom: 40px;
    top: auto;
  }

  .blog-image-card {
    min-height: 300px;
  }

  .project-link {
    width: 150px;
    height: 150px;
    inset: -75px 4% auto auto;
  }

  .project-link:hover {
    top: -75px;
  }

  .lainsoft-footer {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 80px;
  }

  .form-multistep-full {
    width: 80%;
  }

  .button-open-form {
    color: var(--black);
  }

  .close-button {
    border-radius: 50%;
  }

  .position-cirkle-button {
    inset: 0% 0% auto;
  }

  .heading-2 {
    left: -160%;
  }

  .section-video-lightbox {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
  }

  .social-share-icon {
    margin-left: .5em;
    margin-right: 0;
  }

  .text-block-50 {
    margin-right: 0;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    top: 0;
    left: -75px;
  }

  .site-top__menu-link {
    margin-left: 0;
  }

  .site-top__menu-right-container {
    justify-content: flex-end;
  }

  .container {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .flex-ard-main {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
  }

  .center-button-position.desctop-hide {
    justify-content: flex-end;
    display: flex;
  }

  .fs-cc-banner_component {
    width: auto;
    margin-left: 80px;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    left: 0;
  }

  .icon-navdrop.in {
    color: #262626;
    border-left: 1px solid #fff;
    width: 80px;
  }

  .dropdown-2 {
    background-color: #311d81;
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }

  .links {
    min-height: 48px;
  }

  .links.nav {
    z-index: 1;
    text-transform: uppercase;
    background-color: #0000;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    padding-left: 2em;
    font-size: 16px;
    position: relative;
  }

  .links.nav.dropdown {
    text-transform: uppercase;
    min-height: auto;
    max-height: none;
    padding-bottom: 1em;
    padding-left: 2em;
  }

  .links.nav.menu-children {
    color: #424242;
    background-color: #e3e3e3;
    border-radius: 0;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
  }

  .links.nav.menu-children:hover {
    background-color: #fff;
  }

  .icon-4 {
    z-index: 10;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-right: 0;
    padding-right: 20px;
    display: flex;
  }

  .link-nav-title {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-nav-title.drop.w--open {
    box-shadow: none;
    justify-content: space-between;
    height: 60%;
  }

  .link-nav-title.drop.child {
    color: #262626;
    background-color: #0000;
  }

  .link-nav-title.drop.child:hover {
    background-color: #cce1ff;
  }

  .link-nav-title.drop.child.w--open {
    margin-bottom: 0;
  }

  .drop-tree-wrapp-2 {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .drop-tree-wrapp-2.child {
    background-color: #cce1ff;
    border-bottom: 1px solid #fff;
    padding-left: 30px;
  }

  .drop-tree-wrapp-2.main {
    color: #180e40;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #bfbfbf;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    font-weight: 500;
  }

  .nav-link-propdown {
    border-bottom: 1px solid #efeff3;
    display: block;
  }

  .nav-link-propdown.w--current {
    border: 1px #000;
  }

  .dropdown-list-tree-3 {
    display: none;
  }

  .dropdown-list-tree-3.w--open {
    background-color: #efeff3;
    border-radius: 0;
    margin-top: 0;
    padding-top: 0;
    position: static;
  }

  .grid-background {
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-content-media {
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-options-hardware {
    grid-row-gap: 20px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .arrow-3 {
    opacity: 1;
    right: 10px;
  }

  .div-technology-container {
    border: 3px solid #181818;
    align-self: center;
  }

  .div-testimoninal {
    grid-row-gap: 30px;
    margin-top: 80px;
    margin-bottom: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid-project-ci {
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    margin-bottom: 120px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .bar-flag {
    margin-right: 30px;
  }

  .text-small {
    font-weight: 300;
  }

  .text-small.click-me {
    opacity: 1;
    right: 30px;
  }

  .text-small.io {
    font-weight: 600;
  }

  .div-png-tec-responsive {
    justify-content: center;
    align-items: center;
    height: 0;
    display: block;
  }

  .div-title-project-technology {
    align-self: start;
    position: relative;
    top: 0%;
  }

  .grid-project-technology {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-areas: ". . . . ."
                         ". . . . .";
    margin-left: 40px;
    margin-right: 40px;
  }

  .div-title-project {
    align-self: center;
    margin-left: 40px;
  }

  .base-responsive {
    opacity: 0;
  }

  .div-png-tec {
    display: none;
  }

  .png-responsive {
    opacity: 0;
    position: absolute;
    inset: 0% 0% auto;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .card_job {
    width: 8rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .header_component {
    padding-top: 6rem;
  }

  .ellipse_header {
    width: 36rem;
    height: 36rem;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .div-bar-input {
    background-color: #4451f6;
    justify-content: center;
    margin-left: 40px;
  }

  .div-bar-input.out {
    background-color: #4451f699;
  }

  .grid-generative-design {
    grid-template: ". . ."
                   ". . ."
                   ". . ."
                   / 1fr minmax(0, 4px) 1fr;
    margin-left: 40px;
    margin-right: 40px;
  }

  .grid-parameters._3 {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         "."
                         "."
                         ".";
  }

  .div-content-gd {
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-circle-inside {
    width: auto;
    height: 6px;
    margin-right: 0;
    inset: auto 0% 0%;
  }

  .text-bg {
    align-self: center;
    font-size: 120px;
    line-height: 120px;
  }

  .grid-colors._4 {
    grid-template-rows: auto auto;
    grid-template-areas: ". ."
                         ". .";
  }

  .div-card-gd {
    min-height: 300px;
  }

  .grid-case-study {
    grid-row-gap: 80px;
    grid-template-rows: auto auto auto;
    grid-template-areas: ". . . . ."
                         ". . . . ."
                         ". . . . .";
    margin-bottom: 80px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .text-io {
    font-weight: 300;
  }

  .div-color {
    justify-content: center;
    padding-left: 30px;
  }

  .gif {
    border-style: none;
    border-width: 1px;
    width: 360px;
    height: 360px;
    position: relative;
    top: 0%;
  }

  .grid-media {
    grid-template-rows: 140px 30px minmax(100px, 1fr) minmax(100px, 1fr) 100px 100px 100px 100px minmax(100px, 1fr) 100px;
    grid-template-areas: ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . .";
    margin-bottom: 0;
    margin-left: 40px;
    margin-right: 40px;
  }

  .first-button {
    background-color: #4451f6;
  }

  .div-left-first-button {
    width: 60px;
    margin-right: 0;
  }

  .image {
    width: 20px;
  }

  .experience-block {
    padding-right: 16px;
  }

  .experience-section {
    padding: 150px 40px 80px;
  }

  .logo-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .logo-box {
    width: auto;
  }

  .dribbble-image {
    background-size: cover;
    height: 480px;
  }

  .dribbble-section {
    padding: 80px 40px;
  }

  .wrapper-3.sticky-grid {
    grid-column-gap: 24px;
  }

  .testimonial-block._120px-bottom_m {
    margin-bottom: 64px;
  }

  .testimonial-section {
    padding: 80px 40px;
  }

  .testimonial-text {
    padding: 32px;
  }

  .container-medium-2, .container-small {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-section-medium-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .stats_group {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .container-large-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .stats_inner {
    padding: 2rem;
  }

  .padding-section-medium-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero_content-bottom {
    justify-content: center;
  }

  .starbucks-logo {
    min-width: 140px;
    min-height: 140px;
  }

  .header-hero-vertical-wrapper {
    min-height: 75vh;
  }

  .social-grid-child {
    padding-top: 1.4rem;
  }

  .panel-current {
    padding: 8%;
  }

  .section-starbucks-china-innovation, .section-starbucks-china-intro {
    background-color: #0000;
  }

  .geekwire-wrapper {
    padding: 7% 8%;
    display: block;
  }

  .section-china-roastery {
    background-color: #0000;
  }

  .h3-centered.h3-large {
    font-size: 2.6rem;
  }

  .single-panel-text-split-wrapper {
    padding: 7% 8%;
    display: block;
  }

  .single-panel-text-split-wrapper.bg-purple {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .img_100.padding-below {
    margin-bottom: 5%;
  }

  .panel-rounded-main {
    padding: 8%;
  }

  .section-international-products, .section-mgm-wsj, .section-mgm-intro {
    background-color: #0000;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-centered-large.text-color-white {
    font-size: 1.4rem;
  }

  .panel-rounded-centered-main {
    padding: 8%;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .panel-rounded-intro {
    padding: 8%;
  }

  .curiousoffice-wrapper {
    padding: 7% 8%;
    display: block;
  }

  .full-image-panel.bg-nyse, .full-image-panel.bg-porsche {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .container-2, .container-grid-fifty {
    width: auto;
    max-width: none;
  }

  .timeline10_item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 10rem 1fr;
  }

  .timeline10_item.is-alternate {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .padding-global-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .timeline-heading, .timeline-heading.text-color-586174 {
    font-size: 1rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .timeline10_row {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .div-block-17 {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 10px;
    font-size: 48px;
    line-height: 1.3em;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 28px;
  }

  .section.full-screen {
    min-height: 600px;
  }

  .section.wider-padding.background-image {
    height: 400px;
  }

  .section.wider-padding.map {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .section.half-screen-background-image, .section.half-screen-background-image.right {
    background-size: cover;
  }

  .section.no-vertical-padding.sm-flex-vertical {
    flex-direction: column;
    display: flex;
  }

  .section.hide-sm-down {
    display: none;
  }

  .section.hero.black-violet-section {
    padding-top: 100px;
  }

  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper.space-around {
    justify-content: space-around;
  }

  .wrapper.auto._10.bg-white.info-list {
    padding: 20px;
  }

  .block {
    flex: 0 0 100%;
  }

  .block.mobile {
    flex-basis: 50%;
  }

  .block.lg-50, .col.lg-4.sm-2 {
    width: 100%;
  }

  .col.lg-4.sm-2.sm-no-margin-bottom {
    margin-bottom: 0;
  }

  .col.lg-3.no-padding.sm-2 {
    width: 50%;
  }

  .col.lg-3.flex-stretch.md-2.sm-2 {
    width: 100%;
  }

  .col.lg-3.sm-1 {
    width: 50%;
  }

  .col.lg-3.sm-2, .col.lg-6 {
    width: 100%;
  }

  .col.lg-6.centre-align {
    width: 75%;
  }

  .col.lg-6.sm-1 {
    width: 50%;
  }

  .col.lg-6.md-3.sm-2 {
    width: 100%;
  }

  .col.lg-6.sm-margin-bottom {
    align-items: stretch;
    margin-bottom: 40px;
  }

  .col.lg-2.sm-1 {
    width: 50%;
  }

  .col.lg-5 {
    width: 100%;
  }

  .col.lg-5.bottom-margin-mobile {
    margin-bottom: 40px;
  }

  .col.lg-5.sm-no-bottom-margin {
    margin-bottom: 0;
  }

  .col.lg-8.centre-align.sm-2, .col.lg-8.sm-2 {
    width: 100%;
  }

  .col.lg-9.md-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-10.md-2.sm-2 {
    width: 100%;
  }

  .col.lg-11.md-3.sm-1 {
    width: 50%;
  }

  .paragraph-small.short-paragraph {
    width: 100%;
  }

  .row.flex-horizontal {
    flex-flow: wrap;
    margin-bottom: 0;
  }

  .row.sm-reverse {
    flex-direction: column-reverse;
  }

  .row.sm-no-wrap {
    flex-wrap: nowrap;
  }

  .row.margin-bottom.sm-reverse-layout {
    flex-direction: column-reverse;
  }

  .margin-bottom {
    text-align: left;
  }

  .form-field.side-margins.no-bottom-margins {
    min-width: auto;
  }

  .page-preview-link {
    height: 220px;
  }

  .price-table-container {
    padding: 40px;
  }

  .footer-logo {
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .testimonial-image {
    margin-bottom: 40px;
  }

  .contact-form-container.card {
    padding: 40px;
  }

  .question-container {
    margin-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .question-text {
    margin-top: 8px;
  }

  .menu-burger-latinsoft {
    width: 56px;
    height: 56px;
    margin-right: 4px;
  }

  .partner-logo {
    flex: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .phone-image {
    border-bottom: 1px solid var(--glemo-blue);
    max-width: 60%;
    margin-bottom: 40px;
  }

  .phone-image.negative-margins {
    max-width: 70%;
    margin-bottom: -409px;
  }

  .sm-1 {
    width: 50%;
  }

  .hidden-md-down {
    display: none;
  }

  .sm-2 {
    width: 100%;
  }

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

  .slider-arrow {
    font-size: 28px;
  }

  .slide-nav {
    font-size: 10px;
  }

  .flex-horizontal {
    grid-template-columns: 1fr 1fr;
  }

  .intro-hero-headline {
    font-size: 4.1em;
  }

  .flex-horizontal-space-between {
    flex-direction: row;
    justify-content: space-between;
  }

  .flex-horizontal-space-between.footer {
    flex-direction: column;
  }

  .horizontal-short-line {
    margin-left: -40px;
    margin-right: -40px;
  }

  .team-small-container-1 {
    margin-bottom: 30px;
  }

  .computer-picture {
    margin-bottom: 40px;
  }

  .value-proposition-container {
    flex-direction: column;
    align-items: center;
  }

  .side-image {
    height: 40vw;
    margin-bottom: 20px;
  }

  .border-to-edge-picture {
    height: 400px;
  }

  .big-blog-thumbnail-container.no-bottom-margins {
    margin-bottom: 40px;
  }

  .social-media-icons-container-2 {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .footer-social-links-container {
    margin-top: 40px;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    display: flex;
  }

  .footer-logo-2 {
    padding-left: 0;
  }

  .centred-logo {
    margin-left: 30px;
  }

  .play-icon {
    width: 50px;
  }

  .small-slide {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .step-content {
    text-align: left;
    flex: 1;
  }

  .how-it-works-step {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .circle {
    flex-wrap: nowrap;
    margin-right: 40px;
  }

  .circle.no-margins {
    margin-right: 0;
  }

  .footer-newsletter-form-container {
    margin-top: 20px;
  }

  .sidenav__scroll-wrap {
    width: 100%;
    margin-left: 0;
  }

  .short-paragraph-hero {
    position: static;
  }

  .small-slide-three {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .card-wrapp {
    height: 20vw;
    min-height: 200px;
  }

  .card-wrapp.block-post._50 {
    width: 100%;
  }

  .client-logo-wrap {
    padding-bottom: 20px;
    padding-right: 10px;
  }

  .accordion-trigger.small {
    padding-right: 40px;
  }

  .wrap-swich.hidden-md-down {
    display: flex;
  }

  .wrapp-form {
    display: none;
  }

  .div-block-61 {
    flex-direction: column;
    display: block;
  }

  .card {
    padding: 20px;
  }

  .card.green {
    min-height: auto;
    margin-bottom: 20px;
  }

  .card.black {
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
  }

  .company-logo-project {
    height: 18vw;
  }

  .previous {
    z-index: 6;
    margin-left: 17%;
    position: fixed;
  }

  .form-content {
    width: 90%;
  }

  .form-multistep-full {
    border-radius: 0;
    width: 87%;
    padding-top: 40px;
  }

  .form-wrapper {
    width: 100%;
  }

  .next {
    background-color: var(--blue-violet);
    margin-bottom: 0;
    padding: 20px 20px 100px;
  }

  .form12_checkbox_field {
    width: 48%;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .checkbox-field {
    width: 46%;
    margin-bottom: 0;
  }

  .checkbox_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .button-open-form.button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .button-open-form.button.hide-on-mobile {
    font-size: 14px;
  }

  .heading-2 {
    left: -147%;
  }

  .play-wrapp {
    width: 80px;
    height: 80px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-banner_text-link-2 {
    margin-right: 8px;
  }

  .fs-cc-banner_button-2 {
    margin-left: 0;
    margin-right: 8px;
  }

  .fs-cc-prefs_title {
    font-size: 20px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-multistep-wrapp {
    border-radius: 0;
    width: 87%;
    padding-top: 40px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

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

  .nav-link-4 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

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

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

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero-subscribe-right {
    padding: 60px 15px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .team-slider {
    padding: 60px 15px;
  }

  .flex-ard-main {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
  }

  .center-button-position.desctop-hide {
    justify-content: center;
  }

  .fs-cc-banner_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .fs-cc-prefs_title-2 {
    font-size: 20px;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    width: 160px;
    height: 160px;
    left: 0;
  }

  .arrow-down-hero-wrapp-copy-copy-copy.mobile-hide {
    display: none;
  }

  .icon-navdrop.in {
    border-top: 1px #bfbfbf;
  }

  .link-nav-title.drop {
    height: auto;
  }

  .drop-tree-wrapp-2.child {
    padding-left: 20px;
  }

  .dropdown-list-tree-3.w--open {
    background-color: #fff;
  }

  .div-content-media {
    padding-left: 0;
    padding-right: 0;
  }

  .div-options-hardware {
    padding-left: 0;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .grande {
    font-size: 18px;
    line-height: 22px;
  }

  .grid-project-ci {
    grid-row-gap: 40px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
    margin-bottom: 80px;
  }

  .bar-flag {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .div-content-project {
    padding-right: 0;
  }

  .div-title-project-technology {
    align-self: start;
    position: relative;
    top: 0;
  }

  .grid-project-technology {
    grid-template: "."
                   "."
                   / 1fr;
  }

  .div-title-project {
    align-self: center;
    margin-left: 0;
    position: relative;
    top: 0;
  }

  .div-title-project.ideas {
    display: block;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .map_lottie {
    width: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .header_component {
    padding-top: 5.25rem;
  }

  .ellipse_header {
    width: 20rem;
    height: 20rem;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .div-bar-input {
    width: auto;
  }

  .div-bar-input.out {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-generative-design {
    grid-template: "."
                   "."
                   "."
                   "."
                   / 1fr;
    margin-bottom: 0;
  }

  .grid-parameters._1 {
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "."
                         "."
                         "."
                         ".";
  }

  .grid-parameters._3 {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         "."
                         "."
                         ".";
  }

  .div-content-gd {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-bg {
    align-self: center;
    font-size: 80px;
    line-height: 80px;
  }

  .section-design {
    padding-top: 80px;
  }

  .div-card-gd._3 {
    margin-bottom: 80px;
  }

  .grid-case-study {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    margin-bottom: 80px;
  }

  .div-content-case-study {
    align-self: start;
  }

  .gif {
    z-index: 10;
    border: 2px solid #000;
    width: 60vw;
    height: 60vw;
  }

  .div-inputoutput {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-media {
    grid-template-rows: 140px 30px minmax(100px, 1fr) minmax(100px, 1fr) 100px 100px 100px 100px minmax(100px, 1fr) 100px;
    grid-template-areas: ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . .";
  }

  .experience-block {
    padding-right: 0;
  }

  .heading_55px {
    font-size: 32px;
  }

  .experience-section {
    padding: 64px 20px;
  }

  .experience-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .normal-wrapper._120px-bottom_m {
    margin-bottom: 64px;
  }

  .dribbble-image {
    background-size: cover;
  }

  .dribbble-section {
    padding: 64px 20px;
  }

  .heading_55px-2 {
    font-size: 32px;
  }

  .testimonial-sticky-block {
    position: static;
  }

  .wrapper-3.sticky-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .heading_55px-3 {
    font-size: 32px;
  }

  .testimonial-section {
    padding: 64px 20px;
  }

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

  .heading-style-h2 {
    font-size: 2rem;
  }

  .features_item-inner {
    padding: 1.5rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium-2 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .stats_item-number {
    font-size: 2rem;
  }

  .stats_item-title {
    font-size: 1rem;
  }

  .padding-section-medium-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .starbucks-logo {
    min-width: 100px;
    min-height: 100px;
  }

  .header-hero-vertical-wrapper {
    min-height: 75vh;
  }

  .social-grid-child {
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .grid-fifty-child.left {
    margin-bottom: 10%;
  }

  .mgm-app-wrapper {
    top: -10rem;
  }

  .panel-current {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .section-starbucks-china-innovation, .section-starbucks-china-intro, .section-china-roastery {
    background-color: #0000;
  }

  .footer7_credit-text {
    margin-top: 2rem;
  }

  .h3-centered.h3-large {
    font-size: 2.3rem;
  }

  .img_100.padding-below {
    margin-bottom: 6%;
  }

  .social-grid-wrapper {
    display: block;
  }

  .curiousoffice-child.left {
    margin-bottom: 10%;
  }

  .panel-rounded-main {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .section-international-products {
    background-color: #0000;
  }

  .link-2.text-color-white {
    text-align: left;
  }

  .section-mgm-wsj {
    background-color: #0000;
  }

  .button-link.with-icon {
    text-align: left;
  }

  .mgm-entertainment-app-img {
    width: auto;
    height: auto;
  }

  .single-panel-text-split-child.left {
    margin-bottom: 10%;
  }

  .text-weight-semibold {
    text-align: left;
  }

  .section-mgm-intro {
    background-color: #0000;
  }

  .footer7_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .geekwire-child.left {
    margin-bottom: 10%;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-centered-large.text-color-white {
    font-size: 1.4rem;
  }

  .china-digital-partner-logos {
    grid-template-columns: 1fr 1fr;
  }

  .nyt-article-link {
    text-align: left;
  }

  .logo6_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .panel-rounded-centered-main {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .panel-rounded-intro {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .curiousoffice-wrapper {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .logo6_logo {
    max-height: 3rem;
  }

  .full-image-panel.bg-defender, .full-image-panel.bg-nyse, .full-image-panel.bg-porsche {
    padding-top: 12%;
    padding-bottom: 12%;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .container-2, .container-grid-fifty {
    text-align: center;
    width: auto;
    max-width: none;
  }

  .container-grid-fifty.horizontal-center {
    display: block;
  }

  .logo4_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .timeline10_item {
    grid-template-rows: auto auto;
    grid-template-columns: 4rem 1fr;
    padding: 1.5rem;
  }

  .timeline10_list {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .timeline10_circle {
    margin-top: 2.25rem;
  }

  .timeline-heading {
    font-size: 1rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .timeline10_progress {
    left: 0;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .timeline10_row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: max-content 1fr;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .heading-style-h5-2 {
    font-size: 1.25rem;
  }

  .timeline10_circle-wrapper {
    left: 0;
  }

  .timeline10_empty-space {
    display: none;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    padding-left: 4%;
    padding-right: 4%;
  }

  h1 {
    font-size: 42px;
    line-height: 50px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  h4 {
    font-size: 21px;
    line-height: 30px;
  }

  h5 {
    margin-bottom: 10px;
    font-size: 12px;
  }

  p {
    font-size: 16px;
  }

  .section {
    margin-left: 0;
    margin-right: 0;
  }

  .section.wider-padding {
    padding-right: 15px;
  }

  .section.background-image {
    height: auto;
  }

  .section.half-screen-background-image, .section.half-screen-background-image.right {
    background-position: 50%;
  }

  .section.page-header.image {
    padding-bottom: 80px;
  }

  .section.hero {
    padding-bottom: 60px;
  }

  .section.hero.black-violet-section.page, .section.hero.black-violet-section.post {
    padding-top: 140px;
    padding-bottom: 50px;
  }

  .section.bg-white.round-border {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section._0pad {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section.hero-block {
    justify-content: flex-start;
    align-items: center;
    height: 50vh;
  }

  .wrapper.space-around {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .wrapper.lg-negative-margins {
    align-items: flex-start;
  }

  .wrapper.auto._10.bg-white.info-list {
    padding: 10px;
  }

  .wrapper.auto.hero {
    z-index: 1;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .grid {
    flex-wrap: wrap;
  }

  .block {
    flex: 0 0 100%;
  }

  .block.lg-50 {
    padding: 40px;
  }

  .centre-align {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .col {
    padding: 0;
  }

  .col.lg-4 {
    width: 100%;
  }

  .col.lg-4.centre-align.xs-margin-bottom {
    margin-bottom: 20px;
  }

  .col.lg-4.md-3.xs-2 {
    width: 100%;
  }

  .col.lg-4.md-2.sm-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-4.xs-1 {
    width: 50%;
  }

  .col.lg-4.md-33.xs-2 {
    width: 100%;
  }

  .col.lg-3 {
    width: 50%;
  }

  .col.lg-3._2-col-in-mobile {
    width: 100%;
  }

  .col.lg-3.md-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-3.md-2.sm-2, .col.lg-3.md-2.xs-2 {
    width: 100%;
  }

  .col.lg-3.md-2.xs-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-3.sm-1.flex-stretch.xs-2, .col.lg-3.sm-1.xs-2 {
    width: 100%;
  }

  .col.lg-3.accardion {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .col.lg-6 {
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-6.centre-align {
    width: 100%;
  }

  .col.lg-6.sm-1 {
    width: 50%;
  }

  .col.lg-6.sm-1.xs-2, .col.lg-6.md-3.xs-2, .col.lg-2.md-1.sm-1.xs-2, .col.lg-2.md-33.xs-2 {
    width: 100%;
  }

  .col.lg-2.md-2.xs-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-5 {
    width: 100%;
  }

  .col.lg-5.md-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .col.lg-5.md-3.xs-2 {
    width: 100%;
  }

  .col.lg-9.md-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-small {
    margin-bottom: 20px;
  }

  .row {
    margin-right: 0;
  }

  .row.flex-horizontal {
    flex-direction: row;
  }

  .row.no-bottom-margins {
    margin-right: 0;
  }

  .button.ghost {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .button.ghost.reversed {
    margin-top: 0;
    margin-bottom: 0;
  }

  .button.margin-left {
    font-size: 12px;
  }

  .button.form-button {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar.fixed {
    padding-left: 0;
  }

  .form-field.no-bottom-margins {
    min-width: auto;
    margin-bottom: 10px;
  }

  .form-field.side-margins.no-bottom-margins {
    margin-bottom: 40px;
  }

  .page-preview-link {
    height: 160px;
  }

  .price-table-container {
    padding: 35px;
  }

  .logo.rel {
    margin-left: 15px;
  }

  .footer-logo {
    display: block;
  }

  .footer-link.spacing {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-link.spacing.last {
    margin-right: 16px;
  }

  .footer-link.no-padding.first {
    margin-left: -12px;
  }

  .footer-link.no-padding.last {
    margin-right: -10px;
  }

  .footer-link.first {
    margin-left: -10px;
  }

  .footer-link.last {
    margin-right: -10px;
  }

  .social-media-icon, .contact-form-container {
    padding: 0;
  }

  .contact-form-container.card {
    padding: 20px 30px;
  }

  .contact-form-container.card.white-background {
    padding: 25px 30px 20px;
  }

  .contact-form-container.light-blue.padding {
    padding: 20px;
  }

  .question-arrow-icon {
    margin-left: 16px;
  }

  .answer {
    padding-left: 0;
  }

  .question-text {
    margin-bottom: 8px;
    margin-left: 0;
  }

  .nav-link-latinsoft-web.light-mode {
    text-align: center;
    padding-top: 12px;
    font-size: 20px;
  }

  .menu-burger-latinsoft {
    flex: 0 auto;
    margin-right: 0;
  }

  .nav-bar {
    padding-left: 0;
  }

  .partner-logo {
    width: 90px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

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

  .phone-image.negative-margins {
    max-width: 90%;
    margin-bottom: -456px;
  }

  .margin-top {
    margin-top: 10px;
  }

  .xs-1 {
    width: 50%;
  }

  .xs-2 {
    width: 100%;
  }

  .slider-arrow {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
  }

  .slide-nav {
    height: 32px;
    font-size: 8px;
  }

  .blog-thumbnail-container {
    margin-bottom: 30px;
  }

  .tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .intro-hero-headline {
    letter-spacing: 0;
    font-size: 2.4em;
    line-height: 1.1em;
  }

  .team-small-container {
    margin-bottom: 30px;
  }

  .form-with-button {
    flex-direction: column;
  }

  .form-with-button.inline-form {
    flex-direction: row;
  }

  .testimonial-container {
    padding: 50px 30px 30px;
  }

  .quotation-mark {
    width: 30px;
    margin-top: -30px;
    margin-left: -10px;
    margin-right: 0;
    position: absolute;
  }

  .slide-nav-2 {
    padding-right: 15px;
  }

  .flex-horizontal-space-between {
    align-items: center;
  }

  .horizontal-short-line {
    margin-left: -35px;
    margin-right: -35px;
  }

  .team-container {
    margin-bottom: 0;
  }

  .short-paragraph {
    width: 100%;
  }

  .computer-picture {
    max-width: 80vw;
  }

  .app-download-button {
    width: 110px;
  }

  .app-download-container {
    flex-direction: row;
  }

  .computer-image {
    width: 110%;
  }

  .side-image {
    height: 50vw;
    margin-bottom: 20px;
  }

  .side-image.lightbox-video {
    width: 100%;
  }

  .social-media-icons-container-2 {
    justify-content: space-between;
  }

  .horizontal-footer-links-container {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-social-links-container {
    justify-content: space-around;
    margin-top: 40px;
    display: flex;
  }

  .social-media-icons-contianer {
    display: flex;
  }

  .social-media-icons-contianer.no-bottom-margins {
    margin-bottom: 0;
  }

  .div-block-49 {
    text-align: left;
    align-items: flex-start;
  }

  .play-icon {
    width: 40px;
  }

  .nav-menu-container, .dropdown-list.w--open {
    overflow: auto;
  }

  .icon-2 {
    position: absolute;
  }

  .small-slide {
    margin-left: 0;
    margin-right: 0;
  }

  .left-arrow, .right-arrow {
    width: 60px;
  }

  .value-point-container {
    width: 100%;
    margin-bottom: 40px;
  }

  .cta-container {
    margin-bottom: 40px;
  }

  .negative-margin {
    margin-left: -10px;
  }

  .how-it-works-step {
    width: 100%;
  }

  .circle {
    margin-right: 20px;
  }

  .how-it-works-tab {
    text-align: center;
    align-items: center;
  }

  .paragraph-hero-position {
    margin-top: 20px;
  }

  .main-line {
    width: 100%;
  }

  .left-nav__menu {
    max-width: 60px;
    display: none;
  }

  .short-paragraph-hero {
    width: 100%;
  }

  .small-slide-three {
    margin-left: 0;
    margin-right: 0;
  }

  .overlay {
    padding-left: 10px;
  }

  .portfolio-card-link-image.post-block {
    height: 30vh;
    min-height: 200px;
  }

  .card-wrapp {
    min-height: 200px;
    max-height: 300px;
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-content__inner-wrap.small {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .plus-cirkle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .plus-cirkle.small, .plus-cirkle.small-copy {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }

  .arrow-down {
    width: 20px;
    height: 20px;
  }

  .arrow-down.small {
    width: 16px;
    height: 16px;
  }

  .accordion-trigger.small {
    padding-left: 0;
  }

  .accordion-trigger.small:hover {
    padding-left: 0;
    padding-right: 30px;
  }

  .accordion-trigger.light-mode {
    padding-right: 40px;
  }

  .number {
    padding-right: 0;
    font-size: 12px;
  }

  .number.green {
    padding-right: 10px;
    font-size: 16px;
  }

  .h3.total {
    font-size: 18px;
  }

  .total-price-wrapp.small.green {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .arrow-down-hero-wrapp {
    position: absolute;
  }

  .wrap-swich {
    min-width: 60px;
    min-height: 80px;
    inset: 0% auto auto 0%;
  }

  .wrap-swich.hidden-md-down {
    display: none;
  }

  .wrap-swich.mobile {
    min-width: auto;
    min-height: auto;
    display: block;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .nav-burger {
    min-width: 40px;
    min-height: 40px;
  }

  .ttle-acardion {
    margin-bottom: 10px;
  }

  .mask {
    border-radius: 10px;
    margin-left: 0;
  }

  .arrow-down-hero-wrapp-copy, .arrow-down-hero-wrapp-copy-copy {
    margin-right: 4%;
    display: none;
  }

  .blog-image-card {
    min-height: 200px;
    max-height: 300px;
    padding-left: 0;
    padding-right: 0;
  }

  .project-link {
    width: 100px;
    height: 100px;
    font-size: 14px;
    top: -50px;
  }

  .project-link:hover {
    top: -55px;
  }

  .cube-wrapper.right {
    display: none;
  }

  .showreal-wrapper {
    padding-top: 60px;
  }

  .lainsoft-footer {
    z-index: 1;
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .previous {
    max-width: 110px;
    margin-left: 2%;
    display: flex;
    inset: 0%;
  }

  .form-content {
    padding-top: 10px;
  }

  .form-title-wrap {
    margin-bottom: 0;
  }

  .form-multistep-full {
    z-index: 99999;
    border-radius: 0;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .checkbox-image.dm {
    padding-top: 9px;
  }

  .checkbox-image.f {
    width: 27px;
  }

  .next {
    padding-bottom: 120px;
    position: fixed;
    inset: auto 0% 0%;
  }

  .title-left {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    inset: 0% 0% auto;
  }

  .slider-content-wrap {
    padding-top: 50px;
  }

  .submit-button {
    width: 100%;
  }

  .details-right {
    margin-top: 20px;
  }

  .form12_checkbox_field {
    width: 49%;
    min-width: auto;
    height: 130px;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .checkbox-field {
    width: 46%;
    height: 100px;
    margin-bottom: 0;
    padding-top: 10px;
  }

  .checkbox_wrap {
    flex-wrap: wrap;
    margin-bottom: 220px;
  }

  .form-section-title {
    margin-bottom: 0;
    font-size: 2em;
    line-height: 1em;
  }

  .checkbox-simple {
    margin-top: 0;
  }

  .checkbox-label {
    width: 90%;
  }

  .button-open-form.button.hide-on-mobile {
    display: none;
  }

  .close-button {
    top: 9px;
  }

  .section-video-lightbox {
    padding-left: 20px;
    padding-right: 20px;
  }

  .play-wrapp {
    width: 60px;
    height: 60px;
  }

  .brand-icon-wrapp {
    width: 60px;
  }

  .social-share-icon {
    width: 30px;
    height: 30px;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -22px 10px auto auto;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content, .fs-cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-prefs_button-2 {
    margin-bottom: 8px;
  }

  .fs-cc-banner_button-2 {
    width: 100%;
    margin-bottom: 10px;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .brand-wrapper {
    padding-top: 0;
  }

  .site-top__menu-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .form-multistep-wrapp {
    z-index: 99999;
    border-radius: 0;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .site-top__menu-right-container {
    margin-right: 10px;
    padding-right: 0;
  }

  .language-chooser.language-chooser-image.qtranxs_language_chooser {
    flex-flow: row;
  }

  .accardion-wrapp {
    margin-left: 0;
  }

  .container {
    max-width: none;
  }

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

  .hero-form {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .hero-form-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-input {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }

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

  .footer-block-two {
    margin-top: 40px;
  }

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .flex-ard-main {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .preloader-main-page {
    display: none;
  }

  .spinner--gradient {
    bottom: 15%;
  }

  .fs-cc-banner_component {
    margin-left: 4%;
    padding: 20px;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 10px;
  }

  .fs-cc-prefs_button {
    margin-bottom: 8px;
  }

  .arrow-down-hero-wrapp-copy-copy-copy {
    margin-right: 4%;
    display: none;
  }

  .grid-2.main {
    display: block;
  }

  .icon-navdrop.in {
    width: 60px;
  }

  .links {
    padding-top: .5em;
    padding-bottom: .5em;
  }

  .links.nav, .links.nav.dropdown {
    padding-left: 1em;
  }

  .links.nav.menu-children {
    padding-left: .5em;
    padding-right: .5em;
  }

  .link-nav-title.drop.w--open {
    height: 60px;
  }

  .link-nav-title.drop.child {
    text-align: left;
  }

  .link-nav-title.drop.child.w--open {
    height: 60px;
  }

  .drop-tree-wrapp-2.child {
    padding-left: 10px;
    padding-right: 10px;
  }

  .drop-tree-wrapp-2.main {
    min-height: auto;
  }

  .dropdown-list-tree-3.w--open {
    width: 100%;
    min-height: auto;
  }

  .arrow-down-copy {
    width: 20px;
    height: 20px;
  }

  .arrow-down-copy.small {
    width: 16px;
    height: 16px;
  }

  .grid-background {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-content-media {
    align-items: flex-start;
  }

  .centrado {
    text-align: left;
  }

  .div-options-hardware {
    grid-row-gap: 4px;
  }

  .arrow-3 {
    inset: auto 5px 14px auto;
  }

  .section-project {
    padding-top: 80px;
  }

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

  .div-testimoninal {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .h4-technology {
    margin-bottom: 20px;
  }

  .grid-project-ci {
    margin-left: 20px;
    margin-right: 20px;
  }

  .text-small.click-me {
    font-size: 10px;
    inset: auto 20px 10px auto;
  }

  .grid-project-technology {
    grid-row-gap: 30px;
    grid-template-areas: "."
                         "."
                         ".";
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-picture-testimonial {
    align-self: center;
    display: none;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom-2.margin-xsmall {
    margin-left: auto;
    margin-right: auto;
  }

  .map_lottie {
    width: 1.25rem;
  }

  .header_component {
    min-height: 50vh;
  }

  .section_header {
    max-height: 500px;
  }

  .ellipse_header {
    width: 12rem;
    height: 12rem;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .div-bar-input {
    height: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    padding: 2px 10px;
    position: relative;
  }

  .grid-generative-design {
    grid-template-columns: minmax(320px, .25fr);
    margin-bottom: 80px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid-parameters._3 {
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         "."
                         "."
                         ".";
  }

  .div-content-gd {
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .div-circle-inside {
    width: 12px;
    height: auto;
    inset: 0% auto 0% 0%;
  }

  .text-bg {
    align-self: center;
    font-size: 60px;
    line-height: 60px;
  }

  .grid-colors {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   / auto;
  }

  .grid-colors._3 {
    grid-template-rows: auto auto auto;
    grid-template-areas: "."
                         "."
                         ".";
  }

  .section-design {
    justify-content: flex-start;
    align-items: center;
    display: block;
  }

  .div-card-gd._3 {
    margin-bottom: 0;
  }

  .grid-case-study {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         "."
                         ".";
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-color {
    justify-content: flex-start;
  }

  .centrado-2 {
    text-align: left;
  }

  .div-content-case-study {
    align-self: start;
  }

  .gif {
    width: 80vw;
    height: 80vw;
  }

  .div-inputoutput {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .grid-media {
    grid-template-rows: 140px 30px 160px 200px 200px 120px 160px 200px;
    grid-template-areas: ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . ."
                         ". . . . . . . . .";
    margin-left: 20px;
    margin-right: 20px;
  }

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

  .testimonial-text {
    padding: 24px;
  }

  .textblock {
    justify-content: center;
    align-items: center;
  }

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

  .features_item-inner {
    padding: 1rem;
  }

  .stats_group {
    grid-column-gap: .5rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .background-style-2 {
    background-size: auto, auto;
  }

  .padding-section-medium-3 {
    text-align: center;
  }

  .heading-6 {
    text-align: center;
    width: 80%;
    margin-left: 20px;
    font-size: 40px;
  }

  .header-hero-vertical-wrapper {
    min-height: 75vh;
  }

  .social-grid-child {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .grid-fifty-child.left {
    padding-right: 0%;
  }

  .mgm-app-wrapper {
    top: -8rem;
  }

  .panel-current {
    padding: 12% 5%;
  }

  .section-starbucks-china-innovation, .section-starbucks-china-intro {
    background-color: #0000;
  }

  .geekwire-wrapper {
    padding: 15% 5%;
  }

  .section-china-roastery {
    background-color: #0000;
  }

  .h2-small.h2-hero-centered {
    font-size: 1.3rem;
  }

  .h3-centered.h3-large {
    font-size: 2rem;
  }

  .single-panel-text-split-wrapper {
    padding: 5%;
  }

  .single-panel-text-split-wrapper.bg-purple {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .img_100.padding-below {
    margin-bottom: 5%;
  }

  .h1-white.h1-centered {
    font-size: 1.6em;
  }

  .curiousoffice-child.left {
    padding-right: 0%;
  }

  .panel-rounded-main {
    padding: 12% 5%;
  }

  .section-international-products {
    background-color: #0000;
  }

  .link-2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: .8em;
  }

  .section-mgm-wsj {
    background-color: #0000;
  }

  .button-link.with-icon {
    text-align: left;
    font-size: .8rem;
    line-height: 1.2;
  }

  .button-link.with-icon.is-alternate {
    text-align: left;
  }

  .mgm-entertainment-app-img {
    object-fit: fill;
  }

  .section-mgm-intro {
    background-color: #0000;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-centered-large.text-color-white {
    font-size: 1.3rem;
  }

  .nyt-article-link {
    text-align: left;
    margin-top: 10%;
    font-size: .8rem;
  }

  .logo6_wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .panel-rounded-centered-main {
    padding: 12% 5%;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .panel-rounded-intro {
    padding: 12% 5%;
  }

  .curiousoffice-wrapper {
    padding: 15% 5%;
  }

  .full-image-panel.bg-defender, .full-image-panel.bg-nyse, .full-image-panel.bg-porsche {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    width: auto;
    max-width: none;
    margin-bottom: 2rem;
  }

  .container-grid-fifty {
    width: auto;
    max-width: none;
  }

  .container-grid-fifty.horizontal-center {
    display: block;
  }

  .logo4_wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-71 {
    flex-flow: wrap;
  }

  .bold-text-7 {
    font-size: 2rem;
  }

  .timeline10_item {
    grid-template-columns: 3rem 1fr;
  }

  .timeline-heading {
    text-align: left;
    font-size: 1rem;
  }

  .div-block-17 {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
  }

  .bold-text-8 {
    font-size: 2rem;
  }

  .div-block-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-cover {
    max-width: 40px;
  }

  .div-block-72 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#w-node-d318e6da-a63d-3bc1-ae39-e395044e4ab0-6a6123ad {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d318e6da-a63d-3bc1-ae39-e395044e4ab1-6a6123ad {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-d318e6da-a63d-3bc1-ae39-e395044e4ab2-6a6123ad {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83f6-6a6123ad {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83fe-6a6123ad {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83ff-6a6123ad {
  grid-area: 2 / 1 / 3 / 3;
}

#Testimonial-Picture.w-node-baf19a2f-d5dd-7df1-f9a1-b791580c8401-6a6123ad {
  grid-area: 3 / 1 / 4 / 2;
  align-self: center;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c8402-6a6123ad {
  grid-area: 3 / 2 / 4 / 3;
  align-self: center;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c840c-6a6123ad {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8da2-6a6123ad, #w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8dae-6a6123ad, #w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8dba-6a6123ad, #w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8dc6-6a6123ad, #w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8dd2-6a6123ad, #w-node-_2f90d675-0720-6bc2-0cd5-dca16cce8dde-6a6123ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-baf19a2f-d5dd-7df1-f9a1-b791580c841f-6a6123ad {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db32-6a6123ad {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db39-6a6123ad {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db40-6a6123ad {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_58093901-1397-35e6-0373-ea5937196567-6a6123ad {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_58093901-1397-35e6-0373-ea593719656f-6a6123ad {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_58093901-1397-35e6-0373-ea5937196576-6a6123ad {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_58093901-1397-35e6-0373-ea593719657d-6a6123ad {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-cc318a16-5a88-1465-8eaf-7c5c6c477403-6a6123ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c75-6a6123ad {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c7b-6a6123ad {
  grid-area: 3 / 1 / 5 / 5;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c7c-6a6123ad {
  grid-area: 3 / 5 / 7 / 8;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c7d-6a6123ad {
  grid-area: 3 / 8 / 5 / 10;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c7e-6a6123ad {
  grid-area: 5 / 8 / 7 / 10;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c7f-6a6123ad {
  grid-area: 5 / 1 / 9 / 5;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c80-6a6123ad {
  grid-area: 7 / 5 / 9 / 7;
}

#w-node-f91df901-d190-294f-5aa2-6727e9085c81-6a6123ad {
  grid-area: 7 / 7 / 9 / 10;
}

@media screen and (max-width: 991px) {
  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83f6-6a6123ad, #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c841f-6a6123ad {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db32-6a6123ad {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db39-6a6123ad {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db40-6a6123ad {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_58093901-1397-35e6-0373-ea5937196567-6a6123ad {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_58093901-1397-35e6-0373-ea593719656f-6a6123ad {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_58093901-1397-35e6-0373-ea5937196576-6a6123ad {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_58093901-1397-35e6-0373-ea593719657d-6a6123ad {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7b-6a6123ad {
    grid-area: 3 / 1 / 5 / 5;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7c-6a6123ad {
    grid-area: 3 / 5 / 5 / 8;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7d-6a6123ad {
    grid-area: 3 / 8 / 5 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7e-6a6123ad {
    grid-area: 5 / 5 / 9 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c80-6a6123ad {
    grid-area: 9 / 6 / 11 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c81-6a6123ad {
    grid-area: 9 / 1 / 11 / 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83f6-6a6123ad {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c83ff-6a6123ad {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c840c-6a6123ad {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c841f-6a6123ad {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db32-6a6123ad {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db39-6a6123ad {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_6b067804-f0d5-f6d3-31ae-ee4de1f7db40-6a6123ad {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_58093901-1397-35e6-0373-ea5937196567-6a6123ad {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_58093901-1397-35e6-0373-ea593719656f-6a6123ad {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_58093901-1397-35e6-0373-ea5937196576-6a6123ad {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_58093901-1397-35e6-0373-ea593719657d-6a6123ad {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-cc318a16-5a88-1465-8eaf-7c5c6c47741b-6a6123ad {
    order: -9999;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7b-6a6123ad {
    grid-area: 3 / 1 / 5 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7c-6a6123ad {
    grid-area: 5 / 1 / 7 / 5;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7d-6a6123ad {
    grid-area: 7 / 7 / 9 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7e-6a6123ad {
    grid-area: 5 / 5 / 7 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7f-6a6123ad {
    grid-area: 7 / 1 / 9 / 7;
  }
}

@media screen and (max-width: 479px) {
  #w-node-baf19a2f-d5dd-7df1-f9a1-b791580c8402-6a6123ad {
    grid-area: 3 / 1 / 4 / 3;
    align-self: center;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7b-6a6123ad {
    grid-area: 3 / 1 / 4 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7c-6a6123ad {
    grid-area: 4 / 1 / 5 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7d-6a6123ad {
    grid-area: 6 / 5 / 7 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7e-6a6123ad {
    grid-area: 5 / 1 / 6 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c7f-6a6123ad {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c80-6a6123ad {
    grid-area: 8 / 1 / 9 / 10;
  }

  #w-node-f91df901-d190-294f-5aa2-6727e9085c81-6a6123ad {
    grid-area: 7 / 1 / 8 / 10;
  }
}


@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Bold.ttf') format('truetype'), url('../fonts/Muli-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-BoldItalic.ttf') format('truetype'), url('../fonts/Muli-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

.nav-container-select {
  position: fixed; 
  top: 10px;       
  right: 10px;     
  background-color: transparent;
  z-index: 1000; 
}

.nav-container-select select {
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 4px 10px 4px 10px;
  font-size: 12px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff; 
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.nav-container-select select:hover {
  border-color: #888;
}

.nav-container-select select:focus {
  border-color: #555;
  outline: none;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

.nav-container-select::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
  color: #555;
}

.nav-container-select select {
  padding-right: 25px; 
}


/*CSS DESIGN PERSONALIZADO*/

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

/* COLUNAS MOBILE FIRST */
.col-12 {
  width: 100%;
}

/* MEDIA QUERIES (breakpoint md = 768px como no Bootstrap) */
@media (min-width: 768px) {
  .col-md-4 {
    width: 33.3333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-12 {
    width: 100%;
  }
}
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

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

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

.justify-content-center {
  justify-content: center;
}

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

.justify-content-end {
  justify-content: flex-end;
}
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }
.gap-6 { gap: 5rem; }
.gap-7 { gap: 6rem; }
/* Versões md (para telas grandes) */
@media (min-width: 768px) {
  .gap-md-4 { gap: 1.5rem; }
}
.image-center-container {
  display: flex;
  justify-content: center;
}

.image-center-container img {
  max-width: 60%;
  height: auto;
  display: block;
}

.equal-columns > div {
  flex: 1;           /* todas as colunas ficam exatamente iguais */
  max-width: 33.33%;  /* garante proporção */
}

/* MOBILE PRIMEIRO */
.desktop {
  display: none;
}

/* quando chegar em 768px ou maior (desktop) */
@media (min-width: 768px) {
  .desktop {
    display: flex !important;
  }

  .mobile {
    display: none !important;
  }
}


.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.div-pictures {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.div-pictures img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-media {
    width: 100% !important;
    padding: 40px 20px;
}

.div-content-media {
    text-align: center;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    width: 60%;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
}

/* --- TRACK --- */
.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* --- IMAGENS --- */
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 12px;
}

/* --- BOTÕES --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    display: flex;         /* <- ESSENCIAL */
    align-items: center;   /* <- ESSENCIAL */
    justify-content: center;

    border-radius: 50%;
    border: none;

    background: rgba(0, 0, 0, 0.4);
    color: white;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
    transition: 0.2s;
    z-index: 20;
}

/* --- Correção: apenas UMA definição de prev e next --- */
.prev { left: 10px; }
.next { right: 10px; }

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* --- MOBILE --- */
@media (max-width: 576px) {

    .carousel {
        width: 100%;
        border-radius: 10px;
    }

    .carousel-btn {
        display: none;
    }

    .prev { left: 6px; }
    .next { right: 6px; }
}




*{
  box-sizing:border-box;
}
.Rw{
  display:flex;
  flex-wrap:wrap;
   padding: 0 4px;
}
.Col{
  flex:25%;
  max-width:25%;
  padding: 0 4px;
}
.Col img {
    width: 100%;
    margin: 4px auto;
    vertical-align: middle
}
@media (max-width: 900px) {
    .Col {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .Col {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}
/* Tablet usa layout mobile */
@media (min-width: 768px) and (max-width: 1024px) {

  .mobile {
    display: flex !important;
  }

  .desktop {
    display: none !important;
  }
}
