* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: white;
  padding: 10px;
  overflow-x: hidden;
  color: #111;
}
/* HERO */
.hero-wrapper {
  width: 100%;
  min-height: 98vh;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 24px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f5f5f5;
}
.pages-hero-wrapper {
  width: 100%;
      border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 16px 28px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0b0b0b;
}

/* VIDEO BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(245, 245, 245, 0.12) 0%, rgba(245, 245, 245, 0.03) 30%, rgba(0, 0, 0, 0.04) 65%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
/* NAVBAR */
.navbar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 8px 40px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.logo {
  width: 200px;
  height: auto;
  border-radius: 999px;
  background: black;
	display: flex;
	justify-content: center;
	padding: 8px;
	
}
.mainlogo {
	width: 80%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  transition: 0.35s ease;
}
.nav-links li {
  font-size: 15px;
  color: black;
  cursor: pointer;
  font-weight: 400;
  transition: 0.3s ease;
}
.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  color: black;
  cursor: pointer;
  font-weight: 400;
  transition: 0.3s ease;
}
.nav-links li:hover {
  color: #111;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-actions a {
  text-decoration: none;
}
/* HIRE BUTTON */
.mobile-hire {
  display: none;
}
.hire-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 2px 14px 2px 2px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: 0.4s ease;
  overflow: hidden;
  width: fit-content;
}
/* ICON LEFT DEFAULT */
.hire-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: 0.4s ease;
  order: 1;
}
/* TEXT RIGHT DEFAULT */
.hire-btn span {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  transition: 0.4s ease;
  order: 2;
}
/* HOVER */
.hire-btn:hover {
  background: #111;
  padding: 2px 5px 2px 14px;
}
/* TEXT WHITE */
.hire-btn:hover span {
  color: #fff;
}
/* MOVE ICON RIGHT */
.hire-btn:hover .hire-icon {
  order: 2;
}
/* MOVE TEXT LEFT */
.hire-btn:hover span {
  order: 1;
}
.buttonarrow02 {
  width: 40%;
  position: absolute;
  animation: arrowMove 1.8s linear infinite;
}
@keyframes arrowMove {
  0% {
    transform: translateX(-18px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateX(0px);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(18px);
    opacity: 0;
  }
}
/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: #111;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-top: 90px;
  align-items: start;
  padding: 0 2% 0 2%;
}
.left-content {
  max-width: 700px;
}
.heading-light {
  font-size: 66px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px #00000052;
}
.heading-bold {
  margin-top: 6px;
  font-size: 66px;
  line-height: 0.92;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px #00000052;
}
.hero-text {
  margin-top: 28px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 400;
}
/* CTA BUTTON */
.cta-btn {
  margin-top: 28px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 14px 2px 2px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
/* HOVER */
.cta-btn:hover {
  background: #fff;
  padding: 2px 2px 2px 14px;
}
.cta-btn a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* ICON BOX */
.cta-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  order: 1;
}
/* TEXT */
.cta-text {
  height: 60px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 15px;
  transition: 0.4s ease;
  order: 2;
}
/* HOVER TEXT STYLE */
.cta-btn:hover .cta-text {
  background: #fff;
  color: #111;
}
/* MOVE ICON RIGHT */
.cta-btn:hover .cta-icon {
  order: 2;
  animation: iconSlide 0.45s ease;
}
/* ICON SLIDE ANIMATION */
@keyframes iconSlide {
  0% {
    transform: translateX(-18px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
/* MOVE TEXT LEFT */
.cta-btn:hover .cta-text {
  order: 1;
}
/* ARROW IMAGE */
.buttonarrow01 {
  width: 40%;
  position: absolute;
  animation: arrowMove 1.8s linear infinite;
}
/* ARROW ANIMATION */
@keyframes arrowMove {
  0% {
    transform: translateX(-18px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateX(0px);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(18px);
    opacity: 0;
  }
}
/* RIGHT CARD */
.cardrightlink {
  text-decoration: none;
}
.right-card {
  width: 360px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 20;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}
.right-card:hover {
  background: #111;
}
.bannercardvid {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.card-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px 14px;
  gap: 15px;
}
.card-title {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  transition: 0.4s ease;
}
.card-sub {
  margin-top: 6px;
  color: #777;
  font-size: 14px;
  transition: 0.4s ease;
}
.arrow {
  font-size: 38px;
  color: #444;
  transition: 0.4s ease;
  flex-shrink: 0;
}
/* HOVER COLORS */
.right-card:hover .card-title, .right-card:hover .card-sub, .right-card:hover .arrow {
  color: #fff;
}
/* BRANDS - INFINITE SCROLLING LOGOS */
.brands {
  position: relative;
  z-index: 20;
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 2%;
}
.brands-text {
  max-width: 470px;
  color: white;
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Logo Slider Container */
.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:30px 0;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation: marquee 90s linear infinite;
}

.logo-track:hover{
    animation-play-state:paused;
}

.logoz{
    flex-shrink:0;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 45px;
}

.logoz img{
    width:100%;
    height:auto;
    display:block;
}

/* Different logo widths */

.logo-1{
    width:165px;
}

.logo-2{
    width:130px;
}

.logo-3{
    width:210px;
}

.logo-4{
    width:155px;
}

.logo-5{
    width:80px;
}

.logo-6{
    width:130px;
}

.logo-7{
    width:100px;
}

.logo-8{
    width:150px;
}

/* Infinite animation */

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/* Animation keyframes - right to left */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* LARGE */
@media (max-width:1400px) {
  .hero-content {
    gap: 40px;
  }
  .right-card {
    width: 330px;
  }
}
/* TABLET */
@media (max-width:1200px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .right-card {
    margin-left: auto;
  }
  .brands {
    margin-top: 100px;
  }
}
/* MOBILE NAV */
@media (max-width:768px) {
  body {
    padding: 0;
  }
  .hero-wrapper {
           border-radius: 25px;
        padding: 18px;
        min-height: 100vh;
        margin: 1%;
        width: 98%;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgb(0 0 0 / 27%) 0%, rgb(0 0 0 / 23%) 30%, rgb(0 0 0 / 68%) 65%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
  }
  .navbar {
    align-items: center;
  }
  .nav-left {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }
  .hire-btn {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 18px;
    left: 18px;
    right: 18px;
    width: auto;
    min-height: 260px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.35s ease;
  }
  .mobile-hire {
    display: block;
    width: 100%;
    margin-top: 0px;
  }
  .hire-btn02 {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    padding: 2px 14px 2px 2px;
    border-radius: 15px;
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: 0.4s ease;
    overflow: hidden;
    border: 1px solid white;
    width: 100%;
  }
  /* ICON LEFT DEFAULT */
  .hire-icon02 {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: 0.4s ease;
    order: 1;
  }
  /* TEXT RIGHT DEFAULT */
  .hire-btn02 span {
    font-size: 18px;
    font-weight: 400;
    color: white;
    transition: 0.4s ease;
    order: 2;
    text-align: center;
    width: 90%;
  }
  /* HOVER */
  .hire-btn02:hover {
    background: white;
    padding: 2px 5px 2px 14px;
    border: 1px solid #111;
  }
  /* TEXT WHITE */
  .hire-btn02:hover span {
    color: #111;
  }
  /* MOVE ICON RIGHT */
  .hire-btn02:hover .hire-icon02 {
    order: 2;
  }
  /* MOVE TEXT LEFT */
  .hire-btn02:hover span {
    order: 1;
  }
  .buttonarrow03 {
    width: 40%;
    position: absolute;
    animation: arrowMove 1.8s linear infinite;
  }
  @keyframes arrowMove {
    0% {
      transform: translateX(-18px);
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    50% {
      transform: translateX(0px);
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      transform: translateX(18px);
      opacity: 0;
    }
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 10%;
  }
  .nav-links li {
    width: 100%;
    list-style: none;
  }
  .nav-links li a {
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
  }
  .hero-content {
    margin-top: 50px;
    gap: 40px;
  }
  .heading-light {
    font-size: 54px;
    letter-spacing: -3px;
    text-align: center;
  }
  .heading-bold {
    font-size: 58px;
    letter-spacing: -3px;
    text-align: center;
  }
  .hero-text {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 28px;
    padding: 0 10%;
  }
  .cta-btn {
    margin: 0 auto;
  }
  .cta-icon {
    width: 62px;
    height: 62px;
  }
  .cta-text {
    height: 62px;
    padding: 0 28px;
    font-size: 18px;
  }
  .right-card {
    width: 70%;
    margin: 0 auto;
  }
  .card-image {
    height: 200px;
  }
  .brands {
    margin-top: 70px;
  }
  .brands-text {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }
  .logo-item {
    min-width: 100px;
  }
  .logo-item svg {
    height: 35px;
  }
  .logo-slider::before, .logo-slider::after {
    width: 40px;
  }
}
/* SMALL MOBILE */
@media (max-width:480px) {
  .heading-light {
    font-size: 34px;
    text-align: center;
    letter-spacing: -1px;
  }
  .heading-bold {
    font-size: 34px;
    text-align: center;
    letter-spacing: -1px;
  }
  .hero-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 28px;
    padding: 0 0%;
  }
  .cta-btn {
    margin: 0 auto;
  }
  .cta-icon {
    width: 45px;
    height: 45px;
  }
  .cta-text {
    height: 45px;
    padding: 0 28px;
    font-size: 14px;
  }
  .right-card {
    width: 100%;
    margin: 0 auto;
  }
  .brands-text {
    font-size: 16px;
    text-align: center;
  }
  .nav-left {
    padding: 8px 14px 8px 8px;
  }
  .logo {
    width: 52px;
    height: 32px;
  }
  .logo-item {
    min-width: 80px;
  }
  .logo-item svg {
    height: 28px;
  }
  .logo-track {
    gap: 10px;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 16%;
  }
  .nav-links li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
  }
  /* TEXT RIGHT DEFAULT */
  .hire-btn02 span {
    font-size: 15px;
    font-weight: 400;
    color: white;
    transition: 0.4s ease;
    order: 2;
    text-align: center;
    width: 90%;
  }
.logo-1 {
    width: 135px;
}	
	.logo-2 {
    width: 110px;
}
.logo-3 {
    width: 190px;
}	
	.logo-4 {
    width: 145px;
}
	.logo-5 {
    width: 53px;
}
.logo-6 {
    width: 86px;
}
.logo-7 {
    width: 85px;
}
	.logo-8 {
    width: 120px;
}
	
	
	
	
	
}




/* SECTION 2 */
.section2wrapper{
	background: #f1f1f1;
	    margin: 1% 0;
    border-radius: 30px;
	padding: 0 0 1% 0;
}
.hero-text-section{
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
	padding: 6% 0 0 0;
}

/* CONTAINER */
.hero-text-wrap{
  width:95%;
  padding:0px 0px;
  overflow:hidden;
}

/* TEXT */
.text-fill{
  font-size: 61px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-2px;
  color:#111;
  max-width:1400px;
	padding-right: 2%;
}

/* LETTERS */
.char{
  display:inline-block;
  color:rgba(0,0,0,0.12); /* faded letters like image */
  will-change:color;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-text-wrap{
    padding:0px;
  }

  .text-fill{
	  font-size: 48px;
    letter-spacing:-1px;
    line-height:1.3;
	  text-align: center;
  }
}

.fx-dashboard-section{
  padding: 2% 0%;
    width: 95%;
    margin: 0 auto;
}

.fx-top-content{
  max-width:700px;
  color:#555;
  line-height:1.5;
  font-size:20px;
  margin-bottom:18px;
	padding-bottom: 2%;
}

/* GRID */
.fx-grid-wrapper{
  display:grid;
  grid-template-columns:1.15fr 1fr 1.15fr 1.15fr;
  gap:14px;
  align-items:stretch;
	margin-bottom: 5%;
}

/* COMMON CARD */
.fx-card{
  border-radius:30px;
  height:340px;
}

/* BOX 1 */
.fx-dark-card{
  background:linear-gradient(to right,#111,#171717);
  color:#fff;
  padding:24px;
  display:flex;
  flex-direction:column;
}

.fx-arrow-icon{
  width:62px;
  height:62px;
  background:#fff;
  border-radius:18px;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.fx-dark-card h2{
  font-size:60px;
  margin-top:24px;
  font-weight:500;
}

.fx-dark-card p{
  margin-top:auto;
  line-height:1.5;
	font-size: 14px;
}

/* COLUMN */
.fx-column-box{
  display:flex;
  flex-direction:column;
  gap:14px;
  height:340px;
}

.fx-agents-card{
  flex:1;
  border:1px dashed #aaa;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
	padding: 15% 0;
}

.fx-users-wrap{
  display:flex;
  margin-bottom:16px;
}

.fx-users-wrap img{
  width:56px;
  height:56px;
  border-radius:50%;
  margin-left:-10px;
  border:4px solid #ececec;
}

.fx-users-wrap img:first-child{
  margin-left:0;
}

.fx-speed-card{
  flex:1;
  background:#e5e5e5;
  display:flex;
  align-items:center;
  padding:15px;
  gap:16px;
	justify-content: center;
}

.fx-speed-card h3{
  font-size:50px;
  font-weight:500;
}

.fx-speed-card p{
  color:#777;
	font-size: 14px;

}

/* BOX 3 */
.fx-center-card{
  background:#e5e5e5;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.fx-circle-wrap{
  width:160px;
  height:160px;
  position:relative;
  margin:auto;
}

.fx-circle-spin{
  width:100%;
  height:100%;
  border:2px dashed #888;
  border-radius:50%;
  animation:rotateMe 12s linear infinite;
}

.fx-circle-center{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:72px;
  height:72px;
  border-radius:50%;
  background:#111;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
}

	.fx-circle-center img{
		width: 40%;
	}
.fx-center-content{
  margin-top:24px;
}

.fx-center-content h3{
  font-size: 22px;
    margin-bottom: 10px;
    font-weight: 400;
}

.fx-center-content p{
  color:#777;
	font-size: 14px;
}

/* BOX 4 */
.fx-slider-wrapper{
  background:#ffffff;
  overflow:hidden;
  padding:0 !important;
}

.fxTestimonialSlider{
  width:100%;
  height:100%;
}

.swiper-wrapper{
  height:100%;
}
	.swiper-logobox{
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items:center; /* vertical center */
	}
.swiper-slide{
  height:100%;
  padding:30px;
  display:flex;
  flex-direction:column;
}

.fx-quote{
  font-size:60px;
	 display:flex;
    align-items:center;
    height:100%;
}

.fx-brand-logo{
  width:75px;
   display:block;
    object-fit:contain;
}

.fx-review{
  margin-top:40px;
  font-size:18px;
  line-height:1.5;
  color:#555;
  flex:1;
}

.fx-person{
  color:#888;
	margin-top: 6%;
}

@keyframes rotateMe{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}

/* TABLET */
@media(max-width:1200px){
  .fx-grid-wrapper{
    grid-template-columns:1fr 1fr;
  }
}

/* MOBILE */
@media(max-width:768px){
  .fx-grid-wrapper{
    grid-template-columns:1fr;
  }

  .fx-card,
  .fx-column-box{
    height:auto;
	          text-align: center;
  }

  .fx-dark-card h2{
	  margin-top: 30px;
    font-size:46px;
  }
	.fx-dark-card p {
  margin-top: 2%;
    line-height: 1.5;
    font-size: 16px;
}
.fx-agents-card {
   
    font-size: 20px;
}
  .fx-review{
    font-size:20px;
  }
.fx-users-wrap img {
    width: 76px;
    height: 76px;
	}
  .fx-top-content{
    font-size:18px;
	  text-align: center;
  }
	.fx-speed-card p {
    font-size: 18px;
}
	
.fx-arrow-icon {
    margin: 0 auto;
}
	.fx-dark-card {
    padding: 60px;
	}
	.fx-center-content h3 {
		font-size: 26px;
	}
	.fx-center-content p {
    font-size: 16px;
}
	.fx-center-card {
    padding: 60px;
	}
	.section2wrapper {
    padding: 0 3% 1% 3%;
		margin: 1%;
}
	.swiper-slide {
    padding: 60px;
	}
	
}



.glb-marquee-section{
  width:100%;
  overflow:hidden;
  padding:20px 0;
  position:relative;
}
	/* LEFT FADE */
.glb-marquee-section::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:180px;
  height:100%;
  z-index:5;
  pointer-events:none;
  background:linear-gradient(to right, #f1f1f1 0%, rgb(241 241 241) 20%, rgb(241 241 241 / 0%) 100%);
}
/* RIGHT FADE */
.glb-marquee-section::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:180px;
  height:100%;
  z-index:5;
  pointer-events:none;
  background:linear-gradient(to left, #f1f1f1 0%, #f1f1f1 20%, #f1f1f100 100%);
}

.glb-marquee-track{
  display:flex;
  width:max-content;
  animation:glbInfiniteScroll 80s linear infinite;
}

.glb-marquee-item{
  display:flex;
  align-items:center;
  gap:35px;
  flex-shrink:0;
  padding-right:35px;
}

.glb-marquee-text{
  color:rgb(17, 17, 17);
  font-size:16px;
  font-weight:400;
  white-space:nowrap;
  line-height:1;
}

.glb-marquee-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
}

@keyframes glbInfiniteScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-33.333%);
  }
}

/* Tablet */
@media(max-width:991px){

  .glb-marquee-text{
    font-size:18px;
  }

  .glb-marquee-logo{
    height:34px;
  }
	 .glb-marquee-section::before,
  .glb-marquee-section::after{
    width:70px;
  }
}

/* Mobile */
@media(max-width:767px){

  .glb-marquee-section{
    padding:16px 0;
  }

  .glb-marquee-text{
    font-size:18px;
  }

  .glb-marquee-item{
    gap:20px;
    padding-right:20px;
  }

  .glb-marquee-logo{
    height:26px;
  }
}







	.section3wrapper{
		width:100%;
padding:7% 00px;
		background:#0b0b0b;
	    border-radius: 30px;
	}
.cap-wrap-v2{
width:95%;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
overflow:hidden;
	margin: 0 auto;
}
	.cap-wrap-v2-01{
width:95%;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
overflow:hidden;
background:#0b0b0b;
	    border-radius: 30px;
}

/* LEFT SIDE */
.cap-left-v2{
width:45%;
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:650px;
}

.cap-top-row-v2{
display:flex;
align-items:center;
gap:18px;
margin-bottom:40px;
}

.cap-line-v2{
width:380px;
height:1px;
background:#2c2c2c;
position:relative;
}

.cap-dot-v2{
width:34px;
height:18px;
border:4px solid #fff;
border-radius:20px;
position:absolute;
left:0;
top:50%;
transform:translateY(-50%);
background:#0b0b0b;
}

.cap-label-v2{
font-size:12px;
letter-spacing:1.6px;
color:#c8c8c8;
}

.cap-copy-v2{
max-width:70%;
font-size:16px;
line-height:1.7;
color:#d0d0d0;
margin-top:30px;
}

.cap-heading-v2{
font-size:60px;
line-height:1.2;
font-weight:700;
max-width:680px;
margin-top:auto;
margin-bottom:40px;
	color: white;
}


/* RIGHT */
.cap-stack-v2{
width:55%;
display:flex;
height:660px;
gap:12px;
}

.cap-panel-v2{
width:90px;
border:1px solid #2a2a2a;
border-radius:26px;
background:linear-gradient(180deg,#151515,#101010);
position:relative;
transition:all .55s ease;
cursor:pointer;
display:flex;
}

.cap-panel-v2.active{
width:100%;
}

.cap-num-v2{
position:absolute;
top:20px;
right:20px;
font-size:14px;
color:#d6d6d6;
width:46px;
height:46px;
border:1px solid #2b2b2b;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:3;
}

.cap-vertical-v2{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%) rotate(180deg);
writing-mode:vertical-rl;
font-size:15px;
letter-spacing:1px;
color:#bdbdbd;
white-space:nowrap;
transition:opacity .35s;
	    text-transform: uppercase;
}

.cap-panel-v2.active .cap-vertical-v2{
opacity:0;
}

.cap-inner-v2{
padding:42px;
width:100%;
height:100%;
opacity:0;
transform:translateY(20px);
transition:.45s;
position:relative;
}

.cap-panel-v2.active .cap-inner-v2{
opacity:1;
transform:translateY(0);
transition-delay:.18s;
background: linear-gradient(to bottom, rgb(0 0 0 / 67%) 0%, rgb(15 15 15 / 82%) 38%, rgb(14 14 14 / 83%) 72%, rgb(15 15 15 / 90%) 100%), url(https://res.cloudinary.com/di584xpoc/image/upload/v1779716238/servicebg_ts6lks.webp);

background-size:contain;
background-position:bottom;
background-repeat:no-repeat;

border-radius:26px;
}

.cap-title-v2{
font-size:24px;
font-weight:500;
line-height:1.15;
max-width:520px;
margin-bottom:24px;
	color: white;
}

.cap-desc-v2{
font-size:14px;
line-height:1.7;
max-width:700px;
color:#d2d2d2;
}

.cap-graphic-v2{
position:absolute;
right:14%;
bottom:10%;
font-size:130px;
opacity:.85;
	    color: white;
}

/* responsive */
@media(max-width:1200px){
.cap-wrap-v2{
flex-direction:column;
}

.cap-left-v2,
.cap-stack-v2{
width:100%;
}

.cap-heading-v2{
font-size:56px;
}

.cap-stack-v2{
height:520px;
}
}

@media(max-width:768px){
.cap-wrap-v2{
padding:30px 20px;
}

.cap-stack-v2{
height:550px;
}

.cap-heading-v2{
font-size:42px;
}

.cap-title-v2{
font-size: 22px;
        line-height: 1.3;
}

.cap-desc-v2{
font-size:15px;
}

.cap-panel-v2{
width:60px;
}
	.cap-inner-v2 {
    padding: 70px 8%;
	}
	.cap-graphic-v2 {
    font-size: 60px;
	}
	.cap-num-v2 {
    top: 18px;
    right: 6px;
	}
}




/* SECTION */

.industry-wrap-x9{
width: 100%;
    padding: 5% 2.5%;
    max-width: 100%;
    margin: auto;
    background: #f1f1f1;
    border-radius: 30px;
    margin-top: 1%;
}

.industry-top-x9{
max-width:1000px;
margin-bottom:50px;
}

.industry-label-x9{
font-size:13px;
letter-spacing:.08em;
color:#666;
margin-bottom:18px;
text-transform:uppercase;
}

.industry-title-x9{
    font-size: 78px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -3px;
}

.industry-desc-x9{
font-size:16px;
line-height:1.7;
color:#666;
}

/* TABS */

.tabs-nav-x9{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:18px;
margin-bottom:40px;
	    margin-top: 5%;
}

.tab-btn-x9{
padding:0 0 16px;
border:none;
background:none;
border-bottom:1px solid #ddd;
font-size:18px;
cursor:pointer;
text-align:left;
color:#777;
transition:.3s;
}

.tab-btn-x9.active{
color:#000;
border-color:#000;
}

/* TAB CONTENT */

.tab-content-wrap-x9{
position:relative;
width:100%;
}

/* ALL PANELS */

.tab-panel-x9{
display:none;
animation:fadeX9 .45s ease;
}

/* ACTIVE PANEL */

.tab-panel-x9.active{
display:block;
}

/* ANIMATION */

@keyframes fadeX9{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ===== TAB 1 DESIGN ===== */

.design-one-x9{

align-items:center;
}



/* ===== TAB 2 DESIGN ===== */

.design-two-x9{
align-items:center;
}



/* ===== TAB 3 DESIGN ===== */

.design-three-x9{
align-items:center;
}



/* ===== TAB 4 DESIGN ===== */

.design-four-x9{
align-items:center;
}




/* ===== TAB 5 DESIGN ===== */

.design-five-x9{
align-items:center;
}





/* RESPONSIVE */

@media(max-width:1100px){

.tabs-nav-x9{
grid-template-columns:repeat(2,1fr);
}

.design-one-x9,
.design-four-x9{
grid-template-columns:1fr;
}

.design-two-x9,
.design-five-x9{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.industry-wrap-x9{
 width: 98%;
    padding: 7% 3%;
    border-radius: 30px;
    margin: 1%;
	text-align: center;
}
	.industry-title-x9 {
    font-size: 42px;
    letter-spacing: -2px;
}
	.industry-label-x9 {
    font-size: 14px;
	}

.tabs-nav-x9{
grid-template-columns:1fr;
}
.tab-btn-x9 {
    text-align: center;
}
.design-two-x9,
.design-five-x9{
grid-template-columns:1fr;
}

.design-three-x9{
padding:40px 24px;
}

.design-three-x9 h2{
font-size:42px;
}


}



.industry-grid-v77{
width:100%;
padding:3% 0 0 0;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.industry-card-v77{
position:relative;
height:550px;
border:1px solid #e9e9e9;
border-radius:28px;
overflow:hidden;
background:#fbfbfb;
cursor:pointer;
transition:.45s ease;
}

.industry-card-v77:hover{
transform:translateY(-6px);
}

.industry-bg-v77{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:1;
transition:.45s ease;
}

.industry-card-v77:hover .industry-bg-v77{
opacity:0;
}

.industry-overlay-v77{
position:absolute;
inset:0;
background:rgba(0,0,0,.62);
opacity:0;
transition:.45s;
}

.industry-card-v77:hover .industry-overlay-v77{
opacity:0;
}

.industry-pill-v77{
position:absolute;
top:18px;
left:18px;
padding:8px 16px;
font-size:11px;
border-radius:999px;
border:1px solid rgba(0,0,0,.14);
background:#fff;
z-index:3;
	text-transform: uppercase;
}

.industry-card-v77:hover .industry-pill-v77{
background:#fff;
color:#111;
}

.industry-logo-v77{
position:absolute;
top:33%;
left:50%;
transform:translate(-50%,-50%);
font-size:56px;
font-weight:700;
color:#333;
z-index:3;
transition:.3s;
	opacity:0;
}

.industry-card-v77:hover .industry-logo-v77{
opacity:1;
transform:translate(-50%,-50%) scale(.9);
transition:.3s ease;
}

.industry-stats-v77{
position:absolute;
bottom:0;
left:0;
width:100%;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:1px;
z-index:4;
	    padding: 2%;
}

.stat-box-v77{
padding:22px;
min-height:72px;

background:rgba(255,255,255,0.12);
	    border-radius: 10px;
	margin: 3%;
	border: 1px solid #d1d1d1;
	opacity:0;
}

.industry-card-v77:hover .stat-box-v77{
background:white;
	opacity:1;

}

.stat-number-v77{
font-size:16px;
font-weight:500;
margin-bottom:4px;
}

.stat-label-v77{
font-size:14px;
color:#888;
}

@media(max-width:1200px){
.industry-grid-v77{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.industry-grid-v77{
grid-template-columns:1fr;
padding:20px;
}
.industry-card-v77{
height610px;
}
.industry-logo-v77{
font-size:42px;
}
.stat-number-v77{
font-size:24px;
}
}







.section5wrapper{
	width: 100%;
    padding: 7% 00px;
    background: #f1f1f1;
    border-radius: 30px;
	margin-top: 1%;
	margin-bottom: 1%;
	color: black;
}

#luxStartSection{

    width:100%;

}

.luxContainer{

   width: 95%;
    margin:auto;

}

.luxTopText{

    display:block;
    text-align:center;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#000000;
    margin-bottom:22px;

}

.luxMainHeading{

    text-align:center;
    font-size:78px;
    line-height:1.2;
    font-weight:700;
    color:#000000;
    margin-bottom:70px;
    letter-spacing: -3px;
}

.luxCardsWrapper{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

}

.luxCard{

    position:relative;
    min-height:610px;
    padding:52px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    transition:.45s ease;

}

.luxBlueCard{

    background:#FFFFFF;
    color:#00000;
	    border: 1px solid #e9e9e9;
	border-radius: 30px;

}

.luxYellowCard{

   background:#FFFFFF;
    color:#00000;
	    border: 1px solid #e9e9e9;
	border-radius: 30px;

}

.luxBadge{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 20px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.35);
    backdrop-filter:blur(20px);
    font-size:15px;
    margin-bottom:34px;
	border:1px solid #0b0b0b;

}

.luxYellowCard .luxBadge{

    border:1px solid #0b0b0b;

}

.luxCardTitle{

    max-width:90%;
    font-size:58px;
    line-height:1.05;
    font-weight:300;
    margin-bottom:40px;
    letter-spacing:-2px;
    font-family:Arial,sans-serif;

}
.luxbutton1{
	margin-top: 0% !important;
	margin-bottom: 4%;
}

.luxButton{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:100px;
    font-size:17px;
    transition:.35s;
    margin-bottom:45px;

}

.luxButton:hover{

    transform:translateY(-4px);
}

.luxDescription{

        max-width: 90%;
    line-height: 1.7;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}



.luxList{

    width:100%;
    max-width:90%;
    list-style:none;

}

.luxList li{

    padding:18px 0;
    font-size:18px;
    line-height:1.6;

}

.luxYellowCard .luxList li{

    border-color:rgba(0,0,0,.15);

}

.luxBottomArea{

    text-align:center;
    margin-top:4%;

}

.luxBottomButton{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 38px;
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:60px;
    color:#111;
    text-decoration:none;
    transition:.35s;
    font-size:18px;

}

.luxBottomButton:hover{

    background:#111;
    color:#fff;

}


.section6wrapper {
    background: #f1f1f1;
    margin: 1% 0;
    border-radius: 30px;
    padding: 0 0 1% 0;
	background-image: url(https://res.cloudinary.com/di584xpoc/image/upload/v1784105040/section6_w8juoo.png);
	height: 80vh;
	   background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    height: 90vh;
    overflow: hidden;
	text-align: center;
	
}
.section6innerwrapper{
	margin: 0 auto;
	width: 90%;
	padding: 7% 0 0 0;
}

.section6title{
	font-size: 78px;
	font-weight: 700;
	color: black;
}

.section6parh{
	font-size: 22px;
	color: black;
	padding: 2% 0;
	width: 60%;
	margin: 0 auto;
	line-height: 1.5;
}

.section6button{
	margin: 0 auto;
}





/*==================================
Footer Section
==================================*/

.footerbg{
	    padding: 0 0 0.5% 0;
}

.footer-section{

    position:relative;

    width:100%;

    min-height:120vh;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;
	border-radius: 30px;
	

}


/*========================
Background Video
========================*/

.footer-video{
height:120vh;
    position:absolute;

    inset:0;

    width:100%;


    object-fit:cover;

    z-index:-3;

}


/*========================
Overlay
========================*/

.footer-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(7,10,16,.28),
        rgba(7,10,16,.45),
        rgba(7,10,16,.82)
    );

    z-index:-2;

}

.footertitle{
	color: white;
}


/*========================
Content
========================*/

.footer-content{

    width:100%;

    max-width:1400px;

    padding:80px;

    display:flex;

    justify-content:center;

    align-items:center;
	
	margin-top: -25%;

}


/*========================
Close Button
========================*/

.footer-close{

    position:absolute;

    top:30px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(25,25,25,.55);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    transition:.35s;

}

.footer-close:hover{

    transform:rotate(90deg);

    background:rgba(255,255,255,.15);

}


/*========================
Hero
========================*/

.footer-hero{

    text-align:center;

    width:100%;

}


.footer-hero h2{

    font-size:78px;

    font-weight:700;

    line-height:1.05;

    letter-spacing:-3px;

    margin-bottom:42px;

}

.footer-hero span{

    display:inline-block;

}


/*========================
Newsletter
========================*/

.newsletter-form{

    width:700px;

    max-width:95%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:8px;

    border-radius:60px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

}


.newsletter-form input{

    flex: 1;
    border: none;
    outline: none;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: #fff;
    font-size: 17px;
    padding: 0 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;

}

.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus,
.newsletter-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}


.newsletter-form button{

    width:190px;

    height:55px;

    border:none;

    cursor:pointer;

    border-radius:50px;

    font-size:16px;

    font-weight:400;

    color:#fff;

    background:rgb(0 0 0 / 85%);

    transition:.35s;
	    font-family: 'Inter';

}

.newsletter-form button:hover{

    background:#ffffff;

    color:#111;

}

.messagenoticez{
	padding-top: 2%;
}

/*========================
Glass Footer
========================*/

.glass-footer{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    width:95%;

    border-radius:28px;

    overflow:hidden;

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

    background:rgba(18,22,28,.30);

    border:1px solid rgba(255,255,255,.10);

}


.glass-container{

    display:flex;

    justify-content:space-between;

    padding:45px 55px;

    gap:70px;

}


/*========================
Brand
========================*/

.footer-brand{

    width:330px;

}

.logo-box{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;

}

.logo-box img{

    width:200px;

}

.logo-box span{

    font-size:25px;

    font-weight:700;

    letter-spacing:.8px;

}


.footer-brand p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    font-size:15px;

}


/*========================
Links
========================*/

.footer-links{

    flex:1;

    display:flex;

    justify-content:space-evenly;

}


.footer-column h4{

    margin-bottom:20px;

    font-size:15px;
	    font-weight: 400;

    letter-spacing:2px;

    color:#ffffff;

}


.footer-column{

    display:flex;

    flex-direction:column;

}


.footer-column a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

    font-size:15px;

}

.footer-column a:hover{

    color:#fff;

    transform:translateX(6px);

}

/*==========================================
Large Laptop
==========================================*/

@media (max-width:1400px){

.footer-content{
    padding:70px;
}

.footer-hero h2{
    font-size:64px;
}

.glass-container{
    padding:40px;
    gap:50px;
}

.footer-brand{
    width:280px;
}

}


/*==========================================
Laptop
==========================================*/

@media (max-width:1200px){

.footer-content{
    padding:60px;
}

.footer-hero h2{

    font-size:56px;

}

.newsletter-form{

    width:620px;

}

.glass-container{

    flex-direction:column;

    gap:45px;

}

.footer-links{

    justify-content:space-between;

}

}


/*==========================================
Tablet
==========================================*/

@media (max-width:992px){

.footer-content{

    padding:40px;

}

.footer-hero h2{

    font-size:48px;

    line-height:1.15;

}

.newsletter-form{

    width:100%;

}

.glass-footer{

    position:relative;

    width:94%;

    left:auto;

    transform:none;

    margin:50px auto 25px;

    bottom:auto;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.footer-brand{

    width:100%;

}

}


/*==========================================
Mobile
==========================================*/

@media (max-width:768px){

.footer-section{

    min-height:auto;
display: block;
            padding: 7% 0 3%;

}

.footer-content {
    width: 100%;
    max-width: 1400px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.footer-close{

    width:48px;

    height:48px;

    top:20px;

    right:20px;

}

.footer-hero h2{

    font-size:40px;

    letter-spacing:-1px;

}

.newsletter-form{

    flex-direction:column;

    padding:18px;

    border-radius:26px;

    gap:15px;

}

.newsletter-form input{

    width:100%;

    padding:16px;

    text-align:center;
	background-color: #0000002e;
        border-radius: 500px;

}

.newsletter-form button{

    width:100%;

}

.glass-container{

    padding:28px;

}
	.logo-box img {
    width: 50px;
}

.footer-links{

    grid-template-columns:1fr;

    gap:25px;

}
.footer-brand p {
    line-height: 1.9;
    font-size: 16px;
}
.logo-box span{

    font-size:22px;

}
	.footer-column h4 {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
}
	.footer-column a {
    font-size: 16px;
}

}


/*==========================================
Small Mobile
==========================================*/

@media (max-width:480px){

.footer-content{

    padding:20px;

}

.footer-hero h2{

    font-size:28px;
	margin-bottom: 22px;

}
	.newsletterparh {
    font-size: 14px;
    padding: 2% 0 0 0;
    line-height: 1.5;
    width: 90%;
    margin: 0 auto;
    padding-top: 4%;
}
    .glass-footer {
        position: relative;
        width: 94%;
        left: auto;
        transform: none;
        margin: 40px auto 25px;
        bottom: auto;
    }
	
.glass-container{

    padding:30px;

}

.footer-column h4{

    font-size:15px;

}

.footer-column a{

    font-size:14px;

}

.footer-brand p{

    font-size:14px;

}

}


/*==========================================
Premium Animations
==========================================*/

.footer-content{

    animation:fadeUp 1s ease;

}

.glass-footer{

    animation:glassUp 1.2s ease;

}

.newsletter-form{

    transition:.4s;

}

.newsletter-form:hover{

    transform:translateY(-3px);

    border-color:rgba(255,255,255,.25);

    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.footer-column a{

    position:relative;

}

.footer-column a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-3px;

    width:0;

    height:1px;

    background:#fff;

    transition:.35s;

}

.footer-column a:hover::after{

    width:100%;

}

.footer-close{

    transition:.35s ease;

}

.footer-close:hover{

    transform:rotate(90deg) scale(1.08);

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

@keyframes glassUp{

0%{

opacity:0;

transform:translate(-50%,80px);

}

100%{

opacity:1;

transform:translate(-50%,0);

}

}


.newsletterparh{
	color: white;
	font-size: 12px;
	padding: 2% 0 0 0;
}

/*==========================
NEW FOOTER
==========================*/

.nf-footer{

   color:#fff;


}

.nf-container{

    width:min(96%,1700px);

    margin:auto;

}


/*==========================
Accordion Card
==========================*/

.nf-accordion{

      background: #18181800;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid rgba(255, 255, 255, .04);
    transition: .35s;
	display: none;
}

}

.nf-accordion:hover{

    border-color:rgba(255,255,255,.08);

}


/*==========================
Button
==========================*/

.nf-accordion-btn{

    width: 100%;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 34px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter';

}

.nf-left{

    display:flex;

    align-items:center;

    gap:14px;

}

.nf-arrow{

    width:28px;

    height:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    color:#a5a5a5;

}


/*==========================
Accordion Content
==========================*/

.nf-accordion-content{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
    max-height .6s ease,
    opacity .4s ease;

}


/*==========================
Grid
==========================*/

.nf-service-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:55px;

    padding:10px 34px 5px;

}

.second-row{

    padding-bottom:35px;

}


/*==========================
Column
==========================*/

.nf-column{

    display:flex;

    flex-direction:column;

}

.nf-column h4{

        font-size: 16px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 500;

}

.nf-column a{

    text-decoration:none;

    color:#bfbfbf;

    margin-bottom:15px;

    transition:.3s;

    font-size:15px;

}

.nf-column a:hover{

    color:#fff;

    transform:translateX(8px);

}


/*==========================
Locations
==========================*/

.nf-location-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:10px 34px 35px;

}

.nf-location-grid a{

    color:#c8c8c8;

    text-decoration:none;

    transition:.3s;
	    font-size: 14px;

}

.nf-location-grid a:hover{

    color:#fff;

}


/*==========================
Bottom
==========================*/

.nf-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin: 2% 0 1% 0;

    gap:20px;

}


/*==========================
Policy
==========================*/

.nf-policy{

    display:flex;

    gap:34px;

}

.nf-policy a{

    text-decoration:none;

    color:#a8a8a8;

    transition:.3s;

    font-size:15px;

}

.nf-policy a:hover{

    color:#fff;

}


/*==========================
Social
==========================*/

.nf-social{

    display:flex;

    gap:28px;

}

.nf-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#a7a7a7;

    transition:.35s;

}

.nf-social a:hover{

    background:#202020;

    color:#fff;

    transform:translateY(-4px);

}


/*==========================
Copyright
==========================*/

.nf-copy{

    color:#8b8b8b;

    font-size:15px;

}


/*==========================
Open State
==========================*/

.nf-accordion.active .nf-arrow{

    transform:rotate(180deg);

}

.nf-accordion.active .nf-accordion-content{

    max-height:900px;

    opacity:1;

}


/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.nf-service-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:900px){

.nf-service-grid{

grid-template-columns:repeat(2,1fr);

}

.nf-location-grid{

grid-template-columns:repeat(2,1fr);

}

.nf-bottom{

flex-direction:column;

gap:9px;

text-align:center;

}

}

@media(max-width:600px){

.nf-service-grid{

grid-template-columns:1fr;

}

.nf-location-grid{

grid-template-columns:1fr;

}

.nf-policy{

flex-direction:column;

gap:15px;

}

.nf-social{

flex-wrap:wrap;

justify-content:center;

}

.nf-accordion-btn{

padding:22px;

font-size:15px;

}
	.nf-policy a {
    text-decoration: none;
    color: #a8a8a8;
    transition: .3s;
    font-size: 14px;
}
	.nf-copy {
		
    font-size: 14px;
    padding-bottom: 4%;
}
	.footer-video {
    height: 200vh;
}

}



/*=========================================
BLOGX SECTION
=========================================*/

.blogx-section{
       width: 100%;
    padding: 7% 00px;
    background: #f1f1f1;
    border-radius: 30px;
    margin-top: 1%;
    margin-bottom: 1%;
    color: black;
}

.blogx-title-container{
	margin: 0 auto;
	width: 90%;
	text-align: center;
	color: black;
}

.blogxtitle{
	font-size: 78px;
	font-weight: 700;
}
.blogxparh{
	font-size: 20px;
	padding: 1% 0 5% 0;
}
.blogx-container{
    width:min(96%,1700px);
    margin:auto;
}

/*=========================================
GRID
=========================================*/

.blogx-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    align-items:stretch;
}

/*=========================================
CARD
=========================================*/

.blogx-card{

    display:flex;
    flex-direction:column;

    background:#f1f1f1;

    border-radius:28px;

    overflow:hidden;

    text-decoration:none;

    position:relative;

    transition:.5s cubic-bezier(.4,0,.2,1);

    min-height:650px;

    color:#1d1d1d;

}




/*=========================================
IMAGE
=========================================*/

.blogx-image{

    height:260px;

    overflow:hidden;

}

.blogx-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s;
	    border-radius: 35px;

}



/*=========================================
CONTENT
=========================================*/

.blogx-content{

	padding: 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: white;
    border-radius: 35px;
    margin-top: 4%;

}

/*=========================================
CATEGORY
=========================================*/

.blogx-category{

    font-size:12px;

    letter-spacing:1.8px;

    text-transform:uppercase;

    opacity:.7;

    margin-bottom:24px;

}
.blogx-content2 {
    padding: 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: white;
    border-radius: 35px;
    margin-bottom: 4%;
}
/*=========================================
TITLE
=========================================*/

.blogx-title{

    font-size:32px;

    font-weight:500;

    line-height:1.2;

    margin-bottom:24px;

}

/*=========================================
DESCRIPTION
=========================================*/

.blogx-desc{

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.blogx-dark .blogx-desc{

    color:#d0d0d0;

}

/*=========================================
BOTTOM
=========================================*/

.blogx-bottom{

    margin-top:auto;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    padding-top:60px;

}

.blogx-bottom h5{

    font-size:16px;

    font-weight:600;

    margin-bottom:8px;

}

.blogx-bottom span{

    font-size:15px;

    opacity:.8;

}

/*=========================================
ARROW
=========================================*/

.blogx-arrow{

    width:62px;

    height:62px;

    border-radius:50%;

    background:#161616;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.45s;

    flex-shrink:0;

}

.blogx-white{

    background:#fff;

    color:#111;

}

/*=========================================
HOVER EFFECT
=========================================*/

.blogx-card:hover .blogx-content,
.blogx-card:hover .blogx-content2{

    background:#0b0b0b;

    color:#fff;

}

.blogx-card:hover .blogx-desc{

    color:#d8d8d8;


}

.blogx-card:hover .blogx-arrow{

    transform:rotate(45deg) scale(1.08);

    background:#fff;

    color:#111;

}

.blogx-card:hover .blogx-category{

    opacity:1;

}

.blogx-card:hover .blogx-title{

    color:#fff;

}

/*=========================================
FEATURED CARD
=========================================*/

.blogx-featured{

    transform:translateY(-12px);

}

.blogx-featured:hover{

    transform:translateY(-20px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.blogx-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.blogx-grid{

grid-template-columns:1fr;

}

.blogx-card{

min-height:auto;

}

.blogx-image{

height:380px;

}

.blogx-title{

font-size:28px;
	line-height: 1.3;

}

.blogx-content{

padding:48px;

}

.blogx-bottom{

padding-top:40px;

}

}

/*=========================================
FAQX SECTION
=========================================*/

#faqx-section{

    width:100%;
    padding:100px 0;
    background:#f3f3f3;

}

.faqx-container{

    width:50%;
    margin:auto;

}

.faqx-list{

    display:flex;
    flex-direction:column;
    gap:10px;

}

/*=========================================
FAQ ITEM
=========================================*/

.faqx-item{

    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;

    transition:
    width .45s ease,
    transform .35s ease,
    background .35s ease,
    box-shadow .35s ease;

    width:100%;
    margin:auto;

}

/*=========================================
HOVER EFFECT
=========================================*/

.faqx-item:hover{

    width:102.5%;
    transform:translateX(-1.25%);
    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

/*=========================================
ACTIVE
=========================================*/

.faqx-item.active{

    background:#1b1b1b;

}

/*=========================================
QUESTION
=========================================*/

.faqx-question{

    width:100%;

    border:none;

    background:transparent;

    cursor:pointer;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 32px;

    text-align:left;

    font-size:20px;

    font-weight:500;

    line-height:1.3;

}

/*=========================================
QUESTION TEXT
=========================================*/

.faqx-question span{

    width:92%;
    display:block;

}

/*=========================================
ICON
=========================================*/

.faqx-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    font-weight:300;

    transition:.45s cubic-bezier(.4,0,.2,1);

    flex-shrink:0;

}

/*=========================================
ACTIVE ICON
=========================================*/

.faqx-item.active .faqx-icon{

    transform:rotate(45deg);

}

/*=========================================
ANSWER
=========================================*/

.faqx-answer{

    max-height:0;

    overflow:hidden;

    transition:
    max-height .55s ease,
    opacity .45s ease;

    opacity:0;

}

/*=========================================
ACTIVE ANSWER
=========================================*/

.faqx-item.active .faqx-answer{

    max-height:220px;

    opacity:1;

}

/*=========================================
ANSWER INNER
=========================================*/

.faqx-answer-inner{

      padding: 0 32px 20px;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.5;
    max-width: 82%;

}

/*=========================================
SMOOTH TEXT
=========================================*/

.faqx-question,
.faqx-answer-inner,
.faqx-icon{

    transition:.35s ease;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.faqx-question{

font-size:30px;
padding:24px;

}

.faqx-answer-inner{

font-size:19px;
padding:0 24px 24px;

}

}

@media(max-width:768px){

#faqx-section{

padding:70px 0;

}

.faqx-question{

font-size:20px;
padding:22px 20px;

}

.faqx-answer-inner{

font-size:17px;
padding:0 20px 22px;
max-width:100%;

}

.faqx-icon{

width:38px;
height:38px;
font-size:28px;

}

.faqx-item:hover{

width:100%;
transform:none;

}

}

@media(max-width:480px){

.faqx-question{

font-size:16px;

}

.faqx-answer-inner{

font-size:14px;
line-height:1.8;

}

}




/*=========================================
SEAMX SECTION
=========================================*/

.seamx-section{

    position:relative;
    width:100%;
    height:800px;

    overflow:hidden;

    border-radius:32px;

    background:#0e0e10;

    margin:1% 0;

}

/*=========================================
BACKGROUND VIDEO
=========================================*/

.seamx-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:1;

}

.seamx-overlay{

    position:absolute;

    inset:0;

    background:rgba(10,10,12,.70);

    z-index:2;

}

.seamxbutton1 {
    margin-top: 0% !important;
    margin-bottom: 4%;
    margin: 0 auto;
}

/*=========================================
CONTENT
=========================================*/

.seamx-container{

    position:relative;

    z-index:3;

    width:95%;

    margin:auto;

    height:100%;


    align-items:flex-start;

}

.seamx-content{

    max-width:100%;

    padding-top:120px;
	text-align: center;

}

.seamx-title{

    color:#fff;

    font-size:78px;

    font-weight:700;

    line-height:1.05;

    margin-bottom:30px;

    letter-spacing:-2px;

}

.seamx-desc{

    color:rgba(255,255,255,.78);

    font-size:20px;

    line-height:1.8;

    max-width:60%;

    margin-bottom:55px;
	margin: 0 auto;
	padding-bottom: 2%;

}



/*=========================================
BOTTOM STRIP
=========================================*/

.seamx-strip{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:150px;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(12,12,14,.78);

    backdrop-filter:blur(10px);

    overflow:hidden;

    z-index:5;

}

/*=========================================
TRACK
=========================================*/

.seamx-track{

    display:flex;

    align-items:center;

    width:max-content;

    height:100%;

}

/*=========================================
LOGO BOX
=========================================*/

.seamx-logo{

    width:150px;

    height:150px;

    border-right:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    transition:.35s;

}

.seamx-logo:hover{

    background:rgba(255,255,255,.05);

}

.seamx-logo img{

    width:54px;

    height:54px;

    object-fit:contain;

    opacity:.92;

    transition:.35s;

}

.seamx-logo:hover img{

    transform:scale(1.15);

    opacity:1;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.seamx-section{

height:760px;

}

.seamx-content{

padding-top:90px;

}

.seamx-title{

font-size:58px;

}

.seamx-desc{

font-size:20px;

}

}

@media(max-width:768px){

.seamx-section{
        height: 700px;
        margin: 1%;
        width: 98%;
        padding: 1% 3%;

}

.seamx-content{

padding-top:60px;

}

.seamx-title{

font-size:45px;

letter-spacing:-1px;

}

.seamx-desc{

font-size:17px;

line-height:1.7;
	        max-width: 100%;
	padding-bottom: 4%;

}

.seamx-btn{

width:210px;

height:60px;

font-size:18px;

}

.seamx-strip{

height:110px;

}

.seamx-logo{

width:110px;

height:110px;

}

.seamx-logo img{

width:42px;

height:42px;

}

}



/*==========================================
 TEAM SECTION
==========================================*/

.teamsectionwrapper{
	width: 100%;
    padding: 7% 00px;
    background: #f1f1f1;
    border-radius: 30px;
    margin-top: 1%;
    margin-bottom: 1%;
    color: black;
}


#nxTeamSection{
    width:100%;
    overflow:hidden;
}

#nxTeamSection *{
    box-sizing:border-box;
}

.nxTeamContainer{
    width: 95%;
    margin: auto;
}

/*==========================================
HEADER
==========================================*/

.nxTeamHeader{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:150px;
    margin-bottom:70px;
}

.nxHeaderLeft{
    flex:1;
}

.nxHeaderRight{
    width:420px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.nxTeamTitle{
           margin: 0;
    color: #000000;
    font-size: 66px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -3px;
}

.nxTeamDescription{
    color:#000000;
    font-size:18px;
    line-height:1.8;
    margin-bottom:10px;
}

/*==========================================
BUTTON
==========================================*/

.nxStoryButton{
    display:inline-flex;
    align-items:center;
    gap:22px;
    text-decoration:none;
    color:#fff;
    background:#222;
    width:205px;
    height:74px;
    border-radius:22px;
    padding:0 14px;
    transition:.35s;
}

.nxStoryButton:hover{
    background:#2e2e2e;
}

.nxStoryIcon{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#181818;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/*==========================================
CARDS
==========================================*/

.nxCardsWrapper{
    display:flex;
    gap:14px;
}

.nxMemberCard{
    position:relative;
    flex:1;
    transition:.65s cubic-bezier(.22,.61,.36,1);
    cursor:pointer;
}

.nxMemberCard:hover{
    flex:1.3;
}

/*==========================================
IMAGE
==========================================*/

.nxMemberImage{
    position:relative;
    height:620px;
    border-radius:28px;
    overflow:hidden;
    background:#222;
}

.nxMemberImage img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s;
}

.nxMemberCard:hover .nxMemberImage img{
    transform:scale(1.05);
}

/*==========================================
TOP RIGHT CAPSULE
==========================================*/

.nxCardCorner{
    position:absolute;
    top:22px;
    right:22px;
    width:34px;
    height:16px;
    border-radius:50px;
    border:4px solid rgba(255,255,255,.28);
}

/*==========================================
BOTTOM INFO
==========================================*/

.nxMemberInfo{
    margin-top:18px;
    border-left:2px solid rgba(255,255,255,.12);
    padding-left:14px;
}

.nxMemberInfo h4{
    color:#000000;
    margin:0;
    font-size:19px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.nxMemberInfo span{
    display:block;
    margin-top:8px;
    color:#7b7b7b;
    font-size:15px;
}

/*==========================================
HOVER PANEL
==========================================*/

.nxMemberContent{
    position:absolute;
    inset:0;
    background:#efefef;
    border-radius:28px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:34px;

    opacity:0;
    visibility:hidden;
    transform:scale(.96);

    transition:
        opacity .45s,
        transform .45s,
        visibility .45s;
}

.nxMemberText{
    margin-top:70px;
    color:#2f2f2f;
    font-size:20px;
    line-height:1.65;
}

.nxSocialIcons{
    display:flex;
    gap:12px;
    position:absolute;
    top:24px;
    left:24px;
}

.nxSocialIcons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.nxSocialIcons img{
    width:18px;
    height:18px;
}

.nxSocialIcons a:hover{
    transform:translateY(-3px);
}

/*==========================================
TOP RIGHT BLACK PILL
==========================================*/

.nxMemberContent::after{
    content:"";
    position:absolute;
    top:24px;
    right:24px;
    width:40px;
    height:18px;
    border-radius:50px;
    border:4px solid #111;
}

/*==============================
ACTIVE CARD
==============================*/

.nxMemberCard{
    flex:1;
    transition:
        flex .65s cubic-bezier(.22,.61,.36,1),
        transform .55s ease;
}

.nxCardsWrapper:hover .nxMemberCard{
    flex:.92;
	
}

.nxCardsWrapper:hover .nxMemberCard.nxActive{
    flex:1.35;
}

/*==============================
IMAGE
==============================*/

.nxMemberImage{
    transition:
        opacity .45s,
        transform .55s;
}

.nxMemberCard.nxActive .nxMemberImage{

    opacity:0;

    transform:scale(.94);

    pointer-events:none;

}

/*==============================
WHITE PANEL
==============================*/

.nxMemberCard.nxActive .nxMemberContent{

    opacity:1;

    visibility:visible;

    transform:scale(1);

}

/*==============================
BOTTOM INFO
==============================*/

.nxMemberInfo{

    transition:.45s;

}

.nxMemberCard.nxActive .nxMemberInfo h4{

    color:#2b2b2b;

}

.nxMemberCard.nxActive .nxMemberInfo span{

    color:#6b6b6b;

}

.nxMemberCard.nxActive .nxMemberInfo{

    margin-top:18px;

}

/*==============================
HOVER
==============================*/

.nxMemberCard:hover{

    z-index:20;
	border: 2px solid #000;
	border-radius: 30px;

}

/*==============================
IMAGE SCALE
==============================*/

.nxMemberCard:hover img{

    transform:scale(1.06);

}

/*==============================
PANEL ANIMATION
==============================*/

.nxMemberText{

    opacity:0;

    transform:translateY(25px);

    transition:.45s .15s;

}

.nxSocialIcons{

    opacity:0;

    transform:translateY(-15px);

    transition:.4s .1s;

}

.nxMemberCard.nxActive .nxMemberText{

    opacity:1;

    transform:translateY(0);

}

.nxMemberCard.nxActive .nxSocialIcons{

    opacity:1;

    transform:translateY(0);

}


/* Large screens ----------- */
@media only screen  and (min-width : 1824px) {
/* Styles */
		.heading-light {
    font-size: 66px !important;  
}
	.heading-bold {
    font-size: 66px !important;
	}
	.hero-text {
    margin-top: 28px !important;
    max-width: 520px !important;
    font-size: 18px !important;   
}
		.cta-text {
    height: 60px !important; 
}
		.cta-icon {
    width: 60px !important;
    height: 60px !important;
	}
	.cta-btn {
    margin-top: 28px !important;
	}
	
	.logo-1 {
    width: 165px !important;
}
	.logo-2 {
    width: 130px !important;
}
	.logo-3 {
    width: 210px !important;
}
	.logo-4 {
    width: 155px !important;
}
	.logo-5 {
    width: 80px !important;
}
	.logo-6 {
    width: 130px !important;
}
	.logo-7 {
    width: 100px !important;
}
	.logo-8 {
    width: 150px !important;
}
	.text-fill {
    font-size: 61px !important;
   }
	
	.fx-top-content {
		max-width: 1200px !important;
    font-size: 20px !important;
    
}
	.fx-dark-card h2 {
    font-size: 60px !important;
}
.fx-users-wrap img {
    width: 56px !important;
    height: 56px !important;
	}
	.fx-speed-card h3 {
    font-size: 50px !important;
}
.fx-speed-card {
    gap: 16px !important;
}		
.fx-center-content h3 {
    font-size: 22px !important;
}	
	.fx-review {
		    margin-top: 30px !important;
    font-size: 18px !important;
}
	.fx-person {
    color: #888;
    margin-top: 6% !important;
    font-size: 16px !important;
}
	.cap-heading-v2 {
    font-size: 60px !important;
    max-width: 680px !important;
	}
	.cap-stack-v2 {
    width: 55% !important;
}
	.cap-title-v2 {
    font-size: 24px !important;
		line-height: 1.15 !important; 
	}
	.cap-graphic-v2 {
    font-size: 130px !important;
}
	.cap-inner-v2 {
    padding: 42px 42px !important;
	}
	
	.industry-title-x9 {
    font-size: 78px !important;
	}
	.tab-btn-x9 {
    font-size: 18px !important;
	} 
	
	.industry-card-v77 {
    height: 550px !important;
	}
	.industry-logo-v77 {
    font-size: 56px !important;
	}
	.stat-label-v77 {
    font-size: 14px !important;
}
	.section6title {
    font-size: 78px !important;
	}
	
.section6parh {
    font-size: 22px !important;
	}
	.luxMainHeading {
    font-size: 78px !important;
	}
	.luxBadge {
    font-size: 14px !important;
	}
	.luxCardTitle {
    font-size: 58px !important;
	}
	.luxDescription {
    font-size: 20px !important;
	}
	.luxList li {
    padding: 18px 0 !important;
    font-size: 18px !important;
}
.seamx-title {
    font-size: 78px !important;
	}
	.seamx-desc {
    font-size: 20px !important; 
	}
	.seamx-section {
    height: 800px !important;
	}
	.nxTeamTitle {
    font-size: 66px !important;
	}
	.nxMemberText {
    font-size: 20px !important;
}
	.nxSocialIcons a {
    width: 40px !important;
		height: 40px !important;
	}
	.faqx-question {
    font-size: 20px !important;
	}
	.faqx-answer-inner {
    font-size: 16px !important;
	}
	.blogxtitle {
    font-size: 78px !important;
}
	.blogxparh {
    font-size: 20px !important;
}
	.blogx-title {
    font-size: 32px !important;
		line-height: 1.2 !important;
	}
	.blogx-desc {
    font-size: 18px !important;
	}
	.nf-policy a {
    font-size: 15px !important;
} 
	.nf-copy {
    font-size: 15px !important;
}
	
}


/* Desktops and laptops ----------- */
@media only screen  and (min-width : 1224px) {
/* Styles */
	.heading-light {
    font-size: 50px;  
}
	.heading-bold {
    font-size: 50px;
	}
	.hero-text {
    margin-top: 20px;
    max-width: 470px;
    font-size: 16px;
   
}
	.cta-text {
    height: 50px;
}
	.cta-icon {
    width: 50px;
    height: 50px;
	}
	.cta-btn {
    margin-top: 22px;
	}
	.logo-1 {
    width: 140px;
}
	.logo-2 {
    width: 120px;
}
	.logo-3 {
    width: 190px;
}
	.logo-4 {
    width: 155px;
}
	.logo-5 {
    width: 70px;
}
	.logo-6 {
    width: 100px;
}
	.logo-7 {
    width: 100px;
}
	.logo-8 {
    width: 130px;
}
	.text-fill {
    font-size: 51px;
    }
	.fx-top-content {
		max-width: 100%;
    font-size: 18px; 
}
	.fx-dark-card h2 {
    font-size: 46px ;
}	
	.fx-users-wrap img {
    width: 45px;
    height: 45px;
	}
	.fx-speed-card h3 {
    font-size: 40px;
}	
.fx-speed-card {
    gap: 10px;
}	
.fx-center-content h3 {
    font-size: 20px ;
}	
	.fx-review {
		    margin-top: 20px;
    font-size: 16px;
}	
	.fx-person {
    margin-top: 10% ;
    font-size: 14px;
}	
	
	.cap-heading-v2 {
    font-size: 50px;
    max-width: 500px;
	}
	.cap-stack-v2 {
    width: 60% ;
}
.cap-title-v2 {
    font-size: 20px;
		line-height: 1.4;
	}	
	
	.cap-graphic-v2 {
    font-size: 80px;
}
	.cap-inner-v2 {
    padding: 80px 30px;
	}
	.industry-title-x9 {
    font-size: 65px;
	}
	.tab-btn-x9 {
    font-size: 16px;
	}
	.industry-card-v77 {
    height: 420px;
	}
	.industry-logo-v77 {
    font-size: 40px;
	}
	.stat-label-v77 {
    font-size: 12px;
}
	.section6title {
    font-size: 65px;
	}
	.section6parh {
    font-size: 18px;
	}
	.luxMainHeading {
    font-size: 65px;
	}
	.luxBadge {
    font-size: 14px;
	}
	
.luxCardTitle {
    font-size: 45px;
	}
	.luxDescription {
    font-size: 18px;
	}
	.luxList li {
    padding: 12px 0;
    font-size: 16px;
}
.seamx-title {
    font-size: 65px ;
	}
	.seamx-desc {
    font-size: 18px; 
	}	
	
	
.seamx-section {
    height: 700px;
	}
		.nxTeamTitle {
    font-size: 60px;
	}
	
	.nxMemberText {
    font-size: 16px;
}
.nxSocialIcons a {
    width: 30px;
		height: 30px;
	}	
	.faqx-question {
    font-size: 18px;
	}
	.faqx-answer-inner {
    font-size: 14px;
	}
		.blogxtitle {
    font-size: 65px;
}
	.blogxparh {
    font-size: 18px;
}
	.blogx-title {
    font-size: 26px;
		    line-height: 1.3;
	}
	.blogx-desc {
    font-size: 16px;
	}
	.nf-policy a {
    font-size: 14px;
}
	.nf-copy {
    font-size: 14px;
}
	
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
/* Styles */
	.section3wrapper {
    width: 98%;
    padding: 7% 3%;
    border-radius: 30px;
    margin: 1%;
}
	.cap-copy-v2 {
    max-width: 100%;
    font-size: 18px;
    margin-top: 30px;
		text-align: center;
}
.cap-line-v2 {
    width: 100%;
   
}	
	.cap-left-v2 {
    min-height: 360px;
		text-align: center;
}
.section6wrapper {
    margin: 1%;
    border-radius: 30px;
    padding: 4% 3% 1% 3%;
	height: 80vh;
	}
	.section6title {
    font-size: 45px;
}
	.section6parh {
    font-size: 20px;
    padding: 2% 0 4% 0;
    width: 100%;
 
}
	.section5wrapper {
    width: 98%;
    padding: 10% 3%;
    border-radius: 30px;
    margin-top: 1%;
    margin-bottom: 1%;
    margin: 0 1%;
}
	.luxTopText {
    font-size: 14px;
	}
	.luxMainHeading {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -2px;
}
	.luxCardsWrapper {
    display: flow;
	}
	.luxCardTitle {
    font-size: 40px;
    line-height: 1.3;
	}
	
	.luxYellowCard {
    margin-top: 5%;
}
	.luxbutton1 {
    margin-top: 0% !important;
    margin-bottom: 6%;
}
	#nxTeamSection {
    width: 98%;
    overflow: hidden;
    margin: 1%;
    padding: 10% 3%;
}
	.nxTeamHeader {
    display: block;
		    text-align: center;
	}
	.nxTeamTitle {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: -2px;
}
.nxHeaderRight {
    width: 100%;
    margin: 4% 0%;
}
	.nxTeamDescription {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
	
	.nxCardsWrapper {
    display: block;
}
.nxMemberCard {
    margin-bottom: 7%;
}	
.nxMemberInfo {
    margin-top: 18px;
    padding-left: 14px;
    text-align: center;
}	
	
.faqx-container {
    width: 100%;
}	
	
.blogx-section {
    width: 98%;
    padding: 7% 3%;
    margin: 1%;
	border-radius: 30px;
}	
	
	.blogxtitle {
    font-size: 50px;
    padding-bottom: 2%;
}
.blogxparh {
    font-size: 18px;
    padding: 1% 0 5% 0;
}	
	
	.footerbg {
    padding: 0 0 0.5% 0;
    margin: 1%;
}
	.footer-video {
    height: 160vh;
}
	
	
	
	
}


    /* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* Styles */
	
    .text-fill {
        font-size: 30px;
        letter-spacing: -1px;
        line-height: 1.3;
        text-align: center;
    }	
	    .fx-top-content {
        font-size: 16px;
        text-align: center;
    }
	    .fx-users-wrap img {
        width: 46px;
        height: 46px;
    }
	.fx-dark-card h2 {
        margin-top: 30px;
        font-size: 40px;
    }
	    .fx-dark-card p {
        margin-top: 2%;
        line-height: 1.5;
        font-size: 14px;
    }
	    .fx-agents-card {
        font-size: 16px;
    }
	.fx-speed-card h3 {
    font-size: 30px;
    font-weight: 500;
}
	.fx-speed-card p {
        font-size: 16px;
    }

	.fx-speed-card {
    gap: 10px;
}
	    .fx-center-content h3 {
        font-size: 20px;
    }
	    .fx-center-content p {
        font-size: 14px;
    }
	
	.swiper-slide {
        padding: 60px 40px;
    }
	    .glb-marquee-text {
        font-size: 16px;
    }
	
	.section3wrapper {
    width: 98%;
    padding: 7% 00px;
    border-radius: 30px;
    margin: 1%;
}
	

.cap-copy-v2 {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 30px;
	text-align: center;
}
	
.cap-left-v2 {
    min-height: 380px;
}	
	    .cap-heading-v2 {
        font-size: 34px;
			        text-align: center;
    }
	    .cap-stack-v2 {
        height: auto;
    }
	.cap-stack-v2 {
    width: 100%;
    display: block;
    height: auto;
    gap: 12px;
}
	    .cap-panel-v2 {
        width: 100%;
			        margin: 4% 0px;
    }
	
	.cap-vertical-v2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(270deg);
    writing-mode: vertical-rl;
    font-size: 15px;
    letter-spacing: 1px;
    color: #bdbdbd;
    white-space: nowrap;
    transition: opacity .35s;
    text-transform: uppercase;
}
	.cap-title-v2 {
        font-size: 18px;
        line-height: 1.3;
    }
	
	.cap-desc-v2 {
        font-size: 14px;
    }
	.cap-graphic-v2 {
        font-size: 40px;
		display: none;
    }
	    .industry-title-x9 {
        font-size: 34px;
        letter-spacing: -2px;
    }
	
	
	.industry-card-v77 {
    height: 335px;
}
	    .stat-number-v77 {
        font-size: 16px;
    }
	
	.stat-label-v77 {
    font-size: 12px;
}
	    .industry-logo-v77 {
        font-size: 24px;
			top: 28%;
    }
	
	.section6wrapper {
    margin: 1%;
    width: 98%;
    border-radius: 30px;
    padding: 3% 3%;
		    height: 70vh;
	}
	
	.section6title {
    font-size: 40px;
}
	.section6parh {
    font-size: 16px;
    color: black;
    padding: 4% 0 7% 0;
    width: 100%;
    margin: 0 auto;
    line-height: 1.5;
}
	.section5wrapper {
    width: 98%;
    padding: 10% 3%;
    border-radius: 30px;
    margin: 1%;
}
.luxMainHeading {
	font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -2px;
}	
	
	.luxCardsWrapper {
    display: block;
}
	.luxCard {
    position: relative;
    min-height: 610px;
    padding: 52px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .45s ease;
    margin-bottom: 2%;
}
	
	.luxCardTitle {
    max-width: 90%;
    font-size: 35px;
	}
	.luxDescription {
    max-width: 90%;
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 5%;
}
	.luxList li {
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.6;
}
	
	.luxBottomButton {
    font-size: 14px;
}
	
	.seamx-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
	    .seamx-desc {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
        padding-bottom: 8%;
    }
	    .seamx-section {
        height: 580px;
        margin: 1%;
        width: 98%;
        padding: 1% 3%;
    }
	
	#nxTeamSection {
    width: 98%;
    overflow: hidden;
    margin: 1%;
    padding: 10% 3%;
}
	.nxTeamHeader {
    display: block;
}
	.nxTeamTitle {
    font-size: 35px;
    letter-spacing: -2px;
		text-align: center;
}
	
	.nxHeaderRight {
    width: 100%;
    text-align: center;
    margin: 8% 0;
}
	.nxTeamDescription {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.nxCardsWrapper {
    display: block;
}	
.nxMemberCard {
    padding-bottom: 10%;
}	
.nxMemberImage {
	height: 400px;
    border-radius: 28px;
}	
	.nxMemberInfo {
    margin-top: 18px;
    padding-left: 0;
    text-align: center;
}
	
	.nxCardsWrapper:hover .nxMemberCard.nxActive {
    flex: 1.35;
    border: 1px solid #000;
    border-radius: 25px;
    margin-bottom: 10%;
}
    .industry-wrap-x9 {
        width: 98%;
        padding: 10% 3%;
        border-radius: 30px;
        margin: 1%;
        text-align: center;
    }	
	.nxMemberText {
    margin-top: 70px;
    font-size: 16px;
    line-height: 1.65;
}
	.nxMemberContent {
    padding: 24px;
	}
	.faqx-container {
    width: 100%;
}
	
	.blogx-section {
    width: 98%;
    padding: 10% 3%;
    border-radius: 30px;
    margin: 1%;
}
	.blogxtitle {
    font-size: 40px;
    padding-bottom: 2%;
}
.blogxparh {
    font-size: 16px;
    padding: 2% 0 10% 0;
}	
	    .blogx-image {
        height: 300px;
    }
	
	    .blogx-content {
        padding: 35px;
    }
	.blogx-category {
    font-size: 12px;
    margin-bottom: 22px;
}
	.blogx-title {
        font-size: 22px;
        line-height: 1.3;
		
    margin-bottom: 16px;
    }
	
	.blogx-desc {
    font-size: 14px;
    line-height: 1.5;
}
	
.footerbg {
    padding: 0 0 0.5% 0;
    margin: 1%;
    width: 98%;
}	
	
	
	
}









/*==========================================
    NX CONTACT SECTION
==========================================*/

.nx-contact-section{
    width:100%;
    margin:1% auto;
    display:grid;
    grid-template-columns:65% 35%;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    min-height:820px;
    box-shadow:0 20px 70px rgba(0,0,0,.08);
}

/*========================
LEFT
========================*/

.nx-contact-left{
    position:relative;
    overflow:hidden;
}

.nx-contact-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s;
}

.nx-contact-left:hover .nx-contact-bg{
    transform:scale(1.08);
}

.nx-contact-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background: linear-gradient(90deg, rgb(0 0 0 / 74%), rgb(0 0 0 / 61%), rgb(0 0 0 / 51%));
}

.nx-contact-content{

    position:absolute;

    left:60px;
    bottom:60px;

    z-index:5;

    max-width:560px;
}

.nx-contact-content h2{

    color:#fff;

    font-size:74px;

    line-height:.98;

    font-weight:500;

    letter-spacing:-3px;

    margin:0 0 50px;

    font-family:Inter,sans-serif;

}

.nx-contact-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.nx-contact-phone{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:22px;

}

.nx-contact-phone svg{

    width:22px;

    height:22px;

}

.nx-contact-email{

    color:#fff;

    font-size:22px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.nx-contact-email:hover{

    opacity:.75;

}

/*========================
RIGHT
========================*/

.nx-contact-right{

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:55px;

}

.nx-form-wrapper{

    width:100%;

}

.nx-form-wrapper h3{

    font-size:55px;

    line-height:1.1;

    font-weight:600;

    margin:0 0 25px;

    color:#111;

    letter-spacing:-2px;

}

.nx-form-wrapper p{

    font-size:18px;

    line-height:1.8;

    color:#666;

    margin-bottom:45px;

}

/*========================
FORM
========================*/

.nx-form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.nx-form-group{

    margin-bottom:24px;

}

.nx-form-group label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    color:#333;

    font-weight:500;

}

.nx-form-group input,

.nx-form-group select,

.nx-form-group textarea{

    width:100%;

    border:1px solid #e8e8e8;

    border-radius:14px;

    background:#fafafa;

    font-size:17px;

    color:#222;

    padding:18px 20px;

    transition:.35s;

    outline:none;

    font-family:inherit;

}

.nx-form-group textarea{

    resize:none;

    min-height:150px;

}

.nx-form-group input:focus,

.nx-form-group select:focus,

.nx-form-group textarea:focus{

    border-color:#111;

    background:#fff;

    box-shadow:0 0 0 5px rgba(0,0,0,.05);

}

.nx-form-group select{

    cursor:pointer;

}

/*========================
BUTTON
========================*/

.nx-submit-btn{

    display:flex;

    align-items:center;

    justify-content:left;

    gap:30px;

    width:250px;

    height:72px;

    border:none;

    border-radius:18px;

    background:#5f5f5f;

    color:#fff;

    cursor:pointer;

    font-size:20px;

    font-weight:600;

    transition:.35s;

}

.nx-submit-btn:hover{

    background:#111;

    transform:translateY(-4px);

}

.nx-btn-icon{

    width:58px;

    height:58px;

    background:#fff;

    color:#111;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;
	
	 transform:translateX(8px);

}

.nx-submit-btn:hover .nx-btn-icon{

   

}

.nx-btn-icon svg{

    width:22px;

    height:22px;

}

/*========================
SMOOTH ANIMATION
========================*/

.nx-contact-content,

.nx-form-wrapper{

    animation:nxFade 1s ease;

}

@keyframes nxFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==========================================
TABLET
==========================================*/

@media(max-width:1400px){

.nx-contact-section{

grid-template-columns:65% 35%;

}

.nx-contact-content h2{

font-size:58px;

}

.nx-form-wrapper h3{

font-size:42px;

}

.nx-contact-email{

font-size:30px;

}

}

@media(max-width:1100px){

.nx-contact-section{

grid-template-columns:1fr;

}

.nx-contact-left{

height:650px;

}

.nx-contact-right{

padding:50px;

}

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:768px){

.nx-contact-section{

width:95%;

border-radius:22px;

margin:25px auto;

}

.nx-contact-left{

height:520px;

}

.nx-contact-content{

left:30px;

right:30px;

bottom:35px;

}

.nx-contact-content h2{

font-size:42px;

letter-spacing:-1px;

margin-bottom:30px;

}

.nx-contact-email{

font-size:24px;

}

.nx-form-wrapper{

padding:0;

}

.nx-form-wrapper h3{

font-size:34px;

}

.nx-form-wrapper p{

font-size:16px;

margin-bottom:30px;

}

.nx-form-row{

grid-template-columns:1fr;

gap:0;

}

.nx-submit-btn{

width:100%;

height:65px;

font-size:18px;

}

.nx-btn-icon{

width:50px;

height:50px;

}

}

@media(max-width:480px){

.nx-contact-left{

height:450px;

}

.nx-contact-content h2{

font-size:34px;

line-height:1.05;

}

.nx-contact-phone{

font-size:15px;

}

.nx-contact-email{

font-size:20px;

}

.nx-contact-right{

padding:25px;

}

.nx-form-wrapper h3{

font-size:30px;

}

.nx-form-group input,

.nx-form-group textarea,

.nx-form-group select{

padding:15px;

font-size:16px;

}

}


