html {
  scroll-behavior: smooth;
}
* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #545454;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  text-transform: none;
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0; /* added from sachin repo */
}

p {
  margin: 0;
  padding: 0;
}

/* below global css added from sachin repo */
a:link {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

a:visited {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

/*-------Header--------*/
.header {
  padding: 14px 0;
  background: #000002;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
.headerwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  position: relative;
}
.header .navbar {
  padding: 0;
  position: static;
}
.headerwrap img.white-bg {
  display: none;
}
.headerwrap img.black-bg {
  display: block;
  width: 250px;
}
.header .navbar-nav .nav-item {
  /* margin-left: 1.5rem; */
  margin-left: 3.5rem;
}
.header .navbar-nav .nav-item:first-child {
  margin: 0px;
}
/* .inner-page .header .navbar-nav .nav-item {
  margin-left: 2rem;
} */
.header .navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 200;
  padding: 0;
  position: relative;
}
.header .navbar-nav .nav-link.collapse-link {
  padding-right: 25px;
}
.header .navbar-nav .nav-link.collapse-link:hover, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:hover, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:focus-visible, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:focus, .nav-collapse__content .nav-tabs .nav-link:focus-visible, .nav-collapse__content .nav-tabs .nav-link:hover {
  border-color: transparent;
  box-shadow:none
}
.header .navbar-nav .nav-link.collapse-link:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.header .nav-collapse__content .nav-tabs .nav-link::before {
  border-color: #000 transparent transparent transparent;
}
.nav-collapse {
  position: absolute;
  padding-top: 20px;
  width: 330px;
  z-index: 2;
  box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.08);
}
/* .header .navbar-nav .nav-link.collapse-link .nav-collapse__content {
  box-shadow: none;
} */
.nav-collapse.collapse {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;

  pointer-events: none;
}
.nav-collapse.collapse.show {
  opacity: 1;
  transform: translateY(0);

  pointer-events: auto;
}
.nav-collapse__content {
  background-color: #fff;
  /* box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.08); */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
/* .nav-collapse__content .nav-tabs .nav-link .nav-collapse__content {
  box-shadow: none;
} */
.nav-collapse__content .nav-tabs {
  flex-direction: column;
  border: none;
  gap: 5px;
  padding: 10px 15px;
}
.nav-collapse__content .nav-tabs .nav-item {
  margin-left: 0;
  border-bottom: #000 solid 0.5px;
  padding: 10px 0;
}
.nav-collapse__content .nav-tabs .nav-item:last-child {
  border: 0;
}
.nav-collapse__content .nav-tabs .nav-link {
  color: #000;
}

/* New Sub Nav */
.nav-collapse .nav-collapse {
  position: relative;
  padding-top: 0;
  width: 100%;
  box-shadow: none;
}
.header .nav-collapse__content .nav-tabs .nav-link .nav-collapse__content {
  box-shadow: none;
}

/* Optional: spacing & style for inner links */
.nav-collapse__content .nav-tabs .nav-tabs {
  padding-left: 0;
  padding-right: 0;
}

.nav-collapse__content .nav-tabs .nav-tabs .nav-item {
  padding: 10px 12px;
  border-bottom: #000 solid 0.5px;
}
.nav-collapse__content .nav-tabs .nav-tabs .nav-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Rotate arrow on open */
.nav-link[aria-expanded="true"].collapse-link:before {
  transform: translateY(-50%) rotate(180deg);
}




.header .navbar-toggler {
  border: none;
  padding: 5px;
}
.header .navbar-toggler .bar {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  transition: 0.3s;
  background-color: #fff;
  display: block;
}
.header .navbar-toggler .bar + .bar {
  margin-top: 4px;
}
.close-btn {
  text-align: right;
  padding: 1rem;
  display: none;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  padding-right: 1.5rem;
  font-weight: 400;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brandStory {
  border: #acacac solid 1px;
  border-radius: 30px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-right: 10px;
}
.brandStory img {
  width: 30px;
  margin-left: 9px;
}
/* .headerLogo img {
  width: 100%;
}
.headerLogo img.white-bg {
  display: none;
}
.headerLogo img.black-bg {
  display: block;
}

.navbar-side {
	height: 100%;
	max-width: 40rem;
	font-size: 1.6rem;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	list-style: none;
	background-color: #000000;
	overflow-y: scroll;
	z-index: 1000;
}
.navbar .nav-item {
  margin-left: 1.5rem;
}
.navbar .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}

.navbar .navbar-toggler {
  color: #FFFFFF;
  padding: 0;
  border: 0;
}
.navbar {
  flex-wrap: nowrap;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.navbar-nav {
  justify-content: center;
  width: 100%;
}
.close-btn {
  text-align: right;
  padding: 1rem;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding-right: 1.5rem;
  font-weight: 400;
}

@media (min-width: 320px) {
	.navbar-side {
		width: 100%;
	}
}

@media (max-width: 932px) {
	.navbar-side {
		width: 100%;
	}

	.navbar-side-item {
		padding: 1rem 0;
    border-bottom: #fff solid 1px;
	}

  .home .navbar-side-item:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brandStory {
    max-width: 70%;
  }
	.navbar-side-item a {
    font-size: 1.2rem;
    color: #fff;
	}
}

.side-link {
	padding-left: 1.7rem;
	padding-right: 1.2rem;
	color: #fff;
}

.side-link:active,
.side-link:hover {
	text-decoration: none;
	color: #fff;
}

.navbar-side {
	left: 0; 
	transform: translateX(-100%); 
	transition: transform 400ms ease;
}

.reveal {
	transform: translateX(0%);
	transition: 400ms ease;
}

.overlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background-color: #5f5f5f;
	opacity: 0.6;
	z-index: 990;
}

@media (min-width: 932px) {
  .navbar-side,
  .overlay {
      display: none !important;
  }
}

.brandStory {
  border: #ACACAC solid 1px;
  border-radius: 30px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}
.brandStory img {
  width: 30px;
  margin-left: 9px;
} */

.headerSearch {
  color: #fff;
  background: #e6e6e6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.headerSearch img {
  width: 22px;
}
#panel {
  padding: 50px;
  display: none;
  position: absolute;
  top: 72px;
  width: 100%;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  z-index: 2;
  height: 1000dvw;
  overflow: hidden;
}
.search-form {
  width: 100%;
  position: relative;
}
.search-form input {
  appearance: none;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #000002;
  border-radius: 0;
  color: #000002;
  font-size: 20px;
  font-weight: 300;
  height: 52px;
  letter-spacing: 0.16px;
  line-height: 28px;
  padding: 9pt 50px 9px 1px;
  width: 100%;
}
.search-form input:focus {
  box-shadow: none;
  border-color: inherit;
  color: inherit;
}
.search-submit {
  position: absolute;
  border: 0;
  background: transparent;
  right: 10px;
  top: 13px;
  cursor: pointer;
}
.search-submit:focus-visible,
.icon-search:focus-visible,
.search-submit img:focus-visible,
.search-submit:focus,
.close-button:focus {
  outline: 0;
}
.search-suggestion {
  padding-top: 100px;
}
.search-suggestion h2 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  padding-bottom: 30px;
  margin: 0;
  color: #000;
}
.suggestion-content {
  display: flex;
  flex: 0 0 25%;
  gap: 20px;
}
.contentList {
  flex: 0 0 25%;
}
.contentList h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000002;
}
.contentList p {
  font-size: 0.9rem;
  font-weight: 300;
}

/*-------Banner--------*/
.banner {
  position: relative;
  overflow: hidden;
      height: 100vh;
}
.videoWrap {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.banner video {
  /* min-width: 100%;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover; */

  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bannerTxt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 85%;
  z-index: 1;
  padding-top: 5rem;
  color: #fff;
}
.bannerTxt h2 {
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 25px;
  margin: 0;
}
.bannerTxt p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  padding-bottom: 50px;
}
.btn-primary {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff !important;
  text-decoration: none;
  position: relative;
  z-index: 0;
  transition: 0.3s ease-in-out;
  border: none;
}
/* Hover state with gradient border */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(
    90deg,
    #1310a4,
    #5e0792,
    #cd0063,
    #f20f07,
    #ff4000
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: transparent;
}

.btn-primary:hover::before {
  opacity: 1;
}

/*-------Who We Are--------*/
.who-we-are {
  text-align: center;
  padding: 145px 0 180px;
  scroll-margin-top: 100px;
}
.who-we-are h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 25px;
  margin: 0;
}
.who-we-are p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 45px;
}
.who-we-are-box {
  background: #eeeeee;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  /* transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease; */
}

.who-we-are-boxTxt {
  padding: 35px 30px 60px;
}

.who-we-are-box h3 {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: #000000;
}
.who-we-are-box p {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  padding: 0;
}

/*-------What We Do--------*/
.what-we-do {
  position: relative;
  width: 100%;
  padding: 120px 0 40px;
  text-align: center;
}
.what-we-do::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/What-we-do-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.what-we-do-Title {
  position: relative;
  z-index: 1;
}

.what-we-do h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  padding-bottom: 25px;
  margin: 0;
}
.what-we-do p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}

.what-we-do-boxWrap {
  margin-top: 160px;
}

.what-we-do-box {
  padding: 35px 30px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: #797979 solid 1px;
  height: 100%;
}
.what-we-do-box img {
  width: 70px;
  margin: 0 0 20px;
  position: static;
  height: 56px;
  object-fit: contain;
}
.what-we-do-box span {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffff;
}
/*-------Home NeoNxt At A Glance--------*/
.home-glance {
  background: #000000;
}
.home-glance span.subhead,
.home-glance h2.mainhead,
.cloud-what-we-do.home-glance p {
  color: #fff;
}

/*-------How we Help--------*/
.How-We-Help {
  padding: 145px 0 60px;
  scroll-margin-top: 100px;
}
.How-We-Help h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  padding-bottom: 45px;
  margin: 0;
  text-align: center;
}
.How-We-Help__list h4 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000000;
  margin: 0;
  padding-bottom: 14px;
}
.How-We-Help__list p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #575757;
}
.How-We-Help__list.bottom {
  padding-top: 112px;
}
.How-We-HelpImg img {
  margin: 0 auto;
  display: block;
}

/*-------Scrollable Text--------*/
/* .ScrolTxt {
  height: 100px;	
  overflow: hidden;
  position: relative;
 }
 .ScrolTxt h3 {
  font-size: 6em;
  color: #EEEEEE;
  position: absolute;
  white-space: nowrap;
  width: max-content;
  margin: 0;
  line-height: 100px;
  animation: scrollLoop 28s linear infinite;
}

.ScrolTxt h3 span {
  display: inline-block;
  padding-right: 5em; 
} */

/* Keyframes for smooth continuous scroll */
/* @keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/*-------1500+ Customers--------*/
.Neonxt-Customer {
  padding: 120px 0;
  background: #eeeeee;
  text-align: center;
}
.Neonxt-Customer h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 45px;
  margin: 0;
}
.clients-logo {
  margin-top: 20px;
}
.logocard {
  position: relative;
  overflow: hidden;
}
.logocard img {
  z-index: 1;
}
.logocard {
  width: 150px;
  height: 150px;
  background-color: #ffffff54;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: 5px 5px 10px;
}
.logocard .one {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.logocard .two {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.twologocard:nth-child(1) {
  margin-top: 2.5em;
}
.twologocard:nth-child(3) {
  margin-top: 5em;
}
.threelogocard:nth-child(4) {
  margin-top: 2em;
}
.twologocard:nth-child(5) {
  margin-top: 8em;
}
.twologocard:nth-child(7) {
  margin-top: 4em;
}
/*-------Custom VMs Powered by NeoNXT--------*/
.custom-vms {
  padding: 120px 0;
  position: relative;
}
.custom-vms::after {
  content: "";
  position: absolute;
  background: url(../images/custom-vms-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  background-position: center center;
}
.custom-vms p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding: 0;
  color: #3b3b3b;
}
.custom-vms ul {
  padding: 20px 0 30px;
}
.custom-vms ul li {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: #292929;
  padding: 5px 0 5px 25px;
  position: relative;
}
.custom-vms ul li::before {
  content: "";
  position: absolute;
  background: url(../images/right-arrow.svg) no-repeat;
  width: 16px;
  height: 40px;
  left: 0;
  top: 12px;
}
.custom-vms a {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.custom-vms a:hover {
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
}
.custom-vms img {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
  background: white;
  border-radius: 16px;
}

/* .logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid #A0A0A0;
  border-right: none;
  border-bottom: none;
  max-width: 100%;
  background: #fff;
}

.logo-grid .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
  border-right: 1px solid #A0A0A0;
  border-bottom: 1px solid #A0A0A0;
  background: #fff;
  box-sizing: border-box;
}

.logo-grid .logo img {
  max-width: 70px;
  max-height: 50px;
  object-fit: contain;
}

.logo-grid .logo.more {
  background: linear-gradient(90deg, #1196E3 0%, #205BBF 19.23%, #4742B7 38.94%, #A5248E 60.1%, #E13140 80.29%, #F4994B 98.08%);
  color: white;
  font-weight: 500;
  border-radius: 0; 
  font-size: 1.2rem;
}

.logo-grid .logo.more a {
 cursor: pointer; */
/* }  */

/*-------Leadership Team--------*/
.Leadership-Team {
  padding: 155px 0 175px;
}

.Leadership-Team h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  padding-bottom: 68px;
  margin: 0;
  text-align: center;
}
.Leadership-Team-Img {
  background: linear-gradient(white, white) padding-box,
    /* Inner background */
      linear-gradient(
        90deg,
        #1196e3 0%,
        #205bbf 19.23%,
        #4742b7 38.94%,
        #a5248e 60.1%,
        #e13140 80.29%,
        #f4994b 98.08%
      )
      border-box;
  border: 2px solid transparent;
}
.Leadership-Team-Img img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
.Leadership-Team-Details {
  background: #0a0a0a;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-align: left;
}
.Leadership-Team-Details h4 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
.Leadership-Team-Details span {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
  color: #e0e0e0;
}
.DetailsRight img {
  width: 38px;
}

/*-------Service--------*/
.service {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.service h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  padding-bottom: 25px;
  margin: 0;
}
.service p {
  max-width: 715px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}
.service p a {
  text-decoration: underline;
}

/*-------Footer--------*/
/* .footer {
background: #EEEEEE;
padding: 30px 0 25px;
}
.footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.copyright {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
} */

/*-------Sticky Header--------*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.header.sticky {
  background: #fff;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
}
.header.sticky .navbar-brand img {
  width: 250px;
}
.header.sticky .navbar-brand img.white-bg {
  display: block;
}
.header.sticky .navbar-brand img.black-bg {
  display: none;
}
.header.sticky .navbar .navbar-nav .nav-link,
.header.sticky .brandStory {
  color: #000 !important;
}
.header.sticky .navbar .navbar-toggler {
  color: #000;
}
.header.sticky .navbar-toggler .bar {
  background-color: #000;
}
.header.sticky .navbar-nav .nav-link.collapse-link:before {
  border-color: #000 transparent transparent transparent;
}

/*-------Inner Banner--------*/
.static-banner .container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  right: 0;
  margin: auto;
}
.static-banner > img {
  width: 100%;
}
.static-banner .bannerTxt {
  top: 28%;
  transform: translateY(-61%);
}
.static-banner .bannerTxt h2 {
  line-height: 1.3;
  padding-bottom: 18px;
}
.static-banner .bannerTxt p {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0;
}
.static-banner .bannerBottom {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  width: 100%;
}
.bannerBox {
  padding: 30px 30px 42px;
  background: #fff;
  width: 100%;
  height: 100%;
}
.bannerBox p {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
  color: #000000;
  height: 50px;
  margin-bottom: 35px;
}
.bannerBox a {
  font-size: 0.9rem;
  line-height: 1;
  color: #000;
  font-weight: 300;
  border: 1px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    /* inner box */
      linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  padding: 10px 23px;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
.bannerBox a:hover {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  color: #fff;
  border-color: transparent;
}

/*-------Final CLoud What We Do--------*/
.cloud-what-we-do {
  padding: 87px 0;
  scroll-margin-top: 100px;
}
.cloud-what-we-do img {
  width: 100%;
}
.subhead {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  padding-bottom: 10px;
  margin: 0 0 22px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.subhead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease-out;
}

.subhead.in-view::after {
  transform: scaleX(1);
}

h2.mainhead {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 35px;
  margin: 0;
}
.cloud-what-we-do p {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding: 0;
  color: #3b3b3b;
}
/*-------Final CLoud Our Service--------*/
.cloud-service {
  padding: 145px 0 140px;
  background: #ededed;
  position: relative;
}
.half-circle {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background: #ededed;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  height: 110px;
}
.neoicon {
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  z-index: 2;

  display: inline-block;
  animation: heartbeat 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(0.95);
  }
}
.neoicon img {
  width: 45px;
}
.cloud-service-boxjs {
  opacity: 0;
  transform: translateY(50px); /* Start slightly below its final position */
  transition: transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth animation */
}
.cloud-service-boxjs.active {
  opacity: 1;
  transform: translateY(0); /* Moves to its original position */
}
.cloud-service-box {
  position: relative;
  padding: 45px 40px;
  background-color: #fafafa;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

/* Background animation layer */
/* .cloud-service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #000000, #000000);
  transition: width 0.4s ease-out;
  z-index: 0;
}

.cloud-service-box:hover::before {
  width: 100%;
} */

/* Gradient border layer */
.cloud-service-box::after {
  content: "";
  border: 1px solid transparent;
  background: linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* Ensure content stays on top */
.cloud-service-box > * {
  position: relative;
  z-index: 1;
}

.cloud-service h2.mainhead,
.cloud-partner h2.mainhead {
  padding-bottom: 65px;
}
.cloud-service-box > img {
  width: 75px;
  height: 70px;
  object-fit: contain;
}
/* .cloud-service-box > img.hover-view {
  display: none;
}
.cloud-service-box:hover > img.hover-view {
  display: block;
}
.cloud-service-box:hover > img.normal-view {
  display: none;
} */

.cloud-service-box p {
  padding-top: 25px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 300;
  color: #000000;
}
.cloud-service-box:hover p {
  color: #ddd;
}
.cloud-service-box i {
  display: flex;
  justify-content: flex-end;
}
.cloud-service-box i img {
  width: 14px;
}
/*-------Final CLoud Our Partner--------*/
.cloud-partner {
  padding: 145px 0 140px;
}
.cloud-partner ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.cloud-partner ul li {
  border: 1px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 80px) / 5);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.cloud-partner ul img {
  scale: 0.6;
  display: block;
  max-width: 100%;
  height: auto;
}
.cloud-partner ul img.partnerListMicrosoft {
  scale: 0.8;
} 
.cloud-partner ul img.partnerListGC {
  scale: 1;
} 
/*-------Final CLoud Connect with Us--------*/
.cloud-connect {
  background-image: url("../images/connect-bg.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
.cloud-connect::after {
  content: "";
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.cloud-connect-Info {
  padding: 75px 0 110px;
}
.cloud-connect-Info h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 5px;
  margin: 0;
}
.cloud-connect-Info p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #d5d5d5;
  padding-bottom: 48px;
  margin: 0;
}
.cloud-connect-Info a {
  padding: 20px 40px;
  background: #fff;
  border-radius: 50px;
  font-size: 1.2rem;
  line-height: 1;
  color: #000000;
  text-align: center;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border: transparent solid 1px;
}
.cloud-connect-Info a:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/*-------Inner Page Footer--------*/

.inner-footer {
  padding: 70px 0 35px;
  background: #010103;
}
.footer-logo img {
  width: 250px;
}

.footer-content {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px; */
  padding-top: 65px;
}

.footer-column {
  flex: 1 1 200px;
}
.footer-column h4 {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
}
.footermenu {
  display: flex;
  column-gap: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-service {
  display: grid;
  /* grid-template-columns: auto auto auto; */
}
.footer-about {
  display: grid;
  /* grid-template-columns: auto auto; */
}

.footer-column a {
  color: #dadada;
  font-size: 0.8rem;
  line-height: 2.5rem;
}

.footer-column a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-self: flex-end;
  justify-content: flex-end;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.social-icons img {
  width: 35px;
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #a5a5a5;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9f9f9f;
}

.footer-links a {
  margin-right: 15px;
  color: #999;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/*-------Professional Services Banner--------*/
.professional-banner .bannerTxt {
  max-width: 60%;
}
/*-------Professional Services Why Choose--------*/
.professional-why-choose {
  padding: 145px 0 80px;
}

/*-------Professional Services What We Offer--------*/
.professional-offer {
  padding: 145px 0 107px;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 1px;
  border-left: 1px dashed #7f7f7f;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.phase {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.phase.left .content {
  width: 45%;
  text-align: left;
  margin-right: auto;
}

.phase.right .content {
  width: 45%;
  text-align: left;
  margin-left: auto;
}

.professional-offer .content h2 {
  font-size: 1.2rem;
  line-height: 1;
  color: #dfdfdf;
  margin: 0;
  font-weight: 500;
}

.professional-offer .content h2 span {
  font-size: 3.5rem;
  color: #dfdfdf;
  font-weight: 700;
  display: block;
}

.professional-offer .content h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
  color: #000000;
}
.professional-offer .content small {
  font-size: 0.9rem;
  line-height: 1;
  margin: 0;
  font-weight: 500;
  color: #575757;
  display: block;
  padding: 8px 0 18px;
  border-bottom: #7f7f7f solid 1px;
}

.professional-offer .content h4 {
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 0 5px;
  margin: 0;
  color: #383838;
}

.professional-offer .content p {
  font-size: 1rem;
  font-weight: 300;
  padding: 0px 0 5px;
  margin: 0;
  color: #383838;
}

/*-------Professional Key Capabilities--------*/
.professional-key-capabilities {
  padding: 145px 0 140px;
}
.professional-key-capabilities .cloud-service-box::before {
  background: none;
  content: transparent;
}
.key-Title {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
  margin: 0;
  padding-top: 20px;
}
.professional-key-capabilities .cloud-service-box p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #575757;
  padding: 20px 0 0;
}
.cloud-service-box:hover p {
  color: inherit;
}

/*-------Professional Services Get Started with NeoNXT--------*/
.professional-get-started {
  background: url(../images/professional-get-started-bg.jpg) no-repeat;
  background-size: cover;
  background-position: top left;
  padding: 145px 0 140px;
}
.professional-get-started h2.mainhead {
  padding-bottom: 10px;
}
.professional-get-started p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #3b3b3b;
}

/*-------Choose the Right Cloud Service Provider At A Glance--------*/
.cloud-what-we-do ul {
  padding: 20px 0;
}
.cloud-what-we-do ul li {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #3b3b3b;
  position: relative;
  padding: 5px 0 0 15px;
}
.cloud-what-we-do ul li::after {
  content: "";
  background: #3b3b3b;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 15px;
}
/*-------Choose the Right Cloud Service What We Deliver--------*/
.we-deliverBox:before {
  display: none;
}
.we-deliverBox .key-Title {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 300;
}
.we-deliverBox p {
  padding-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #575757;
}

/*-------Choose the Right Cloud Service--------*/
.cloud-servicesWrap {
  padding: 145px 0 160px;
}
.cloud-servicesTxt {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
  background: linear-gradient(#ededed, #ededed) padding-box,
    linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  padding: 0 60px;
}
.cloud-servicesTxt h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
  color: #000000;
  padding-bottom: 24px;
  margin: 0;
}
.cloud-servicesTxt p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #575757;
}


.cloud-servicesImg img {
  width: 100%;
}

/*-------About US Banner--------*/
.about-banner {
  background: #262626;
  overflow: hidden;
}
.banner-left {
  color: #fff;
  max-width: 92%;
}
.banner-left h2 {
  font-size: 2.9rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  padding-bottom: 25px;
}
.banner-left p {
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
}
.banner-img {
  position: relative;
  width: 50vw;
  right: 0;
  overflow: hidden;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-leadershipteam h2.mainhead {
  padding-bottom: 65px;
}

.about-leadershipteam h3 {
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 150px;
}
/* .about-leadershipteam > .container > span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  display: inline-block;
  margin-bottom: 80px;
  padding-bottom: 10px;
  position: relative;
}
.about-leadershipteam > .container > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease-out;
}

.about-leadershipteam > .container > span.in-view::after {
  transform: scaleX(1);
} */





/* primary common btn */
.primary-btn a {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 0;
  transition: 0.3s ease-in-out;
  border: none;
}
/* Hover state with gradient border */
.primary-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(
    90deg,
    #1310a4,
    #5e0792,
    #cd0063,
    #f20f07,
    #ff4000
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.primary-btn a:hover {
  background: transparent;
  color: #292929;
}

.primary-btn a:hover::before {
  opacity: 1;
}

.quote-text {
  padding: 140px 0px;
  transition: 0.3s all ease-in;
}
.quote-text h2 {
  font-size: 40px;
  padding: 0;
  line-height: 1.2;
  padding-bottom: 50px;
}
.quote-text h3 {
  padding: 0;
  font-size: 27px;
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
}
@keyframes animatedBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.quote-text {
  background: url(../images/quote-banner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all ease-in;
  animation: animatedBackground 0.5s linear;
}
.quote-text h3,
.quote-text h2 {
  color: #ffffff;
  -webkit-text-fill-color: initial;
  text-align: center;
}


.aboutuscloud h2.mainhead {
  padding-bottom: 10px;
}
.aboutuscloud p.subheadpara {
  font-size: 16px;
  margin-bottom: 50px;
}
.cloudservicetxt h2 {
  /* font-size: 40px; */
  color: #000000;
  margin-bottom: 35px;
}
.padding-130 {
  padding-top: 130px;
}


/*-----------Home NeoNXT At A Glance -----------*/
.home-glance img,
.home-glance svg {
  width: 100%;
  height: 100%;
}
.home-glance img.circleimg1 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 17%;
  animation: rotate 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -2s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.home-glance img.circleimg2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 28%;
  animation: rotaterev 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -2s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.home-glance img.circleimgmain,
.home-glance svg.circleimgmain {
  animation: rotatemain 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1.5s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
 
@keyframes rotate {
  to {
    transform: rotate(435.477deg) translateZ(0);
  }
}
@keyframes rotaterev {
  to {
    transform: rotate(-505deg) translateZ(0);
  }
}
@keyframes rotatemain {
  to {
    transform: rotate(-680deg) translateZ(0);
  }
}
.cloud-what-we-do .glancebanner-text {
  left: 50%;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  max-width: 121px;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.3;
}

/*----------- On Premise -----------*/
.what-offer-blackbg {
  background: #000000;
  color: #ffffff;
  padding: 145px 0 180px;
  position: relative;
  z-index: 1;
}
.what-offer-blackbg::after {
  content: "";
  position: absolute;
  background: url(../images/black-bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  background-position: center bottom;
}
.what-offer-blackbg .subhead, .what-offer-blackbg h2.mainhead {
  color: #ffffff;
}
.what-offer-blackbg h2.mainhead {
  padding-bottom: 12px;
}
.what-offer-blackbg .container > p {
  max-width: 950px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 45px;
  color: #ffffff;
}
.what-offer-blackbg .who-we-are-boxTxt {
  padding: 35px 30px;
}
.what-offer-blackbg .who-we-are-box h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 300;
  color: #000000;
  margin: 0;
}

/*----------- Sovereign Cloud -----------*/
.sovereign-banner .bannerTxt {
  max-width: 85%;
}
/*----------- Contact Tell Us -----------*/
.contact-form {
  padding: 87px 0;
}
.contact-tell-us {
  padding: 0 0 50px;
  border-bottom: #D1D1D1 solid 1px;
}
.form-lebel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #3B3B3B;
  padding-bottom: 15px;
  padding-left: 20px;
  display: block;
  text-align: left;
}
.form-control {
  border: #AEAEAE solid 1px;
  border-radius: 55px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  padding: 9px 12px;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  background: linear-gradient(white, white) padding-box, /* Inner background */ linear-gradient(90deg, #1196e3 0%, #205bbf 19.23%, #4742b7 38.94%, #a5248e 60.1%, #e13140 80.29%, #f4994b 98.08%) border-box;
    border: 1px solid transparent;
}
.slider-wrapper {
  --thumb-diameter: 2em;
  --thumb-radius: calc(var(--thumb-diameter) / 2);
  --track-border-width: 1px;
  --value: 50;
  --pos: calc(var(--thumb-radius) + .01 * var(--value) *(100% - var(--thumb-diameter)));
  /* max-width: 30em;
  margin: 1em auto; */
  text-align: center;
  font-size: 7px;
}
.slider-tooltip {
  --tooltip-background: #ECECEC;
  --tooltip-border-width: 1px;
  --tooltip-border-color: transparent;
  --tooltip-hight-arrow: 1em;
  display: block;
  width: fit-content;
  margin: auto;
  margin-top: 15px;
  margin-left: calc(var(--pos) + var(--track-border-width));
  padding: 3px 33px;
  min-width: 10px;
  border: var(--tooltip-border-width) solid var(--tooltip-border-color);
  border-radius: 5px;
  font-weight: 400;
  white-space: nowrap;
  color: #3B3B3B;
  background-color: var(--tooltip-background);
  transition: .25s;
  translate: calc(-50%);
  font-size: 0.8rem;
}
.slider-tooltip::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: var(--tooltip-hight-arrow);
  height: var(--tooltip-hight-arrow);
  border: inherit;
  border-top: none;
  border-left: none;
  background-color: inherit;
  box-shadow: none;
  transform: translate(-50%,-50%) rotate(45deg);
}
input[type="range"].slider {
  --track-height: 9px;
  --track-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  --thumb-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  /* --thumb-border: 2px solid #FFF;
  --effect-over: 0 0 0 .75em #4A02;
  --effect-active: 0 0 0 .75em #5F03; */
  display: block;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: var(--track-height);
  margin: 0;
  border: var(--track-border-width) solid #ECECEC;
  border-radius: 50px;
  font-size: 1em;
  outline: none;
  opacity: 0.7;
  background: #ECECEC;
  background-image: var(--track-background);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: var(--pos) var(--track-height);
  cursor: pointer;
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}
input[type="range"].slider::-moz-range-thumb {
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: var(--effect-over);
}
input[type="range"]::-moz-range-thumb:hover {
  box-shadow: var(--effect-over);
}
/*----------- Contact Sec -----------*/
.contact-sec {
  padding: 50px 0 32px;
  border-bottom: #D1D1D1 solid 1px;
}
.contact-sec.pad-50 {
  padding: 50px 0;
}
.contactTitle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 30px;
  margin: 0;
}
.checkbox-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.check-label {
  /* position: relative;
  display: inline-block;
  text-align: center; */
  margin-right: 18px;
  margin-bottom: 18px;
  cursor: pointer;
}
.btn-check {
  font-size: 1rem;
  font-weight: 400;
  color: #3B3B3B;
  text-align: center;
  padding: 10px 23px;
  display: flex;
  align-items: center;
}
.btn-check {
  transition: all 0.2s ease;
  background-color: #ECECEC;
  border-radius: 55px;
}
btn-check::selection{
  background: green;
}
input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
.btn-check img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
input[type="checkbox"] + div {
  position: relative;
}
input[type="checkbox"]:checked + div {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
}
input[type="checkbox"]:checked + div>span {
  color: white;
}
/* input[type="checkbox"] + div>span {
position: relative;
top: 25%;} */
/* 
input[type="checkbox"]:checked + div::before {
        content:"✔";
    position: absolute;
    bottom: 18px;
    right: 0px;
    font-size: 21px;
    color: white;
} */

/* @keyframes fall {
    100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
}

@-moz-keyframes fall {
    100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
}

@-webkit-keyframes fall {
     100% {
        -webkit-transform: translate(-5px,5px) rotate(30deg);
        -moz-transform: translate(-5px,5px) rotate(30deg);
        -o-transform: translate(-5px,5px) rotate(30deg);
        -ms-transform: translate(-5px,5px) rotate(30deg);
        transform: translate(-5px,5px) rotate(30deg);
    }
} */

.custom-slider-wrapper {
  --thumb-diameter: 2em;
  --thumb-radius: calc(var(--thumb-diameter) / 2);
  --track-border-width: 1px;
  --value: 50;
  --pos: calc(var(--thumb-radius) + .01 * var(--value) *(100% - var(--thumb-diameter)));
  text-align: center;
  font-size: 7px;
  width: 50%;
  position: relative;
}

.custom-slider-value.slider-tooltip {
  --tooltip-background: #ECECEC;
  --tooltip-border-width: 1px;
  --tooltip-border-color: transparent;
  --tooltip-hight-arrow: 1em;
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 15px;
  margin-left: calc(var(--pos) + var(--track-border-width));
  padding: 3px 33px;
  min-width: 10px;
  border: var(--tooltip-border-width) solid var(--tooltip-border-color);
  border-radius: 5px;
  font-weight: 400;
  white-space: nowrap;
  color: #3B3B3B;
  background-color: var(--tooltip-background);
  transition: .25s;
  translate: calc(-27%);
  font-size: 0.8rem;
}

.custom-slider-value.slider-tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% + var(--tooltip-border-width));
  left: 50%;
  width: var(--tooltip-hight-arrow);
  height: var(--tooltip-hight-arrow);
  border: inherit;
  border-top: none;
  border-left: none;
  background-color: inherit;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

input[type="range"].custom-slider-range {
  --track-height: 9px;
  --track-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  --thumb-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  display: block;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: var(--track-height);
  margin: 0;
  border: var(--track-border-width) solid #ECECEC;
  border-radius: 50px;
  font-size: 1em;
  outline: none;
  opacity: 0.7;
  background: #ECECEC;
  background-image: var(--track-background);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: var(--pos) var(--track-height);
  cursor: pointer;
  margin: 0 30px;
}

input[type="range"].custom-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}

input[type="range"].custom-slider-range::-moz-range-thumb {
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}

input[type="range"].custom-slider-range::-webkit-slider-thumb:hover {
  box-shadow: var(--effect-over);
}

input[type="range"].custom-slider-range::-moz-range-thumb:hover {
  box-shadow: var(--effect-over);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
}

.min-value,
.max-value {
  color: #3B3B3B;
  font-weight: 400;
  font-size: 0.9rem;
  position: absolute;
  left: 0;
  bottom: -6px;
}
.max-value {
  left: 100%;
  padding-left: 40px;
}
.btm-contact {
  border: 0;
}
.contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.contact-form .btn-primary img {
  padding-left: 12px;
  width: 21px;
  height: 15px;
}
.contact-form .btn-primary:hover {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
}
.location {
  background: #E9E9E9;
  padding: 120px 0;
}
.locationBox {
  background: #FAFAFA;
  padding: 45px 50px;
  height: 100%;
}
.locationBox img {
  height: 58px;
}
.locationBox h3 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  padding-top: 50px;
  margin-bottom: 15px;
}
.locationBox p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #575757;
}
.cloud-connect-Info a {
  margin-right: 35px;
}
.cloud-connect-Info a img {
  margin-right: 12px;
  height: 25px;
  width: 25px;
}
/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  margin-bottom: 18px;
  cursor: pointer;
}
.custom-select-wrapper select {
  display: none;
}
/* .custom-select {
  position: relative;
  display: inline-block;
} */
.custom-select-trigger {
      font-size: 1rem;
    font-weight: 400;
    color: #3B3B3B;
    text-align: center;
    padding: 10px 40px 10px 20px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    background-color: #ECECEC;
    border-radius: 55px;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: "";
    width: 11px;
    height: 16px;
    top: 50%;
    right: 10px;
    margin-top: -7px;
    background: url(../images/select-arrow.svg) no-repeat;
    /* transform: rotate(45deg) translateY(-50%); */
    transition: all 0.4s ease-in-out;
    /* transform-origin: 50% 0; */
    z-index: 4;
    background-size: 100% 100%;
}
.custom-select.opened .custom-select-trigger:after {
  margin-top: -15px;
  transform: rotate(-180deg) translateY(-50%);
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 10px 0;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-options:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  right: 25px;
  width: 7px;
  height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #ECECEC;
  border-left: 1px solid #ECECEC;
  background: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 16px;
  border-bottom: 1px solid #ECECEC;
  font-size: 0.9rem;
  font-weight: 400;
  color: #3B3B3B;
  line-height: 42px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
  background: #f9f9f9;
}
/*-------Resposive starts from here--------*/
@media (min-width: 1660px) {
  .container {
    width: 100%;
    max-width: 83%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .headerLogo img,
  .header.sticky .headerLogo img {
    width: 250px;
  }
  .header .navbar-nav .nav-item {
    /* margin-left: 1.8rem; */
    margin-left: 3.8rem;
  }
  .header .navbar-nav .nav-link {
    font-size: 1.1rem;
  }
  .nav-collapse__content .nav-tabs .nav-item {
    margin-left: 0;
  }
  .brandStory {
    padding: 9px 18px;
    font-size: 1.1rem;
    margin-right: 20px;
  }
  .headerSearch {
    margin-left: 20px;
  }
  /* .banner {
    height: calc(100vh - 70px);
  } */
  .banner img {
    height: 100vh;
    object-fit: cover;
  }
  .static-banner .bannerTxt {
    transform: translateY(-40%);
  }
  .bannerTxt h2,
  .static-banner .bannerTxt h2 {
    font-size: 4.2rem;
    line-height: 1.3;
    padding-bottom: 35px;
  }
  .bannerTxt p,
  .static-banner .bannerTxt p {
    font-size: 2.3rem;
    line-height: 1.3;
    padding-bottom: 70px;
  }
  .static-banner .bannerTxt p {
    padding-bottom: 0;
  }
  .btn-primary {
    padding: 25px 45px;
    font-size: 1.8rem;
  }
  .static-banner .bannerBottom {
    bottom: 100px;
  }
  .bannerBox p {
    font-size: 1.4rem;
  }
  /*-------Index Page CSS--------*/
  h2.mainhead,
  .who-we-are h2,
  .How-We-Help h2,
  .Neonxt-Customer h2 {
    font-size: 2.5rem;
  }
  .custom-vms ul {
    padding: 40px 0 120px;
  }
  .logocard {
    width: 180px;
    height: 180px;
    padding: 40px;
  }
  
  /*-------Inner Page CSS--------*/
  .cloud-service-box p br {
    display: none;
  }
  .professional-get-started {
    padding: 285px 0;
    background-position: right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .cloud-what-we-do p {
    max-width: 90%;
  }
  .cloud-service-box {
    padding: 45px 52px;
  }
  .professional-get-started p {
    font-size: 1.3rem;
  }
  .cloudservicetxt h2 {
    font-size: 50px;
  }
  /*-------About US Banner--------*/
  .banner-left {
    max-width: 90%;
  }

  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    left: 50%;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    position: absolute;
    top: 50%;
    max-width: 135px;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.3;
  }
  @keyframes rotate {
    to {
      transform: rotate(315.477deg) translateZ(0);
    }
  }
  @keyframes rotatemain {
    to {
      transform: rotate(-570deg) translateZ(0);
    }
  }
  @keyframes rotaterev {
    to {
      transform: rotate(-423deg) translateZ(0);
    }
  }
}

@media (max-width: 1199px) {
  .headerwrap img.black-bg {
    width: 200px;
  }
  .header .navbar-nav .nav-item:first-child {
    margin-left: 0;
  }
  .brandStory {
    padding: 9px;
    font-size: 0.8rem;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0.8rem;
  }
  .brandStory img {
    width: 20px;
    margin-left: 9px;
  }

  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 40px 30px;
  }
  h2.mainhead,
  .cloud-connect-Info h2 {
    font-size: 2.1rem;
  }
  .cloud-connect {
    background-size: 60% 100%;
  }
  .cloud-connect-Info {
    padding: 50px 0;
  }
  .logocard {
    width: 128px;
    height: 128px;
  }
  /*-------Professional Services--------*/
  .professional-get-started {
    padding: 100px 0;
    background-position: right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* new css changes */
  .headerwrap img.black-bg {
    width: 200px;
  }
  .headerSearch {
    width: 55px;
    height: 35px;
  }
  .header .navbar-nav .nav-link {
    font-size: 0.9rem;
  }
  .nav-collapse__content .nav-tabs .nav-item {
    padding: 15px 10px;
  }
  .brandStory {
    padding: 9px;
    font-size: 0.8rem;
  }
  .brandStory img {
    width: 20px;
    margin-left: 9px;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0.8rem;
  }
  .headerSearch img {
    width: 18px;
  }
  .header.sticky .navbar-brand img {
    width: 200px;
  }
  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header__navbar-collapse {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -150%;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    border-top: 1px solid var(--border-color);
    z-index: 11;
  }
  .header__navbar-collapse.show {
    left: 0;
  }
  .header__navbar-collapse .navbar-nav {
    margin: 0 auto;
    padding: 0;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0;
    padding: 20px;
    border-bottom: #000 solid 1px;
  }
  .header .navbar-nav .nav-link {
    color: #000;
  }

  .header .navbar-nav .nav-link.collapse-link:before {
    border-color: #000 transparent transparent transparent;
    transform: translateY(-50%) rotate(270deg);
  }
  .header .navbar-nav .nav-link.collapse-link.collapsed:before {
    transform: translateY(-50%);
  }
  .nav-collapse {
    width: 100%;
    position: static;
    box-shadow: none;
  }
  .nav-collapse__content {
    box-shadow: none;
    border-radius: 0px;
    background: transparent;
  }
  .nav-collapse__content .nav-tabs {
    gap: 0;
  }
  .nav-collapse ul li {
    background: #e7e7e769;
  }
  .nav-collapse__content .nav-tabs .nav-tabs li {
    background: transparent;
  }
  .header .navbar-nav .nav-item:first-child {
    padding-bottom: 10px;
  }
  .close-btn {
    display: block;
  }
  .bannerTxt {
    top: 40%;
    transform: translateY(-40%);
    padding-top: 0;
  }
  .bannerTxt h2,
  .banner-left h2 {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
  .bannerTxt p,
  .banner-left p {
    font-size: 1.1rem;
    padding-bottom: 30px;
  }

  .menu-items li {
    margin-left: 0.8rem;
    font-size: 0.8rem;
  }
  .brandStory {
    padding: 7px;
    font-size: 0.8rem;
  }
  .brandStory img {
    display: flex;
    width: 30px;
  }
  .headerSearch {
    width: 35px;
  }

  /*-------Header Search Expand--------*/
  .suggestion-content {
    gap: 40px 58px;
    flex-wrap: wrap;
  }
  .contentList {
    flex: 0 0 45%;
  }
  .contentList h3 {
    font-size: 1rem;
  }
  .contentList p {
    font-size: 0.8rem;
  }

  /*-------Inner Banner--------*/
  .header.sticky .headerLogo img {
    width: 100%;
  }
  .static-banner .bannerTxt {
    top: 33%;
    transform: translateY(-58%);
  }
  .static-banner .bannerBottom {
    bottom: 30px;
  }
  .bannerBox {
    padding: 15px 15px 15px;
  }
  .bannerBox p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .bannerBox p br {
    display: none;
  }
  .bannerBox a {
    font-size: 0.7rem;
    padding: 8px 15px;
  }

  .who-we-are,
  .How-We-Help,
  .Neonxt-Customer,
  .Leadership-Team,
  .cloud-what-we-do,
  .cloud-service,
  .cloud-partner,
  .custom-vms,
  .cloud-servicesWrap {
    padding: 90px 0;
  }
  .who-we-are h2,
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    font-size: 1.5rem;
    padding-bottom: 25px;
  }
  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 30px 20px;
  }
  .who-we-are-box h3,
  .How-We-Help__list h4, .what-offer-blackbg .who-we-are-box h3 {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .who-we-are-box p,
  .How-We-Help__list p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding-bottom: 0;
  }
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    padding-bottom: 45px;
  }

  .How-We-Help {
    padding-bottom: 90px;
  }
  .How-We-Help__list h4 {
    padding-bottom: 10px;
  }
  .How-We-Help__list h4 br {
    display: none;
  }
  .How-We-Help__list.bottom {
    padding-top: 40px;
  }
  .logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .logo-grid .logo img {
    max-width: 80px;
  }
  .Leadership-Team-Details {
    padding: 20px;
  }
  .Leadership-Team-Details h4 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .Leadership-Team-Details span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  .DetailsRight img {
    width: 30px;
  }
  .service {
    padding: 70px 0;
  }
  .service h2 {
    font-size: 1.9rem;
  }
  .service p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
  .footer {
    padding: 15px 0;
  }
  .copyright {
    font-size: 0.9rem;
  }
  .footer img {
    width: 30px;
    height: 30px;
  }
  .logocard {
    width: 128px;
    height: 128px;
    margin: 5px;
  }
  .clients-logo {
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .twologocard,
  .threelogocard {
    display: flex;
  }
  .twologocard:nth-child(1),
  .twologocard:nth-child(3),
  .threelogocard:nth-child(4),
  .twologocard:nth-child(5),
  .twologocard:nth-child(7) {
    margin-top: 0;
  }
  /*-------Final CLoud Page--------*/
  span.subhead {
    margin: 0 0 25px;
  }
  h2.mainhead {
    font-size: 1.5rem;
    padding-bottom: 25px !important;
  }
  .what-offer-blackbg h2.mainhead {
    padding-bottom: 12px !important;
  }
  .cloud-service-box,
  .professional-key-capabilities .cloud-service-box {
    padding: 25px 15px;
  }
  .cloud-service-box > img {
    width: 55px;
    height: 60px;
  }
  .cloud-service-box p {
    padding-top: 20px;
    font-size: 1.2rem;
  }
  .cloud-connect {
    background-size: 65% 100%;
  }
  .cloud-service-box i img {
    width: 12px;
  }
  .cloud-connect-Info {
    padding: 45px 0;
  }
  .cloud-connect-Info h2 {
    font-size: 1.7rem;
  }
  .cloud-connect-Info p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .cloud-connect-Info a {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .footer-column {
    flex: 1 1 50%;
  }

  /*-------Choose the Right Cloud Service What We Deliver--------*/
  .cloud-service-box > img {
    width: 45px;
    height: 50px;
  }
  .we-deliverBox .key-Title {
    font-size: 1.2rem;
  }
  .cloud-service-box p {
    padding-top: 15px;
    font-size: 1.2rem;
  }
  /*-------Choose the Right Cloud Service--------*/
  .cloud-servicesTxt {
    padding: 30px 35px;
  }

  /*-------About US Banner--------*/
  /* .about-leadershipteam {
    padding-top: 0;
  } */
  .banner-left {
    max-width: 100%;
  }

  .padding-130 {
    padding-top: 60px;
  }
  .cloudservicetxt h2 {
    margin-bottom: 15px;
  }
  .quote-text {
    background: url(../images/quote-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .quote-text h3,
  .quote-text h2 {
    color: #ffffff;
    -webkit-text-fill-color: initial;
  }
  .quote-text h2 {
    font-size: 32px;
  }
  .quote-text h3 {
    font-size: 25px;
  }

  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    font-size: 8px;
    max-width: 65px;
  }

  /*-----------Contact Page -----------*/
  .location {
    padding: 90px 0;
  }
  .locationBox {
    padding: 30px 25px;
  }
  .locationBox img {
    height: 45px;
  }
  .locationBox h3 {
    font-size: 1.2rem;
    padding-top: 30px;
    margin-bottom: 10px;
  }
  .locationBox p {
    font-size: 0.9rem;
  }
  .cloud-connect-Info a {
    margin-right: 10px;
  }

}
@media (max-width: 991px) and (orientation: landscape) {
  .banner video {
    object-position: right 70%;
  }
  .bannerTxt {
    top: 70%;
    transform: translateY(-70%);
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
  }
  .headerSearch {
    width: 28px;
    height: 28px;
  }
  .headerSearch img {
    width: 15px;
  }
  .header .headerLogo img,
  .header.sticky .headerLogo img {
    width: 200px;
  }
  /*-------Header Search Expand--------*/
  #panel {
    padding: 50px 0;
    top: 60px;
  }
  .suggestion-content {
    gap: 20px 0;
    flex-direction: column;
  }
  .contentList {
    flex: 0 0 100%;
  }

  .bannerTxt {
    top: 30%;
    transform: translateY(-30%);
  }
  .bannerTxt h2,
  .banner-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .bannerTxt p,
  .banner-left p {
    font-size: 1rem;
    padding-bottom: 25px;
  }
  .bannerTxt p br {
    display: none;
  }
  .btn-primary {
    padding: 15px 25px;
    font-size: 1rem;
  }
  .who-we-are,
  .How-We-Help,
  .Neonxt-Customer,
  .Leadership-Team,
  .cloud-what-we-do,
  .cloud-service,
  .cloud-partner,
  .custom-vms,
  .cloud-servicesWrap {
    padding: 50px 0;
  }
  /* .who-we-are h2, .How-We-Help h2, .Neonxt-Customer h2, .Leadership-Team h2 {
    font-size: 2rem;
    padding-bottom: 15px;
    line-height: 1.3;
  } */
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    padding-bottom: 30px;
  }
  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 28px 18px;
  }
  .who-we-are-box img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .who-we-are-box p {
    padding-bottom: 0;
  }
  .logocard {
    width: 110px;
    height: 110px;
    padding: 25px;
  }
  /* .what-we-do h2, .what-we-do p {
    color: #000;
  }
  .what-we-do::before {
    display: none;
  }
  .support-boxes > img {
    position: static;
    width: 100%;
  }
  .what-we-do-box {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 28px 18px;
  }
  .what-we-do-boxWrap {
    margin-top: -50px;
  }
  .what-we-do-box img {
    margin: 0 auto 15px;
  } */
  .cloud-what-we-do.home-glance {
    text-align: center;
  }

  .cloud-what-we-do.home-glance img {
    width: 80%;
    display: block;
    margin: 50px auto 0;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-grid .logo img {
    max-width: 60px;
  }

  .custom-vms img {
    margin: 0 auto 50px;
  }

  .Leadership-Team-Slider {
    margin: 0;
  }
  .Leadership-Team-Slider .col-md-4 {
    padding: 0;
  }
  .Leadership-Team-Img img {
    max-width: 70%;
  }
  .service {
    padding: 50px 0;
  }
  .service h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    padding-bottom: 20px;
  }
  .copyright {
    font-size: 0.7rem;
  }
  .footer img {
    width: 20px;
    height: 19px;
  }

  /*-------Inner Page Banner--------*/
  .professional-banner .bannerTxt, .sovereign-banner .bannerTxt {
    max-width: 80%;
  }
  .professional-banner .bannerTxt br,
  .sovereign-banner .bannerTxt br {
    display: none;
  }
  .static-banner .bannerBottom {
    width: auto;
    left: 15px;
    right: 15px;
    margin: 0 auto;
  }
  .static-banner .bannerTxt {
    top: 18%;
    transform: translateY(-44%);
  }
  .bannerBox p {
    height: auto;
    margin-bottom: 25px;
  }

  /*-------Final CLoud Page--------*/
  .cloud-what-we-doDtl {
    padding: 30px 15px;
  }
  .cloud-partner ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cloud-partner ul li {
    width: 100%;
    height: 80px;
  }
  .cloud-connect {
    background-image: url(../images/connect-bg-mob.png);
    background-size: cover;
    background-position: left 40px top 0;
  }
  .cloud-connect-Info {
    padding: 30px 0;
  }
  .cloud-connect-Info p {
    padding-bottom: 20px;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
  }
  .footer-column h4 {
    margin-bottom: 25px;
  }
  /* .footer-service {
    grid-template-columns: auto auto;
  } */
  .footer-column a {
    line-height: 2rem;
  }
  .cloud-service-box p br {
    display: none;
  }
  .social-icons {
    align-self: flex-start;
  }
  .footer-bottom {
    justify-content: center;
    padding-top: 20px;
  }
  .inner-copyright {
    display: block;
    padding-top: 0px;
  }

  /*-------Professional Services Page--------*/
  .timeline::before,
  .timeline::after {
    display: none;
  }
  .phase {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-bottom: 50px;
  }
  .phase:last-child {
    padding-bottom: 0;
  }

  .phase.left .content,
  .phase.right .content {
    width: 100%;
    text-align: left;
    margin: 0;
  }
  .professional-get-started {
    padding: 32px 0;
    background: #ffffff;
  }
  .professional-get-started p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .about-leadershipteam h3 {
    padding-bottom: 50px;
  }

  .about-banner .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .about-banner .row {
    margin: 0;
  }
  .about-banner .mobileabout {
    display: flex;
    height: calc(50vh - 30px);
  }
  .banner-img {
    width: 100vw;
    height: auto;
  }

  .banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .banner-left {
    padding: 50px 15px;
    color: #fff;
    z-index: 1;
    max-width: 540px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .banner-left p {
    padding-bottom: 0px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .professional-why-choose {
    padding: 60px 0 80px;
  }
  /*-----------Home page -----------*/
  .logocard img {
    width: 100%;
  }
  .logocard img.mob-logo {
    width: 75%;
  }
  .logocard img.Old-logoMutual, .logocard img.walmaert-logo {
    width: 90px;
  }
  /* .logocard img.walmart-logo {
    width: 90px;
  } */
  .cloud-what-we-do {
    overflow: hidden;
  }
  .cloud-what-we-do.home-glance img {
    width: 100%;
    margin: 0 auto;
  }
  .glancecontent {
    margin-bottom: 35px;
  }
  .cloud-what-we-do .glancebanner-text {
    font-size: 10px;
    max-width: 100px;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .bannerTxt {
    max-width: 80%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 450px) {
  .logocard {
    width: 100px;
    height: 100px;
    padding: 20px;
  }
}