/* Prevent accidental horizontal scroll (e.g. Bootstrap's row negative-gutter
   margins leaking out of the footer with nothing clipping them) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header */
#header {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#header.sticky-header #header-wrap {
  background: rgba(0,0,0,0.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

#header .menu-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

#header .menu-link:hover {
  color: #fff;
  transition: color 0.2s ease;
}

#header .menu-link { transition: color 0.2s ease; }

.co-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cnvs-themecolor);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.co-nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Logo scrolls away with the page (like index.html); only the hamburger
   (below) stays fixed on screen.
   This theme's #header-wrap is always position:fixed, so the theme's own
   #logo inside it would always stay glued to the viewport too. Instead we
   hide that default logo and use a separate ".co-scroll-logo" element that
   each page places right after its </header>, absolutely positioned over
   the page content (not inside the fixed header), so it scrolls away
   normally while the header/hamburger stay fixed. */
#header #logo {
  display: none !important;
}

.co-scroll-logo {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 500;
}

.co-scroll-logo img {
  display: block;
  width: 300px;
  max-width: 60vw;
  height: auto;
}

/* Same default/dark logo swap the theme's own JS applies to #header #logo
   (see functions.bundle.js), reproduced here since .co-scroll-logo lives
   outside #header-wrap and that script-injected rule doesn't reach it. On a
   .dark page (like ai.html) the white "logo-dark" image should show instead
   of the colored default. */
.co-scroll-logo [class^="logo-"] {
  display: none;
}
.co-scroll-logo .logo-default {
  display: block;
}
.dark .co-scroll-logo [class^="logo-"] {
  display: none;
}
.dark .co-scroll-logo .logo-dark {
  display: block;
}

:root {
	--path-fill-1: #dce3f1;
	--path-fill-2: #869ccc;
	--path-fill-3: #3da4dc;
	--path-fill-4: #1b4279;
	--color-title: #fff;
	--color-menu: #fff;
	--font-size-menu: 1.625rem;
}

.global-menu {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 999;
}

.global-menu__item {
	color: var(--color-menu);
	font-size: var(--font-size-menu);
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
	display: block;
	margin: 0.3em 0;
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: ease-in;
}

.global-menu__item:nth-child(odd) {
	transform: translateY(-100%) rotate(10deg);
}

.global-menu__item:nth-child(even) {
	transform: translateY(-100%) rotate(-10deg);
}

.global-menu__item:hover { color: var(--cnvs-themecolor); }

.global-menu__item.is-opened {
	opacity: 1;
	transform: translateY(0) rotate(0);
	pointer-events: auto;
	transition-timing-function: ease;
}

.global-menu__item:nth-of-type(1) {
	transition-delay: 0s;
}

.global-menu__item.is-opened:nth-of-type(1) {
	transition-delay: 0.85s;
}

.global-menu__item:nth-of-type(2) {
	transition-delay: 0.05s;
}

.global-menu__item.is-opened:nth-of-type(2) {
	transition-delay: 0.8s;
}

.global-menu__item:nth-of-type(3) {
	transition-delay: 0.1s;
}

.global-menu__item.is-opened:nth-of-type(3) {
	transition-delay: 0.75s;
}

.global-menu__item:nth-of-type(4) {
	transition-delay: 0.15s;
}

.global-menu__item.is-opened:nth-of-type(4) {
	transition-delay: 0.7s;
}

.shape-overlays {
	width: 100%;
	height: 100vh;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
}

.shape-overlays.is-opened {
	pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) {
	fill: var(--path-fill-1);
}

.shape-overlays__path:nth-of-type(2) {
	fill: var(--path-fill-2);
}

.shape-overlays__path:nth-of-type(3) {
	fill: var(--path-fill-3);
}

.shape-overlays__path:nth-of-type(4) {
	fill: var(--path-fill-4);
}



.dark .shape-overlays__path:nth-of-type(1) {
	--path-fill-1: #555;
}

.dark .shape-overlays__path:nth-of-type(2) {
	--path-fill-2: #444;
}

.dark .shape-overlays__path:nth-of-type(3) {
	--path-fill-3: #333;
}

.dark .shape-overlays__path:nth-of-type(4) {
	--path-fill-4: #222;
}

@-webkit-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}
}

.primary-menu-trigger {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1 !important;
}

.hamburger {
	width: 40px;
	height: 40px;
	display: block;
	position: relative;
	cursor: pointer;
	position: fixed;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 40px;
	right: 30px;
	z-index: 1000;
	border-radius: 50%;
	background-color: var(--cnvs-themecolor);
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.hamburger::after {
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 4px solid var(--cnvs-themecolor);
	border-radius: 50%;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: intervalHamburgerBorder;
	animation-name: intervalHamburgerBorder;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.hamburger i {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	color: #FFF;
	margin: 0;
	padding: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 16px;
	-webkit-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.hamburger.is-opened-navi i:first-child,
.hamburger i:last-child { opacity: 0; }

.hamburger.is-opened-navi i:last-child { opacity: 1; }

/* ----------------------------------------------------------------
	Menu Clients
-----------------------------------------------------------------*/

.clients-menu-grid,
.testimonials-grid {
	list-style: none;
	overflow: hidden;
}

.clients-menu-grid li,
.testimonials-grid li {
	float: left;
	position: relative;
	width: 20%;
	padding: 20px 0;
	-webkit-backface-visibility: hidden;
}

.clients-menu-grid.grid-2 li {
	width: 50%;
	padding: 25px 0;
}

.clients-menu-grid.grid-3 li { width: 33.33%; }

.clients-menu-grid.grid-4 li { width: 25%; }

.clients-menu-grid.grid-6 li { width: 16.66%; }

.clients-menu-grid li a { opacity: 0.6; }

body:not(.device-touch) .clients-menu-grid li a {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.clients-menu-grid li a:hover { opacity: 1; }

.clients-menu-grid li a,
.clients-menu-grid li img {
	display: block;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.clients-menu-grid li a img { width: 100%; }

.clients-menu-grid li:before,
.clients-menu-grid li:after,
.testimonials-grid li:before,
.testimonials-grid li:after {
	content: '';
	position: absolute;
}

.clients-menu-grid li:before,
.testimonials-grid li:before {
	height: 100%;
	top: 0;
	left: -1px;
	border-left: 1px dashed #DDD;
}

.clients-menu-grid li:after,
.testimonials-grid li:after {
	width: 100%;
	height: 0;
	top: auto;
	left: 0;
	bottom: -1px;
	border-bottom: 1px dashed #DDD;
}

/* Footer */
#footer {
  --cnvs-footer-bg: #000000;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.07);
  --cnvs-copyrights-link-color: rgba(255,255,255,0.4);
}

.co-footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.co-footer-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.co-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}

.co-footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.co-footer-link:hover {
  color: #fff;
}

.co-social-row {
  display: flex;
  gap: 0.75rem;
}

.co-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.co-social-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

#copyrights {
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding: 1.5rem 0;
  text-align: center;
}

#copyrights a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

#copyrights a:hover {
  color: #fff;
}

/* Center the footer brand/logo widget on tablet & mobile */
@media (max-width: 991.98px) {
  .co-footer-col-brand {
    text-align: center;
  }
  #footer .co-footer-col-brand .co-footer-brand,
  #footer .co-footer-col-brand .widget {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    float: none !important;
    width: auto !important;
  }
  #footer .co-footer-col-brand .widget a {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
  }
  #footer .co-footer-col-brand .widget img {
    width: 60% !important;
    max-width: 200px;
  }

  /* Center the "Reach us" widget on tablet & mobile */
  .co-footer-col-reach {
    text-align: center !important;
  }
  #footer .co-footer-col-reach .co-social-row {
    justify-content: center !important;
  }
}

/* Hide the "Our Solutions" and "Support" footer widgets on mobile and
   tablet (kept visible on desktop only). */
@media (max-width: 991.98px) {
  .co-footer-col-solutions,
  .co-footer-col-support {
    display: none !important;
  }
}
/* probe-marker-1789905993 */
