body#index.ai-text .ab_ctrl {
  display: block;
  visibility: visible;
  height: auto; }

body#index.no-text .ab_expt {
  display: block;
  visibility: visible;
  height: auto; }

h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 140%;
  font-family: "Lora";
  color: #2E2E2E; }

h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 160%;
  font-family: "Lora";
  color: #2E2E2E; }

h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 160%;
  font-family: "Lora";
  color: #2E2E2E; }

h4 {
  font-size: 28px;
  font-weight: 800;
  line-height: 160%;
  font-family: "Roboto", sans-serif;
  color: #2E2E2E; }

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  font-family: "Roboto", sans-serif;
  color: #2E2E2E; }

h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  font-family: "Roboto", sans-serif;
  color: #2E2E2E; }

p, li {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  font-family: "Roboto", sans-serif;
  color: #757575; }

a {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  font-family: "Roboto", sans-serif; }
  a:hover {
    color: #959595; }
  a:hover img {
    opacity: 0.4; }
  a:hover img[alt='Mlytics'] {
    opacity: 1; }

@media (max-width: 440px) {
  h1 {
    font-size: 32px; } }

* {
  padding: 0;
  margin: 0;
  font-family: "Lora", "Roboto", sans-serif;
  color: black;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding: 12px 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: white;
  position: fixed;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
  width: 100vw; }
  nav menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px; }
  nav::after {
    content: '';
    width: 100vw;
    height: 100%;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1; }
  nav a img {
    display: block; }

body {
  padding-top: 68px;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.cta_text {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid white;
  padding: 8px 12px;
  border-radius: 2px; }
  .cta_text:hover {
    border-color: black;
    color: #454545; }

.cta_button {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  background-color: black;
  border: 2px solid black;
  color: white;
  padding: 20px 48px;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .cta_button:hover {
    color: black;
    background-color: white;
    -webkit-border-image: -webkit-linear-gradient(45deg, #ff00cc, #3333ff) 1;
    -o-border-image: -o-linear-gradient(45deg, #ff00cc, #3333ff) 1;
    border-image: linear-gradient(45deg, #ff00cc, #3333ff) 1;
    -webkit-box-shadow: 0 20px 50px rgba(18, 31, 145, 0.15);
    box-shadow: 0 20px 50px rgba(18, 31, 145, 0.15); }

.nav_button {
  display: none;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0; }
  .nav_button img {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

nav, main, section {
  max-width: 1440px; }

h6.section_label {
  font-family: "Lora";
  margin-bottom: 8px;
  color: #959595; }

@media (max-width: 440px) {
  nav {
    padding: 12px 20px;
    padding-right: 70px;
    gap: 10px; }
    nav menu {
      width: 100vw;
      height: 100vh;
      position: fixed;
      left: calc(100% + 40px);
      top: 0;
      -webkit-transition: all 0.15s linear;
      -o-transition: all 0.15s linear;
      transition: all 0.15s linear;
      background-color: white;
      z-index: 999;
      padding: 60px 40px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
      nav menu.nav_open {
        left: 0; }
      nav menu::before {
        content: 'Menu';
        color: #DFDFDF; }
      nav menu a {
        font-size: 20px; }
  .nav_button {
    display: block; }
  h6.section_label {
    padding: 0 20px; } }

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding: 120px; }
  main .content {
    max-width: 600px; }
  main h1 {
    margin-bottom: 24px;
    z-index: 1; }
    main h1 .blue::after,
    main h1 .red::after {
      content: '';
      width: 100%;
      height: 30%;
      position: absolute;
      left: 0;
      bottom: 8%;
      z-index: -1; }
    main h1 .blue::after {
      background-color: #1A74F2; }
    main h1 .red::after {
      background-color: #FF4545; }
    main h1 .block {
      display: block;
      height: 20px; }
  main h5 {
    color: #757575;
    font-weight: 300; }
  main .cta_button {
    margin-top: 60px; }
  main .hero-img {
    min-width: 300px; }

@media (max-width: 1440px) {
  main h1 {
    font-size: 40px; }
  main .content {
    max-width: 50%; } }

@media (max-width: 1024px) {
  main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 60px; }
    main .content {
      max-width: 100%; } }

@media (max-width: 440px) {
  main {
    padding: 80px 20px 40px;
    gap: 60px; }
    main h1 {
      line-height: 140%; }
    main h5 {
      font-size: 16px; }
    main .content {
      max-width: 100%; }
    main .cta_button {
      margin-top: 40px;
      width: 80%;
      margin: 40px auto 0;
      display: block;
      text-align: center;
      font-size: 20px; }
    main .hero-img {
      max-width: 90%;
      min-width: initial; } }

.performance {
  max-width: 100vw;
  margin-bottom: 160px; }
  .performance .bg {
    position: absolute;
    top: -70%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1; }
    .performance .bg img {
      width: 100vw; }
  .performance .card {
    border-top: 1.5px solid rgba(255, 255, 255, 0.65);
    border-left: 1.5px solid rgba(255, 255, 255, 0.65);
    border-right: 1.5px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 40px 28px;
    border-radius: 36px;
    max-width: 960px;
    margin: 0 auto; }
  .performance .live {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .performance .live h6 {
      font-family: '$title-font'; }
    .performance .live img {
      -webkit-animation: loading linear 2s infinite;
      animation: loading linear 2s infinite; }
  .performance .data_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 60px;
    margin-top: 30px; }
  .performance .data {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0; }
    .performance .data .label {
      font-size: 24px;
      font-weight: 200; }
      .performance .data .label span {
        font-size: 16px;
        font-family: '$content-font';
        margin-left: 4px; }
    .performance .data .number {
      font-size: 60px;
      font-family: '$title-font';
      font-weight: 200; }
  .performance section {
    max-width: 960px;
    text-align: center;
    margin: 40px auto 0; }
    .performance section p {
      margin-top: 28px; }
  .performance .cunstom_logo {
    margin-top: 80px; }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1; }
  20% {
    opacity: 0.8; }
  50% {
    -webkit-transform: rotate(180deg) scale(0.9);
    transform: rotate(180deg) scale(0.9);
    opacity: 0.3; }
  80% {
    opacity: 0.8; }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    opacity: 1; } }

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1; }
  20% {
    opacity: 0.8; }
  50% {
    -webkit-transform: rotate(180deg) scale(0.9);
    transform: rotate(180deg) scale(0.9);
    opacity: 0.3; }
  80% {
    opacity: 0.8; }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    opacity: 1; } }

.custom_logo {
  margin-top: 120px; }
  .custom_logo::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, white), color-stop(30%, rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 255, 255, 0)), color-stop(90%, white));
    background: -webkit-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, white 90%);
    background: -o-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, white 90%);
    background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, white 90%);
    -webkit-filter: grayscale(100%) blur(0.2px);
    filter: grayscale(100%) blur(0.2px);
    mix-blend-mode: color;
    pointer-events: none; }

.logo-wrapper {
  width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap; }
  .logo-wrapper:before, .logo-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    max-width: 250px;
    height: 100%;
    z-index: 2; }
  .logo-wrapper:before {
    left: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(10%, rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 10%, white);
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 10%, white);
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 10%, white); }
  .logo-wrapper:after {
    right: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 10%, white);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 10%, white);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, white); }

.logos-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-animation: 60s slide infinite linear;
  animation: 60s slide infinite linear;
  gap: 160px;
  padding: 0 80px; }

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@media (max-width: 440px) {
  .performance {
    padding-top: 60px; }
    .performance section {
      padding: 0 40px;
      margin-top: 60px; }
    .performance h3 {
      font-size: 24px; }
    .performance p {
      text-align: left;
      font-size: 14px; }
    .performance .card {
      margin: 20px; }
    .performance .bg {
      width: 100%;
      top: -25%;
      overflow: hidden; }
      .performance .bg img {
        height: 100%;
        width: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
  .data_group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .custom_logo {
    margin-top: 80px; }
  .logos-slide {
    gap: 80px;
    padding: 0 40px;
    -webkit-animation-duration: 20s;
    animation-duration: 20s; } }

section.left_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  section.left_right ul {
    margin-left: 28px;
    margin-top: 40px; }
  section.left_right li {
    line-height: 240%;
    color: #757575; }
  section.left_right h4 {
    font-weight: 200;
    color: white;
    margin-bottom: 40px; }
  section.left_right .section_right h3 {
    color: white; }
  section.left_right .section_right li {
    color: #ECECEC; }

.section_left {
  max-width: 720px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 60px 80px 80px 60px; }
  .section_left::after {
    content: '';
    width: 50vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    background-color: #F5F5F5; }

.section_right {
  max-width: 720px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 60px 60px 80px 80px; }
  .section_right::after {
    content: '';
    width: 50vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: #1A1A1A; }

@media (max-width: 440px) {
  section.left_right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    section.left_right h3 {
      font-size: 24px; }
    section.left_right li {
      line-height: 140%;
      margin-bottom: 20px; }
  .section_left,
  .section_right {
    min-width: 100%;
    padding: 80px 20px; }
    .section_left::after,
    .section_right::after {
      width: 100vw; }
    .section_left h6.section_label,
    .section_right h6.section_label {
      padding: 0; } }

.partner h2 {
  text-align: center;
  margin-bottom: 40px; }

.partner .section_left {
  text-align: right; }
  .partner .section_left .logos {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end; }

.partner .section_left::after {
  background-color: #1A1A1A; }

.partner .section_right::after {
  background-color: #2E2E2E; }

.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 30px; }
  .logos img {
    max-width: 160px; }

@media (max-width: 440px) {
  .partner .section_left, .partner .section_right {
    text-align: center; }
    .partner .section_left .logos, .partner .section_right .logos {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }

.production {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 120px 20px 60px;
  gap: 120px; }

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 40px 0; }
  .product .intro {
    max-width: 340px; }
    .product .intro h4 {
      margin-bottom: 12px; }
  .product .pros {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 20px;
    margin-top: 48px; }
  .product .icon {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center; }
    .product .icon img {
      width: 100px;
      height: 100px; }
    .product .icon h6 {
      color: #959595;
      font-weight: 300;
      margin-top: 20px; }

hr {
  border: none;
  border-top: 1px solid #DFDFDF; }

.launch {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px; }
  .launch h3 {
    padding: 12px 40px; }
    .launch h3 span {
      font-weight: 200;
      font-size: 24px; }
  .launch .cta_button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px; }
    .launch .cta_button:hover img {
      -webkit-filter: invert(1);
      filter: invert(1);
      -webkit-animation: rocket 2s ease-out infinite;
      animation: rocket 2s ease-out infinite; }
    .launch .cta_button span {
      display: block;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden; }
      .launch .cta_button span img {
        position: absolute;
        right: 0;
        top: 0; }

@-webkit-keyframes rocket {
  0% {
    right: 0;
    top: 0; }
  10% {
    right: 0;
    top: 0;
    opacity: 1; }
  40% {
    right: -100%;
    top: -100%;
    opacity: 0; }
  45% {
    right: 100%;
    top: 100%;
    opacity: 0; }
  85% {
    right: 0;
    top: 0;
    opacity: 1; }
  100% {
    right: 0;
    top: 0; } }

@keyframes rocket {
  0% {
    right: 0;
    top: 0; }
  10% {
    right: 0;
    top: 0;
    opacity: 1; }
  40% {
    right: -100%;
    top: -100%;
    opacity: 0; }
  45% {
    right: 100%;
    top: 100%;
    opacity: 0; }
  85% {
    right: 0;
    top: 0;
    opacity: 1; }
  100% {
    right: 0;
    top: 0; } }

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding: 120px 0;
  width: 100%;
  max-width: 960px; }
  .benefit .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 28px; }
  .benefit .time {
    width: 200px;
    height: 200px;
    border-radius: 60px;
    border: 2px solid #ECECEC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .benefit .time p:first-child {
      font-size: 140px;
      font-weight: 10;
      color: #2E2E2E;
      line-height: 130px;
      margin-top: 10px; }
    .benefit .time p:last-child {
      color: #2E2E2E; }
  .benefit .ft p {
    font-size: 32px;
    font-weight: 200;
    color: #454545;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    line-height: 30px;
    margin-bottom: 12px; }

@media (max-width: 440px) {
  .production {
    gap: 60px; }
  .product {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 80px 20px; }
    .product:first-of-type {
      padding-top: 10px; }
    .product .intro {
      max-width: 100%; }
    .product .pros {
      margin-top: 20px; }
    .product .icon img {
      width: 80px; }
    .product .icon h6 {
      margin-top: 0px;
      font-size: 12px;
      line-height: 120%; }
  .launch {
    gap: 28px; }
    .launch h3 {
      font-size: 20px;
      padding: 12px 32px; }
      .launch h3 span {
        font-size: 20px;
        color: #454545; }
    .launch .cta_button {
      font-size: 18px;
      padding: 20px;
      margin: 0 20px; }
      .launch .cta_button span {
        width: 28px;
        height: 28px; }
  .benefit {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px; }
  .left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .right {
    padding: 0 40px; } }

.industry {
  margin-bottom: 160px; }
  .industry section {
    max-width: 960px;
    background-image: url("https://www.mlytics.com/img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 36px;
    padding: 60px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px; }
  .industry .card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 40%;
    max-width: 430px;
    padding: 28px 40px 60px;
    border-radius: 24px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.65);
    border-left: 1.5px solid rgba(255, 255, 255, 0.65);
    border-right: 1.5px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.15); }
  .industry h4 {
    margin-bottom: 20px; }

@media (max-width: 440px) {
  .industry section {
    padding: 32px 20px;
    background-position: center; }
  .industry .card {
    min-width: 100%;
    padding: 24px 20px 60px; }
  .industry h4 {
    margin-bottom: 8px;
    font-size: 24px; } }

.pricing {
  margin: 120px 0; }
  .pricing img {
    max-width: calc(100% - 40px);
    top: -20px; }
  .pricing .card {
    border-top: 1.5px solid rgba(255, 255, 255, 0.65);
    border-left: 1.5px solid rgba(255, 255, 255, 0.65);
    border-right: 1.5px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: calc(100% - 40px);
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 1;
    padding: 60px 80px 80px 80px;
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-shadow: -20px 12px 40px 0 rgba(0, 0, 0, 0.35);
    box-shadow: -20px 12px 40px 0 rgba(0, 0, 0, 0.35); }
    .pricing .card:hover {
      border-top: 1.5px solid rgba(255, 255, 255, 0.65);
      border-left: 1.5px solid rgba(255, 255, 255, 0.65);
      border-right: 1.5px solid rgba(255, 255, 255, 0.25);
      border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.1);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-box-shadow: -10px 10px 24px 0 rgba(0, 0, 0, 0.38);
      box-shadow: -10px 10px 24px 0 rgba(0, 0, 0, 0.38); }
    .pricing .card .text {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
    .pricing .card p {
      color: #2E2E2E;
      margin-top: 20px; }

@media (max-width: 440px) {
  .pricing {
    padding: 0 20px; }
    .pricing img {
      height: 280px;
      border-radius: 40px;
      max-width: calc(100% - 20px); }
    .pricing .card {
      height: 280px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 20px 20px 40px;
      gap: 20px;
      right: 20px;
      top: 0;
      max-width: calc(100% - 60px); }
      .pricing .card h2 {
        font-size: 28px; }
    .pricing .text {
      width: 100%; }
    .pricing .cta_button {
      font-size: 20px;
      padding: 16px 32px; } }

.content_hub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  max-width: 960px;
  padding: 120px 0; }
  .content_hub .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 150px; }
    .content_hub .content:hover img {
      opacity: 1;
      right: 0; }
    .content_hub .content > img {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    .content_hub .content a img {
      display: block;
      margin-left: auto;
      margin-top: 12px;
      margin-bottom: 4px;
      right: 8px;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    .content_hub .content:hover .card {
      -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.45);
      box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.45);
      border-top: 1.5px solid rgba(255, 255, 255, 0.65);
      border-left: 1.5px solid rgba(255, 255, 255, 0.65);
      border-right: 1.5px solid rgba(255, 255, 255, 0.25);
      border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.1);
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
  .content_hub .card {
    margin: 24px 16px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.65);
    border-left: 1.5px solid rgba(255, 255, 255, 0.65);
    border-right: 1.5px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.35);
    padding: 20px 10px 10px 20px;
    border-radius: 24px;
    display: block; }
    .content_hub .card h4 {
      color: white; }
    .content_hub .card p {
      color: white;
      margin-top: 16px;
      line-height: 160%; }

@media (max-width: 440px) {
  .content_hub {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 20px; }
    .content_hub .content {
      min-width: 100%;
      padding-bottom: 140px; }
      .content_hub .content .card {
        padding: 28px 20px 20px 28px; }
      .content_hub .content p {
        margin-bottom: 60px; } }

.book_a_demo, .slogan {
  background-color: #1A1A1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  width: 100vw; }
  .book_a_demo h2, .book_a_demo h5, .slogan h2, .slogan h5 {
    color: white;
    max-width: 960px;
    margin: 0 auto;
    text-align: center; }
  .book_a_demo h2, .slogan h2 {
    font-size: 36px; }
  .book_a_demo h5, .slogan h5 {
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 220%; }
  .book_a_demo .cta_button, .slogan .cta_button {
    font-weight: 200;
    background-color: white;
    color: #2E2E2E; }
    .book_a_demo .cta_button:hover, .slogan .cta_button:hover {
      -webkit-box-shadow: 0 6px 40px rgba(255, 255, 255, 0.3);
      box-shadow: 0 6px 40px rgba(255, 255, 255, 0.3); }

@media (max-width: 440px) {
  .book_a_demo {
    margin-top: 100px; }
    .book_a_demo h2 {
      font-size: 26px;
      text-align: left; }
    .book_a_demo h5 {
      font-size: 14px;
      text-align: left; }
    .book_a_demo .cta_button {
      font-size: 18px; } }

footer {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.site_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  padding: 120px 20px; }
  .site_map h6 {
    color: #B9B9B9; }
  .site_map a {
    display: block; }
  .site_map .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px; }

.social_media {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 60px;
  border-top: 1px solid #ECECEC; }
  .social_media .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px; }

@media (max-width: 440px) {
  .site_map {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 60px 120px;
    padding: 80px 40px; }
  .social_media {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px; }
    .social_media h6 {
      text-align: center;
      font-size: 12px;
      width: 100%; } }

.contact_form {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 101;
  display: none; }
  .contact_form.form-open {
    display: block; }

.form_wrapper {
  width: 100%;
  max-width: 600px;
  margin: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.hs-form-frame {
  -webkit-box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.25); }

.close_form {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  cursor: pointer; }

@media (max-width: 440px) {
  .form_wrapper {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    left: 0;
    top: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    margin: 0;
    z-index: 99; }
  .close_form {
    z-index: 100; } }

body#decisive_engine .hero-img,
body#aigc_experience .hero-img {
  background-color: transparent; }
  body#decisive_engine .hero-img img,
  body#aigc_experience .hero-img img {
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05); }
  body#decisive_engine .hero-img::before,
  body#aigc_experience .hero-img::before {
    content: '';
    border-radius: 150%;
    position: absolute;
    left: -30%;
    top: -20%;
    z-index: -1;
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite; }
  body#decisive_engine .hero-img::after,
  body#aigc_experience .hero-img::after {
    content: '';
    border-radius: 120%;
    position: absolute;
    right: -20%;
    bottom: -20%;
    z-index: -1;
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite; }

body#decisive_engine .slogan,
body#aigc_experience .slogan {
  background-size: cover;
  background-color: transparent; }
  body#decisive_engine .slogan h2, body#decisive_engine .slogan h5,
  body#aigc_experience .slogan h2,
  body#aigc_experience .slogan h5 {
    color: #1A1A1A; }
  body#decisive_engine .slogan h5,
  body#aigc_experience .slogan h5 {
    text-align: left; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 150%;
    height: 100%; }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
    height: 150%; }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    width: 150%;
    height: 100%; } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 150%;
    height: 100%; }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 100%;
    height: 150%; }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    width: 150%;
    height: 100%; } }

body#decisive_engine .hero-img::before {
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #FFC3D7 0%, rgba(255, 233, 249, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: -o-radial-gradient(50% 50%, 50% 50%, #FFC3D7 0%, rgba(255, 233, 249, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #FFC3D7 0%, rgba(255, 233, 249, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%); }

body#decisive_engine .hero-img::after {
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #DFDDFF 0%, rgba(183, 232, 252, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: -o-radial-gradient(50% 50%, 50% 50%, #DFDDFF 0%, rgba(183, 232, 252, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #DFDDFF 0%, rgba(183, 232, 252, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%); }

body#decisive_engine .slogan {
  background-image: url("https://www.mlytics.com/img/decisive_engine_pattern.png"); }

body#aigc_experience .hero-img::before {
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #B7EAE2 0%, rgba(233, 255, 254, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: -o-radial-gradient(50% 50%, 50% 50%, #B7EAE2 0%, rgba(233, 255, 254, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #B7EAE2 0%, rgba(233, 255, 254, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%); }

body#aigc_experience .hero-img::after {
  background: -webkit-radial-gradient(50% 50%, 50% 50%, #FEFFDD 0%, rgba(255, 241, 223, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: -o-radial-gradient(50% 50%, 50% 50%, #FEFFDD 0%, rgba(255, 241, 223, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #FEFFDD 0%, rgba(255, 241, 223, 0.5) 44.78%, rgba(255, 255, 255, 0) 100%); }

body#aigc_experience .slogan {
  background-image: url("https://www.mlytics.com/img/aigc_experience_pattern.png"); }

body#decisive_engine .feature {
  padding: 120px 20px; }
  body#decisive_engine .feature section {
    max-width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px; }
  body#decisive_engine .feature .card {
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 12px 60px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 60px 0 rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.65);
    border-left: 1.5px solid rgba(255, 255, 255, 0.65);
    border-right: 1.5px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px; }
    body#decisive_engine .feature .card h4 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 12px; }
      body#decisive_engine .feature .card h4 img {
        display: block; }
    body#decisive_engine .feature .card .intro {
      border-top: 2px solid #2E2E2E;
      padding: 24px 20px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 60px; }
    body#decisive_engine .feature .card .item p:first-child {
      font-weight: 600;
      color: #454545;
      margin-bottom: 12px; }
    body#decisive_engine .feature .card p {
      color: #757575;
      font-weight: 300; }
  body#decisive_engine .feature .bg {
    position: absolute;
    right: -50%;
    top: 0;
    z-index: -1; }

body#aigc_experience .industry {
  padding: 120px 20px; }
  body#aigc_experience .industry h2 {
    text-align: center;
    margin-bottom: 20px; }
  body#aigc_experience .industry h5 {
    text-align: center;
    margin-bottom: 40px;
    color: #959595; }
  body#aigc_experience .industry section {
    background-image: url("https://www.mlytics.com/img/aigc_experience_bg2.jpg"); }
  body#aigc_experience .industry .card {
    padding-bottom: 28px; }
  body#aigc_experience .industry h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    line-height: 48px;
    font-size: 26px; }
    body#aigc_experience .industry h4 span {
      min-width: 48px;
      height: 48px;
      border-radius: 8px;
      opacity: 0.9;
      background-color: #2E2E2E; }
      body#aigc_experience .industry h4 span img {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: block; }
  body#aigc_experience .industry p {
    color: #2E2E2E;
    font-weight: 300; }

@media (max-width: 960px) {
  body#aigc_experience .industry h4 {
    font-size: 20px;
    line-height: 40px;
    line-height: 120%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    body#aigc_experience .industry h4 span {
      min-width: 40px;
      height: 40px;
      border-radius: 8px; }
      body#aigc_experience .industry h4 span img {
        width: 24px;
        height: 24px; } }

@media (max-width: 680px) {
  body#aigc_experience .industry h4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; } }

@media (max-width: 440px) {
  body#decisive_engine main,
  body#aigc_experience main {
    width: 100vw;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 120px;
    gap: 120px; }
    body#decisive_engine main h1,
    body#aigc_experience main h1 {
      font-size: 32px; }
    body#decisive_engine main .cta_button,
    body#aigc_experience main .cta_button {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      padding: 20px; }
    body#decisive_engine main .hero-img img,
    body#aigc_experience main .hero-img img {
      border-radius: 16px; }
  body#decisive_engine .slogan h2,
  body#aigc_experience .slogan h2 {
    text-align: left;
    font-size: 26px; }
  body#decisive_engine .slogan h5,
  body#aigc_experience .slogan h5 {
    font-size: 14px; }
  body#decisive_engine .feature {
    width: 100vw;
    overflow: hidden; }
    body#decisive_engine .feature .card {
      padding: 20px 12px 36px; }
      body#decisive_engine .feature .card .section_label {
        padding-left: 8px;
        color: #B9B9B9; }
      body#decisive_engine .feature .card h4 {
        font-size: 24px;
        line-height: 32px; }
      body#decisive_engine .feature .card .intro {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
        padding-left: 8px;
        padding-right: 8px; }
    body#decisive_engine .feature .bg {
      right: -100%; }
  body#aigc_experience .industry {
    margin-bottom: 0;
    padding: 80px 20px 40px; }
    body#aigc_experience .industry h2 {
      font-size: 32px;
      text-align: left; }
    body#aigc_experience .industry h5 {
      font-size: 16px;
      text-align: left; }
    body#aigc_experience .industry section {
      padding: 20px 12px; }
    body#aigc_experience .industry h4 {
      font-size: 24px;
      font-weight: 500;
      line-height: 32px;
      margin-top: 16px;
      margin-bottom: 28px; }
      body#aigc_experience .industry h4 span {
        width: 80px;
        height: 80px;
        border-radius: 20px; }
        body#aigc_experience .industry h4 span img {
          width: 52px;
          height: 52px; } }
