/*===========================
Font Load
===========================*/

@font-face {
  font-family: "bebas";
  src: url("../fonts/bebas-Reg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "futura";
  src: url("../fonts/futura.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "itc-bk";
  src: url("../fonts/itc-book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "itc-med";
  src: url("../fonts/itc-med.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "itc-demi";
  src: url("../fonts/itc-demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "itc-bd";
  src: url("../fonts/itc-bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/*===========================
    Global
  ===========================*/
:root {
  --primary-color: #e7c432;
  --primary-color-rgb: 0, 0, 0;
  --secondary-color: #060606;
  --light-color: #ffffff;
  --offwhite-color: #f9f9f4;
  --border-radius: 12px;
  --animation-primary: 0.6s cubic-bezier(0.2, 1.33, 0.25, 1);
  --animation-primary-ease-in: 0.6s cubic-bezier(0.25, 1, 0.1, 1);
}

html {
  scroll-behavior: smooth;
  /* overflow: hidden; */
}

body {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Champion", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

html, body {
  overflow-x: hidden;
}

#wrapper {
  overflow-x: clip;
}

span.different {
  color: var(--primary-color);
}

.content {
  color: var(--light-color);
}

p {
  font-family: "itc-bk";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

figure {
  margin: 0;
}

a {
  transition: all var(--animation-primary-ease-in);
}

p > a,
h4 > a {
  color: currentColor;
  opacity: var(--bs-link-opacity, 1);
}

p > a:hover,
h4 > a:hover {
  --bs-link-opacity: 0.8;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1440px;
  padding-left: 50px;
  padding-right: 50px;
  margin: auto;
}

section {
    position: relative;
}

/*------typography-----------*/

a {
  font-family: "futura";
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

h1 {
  font-size: 125px;
  line-height: 135px;
  font-family: itc-bd;
  font-weight: 800;
}

h2 {
  font-size: 62px;
  line-height: 72px;
  font-family: itc-demi;
  font-weight: 600;
  color: var(--light-color);
}

h3 {
  font-size: 40px;
  line-height: 50px;
  font-family: itc-demi;
}

h4 {
  font-size: 35px;
  line-height: 45px;
  font-family: bebas;
  font-weight: 400;
}

h5 {
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  font-family: "itc-bk";
  font-weight: 300;
}

/*------typography-----------*/

.nav-item .nav-link {
  color: var(--light-color);
  padding-inline: 25px !important;
}

.custom-header {
  padding-block: 20px !important;
}

.navbar-brand img {
  width: 55px;
}

/* header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9999;
} */

.custom-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-header .container {
  margin: 0 auto;
  transition: all 0.4s ease;
  box-sizing: border-box;
}

.hero-section {
    background: url(../images/banner-bg.png);
    padding-top: 40px;
    padding-bottom: 80px;
    background-position: bottom center;
    background-size: 100% 100%;
}

.hero-section h1 {
  white-space: nowrap;
  margin-bottom: 30px;
}

.hero-section .astronut {
  width: 95%;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    translate: 0 -50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
  }
  50% {
    translate: 0 0;
    filter: none;
  }
}

.hero-section .col-lft {
  margin-top: -100px;
}

.hero-section h4 {
  border-left: 4px solid;
  padding-left: 40px;
  margin-bottom: 40px;
}

a.btn {
  font-family: "futura";
  color: white;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  padding: 14px 20px;
  letter-spacing: 1px;
  border: unset;
}

a.btn.btn-secondary {
  /* background: transparent; */
  position: relative;
  border: unset;
  font-family: futura;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 20px;
}

a.btn.btn-secondary svg {
  margin-bottom: 4px;
}

.rotating-border-button {
  border-radius: 40px !important;
  background: linear-gradient(90deg, white 0%, rgba(0, 0, 0, 1) 100%);
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
  --borderWidth: 1px;
  z-index: 9;
  transition: 0.6s !important;
  box-shadow: 0px 0px 35px -2px transparent;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rotating-border-button:hover {
  box-shadow: 0px 0px 35px -2px var(--primary-color) !important;
}

.rotating-border-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background: var(--secondary-color);
  border-radius: 50px;
  z-index: -11;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
  transform: translate(-50%, -50%);
}

.hero-section .content .buttons {
  position: relative;
}

.hero-section .content .buttons a {
  margin-right: 10px;
}

.hero-section .content .buttons:before {
  content: "";
  position: absolute;
  border-bottom: 4px solid var(--primary-color);
  width: 300px;
  left: -50%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: table;
}

.hero-section .row.align-items-center {
  position: relative;
  z-index: 9;
}

.marquee-container {
  width: 100%;
  position: absolute;
  background: transparent;
  top: 43%;
  left: 0;
  right: 0;
  margin: auto;
  display: table;
  z-index: 1;
}

.marquee-text-section {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-wrapper {
  display: flex;
  align-items: center;
  width: 200%;
  flex-direction: column;
}

.marquee-text {
  display: flex;
  gap: 50px;
  font-size: 50px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 100%;
}

#marqueeText1 span {
  font-size: 280px;
  line-height: 230px;
}

#marqueeText2 span {
  font-size: 380px;
  line-height: 330px;
}

.hero-section .marquee-text span {
  font-family: "bebas";
  color: transparent;
  font-weight: 100;
  -webkit-text-stroke: 1px #ffffff1a;
}

.hero-section .col-md-6 {
  position: relative;
}

.hero-section .ring-btn {
  position: absolute;
  bottom: 38%;
  left: 150px;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-section .ring-btn a {
  padding: 22px 25px;
  border: 1px solid;
  color: var(--light-color);
  border-radius: 100%;
  position: relative;
  filter: drop-shadow(0px 0px 5px white);
}

.hero-section .ring-btn a:before {
  content: "";
  position: absolute;
  background: url(../images/ring-button.png);
  width: 150%;
  height: 150%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  outline: 2px solid var(--light-color);
  border-radius: 100px;
  outline-offset: 5px;
}

.about-section {
  background: url(../images/about-bg.webp);
  padding-top: 200px;
  padding-bottom: 480px;
  background-position: top center;
}

.about-section .buttons {
  float: right;
  margin-top: 30px;
}

.animated-heading span {
  display: inline-block;
  color: white;
  transition: color 0.3s ease;
}

h5.dot {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}

h5.dot:before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 40px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  filter: drop-shadow(0px 0px 5px var(--primary-color));
}

.main-bg {
  background: url(../images/main-bg.png);
  background-size: 100% 100%;
  background-color: var(--secondary-color);
  position: relative;
}

.service-section {
  /* background: url(../images/service-bg.webp); */
  padding-top: 150px;
  padding-bottom: 150px;
  padding-inline: 50px;
  background-position: center center;
  position: relative;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-block: 60px;
}

.service-list li {
  cursor: pointer;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  font-size: 35px;
  line-height: 45px;
  font-family: "itc-demi";
  border-bottom: 1px solid #ffffff2b;
  margin-block: 18px;
  position: relative;
}

.service-list li small {
  font-size: 17px;
  font-weight: 400;
  position: absolute;
  top: 5px;
  margin-left: 6px;
  font-family: "itc-med";
}

.service-list li.active {
  color: white;
  font-weight: bold;
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.sub-service-list {
  display: flex;
  gap: 20px;
  margin-top: 80px;
  position: absolute;
  flex-direction: column;
  margin-left: 60px;
  z-index: 9;
}

.sub-service-list button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
  font-size: 32px;
  line-height: 42px;
  font-family: "itc-demi";
}

.sub-service-list button.active {
  color: white;
  font-weight: bold;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
}

.service-section .row {
  background: url(../images/services-inner-bg.png);
  align-items: center;
  background-repeat: no-repeat;
  padding: 50px 40px;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -220px;
}

.service-section .content h1 {
  text-transform: uppercase;
  font-size: 400px;
  text-align: center;
  line-height: 0px;
  font-family: "bebas";
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff2e;
  font-weight: 100;
}

.service-section .col-md-5.left-column {
  padding-inline: 40px 80px;
}

.cta-section {
  position: relative;
  /* background: url(../images/cta-bg.webp); */
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-section .marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 80px 100px;
  position: absolute;
  top: 0;
}

.cta-section .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.cta-section .marquee {
  display: flex;
  font-size: 40px;
  font-weight: bold;
  gap: 50px;
  min-width: 200%;
}
.cta-section .marquee span {
  display: inline-block;
  padding: 0 20px;
}

.cta-section .marquee {
  font-size: 120px;
  line-height: 100px;
  font-family: "itc-bd";
  font-weight: 800;
}

.cta-section .marquee span {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff59;
  transition: 0.6s;
}

.cta-section .marquee span:hover {
  color: var(--light-color);
  transition: 0.6s;
}

.cta-section .astronut {
  position: relative;
  z-index: 99;
  pointer-events: none;
  right: -140px;
  width: 67%;
  top: 30px;
  animation: glowEffect 6s infinite alternate;
}

@keyframes glowEffect {
  0%,
  100% {
    filter: drop-shadow(2px 4px 50px var(--primary-color));
  }
  50% {
    filter: drop-shadow(2px 4px 120px var(--primary-color));
  }
}

.cta-section .talk-btn {
  left: 100px;
  position: relative;
  z-index: 99;
  width: 40%;
  top: 50px;
}

.cta-section .col-md-6 {
  position: relative;
  z-index: 9;
  pointer-events: none;
}

.cta-section .col-left:before {
  content: "";
  position: absolute;
  background: url(../images/right-shadow.png);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  bottom: 0;
  margin: auto;
  display: table;
  animation: scale 10s linear infinite;
  background-size: 100% 100%;
  transform-origin: left;
}

@keyframes scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
}

.portfolio-section {
  background: url(../images/potfolio-bg.png);
  padding-top: 200px;
  background-position: top center;
  margin-top: -120px;
  background-color: var(--secondary-color);
  position: relative;
}

.portfolio-section .swiper-container {
  width: 100%;
  overflow: visible;
  padding: 20px 0;
}

.portfolio-section .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

.portfolio-section .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-section a.btn.btn-secondary {
  float: right;
}

.portfolio-section .nav-tabs .nav-link {
  background: transparent;
  color: var(--light-color);
  border: unset;
  position: relative;
}

.portfolio-section .nav-tabs .nav-link.active:before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 40px;
  bottom: -9px;
  left: 0;
  margin: auto;
  filter: drop-shadow(0px 0px 5px var(--primary-color));
  right: 0;
}

.portfolio-section #portfolioTabs {
  border-bottom: unset;
  margin-block: 40px;
  border-top: 1px solid #ffffff42;
  padding-top: 20px;
  justify-content: space-between;
}

.portfolio-section .swiper-slide img {
  width: 100%;
}

.portfolio-section .swiper-slide {
  margin-inline: 20px;
}

.logo-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.logo-figure {
  position: relative;
  z-index: 2;
}

/* .logo-img {
  width: 75px;
  transition: transform 0.5s ease-out;
  image-rendering: pixelated;
} */

.logo-img {
  width: 500px;
  transition: transform 0.5s ease-out;
}

.review-section {
  background: var(--light-color);
  padding-top: 150px;
  padding-bottom: 150px;
}

.review-section .rotating-border-button {
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 1) 100%);
}

.review-section .rotating-border-button:before {
  background: white;
}

.review-section .content,
.review-section h2 {
  color: black;
}

.review-section a.btn.btn-secondary {
  color: black;
  float: right;
}

.review-section {
  padding: 140px 0;
  overflow: hidden;
  position: relative;
}

.review-swiper {
  overflow: visible;
  margin-top: 40px;
}

.review-card img {
  width: 100%;
  border-radius: 10px;
}

.review-section .swiper-slide {
  border-radius: 50px;
  padding: 18px;
  border: 1px solid #0000002b;
  height: 890px;
}

.review-section .swiper-slide .map-img {
  width: 150px;
  margin-block: 20px;
}

.review-section .swiper-slide h3,
.review-section .swiper-slide p {
  color: black;
}

.client-section {
  background: url(../images/client-bg.webp);
  padding-top: 180px;
  padding-bottom: 180px;
  background-position: bottom center;
  position: relative;
}

.client-section h5.dot {
  display: table;
  margin-inline: auto;
}

/* .client-section .video-container { 
  position: relative;
  width: 500px;
  height: 300px;
  background: url('../images/ps.png') no-repeat center/contain;
} */

.client-section .video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: url(../images/ps.png);
  -webkit-mask-image: url(../images/ps.png);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  margin: auto;
  right: 0;
  left: 0;
  /* z-index: -9; */
}

.client-section .content {
  position: relative;
}

.client-section .logos-grid {
  margin-top: 20px;
}

.client-section .logos-grid .row {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.client-section .logos-grid .row:last-child {
  border-bottom: none;
}

.client-section .logos-grid .col-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
}

.client-section .logos-grid .row:last-child .col-3 {
  border-bottom: none;
}

.client-section .logos-grid .col-3:nth-child(4),
.client-section .logos-grid .col-3:nth-child(8),
.client-section .logos-grid .col-3:nth-child(12) {
  border-right: none;
}

.client-section .logos-grid img {
  width: 130px;
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.client-section .logos-grid .globe img {
  filter: unset;
}

.client-section .col-md-12 {
  position: relative;
}

.client-section .rocket {
  position: absolute;
  bottom: 0;
  right: 0;
}

.client-section .rocket {
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 400px;
}

.get-section {
  position: relative;
  background: url(../images/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.get-section .marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 80px 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
}

.get-section .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.get-section .marquee {
  display: flex;
  font-size: 40px;
  font-weight: bold;
  gap: 50px;
  min-width: 200%;
}
.get-section .marquee span {
  display: inline-block;
  padding: 0 20px;
}

.get-section .marquee {
  font-size: 120px;
  line-height: 100px;
  font-family: "itc-bd";
  font-weight: 800;
}

.get-section .marquee span {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff59;
  transition: 0.6s;
}

.get-section .marquee span:hover {
  color: var(--light-color);
  transition: 0.6s;
}

.get-section .get-img {
  position: relative;
  z-index: 99;
  right: 0px;
  width: 100%;
  top: 70px;
}

.get-section .col-right {
  position: relative;
  z-index: 9;
  pointer-events: none;
}

.logos-grid .col-3 {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.logos-grid img {
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}

.logo-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.logo-text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
  font-size: 14px;
  color: white;
  padding-inline: 20px;
}

.logos-grid .col-3:hover img {
  transform: translateY(-15px) scale(0.6);
}

.logos-grid .col-3:hover .logo-text {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}

.get-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.get-form .form-group {
  display: flex;
  gap: 10px;
}

.get-form input,
.get-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid white;
  background: #121e33;
  color: #fff;
  border-radius: 30px;
  padding-inline: 20px;
  resize: unset;
  margin-bottom: 10px;
}

.get-form textarea {
    border-radius: 15px;
}

.get-form .submit-btn {
  padding: 10px;
  background: gold;
  color: black;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.get-form .submit-btn:hover {
  background: darkgoldenrod;
}

.get-section .col-md-6.col-left {
  position: relative;
  z-index: 9;
  padding-left: 100px;
}

.get-section .col-md-6.col-left .col-inner {
  background: #000f24c9;
  border-radius: 40px;
  padding: 50px 60px;
  border: 2px solid;
}

.get-section a.btn.btn-secondary {
  margin: auto;
  margin-left: unset;
}

.get-section .col-md-6.col-left .content {
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 12px;
  border: none;
  background: #00000059;
  color: white;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  border-radius: 40px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-inline: 20px;
  border: 1px solid #ffffff66;
  font-family: "itc-bk";
  margin-bottom: 5px;
}

.faq-section .icon {
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  position: absolute;
  right: 15px;
  top: 8px;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  border-radius: 10px;
  color: white;
  padding-inline: 17px;
  background: #00000059;
  border: 1px solid var(--primary-color);
}

.faq-answer p {
  margin-top: 5px;
}

.faq-section {
  position: relative;
  background: url(../images/faq-bg.webp);
  background-repeat: no-repeat;
  padding-block: 200px;
  background-size: 100% 100%;
}

.faq-section a.btn.btn-secondary {
  float: right;
  margin-bottom: 25px;
}

/*------Footer Css Start-----------*/

.footer-logo img {
    width: 70px;
    margin: auto;
    display: table;
}

.footer-logo {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 99;
    margin: auto;
    display: table;
    margin-top: -58px;
    width: 100%;
}

footer {
    background-image: url(../images/footer-bg.jpg);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    border-bottom: 5px solid var(--primary-color);
    overflow: clip;
    padding-top: 150px;
    background-size: 100% 100%;
}

footer:before {
  content: "";
  position: absolute;
  border-bottom: 4px solid var(--primary-color);
  width: 43%;
  top: 0;
  left: 0;
}

footer:after {
  content: "";
  position: absolute;
  border-bottom: 4px solid var(--primary-color);
  width: 43%;
  top: 0;
  right: 0;
}

footer .footer-content {
  position: relative;
  z-index: 2;
}

footer .astronaut-img {
  max-height: 350px;
  position: relative;
}

footer h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "itc-demi";
}

footer .footer-links {
  list-style: none;
  padding-left: 0;
}

footer .footer-links li {
  margin-bottom: 10px;
}

footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* footer .address {
  margin-top: 30px;
} */

footer .payment-methods {
  text-align: right;
  margin-top: 20px;
}

footer .payment-methods img {
  height: 30px;
  margin-left: 10px;
}

footer .copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .earth-img {
  position: absolute;
  right: -400px;
  bottom: -200px;
  max-width: 600px;
  opacity: 0.9;
  z-index: 1;
  animation: rotate 50s linear infinite;
}

footer .astronaut-img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  transform: scale(1.5);
  transform-origin: bottom;
  filter: drop-shadow(3px -2px 0px var(--primary-color));
}

.copyright .col-12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p,
.copyright .payment-methods {
  margin: unset;
}

footer .row.menu-col,
footer .copyright {
  padding-left: 200px;
}

/*------Footer Css End-----------*/

/*------Inner Pages Css Start-----------*/

header .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--primary-color);
}

header ul.dropdown-menu.show {
  background: #000f24c9;
  border: 2px solid var(--primary-color);
}

header ul.dropdown-menu.show .dropdown-item:hover {
  background: var(--primary-color);
  color: black;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent;
}

header ul.dropdown-menu.show .dropdown-item {
  color: white;
}

.service-hero-banner {
  padding-block: 200px;
}
.service-hero-banner ul li {
  list-style: circle;
  margin-left: 20px;
}
.service-hero-banner ul {
  column-count: 2;
  margin-bottom: 25px;
}
.service-hero-banner .col-md-6 .col-inner {
  background: #000f24c9;
  border-radius: 40px;
  padding: 50px 60px;
  border: 2px solid;
}

.dev-logo-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dev-logo-swiper .swiper-slide img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.dev-logo-swiper .swiper-slide img:hover {
  opacity: 1;
}

.development-services {
  color: white;
  padding-block: 80px !important;
}

.development-services .card-ser {
  background: #000f24c9;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: 2px solid var(--primary-color);
}

.development-services .card-ser:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.development-services .card-ser i {
  font-size: 3rem;
  color: var(--primary-color);
}

.development-services .icon {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.development-services .col-12.col-lg-3 {
  margin-bottom: 22px;
}

.portfolio_box_img {
  display: inline-block;
  height: 750px;
  overflow: hidden;
  margin-bottom: -6px;
  margin: 10px;
}

.portfolio-simple-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portfolio-simple-img {
  padding: 10px;
}

.portfolio_box_img figure img {
  width: 100%;
}
.portfolio_box_img:hover a:after {
  opacity: 1;
  position: absolute;
  content: "\f067";
  font-family: FontAwesome;
  left: 50%;
  top: 48%;
  width: 48px;
  margin-left: -24px;
  margin-top: -24px;
  color: #fff;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-shadow: 0 0 10px rgb(0 0 0 / 25%);
  z-index: 999;
}

.portfolio_box_img:hover a:before {
  content: "";
  background: rgb(0 0 0 / 25%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 99;
}

.portfolio_box_img a:hover img {
  top: -100%;
}

.portfolio_box_img a figure img {
  width: 100%;
  position: relative;
  top: 0;
  transition: 2s all;
}

.portfolio_box_img a {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  display: inline-block;
}

.portfolio_box_img a figure {
  margin-bottom: 0;
  height: 500px;
}

.logo_port .portfolio_box_img a:hover img {
  top: 0;
}

.logo_port .portfolio_box_img {
  height: auto;
  /* margin-bottom: -10px; */
  width: 100%;
}

.logo_port .portfolio_box_img a figure {
  height: auto;
}

.logo_port .portfolio_box_img {
  border: 3px solid #fff;
}

.inner_port {
  background: var(--white);
}

.logo_port .portfolio_box_img a figure img {
  width: 100%;
}

.portfolio_box_img {
  height: 580px;
}

.portfolio .nav-link {
  font-size: 20px;
  color: var(--dark-blue);
  background-color: var(--white) !important;
  margin: 0 10px;
  padding: 8px 25px;
  border-radius: 30px !important;
  font-family: "itc-bk";
  font-weight: 400 !important;
}

section.portfolio {
  padding-top: 100px;
  padding-bottom: 120px;
  background: url(../images/potfolio-bg.png);
}

.portfolio .nav-link.active {
  border-color: var(--primary-color);
  color: white;
}

.main-bg2 {
  background: url(../images/about-bg.webp);
  background-size: 100% 100%;
  background-color: var(--secondary-color);
  position: relative;
}

.panel {
  position: relative;
  z-index: 9;
  padding-top: 80px !important;
  background: url(../images/potfolio-bg.png);
}

.panel__options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  visibility: hidden;
  opacity: 0
}

.panel__options span {
  font-size: 4em;
  font-weight: 700;
  line-height: 1.03125em
}

.panel__options span:first-child {
  color: rgba(var(--white-color),1)
}

.panel__options span:first-child:hover {
  color: #9a93f4
}

.panel__options span:nth-child(2) {
  color: #4c4c4c
}

.panel__options span:nth-child(2):hover {
  color: #bce5f6
}

.panel__options span:nth-child(3) {
  color: #262626
}

.panel__options span:nth-child(3):hover {
  color: #fcd1a6
}

.panel__options span:last-child:hover {
  color: #b5e5b8
}

.panel__stack {
  position: relative;
  align-items: center;
  justify-items: center;
  overflow-y: visible;
  padding: 0 2em
}

@media (min-width: 576px) {
  .panel__stack {
      padding:0 3em
  }
}

@media (min-width: 1200px) {
  .panel__stack {
      padding:0
  }
}

.panel__stack .panel__card {
  border-radius: 2.5em;
  padding: 2.5em 1.125em 3.125em;
  will-change: transform;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 2em 0 0
}

@media (min-width: 1200px) {
  .panel__stack .panel__card {
      padding:4.6875em 5.3125em;
      position: absolute;
      margin: 0;
      color: white !important;
  }
  .panel__spacer {
    pointer-events: none;
    visibility: hidden;
  }
}

.panel h2 {
  text-align: center;
}

.panel__stack .panel__card .custom-row {
  width: 100%
}

.panel__stack .panel__card--one {
  background-color: #1a1a1a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--one {
      top:calc(var(--spacer) * 1);
      z-index: 1
  }
}

.panel__stack .panel__card--one a {
  color: currentColor
}

.panel__stack .panel__card--two {
  background-color: #2a2a2a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--two {
      top:calc(var(--spacer) * 2);
      z-index: 2
  }
}

.panel__stack .panel__card--two a {
  color: currentColor
}

.panel__stack .panel__card--three {
  background-color: #3a3a3a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--three {
      top:calc(var(--spacer) * 3);
      z-index: 3
  }
}

.panel__stack .panel__card--three a {
  color: currentColor
}

.panel__stack .panel__card--four {
  background-color: #4a4a4a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--four {
      top:calc(var(--spacer) * 4);
      z-index: 4
  }
}

.panel__stack .panel__card--four a {
  color: currentColor
}

.panel__stack .panel__card--five {
  background-color: #5a5a5a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--five {
      top:calc(var(--spacer) * 5);
      z-index: 5
  }
}

.panel__stack .panel__card--five a {
  color: currentColor
}

.panel__stack .panel__card--six {
  background-color: #6a6a6a;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--six {
      top:calc(var(--spacer) * 6);
      z-index: 6
  }
}

.panel__stack .panel__card--six a {
  color: currentColor
}

.panel__stack .panel__card--seven {
  background-color: #909090;
  color: rgba(var(--white-color),1)
}

@media (min-width: 1200px) {
  .panel__stack .panel__card--seven {
      top:calc(var(--spacer) * 7);
      z-index: 7
  }
}

.panel__stack .panel__card--seven a {
  color: currentColor
}

.panel__stack .panel__left-content__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%
}

.panel__stack .panel__left-content .generic-panel__content p {
  line-height: 1.45em
}

.panel__stack .panel__center-image .img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.078125em
}

@media (min-width: 1200px) {
  .panel__stack .panel__center-image .img-wrapper {
      max-height:34.5em;
      overflow: hidden
  }
}

.panel__stack .panel__right-content__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content__wrapper {
      padding-left:2.8125em;
      justify-content: flex-end
  }
}

.panel__stack .panel__right-content .case_studies_count {
  display: flex;
  flex-wrap: wrap;
  padding: 2em 0
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content .case_studies_count {
      padding:0
  }
}

.panel__stack .panel__right-content .counter-box {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  margin: 0 auto
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content .counter-box {
      margin-bottom:2.5em;
      width: 100%
  }
}

.panel__stack .panel__right-content .counter-box .count-num {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
  font-size: 3.75em;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: -.04em
}

.panel__stack .panel__right-content .counter-box .count-txt {
  margin-top: .4em;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 113.748%;
  letter-spacing: -.04em
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content .generic-panel {
      margin-top:auto
  }
}

.panel__stack .panel__right-content .feature-list {
  display: flex;
  flex-wrap: wrap
}

.panel__stack .panel__right-content .feature-list ul {
  font-size: 1em;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0
}

.panel__stack .panel__right-content .feature-list ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1em;
  margin-bottom: 0;
  margin-right: 1em;
  width: calc(33.33% - .66667em);
  background-color: rgba(var(--black-color),1);
  border-radius: 1em
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content .feature-list ul li {
      margin-right:1.375em;
      width: 10.3125em;
      height: 6.875em;
      background: url(../svg/background/case-studies.svg) no-repeat;
      background-position: left top;
      background-size: contain
  }
}

@media (max-width: 1199.98px) {
  .panel__stack .panel__right-content .feature-list ul li {
      height:7.35715em
  }
}

@media (max-width: 767.98px) {
  .panel__stack .panel__right-content .feature-list ul li {
      height:7.35715em
  }
}

@media (max-width: 575.98px) {
  .panel__stack .panel__right-content .feature-list ul li {
      height:5.35715em
  }
}

.panel__stack .panel__right-content .feature-list ul li:last-child {
  margin-right: 0
}

.panel__stack .panel__right-content .feature-list ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%
}

.panel__stack .panel__right-content .feature-list .img-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: .75em
}

@media (min-width: 1200px) {
  .panel__stack .panel__right-content .feature-list .img-wrapper {
      padding:1.5625em
  }
}

@media (min-width: 1200px) {
  .col_xl_3 {
      flex: 0 0 25%;
      width: 25%;
      padding: 0 .625em;
  }
  .col_xl_12 {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 .625em;
}
.generic-panel__content.large-txt p {
  font-size: 1rem;
}
}
.panel__right-content__wrapper .generic-panel a {
  font-size: 2rem;
  line-height: 4rem;
}
.custom-row {
  display: flex;
  margin: 0 -.625em;
}
.our-work {
  padding-top: 220px !important;
}
.process-wrap {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border: 1px solid #80808066;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  transition: 0.4s;
}
.process-wrap .title {
  font-size: 50px;
  font-weight: 900;
  background-color: var(--primary-color);
  color: white;
  padding: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  transition: 0.4s;
}
.process-wrap div span {
  font-size: 24px;
  font-weight: 700;
}

.process-wrap:hover {
  background-color: var(--primary-color);
  color: black;
}

.process-wrap:hover .title {
  background-color: white;
  color: black;
}
.ui-process {
  padding-block: 80px;
  color: white;
  background: url(../images/about-bg.webp);
}
.ui-form{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.ui-form form input,
.ui-form form textarea {
  border-bottom: 1px solid black;
  color: black !important;
}
.ui-form input::placeholder,
.ui-form textarea::placeholder {
  color:black
}
.ui-process {
  padding-block: 80px;
  color: white;
}
/* Main form styling */
.service-hero-banner {
    background-size: cover;
}
.lead-form {
  padding-top: 50px;
}
.service-hero-banner .col-md-12 .col-inner {
    background: #000f24c9;
    border-radius: 40px;
    padding: 50px 60px;
    border: 2px solid;
}
.lead-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-form button[type="submit"]:hover svg {
    filter: brightness(0);
}

.lead-form ul li {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lead-form ul li > div {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

/* Label styling */
.lead-form label {
    color: white;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Input, Select, and Textarea */
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form select,
.lead-form textarea {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px;
    padding: 12px 20px;
    color: white;
    width: 100%;
    font-size: 14px;
    outline: none;
    appearance: none;
}

/* Select arrow styling (optional, for appearance consistency) */
.lead-form select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* Checkbox styling */
.lead-form input[type="checkbox"] {
    accent-color: white;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Textarea height */
.lead-form textarea {
    min-height: 140px;
    border-radius: 20px;
    resize: vertical;
}

/* Submit button */
.lead-form button[type="submit"] {
    background-color: black;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease all;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Button hover effect */
.lead-form button[type="submit"]:hover {
    background-color: white;
    color: black;
}
.lead-form select option {
    color: black !important;
}
.lead-form ul {
    column-count: 1;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .lead-form ul li {
        flex-direction: column;
    }

    .lead-form ul li > div {
        flex: 1 1 100%;
    }
}
/*------Inner Pages Css End-----------*/

/*------Thankyou Page Css Start-----------*/
.thankyou-banner-bg {
    padding-block: 200px;
}
.social-share a {
    font-size: 35px;
    line-height: 45px;
    margin-right: 5px;
}
.next-step {
    border: 1px solid #ffffff91;
    border-radius: 30px;
    padding: 40px;
}
.next-step h4 {
    font-size: 30px;
    padding-bottom: 20px;
}
.next-step ul li {
    font-size: 18px;
    line-height: 44px;
}
.next-step ul li span {
    font-size: 18px;
    font-weight: 400;
    background-color: #ffffff3b;
    display: inline-block;
    width: 31px;
    text-align: center;
    clip-path: circle();
    margin-right : 10px;
}
.social-share svg {
    font-size: 30px;
    margin: 3px;
    /* padding: 10px; */
}
.social-share a{
    color : white;
}
.social-share a:hover{
    color : var(--primary-color);
}
.social-share {
    padding: 20px 10px;
}
footer .social-share, .policy-content .social-share {
    padding: unset;
}
.get-form .rotating-border-button:before {
    display: none;
}
.get-form .btn {
    background: black;
    padding-block: 20px;
}
/*------Thankyou Page Css End-----------*/

/*------Responsive Css start-----------*/
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 1600px) {}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 1440px) {}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 1366px) {}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 1280px) {}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
    .container {
    max-width: 1024px;  
}
  h1 {
    font-size: 75px;
    line-height: 85px;
}
h5 {
    font-size: 20px;
    line-height: 30px;
}
h4 {
    font-size: 25px;
    line-height: 35px;
}
h2 {
    font-size: 35px;
    line-height: 45px;
}
.service-list li {
    font-size: 20px;
    line-height: 30px;
}
a.btn.btn-secondary {
    font-size: 12px;
    line-height: 22px;
}
.sub-service-list button {
    font-size: 20px;
    line-height: 30px;
}
#marqueeText1 span {
    font-size: 150px;
    line-height: 160px;
}
#marqueeText2 span {
    font-size: 220px;
    line-height: 230px;
}
.cta-section .marquee {
    font-size: 70px;
    line-height: 80px;
    font-family: "itc-bd";
    font-weight: 800;
}
.cta-section .marquee-container {
    gap: 5px;
    padding-block: 40px 30px;
}
h3 {
    font-size: 25px;
    line-height: 35px;
}
p, a {
    font-size: 12px;
    line-height: 22px;
}
.review-section .swiper-slide {
    height: 670px;
    border-radius: 20px;
}
.review-section .swiper-slide .map-img {
    width: 100px;
    margin-block: 15px;
}
.service-hero-banner .col-md-6 .col-inner {
    padding: 25px 25px;
}
.client-section .rocket {
    width: 200px;
}
.get-section .col-md-6.col-left .col-inner {
    padding: 25px 25px;
}
footer .astronaut-img {
    width: 180px;
}
footer .earth-img {
    right: -400px;
    bottom: -200px;
    max-width: 540px;
}
footer h4 {
    font-size: 1.2rem;
}
.faq-question {
    font-size: 12px;
    line-height: 22px;
}
.custom-header ul.navbar-nav {
    padding-block: 20px;
}
.custom-header ul.navbar-nav li a {
    padding-inline: 0px !important;
}
.panel__stack img {
    width: 100%;
    height: 400px;
}
.panel__card .col_12.col_lg_5 {
    padding-left: 20px;
}
.panel__stack .panel__right-content .counter-box .count-num {
    font-size: 55px;
    line-height: 65px;
}
.panel__stack .panel__right-content .counter-box .count-txt {
    font-size: 15px;
    line-height: 25px;
}
.panel__stack .panel__right-content .case_studies_count {
    padding-top: unset;
}
.panel__card .col_12.col_lg_3 {
    width: 50%;
}
.panel__right-content__wrapper .generic-panel a {
    font-size: 1.5rem;
    line-height: 3rem;
}
.panel {
    padding-bottom: 60px;
}
.get-section .marquee {
  font-size: 70px;
  line-height: 70px;
}
.panel__stack .panel__card {
    border-radius: 20px;
    color: white;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 840px) {
  .container {
    max-width: 760px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
}
.custom-header .container {
    margin: unset;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding-block: 5px;
}
.custom-header button.navbar-toggler {
    order: 3;
    filter: brightness(0)invert(1);
}
  .navbar-brand img {
    width: 35px;
}
a.btn {
    font-size: 12px;
    line-height: 22px;
    padding: 10px 15px;
}
.hero-section {
    padding-top: 120px;
}
.hero-section .ring-btn {
    bottom: 38%;
    left: 20px;
}
.hero-section .content .buttons:before {
    width: 150px;
}
a.btn.btn-secondary {
    padding: 10px 13px;
}
.hero-section a.btn {
    margin-bottom: 8px;
}
.service-hero-banner ul li {
    font-size: 12px;
    line-height: 22px;
}
.col-md-5 {
    width: 100%;
}
.col-md-7 {
    width: 100%;
}
.service-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 30px;
}
.service-section .content h1 {
    font-size: 150px;
}
.service-section .col-md-5 {
    margin-bottom: 50px;
}
.service-list {
    margin-block: 30px;
}
.cta-section .marquee {
    font-size: 50px;
    line-height: 60px;
}
.portfolio-section #portfolioTabs {
    justify-content: center;
}
.client-section .rocket {
    display: none;
}
.logo-text {
    transition: unset;
    opacity: 1;
    position: relative;
}
.client-section .logos-grid .col-3 {
    width: 50%;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.client-section .logos-grid img {
    width: 100px;
    height: 130px;
}
.client-section {
    padding-block: 80px;
    background-size: cover;
}
.logos-grid .col-3 {
    overflow: visible;
}
.col-md-6 {
    width: 100%;
}
.get-section .col-md-6.col-left {
    padding-left: 0;
    padding-inline: 50px;
}
.get-section {
    background-size: cover;
}
.get-section .get-img {
    display: none;
}
figure.ftr-img {
    display: none;
}
footer .row.menu-col, footer .copyright {
    padding-left: 0;
}
.client-section .logos-grid .col-3:nth-child(4), .client-section .logos-grid .col-3:nth-child(8), .client-section .logos-grid .col-3:nth-child(12) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.client-section .logos-grid .row:last-child .col-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.get-form .btn {
    font-size: 15px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 525px) {
.container {
    max-width: 525px;
    padding-inline: 30px;
}
.hero-section .col-lft {
    margin-top: 0;
}
.hero-section {
    background-size: cover;
    background-position: left top;
}
h1 {
    font-size: 55px;
    line-height: 65px;
}
.hero-section {
    padding-top: 150px;
}
.hero-section h4 {
    padding-left: 20px;
    margin-bottom: 20px;
}
.hero-section h1 {
    margin-bottom: 15px;
}
.about-section {
    padding-block: 60px;
}
.service-section .col-md-5.left-column {
    padding-inline: 20px 20px;
}
.service-section .row {
    padding: 40px 20px;
    margin-top: 0;
}
.sub-service-list {
    margin-top: 30px;
    margin-left: 25px;
}
.main-bg {
    background-size: cover;
}
.portfolio-section #portfolioTabs li {
    margin-bottom: 20px;
}
.review-section {
    padding: 80px 0;
}
.review-section .swiper-slide {
    height: 670px;
    border-radius: 15px;
}
.hero-section {
    padding-bottom: 90px;
}
.get-form input, .get-form textarea {
    font-size: 12px;
}
.get-section {
    padding-top: 60px;
}
    h2 {
        font-size: 28px;
        line-height: 38px;
    }
        h5 {
        font-size: 15px;
        line-height: 25px;
    }
    .hero-section.service-hero-banner .col-md-6.col-left.rgt-col {
    padding-top: 40px;
}
.dev-logo-swiper .swiper-slide img {
    max-height: 25px;
} 
section.portfolio {
    padding-top: 80px;
    padding-bottom: 80px;
}
section.portfolio .col-lg-6 {
    padding-top: 30px;
}
.process-wrap {
    flex-direction: column;
}
.service-hero-banner .col-md-12 .col-inner {
    border-radius: 20px;
    padding: 30px 20px;
}
.lead-form {
    padding-top: 30px;
}
.lead-form li {
    margin-left: unset !important;
}
.faq-section .icon {
    font-size: 16px;
    right: 15px;
    top: 11px;
}
.panel__stack .panel__card .custom-row {
    flex-direction: column;
}
.panel__card .col_12.col_lg_5 {
    padding-left: 0px;
    padding-top: 20px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 480px) {
  .container {
    max-width: 480px;
    padding-inline: 30px;
}
.logo-img {
    width: 300px;
}
h1 {
  font-size: 45px;
  line-height: 55px;
}
h4 {
  font-size: 20px;
  line-height: 30px;
}
.logo-text {
    padding: unset;
}
.faq-section {
    padding-block: 80px;
}
footer {
  background-size: cover;
}
.get-section .col-md-6.col-left {
    padding-left: 0;
    padding-inline: 30px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 430px) {
  .container {
    max-width: 430px;
    padding-inline: 30px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 420px) {
  .container {
    max-width: 400px;
    padding-inline: 30px;
}
    h1 {
        font-size: 38px;
        line-height: 48px;
    }
        h4 {
        font-size: 18px;
        line-height: 28px;
    }
    .sub-service-list {
        gap: 5px;
        margin-top: 20px;
        margin-left: 15px;
    }
    .sub-service-list button {
    font-size: 15px;
    line-height: 25px;
}
.cta-section .astronut {
    right: 0;
    margin: auto;
    display: table;
}
.cta-section .talk-btn {
    left: 0;
    top: 0;
    margin: auto;
    display: table;
}
.get-section .marquee {
    font-size: 50px;
    line-height: 60px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 390px) {
  .container {
    max-width: 390px;
}
}    
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 370px) {
  .container {
    max-width: 370px;
}
}
/*-----------------------------------------------------------------------------------------------------*/
@media (max-width: 360px) {
  .container {
    max-width: 360px;
}
}

/*------Responsive Css end-----------*/