@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  margin: 0 0 12px 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}

.col {
  padding-left: 6px;
  padding-right: 6px;
  flex: 1 1 0%;
  min-width: 0;
}

.col-auto {
  flex: 0 0 auto;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 640px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* Direction */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Justify Content (main axis) */
.justify-start {
  justify-content: flex-start;
}

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

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Align Items (cross axis) */
.items-start {
  align-items: flex-start;
}

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

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

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

/* Align Content (multi-line only) */
.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

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

.text-muted {
  color: #6b7280;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 12px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 12px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.pb-2 {
  padding-bottom: 12px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.pb-5 {
  padding-bottom: 32px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 8px !important;
}

.pt-2 {
  padding-top: 12px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pt-5 {
  padding-top: 32px !important;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 12px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 24px;
}

.gap-5 {
  gap: 32px;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fade-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Generated width utilities (fractions) */
.w-1\/2 {
  width: 50% !important;
}

.w-1\/3 {
  width: 33.3333333333% !important;
}

.w-2\/3 {
  width: 66.6666666667% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-2\/4 {
  width: 50% !important;
}

.w-3\/4 {
  width: 75% !important;
}

.w-1\/5 {
  width: 20% !important;
}

.w-2\/5 {
  width: 40% !important;
}

.w-3\/5 {
  width: 60% !important;
}

.w-4\/5 {
  width: 80% !important;
}

.w-1\/6 {
  width: 16.6666666667% !important;
}

.w-2\/6 {
  width: 33.3333333333% !important;
}

.w-3\/6 {
  width: 50% !important;
}

.w-4\/6 {
  width: 66.6666666667% !important;
}

.w-5\/6 {
  width: 83.3333333333% !important;
}

.w-1\/12 {
  width: 8.3333333333% !important;
}

.w-2\/12 {
  width: 16.6666666667% !important;
}

.w-3\/12 {
  width: 25% !important;
}

.w-4\/12 {
  width: 33.3333333333% !important;
}

.w-5\/12 {
  width: 41.6666666667% !important;
}

.w-6\/12 {
  width: 50% !important;
}

.w-7\/12 {
  width: 58.3333333333% !important;
}

.w-8\/12 {
  width: 66.6666666667% !important;
}

.w-9\/12 {
  width: 75% !important;
}

.w-10\/12 {
  width: 83.3333333333% !important;
}

.w-11\/12 {
  width: 91.6666666667% !important;
}

.w-full {
  width: 100% !important;
}

.w-100 {
  width: 100px !important;
}

.w-120 {
  width: 120px !important;
}

.w-130 {
  width: 130px !important;
}

.w-140 {
  width: 140px !important;
}

.w-150 {
  width: 150px !important;
}

.h-auto {
  height: auto !important;
}

.h-0 {
  height: 0 !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

.h-20 {
  height: 20px !important;
}

.h-30 {
  height: 30px !important;
}

.h-40 {
  height: 40px !important;
}

.h-50 {
  height: 50px !important;
}

.h-60 {
  height: 60px !important;
}

.h-70 {
  height: 70px !important;
}

.h-80 {
  height: 80px !important;
}

.h-90 {
  height: 90px !important;
}

.h-100 {
  height: 100px !important;
}

.h-110 {
  height: 110px !important;
}

.h-120 {
  height: 120px !important;
}

.h-130 {
  height: 130px !important;
}

.h-140 {
  height: 140px !important;
}

.h-150 {
  height: 150px !important;
}

.h-1\/2 {
  height: 50% !important;
}

.min-h-1\/2 {
  min-height: 50% !important;
}

.max-h-1\/2 {
  max-height: 50% !important;
}

.h-1\/3 {
  height: 33.3333333333% !important;
}

.min-h-1\/3 {
  min-height: 33.3333333333% !important;
}

.max-h-1\/3 {
  max-height: 33.3333333333% !important;
}

.h-2\/3 {
  height: 66.6666666667% !important;
}

.min-h-2\/3 {
  min-height: 66.6666666667% !important;
}

.max-h-2\/3 {
  max-height: 66.6666666667% !important;
}

.h-1\/4 {
  height: 25% !important;
}

.min-h-1\/4 {
  min-height: 25% !important;
}

.max-h-1\/4 {
  max-height: 25% !important;
}

.h-2\/4 {
  height: 50% !important;
}

.min-h-2\/4 {
  min-height: 50% !important;
}

.max-h-2\/4 {
  max-height: 50% !important;
}

.h-3\/4 {
  height: 75% !important;
}

.min-h-3\/4 {
  min-height: 75% !important;
}

.max-h-3\/4 {
  max-height: 75% !important;
}

.h-1\/5 {
  height: 20% !important;
}

.min-h-1\/5 {
  min-height: 20% !important;
}

.max-h-1\/5 {
  max-height: 20% !important;
}

.h-2\/5 {
  height: 40% !important;
}

.min-h-2\/5 {
  min-height: 40% !important;
}

.max-h-2\/5 {
  max-height: 40% !important;
}

.h-3\/5 {
  height: 60% !important;
}

.min-h-3\/5 {
  min-height: 60% !important;
}

.max-h-3\/5 {
  max-height: 60% !important;
}

.h-4\/5 {
  height: 80% !important;
}

.min-h-4\/5 {
  min-height: 80% !important;
}

.max-h-4\/5 {
  max-height: 80% !important;
}

.h-1\/6 {
  height: 16.6666666667% !important;
}

.min-h-1\/6 {
  min-height: 16.6666666667% !important;
}

.max-h-1\/6 {
  max-height: 16.6666666667% !important;
}

.h-2\/6 {
  height: 33.3333333333% !important;
}

.min-h-2\/6 {
  min-height: 33.3333333333% !important;
}

.max-h-2\/6 {
  max-height: 33.3333333333% !important;
}

.h-3\/6 {
  height: 50% !important;
}

.min-h-3\/6 {
  min-height: 50% !important;
}

.max-h-3\/6 {
  max-height: 50% !important;
}

.h-4\/6 {
  height: 66.6666666667% !important;
}

.min-h-4\/6 {
  min-height: 66.6666666667% !important;
}

.max-h-4\/6 {
  max-height: 66.6666666667% !important;
}

.h-5\/6 {
  height: 83.3333333333% !important;
}

.min-h-5\/6 {
  min-height: 83.3333333333% !important;
}

.max-h-5\/6 {
  max-height: 83.3333333333% !important;
}

.h-1\/12 {
  height: 8.3333333333% !important;
}

.min-h-1\/12 {
  min-height: 8.3333333333% !important;
}

.max-h-1\/12 {
  max-height: 8.3333333333% !important;
}

.h-2\/12 {
  height: 16.6666666667% !important;
}

.min-h-2\/12 {
  min-height: 16.6666666667% !important;
}

.max-h-2\/12 {
  max-height: 16.6666666667% !important;
}

.h-3\/12 {
  height: 25% !important;
}

.min-h-3\/12 {
  min-height: 25% !important;
}

.max-h-3\/12 {
  max-height: 25% !important;
}

.h-4\/12 {
  height: 33.3333333333% !important;
}

.min-h-4\/12 {
  min-height: 33.3333333333% !important;
}

.max-h-4\/12 {
  max-height: 33.3333333333% !important;
}

.h-5\/12 {
  height: 41.6666666667% !important;
}

.min-h-5\/12 {
  min-height: 41.6666666667% !important;
}

.max-h-5\/12 {
  max-height: 41.6666666667% !important;
}

.h-6\/12 {
  height: 50% !important;
}

.min-h-6\/12 {
  min-height: 50% !important;
}

.max-h-6\/12 {
  max-height: 50% !important;
}

.h-7\/12 {
  height: 58.3333333333% !important;
}

.min-h-7\/12 {
  min-height: 58.3333333333% !important;
}

.max-h-7\/12 {
  max-height: 58.3333333333% !important;
}

.h-8\/12 {
  height: 66.6666666667% !important;
}

.min-h-8\/12 {
  min-height: 66.6666666667% !important;
}

.max-h-8\/12 {
  max-height: 66.6666666667% !important;
}

.h-9\/12 {
  height: 75% !important;
}

.min-h-9\/12 {
  min-height: 75% !important;
}

.max-h-9\/12 {
  max-height: 75% !important;
}

.h-10\/12 {
  height: 83.3333333333% !important;
}

.min-h-10\/12 {
  min-height: 83.3333333333% !important;
}

.max-h-10\/12 {
  max-height: 83.3333333333% !important;
}

.h-11\/12 {
  height: 91.6666666667% !important;
}

.min-h-11\/12 {
  min-height: 91.6666666667% !important;
}

.max-h-11\/12 {
  max-height: 91.6666666667% !important;
}

.min-h-screen {
  min-height: 100vh !important;
}

.max-h-screen {
  max-height: 100vh !important;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

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

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

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-7 {
  z-index: 7;
}

.overflow-hidden {
  overflow: hidden;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative !important;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.rounded-xs {
  border-radius: 4px !important;
}

.rounded-sm {
  border-radius: 6px !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.rounded-2xl {
  border-radius: 20px !important;
}

.rounded-3xl {
  border-radius: 24px !important;
}

.rounded-4xl {
  border-radius: 30px !important;
}

.align-center {
  align-items: center !important;
}

html {
  scroll-behavior: smooth;
}

body {
  transform: none;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  body .mainlayout {
    transform: scale(0.9);
    transform-origin: top left;
    width: 111.11%;
  }
  body .mainlayout .vertical-centered-box {
    height: 111.11dvh !important;
  }
}

h1 {
  color: white;
  font-size: 64px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  h2 {
    font-size: 24px;
  }
}

.btn {
  color: white;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  height: 48px;
  position: relative;
  background: #0000FF;
  border-radius: 500px;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
@media (max-width: 1023.98px) {
  .btn {
    font-size: 12px;
    padding: 6px 24px;
    height: 36px;
  }
  .btn img {
    width: 24px;
    height: 24px;
  }
}
.btn.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn.btn-outline:hover {
  background: #0000FF;
  transition: all 0.3s ease-in-out;
  border-color: #0000FF;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn.btn-white {
  background: #FFFFFF;
  color: #0000FF;
}

.btn-group {
  display: flex;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

section {
  overflow: hidden;
}

#hola {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: #000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 9999;
  top: 0;
  left: 0;
}
#hola.hide {
  opacity: 0;
  transform: translateY(-40px); /* slide UP */
  pointer-events: none;
}
#hola .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100dvh;
  text-align: center;
  z-index: 9999;
  background-color: black;
}
#hola .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
#hola .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
#hola .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}
#hola .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}
#hola .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
#hola lesshat-selector {
  -lh-property: 0;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hola [not-existing] {
  zoom: 1;
}
#hola lesshat-selector {
  -lh-property: 0;
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
#hola [not-existing] {
  zoom: 1;
}
#hola lesshat-selector {
  -lh-property: 0;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hola [not-existing] {
  zoom: 1;
}

.preloader,
.mainlayout {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Preloader visible by default */
.preloader {
  opacity: 1;
  visibility: visible;
}

/* Main hidden by default */
.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Main visible state */
.mainlayout {
  opacity: 1;
  visibility: visible;
}

/* NAVBAR */
header.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1023.98px) {
  header.navbar {
    padding: 20px;
  }
}
header .logo img {
  max-height: 40px;
}
header .nav-links-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .nav-links {
  display: flex;
  gap: 4px;
  /* MOBILE MENU */
}
header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding: 8px 14px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.4s ease-in-out;
  border-radius: 500px;
}
header .nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 500px;
  transition: background 0.4s ease-in-out;
}
header .nav-links a:hover::after {
  visibility: hidden;
  transition: visibility 0.1s ease-in-out;
}
header .nav-links a:hover .submenu {
  display: block;
}
header .nav-links a::after {
  content: "•";
  color: #4DD2FF;
  margin-left: 8px;
}
@media (max-width: 1023.98px) {
  header .nav-links a::after {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  header .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 50px;
    border-radius: 20px;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    display: none;
  }
  header .nav-links.active {
    display: flex;
  }
  header .nav-links li {
    width: 100%;
    text-align: center;
  }
  header .nav-links .btn-contact {
    background: #1a23ff;
  }
}
header ul.sub-menu {
  position: absolute;
  top: 60px;
  left: 0px;
  min-width: 180px;
  z-index: 999;
  width: 280px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 50px;
  border-radius: 20px;
}
@media (max-width: 1023.98px) {
  header ul.sub-menu {
    position: relative;
    border: 0;
  }
}
header ul.sub-menu li a {
  color: #FFFFFF;
  font-size: 18px;
}
header ul.sub-menu li a:hover {
  color: #4DD2FF;
}
header ul.sub-menu li a::after {
  display: none;
}
header .btn-contact {
  background: #1a23ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 1023.98px) {
  header .btn-contact {
    display: none;
  }
}
header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
header .hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}
@media (max-width: 1023.98px) {
  header .hamburger {
    display: flex;
  }
}
header ul {
  list-style: none;
}

.bg-transparent {
  background: transparent !important;
}

.contact-bg {
  background: #000000 url("../imgs/contact-bg.png") no-repeat top center/cover;
}

.hero-wrap {
  background: url("../imgs/hero-bg-web.webp") no-repeat center center/cover;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}
@media (max-width: 1023.98px) {
  .hero-wrap {
    min-height: 580px;
  }
}
@media (max-width: 767.98px) {
  .hero-wrap {
    min-height: 80vh;
  }
}
.hero-wrap.about-bg {
  background: #000000 url("../imgs/about-bg.png") no-repeat top center/cover;
}
@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}

.swiper {
  z-index: 0;
}

.heroslider {
  overflow: visible;
}

.hero-slider {
  height: calc(100% - 88px);
  align-content: center;
}
.hero-slider .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slider .hero-content .slide-img {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .hero-slider .hero-content .slide-img {
    display: none;
  }
}
.hero-slider .hero-content .slide-img img {
  width: 100%;
  height: auto;
}
.hero-slider .hero-content .slide-content {
  width: 100%;
  text-align: left;
  padding: 74px;
  position: relative;
}
.hero-slider .hero-content .slide-content::before {
  /* Ellipse 122 */
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: square;
  background: rgba(0, 1, 27, 0.5);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1;
}
@media (max-width: 1023.98px) {
  .hero-slider .hero-content .slide-content::before {
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.hero-slider .hero-content .slide-content h1 {
  color: white;
  font-size: 64px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 1023.98px) {
  .hero-slider .hero-content .slide-content h1 {
    font-size: 32px;
    text-align: center;
  }
}
.hero-slider .hero-content .slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 1023.98px) {
  .hero-slider .hero-content .slide-content p {
    font-size: 14px;
    text-align: center;
  }
}
.hero-slider .hero-content .slide-content .btn-learn-more {
  background: #1a23ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 1023.98px) {
  .hero-slider .hero-content .slide-content .btn-learn-more {
    margin: 0 auto;
  }
}

.swiper-pagination {
  bottom: -80px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #9ED7EA;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.info-section {
  background: url("../imgs/info-bg.png") no-repeat center center/cover;
  padding: 100px 0;
}
@media (max-width: 1023.98px) {
  .info-section {
    padding: 60px 0;
  }
}
.info-section .info-content {
  display: flex;
  gap: 130px;
  color: white;
}
@media (max-width: 1023.98px) {
  .info-section .info-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.info-section .info-content h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .info-section .info-content h2 {
    font-size: 24px;
  }
}
.info-section .info-content .info-text {
  width: 100%;
}
.info-section .info-content .info-text p {
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 1023.98px) {
  .info-section .info-content .info-text p {
    font-size: 14px;
  }
}

.content-slider-section {
  position: relative;
}
@media (max-width: 1023.98px) {
  .content-slider-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .content-slider-section .container .content-text {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.content-slider-section .vod-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .content-slider-section .vod-wrap {
    position: relative;
    width: 100%;
  }
}
.content-slider-section .vod-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contentslider .content-text {
  margin: 48px 0;
}
.contentslider .content-text h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  .contentslider .content-text h2 {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 1023.98px) {
  .contentslider .content-text p {
    font-size: 16px;
    text-align: center;
  }
}
.contentslider .slide-content-wrap {
  align-items: center;
}
@media (max-width: 1023.98px) {
  .contentslider .slide-content-wrap {
    flex-direction: column;
  }
}

.accordion-wrapper {
  width: 100%;
  margin: 40px auto 0;
}
.accordion-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.accordion-wrapper .accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  position: relative;
  padding: 0px 16px 0 26px;
  margin-bottom: 20px;
}
.accordion-wrapper .accordion:last-child {
  margin-bottom: 0;
}
.accordion-wrapper .accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper .accordion .accordion-label {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  color: black;
}
.accordion-wrapper .accordion .accordion-label::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  top: 10px;
  left: 0;
  background: #695AFF;
}
.accordion-wrapper .accordion .accordion-label::after {
  content: "❯";
  width: 16px;
  height: 16px;
  text-align: center;
  transition: all 0.3s;
  display: none;
}
.accordion-wrapper .accordion .accordion-content {
  color: rgb(4, 57, 94);
  background: white;
  transition: all 0.3s;
  margin-top: 2px;
}
.accordion-wrapper .accordion .accordion-content p {
  margin: 0;
  color: #000000;
  font-size: 18px;
}

.threecol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
@media (max-width: 1023.98px) {
  .threecol-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.threecol-grid .grid-item {
  position: relative;
  padding: 20px 15px 30px;
  border-radius: 20px;
  background: #000;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  overflow: hidden;
  gap: 16px;
}
@media (max-width: 1023.98px) {
  .threecol-grid .grid-item {
    height: auto;
  }
}
.threecol-grid .grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/gradbg.png") no-repeat center center/cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 1s ease;
  z-index: 0;
  transform: scale(1);
}
.threecol-grid .grid-item > * {
  position: relative;
  z-index: 1;
}
.threecol-grid .grid-item:hover::before {
  transform: scale(1.3);
  opacity: 1;
}
.threecol-grid .grid-item p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
}
.threecol-grid .grid-item p span {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.why-miravi-section {
  padding: 80px 0;
  background: url("../imgs/whymiravi.png") no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .why-miravi-section {
    padding: 60px 0;
  }
}
.why-miravi-section h2 {
  color: white;
}
.why-miravi-section h2 span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .why-miravi-section h2 {
    text-align: center;
  }
}
.why-miravi-section p {
  color: white;
}
@media (max-width: 1023.98px) {
  .why-miravi-section p {
    text-align: center;
  }
}

.reasons-wrap {
  display: flex;
  gap: 48px;
  margin-top: 80px;
}
@media (max-width: 1023.98px) {
  .reasons-wrap {
    flex-direction: column;
  }
}
.reasons-wrap .left-section,
.reasons-wrap .right-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 30%;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .left-section,
  .reasons-wrap .right-section {
    width: 100%;
    gap: 24px;
  }
}
.reasons-wrap .middle-section {
  width: 40%;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .middle-section {
    text-align: center;
  }
}
.reasons-wrap .middle-section img {
  width: 100%;
  height: auto;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .middle-section img {
    max-width: 310px;
  }
}
@media (max-width: 1023.98px) {
  .reasons-wrap .middle-section {
    width: 100%;
  }
}
.reasons-wrap .reason-box {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .reason-box {
    align-items: center;
  }
}
.reasons-wrap .reason-box .icon {
  width: 48px;
  height: 48px;
  background: #0000FF;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .reason-box .icon {
    width: 36px;
    height: 36px;
  }
}
.reasons-wrap .reason-box .text-warp {
  width: calc(100% - 68px);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .reasons-wrap .reason-box .text-warp {
    font-size: 16px;
    line-height: normal;
  }
}

.capabilities-section {
  padding: 80px 0;
  background-color: #000;
  /* -- Slider Wrapper --------------------------- */
  /* -- Responsive ----------------------- */
}
.capabilities-section h2 {
  color: white;
  text-align: center;
}
.capabilities-section * {
  box-sizing: border-box;
}
.capabilities-section .feature-slider {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.capabilities-section .side-panel {
  width: 190px;
  height: 420px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  border: none;
  cursor: pointer;
  opacity: 0.6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.capabilities-section .side-panel span {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #FFFFFF;
}
.capabilities-section .side-panel:hover {
  opacity: 1;
}
.capabilities-section .side-panel.left {
  border-radius: 28px 0 0 28px;
  background: url(../imgs/sidepanelbg.png) no-repeat center center/cover;
}
.capabilities-section .side-panel.left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(93.74, 39.98, 255, 0.8);
  border-radius: 28px 0 0 28px;
}
.capabilities-section .side-panel.right {
  border-radius: 0 28px 28px 0;
  background: url(../imgs/sidepanelbg2.png) no-repeat center center/cover;
}
.capabilities-section .side-panel.right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(93.74, 39.98, 255, 0.8);
  border-radius: 0 28px 28px 0;
}
.capabilities-section .cards {
  position: relative;
  width: 520px;
  height: 678px;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  border-radius: 28px;
}
.capabilities-section .card {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.capabilities-section .card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.capabilities-section .card.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}
.capabilities-section .card.exit-right {
  transform: translateX(100%);
  opacity: 0;
}
.capabilities-section .card .image {
  height: 50%;
  background: linear-gradient(135deg, #c084fc, #60a5fa);
  overflow: hidden;
}
.capabilities-section .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.capabilities-section .card .content {
  padding: 32px;
}
.capabilities-section .card .content h3 {
  margin-bottom: 12px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #5E28FF;
}
.capabilities-section .card .content p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  margin: 0;
}
.capabilities-section .card .content ul li {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000000;
}
.capabilities-section .card .content ul li::marker {
  color: #695AFF;
}
@media (max-width: 1023.98px) {
  .capabilities-section .side-panel {
    display: none;
  }
  .capabilities-section .cards {
    width: 100%;
    height: auto;
    background: transparent;
  }
  .capabilities-section .card {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 10px;
  }
}

.capabilitiesslider {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.capabilitiesslider .capability-card {
  background: #FFFFFF;
  border-radius: 30px;
}
.capabilitiesslider .capability-card .capability-img {
  width: 100%;
  height: 375px;
}
.capabilitiesslider .capability-card .capability-img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.capabilitiesslider .capability-card .capability-content {
  padding: 32px 0;
}
.capabilitiesslider .capability-card .capability-content .title-wrap {
  padding: 0 20px;
}
.capabilitiesslider .capability-card .capability-content .title-wrap h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.capabilitiesslider .capability-card .capability-content .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}
.capabilitiesslider .capability-card .capability-content ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.capabilitiesslider .capability-card .capability-content ul li {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  padding: 16px 20px 16px 40px;
  border-top: 1px solid #000000;
  position: relative;
}
.capabilitiesslider .capability-card .capability-content ul li:last-child {
  border-bottom: 1px solid #000000;
}
.capabilitiesslider .capability-card .capability-content ul li::before {
  color: #695AFF;
  content: "•";
  position: absolute;
  left: 20px;
  top: 16px;
}
.capabilitiesslider .capability-card .capability-content .btn {
  margin-left: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight {
  padding: 80px 0;
}
@media (max-width: 1023.98px) {
  .highlight {
    padding: 20px 0;
  }
}
.highlight .highlight-content {
  color: white;
  background: url("../imgs/highlight-bg.png") no-repeat center center/cover;
  border-radius: 50px;
  height: 600px;
  padding: 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1023.98px) {
  .highlight .highlight-content {
    height: auto;
    text-align: center;
    padding: 40px 15px;
  }
}
.highlight .highlight-content h2 {
  font-family: "Nunito", sans-serif;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 300;
  font-size: 128px;
  line-height: 120px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .highlight .highlight-content h2 {
    font-size: 64PX;
    line-height: 64px;
  }
}
.highlight .highlight-content p {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .highlight .highlight-content p {
    font-size: 16px;
    line-height: normal;
  }
}

.deliver-section {
  padding: 80px 0;
  background: url("../imgs/deliver-bg.png") no-repeat center center/cover;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .deliver-section {
    padding: 60px 0;
  }
}
.deliver-section .title-wrap {
  color: white;
}
@media (max-width: 1023.98px) {
  .deliver-section .title-wrap {
    text-align: center;
  }
}
.deliver-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .deliver-section .title-wrap h2 {
    font-size: 24px;
    line-height: normal;
  }
}
.deliver-section .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .deliver-section .title-wrap p {
    font-size: 16px;
    line-height: normal;
  }
}

.grapslider {
  overflow: visible;
  margin-top: 80px;
}
@media (max-width: 1023.98px) {
  .grapslider {
    padding: 0 40px;
  }
}
.grapslider .swiper-wrapper {
  align-items: center;
  height: 400px;
}
.grapslider .swiper-slide {
  width: 360px;
  height: 360px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .grapslider .swiper-slide {
    width: 300px;
    height: 300px;
  }
}
.grapslider .swiper-slide:hover {
  width: 400px;
  height: 400px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .grapslider .swiper-slide:hover {
    width: 360px;
    height: 360px;
  }
}
.grapslider .swiper-slide:hover .deliver-card {
  background: #5E28FF;
  width: 100%;
  height: 100%;
  padding: 80px 100px;
  transition: all 0.3s ease-in-out;
}
.grapslider .deliver-card {
  width: 360px;
  height: 360px;
  background: rgba(94, 40, 255, 0.3);
  border-radius: 999px;
  padding: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023.98px) {
  .grapslider .deliver-card {
    width: 300px;
    height: 300px;
    padding: 56px;
  }
}
.grapslider .deliver-card p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .grapslider .deliver-card p {
    font-size: 16px;
    line-height: 18px;
  }
}
.grapslider .deliver-card .card-count {
  background: url("../imgs/play-icon.svg") no-repeat center center/cover;
  position: absolute;
  width: 136px;
  height: 136px;
  content: "";
  left: -74px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .grapslider .deliver-card .card-count {
    font-size: 24px;
    line-height: 26px;
    width: 84px;
    height: 84px;
    left: -36px;
  }
}

.enterprises-wrap {
  margin-top: 140px;
}
.enterprises-wrap .title-wrap {
  text-align: center;
}
.enterprises-wrap .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .enterprises-wrap .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.enterprises-wrap .title-wrap h2 span {
  color: #4DD2FF;
}

.enterprises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 1023.98px) {
  .enterprises-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.enterprises-grid .enterprise-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.enterprises-grid .enterprise-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: 30px;
  height: 320px;
  color: white;
}
.enterprises-grid .enterprise-card .enterprise-name {
  font-family: "Nunito", sans-serif;
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
  z-index: 1;
}
.enterprises-grid .enterprise-card .enterprise-desc {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  z-index: 1;
}
.enterprises-grid .enterprise-card.card1 {
  background: url("../imgs/entcard1.png") no-repeat center center/cover;
}
.enterprises-grid .enterprise-card.card2 {
  background: url("../imgs/entcard2.png") no-repeat center center/cover;
}
.enterprises-grid .enterprise-card.card3 {
  background: url("../imgs/entcard3.png") no-repeat center center/cover;
  height: 100%;
  min-height: 320px;
  position: relative;
}
.enterprises-grid .enterprise-card.card3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 320px;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  border-radius: 30px;
  z-index: 0;
  background: rgba(0, 73, 231, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.enterprises-grid .enterprise-card.card4 {
  background: #0000FF;
}
.enterprises-grid .enterprise-card.card5 {
  background: url("../imgs/entcard5.png") no-repeat center center/cover;
}

.products-section {
  padding: 80px 0;
  background: white;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .products-section {
    padding: 60px 0;
  }
}
.products-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .products-section .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }
}
.products-section .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #000;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .products-section .title-wrap p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
}
.products-section .productslider {
  overflow: visible;
  margin-top: 60px;
}
.products-section .swiper-slide {
  min-width: 360px;
  max-width: 410px;
  width: 100%;
}
.products-section .product-card {
  background: #F5F5F5;
  border-radius: 20px;
  width: 100%;
  height: 80vh;
  min-height: 380px;
  max-height: 560px;
  background: url("../imgs/product-img1.png") no-repeat center center/cover;
  display: flex;
  align-items: end;
}
@media (max-width: 1023.98px) {
  .products-section .product-card {
    height: 520px;
  }
}
.products-section .product-card:hover .product-img img {
  transform: scale(1.1);
  transition: transform 0.8s ease-in-out;
}
.products-section .product-card .product-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  overflow: hidden;
  z-index: 0;
}
.products-section .product-card .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.products-section .product-card .product-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(15px);
  -moz-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  min-height: 116px;
  transition: background 0.3s ease-in-out;
}
.products-section .product-card .product-content h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .products-section .product-card .product-content h3 {
    font-size: 24px;
  }
}
.products-section .product-card .product-content p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
  font-size: 16px;
  margin: 0;
  padding-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}
@media (max-width: 1023.98px) {
  .products-section .product-card .product-content p {
    font-size: 16px;
  }
}
.products-section .product-card .product-content:hover p {
  padding-top: 20px;
  max-height: 200px;
  opacity: 1;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}

.success-stories {
  padding: 80px 0;
  background: url("../imgs/success-bg.png") no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .success-stories {
    padding: 60px 0;
  }
}
.success-stories .title-wrap {
  text-align: center;
}
.success-stories .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .success-stories .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.success-stories .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: white;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .success-stories .title-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.success-stories .stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 1023.98px) {
  .success-stories .stories-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 36px;
  }
}
.success-stories .stories-grid .story-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  padding: 40px;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .success-stories .stories-grid .story-card {
    padding: 20px;
  }
}
.success-stories .stories-grid .story-card .story-title {
  font-family: "Nunito", sans-serif;
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: #FFFFFF;
  z-index: 1;
}
@media (max-width: 1023.98px) {
  .success-stories .stories-grid .story-card .story-title {
    font-size: 24px;
  }
}
.success-stories .stories-grid .story-card .story-title span {
  font-weight: 700;
  font-size: 48px;
  color: #5E28FF;
}
@media (max-width: 1023.98px) {
  .success-stories .stories-grid .story-card .story-title span {
    font-size: 32px;
  }
}
.success-stories .stories-grid .story-card .story-title span.cyan {
  color: #4DD2FF;
}

.insights-section {
  padding: 80px 0;
  background: url("../imgs/insights-bg.png") no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .insights-section {
    padding: 60px 0;
  }
}
.insights-section .insights-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 74px 190px;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .insights-section .insights-wrap {
    padding: 40px 20px;
  }
}
.insights-section .insights-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .insights-section .insights-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.insights-section .insights-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 10px;
}
@media (max-width: 1023.98px) {
  .insights-section .insights-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.insights-section .insights-wrap p.sub {
  font-size: 18px;
  line-height: normal;
}

.footer {
  background: url("../imgs/footer-bg.png") no-repeat center center/cover;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .footer {
    padding: 60px 0;
  }
}
.footer .partner-wrap .title-wrap {
  display: flex;
  gap: 80px;
}
@media (max-width: 1023.98px) {
  .footer .partner-wrap .title-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .partner-wrap .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .footer .partner-wrap .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.footer .partner-wrap .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 1023.98px) {
  .footer .partner-wrap .title-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.footer .partner-wrap .partnerslider {
  overflow: visible;
  margin: 80px 0;
  display: flex;
  align-items: center;
  animation: scrollanimation 30s linear infinite;
  gap: 20px;
}
.footer .partner-wrap .partnerslider.noanimation {
  animation: none !important;
}
.footer .partner-wrap .partnerslider .partner-logo {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}
@keyframes scrollanimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer .getintouch {
  background: #0000FF;
  border-radius: 30px;
  padding: 110px;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .footer .getintouch {
    padding: 40px 20px;
  }
}
.footer .getintouch h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .footer .getintouch h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.footer .getintouch p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
  margin: 0 0 40px;
}
@media (max-width: 1023.98px) {
  .footer .getintouch p {
    font-size: 16px;
    line-height: 22px;
  }
}
.footer .site-footer {
  background: #000;
  color: #fff;
  margin-top: 80px;
  padding: 40px 20px 20px 20px;
  border-radius: 30px 30px 0 0;
}
.footer .site-footer a {
  color: #fff;
  text-decoration: underline;
}
.footer .footer-brand {
  margin-bottom: 40px;
}
.footer .footer-brand img {
  max-width: 180px;
  height: auto;
}
.footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.footer .footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-col ul li {
  font-size: 14px;
  line-height: normal;
  opacity: 0.9;
  margin-bottom: 10px;
}
.footer .footer-col ul li a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-col ul li a:hover {
  color: #3DCEFF;
}
@media (max-width: 1024px) {
  .footer .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer .site-footer {
    padding: 40px 16px;
  }
  .footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer .footer-brand {
    text-align: center;
  }
}
.footer .divider {
  height: 1px;
  background: #5E28FF;
}
.footer .copyright {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
@media (max-width: 1023.98px) {
  .footer .copyright {
    padding: 20px 20px;
  }
}
@media (max-width: 767.98px) {
  .footer .copyright {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .copyright .copyright-text {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
.footer .copyright .social-icons a {
  margin-left: 10px;
  color: #FFFFFF;
  text-decoration: none;
}
.footer .copyright .social-icons a:hover {
  color: #3DCEFF;
}

.about-intro {
  padding: 80px 0;
}
.about-intro .title-wrap {
  margin: 0 auto;
  max-width: 900px;
}
.about-intro .title-wrap h1 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 128px;
  line-height: 148px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .about-intro .title-wrap h1 {
    font-size: 64px;
    line-height: 74px;
  }
}
.about-intro .title-wrap h1 span {
  color: #4DD2FF;
}
.about-intro .title-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 20px;
}
@media (max-width: 1023.98px) {
  .about-intro .title-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.about-intro .title-wrap p.subtext {
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
}
@media (max-width: 1023.98px) {
  .about-intro .title-wrap p.subtext {
    font-size: 24px;
    line-height: 33px;
  }
}
.about-intro .video-wrap {
  margin-top: 32px;
  position: relative;
  width: 100%;
  aspect-ratio: 1190/763;
}
.about-intro .video-wrap svg {
  width: 100%;
}
.about-intro .video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  mask: url(#video-mask);
  -webkit-mask: url(#video-mask);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media (max-width: 1023.98px) {
  .about-intro .video-wrap video {
    -webkit-mask: none;
            mask: none;
    border-radius: 30px;
  }
}
.about-intro .about-wrap {
  display: flex;
  gap: 74px;
  align-items: center;
  margin: 80px auto 0;
  max-width: 1000px;
}
@media (max-width: 1023.98px) {
  .about-intro .about-wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.about-intro .about-wrap .about-wrap-left {
  text-align: left;
  width: 100%;
}
.about-intro .about-wrap .about-wrap-left h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
}
.about-intro .about-wrap .about-wrap-left h2 span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .about-intro .about-wrap .about-wrap-left h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.about-intro .about-wrap .about-wrap-left p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
}
.about-intro .about-wrap .about-wrap-left p span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .about-intro .about-wrap .about-wrap-left p {
    font-size: 16px;
    line-height: 22px;
  }
}
.about-intro .about-wrap .about-wrap-right {
  text-align: left;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 40px 24px;
  width: 100%;
}
.about-intro .about-wrap .about-wrap-right h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
}
.about-intro .about-wrap .about-wrap-right h2 span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .about-intro .about-wrap .about-wrap-right h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.about-intro .about-wrap .about-wrap-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
}
.about-intro .about-wrap .about-wrap-right p span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .about-intro .about-wrap .about-wrap-right p {
    font-size: 16px;
    line-height: 22px;
  }
}
.about-intro .about-wrap .about-wrap-right p.subtext {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: #C0BED4;
  margin-bottom: 16px;
}

.whatwedo-section {
  padding: 80px 0;
}
@media (max-width: 1023.98px) {
  .whatwedo-section {
    padding: 60px 0;
  }
}
.whatwedo-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }
}
.whatwedo-section .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .title-wrap p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
}
.whatwedo-section .whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .whatwedo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.whatwedo-section .whatwedo-grid .whatwedo-card {
  background: #000000;
  border-radius: 30px;
  padding: 40px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .whatwedo-grid .whatwedo-card {
    height: auto;
    gap: 32px;
  }
}
.whatwedo-section .whatwedo-grid .whatwedo-card:hover {
  background: url(../imgs/whatwe-bg.png) no-repeat center center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.whatwedo-section .whatwedo-grid .whatwedo-card img {
  width: 48px;
  height: 48px;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .whatwedo-grid .whatwedo-card img {
    width: 32px;
    height: 32px;
  }
}
.whatwedo-section .whatwedo-grid .whatwedo-card h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .whatwedo-grid .whatwedo-card h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.whatwedo-section .whatwedo-grid .whatwedo-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .whatwedo-section .whatwedo-grid .whatwedo-card p {
    font-size: 16px;
    line-height: 22px;
  }
}

.howwework-section {
  padding: 80px 0;
  background: #000000 url("../imgs/howwe-bg.png") no-repeat top center/cover;
}
@media (max-width: 1023.98px) {
  .howwework-section {
    padding: 60px 0;
  }
}
.howwework-section .text-img {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .howwework-section .text-img {
    flex-direction: column;
  }
}
.howwework-section .text-img .text-wrap {
  width: 40%;
}
@media (max-width: 1023.98px) {
  .howwework-section .text-img .text-wrap {
    width: 100%;
  }
}
.howwework-section .text-img .text-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwework-section .text-img .text-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwework-section .text-img .text-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwework-section .text-img .text-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.howwework-section .text-img .img-wrap {
  width: 60%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .howwework-section .text-img .img-wrap {
    width: 100%;
  }
}
.howwework-section .text-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.howwework-section .ourbelief {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 60px 120px;
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .howwework-section .ourbelief {
    padding: 30px 20px;
  }
}
.howwework-section .ourbelief h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwework-section .ourbelief h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwework-section .ourbelief p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .howwework-section .ourbelief p {
    font-size: 16px;
    line-height: 22px;
  }
}
.howwework-section .ourbelief p.texthigh {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 20px;
}
.howwework-section .ourbelief p.texthigh span {
  color: #4DD2FF;
}
@media (max-width: 1023.98px) {
  .howwework-section .ourbelief p.texthigh {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwework-section .visionmission {
  display: flex;
  gap: 20px;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission {
    flex-direction: column;
  }
}
.howwework-section .visionmission .vision {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 60px 40px;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .vision {
    padding: 30px 20px;
  }
}
.howwework-section .visionmission .vision h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .vision h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwework-section .visionmission .vision p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .vision p {
    font-size: 16px;
    line-height: 22px;
  }
}
.howwework-section .visionmission .mission {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 60px 40px;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .mission {
    padding: 30px 20px;
  }
}
.howwework-section .visionmission .mission h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .mission h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwework-section .visionmission .mission p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .howwework-section .visionmission .mission p {
    font-size: 16px;
    line-height: 22px;
  }
}

.ourvalues-section {
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .ourvalues-section {
    padding: 60px 0;
  }
}
@media (max-width: 1023.98px) {
  .ourvalues-section .title-wrap {
    text-align: center;
  }
}
.ourvalues-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .title-wrap h2 {
    font-size: 24px;
    line-height: normal;
  }
}
.ourvalues-section .grapslider {
  overflow: visible;
  margin-top: 80px;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider {
    padding: 0 40px;
    margin-top: 40px;
  }
}
.ourvalues-section .grapslider .swiper-wrapper {
  align-items: center;
  height: 400px;
}
.ourvalues-section .grapslider .swiper-slide {
  width: 360px;
  height: 360px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider .swiper-slide {
    width: 300px;
    height: 300px;
  }
}
.ourvalues-section .grapslider .swiper-slide:hover {
  width: 400px;
  height: 400px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider .swiper-slide:hover {
    width: 360px;
    height: 360px;
  }
}
.ourvalues-section .grapslider .swiper-slide:hover .deliver-card {
  background: #5E28FF;
  width: 100%;
  height: 100%;
  padding: 80px 100px;
  transition: all 0.3s ease-in-out;
}
.ourvalues-section .grapslider .deliver-card {
  width: 360px;
  height: 360px;
  background: #0000FF;
  border-radius: 999px;
  padding: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider .deliver-card {
    width: 300px;
    height: 300px;
    padding: 56px;
  }
}
.ourvalues-section .grapslider .deliver-card p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider .deliver-card p {
    font-size: 16px;
    line-height: 18px;
  }
}
.ourvalues-section .grapslider .deliver-card .card-count {
  background: url("../imgs/playb-icon.png") no-repeat center center/cover;
  position: absolute;
  width: 180px;
  height: 221px;
  content: "";
  left: -100px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .ourvalues-section .grapslider .deliver-card .card-count {
    font-size: 12px;
    line-height: 19px;
    width: 90px;
    height: 112px;
    left: -36px;
  }
}

.footer-highlight {
  max-width: 1000px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 65px;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .footer-highlight {
    font-size: 24px;
    line-height: 33px;
  }
}
.footer-highlight span {
  color: #4DD2FF;
}

.datamodern-bg {
  background: #000000 url("../imgs/datamodern-bg.png") no-repeat top center/cover;
}

.datamodern-intro {
  margin-top: 96px;
}
@media (max-width: 1023.98px) {
  .datamodern-intro {
    margin-top: 0;
  }
}
.datamodern-intro .datamodern-wrap {
  display: flex;
  gap: 96px;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.datamodern-intro .datamodern-wrap .intro-wrap-left {
  width: 100%;
}
.datamodern-intro .datamodern-wrap .intro-wrap-left svg {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap .intro-wrap-left svg {
    width: 80%;
    height: auto;
    margin: 40px 0;
  }
}
.datamodern-intro .datamodern-wrap .intro-wrap-right {
  width: 100%;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap .intro-wrap-right {
    text-align: center;
  }
}
.datamodern-intro .datamodern-wrap .intro-wrap-right h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 87px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap .intro-wrap-right h2 {
    font-size: 48px;
    line-height: 64px;
  }
}
.datamodern-intro .datamodern-wrap .intro-wrap-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0 0 16px;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap .intro-wrap-right p {
    font-size: 16px;
    line-height: 22px;
  }
}
.datamodern-intro .datamodern-wrap .intro-wrap-right p.subtext {
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 12px;
}
@media (max-width: 1023.98px) {
  .datamodern-intro .datamodern-wrap .intro-wrap-right p.subtext {
    font-size: 24px;
    line-height: 33px;
  }
}

.datamodern-content {
  text-align: center;
  padding: 120px 0 80px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .datamodern-content {
    padding: 60px 0 40px;
  }
}
.datamodern-content h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .datamodern-content h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.datamodern-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .datamodern-content p {
    font-size: 16px;
    line-height: 22px;
  }
}

.twoblock-section {
  padding: 80px 0 40px;
  position: relative;
}
@media (max-width: 1023.98px) {
  .twoblock-section {
    padding: 60px 0;
  }
}
.twoblock-section::before {
  background-color: #5E28FF;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
  z-index: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-section::before {
    display: none;
  }
}
.twoblock-section .twoblock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.twoblock-section .twoblock-grid .block-left {
  padding: 0 40px;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-left {
    padding: 0 24px;
  }
}
.twoblock-section .twoblock-grid .block-left h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #000000;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-left h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.twoblock-section .twoblock-grid .block-left p {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  color: #000000;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-left p {
    font-size: 18px;
    line-height: 28px;
  }
}
.twoblock-section .twoblock-grid .block-left ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 40px;
}
.twoblock-section .twoblock-grid .block-left ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-left ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
.twoblock-section .twoblock-grid .block-left ul li::before {
  color: #695AFF;
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.twoblock-section .twoblock-grid .block-right {
  padding: 0 40px;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-right {
    padding: 24px;
  }
}
.twoblock-section .twoblock-grid .block-right h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-right h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.twoblock-section .twoblock-grid .block-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-right p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1023.98px) {
  .twoblock-section .twoblock-grid .block-right {
    background-color: #5E28FF;
  }
}

.howwehelp-section {
  padding: 80px 0;
  background: #000000 url("../imgs/howwehelp-bg.png") no-repeat top center/cover;
}
@media (max-width: 1023.98px) {
  .howwehelp-section {
    padding: 60px 0;
  }
}
.howwehelp-section .text-img {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img {
    flex-direction: column;
  }
}
.howwehelp-section .text-img .text-wrap {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img .text-wrap {
    width: 100%;
  }
}
.howwehelp-section .text-img .text-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img .text-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.howwehelp-section .text-img .text-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img .text-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.howwehelp-section .text-img .text-wrap ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 36px;
}
.howwehelp-section .text-img .text-wrap ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img .text-wrap ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
.howwehelp-section .text-img .text-wrap ul li::before {
  color: #FFFFFF;
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.howwehelp-section .text-img .img-wrap {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .text-img .img-wrap {
    width: 100%;
  }
}
.howwehelp-section .text-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.howwehelp-section .howwehelp-text {
  max-width: 1000px;
  margin: 120px auto 0;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .howwehelp-text {
    margin: 60px auto 0;
  }
}
.howwehelp-section .howwehelp-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  margin: 0;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .howwehelp-section .howwehelp-text p {
    font-size: 16px;
    line-height: 22px;
  }
}

.services-section {
  padding: 80px 0 0;
  background: #000000 url("../imgs/service-bg.png") no-repeat top center/cover;
}
@media (max-width: 1023.98px) {
  .services-section {
    padding: 60px 0;
  }
}
.services-section .title-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .services-section .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
@media (max-width: 1023.98px) {
  .services-section .capabilitiesslider {
    margin-top: 30px;
  }
}
.services-section .capabilitiesslider .capability-card .capability-content {
  padding: 32px 0;
}
.services-section .capabilitiesslider .capability-card .capability-content .title-wrap {
  padding: 0 24px;
}
.services-section .capabilitiesslider .capability-card .capability-content .title-wrap h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
.services-section .capabilitiesslider .capability-card .capability-content .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin: 0;
}

.twoblock-wrap {
  margin-top: 120px;
  padding: 60px 0 40px;
  position: relative;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap {
    margin-top: 60px;
  }
}
.twoblock-wrap::before {
  background-color: #5E28FF;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
  z-index: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap::before {
    display: none;
  }
}
.twoblock-wrap .twoblock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.twoblock-wrap .twoblock-grid .block-left {
  padding: 0 40px;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-left {
    padding: 0 24px;
  }
}
.twoblock-wrap .twoblock-grid .block-left h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-left h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.twoblock-wrap .twoblock-grid .block-left p {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  color: white;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-left p {
    font-size: 18px;
    line-height: 28px;
  }
}
.twoblock-wrap .twoblock-grid .block-left ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.twoblock-wrap .twoblock-grid .block-left ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: white;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-left ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
.twoblock-wrap .twoblock-grid .block-right {
  padding: 0 40px;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-right {
    padding: 24px;
  }
}
.twoblock-wrap .twoblock-grid .block-right h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-right h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.twoblock-wrap .twoblock-grid .block-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-right p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-right {
    background-color: #5E28FF;
  }
}
.twoblock-wrap .twoblock-grid .block-right ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.twoblock-wrap .twoblock-grid .block-right ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: white;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1023.98px) {
  .twoblock-wrap .twoblock-grid .block-right ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
.twoblock-wrap .twoblock-grid .block-right ul li::before {
  color: white;
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.whymatters-section {
  padding: 80px 0;
}
@media (max-width: 1023.98px) {
  .whymatters-section {
    padding: 60px 0;
  }
}
.whymatters-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .whymatters-section .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }
}
.whymatters-section .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #000;
}
@media (max-width: 1023.98px) {
  .whymatters-section .title-wrap p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
}
.whymatters-section .whymatters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1023.98px) {
  .whymatters-section .whymatters-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.whymatters-section .whymatters-grid .whymatters-card {
  background: #000000;
  border-radius: 30px;
  padding: 40px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .whymatters-section .whymatters-grid .whymatters-card {
    height: auto;
    gap: 32px;
  }
}
.whymatters-section .whymatters-grid .whymatters-card:hover {
  background: url(../imgs/whatwe-bg.png) no-repeat center center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.whymatters-section .whymatters-grid .whymatters-card h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 55px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .whymatters-section .whymatters-grid .whymatters-card h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.whymatters-section .whymatters-text {
  max-width: 1000px;
  margin: 80px auto 0;
}
.whymatters-section .whymatters-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}

.partnerslider {
  overflow: visible;
  margin: 80px 0;
  display: flex;
  align-items: center;
  animation: scrollanimation 30s linear infinite;
  gap: 20px;
}
.partnerslider.noanimation {
  animation: none !important;
}
.partnerslider .partner-logo {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}
@keyframes scrollanimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partnerview {
  overflow: visible;
  margin: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.partnerview .partner-logo {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
}
@media (max-width: 1023.98px) {
  .partnerview {
    animation: scrollanimation 10s linear infinite;
    justify-content: flex-start;
  }
}
@keyframes scrollanimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.advantage-section {
  padding: 80px 0;
  background: #000000 url("../imgs/advn-bg.png") no-repeat top center/cover;
}
@media (max-width: 1023.98px) {
  .advantage-section {
    padding: 60px 0;
  }
}
.advantage-section .text-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .advantage-section .text-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.advantage-section .text-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .advantage-section .text-wrap p {
    font-size: 20px;
    line-height: 27px;
  }
}
.advantage-section .theimpact {
  margin-top: 80px;
}
.advantage-section .theimpact h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.advantage-section .theimpact p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact p {
    font-size: 16px;
    line-height: 22px;
  }
}
.advantage-section .theimpact-grid {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 30px auto 0;
  }
}
.advantage-section .theimpact-grid .theimpact-card {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 40px;
  margin-top: 20px;
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact-grid .theimpact-card {
    padding: 24px;
    height: auto;
  }
}
.advantage-section .theimpact-grid .theimpact-card img {
  width: 48px;
  height: 48px;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact-grid .theimpact-card img {
    width: 36px;
    height: 36px;
  }
}
.advantage-section .theimpact-grid .theimpact-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 48px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .advantage-section .theimpact-grid .theimpact-card p {
    font-size: 18px;
    line-height: 26px;
  }
}

.toolsntech {
  margin-top: 80px;
}

.bottom-section {
  padding: 180px 0;
  background: url("../imgs/bottom-data-bg.png") no-repeat center center/cover;
  position: relative;
}
.bottom-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}
.bottom-section.datamod-bg {
  background: #000000 url("../imgs/datamod2-bg.png") no-repeat center center/cover;
}
.bottom-section.agentbtm-bg {
  background: #000000 url("../imgs/agentbtm-bg.png") no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .bottom-section {
    padding: 80px 0;
  }
}
.bottom-section .content-wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.bottom-section .content-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .bottom-section .content-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.bottom-section .content-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 10px;
}
@media (max-width: 1023.98px) {
  .bottom-section .content-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.bottom-section .content-wrap p.sub {
  font-size: 16px;
  line-height: normal;
}

.innerhh {
  min-height: 800px;
}

.innerhero-bg {
  background: #000000 url("../imgs/innerhero-bg.png") no-repeat top center/cover;
}

.innerhero-intro {
  margin-top: 96px;
}
@media (max-width: 1023.98px) {
  .innerhero-intro {
    margin-top: 0;
  }
}
.innerhero-intro .innerhero-wrap {
  display: flex;
  gap: 96px;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.innerhero-intro .innerhero-wrap .intro-wrap-left {
  width: 100%;
}
.innerhero-intro .innerhero-wrap .intro-wrap-left svg {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap .intro-wrap-left svg {
    width: 80%;
    height: auto;
    margin: 40px 0;
  }
}
.innerhero-intro .innerhero-wrap .intro-wrap-right {
  width: 100%;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap .intro-wrap-right {
    text-align: center;
  }
}
.innerhero-intro .innerhero-wrap .intro-wrap-right h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 87px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap .intro-wrap-right h2 {
    font-size: 48px;
    line-height: 64px;
  }
}
.innerhero-intro .innerhero-wrap .intro-wrap-right p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0 0 16px;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap .intro-wrap-right p {
    font-size: 16px;
    line-height: 22px;
  }
}
.innerhero-intro .innerhero-wrap .intro-wrap-right p.subtext {
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 12px;
}
@media (max-width: 1023.98px) {
  .innerhero-intro .innerhero-wrap .intro-wrap-right p.subtext {
    font-size: 24px;
    line-height: 33px;
  }
}

.closedloop {
  margin-top: 40px;
}
.closedloop h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
}
.closedloop .loop-circles {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 1023.98px) {
  .closedloop .loop-circles {
    flex-direction: column;
  }
}
.closedloop .loop-circles .loop-circle {
  width: 236px;
  height: 236px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  gap: 24px;
}
.closedloop .loop-circles .loop-circle:hover {
  background-color: #0000FF;
  transition: all 0.3s ease-in-out;
}
.closedloop .loop-circles .icon-arrow {
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_268_284)'><path d='M35.5794 11.9996C35.2069 12.3743 34.9978 12.8812 34.9978 13.4096C34.9978 13.9379 35.2069 14.4448 35.5794 14.8196L42.8394 21.9996L1.99942 21.9996C1.46899 21.9996 0.960279 22.2103 0.585207 22.5853C0.210134 22.9604 -0.000578263 23.4691 -0.000578286 23.9996C-0.000578309 24.53 0.210134 25.0387 0.585207 25.4138C0.960279 25.7888 1.46899 25.9996 1.99942 25.9996L42.8194 25.9996L35.5794 33.2396C35.392 33.4255 35.2432 33.6467 35.1416 33.8904C35.0401 34.1341 34.9878 34.3955 34.9878 34.6596C34.9878 34.9236 35.0401 35.185 35.1416 35.4287C35.2432 35.6724 35.392 35.8936 35.5794 36.0796C35.9541 36.4521 36.461 36.6611 36.9894 36.6611C37.5178 36.6611 38.0247 36.4521 38.3994 36.0796L46.2394 28.2596C47.363 27.1346 47.9941 25.6096 47.9941 24.0196C47.9941 22.4296 47.363 20.9046 46.2394 19.7796L38.3994 11.9996C38.0247 11.6271 37.5178 11.418 36.9894 11.418C36.4611 11.418 35.9541 11.6271 35.5794 11.9996Z' fill='%230000FF'/></g><defs><clipPath id='clip0_268_284'><rect width='48' height='48' fill='white' transform='translate(48 0) rotate(90)'/></clipPath></defs></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1023.98px) {
  .closedloop .loop-circles .icon-arrow {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }
}
.closedloop .loop-circles .loop-text {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
}

.contact-info {
  display: flex;
  gap: 130px;
  color: white;
  margin: 80px 0 40px;
}
@media (max-width: 1023.98px) {
  .contact-info {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.contact-info h2 {
  font-size: 64px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 40%;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .contact-info h2 {
    font-size: 36px;
    width: 100%;
  }
}
.contact-info .info-text {
  width: 60%;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .contact-info .info-text {
    width: 100%;
  }
}
.contact-info .info-text p {
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 1023.98px) {
  .contact-info .info-text p {
    font-size: 18px;
  }
}

.contact-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 60px 40px;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 1023.98px) {
  .contact-wrap {
    flex-direction: column;
    padding: 30px 16px;
  }
}
.contact-wrap .contact-detail {
  width: 40%;
  background: #5E28FF;
  border-radius: 30px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023.98px) {
  .contact-wrap .contact-detail {
    width: 100%;
    padding: 20px;
  }
}
.contact-wrap .contact-detail h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 49px;
  color: #FFFFFF;
}
.contact-wrap .contact-detail p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
}
.contact-wrap .contact-detail p.contact-no {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
}
.contact-wrap .contact-detail p.contact-no span {
  font-weight: 700;
}
.contact-wrap .contact-detail .divider {
  width: 100%;
  height: 1px;
  background: #FFFFFF;
}
.contact-wrap .contact-detail h4 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
.contact-wrap .contact-detail .address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-wrap .contact-detail .address p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}
.contact-wrap .contact-form {
  width: 60%;
}
@media (max-width: 1023.98px) {
  .contact-wrap .contact-form {
    width: 100%;
  }
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023.98px) {
  .form-wrap {
    width: 100%;
  }
}
.form-wrap .form-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 1023.98px) {
  .form-wrap .form-row {
    flex-direction: column;
  }
}
.form-wrap .form-row .form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-wrap .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.form-wrap label {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}
.form-wrap input, .form-wrap textarea {
  background: transparent;
  border: 1px solid #6E85B2;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  width: 100%;
}
.form-wrap input::-moz-placeholder, .form-wrap textarea::-moz-placeholder {
  color: #6E85B2;
}
.form-wrap input::placeholder, .form-wrap textarea::placeholder {
  color: #6E85B2;
}
.form-wrap textarea {
  resize: vertical;
  min-height: 120px;
}
.form-wrap select {
  background: transparent;
  border: 1px solid #6E85B2;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-wrap select::-moz-placeholder {
  color: #000;
  opacity: 0.7;
}
.form-wrap select::placeholder {
  color: #000;
  opacity: 0.7;
}
.form-wrap select option {
  background: #FFFFFF;
  color: #000000;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  text-align: left;
}
.form-checkbox input {
  width: 24px;
  height: 24px;
  padding: 2px;
}
.form-checkbox label {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  width: calc(100% - 36px);
}
.form-checkbox label a {
  color: #4DD2FF;
  text-decoration: underline;
}

.ui-checkbox {
  --primary-color: #5E28FF;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  /* checkbox */
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.ui-checkbox, .ui-checkbox*, .ui-checkbox*::before, .ui-checkbox*::after {
  box-sizing: border-box;
}
.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}
.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}
.ui-checkbox:hover {
  border-color: var(--primary-color);
}
.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}
.ui-checkbox:checked::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}
.ui-checkbox:active:not(:checked)::after {
  transition: none;
  box-shadow: none;
  opacity: 1;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header header.navbar {
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header.shrink {
  background: rgba(0, 0, 0, 0.85);
  position: sticky;
}
.main-header.shrink header.navbar {
  padding: 10px 0;
}

.inner-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.inner-header header.navbar {
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.inner-header.shrink {
  background: rgba(0, 0, 0, 0.85);
}
.inner-header.shrink header.navbar {
  padding: 10px 0;
}

.innerhero {
  padding: 200px 0 120px;
  min-height: 740px;
  height: 100dvh;
  max-height: 900px;
  display: flex;
  align-items: center;
}
.innerhero .herobg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.innerhero .herobg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .innerhero .herobg img {
    height: 145vh;
  }
}
.innerhero .herobg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(91deg, #07090E 0%, rgba(7, 9, 14, 0) 100%);
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .innerhero .herobg::after {
    height: 145vh;
  }
}
.innerhero .hero-content {
  max-width: 676px;
}
.innerhero .hero-content h1 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 87px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media (max-width: 1023.98px) {
  .innerhero .hero-content h1 {
    font-size: 36px;
    line-height: 49px;
  }
}
.innerhero .hero-content p {
  margin: 0 0 30px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .innerhero .hero-content p {
    font-size: 24px;
    line-height: 33px;
  }
}

.whatnext-section {
  padding: 80px 0;
  background: #000000;
}
@media (max-width: 1023.98px) {
  .whatnext-section {
    padding: 60px 0;
  }
}
.whatnext-section .whatnext-content {
  display: flex;
  gap: 130px;
  color: white;
  position: relative;
}
@media (max-width: 1023.98px) {
  .whatnext-section .whatnext-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.whatnext-section .whatnext-content .left-wrap {
  width: 100%;
  position: relative;
}
.whatnext-section .whatnext-content .left-wrap .img-wrap {
  width: 100%;
}
.whatnext-section .whatnext-content .left-wrap .img-wrap img {
  width: 100%;
  height: auto;
}
.whatnext-section .whatnext-content h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .whatnext-section .whatnext-content h2 {
    font-size: 24px;
  }
}
.whatnext-section .whatnext-content .info-text {
  width: 100%;
}
.whatnext-section .whatnext-content .info-text p {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1023.98px) {
  .whatnext-section .whatnext-content .info-text p {
    font-size: 14px;
  }
}
.whatnext-section .whatnext-content .info-text p.subtext {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
  margin-top: 30px;
}
@media (max-width: 1023.98px) {
  .whatnext-section .whatnext-content .info-text p.subtext {
    font-size: 20px;
    line-height: 27px;
  }
}
.whatnext-section .whatnext-content .info-text p.subtext span {
  font-weight: 700;
}

.slowing-section {
  padding: 80px 0;
  background: white;
}
@media (max-width: 1023.98px) {
  .slowing-section {
    padding: 60px 0;
  }
}
.slowing-section .slowing-content {
  display: flex;
  gap: 64px;
  color: black;
}
@media (max-width: 1023.98px) {
  .slowing-section .slowing-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.slowing-section .slowing-content h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 100%;
  max-width: 495px;
}
@media (max-width: 1023.98px) {
  .slowing-section .slowing-content h2 {
    font-size: 24px;
  }
}
.slowing-section .slowing-content .left-wrap {
  width: 100%;
}
.slowing-section .slowing-content .info-text {
  width: 100%;
}
.slowing-section .slowing-content .info-text p {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1023.98px) {
  .slowing-section .slowing-content .info-text p {
    font-size: 16px;
  }
}
.slowing-section .slowing-content .info-text p.subtext {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin-top: 30px;
}
@media (max-width: 1023.98px) {
  .slowing-section .slowing-content .info-text p.subtext {
    font-size: 16px;
    line-height: 22px;
  }
}
.slowing-section .slowing-content .info-text p.spotlight {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  color: #0000FF;
}
@media (max-width: 1023.98px) {
  .slowing-section .slowing-content .info-text p.spotlight {
    font-size: 20px;
    line-height: 30px;
  }
}
.slowing-section .slowing-content .img-wrap {
  margin-top: 40px;
  border-radius: 30px;
  width: 100%;
  height: 262px;
  position: relative;
  overflow: hidden;
}
.slowing-section .slowing-content .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.textleftimg-section {
  padding: 80px 0;
}
.textleftimg-section.datamod-bg {
  background: #000000 url(../imgs/datamod-bg.png) no-repeat center center/cover;
}
.textleftimg-section .content-wrap {
  display: flex;
  gap: 64px;
  color: white;
}
@media (max-width: 1023.98px) {
  .textleftimg-section .content-wrap {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.textleftimg-section .text-wrap {
  width: 100%;
  font-family: "Nunito", sans-serif;
  color: #FFFFFF;
}
.textleftimg-section .text-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
}
@media (max-width: 1023.98px) {
  .textleftimg-section .text-wrap h2 {
    font-size: 24px;
    line-height: 33px;
  }
}
.textleftimg-section .text-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1023.98px) {
  .textleftimg-section .text-wrap p {
    font-size: 16px;
    line-height: 22px;
  }
}
.textleftimg-section .text-wrap p.subtext {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .textleftimg-section .text-wrap p.subtext {
    font-size: 16px;
    line-height: 22px;
  }
}
.textleftimg-section .text-wrap ul {
  padding-left: 20px;
}
@media (max-width: 1023.98px) {
  .textleftimg-section .text-wrap ul {
    list-style: none;
  }
}
.textleftimg-section .text-wrap ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 15px;
}
.textleftimg-section .img-wrap {
  width: 100%;
}
.textleftimg-section .img-wrap .img-contain {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.textleftimg-section .img-wrap .img-contain img {
  width: 100%;
  height: 100%;
  display: block;
}

.capabilities-section {
  padding: 80px 0;
}
.capabilities-section.capabilities-bg {
  background: #000000 url(../imgs/capabilities-bg.png) no-repeat center center/cover;
}
.capabilities-section .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 1023.98px) {
  .capabilities-section .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .capabilities-section .capabilities-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.capabilities-section .capability-card {
  width: 100%;
  height: 518px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1023.98px) {
  .capabilities-section .capability-card {
    height: 400px;
  }
}
.capabilities-section .capability-card .card-view {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.capabilities-section .capability-card .card-view .card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: end;
  height: 100%;
  width: 100%;
}
.capabilities-section .capability-card .card-view .card-content h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .capabilities-section .capability-card .card-view .card-content h3 {
    font-size: 24px;
    line-height: 33px;
  }
}
.capabilities-section .capability-card .card-view .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.capabilities-section .capability-card .card-view .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.capabilities-section .capability-card .card-hover {
  opacity: 0;
  visibility: hidden;
  inset: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.capabilities-section .capability-card .card-hover .card-content {
  padding: 30px;
}
.capabilities-section .capability-card:hover .card-view {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.capabilities-section .capability-card:hover .card-view .bg-img img {
  transform: scale(1.1);
}
.capabilities-section .capability-card:hover .card-view .card-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.capabilities-section .capability-card:hover .card-hover {
  opacity: 1;
  visibility: visible;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  transform: translateY(0);
}
.capabilities-section .capability-card:hover .card-hover .card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.capabilities-section .capability-card:hover .card-hover .card-content h4 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 170px;
}
.capabilities-section .capability-card:hover .card-hover .card-content p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
  margin: 0;
}
.capabilities-section .capability-card:hover.item-1 .card-hover {
  background: rgba(0, 0, 255, 0.2);
  -moz-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.capabilities-section .capability-card:hover.item-2 .card-hover {
  background: rgba(0, 0, 0, 0.6);
  -moz-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.capabilities-section .capability-card:hover.item-3 .card-hover {
  background: rgba(255, 255, 255, 0.7);
  -moz-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.capabilities-section .capability-card:hover.item-4 .card-hover {
  background: rgba(0, 0, 255, 0.5);
  -moz-backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.capabilities-section .capability-card:hover.item-2 .card-view .bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.capabilities-section .capability-card.item-2 .card-view .card-content, .capabilities-section .capability-card.item-4 .card-view .card-content {
  align-items: start;
}
.capabilities-section .capability-card.item-3 .card-view .card-content h3 {
  color: #000000;
}
.capabilities-section .capability-card.item-3 .card-hover .card-content h4 {
  color: #000000;
}
.capabilities-section .capability-card.item-3 .card-hover .card-content p {
  color: #000000;
}
.capabilities-section .capability-card.item-2 .card-view .bg-img {
  background: #000000;
  display: flex;
  align-items: end;
}
.capabilities-section .capability-card.item-2 .card-view .bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 50%;
  transition: all 0.3s ease-in-out;
}

.features-section {
  padding: 80px 0 0;
  background: white;
}
@media (max-width: 1023.98px) {
  .features-section {
    padding: 60px 0;
  }
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  /* ========== Large Card ========== */
}
@media (max-width: 1023.98px) {
  .features-section .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 767.98px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.features-section .features-grid .featurecard {
  border-radius: 30px;
  padding: 36px 30px 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 18px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: #000000;
  gap: 60px;
  cursor: pointer;
  background-size: 100%;
  transition: background-size 0.3s ease-in-out;
}
.features-section .features-grid .featurecard p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
  z-index: 1;
}
.features-section .features-grid .featurecard:hover::before {
  transform: scale(1.4);
}
.features-section .features-grid .featurecard .card-text {
  z-index: 1;
}
.features-section .features-grid .featurecard .featurecard-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.features-section .features-grid .featurecard .featurecard-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-section .features-grid .large-card {
  grid-row: span 2;
  padding: 60px 40px 40px;
  justify-content: space-between;
  z-index: 0;
}
@media (max-width: 1023.98px) {
  .features-section .features-grid .large-card {
    grid-column: span 2;
    grid-row: auto;
  }
}
@media (max-width: 767.98px) {
  .features-section .features-grid .large-card {
    grid-column: span 1;
  }
}
.features-section .features-grid .large-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/featurecard1-bg.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features-section .features-grid .large-card .card-title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .features-section .features-grid .large-card .card-title {
    font-size: 20px;
  }
}
.features-section .features-grid .large-card .card-desc {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .features-section .features-grid .large-card .card-desc {
    font-size: 16px;
  }
}
.features-section .features-grid .card-2 {
  background: linear-gradient(135.69deg, #0000FF 5.08%, #5E28FF 98.18%);
  background-size: 100% 100%;
  background-position: 0% 50%;
  transition: background-size 0.4s ease-in-out;
}
.features-section .features-grid .card-2:hover {
  background-size: 100% 150%;
}
.features-section .features-grid .card-3 {
  z-index: 0;
}
.features-section .features-grid .card-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/featurecard3-bg.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features-section .features-grid .card-4 {
  z-index: 0;
}
.features-section .features-grid .card-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/featurecard4-bg.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features-section .features-grid .card-5 {
  background: #AFEBFF;
  color: #000000;
}
.features-section .features-grid .card-5 p {
  color: #000000;
}
.features-section .features-grid .card-6 {
  background: #AFEBFF;
  color: #000000;
  grid-column: span 2;
}
.features-section .features-grid .card-6 p {
  color: #000000;
}
@media (max-width: 767.98px) {
  .features-section .features-grid .card-6 {
    grid-column: span 1;
  }
}
.features-section .features-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.features-section .title-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .features-section .title-wrap {
    flex-direction: column;
  }
}
.features-section .title-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .features-section .title-wrap h2 {
    font-size: 32px;
    line-height: normal;
  }
}
.features-section .title-wrap h2 span {
  color: #4DD2FF;
}
.features-section .title-wrap p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
.features-section .title-wrap p.subtext {
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
}

.features2-section {
  padding: 80px 0;
  background: white;
}
.features2-section.thereality {
  background: #000000 url(../imgs/thereality-bg1.png) no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .features2-section {
    padding: 60px 0;
  }
}
.features2-section .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  /* ========== Large Card ========== */
}
@media (max-width: 1023.98px) {
  .features2-section .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 767.98px) {
  .features2-section .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.features2-section .features-grid .featurecard {
  border-radius: 30px;
  padding: 36px 30px 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 18px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background: #000000;
  gap: 60px;
  cursor: pointer;
  background-size: 100%;
  transition: background-size 0.3s ease-in-out;
}
.features2-section .features-grid .featurecard p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0;
  z-index: 1;
}
.features2-section .features-grid .featurecard:hover::before {
  transform: scale(1.4);
}
.features2-section .features-grid .featurecard .card-text {
  z-index: 1;
}
.features2-section .features-grid .featurecard .featurecard-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.features2-section .features-grid .featurecard .featurecard-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features2-section .features-grid .large-card {
  grid-row: span 2;
  padding: 60px 40px 40px;
  justify-content: space-between;
  z-index: 0;
}
@media (max-width: 1023.98px) {
  .features2-section .features-grid .large-card {
    grid-column: span 2;
    grid-row: auto;
  }
}
@media (max-width: 767.98px) {
  .features2-section .features-grid .large-card {
    grid-column: span 1;
  }
}
.features2-section .features-grid .large-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/reality-img-1.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features2-section .features-grid .large-card .card-title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .features2-section .features-grid .large-card .card-title {
    font-size: 24px;
  }
}
.features2-section .features-grid .large-card .card-desc {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .features2-section .features-grid .large-card .card-desc {
    font-size: 16px;
  }
}
.features2-section .features-grid .card-2 {
  background: linear-gradient(135.69deg, #0000FF 5.08%, #5E28FF 98.18%);
  background-size: 100% 100%;
  background-position: 0% 50%;
  transition: background-size 0.4s ease-in-out;
}
.features2-section .features-grid .card-2:hover {
  background-size: 100% 150%;
}
.features2-section .features-grid .card-3 {
  z-index: 0;
}
.features2-section .features-grid .card-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/reality-img-3.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features2-section .features-grid .card-4 {
  background: #FFFFFF;
  color: #000000;
}
.features2-section .features-grid .card-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/reality-img-4.png") no-repeat top right/contain;
  background-size: 200px;
  transform: scale(1);
  transition: transform 1s ease-in-out;
  z-index: -1;
}
.features2-section .features-grid .card-4 p {
  color: #000000;
}
.features2-section .features-grid .card-5 {
  z-index: 0;
}
.features2-section .features-grid .card-5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/reality-img-5.png") no-repeat center/cover;
  transform: scale(1);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
.features2-section .features-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.features2-section .title-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1023.98px) {
  .features2-section .title-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
.features2-section .title-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .features2-section .title-wrap h2 {
    font-size: 32px;
    line-height: normal;
  }
}
.features2-section .title-wrap h2 span {
  color: #4DD2FF;
}
.features2-section .title-wrap p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
}
.features2-section .title-wrap p.subtext {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
}
.features2-section.thevisibility {
  background: #000000 url(../imgs/thereality-bg1.png) no-repeat center center/cover;
}
.features2-section.thevisibility .features-grid .featurecard {
  min-height: 250px;
  justify-content: center;
}
.features2-section.thevisibility .features-grid .featurecard::before {
  display: none !important;
}
.features2-section.thevisibility .features-grid .featurecard p {
  color: white !important;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
}
@media (max-width: 1023.98px) {
  .features2-section.thevisibility .features-grid .featurecard p {
    font-size: 24px;
    line-height: normal;
  }
}
.features2-section.thevisibility .features-grid .featurecard.card-5 {
  background: linear-gradient(111.25deg, #5E28FF 4.79%, #4DD2FF 96.48%) !important;
}
.features2-section.thevisibility .features-grid .large-card {
  justify-content: end;
}
.features2-section.thevisibility .features-grid .large-card .card-desc {
  color: #000000 !important;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
}
@media (max-width: 1023.98px) {
  .features2-section.thevisibility .features-grid .large-card .card-desc {
    font-size: 24px;
    line-height: normal;
  }
}

.ourmission-section {
  padding: 80px 0;
  background: white;
}
@media (max-width: 1023.98px) {
  .ourmission-section {
    padding: 60px 0;
  }
}
.ourmission-section .ourmission-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  color: black;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.ourmission-section .ourmission-content h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 100%;
  max-width: 495px;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content h2 {
    font-size: 24px;
  }
}
.ourmission-section .ourmission-content h2 span {
  color: #5E28FF;
}
.ourmission-section .ourmission-content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #000000;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content h3 {
    font-size: 20px;
    line-height: normal;
  }
}
.ourmission-section .ourmission-content .left-wrap {
  width: 100%;
}
.ourmission-section .ourmission-content .info-text {
  width: 100%;
}
.ourmission-section .ourmission-content .info-text p {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content .info-text p {
    font-size: 16px;
  }
}
.ourmission-section .ourmission-content .info-text p.subtext {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  margin-top: 30px;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content .info-text p.subtext {
    font-size: 16px;
    line-height: 22px;
  }
}
.ourmission-section .ourmission-content .info-text p.spotlight {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  color: #0000FF;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content .info-text p.spotlight {
    font-size: 20px;
    line-height: 30px;
  }
}
.ourmission-section .ourmission-content .img-wrap {
  border-radius: 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ourmission-section .ourmission-content .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourmission-section .ourmission-content ul {
  margin-top: 24px;
  padding-left: 26px;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content ul {
    padding-left: 0;
  }
}
.ourmission-section .ourmission-content ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 15px;
}
.ourmission-section .ourmission-content ul li span {
  font-weight: 700;
}
.ourmission-section .ourmission-content ul li::marker {
  color: #5E28FF;
  font-size: 20px;
}
@media (max-width: 1023.98px) {
  .ourmission-section .ourmission-content ul li::marker {
    font-size: 0;
  }
}
.ourmission-section .ourmission-content .content-row {
  display: flex;
  gap: 66px;
}
@media (max-width: 1024px) {
  .ourmission-section .ourmission-content .content-row {
    flex-direction: column;
  }
}

.ourservices-section {
  padding: 80px 0;
  background: #000000 url("../imgs/ourservices-bg.png") no-repeat center center/cover;
}
@media (max-width: 1023.98px) {
  .ourservices-section {
    padding: 60px 0;
  }
}
.ourservices-section .title-wrap h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .ourservices-section .title-wrap h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: center;
  }
}

.servicesslider {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.servicesslider .services-card {
  background: #FFFFFF;
  border-radius: 30px;
  height: 100%;
}
.servicesslider .services-card .services-img {
  width: 100%;
  height: 370px;
}
.servicesslider .services-card .services-img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicesslider .services-card .services-content {
  padding: 32px 0;
}
.servicesslider .services-card .services-content .title-wrap {
  padding: 0 24px;
}
.servicesslider .services-card .services-content .title-wrap h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
@media (max-width: 1023.98) {
  .servicesslider .services-card .services-content .title-wrap h3 {
    font-size: 24px;
    line-height: normal;
  }
}
.servicesslider .services-card .services-content .title-wrap p {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.why-miraavi .title-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .why-miraavi .title-wrap {
    flex-direction: column;
  }
}
.why-miraavi .title-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
}
@media (max-width: 1023.98px) {
  .why-miraavi .title-wrap h2 {
    font-size: 32px;
    line-height: normal;
  }
}
.why-miraavi .title-wrap h2 span {
  color: #5E28FF;
}
.why-miraavi .title-wrap p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
}
.why-miraavi .left-wrap {
  width: 100%;
}
.why-miraavi .right-wrap {
  width: 100%;
}
.why-miraavi .miraavi-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 60px;
}

.aboutai-section {
  background-color: white;
}
.aboutai-section .aboutai-content {
  display: flex;
  color: #000000;
  position: relative;
}
@media (max-width: 1023.98px) {
  .aboutai-section .aboutai-content {
    flex-direction: column;
    text-align: center;
  }
}
.aboutai-section .aboutai-content .left-wrap {
  width: 100%;
  position: relative;
}
.aboutai-section .aboutai-content .left-wrap .img-wrap {
  width: 100%;
  height: 100%;
}
.aboutai-section .aboutai-content .left-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutai-section .aboutai-content .info-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.aboutai-section .aboutai-content .info-text h2 {
  font-size: 48px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .aboutai-section .aboutai-content .info-text h2 {
    font-size: 24px;
  }
}
.aboutai-section .aboutai-content .info-text p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1023.98px) {
  .aboutai-section .aboutai-content .info-text p {
    font-size: 16px;
  }
}

.title-wrapper {
  display: flex;
  gap: 80px;
}
@media (max-width: 1023.98px) {
  .title-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.title-wrapper .left-wrap, .title-wrapper .right-wrap {
  width: 100%;
}
.title-wrapper h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
  margin: 0;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .title-wrapper h2 {
    font-size: 32px;
    line-height: normal;
    text-align: center;
  }
}
.title-wrapper h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: normal;
  color: white;
  margin: 0;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .title-wrapper h3 {
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }
}
.title-wrapper p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .title-wrapper p {
    font-size: 16px;
    text-align: center;
  }
}

.divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  margin: 60px 0;
}

@media (max-width: 1023.98px) {
  .agenticcap {
    margin-top: 40px !important;
  }
}
.agenticcap .capability-card.item-2 .card-view .bg-img {
  background-color: white !important;
}
.agenticcap .capability-card.item-2 .card-view .card-content h3 {
  color: #000000 !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.text-black {
  color: #000000 !important;
}

.theresult {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0;
}
.theresult h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
.theresult p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #FFFFFF;
  margin: 0;
}

.ourfocus-section {
  padding: 80px 0;
}
@media (max-width: 1023.98px) {
  .ourfocus-section {
    padding: 60px 0;
  }
}
.ourfocus-section .title-wrapper h2, .ourfocus-section .title-wrapper h3, .ourfocus-section .title-wrapper p {
  color: #000000;
}
.ourfocus-section .focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 1023.98px) {
  .ourfocus-section .focus-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
  }
}
.ourfocus-section .focus-grid .focus-grid-item {
  padding: 0 20px;
  border-left: 1px solid #000;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 87px;
}
@media (max-width: 1023.98px) {
  .ourfocus-section .focus-grid .focus-grid-item {
    font-size: 48px;
    line-height: normal;
    padding: 20px 0;
    border-left: 0px solid #000;
    border-top: 1px solid #000;
    text-align: center;
  }
}
.ourfocus-section .focus-grid .focus-grid-item:nth-child(1) {
  color: #0000FF;
}
.ourfocus-section .focus-grid .focus-grid-item:nth-child(2) {
  color: #119BCA;
}
.ourfocus-section .focus-grid .focus-grid-item:nth-child(3) {
  color: #657491;
  padding-right: 0;
}
.ourfocus-section .focus-desc {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 49px;
  color: #000000;
}
.ourfocus-section .focus-desc span {
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  .ourfocus-section .focus-desc {
    margin: 40px auto 0;
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }
}

.longcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 1023.98px) {
  .longcard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .longcard-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.longcard-grid .longcard {
  width: 100%;
  height: 518px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1023.98px) {
  .longcard-grid .longcard {
    height: 400px;
  }
}
.longcard-grid .longcard .card-view {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.longcard-grid .longcard .card-view .card-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: end;
  height: 100%;
  width: 100%;
}
.longcard-grid .longcard .card-view .card-content h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .longcard-grid .longcard .card-view .card-content h3 {
    font-size: 24px;
    line-height: 33px;
  }
}
.longcard-grid .longcard .card-view .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.longcard-grid .longcard .card-view .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.longcard-grid .longcard.item-1 .card-content {
  align-items: flex-start;
}
.longcard-grid .longcard.item-1 .card-content h3 {
  color: #000000;
}
.longcard-grid .longcard.item-1 .card-content {
  align-items: flex-start;
}

.bottom-desc {
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: white;
}
.bottom-desc span {
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  .bottom-desc {
    margin: 40px auto 0;
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }
}

.productfeat .features-grid .featurecard {
  min-height: 324px;
}
.productfeat .features-grid .featurecard::before {
  display: none;
}
.productfeat .features-grid .featurecard .logo-icon {
  z-index: 1;
}
.productfeat .features-grid .featurecard.card-3 {
  background: linear-gradient(134.89deg, #0000FF 16.97%, #5E28FF 88.88%);
}

.aiautocontent-section {
  padding: 80px 0;
  background: #000000;
}
@media (max-width: 1023.98px) {
  .aiautocontent-section {
    padding: 60px 0;
  }
}
.aiautocontent-section .aiautoslider {
  margin-top: 40px;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(2) .autocard-content {
  background-color: #FFECCE;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(2) .autocard-content .autohighlight {
  color: #A86C0B;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(3) .autocard-content {
  background-color: #D1F3FF;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(3) .autocard-content .autohighlight {
  color: #0E86AE;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(4) .autocard-content {
  background-color: #E5FFD1;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(4) .autocard-content .autohighlight {
  color: #376415;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(5) .autocard-content {
  background-color: #FFD1F6;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(5) .autocard-content .autohighlight {
  color: #741A62;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(6) .autocard-content {
  background-color: #FAFFD6;
}
.aiautocontent-section .aiautoslider .swiper-slide:nth-child(6) .autocard-content .autohighlight {
  color: #6C7811;
}
.aiautocontent-section .autocard {
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, height 0.4s ease;
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.aiautocontent-section .autocard .autocard-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}
.aiautocontent-section .autocard .autocard-image img {
  border-radius: 30px 30px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aiautocontent-section .autocard:hover {
  transition: height 0.4s ease;
}
.aiautocontent-section .autocard:hover .autocard-image {
  opacity: 1;
  transform: translateY(0);
}
.aiautocontent-section .autocard:hover .autocard-content {
  transform: translateY(220px);
}
.aiautocontent-section .autocard .autocard-content {
  position: relative;
  padding: 32px 40px;
  transition: transform 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 240px;
  background-color: #CECEFF;
  border-radius: 0 0 30px 30px;
}
.aiautocontent-section .autocard .autocard-content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
.aiautocontent-section .autocard .autocard-content h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
}
.aiautocontent-section .autocard .autocard-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.aiautocontent-section .autocard .autocard-content .autohighlight {
  color: #5c3df5;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
}
.aiautocontent-section .autocard .autocard-content .autohighlight span {
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.aideliver-section {
  padding: 80px 0;
  background: #000000 url("../imgs/mdeliver-bg.png") no-repeat top center/cover;
}
@media (max-width: 1023.98px) {
  .aideliver-section {
    padding: 60px 0;
  }
}
.aideliver-section .deliver-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
}
@media (max-width: 1023.98px) {
  .aideliver-section .deliver-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.aideliver-section .deliver-wrap .content-wrap {
  grid-column: span 2;
  grid-row: auto;
}
.aideliver-section .deliver-wrap .content-wrap h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: white;
  margin: 0;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .aideliver-section .deliver-wrap .content-wrap h2 {
    font-size: 32px;
    line-height: normal;
    text-align: center;
  }
}
.aideliver-section .deliver-wrap .content-wrap h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: normal;
  color: white;
  margin: 0;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .aideliver-section .deliver-wrap .content-wrap h3 {
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }
}
.aideliver-section .deliver-wrap .content-wrap .deliver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 767.98px) {
  .aideliver-section .deliver-wrap .content-wrap .deliver-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.aideliver-section .deliver-wrap .content-wrap .deliver-grid .deliver-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  border: 1px solid #4DD2FF;
  height: 213px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.aideliver-section .deliver-wrap .content-wrap .deliver-grid .deliver-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin: 0;
}
.aideliver-section .deliver-wrap .content-wrap h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
  margin: 40px 0 0;
}
@media (max-width: 767.98px) {
  .aideliver-section .deliver-wrap .content-wrap h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

.aiautofeat .features-grid .featurecard {
  min-height: 324px;
  justify-content: space-between;
}
.aiautofeat .features-grid .featurecard.large-card {
  justify-content: flex-end;
}
.aiautofeat .features-grid .featurecard::before {
  display: none;
}
.aiautofeat .features-grid .featurecard .logo-icon {
  z-index: 1;
}
.aiautofeat .features-grid .featurecard.card-3 {
  background: linear-gradient(134.89deg, #0000FF 16.97%, #5E28FF 88.88%);
}
.aiautofeat .features-grid .featurecard.card-5 {
  background: #000000;
}
.aiautofeat .features-grid .featurecard.card-5 p {
  color: #FFFFFF;
}

.whatwedohome-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
@media (max-width: 1023.98px) {
  .whatwedohome-section {
    padding: 60px 0;
  }
}
.whatwedohome-section h2 {
  color: #000000;
  text-align: center;
}

.whatwedohome-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 110px;
}
@media (max-width: 1023.98px) {
  .whatwedohome-grid {
    flex-direction: column;
  }
}
.whatwedohome-grid .wwd-card {
  min-width: 260px;
  width: 100%;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatwedohome-grid .wwd-card .image {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatwedohome-grid .wwd-card .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}
.whatwedohome-grid .wwd-card .title-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  transition: opacity 0.3s ease;
}
.whatwedohome-grid .wwd-card .content {
  background: #000;
  color: #fff;
  padding: 24px 20px 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  display: none;
}
.whatwedohome-grid .wwd-card .content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #4DD2FF;
}
.whatwedohome-grid .wwd-card .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.whatwedohome-grid .wwd-card .content ul {
  margin-top: 20px;
}
.whatwedohome-grid .wwd-card .content ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #FFFFFF;
}
.whatwedohome-grid .wwd-card .read-row {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whatwedohome-grid .wwd-card .circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e3cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.whatwedohome-grid .wwd-card.active {
  height: 520px;
  transform: translateY(-65px);
  /* half of height difference */
  z-index: 5;
}
.whatwedohome-grid .wwd-card.active .image {
  height: 200px;
}
.whatwedohome-grid .wwd-card.active .title-center {
  opacity: 0;
}
.whatwedohome-grid .wwd-card.active .content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.whatwedohome-grid .wwd-card:hover {
  height: 520px;
  transform: translateY(-65px);
  z-index: 5;
}
.whatwedohome-grid .wwd-card:hover .image {
  height: 200px;
}
.whatwedohome-grid .wwd-card:hover .title-center {
  opacity: 0;
}
.whatwedohome-grid .wwd-card:hover .content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */