/* =========================
   Imports & Root Variables
   ========================= */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Space+Grotesk:wght@300..700&display=swap");
:root {
  --black: #000;
  --divider-light: #e9e9e9;
  --white: #fff;
}
/* =========================
   Base Styles
   ========================= */
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
   scroll-behavior: smooth;
}
body {
  font: 400 16px / 21px "Space Grotesk";
  letter-spacing: -0.32px;
  color: var(--black);
  background: #fafafa;
  font-family: "Space Grotesk", sans-serif;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.text-center {
  text-align: center;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
/* =========================
   Layout Utilities
   ========================= */
.custom-container {
  max-width: 1410px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.ds-flex,
.flex-center,
.flex-between,
.flex-center-justify,
.flex-space-between-center,
.flex-col,
.flex-col-center,
.inline-flex {
  display: flex;
}
.flex-center {
  align-items: center;
}
.flex-between {
  justify-content: space-between;
}
.flex-center-justify {
  align-items: center;
  justify-content: center;
}
.flex-space-between-center {
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-col-center {
  align-items: center;
  flex-direction: column;
}
.inline-flex {
  align-items: center;
  display: inline-flex;
}
.mbshow-dsp-hide {
  display: none;
}
/* =========================
   Typography Utilities
   ========================= */
.stat-title {
  font: 400 16px / normal "Space Grotesk";
  letter-spacing: -0.32px;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 500;
}
.f-14 {
  font: 400 14px / normal "Space Grotesk";
  letter-spacing: -0.28px;
}
.f-20 {
  font: 500 20px / normal "Space Grotesk";
  letter-spacing: -0.4px;
}
.f-18 {
  font: 400 18px/24px "Space Grotesk";
  letter-spacing: -2%;
}
.f-24 {
  font: 600 24px / normal "Manrope";
  letter-spacing: -0.48px;
}
.f-40 {
  font: 600 40px / normal "Manrope";
  letter-spacing: -1.6px;
}
.f-48 {
  font: 600 48px / normal "Manrope";
  letter-spacing: -1.92px;
}
.h1-heading {
  margin: 0 0 8px 0;
  font: 600 96px / normal "Manrope";
  line-height: normal;
  text-align: center;
  letter-spacing: -5.76px;
}
.h2-title {
  font: 400 48px / normal "Manrope";
  letter-spacing: -1.92px;
}
.sub-text {
  font: 400 16px/24px "Space Grotesk";
  color: #888;
  letter-spacing: -0.32px;
  line-height: normal;
}
.text-white {
  color: #fff !important;
}
/* =========================
   Spacing Utilities
   ========================= */
.gap-24 {
  gap: 24px;
}
.gap-40 {
  gap: 40px;
}
.gap-64 {
  gap: 64px;
}
.pd-80 {
  padding: 80px 0;
}
.pd-120 {
  padding: 120px 0;
}
.pd-200 {
  padding: 200px 0;
}
.mt-20 {
  margin-top: 20px;
}
.mt-4 {
  margin-top: 4px;
}
.mtb-3 {
  margin: 3px 0;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mt-24 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.p-top-60 {
  padding-top: 60px;
}
.mtb-24 {
  margin: 24px 0;
}
.width-850 {
  max-width: 850px;
  width: 100%;
  margin: auto;
}
.width-1160 {
  max-width: 1160px;
  width: 100%;
  margin: auto;
  padding: 80px 160px;
  border-radius: 30px;
  background: #fff;
  backdrop-filter: blur(6px);
}
.grid-items-wrap {
  gap: 46px;
}
.sticky-top-10 {
  position: sticky;
  top: 10px;
}
.position-relative {
  position: relative;
}
/* =========================
   Header Styles
   ========================= */
/* body.have-index header
   {
    margin-top: 32px;
   }
   body:not(.have-index) header,
   body.have-index .wrap-nav 
   {
    background:#fff;
   } */
/*
.toogle-text-change {
  cursor: pointer;
  display:inline-flex;
}*/
.toogle-text-change {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 20px; /* space for icon */
}
.toogle-text-change::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M10.94 3.50185L11.6467 4.20918L7.79533 8.06185C7.73362 8.12395 7.66024 8.17323 7.5794 8.20687C7.49857 8.2405 7.41188 8.25781 7.32433 8.25781C7.23678 8.25781 7.1501 8.2405 7.06926 8.20687C6.98843 8.17323 6.91505 8.12395 6.85333 8.06185L3 4.20918L3.70667 3.50251L7.32333 7.11851L10.94 3.50185Z' fill='%234E4E4E' stroke='%234E4E4E' stroke-width='0.3'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='9' height='16' fill='white' transform='translate(16 0.5) rotate(90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
/* Rotate icon on active */
.toogle-text-change.current-active::before {
  transform: translateY(-50%) rotate(180deg);
}
.toogle-text-change .cd,
.forcol-parent .target-col,
.toogle-text-change.current-active .ed {
  display: none;
}
.bc-tp {
  background: transparent !important;
}
.toogle-text-change.current-active .cd,
.forcol-parent:first-of-type .target-col {
  display: block;
}
/*
body:not(.have-index) header .wrap-nav {
  border: 0;
}
  */
.header {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.wrap-nav {
  padding: 32px 0;
  position: relative;
}
.menu-active {
  padding: 12px 24px;
  background-color: var(--white);
  border-radius: 4px;
}
.nav-list .menu-active a {
  color: var(--black);
}
.nav-list {
  display: inline-flex;
  align-items: center;
  /*  gap: 24px; */
  position: relative;
}
.nav-list li a {
  color: var(--white);
  display: inline-flex;
}
/* Base styles */
li.have-dropdown {
  position: relative;
}
/* Dropdown arrow */
.dp-arrow:after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L5 6L5.96244e-08 1L0.8875 0.1125L5 4.225L9.1125 0.1125L10 1Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  display: inline-block;
  width: 8px;
  height: unset;
  margin: 0;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.menu-active .dp-arrow::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L5 6L0 1L0.8875 0.1125L5 4.225L9.1125 0.1125L10 1Z' fill='%23000000'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.have-dropdown:hover .dp-arrow:after {
  top: 0px;
  transform: rotate(180deg);
  transition: all 0.3s ease 0s;
}
/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: unset;
  z-index: 99;
  position: absolute;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.have-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}
.dropdown-menu::before {
  /*  content: '';
  position: absolute;
  top: 0;
  left: 35%;
  margin-left: -15px;
  margin-top: -15px;
  width: 0;
  z-index: 1;
  height: 0;
  border-bottom: solid 15px #FFF;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent;*/
}
.dropdown-menu li {
  display: flex;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.dropdown-menu li a {
  font-size: 13px;
  color: #333;
  width: 100%;
  padding: 6px;
  white-space: nowrap;
}
.dropdown-menu li.list-a a {
  white-space: unset;
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
.menu-li {
  padding: 12px 24px;
}
.dropdown-menu li:hover {
  background: #f2f2f2;
}
.lang-select {
  display: inline-flex;
}
.lang-icon svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.andconnect,
.lang-andconnect {
  display: flex;
  align-items: center;
  /*   gap: 24px; margin-left: 24px;*/
}
.andconnect a,
.lang-andconnect a {
  color: #fff;
}
.lang-dp {
  position: relative;
  display: inline-block;
}
/* =========================
   Banner Section
   ========================= */
.home {
  background-color: #fafafa;
  position: relative;
}
.banner {
  position: relative;
  min-height: calc(100vh - 120px);
  width: 100%;
}
.banner-text {
  padding: 100px 0;
}
.max-width-1065 {
  max-width: 1065px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}
.ipad {
  position: relative;
  background-color: var(--black);
  border-radius: 28.15px;
  overflow: hidden;
  border: 2.35px solid #ffffff80;
  box-shadow: 0px -4.69px 23.46px #0001;
  padding-bottom: 43px;
}
.inner-screen {
  position: relative;
  width: 1020px;
  height: 713px;
  top: 21px;
  left: 22px;
  border-radius: 18.77px;
  overflow: hidden;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(https://c.animaapp.com/mb2lnezrDYGPpJ/img/inner-screen.png) 50% 50% /
      cover,
    linear-gradient(0deg, #fafafa 0%, #fafafa 100%);
}
.img-play {
  width: 128px;
  height: 128px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
/* =========================
   Logo Section
   ========================= */
.partner-list-slider {
  padding-bottom: 40px;
  gap: 40px;
}
.logo-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
  align-items: center;
}
/*
.logo-img {
  width: 102.01px;
  height: 80px;
  object-fit: contain;
}
*/
/* =========================
   Features Carousel
   ========================= */
.features-carousel {
  display: flex;
  gap: 24px;
}
.col-span,
.features-carousel-v {
  max-width: 630px;
  width: 100%;
}
.col-span {
  gap: 40px;
  padding: 40px 0 0;
}
.img-100 {
  width: 100%;
}
.features-carousel-v {
  position: relative;
}
.features-carousel-v .owl-nav {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 5px;
}
.features-carousel-v button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #fff !important;
}
.features-carousel-v button.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}
.features-carousel-v img {
  height: 630px;
  object-fit: cover;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.06);
}
.see-users {
  gap: 8px;
}
.div-3 {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.list-item {
  cursor: pointer;
  width: 100%;
  gap: 30px;
  padding: 24px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}
.desc {
  padding: 24px 40px 24px 71px;
}
/* =========================
   Founder Section
   ========================= */
/*.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.stat-box {
  max-width: 270px;
  gap: 8px;
  padding: 40px 0;
}
.stat-box:last-child {
  border-right: none;
}
.line-v1 {
  width:1px;
  background-color: #E9E9E9;
}*/
.process-section {
}
/* =========================
   Grids Document
   ========================= */
.fig-section {
  max-width: 628px;
  width: 100%;
  z-index: 1;
}
.fig-section img {
  border-radius: 30px;
}
.text-section {
  max-width: 630px;
  width: 100%;
  padding: 0 32px;
  color: #fff;
}
.text-section .sub-text {
  color: #fff;
}
.grids-document {
  gap: 30px;
  position: relative;
}
.img-responsive {
  max-width: 100%;
  height: auto;
}
.text-section .f-48 {
  margin: 20px 0;
}
.border-0 {
  border: 0;
}
/* =========================
   FAQ Section
   ========================= */
.faq-section {
  padding: 200px 0;
}
.list-faq-col .desc {
  display: none;
}
.list-faq-col:first-of-type .desc {
  display: block;
}
.faq-section .h2-title {
  text-align: center;
  margin-bottom: 40px;
}
.load-more {
  border-bottom: 1px dashed #000;
  display: inline-block;
  background: #f2f2f2;
  padding: 12px 24px;
  color: #000;
  cursor: pointer;
}
.new-add-more {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
.faq-section .list-item::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M3.27008 6.375L9.00008 12.105L14.7301 6.375' stroke='black' stroke-width='1.25' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* Rotate arrow when active */
.faq-section .list-item.current-active::before {
  transform: rotate(180deg);
}
/* =========================
   Footer Styles
   ========================= */
.gap-connect {
  gap: 20px;
  text-align: center;
  align-items: center;
}
.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: #fff;
  color: #000;
}
.logo-abundia-3 {
  width: 103.81px;
  height: 40px;
  object-fit: cover;
}
.footer {
  height: auto !important;
  background: #fff;
  padding: 64px 0 40px;
  border-top: 1px solid #eee;
}
.footer-brand {
  max-width: 400px;
}
.footer-wrap {
  gap: 64px;
}
.brand-description {
  margin-top: 12px;
}
.footer-links {
  gap: 8px;
  min-width: 330px;
}
.footer-img img {
  width: 100%;
}
.footer-links a {
  padding: 8px 4px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-ul {
  gap: 4px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #888;
}
.legal-disclaimer {
  margin-bottom: 5px;
  color: #000;
}
.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.wp-width .hero-wrapper p {
  max-width: 535px;
  margin: auto;
}
/* =========================
   Responsive Styles
   ========================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* =========================
   Strategies Section (Custom)
   ========================= */
.strategies-section {
  background-color: #000;
}
.text-content {
  flex: 1;
  max-width: 416px;
  color: var(--white);
}
.text-content .h2-title {
  color: var(--white);
}
.image-content {
  flex: 1;
  max-width: 800px;
}
.strategy-image {
  width: 100%;
  height: 555px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
/* =========================
   Article Section (Custom)
   ========================= */
/* newsroom start */
.side-div {
  flex: 1;
  max-width: 280px;
}
.article-content {
  gap: 40px;
  flex: 1;
  max-width: 810px;
}
.hr {
  border: 0;
  width: 100%;
  height: 1px;
  background: #e9e9e9;
}
.list-a a {
  color: #000;
  letter-spacing: -0.32px;
}
.article-content article {
  padding-bottom: 40px;
  border-bottom: 1px solid #e9e9e9;
}
.col-data {
  padding-top: 40px;
}
.article-card {
  color: #000;
}
.article-card .thumbnail {
  width: 185px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}
.article-card .content {
  max-width: calc(100% - 185px - 24px);
  flex: 1;
}
.article-card .content h2 {
  font: 600 16px / normal "Manrope";
  letter-spacing: -0.32px;
}
.article-card .content .subtitle {
  margin: 6px 0;
}
.new-add-more {
}
.bold {
  font-weight: 600;
}
/* newsroom end */
/* modal */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  /* padding: 2rem 2.5rem; */
  border-radius: 0.5rem;
  max-width: 790px;
  height: calc(100vh - 2rem);
  width: calc(100% - 30px);
  overflow-y: auto;
}
.close-button {
  float: right;
  font-size: 2.2em;
  line-height: 1;
  padding: 0 0.2em 0.15em;
  text-align: center;
  cursor: pointer;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 15px;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.padding-width {
  padding: 48px 64px;
}
.message-ceo {
  margin-top: 48px;
}
/* contact us page css */
.contact-container {
}
.heading-left {
  width: 416px;
}
.contact-form {
  max-width: 800px;
  padding: 24px;
  width: 100%;
  gap: 24px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.f-14-bold {
  font: 700 14px / normal "Space Grotesk";
  letter-spacing: -0.28px;
}
.mb-1 {
  margin-bottom: 4px;
}
label {
  display: block;
  margin-bottom: 0.25rem;
}
.contact-form input[type="text"],
.contact-form textarea {
  display: flex;
  width: 400px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  font: 400 16px / 21px "Space Grotesk";
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.field-selector {
  display: flex;
  gap: 0.5rem;
}
.field-selector input[type="radio"] {
  display: none;
}
.field-selector label {
  padding: 9px 24px;
  font-weight: 500;
  letter-spacing: -0.32px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.field-selector input[type="radio"]:checked + label {
  background: transparent;
  border-color: #000;
}
.contact-button {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  font-family: "Space Grotesk";
}
.contact-button:hover {
  background: #222;
}
.media-container .contact-form {
  border: 0;
  padding: 0;
}
/* end contact us page css */
/* start sw */
.max-50 {
  max-width: 50%;
  width: 100%;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 24px;
}
.grid-item {
  background: #f0f0f0;
  padding: 1rem;
  border: 1px solid #ccc;
  text-align: center;
}
.grid-items img {
  height: 438px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  background: #d9d9d9;
}
.grid-link {
  color: #000;
  text-decoration: none;
}
.blog-slider__item a {
  text-decoration: none;
  letter-spacing: -0.32px;
}
.blog-slider__item img {
  width: 100%;
  height: 239px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}
.blog-slider__title {
  font-weight: 600;
}
.blog-slider__text {
  margin: 4px 0 4px;
}
.blog-slider__date {
  color: #d3d3d3 !important;
  font-weight: 400;
  letter-spacing: -0.32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* end sw */
/* editor css */
.editor-all {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  letter-spacing: -0.32px;
}
.mtb-64 {
  margin: 64px 0;
}
.editor-all hr,
.hr2 {
  background: #e9e9e9;
  width: 100%;
  height: 1px;
  border: none;
}
.editor-all hr {
  margin: 24px 0;
}
ul.dotted-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.editor-all ul li {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
}
.editor-all p {
  margin: 10px 0;
}
.editor-all ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #000;
  border-radius: 50%;
}
.flex-420 {
  flex: 1;
  max-width: 420px;
  font-weight: 700;
}
.flex-800 {
  flex: 1;
  max-width: 800px;
  font-weight: 400;
}
.editor-all .v1 h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.editor-all .third-statement {
  margin-top: 120px;
}
/* editor css */
/* about us page css */
.max-auto {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.quote-box {
  margin-top: 32px;
  padding: 24px;
  border-left: 2px solid #025518;
  background: #efffe0;
}
.quote-label {
  display: inline-block;
  border-radius: 99px;
  background: #025518;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.quote-text {
  font-size: 14.5px;
  line-height: 1.6;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  justify-items: center;
}
.card {
  display: flex;
  /*  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
  */
  border-radius: 12px;
  align-items: flex-start;
}
.card img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}
.card-content {
  flex: 1;
  text-align: left;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.name {
  font-weight: bold;
}
.title-role {
  margin: 2px 0;
}
.experience {
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.links img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.empty-div {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  background: #d9d9d9;
}
.cross-svg {
  display: none;
}
.readmore {
  border-bottom: 1px dashed #595959;
  background: #f2f2f2;
  display: inline-block;
  padding: 12px 24px;
  color: #000;
  cursor: pointer;
}
.br-30 {
  border-radius: 30px;
  width: 100%;
}
/*   mobile respnsive  */
/* home update code */
.header {
  position: absolute;
}
.video-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1080px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  color: white;
  text-align: center;
}
.design-btn {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
}
.design-btn img,
.design-btn svg {
  max-width: 18px;
}
.hero-wrapper p {
  letter-spacing: -0.32px;
}
.scroll-bottom {
  cursor: pointer;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  /* border-radius: 50px; 
    padding: 10px 9px 10px 27px;
    border: 1px solid #DEDEDE; */
  border: 0;
  background: transparent;
}
.modal-white .close-button {
  color: #000;
}
.process-header {
  max-width: 915px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding-bottom: 80px;
}
.process-header h1 {
  font-weight: 600;
}
.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 40px;
}
.process-video-wrapper {
  flex: 0 1 calc(33.333% - 26.66px);
  /* 3 items per row, accounting for gap */
  position: relative;
  box-sizing: border-box;
}
.process-container > .process-video-wrapper:nth-last-child(2):nth-child(3n + 1),
.process-container
  > .process-video-wrapper:nth-last-child(1):nth-child(3n + 2) {
  flex: 0 1 calc(50% - 20px);
  /* Two items in last row get 50% width each */
}
.process-video-wrapper video {
  width: 100%;
  border-radius: 12px;
  height: 455px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  filter: blur(1px);
  object-position: left;
  object-fit: cover;
}
.process-video-wrapper::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.52%, #000 111.66%);
  position: absolute;
  inset: 0;
  border-radius: 12px;
}
.video-overlay-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  letter-spacing: -0.32px;
}
.overlay-title {
  max-width: 290px;
}
.max-1130 {
  max-width: 1130px;
  margin: auto;
}
.bc-aws {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #004887 0%, #7abaf2 100%),
    linear-gradient(180deg, #06071b 0%, #040b0d 100%);
}
.particles-canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.contact-home {
  max-width: 600px;
  width: 100%;
  margin: auto;
  color: #fff;
}
.contact-home .sub-text {
  color: #fff;
}
.brand-with-work {
  padding: 0 100px;
}
.blog-slider__wrap .owl-stage-outer {
  margin-left: -120px; /* Same as stagePadding */
}
.bottom-popup {
  position: fixed;
  border-radius: 4px;
  background: #fff;
  bottom: 5px;
  right: 5px;
  max-width: 534px;
  padding: 30px 33px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup-content a {
  color: #0056b3;
  text-decoration: underline;
  font-weight: 500;
}
.popup-actions {
  display: flex;
  gap: 10px;
}
.popup-actions button {
  width: 50%;
  padding: 6px 26px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font: 400 16px / 21px "Space Grotesk" !important;
}
.accept-btn {
  background: #004b8d;
  color: white;
  font-weight: 500;
}
.popup-actions .decline-btn {
  background-color: transparent;
  border: 1.5px solid #004b8d;
  color: #000;
}
.popup-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
}
.popup-content {
  font: 400 16px / 21px "Space Grotesk" !important;
}
.sticky-element
{
   position: sticky;
    width: 100%;
    top: 30px;
    
}
@media (max-width: 992px) {
  .menu-li {
    padding: 12px 10px;
  }
  .h1-heading {
    font: 600 70px / normal "Manrope";
  }
  .h2-title {
    font: 400 32px / normal "Manrope";
  }
  .process-container {
    gap: 15px;
  }
  .fig-section,
  .text-section,
  .col-span,
  .features-carousel-v {
    width: 49%;
  }
  .process-video-wrapper {
    flex: 0 1 calc(33.333% - 10.66px);
  }
  .video-overlay-content {
    padding: 15px 15px;
  }
  .process-container
    > .process-video-wrapper:nth-last-child(2):nth-child(3n + 1),
  .process-container
    > .process-video-wrapper:nth-last-child(1):nth-child(3n + 2) {
    flex: 0 1 calc(50% - 8px);
  }
  .process-video-wrapper video {
    height: 320px;
  }
  .grids-document {
    gap: 15px;
  }
  .text-section {
    padding: 0 10px;
  }
  .brand-with-work {
    padding: 0 0px;
  }
  .gap-64,
  .footer-wrap,
  .logo-wrapper {
    gap: 30px;
  }
  .footer-links {
    min-width: 150px;
  }
  .footer-brand {
    max-width: 330px;
  }
  .grid-items img {
    height: 270px;
  }
  .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }
  .f-40 {
    font: 600 30px / normal "Manrope";
  }
  .width-1160 {
   padding: 20px 0px 0;
  } 
.faq-section .h2-title {
    margin-bottom: 30px;
}
.bottom-popup {
    padding: 20px 24px;
    gap: 10px;
}
.popup-close {
    top: 18px;
    right: 15px;
}
}
/* home end  */
/* Ensure it's hidden only on mobile screens */
@media (max-width: 768px) {
  /* Hide menu by default on mobile */
  .mobile-nav {
    position: absolute;
    width: 100%;
    z-index: 1;
    background: #fff;
    left: -105%;
  }
  /* Show menu when active */
  .mobile-nav.active {
    opacity: 1;
    left: 0;
    display: block;
    top: 77px;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background: #fff;
  }
  .menu-toggle.active .cross-svg {
    display: block;
  }
  .menu-toggle.active .equal-svg {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .nav-wrap ul.nav-list {
    flex-direction: column;
    background-color: #fff;
    padding: 1rem;
    width: 100%;
    align-items: self-start;
    gap: 15px;
  }
  .menu-toggle {
    cursor: pointer;
    display: inline-block;
  }
  .mang-lang-mb {
    flex-direction: column;
  }
  .nav-list li a {
    color: var(--black);
    display: inline-flex;
  }
  .lang-andconnect {
    padding: 0rem 1rem 1rem 1rem;
    align-items: start;
    width: 100%;
  }
  .andconnect a,
  .lang-andconnect a {
    width: 49%;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #000;
  }
  .andconnect {
    width: 100%;
    gap: 1rem;
    text-align: center;
  }
  .andconnect a:nth-child(2) {
    color: #000;
    background: transparent;
    border: 1px solid #000;
  }
}
@media (max-width: 768px) {
  .blog-slider__wrap .owl-stage-outer {
    margin-left: -40px;
  }
  .ipad {
    padding-bottom: unset;
  }
  .inner-screen {
    width: 100%;
    height: 100%;
    inset: 10px;
    border-radius: 18.77px;
    background: none !important;
  }
  .inner-screen video {
    width: calc(100% - 20px);
    height: calc(100% - 104px);
    inset: 10px;
    border-radius: 18.77px;
  }
  .img-play {
    width: 51px;
  }
  .mbshow-dsp-hide {
    display: block;
  }
  .banner-text {
    padding: 40px 0 60px;
  }
  .h1-heading {
    font: 600 54px / normal "Manrope";
            line-height: 61px;
    letter-spacing: -3.25px;
    text-align: left;
  }
  .hero-wrapper p {
    letter-spacing: -0.32px;
   color: rgba(255, 255, 255, 0.80);
    text-align: left;
            line-height: 21px;
}
    .fig-section, .text-section, .col-span, .features-carousel-v {
        width: 100%;
    }
.process-header {
    text-align: left;
    padding-bottom: 50px;
}
    .process-container {
        gap: 24px;
    }
    .process-container > .process-video-wrapper:nth-last-child(2):nth-child(3n + 1),
     .process-container > .process-video-wrapper:nth-last-child(1):nth-child(3n + 2),
    .process-video-wrapper {
        flex: 0 1 calc(100% - 0px);
    }
        .process-video-wrapper video {
        height: 240px;
    }
.hero-wrapper
{
  text-align:left;
}
.scroll-bottom {
    bottom: 2%;
}
.video-content {
    top: 52%;
}
.design-btn{
  font-size:15px;
}
  .max-width-1065 {
    padding-bottom: 60px;
  }
  .partner-list-slider {
    padding-bottom: 120px;
  }
  .features-carousel {
    gap: 40px;
    flex-direction: column;
  }
  .f-40,
  .f-48,
  .h2-title {
    font: 600 32px / normal "Manrope";
    letter-spacing: -0.64px;
  }
.h2-title {
        font: 600 24px / normal "Manrope";
    }
.overlay-title {
    max-width: 100%;
}
.overlay-title
{
margin-bottom:4px;
}
  .features-carousel-v img {
    height: 350px;
  }
  .faq-section,
  .pd-200 {
    padding: 120px 0;
  }
  .stats-container {
    gap: 40px;
    flex-direction: column;
  }
  .stat-box {
    max-width: 100%;
    gap: 8px;
    padding: 0;
  }
  .line-v1 {
    width: 100%;
    height: 1px;
  }
  .editor-all .third-statement .flex-between,
  .media-container,
  .contact-container,
  .grids-document {
    gap: 40px;
    flex-direction: column;
  }
  .max-50,
  .flex-420,
  .flex-800,
  .article-card .content,
  .side-div,
  .text-section,
  .fig-section {
    max-width: 100%;
    padding: 0;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-link {
    gap: 21px;
  }
  .fig-section img {
    width: 100%;
    height: 340px;
    border-radius: 30px;
  }
  .text-section .f-48 {
    margin: 8px 0 20px;
  }
  .text-section .mt-20 {
    text-align: left;
  }
  .footer-wrap {
    gap: 64px;
    flex-direction: column;
  }
  .footer-ul {
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .header {
    margin-top: 35px;
  }
  .header {
    z-index: 2; /* Keeps content above the ::before background */
    z-index: 2;
    margin-top: 15px;
  }
  /*
  .header::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: black;
    z-index: -1;
  }*/
  .wrap-nav {
    border: 1px solid #e9e9e9;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
  }
  .logo-abundia-3.ext-mob {
    display: none;
  }
  .have-index .header::before {
    content: none;
  }
  .image-content {
    display: none;
  }
  .pd-80 {
    padding: 60px 0 60px;
  }
  .article-section.pd-80 .gap-64 {
    flex-direction: column;
    gap: 120px;
  }
  .list-a a {
    text-decoration-line: underline;
  }
  .f-24 {
    font: 600 20px / normal "Manrope";
  }
  .col-parent p {
    margin: 5px 0;
  }
  .col-data {
    padding-top: 30px;
  }
  .article-card {
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
  }
  .article-card .thumbnail {
    width: 100%;
    height: 240px;
  }
  .subtitle {
    margin: 5px 0;
  }
  .article-card .content h2,
  .article-card .content {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .article-section-newsroom .load-more {
    margin-top: 40px;
  }
  .field-selector {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .contact-form input[type="text"],
  .contact-form textarea {
    width: 100%;
  }
  .contact-form {
    max-width: 100%;
    background: transparent;
  }
  .grid-link p,
  .media-container .contact-form .subtitle {
    color: #888;
  }
  .grid-items img {
    height: 240px;
    width: 100%;
  }
  .media-container .contact-form .date {
    color: #000;
  }
  .mtb-64 {
    margin: 40px 0;
  }
  .flex-420 {
    font-size: 20px;
  }
  .editor-all .v1 h2 {
    font-size: 18px;
  }
  .title-role,
  .blog-slider__text {
    margin: 6px 0 6px;
  }
  .Leadership-team .f-40 {
    text-align: left;
  }
  .Leadership-team .card {
    flex-direction: column;
    box-shadow: unset;
  }
  .hr2.mt-40 {
    margin-bottom: 0;
  }
  .our-value .grid-container,
  .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .empty-div {
    width: 100%;
    height: 240px;
  }
  .grid-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .grid-items-wrap .mt-4 {
    margin: 6px 0 6px;
  }
  .padding-width {
    padding: 15px 15px;
  }
  body.page-legal-desclaimer .header::before {
    background-color: #fafafa;
  }
.video-banner video,
.video-banner {
    height: 402px;
}
.have-index .video-banner video,
.have-index .video-banner {
    height: 100vh;
}
.faq-main .bc-aws {
    background: #fff;
}
}
