/**************************************
                General
**************************************/
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

html::-webkit-scrollbar {
  width: 6px;
  background-color: #141414;
}

html::-webkit-scrollbar-thumb {
  background-color: #20ACCD;
  border-radius: 50rem;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body {
  font-size: 14px;
  font-family: "Helvetica";
  font-weight: 400;
  color: #000;
}

a,
a:hover,
a:focus {
  color: #20ACCD;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

main {
  overflow: clip;
}

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

iframe {
  width: 100%;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateX(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* Animations */
[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
  animation-name: slideInUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInLeft;
}

.slideInRight {
  animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
  animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
  animation-name: zoomIn;
}

.zoomReverseIn {
  animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
  animation-name: flipInY;
}

.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}


/**************************************
                Helper Class
**************************************/
.sec-gap {
  padding: 40px 0;
}
.about .about-content,.founder,.company,.case-studies,.story,.get-in-touch{
  span{
    color:#13131328;
    background: linear-gradient(90deg, #131313,#131313);
    background-clip: text;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    animation: scroll-text linear forwards;
    animation-timeline: view();
  }
  h2 span{
    animation-range-start: cover 20vh;
    animation-range-end: cover 30vh;
  }
  p span{
    animation-range-start: cover 22vh;
    animation-range-end: cover 50vh;
    color:#13131328;
  }
}
.founder h4 span{
  animation-range-start: cover 20 !important;
  animation-range-end: cover 40vh !important;
}
.founder h2 span{
  animation-range-start: cover 34vh !important;
  animation-range-end: cover 50vh !important;
}
.industries,.boost{
  span{
    color:#ffffff28;
    background: linear-gradient(90deg, #ffffff,#ffffff);
    background-clip: text;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    animation: scroll-text linear forwards;
    animation-timeline: view();
  }
  h2 span{
    animation-range-start: cover 20vh;
    animation-range-end: cover 30vh;
  }
  p span{
    animation-range-start: cover 22vh;
    animation-range-end: cover 50vh;
  }
}
@keyframes scroll-text{
  to{
      background-size: 100% 100%;
  }
}
.section-title{
  color: #000;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 120%;
margin-bottom: 10px;
  }

  p{
    color: #3C3C3C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }

.primary-btn {
  padding: 10px 15px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0);
  border: 1px solid #ffffff;
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
  transition: all 0.5s;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  overflow: clip;
  z-index: 1;
}

.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  background: #85E8FF;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}

.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}

.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background-color: #20ACCD;
}

.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}

.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}

.primary-btn:hover {
  color: #fff;
  border-color: #20ACCD;
}

.primary-btn:focus {
  color: #fff;
}

.secondary-btn {
  border: 1px solid #fff;
  padding: 14px 25px;
  background-color: #ffffff00;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255 255 255);
  font-weight: 400;
  border-radius: 50rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  display: inline-block;
  text-transform: capitalize;
  mix-blend-mode: difference;
  position: relative;
  box-sizing: border-box;
  overflow: clip;
  margin-right: 7px;
}

.secondary-btn::before,
.secondary-btn::after {
  background-color: #f29537;
}

.secondary-btn:hover {
  color: #fff;
  border-color: #f29537;
}

.container-fluid {
  padding-inline: 35px;
}

.form-card {
  box-shadow: 0px 80.6px 105.701px rgba(51, 51, 51, 0.1);
  background-color: rgb(63, 44, 102);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px 40px;
}

.text-center {
  text-align: center;
  position: relative;
}

.form-btn {
  background-color: rgb(252, 185, 89);
  color: #fff;
  border: 0;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
}

.form-btn:hover {
  color: #fff;
  background-color: rgb(9, 9, 9);
}

label {
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  display: block;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #A3A9BF;
  background-color: rgb(255 255 255 / 0%);
  padding: 14px 20px;
  font-size: 18px;
  color: rgb(255 255 255);
  outline: none;
}

.form-control:focus {
  border-color: #20ACCD;
}

.form-card h4 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
/**************************************
      Menu
**************************************/
header {
  position: fixed;
  z-index: 999;
  right: 0;
  left: 0;
}

.flex-box {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

header.sticky {
  background: rgb(19, 19, 19);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }

  to {
      transform: translateY(0);
  }
}


nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  z-index: 999;
  transition: ease-in-out .4s;

}
.logo{
  width: 168px;
  text-align: center;
  height: 100%;
  padding-block: 6px;
}
nav ul li{
  display: inline-block;
  padding: 10px 22px;
}
nav ul li a{
color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 31px;
position: relative;
}
nav ul li.active a,nav ul li a:hover{
  color: #20ACCD;
}

#menu ul{
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.mobile-menu{
  display: none;
}
.hb {
  cursor: pointer;
  stroke: #eee;
  stroke-width: 0.6;
  fill: none;
  stroke-linecap: round;
  width: 100px;
  height: 100px;
  transition: all 0.2s ease;
}

.hb .line {
  transition: all 0.2s ease;
}

.hb.active .line-1 {
  transform: rotate(45deg) translate(2px, -3px);
}

.hb.active .line-2 {
  opacity: 0;
}

.hb.active .line-3 {
  transform: rotate(-45deg) translate(-5px, 0px);
}
@media (max-width: 991.9px) {
  #menu ul{
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      background: rgb(19, 19, 19);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: all 1s;
      visibility: hidden;
  }
  #menu ul.show{
      opacity: 1;
      z-index: 8;
      visibility: visible;
  }
  .mobile-menu {
      display: block;
      position: absolute;
      right: 15px;
      z-index: 9;
  }
  .btn {
      position: absolute;
      right: 120px;
  }
  nav ul li a {
      font-size: 45px;
      line-height: 65px;
  }
  nav ul li.active a::after {
      left: 50%;
      transform: translate(-50%);
      bottom: -4px;
      width: 50%;
  }
  nav ul li a {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 4px;
}

.mobile-menu {
  display: block;
  position: absolute;
  right: 5px;
  z-index: 9;
}
.hb {
  width: 55px;
  height: 55px;
}
.btn {
  position: absolute;
  right: 63px;
}
.container-fluid {
  padding-inline: 10px;
}
}
#cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #20ACCD;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}

#cursor-border {
  --size: 40px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #20ACCD;
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 999;
}
header{
  .primary-btn{
    background: #20ACCD;
    border: 1px solid #20ACCD;
    &::before{
      background: #B027FF;
    }
    &::after{
      background: #B027FF;
    }
    &:hover{
      border: 1px solid #B027FF;
    }
  }
}
/*************************************
                Home Page
**************************************/
.hero {
  z-index: 1;
  overflow: clip;
  padding-top: 220px;
  padding-bottom: 160px;
  background: #090915;
  position: relative;
  .content-box {
    border-radius: 0px 47px 11px 39px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: inline-block;
    padding: 10px 25px;
    width: 307px;
    text-align: left;
    margin-bottom: 140px;
    display: inline-block;
    animation: upDown 11s ease-in-out infinite;
    transition: all .5s;
    &:hover{
      background-color: #20adcd4d;
    }
    p{
      color: #CBCBCB;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 122.222%;
    }
}
.img-box {
  width: 226px;
height: 134px;
  border-radius: 10px;
  transition: transform 0.5s;
  &:hover{
    transform: scale(1.2);
  }
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
  animation: upDown 9s ease-in-out infinite;
  }
}
.floting-content {
  display: flex;
  justify-content: space-between;
  margin-top: -53px;
  .left-item{
    .img-box{
      margin-left: -60px;
    }
  }
  .right-item{
    .img-box{
      margin-left: auto;
      margin-right: -60px;
    }
  }
}
}
.center-circle{
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  z-index: -1;
  .glob {
    z-index: 1;
    width: 56%;
    margin-inline: auto;
    position: relative;
    &::after{
      content: '';
      position: absolute;
      inset: 10%;
      border-radius: 50%;
      background: radial-gradient(rgb(9 9 21) 0%, rgb(9 9 21) 100%);
      z-index: -1;
    }
}
.circle{
  width: 1200px;
  height: 1200px;
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
}
.banner-content{
  text-align: center;
  h1{
    color: #FFF;
text-align: center;
font-size: 70px;
font-style: normal;
font-weight: 400;
line-height: 117.143%;
margin-bottom: 10px;
  }
  .btn-group{
    display: flex;
    gap: 10px;
    justify-content: center;
    .primary-btn:last-child{
        background: #FFF;
        color: #0F0F0F;
        &:hover{
          color: #FFF;
        }
    }
  }
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.ai-solutions{
  background: #EDF1F8;
  padding: 100px 0;
  text-align: center;
  h2{
    /* color: #0E0E0E; */
    text-align: center;
    font-size: 57px;
    font-style: normal;
    font-weight: 400;
    line-height: 82px;
    span{
      color: #13131328;
      background: linear-gradient(180deg, #20ACCD 0%, #B027FF 100%);
      background-clip: text;
      background-size: 0% 100%;
      background-repeat: no-repeat;
      animation: scroll-text linear forwards;
      animation-timeline: view();
      animation-range-start: cover 20vh;
      animation-range-end: cover 50vh;
    }
  }
  @keyframes scroll-text{
    to{
        background-size: 100% 100%;
    }
  }
}


/************************************
   AI-Driven
************************************/
.text-center {
  text-align: center;
}
.link-btn{
  color: #20ACCD;
text-align: center;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
position: relative;
padding-block: 9px;
display: inline-block;
}
.ai-driven{

  .link-btn{
    margin-left: 50%;
    margin-top: 10%;
    position: relative;
    &:before{
      content: '';
      position: absolute;
      bottom: 0;
      width: 506px;
      height: 1px;
      background-color: #20ACCD;
    }
  }
}
.ai-driven-kpi{
  position: relative;
  .bg-full{
    width: 100%;
  }
  .container{
    padding-block: 120px;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .section-title,p{
    color: #FFF;
  }
  .primary-btn{
    padding-inline: 40px;
  }
}
.black-box{
  background: #000;
  padding-inline: 0;
  padding-top: 1px;
  .section-title,p{
    color: #FFF;
  }
}
.mx-auto{
  margin-inline: auto;
}
.mb-30{
  margin-bottom: 30px;
}
.ai-work{
  background: linear-gradient(180deg, #20ACCD 0%, #85E8FF 100%);
  padding: 88px 0;
  .section-title,p{
    color: #FFF;
  }
}
.industry{
  .container{
    position: relative;
    &::after{
      content: '';
      position: absolute;
      bottom: 0;
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, rgba(210, 210, 210, 0.00) 0%, #969696 58.97%, rgba(108, 108, 108, 0.00) 100%);
    }
  }
}
.product-box {
  background: linear-gradient(180deg, #20ACCD 0%, #B027FF 100%);
  padding: 15px;
  padding-top: 50px;
  height: 100%;
  .primary-btn{
    padding-inline: 40px;
  }
  p,.title{
    color: #fff;
  }
}
.title{
  color: #1B1B1B;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: 34px;
margin-bottom: 12px;
}
.style2{
  background: linear-gradient(180deg, #F3F8FF 0%, #C6E1FF 100%);
  .title,p{
    color: #1B1B1B;
  }
  .primary-btn{
    color: #181818;
    border-color: #181818;
    &:hover{
      color: #FFF;
      border-color: #fff;
    }
  }
}
.why-choose{
  background: #000;
  padding: 100px 0;
  .section-title{
    color: #FFF;
  }
  p{
    color: #A5A5A5;
  }
}
.mb-90{
  margin-bottom: 90px;
}
.title-md{
  color: #FFF;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 24px;
margin-bottom: 15px;
}
.icon-box{
  img{
    margin-bottom: 10px;
  }
  
}
.content-box{
  .qut{
    margin-bottom: 30px;
  }
  p{
    color: #3C3C3C;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .author{
    p{
      color: #525253;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    }
  }
}
.testislider{
  .slick-dots {
    text-align: left;
    li {
      width: 10px;
      height: 10px;
      background: #D9D9D9;
      border-radius: 50%;
      button {
        display: none;
      }
      &.slick-active {
        background: #20ACCD;
      }
    }
  }
}
.news{
  padding-left: 16%;
  padding-top: 20px;
  padding-bottom: 70px;
  .section-title{
    margin-top: 40px;
  }
  .col-lg-9{
    background: #20ACCD;
    .col-lg-7{
      background-image: url(../img/news-bg.webp);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      padding: 40px 70px;
      h4{
        color: #FFF;
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 116.667%;
      margin-bottom: 22px;
      }
      a{
        color: #FFF;
        font-weight: 400;
        font-size: 18px;
        line-height: 116.667%;
        display: inline-block;
      }
    }
    .col-lg-5{
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  .news-list{
   border-bottom: 1px solid rgba(255, 255, 255, 0.30);
   padding-bottom: 50px;
   margin-bottom: 50px; 
   &:last-child{
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
   }
  }
}
.connect-with-us{
  background: url(../img/contact-img.webp) #F1FAFC;
  padding: 80px 0;
  background-repeat: no-repeat;
  text-align: right;
}
/* Popup */
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.753);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.popup.show {
  opacity: 1;
  transform: translateY(0px);
  z-index: 999999;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
  width: 70%;
  padding: 0px;
  border-radius: 23px;
  background: #000000;
  color: black;
  box-shadow: 0 0px 14px 0px #ffffffb5;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: clip;
  z-index: 99999;
  .primary-btn{
    width: 100%;
    &:hover{
      background: #F29537;
      border: 1px solid #F29537;
    }
  }
  .form-control{
    border-radius: 6px;
border: 1px solid #4E4760;
&:focus{
  border: 1px solid #F29537;
}
  }
}
.small-line{
  width: 81px;
  height: 3px;
  background: #F29537;
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 10px;
}
.popup .popup__content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50% 10px 50% 50%;
  flex-direction: column;
  gap: 5px;
  background-color: rgb(32, 172, 205);
  transition: all .5s;
  z-index: 9;
}

.popup .popup__content .close:hover {
  background-color: #ffffff;
}

.popup .popup__content .close:hover span {
  background-color: #15222B;
}

.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}

.left {
  padding: 16px;
  .img-box {
    border-radius: 23px;
    background: #ffffff0f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: clip;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.popup {
  .title {
    color: #FFF;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
  }
}

.right {
  padding: 30px;
  padding-left: 10px;
  text-align: left;
  ::placeholder{
    color: #fff;
  }
  select option{
    color: #000;
  }
}

img {
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

/************************************
    Footer
************************************/
footer {
  position: relative;
  padding-top: 40px;
  background-color: #ffffff;
  p{
    color: #171717;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    width: 80%;
  }
  a:hover{
    color: #20ACCD;
  }
h4{
color: #908E8E;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 133.333%;
}
a{
  color: #1D1D1D;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 45px;
}
}
.footer-logo{
  margin-bottom: 15px;
  display: block;
}
.social{
  display: flex;
  gap: 10px;
  a{
    width: 41px;
    height: 38px;
    border-radius: 4px;
    background: #2E2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
  &:hover{
    background: #20ACCD;
  }
}
}
.copy-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 30px;
}
textarea{
  font-family: "Helvetica";
}
/*******************************
  Responsive
********************************/
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
       screen and (min-resolution: 120dpi) {
        
}


@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {

}

@media (max-width: 1440px),
(max-width: 1366px) {

nav ul li a {
  font-size: 16px;
}
.primary-btn {
  font-size: 16px;
}
.banner-content {
  h1 {
      font-size: 60px;
  }
}
.floting-content {
  margin-top: -21px;
}
.center-circle {
  .circle {
      width: 1100px;
      height: 1100px;
      position: absolute;
      bottom: -48px;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
  }
  .glob {
    z-index: 1;
    width: 75%;
    margin-inline: auto;
    position: relative;
}
}
.ai-solutions {
  h2 {
      font-size: 50px;
      line-height: 64px;
  }
}
.section-title {
  font-size: 34px;
}
.ai-driven {
  .link-btn {
      margin-left: 50%;
      margin-top: 3%;
      position: relative;
  }
}
p {
  font-size: 16px;
  line-height: 150%;
}
.content-box {
  p {
      font-size: 36px;
  }
}
.news {
  .news-list {
    padding-bottom: 30px;
    margin-bottom: 30px;
}
  & .col-lg-9 {
      & .col-lg-7 {
          h4 {
              font-size: 22px;
          }
      }
  }
}
.connect-with-us {
  padding: 40px 0;
  background-size: 51%;
}

}

@media (max-width: 1440px) {}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
  nav ul li {
    padding: 10px 16px;
  }
  nav ul li a {
    font-size: 14px;
  }
  .hero {
    .floting-content {
        margin-top: 30px;
        width: 90%;
        margin-inline: auto;
    }
  }
  .center-circle {
    .glob {
        width: 100%;
    }
  }
  .ai-driven-kpi {
    .container {
        padding-block: 120px;
        padding-inline: 40px;
    }
}
.popup .popup__content {
  width: 95%;
}
.popup {
  .title {
      font-size: 32px;
      line-height: 20px;
  }
}
}

@media (max-width: 991.98px) {
  .left {
    padding: 0;
    .img-box {
        display: none;
    }
}
.right {
  padding: 30px;
}

.get-in-touch {
  padding-bottom: 30px;
}
.get-in-touch {
  &::after {
      bottom: 46%;
  }
  .about-text {
    left: -45%;
}
}
nav ul li a {
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 3px;

}
.hero {
  padding-top: 160px;
  padding-bottom: 160px;
}
.hero {
  .floting-content {
      margin-top: 40px;
  }
  .content-box {
    padding: 10px 10px;
    width: 250px;
    margin-bottom: 30px;
    p {
      font-size: 15px;
  }
}
}
.center-circle {
  .circle {
      width: 800px;
      height: 1000px;
  }
}
.ai-solutions {
  padding: 40px 0;
  h2 {
    font-size: 32px;
    line-height: 42px;
}
}
.black-box {
  text-align: center;
  padding-top: 45px;
  padding-inline: 24px;
}
.news {
  padding-left: 6%;
  padding-top: 20px;
  padding-bottom: 40px;
  .col-lg-9 {
    padding: 0;
}
}
footer{
  .col-lg-4 {
    text-align: center;
}
p {
  margin-inline: auto;
}
}

}

@media (max-width: 575.98px) {
  
  .popup .popup__content {
    width: 98%;
}
.popup {
  .title {
      font-size: 24px;
      line-height: 24px;
  }
}
label {
  font-size: 15px;
  margin-bottom: 2px;
}
.small-line {
  margin-bottom: 10px;
  margin-top: 5px;
}

.container {
  max-width: 100%;
}

nav ul li a {
  font-size: 22px;
  letter-spacing: 2px;
}
.banner-content {
  h1 {
      font-size: 32px;
      margin-bottom: 30px;
  }
}
.hero{
  padding-top: 100px;
  padding-bottom: 160px;
  .content-box {
    border-radius: 0px 32px 11px 16px;
    padding: 10px 10px;
    width: 130px;
    margin-bottom: 30px;
    p {
      font-size: 12px;
      margin-bottom: 0;
  }
}
.floting-content {
  width: 80%;
  & .left-item {
    .img-box {
        margin-left: -30px;
    }
}
& .right-item {
  .img-box {
      margin-left: auto;
      margin-right: -30px;
  }
}
}
.img-box {
  width: 109px;
  height: 60px;
}
}
.center-circle {
  .circle {
      width: 383px;
      height: 1000px;
      bottom: -280px;
  }
}
.center-circle {
  bottom: -25%;
}
.ai-solutions {
  padding: 20px 0;
  h2 {
      font-size: 22px;
      line-height: 30px;
  }
}
.section-title {
  font-size: 24px;
}
#ai-resources {
  padding: 0;
}
.ai-driven-kpi {
  .container {
      padding-block: 20px;
      padding-inline: 20px;
      position: relative;
  }
  .bg-full {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
}
}
.ai-work {
  padding: 40px 0;
}
.title {
  font-size: 22px;
  line-height: 25px;
}
.content-box {
  p {
      font-size: 20px;
  }
}
.testimonials .row{
  .col-lg-6:last-child{
    order: -1;
  }
}
.news {
  padding-left: 0%;
  padding-top: 0px;
  padding-bottom: 16px;
  .section-title {
    text-align: center;
}
& .col-lg-9 {
  .col-lg-7 {
      padding: 40px 30px;
      h4 {
        font-size: 18px;
    }
  }
}
}
.copy-right {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
footer {
  p {
      font-size: 16px;
      line-height: 24px;
  }
  a {
    font-size: 14px;
    line-height: 34px;
}
h4 {
  font-size: 16px;
}
}
.logo {
  width: 100px;
}
nav ul li {
  padding: 4px 16px;
}
}