/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com/
Description:  A child theme for GeneratePress
Author:       BigCommercely Developers
Author URI:   https://bigcommercely.com/
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/
/* Add your custom styles below */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url("../generatepress/style.css");

/* Global Styles Start */

:root {
  --dark-black: #0d122e;
  --blue-light: #2351ff;
  --white-global:#fff;
  --white-opacity: rgba(255, 255, 255, .25);
  --blue-dark: #635bff;
  --sky-blue: #00d5ff;
  --gap: 30px;
  --radius: 32px;
  --container-max: 1400px;
  --gutter: 20px;
  --radius-lg: 56px;
  --radius-sm: 20px;
  --transition-fast: 0.3s ease;
  --white-opacity: rgba(255, 255, 255, 0.25);
  --dark-bg: #0d122e;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --line-color: rgba(255, 255, 255, 0.08);
  --blue-light: #2351ff;
  --gap-lg: 120px;
  --gap-md: 40px;
  --gap-sm: 30px;
  --radius: 36px;
  --dark-black:#0d122e;
  --blue-light:#2351ff;
  --white-opacity:rgba(255,255,255,.25);
  --blue-dark:#635bff;
  --sky-blue:#00d5ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  display: inline-block;
}

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

h1, h2, h3, h4, h5, h6, p, ul, li, a {
  margin: 0;
}

.site-content {
  display: block;
}


body {
  font-family: 'Unbounded';
  background: var(--dark-black);
  color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
.gp-icon svg {
  fill: #fff !important;
}
/* Global Styles End */

/* Header Styles Start */

.site-header {
    background-color: transparent !important;
    padding-top: 32px !important;
    position: fixed;
    top: 30px;
    z-index: 9999;
    width: 100%;
}

.site-header .main-navigation, 
.site-header .main-navigation ul ul {
    background-color: transparent !important;
}

.main-navigation .main-nav ul li a {
    color: var(--white-global) !important;
}

.site-header .site-logo {
	max-width:180px;
	height:24px;
}

.site-header .inside-header {
	max-width: 800px !important;
	padding:20px 40px;
	border:1px solid #575EFE;
	border-radius:100px;
	background-color: #282B59;
	height:80px;
}

.main-navigation .main-nav ul li a {
	line-height:normal !important;
	padding: 8px 20px;
	font-size:15px;
	font-weight:400;
	font-family: "Public Sans", sans-serif !important;
}

.main-navigation .main-nav ul li {
    margin-right: 8px;
}

.main-navigation .main-nav ul li:last-child {
    margin-right: 0;
}

/* Header Styles End */

/* hero-section end */
    :root{
      --clr-navy:#0e1539;
      --clr-white:#ffffff;
      --clr-muted:#d9d9ff;
      --clr-circle:#1831d1;
      --clr-cta:#fffab3;
      --clr-cta-dot:#8d4dff;
      --ff-main:"Inter",sans-serif;
    }

    *,*::before,*::after{box-sizing:border-box}
    html,body{margin:0;padding:0}
    body{
      font-family:var(--ff-main);
      background:var(--clr-navy);
      color:var(--clr-white);
      -webkit-font-smoothing:antialiased;
    }

    .hero-content-c a{
      color:inherit;
      text-decoration:none
    }

    .hero-content-c .container{
      width:100%;
      max-width:1400px;
      margin-inline:auto;
      position:relative;
    }

    .hero-content-c{
      position:relative;
      overflow:hidden;
      padding: 80px 0 0;
      background:var(--clr-navy);
      isolation:isolate;
      animation:hero-entry 1200ms cubic-bezier(.22,.8,.4,1) 100ms both;
    }

    .hero-content-c::before{
      content:"";
      position:absolute;
      top:-15%;
      left:-20%;
      width:140vmin;
      height:140vmin;
      border-radius:50%;
      background:url("https://bigcommercely.com/wp-content/uploads/2025/07/ChatGPT-Image-Jul-15-2025-07_44_58-PM.webp") center/cover;
      transform:rotate(-8deg);
      animation:slow-rotate 80000ms linear infinite;
      z-index:-1;
      mix-blend-mode:screen;
    }
	.hero-content-c .hero-wrap {
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
    .hero-content-c h2{
      font-size: 80px;
      line-height:1.05;
      font-weight:700;
      margin:0;
      text-align:center;
    }

    .hero-content-c p{
      font-size:18px;
      font-weight:400;
      color:var(--clr-muted);
      max-width:45ch;
    }

    .hero-content-c .btn-cta{
      align-items:center;
      gap:12px;
      padding:18px 48px;
      background:var(--clr-cta);
      color:var(--clr-navy);
      border-radius:48px;
      font-weight:700;
      font-size:16px;
      box-shadow:0 14px 24px -10px rgba(0,0,0,.35);
      transition:transform 250ms ease,box-shadow 250ms ease;
      display:flex;
      width:fit-content;
      margin:40px auto;
    }

    .hero-content-c .btn-cta::after{
      content:"";
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--clr-cta-dot);
      transition:transform 250ms ease;
    }

    .hero-content-c .btn-cta:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 30px -8px rgba(0,0,0,.45);
    }

    .hero-content-c .btn-cta:hover::after{
      transform:translateX(6px) scale(1.3);
    }

    @keyframes fade-up{
      0%{opacity:0;transform:translateY(60px)}
      100%{opacity:1;transform:none}
    }

    @keyframes fade-up-s{
      0%{opacity:0;transform:translateY(40px)}
      100%{opacity:1;transform:none}
    }

    @keyframes slow-rotate{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    @keyframes hero-entry{
      0%{opacity:0;transform:translateY(100px)}
      100%{opacity:1;transform:translateY(0)}
    }

    .hero-content-c .hero-wrap>*{opacity:0}
    .hero-content-c .hero-wrap h2{animation:fade-up 2s cubic-bezier(.22,.8,.4,1) 1s forwards}
    .hero-content-c .hero-wrap p{animation: fade-up-s 1.5s cubic-bezier(.22,.8,.4,1) 1.5s forwards;}
    .hero-content-c .hero-wrap .btn-cta{animation:fade-up-s 1.9s cubic-bezier(.22,.8,.4,1) 1.9s forwards}

    @media(max-width:1024px){
    .hero-content-c h2{
        font-size: 90px;
    }
    .hero-content-c .container{
        padding: 0 20px;
    }
    }

    @media(max-width:768px){
	
	.site-header .header-image{
			margin-top: 13px;
		}	
		
		
	.main-navigation .inside-navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #4e54de;
    border-radius: 30px;
		}	
		
    .hero-content-c h2{
        font-size: 22px;
    }
    .hero-content-c p{
        font-size: 14px;
		text-align:center;
    }
    .hero-content-c::before{
        top:-20px;
        left:-150px;
        width:100vmin;
        height:100vmin;
    }
    .hero-content-c .container{
        padding: 0 20px;
    }
    .hero-content-c .btn-cta {
        padding: 18px 30px;
        font-size: 14px;
        margin: 30px auto;
    }
	.hero-content-c .hero-wrap {
		height: 50vh;
		margin: 110px 0 0 0;
		align-items: center;
	}
    }
/* hero-section end */

/* second section start  */
    .logo-project-wrap {
      background-color: #0e1539;
      padding: 100px 0;
    }
  
    .logo-project-wrap .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
    }
  
    .logo-grid .logo-img {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .logo-grid img {
      display: block;
      max-width: 100%;
      height: auto;
    }
  
    .logo-img.mt {
      position: relative;
      top: 0px;
      transition: top 0.5s ease-out;
    }
  
    @media screen and (max-width: 1024px) {
      .logo-project-wrap {
        padding: 50px 0 100px;
      }
    }
/* second section end */

/* .business-goal-c {
  background-image: url(https://themes.muffingroup.com/be/agency9/wp-content/uploads/2024/04/agency9-home-bg2.webp#37);
  background-position: center bottom;
  background-size: cover;
  min-height: 130vh;
  padding: 60px 0;
}

/* Keep scrolling for the rest of the file... */

/* global ball start  */
.global-flexible-c.hero.bc {
      position: relative;
      height: 100vh;
      background: #0b123d;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 0 8vw;
    }
    .global-flexible-c.hero.bc .ball {
      --s: 26vmin;
      background: rgb(125 254 213) url("https://cdn.prod.website-files.com/6511660104cd0723e7debd9f/653009ac0733cf5f9aa7a229_ball-bg.svg") center/contain no-repeat;
      position: absolute;
      top: 50%;
      left: 0;
      width: var(--s);
      height: var(--s);
      border-radius: 50%;
      transform: translateY(-50%);
      will-change: transform;
      z-index: 0;
    }
    .global-flexible-c.hero.bc .heading {
      opacity: 0;
      transform: translateY(50px);
      z-index: 2;
    }
    .global-flexible-c.hero.bc .heading h2 {
      font-size: 80px;
      line-height: 1;
      font-weight: 700;
      color: #fff;
    }
    .global-flexible-c.hero.bc .copy {
      position: absolute;
      left: 8vw;
      width: 40vw;
      max-width: 700px;
      color: #0b123d;
      font-size: 4vmin;
      line-height: 1.15;
      font-weight: 700;
      opacity: 0;
      z-index: 3;
    }
    .global-flexible-c.hero.bc .deck {
      position: absolute;
      top: 30%;
      width: 100%;
      pointer-events: none;
      opacity: 0;
      z-index: 3;
      left: 0;
    }
    .after {
      height: 20vh !important;
      background: rgb(254, 231, 125);
    }
    @media (max-width: 768px) {
      .global-flexible-c.hero.bc .heading h2 {
        font-size: 30px;
      }
    }
    .swiper-wrapper {
      position: relative;
      top: 30px;
    }
    .video-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      width: auto !important;
    }
    .banner-video-slider video {
      height: auto;
      width: auto;
      max-height: 470px;
      max-width: 100%;
      border-radius: 20px;
      object-fit: contain;
    }
    .banner-video-slider .swiper-wrapper {
      transition-timing-function: linear !important;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
      display: none !important;
    }
    .desktop-slider {
      display: block;
    }
    .mobile-slider {
      display: none;
    }
    @media (max-width: 768px) {
      .desktop-slider {
        display: none;
      }
      .mobile-slider {
        display: block;
      }
	.after {
    height: 10vh !important;
	}
    }
/* global ball end */

/* ticker-slide start  */
    .section-ticker {
      background: #0E1539;
      overflow: hidden;
      height: 208px;
    }

    .section-ticker .ticker__list {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 15s linear infinite;
    }

    .section-ticker .ticker__item {
      display: inline-block;
      padding-right: 60px;
      font-family: Arial, sans-serif;
      font-size: 40px;
      color: #ffffff;
      line-height: 208px;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
/* ticker-slide end  */

/* testimonials-card start */

    .testimonials-section .container {
      max-width: 1100px;
      width: 90%;
      margin: auto;
    }

    .testimonials-section .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 220px;
      gap: 20px;
    }

    .testimonials-section .testimonial-card-c {
      background: #fff;
      border-radius: 8px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
      opacity: 1;
      transform: translateY(120px);
      transition: transform 0.7s ease, opacity 0.7s ease;
    }

    .testimonials-section .testimonial-card-c.show {
      opacity: 1;
      transform: translateY(0);
    }

    .testimonials-section .quote {
      font-size: 15px;
      color: #334;
      line-height: 1.55;
    }

    .testimonials-section .author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
    }

    .testimonials-section .author img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
    }

    .testimonials-section .author h3 {
      font-size: 14px;
      font-weight: 600;
      color: #111;
    }

    .testimonials-section .author span {
      font-size: 12px;
      color: #666;
    }

    .testimonials-section .testimonial-card-c.stat {
      align-items: center;
      justify-content: center;
      font-size: 56px;
      font-weight: 700;
      color: #05173d;
      text-align: center;
      grid-row: span 2;
      background: #8c9be3;
    }

    .testimonials-section .testimonial-card-c.stat.show p {
      font-size: 20px;
      margin: 20px 0;
    }

    @media (max-width: 900px) {
      .testimonials-section .testimonial-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      .testimonials-section .testimonial-card-c.stat {
        grid-row: auto;
        font-size: 48px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonials-section .testimonial-card-c {
        transition: none;
      }
    }
/* testimonials-card end */
/* zoom section start*/
    .zoom-section {
      position: relative;
      height: 100vh;
      background: #0b0f2c;
	  padding: 60px 0;
	  overflow: hidden;
    }
    .zoom-container {
      position: sticky;
      top: 50px;
      height: 80vh;
      max-width: 1400px;
      margin: 0 auto;
      background: #fffce3;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    /* shapes: translate & scale via CSS vars */
    .zoom-shape {
      position: absolute;
      will-change: transform;
      transform-origin: center center;
      --scale: 1;
      transform: translate(var(--tx), var(--ty)) scale(var(--scale));
    }
    .zoom-shape--one   { --tx: 3.3398rem;
    --ty: 0.8301rem;
    width: 220px;
    right: 0;
    bottom: 0;
	margin: 0 502px 0 0;
		}
    .zoom-shape--two   { 
		--tx: -3.3204rem; 
		--ty: 0.8301rem; 
		width:100px;  
		right:0; 
		top:0; 
		}
    .zoom-shape--three { 
	--tx: -6.6602rem;
    --ty: 0.8301rem;
    width: 220px;
    right: 0;
    bottom: 0; 
	margin: 0 1114px 68px 0;
}

    .zoom-content {
      position: relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:20px;
      padding:0 20px;
      text-align: left;
    }
    .zoom-content h1 {
      font-size:4rem;
      line-height:1.1;
      color:#0b0f2c;
    }
    .zoom-button {
      display:inline-flex;
      align-items:center;
      padding:12px 24px;
      background:#0b0f2c;
      color:#fff;
      border-radius:24px;
      text-decoration:none;
      font-size:1rem;
	  width: fit-content;
	  margin: 0 auto;
    }
    .zoom-button__dot {
      width:8px; height:8px;
      background:#8b3cff;
      border-radius:50%;
      margin-left:8px;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .zoom-section { height: 100vh; }
      .zoom-container {
        top:20px;
        height: calc(100vh - 40px);
        margin: 0 20px;
        border-radius: 16px;
      }
      .zoom-content h1 { font-size:2.5rem; }
      .zoom-shape--one   { 
		width:40vw;
		margin: 28px -41px 271px 0;
		}
      .zoom-shape--two   { width:20vw; }
      .zoom-shape--three { 
		width:50vw;
		margin: 0 82px 72px 0;
		}
    }
/* zoom section end */

.image-text-wrap-c {
    padding: 60px 0;
}

.business-goal-c .our-goal-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.business-goal-c .goal-left {
     position: sticky;
    top: 10vh;
    align-self: start;
    margin-top: 35px;
}

.business-goal-c .title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}

.business-goal-c .goal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 22px 80px;
  border: 1px solid #fff;
  border-radius: 90px;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  background: transparent;
  overflow: hidden;
  transition: color 0.4s ease;
  margin-top: 30px;
}

.business-goal-c .goal-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease-in-out;
  z-index: -1;
}

.business-goal-c .goal-btn:hover::before {
  transform: scaleX(1);
}

.business-goal-c .goal-btn:hover {
  color: #000;
}

.business-goal-c .goal-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5px;
}

.business-goal-c .goal-lead {
  grid-column: 1 / 3;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  margin: 0;
}

.business-goal-c .stats-grid {
  grid-column: 2 / 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-self: start;
  margin-top: 40px;
}

.business-goal-c .stat-box {
  position: relative;
  background: #25284C;
  padding: 30px;
  color: #d2efff;
  border: 1px solid #323779;
  border-radius: 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: transform 0.4s ease;
}

.business-goal-c .stat-box::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d2efff;
  opacity: 0.9;
}

.business-goal-c .stat-box h3 {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

.business-goal-c .stat-box p {
  font-size: 13px;
  margin: 0;
}

.business-goal-c .stat-box.featured {
  background: #4e5bff;
  color: #e9f6ff;
}

.business-goal-c .stat-box.featured::after {
  background: #e9f6ff;
} */

.image-text-wrap-c {
  padding: 60px 0;
  background: var(--dark-black);
}

.image-text-wrap-c .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.image-text-wrap-c .grid-wrap-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.image-text-wrap-c .grid-thumb {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.grid-thumb:hover img {
  transform: scale(1.1);
}

.image-text-wrap-c .grid-title {
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  color: #d2efff;
}

.buiness-hill-c {
  background-image: url(https://themes.muffingroup.com/be/agency9/wp-content/uploads/2024/04/agency9-home-bg3.webp#39);
  background-position: center bottom;
  background-size: cover;
  min-height: 170vh;
  padding: 60px 0;
}

.buiness-hill-c .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.buiness-hill-c .buiness-hill-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.buiness-hill-c .hill-left {
  position: sticky;
    top: 10vh;
    align-self: start;
    margin-top: 35px;
}

.buiness-hill-c .hill-left span {
  color: #575EFE;
}

.buiness-hill-c .hill-left p {
  color: rgb(109 114 164);
}

.buiness-hill-c .title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}

.buiness-hill-c .hill-grid {
  grid-column: 2 / 2;
  display: grid;
  grid-template-columns: repeat(1fr, 1fr);
  gap: 20px;
  align-self: start;
}

.buiness-hill-c .hill-box {
  position: relative;
  background: #25284C;
  padding: 30px;
  color: #d2efff;
  border: 1px solid #323779;
  border-radius: 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: transform 0.4s ease;
}

.buiness-hill-c .hill-box h3 {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

.buiness-hill-c .hill-box p {
  font-size: 13px;
  margin: 0;
}

.buiness-hill-c .hill-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 22px 80px;
  border: 1px solid #fff;
  border-radius: 90px;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  background: transparent;
  overflow: hidden;
  transition: color 0.4s ease;
  margin-top: 30px;
  width: fit-content;
}

.buiness-hill-c .hill-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease-in-out;
  z-index: -1;
}

.buiness-hill-c .hill-btn:hover::before {
  transform: scaleX(1);
}

.buiness-hill-c .hill-btn:hover {
  color: #000;
}

.buiness-hill-c .hill-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5px;
}


.img-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-heading-wrap img {
  width: 20%;
}

.our-team-cards .container {
  max-width: var 1000px;
  margin: 0 auto;
  padding: 0;
}

.our-team-cards {
  background: #111633;
  padding: 60px 0;
}

.our-team-cards .team-box {
  position: relative;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: var(--blue-dark);
  overflow: hidden;
}

.our-team-cards .team-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://themes.muffingroup.com/be/agency9/wp-content/uploads/2024/04/agency9-home-bg4.webp#40") center/cover no-repeat;
  opacity: 0.25;
}

.our-team-cards .title {
  margin: 0 auto 30px;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.our-team-cards .team-btn {
  margin: 40px auto;
  padding: 22px 60px;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 90px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-fast);
  display: block;
  width: fit-content;
}

.our-team-cards .team-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease-in-out;
  z-index: -1;
}

.our-team-cards .team-btn:hover,
.team-btn:focus {
  color: #000;
}

.our-team-cards .team-btn:hover::before,
.team-btn:focus::before {
  transform: scaleX(1);
}

.our-team-cards .team-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.our-team-cards .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.our-team-cards .member {
  background: var(--white-opacity);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 30px 20px 0;
  overflow: hidden;
}

.our-team-cards .member h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.our-team-cards .member p {
  margin: 0 0 20px;
  font-size: 14px;
  opacity: 0.9;
}

.our-team-cards .member img {
  width: 100%;
  display: block;
}

.our-team-cards .member:hover img,
.member:focus-within img {
  filter: grayscale(0);
  transform: scale(1.02);
}

.business-testimonial {
  background: var(--dark-bg) url('https://themes.muffingroup.com/be/agency9/wp-content/uploads/2024/05/agency9-home-bg5.webp#46') center bottom / cover fixed no-repeat;
  padding: 60px 0;
}

.business-testimonial__inner {
  display: flex;
  justify-content: center;
}

.business-testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.business-testimonial .logos-panel {
  background-color: var(--panel-bg);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, minmax(220px, 1fr));
  position: relative;
  isolation: isolate;
}

.business-testimonial .logos-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 40%, var(--blue-light) 0%, var(--dark-bg) 40%);
  filter: blur(60px);
  z-index: -1;
}

.business-testimonial .logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.business-testimonial .logo-cell:nth-child(2n) {
  border-right: none;
}

.logo-cell:nth-child(n + 5) {
  border-bottom: none;
}

.business-testimonial .logo-cell img {
  max-width: 170px;
  height: auto;
}

.business-testimonial .testimonial-text__title {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.business-testimonial .testimonial-text__title span {
  color: #575efe;
}

.business-testimonial .testimonial-text__description {
  color: rgb(109, 114, 164);
}
/* offer page styles*/
.offer-hill-c .container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}
.offer-hill-c .buiness-hill-card {
	display: grid;
	grid-template-columns: 1fr ;
}
.offer-hill-c .hill-grid {
	display: grid;
	grid-template-columns: repeat(1fr, 1fr);
	gap: 20px;
	align-self: start;
	grid-column: 1;
}
/* offer page styles*/

/* about page styles */
.about-hero-c {
	padding: 60px 0;
} 
.about-goal-c {
  background-image: url(http://themes.muffingroup.com/be/agency9/wp-content/uploads/2024/05/agency9-about-bg2.png#77);
  background-position: center bottom;
  background-size: cover;
  min-height: 100vh;
  padding: 60px 0;
}

.about-hero-c .container {
	max-width 1100px !important;
	margin: 0 auto;
}
.about-hero-c .about-hero{
  position:relative;
  height:100vh;                  
  margin-inline:auto;
  border-radius:32px;
  overflow:hidden;
  display:flex;
  align-items:end;
  isolation:isolate;          
}

.about-hero-c .about-hero video,
.about-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.about-hero-c .about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
      rgba(72,84,255,.90) 0%,
      rgba(72,84,255,.90) 55%,
      rgba(72,84,255,.40) 72%,
      rgba(0,0,0,0) 100%);
  mix-blend-mode:multiply;    
  pointer-events:none;
}

.about-hero-c .hero-content{
  position:relative;
  z-index:2;
  margin-left: 50px;
  padding-bottom: 80px;
}

.about-hero-c .about-hero .title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    margin-bottom: 30px;
}

.about-hero-c .hero-content p{
  font-size: 16px;
  color:#d9dcff;
}
.about-goal-c .stats-grid {
	grid-column: 2 / 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-self: start;
	margin-top: 40px;
}
.about-goal-c .goal-left {
    position: relative;
    top: 0;
}
.about-team-cards .team-box {
    position: relative;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--blue-dark);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about-team-cards .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gutter);
}
.about-team-cards .member{
    background: var(--white-opacity);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    padding: 30px 20px 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about-team-cards .title {
    margin: 0 auto 30px;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.2;
}
.about-team-cards .team-btn {
    margin: 40px 0;
    padding: 22px 60px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 90px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color var(--transition-fast);
    display: block;
    width: fit-content;
}
/* about page styles */
/* footer start */
.talk-footer-s .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.talk-footer-s {
    background:#0d122e;
    padding:60px 0;
}
.talk-footer-s .talk-footer-c{
  display:flex;
  justify-content:center;
}
.talk-footer-s .talk-footer-c__inner{
  width:94%;
  max-width:1680px;
  background:#1c2245;
  border-radius:46px;
  padding:120px 5vw 90px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.talk-footer-c__inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,#2644ff 0%,#1c2245 65%);
  opacity:.2;
}
.talk-footer-c__sphere{
  width:96px;
  height:96px;
  object-fit:contain;
  margin-bottom:40px;
}
.talk-footer-s .title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    margin-bottom: 40px;
}
.talk-footer-c__actions{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:40px;
}
.talk-footer-c__pill{
  display:inline-block;
  padding:30px 50px;
  border:2px solid rgba(255,255,255,.28);
  border-radius:90px;
  font-size: 22px;
  font-weight:800;
  text-transform:uppercase;
  color:#dff2ff;
  text-decoration:none;
  position: relative;
  z-index: 9999;
}
.talk-footer-c__divider{
  border:none;
  border-top:1px solid rgba(255,255,255,.08);
  margin: 0;
}
.talk-footer-c__social{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:34px;
  list-style:none;
  font-size:20px;
  font-weight:600;
  color:#9ab3ff;
  padding: 40px 0;
}
.talk-footer-c__social a{
  color:inherit;
  text-decoration:none;
}
.talk-footer-c__copy{
  font-size:16px;
  color:#8ea6d0;
  margin-top: 30px;
}
.talk-footer-c__copy a{
  color:#00c1ff;
  text-decoration:none;
}

.talk-footer-c__sphere-wrap{
  position:relative;
  width:96px;
  height:96px;
  margin:0 auto 40px;      
  animation:spin 10s linear infinite;
}


@keyframes spin{
  to{
    transform:rotate(360deg)
}
}

.talk-footer-c__sphere-wrap::after{
  content:'';
  position:absolute;
  inset:-4px;            
  border-radius:50%;
  mix-blend-mode:soft-light;
  animation:glint 3.8s linear infinite;
}

@keyframes glint{
  0%  {transform:translateX(-60%) rotate(0deg)}
  100%{transform:translateX(60%)  rotate(360deg)}
}
.site-footer .grid-container {
    max-width: 100%;
}
.site-footer .footer-widgets-container {
    padding: 0;
}
.site-info {
    display: none;
}
/* footer end */

@media (max-width: 1024px) {
  .hero-banner-c .pill {
    font-size: 40px;
    padding: 5px 10px;
  }

  .hero-banner-c .avatar,
  .hero-banner-c .cta {
    width: 70px;
    height: 70px;
  }

  .business-goal-c .our-goal-c {
    grid-template-columns: 1fr;
  }

  .business-goal-c .goal-left {
    position: static;
  }

  .business-goal-c .title {
    font-size: 38px;
  }

  .business-goal-c .goal-lead {
    grid-column: 1 / -1;
  }

  .business-goal-c .stats-grid {
    grid-column: 1 / 1;
  }

  .buiness-hill-c .buiness-hill-card {
    grid-template-columns: 1fr;
  }

  .buiness-hill-c .hill-left {
    position: static;
  }

  .buiness-hill-c .title {
    font-size: 38px;
  }

  .buiness-hill-c .hill-grid {
    grid-column: 1 / 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .our-team-cards .team-box {
    padding: 40px var(--gutter);
  }

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

  .our-team-cards .container {
    padding: 0 20px;
  }

  .business-testimonial__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }

  .business-testimonial .logos-panel {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
  }

  .business-testimonial .testimonial-text__title br {
    display: none;
  }

  .business-testimonial .testimonial-text__description br {
    display: none;
  }
.offer-hill-c .buiness-hill-card {
     grid-template-columns: 1fr;
  }
 .about-team-cards .team-box {
    grid-template-columns: 1fr;
  }
.about-team-cards .team-grid {
   grid-template-columns:  1fr;
}
.talk-footer-c__pill {
    padding: 30px;
    font-size: 22px;
}
}

@media (max-width: 768px) {
.site-header {
    padding-top: 0 !important;
    top: 30px;
}
.hero-content-c {
    padding: 0;
}
  .hero-banner-c .banner-wrap-c {
    min-height: 90vh;
  }

  .hero-banner-c .pill {
    font-size: 23px;
    padding: 5px 10px;
  }

  .hero-banner-c .avatar,
  .hero-banner-c .cta {
    width: 60px;
    height: 60px;
  }

  .hero-banner-c {
    background-position: inherit;
  }
	
  .business-goal-c .container {
    padding: 0 20px;
  }

  .business-goal-c {
    min-height: 90vh;
  }

  .business-goal-c .our-goal-c {
    grid-template-columns: 1fr;
  }

  .business-goal-c .goal-left {
    position: static;
  }

  .business-goal-c .title {
    font-size: 22px;
  }

  .business-goal-c .title br {
    display: none;
  }

  .business-goal-c .goal-lead {
    font-size: 14px;
  }

  .business-goal-c .stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .business-goal-c .goal-btn {
    padding: 18px 40px;
    font-size: 14px;
  }

  .image-text-wrap-c .grid-wrap-c {
    grid-template-columns: 1fr;
  }

  .image-text-wrap-c .grid-title {
    font-size: 14px;
  }

  .image-text-wrap-c .container {
    padding: 0 20px;
  }

  .buiness-hill-c {
    min-height: 90vh;
  }

  .buiness-hill-c .buiness-hill-card {
    grid-template-columns: 1fr;
  }

  .buiness-hill-c .hill-left {
    position: static;
  }

  .buiness-hill-c .title {
    font-size: 22px;
  }

  .buiness-hill-c .title br {
    display: none;
  }

  .buiness-hill-c .hill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .buiness-hill-c .hill-box h3 {
    font-size: 24px;
    order: 1;
  }

  .buiness-hill-c .hill-left p br {
    display: none;
  }

  .buiness-hill-c .hill-left p {
    font-size: 14px;
  }

  .buiness-hill-c .hill-btn {
    padding: 18px 40px;
    font-size: 14px;
    width: fit-content;
  }

  .img-heading-wrap {
    flex-direction: column;
    align-items: start;
  }

  .img-heading-wrap img {
    width: 40%;
    margin-bottom: 20px;
  }

  .buiness-hill-c .hill-box {
    width: 100%;
  }

  .our-team-cards .title {
    font-size: 22px;
  }

  .our-team-cards .title br,
  .member h3 br {
    display: none;
  }

  .our-team-cards .team-grid {
    grid-template-columns: 1fr;
  }

  .our-team-cards .team-box {
    padding: 40px var(--gutter);
	border-radius: 20px;
  }

  .our-team-cards .container {
    padding: 0 20px;
  }

  .business-testimonial .testimonial-text__title {
    font-size: 22px;
  }

  .business-testimonial .testimonial-text__description {
    font-size: 14px;
  }

  .business-testimonial .logos-panel {
    grid-template-columns: 1fr;
    order: 1;
  }

  .business-testimonial .testimonial-text__title br {
    display: none;
  }

  .business-testimonial .testimonial-text__description br {
    display: none;
  }
  .business-testimonial .container {
    padding: 0 20px;
  }
  .site-header .inside-header {
    padding: 10px;
    margin: 0 20px;
  }
  .business-goal-c .stat-box {
    width: 100%;
  }
.offer-hill-c .buiness-hill-card {
	grid-template-columns: 1fr;
  }
/* about hero */
.about-hero-c .about-hero .title {
font-size: 22px;
margin-bottom: 20px;
}
.about-hero-c .title br {
display: none;
}
.about-hero-c .hero-content{
margin: 0 auto;
padding: 0 20px 40px;
}
.about-hero-c .container{
padding: 0 20px;
}
.about-hero-c .hero-content p{
font-size: 14px;
color:#d9dcff;
}
.about-team-cards .team-box {
    grid-template-columns: 1fr;
}

.about-team-cards .member {
    grid-template-columns: 1fr;
}

.about-team-cards .member img {
    margin-bottom: 30px;
}
/* about hero */
.talk-footer-s .pill{
    font-size: 22px;
    padding: 15px;
    justify-content: space-between;
}
.talk-footer-s .title {
    font-size: 22px;
}
.talk-footer-s .title br {
    display: none;
}
.talk-footer-s .avatar{
    width:68px;
    height:68px;
}
.talk-footer-s .cta{
    width: 50px;
    height: 50px;
}
.talk-footer-c{
    padding:80px 0;
}
  .talk-footer-c__inner{
    padding:100px 4vw 70px;
}
  .talk-footer-c__heading{
    font-size:38px;
    margin-bottom:70px;
}
  .talk-footer-c__pill{
    padding:20px;
    font-size:14px;
    width: 100%;
}
  .talk-footer-c__divider{
    margin: 0;
}
  .talk-footer-c__social{
    font-size:14px;
    gap:24px;
    margin: 0;
}
.talk-footer-c__heading{
    font-size:52px;
}
.talk-footer-c__actions {
    gap: 20px;
    flex-wrap: wrap;
}
.talk-footer-c__copy {
    font-size: 14px;
    line-height: 22px;
}
.talk-footer-c {
        padding: 0 !important;
    }
	
	
}
