/**************************************
                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;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  overflow-x: clip;
}
body{
  counter-reset: my-sec-counter;
}
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: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
html::-webkit-scrollbar {
  width: 6px;
  background-color: #141414;
}
html::-webkit-scrollbar-thumb {
  background-color: #f78322;
  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: "Gilroy";
  font-weight: 400;
  color: #000;
}
a,
a:hover,
a:focus {
  color: #f29537;
  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%;
}
/**************************************
                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{
  font-size: 50px;
  letter-spacing: 1px;
  /* color: #131313; */
  font-weight: bold;
  font-family: 'Gilroy Bold';
  margin-bottom: 12px;
  }
p{
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 29px;
  color: #3a3a3a;
}
.primary-btn {
  padding: 12px 35px;
  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: #502f65;
  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: #f78322;
}
.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: #502f65;
}
.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: 108px;
}
.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: rgb(252, 185, 89);
}
.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);
}
.fixed-btn {
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 8;
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fc:hover,
.fw:hover,
.call:hover {
    transform: scale(1.2);
}
/**************************************
      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: #f78322;
}
#menu ul{
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.mobile-menu{
  display: none;
}
.hamburger {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@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;
}
.logo {
  width: 50px;
  padding-block: 5px;
  text-align: left;
}
.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: #f29537;
  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 #f29537;
  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;
}
/*************************************
                Home Page
**************************************/
.hero {
  padding-top: 75px;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  perspective: 1000px;
  .container-fluid{
    position: relative;
  }
h1{
  font-size: 259px;
  color: rgba(255, 255, 255, 0.671);
  font-weight: bold;
  font-family: 'AeonikTRIAL-Bold';
  position: absolute;
  top: 8%;
  display: flex;
  justify-content: space-between;
  gap: 273px;
  left: -140px;
  background: linear-gradient(to bottom, #4b4b4bab, #4b4b4b14 50%, #0c0c0cab 65%, #000000 74%, #000000 100%, #000000, #000000, #000000, #000000, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

}
.banner-content{
  position: absolute;
  height: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  .content{
    width: 55%;
    h2{
      font-size: 70px;
      letter-spacing: 0px;
      color: #ffffff;
      font-family: "Gilroy";
      font-weight: 400;
      line-height: 100%;
      span{
        font-family: 'Gilroy Bold';
        font-weight: 700;
      }
    }
    p{
        font-size: 22px;
        color: #ffffff;
        font-family: "Gilroy";
        width: 90%;
        margin-bottom: 26px;
        margin-top: 20px;
    }
  }
}
.banner-social{
  position: absolute;
  bottom: 40px;
  right: 0px;
  h3{
    font-size: 20px;
    color: #ffffff;
    font-family: "Gilroy";
    font-weight: 100;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    &:before {
      content: "";
      position: absolute;
      top: 13px;
      width: 60px;
      height: 1px;
      background-color: #ffffff;
      right: -70px;
    }
  }
}
.banner-img {
  position: relative;
  text-align: right;
  margin-right: -200px;
  .amlan-maiti-signature{
    position: absolute;
    width: auto;
    height: auto;  
    bottom: 60px;
    margin-left: -190px;
  }
}
@keyframes floatingShadow {
  0% {
      filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
  }
  50% {
      filter: drop-shadow(0px 5px 10px rgba(255, 255, 255, 0.5));
  }
  100% {
      filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
  }
}
.banner-img img {
  animation: floatingShadow 3s ease-in-out infinite;
  margin-bottom: -2px;
}
.social-media{
  display: flex;
  gap: 10px;
  a{
    width: 31px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    &:hover{
      background-color: #522b68;
      border: 1px solid #ffffff;
      box-shadow: 0px 0px 10px 0px #ffffff;
      transform: scale(1.1);
    }
  }
}

/************************************
  About
************************************/
.about{
  background: #fff;
  .about-content-box{
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 11px 28px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
  }
  .primary-btn{
    background-color: #000;
  }
}
.about-img{
  position: relative;
  height: 100%;
  border-radius: 20px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-content {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.counter{
  border-radius: 20px;
  border: 1px solid #050505;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Gilroy Medium';
  height: 100%;
  h3{
    font-size: 58px;
    color: #111111;
    font-weight: 500;
  }
  p{
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 500;
    margin-bottom: 0;
  }
}
/************************************
   Clients
************************************/
.text-center {
  text-align: center;
}
.clients {
    background: linear-gradient(258deg, rgb(0, 0, 0) 9.79%, rgba(45, 29, 15, 0.8) 91%);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    &::after{
      content: '';
      inset: 0;
      position: absolute;
      animation: background linear forwards;
      background: linear-gradient(258deg, #000 9.79%, #2D1D0F 91%);
      background-size: 100% 0%;
      animation-timeline: view();
      animation-range: entry 50% ;
      background-repeat: no-repeat;
    }
  .section-title{
  color: #ffffff;
  font-size: 74px;
  }
  .dots {
    position: absolute;
    right: 0;
    z-index: -1;
  }
}
@keyframes background{
  to{
      background-size: 100% 100%;
  }
}
.divider {
  margin-bottom: 15px;
}
.pt-0 {
  padding-top: 0;
}
.logo-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  height: 90px;
}
.logo-box:hover {
  transform: scale(1.1);
}
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
}
.slick-arrow {
  width: 45px;
  height: 45px;
  border-radius: 22px;
  filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.12));
  z-index: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.slick-next {
  right: -60px;
}
.slick-prev {
  left: -60px;
}
.slick-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid;
  border-left: 2px solid;
  display: inline-block;
  transform: rotate(135deg);
  margin-right: 5px;
  opacity: 1;
  transition: all 0.5s;
}
.slick-arrow.slick-prev::before {
  transform: rotate(316deg);
  margin-left: 8px;
}
.service{
  background: #EFEFEF;
  .section-title{
    margin-bottom: 35px;
  }
}
/************************************
      Our Services
************************************/
.service-cards{
  position: relative;
  background: #fff;
  padding: 40px 20px;
  height: 100%;
  .card-img{
    margin-bottom: 15px;
    img{
      transition: 0.5s;
    }
  }
  h3{
    color: #000;
    font-family: 'Gilroy Bold';
    font-size: 24px;
    font-weight: 400;
    
  }
  &::after{
    position: absolute;
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter);
    color: #F6F6F6;
    font-family: "Gilroy Bold";
    font-size: 130px;
    font-weight: 500;
    top: -20px;
    right: 20px;
    transition: 0.5s;
  }
  &:hover{
    &::after{
      color: #09122C;
    }
    .card-img{
      img{
        transform: rotateY(180deg);
      }
    }
  }
}
/************************************
    Industry We Served
************************************/
.industy-served{
  padding-left: 330px;
  background: #000;
  padding-bottom: 100px;
  .section-title{
    margin-bottom: 50px;
    color: #FFF;
  }
  .industy-cards{
    position: relative;
    border-radius: 20px;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }
    h3{
      position: absolute;
      bottom: 20px;
      left: 30px;
      font-size: 30px;
      letter-spacing: 1px;
      color: #ffffff;
      font-weight: 500;
      font-family: "Gilroy Medium";
    }
  }
  .industy-slider{
    .slick-arrow{
    right: 16%;
    top: -68px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
      &::before{
        color: #FFF;
      }
      &.slick-prev{
        right: 20%;
        left: auto;
      }
      &:hover{
        background: #502f65;
        &:before{
            color: #fff;
        }
      }
    }
    .slick-list {
    margin: 0 -15px;
  }
  .slick-slide {
    margin: 0 15px;
    aspect-ratio: .6 / .81;
  }
  }
}
.list-inline {
    margin-bottom: 16px;
}
/************************************
  Company
************************************/
.company{
  background-image: url(../img/about-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}
.mx-auto{
  margin-inline: auto;
}
.digitalpiloto {
  padding: 25px;
  height: 100%;
  .digitalpiloto-img{
    height: 143px;
    margin-bottom: 20px;
  }
  img{
    width: auto;
    height: 100%;
    object-fit: contain;
    margin-bottom: 30px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(31%) hue-rotate(156deg) brightness(103%) contrast(107%);
  }
  p{
    font-size: 23px;
    letter-spacing: 0px;
    line-height: 34px;
    color: #181818;
    font-weight: 500;
    font-family: 'Gilroy Medium';
  }
  hr{
    margin-bottom: 10px;
    background: #000;
  }
  h5{
    font-size: 72px;
    font-family: "Gilroy Bold";
    font-weight: 700;
  }
  &:hover{
    img{
      filter: none;
    }
  }
}
.mb-35{
  margin-bottom: 35px;
}
.boost{
  background-color: #000;
  .section-title{
    color: #fff;
    font-size: 44px;
    line-height: 50px;
  }
}
.case-studies-box{
  filter: drop-shadow(0px 11px 15.5px rgba(0,0,0,0.14));
  background-color: #ffffff;
  margin-bottom: 40px;
  &:hover{
    .content{
    .flex{
      .trafic:first-child{
        h3{
          color: #f29537;
        }
      }
      .trafic:last-child{
        h3{
          color: #502f65;
        }
      }
    }
  } 
  }
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content{
    h4{
      filter: drop-shadow(0px 11px 15.5px rgba(0,0,0,0.14));
      background-color: #0c0c0c;
      font-size: 25px;
      letter-spacing: 0px;
      line-height: 24px;
      color: #ffffff;
      font-weight: bold;
      font-family: 'Gilroy Bold';
      text-align: center;
      padding-block: 20px;
    }
    .flex{
      display: flex;
      align-items: center;
      padding-block: 20px;
      .trafic{
        text-align: center;
        padding-inline: 20px;
        border-right: 1px solid #000;
        h3{
          font-size: 58px;
          letter-spacing: 1px;
          line-height: 65px;
          color: #131313;
          font-weight: bold;
          font-family: 'AeonikTRIAL-Bold';
        }
        P{
          font-size: 22px;
          letter-spacing: 0px;
          line-height: 24px;
          color: #131313;
          font-weight: bold;
          font-family: 'AeonikTRIAL-Bold';
          text-align: center;
        }
        &:last-child{
          border-right: none;
        }
      }
    }
  }
}
.case-studies-slider{
  padding-left: 16%;
  .slick-list{
    margin: 0 -29px;
  }
  .slick-slide{
    margin: 0 29px;
  }
}
.case-studies-slider{
  .slick-arrow{
    right: 16%;
    top: -68px;
    width: 50px;
    height: 45px;
    border-radius: 2px;
    background: #FFF;
      &::before{
          color: #09122C;
      }
      &.slick-prev{
          right: 20%;
          left: auto;
      }
      &:hover{
          background: #502f65;
          &:before{
              color: #fff;
          }
      }
  }
}
.story {
  background-color: #f8f8f8;
  padding-bottom: 80px;
  .slick-list {
    margin: 0 -15px;
  }
  .slick-slide {
    margin: 0 15px;
  }
  .slick-dots {
    bottom: -50px;
  }
  .slick-dots li {
    width: 9.5px;
    height: 9.5px;
    margin: 0 8px;
    background-color: #f2943700;
    border-radius: 50%;
    cursor: pointer;
    outline: 2px solid #000000;
    outline-offset: 3px;
  }
  .slick-dots li.slick-active {
    background-color: #000000;
  }
  .slick-dots button {
    opacity: 0;
  }
  .video-box{
    position: relative;
    .video_img{
      width: 100%;
    }
    .content{
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      &:hover{
        .icon{
          transform: scale(1.2);
        }
      }
      .icon{
        transition: all 0.5s;
      }
    }
  }
}
.slick-dots li {
  width: 9.5px;
  height: 9.5px;
  margin: 0 8px;
  background-color: #f2943700;
  border-radius: 50%;
  cursor: pointer;
  outline: 1px solid #fff;
  outline-offset: 3px;
}
.slick-dots li.slick-active {
  background-color: #f29537;
}
.slick-dots button {
  opacity: 0;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide {
  display: block;
}
.container {
  position: relative;
  z-index: 1;
}
.get-in-touch{
  padding-bottom: 0;
  position: relative;
  overflow: clip;
  &::after{
    content: '';
    background-image: url(../img/get-in-touch-shape2.webp);
    width: 483px;
    height: 580px;
    display: block;
    position: absolute;
    bottom: 26%;
    z-index: -1;
  }
  .container{
    &::after{
      content: '';
      content: '';
      background-image: url(../img/get-in-touch-shape.webp);
      width: 843px;
      height: 607px;
      display: block;
      background-size: 100%;
      background-repeat: no-repeat;
      position: absolute;
      bottom: -34%;
      z-index: -1;
      right: -50px;
    }
  }
  .about-text {
    left: -83%;
}
.primary-btn{
  background-color: #000;
  padding-inline: 70px;
}
.primary-btn:hover {
  background: #502f65;
}
.form-control{
  color: #000;
  padding-inline: 0;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.about-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 158px;
  letter-spacing: 2px;
  font-weight: bold;
  font-family: 'AeonikTRIAL-Bold';
  color: rgba(0, 0, 0, 0.11);
  text-transform: uppercase;
  white-space: nowrap;
  left: -72%;
  transition: background-position 0.5s ease-in-out;
  z-index: -1;
}
.about-text {
  left: -83%;
}
.about-img {
  position: relative;
  padding: 0;
  height: 100%;
  margin-bottom: -3px;
}
}
/* 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: #52425B;
  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: hidden;
  }
}
.popup {
  .title {
    color: #FFF;
    font-family: 'AeonikTRIAL-Bold';
    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: #000;
  p{
    color: #fff;
    transition: all 0.5s;
  }
  a p:hover{
    color: #f29537;
  }
}
.footer-logo{
  margin-bottom: 15px;
}
.footer-info {
  border-top: 1px solid #6c6c6c;
  border-bottom: 1px solid #6c6c6c;
  padding-block: 15px;
  margin-block: 15px;
  span{
    width: 38px;
height: 38px;
border-radius: 19px;
background-color: rgba(255,255,255,0);
border: 1px solid #ffffff;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
  }
  .col-lg-4, .col-lg-3, .col-lg-2{
    position: relative;
    padding-left: 45px;
  }
}
.footer-title {
font-size: 21px;
letter-spacing: 0px;
line-height: 26px;
color: #ffffff;
font-weight: bold;
font-family: 'Gilroy Bold';
}
.copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  p{
    margin: 0;
  }
}
.location-list {
  li{
    display: inline-block;
    margin-inline: 10px;
  }
  a{
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 49px;
    color: #ffffff;
    padding: 4px;
  &:hover{
    color: #f29537;
  }
  }
}
 @media (hover: none) and (pointer: coarse) {
  #dolphin {
    display: none !important;
  }
  #dolphin-toggle {
    display: none !important;
  }
}
#dolphin {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: scaleX(5);
}
#dolphin-toggle {
  cursor: pointer;
  display: none;
  position: absolute;
}
textarea{
  font-family: "Gilroy";
}
.about-img {
  &:hover {
      & .about-text {
          -webkit-text-fill-color: transparent;
          background: linear-gradient(90deg, rgb(247, 131, 34), rgb(80, 47, 101), rgb(247, 131, 34)) 0% 0% / 200% text;
          animation: 3s linear 0s infinite normal none running gradientAnimation;
          transition: background-position 0.5s ease-in-out;
      }
  }
}
@keyframes gradientAnimation {
  0% {
      background-position: 0% center;
  }
  100% {
      background-position: 200% center;
  }
}
/*******************************
  Responsive
********************************/
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
       screen and (min-resolution: 125dpi) {
        .banner-img {
          margin-right: -80px;
          .amlan-maiti-signature {
            width: auto !important;
            bottom: 60px;
            margin-left: -190px;
        }
      }
      .banner-social {
        bottom: 40px;
        right: 50px;
    }
    .banner-content {
      .content {
          width: 50%;
          h2 {
            font-size: 64px;
        }
      }
  }
  
    .hero {
      h1 {
        top: 4%;
        gap: 273px;
        left: -28px;
      }
  }
  .section-title {
    font-size: 38px;
}
p {
  font-size: 16px;
  line-height: 24px;
}
.get-in-touch {
.about-text {
  font-size: 128px;
  left: -82%;
}
}
.digitalpiloto {
  p {
      font-size: 18px;
      line-height: 28px;
  }
}
.boost {
  .section-title {
      font-size: 38px;
      line-height: 46px;
  }
}
.case-studies-box {
  & .content {
      & .flex {
          & .trafic {
              h3 {
                  font-size: 46px;
                  line-height: 60px;
              }
              P {
                font-size: 18px;
                line-height: 22px;
            }
          }
      }
  }
}
.container {
  max-width: 70%;
}

}
@media (max-width: 1600px),
(max-width: 1536px) {
  .hero {
    h1 {
      font-size: 249px;
      gap: 51px;
      left: -17px;
      top: 0%;
    }
    .banner-content {
      width: 100%;
      & .content {
        h2 {
            font-size: 64px;
        }
        p{
          font-size: 16px;
          line-height: 24px;
            margin-bottom: 20px;
            margin-top: 14px;
        }
    }
  }
  .banner-img .amlan-maiti {
    width: 100vh;
}
}
.banner-img {
  margin-right: -80px;
}
.section-title {
  font-size: 40px;
}
.counter {
  h3 {
    font-size: 48px;
  }
}
.industy-served {
  padding-left: 170px;
}
.case-studies-slider{
  padding-left: 9.5%;
}
.digitalpiloto {
  h5 {
    font-size: 62px;
  }
}
}
@media (max-width: 1440px),
(max-width: 1366px) {
  .logo {
    width: 60px;
    padding-block: 6px;
}
nav ul li a {
  font-size: 16px;
}
.primary-btn {
  font-size: 16px;
}
.hero {
  h1 {
    font-size: 206px;
    gap: 59px;
    left: -7px;
    top: 0%;
  }
  & .banner-content {
    & .content {
        h2 {
          font-size: 60px;
        }
    }
}
h3 {
  font-size: 18px;
}
}
p {
  font-size: 16px;
  line-height: 24px;
}
.about-text {
  font-size: 140px;
}
.section-title {
  font-size: 32px;
}
.counter {
  h3 {
    font-size: 38px;
  }
  p{
    font-size: 20px;
  }
}
.service-cards {
  h3 {
    font-size: 20px;
  }
  &::after{
    font-size: 120px;
  }
}
.industy-served {
  padding-left: 85px;
  .industy-slider {
    .slick-arrow {
      right: 15%;
    }
  }
  .industy-cards{
    h3{
      font-size: 26px;
    }
  }
}
.digitalpiloto {
  p {
    font-size: 18px;
    line-height: 28px;
  }
  h5{
    font-size: 52px;
  }
}

.boost {
  .section-title {
      font-size: 32px;
      line-height: 38px;
  }
}
.case-studies-slider {
  .slick-arrow {
      right: 15%;
  }
}
.case-studies-box {
  & .content {
      h4 {
          font-size: 20px;
          padding-block: 14px;
      }
      & .flex {
        & .trafic {
            h3 {
                font-size: 38px;
                line-height: 45px;
            }
            P {
              font-size: 16px;
              line-height: 20px;
          }
        }
    }
  }
}
.get-in-touch {
  .about-text {
      left: -88%;
      font-size: 146px;
  }
}
}
@media (max-width: 1199.98px) {
  .container-fluid {
    padding-inline: 20px;
  }
.banner-img{
  margin: 0;
}
.hero{
  .banner-content {
  bottom: 0px;
  left: 0;
  right: 0;
  padding-right: 0%;
  .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 30px;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
    h2{
      font-size: 52px;
    }
    p{
      width: 70%;
      margin-bottom: 20px;
    }
    &::before{
      position: absolute;
      content: '';
      width: 100vw;
      height: 70%;
      bottom: 0;
      left: -26px;
      background: linear-gradient(to top, black, transparent);
      z-index: -1;
    }
  }
}
.banner-social{
  right: -80px;
  z-index: 1;
}
.banner-img {
    .amlan-maiti-signature {
      bottom: 33px;
      margin-left: -135px;
      z-index: 2;
    }
  }
}
.about-img{
  padding: 10px;
}
.counter {
  padding: 5px 5px;
  border-radius: 15px;
  h3 {
    font-size: 28px;
  }
  p{
    font-size: 18px;
  }
}
.service-cards {
  padding: 20px 20px;
  h3 {
    font-size: 18px;
  }
  &::after {
    font-size: 100px;
    top: -5px;
    right: 10px;
  }
}
.industy-served {
  padding-left: 70px;
  .industy-slider{
    .slick-list{
      margin: 0 -10px;
    }
    .slick-slide{
      margin: 0 10px;
    }
    .slick-arrow {
      right: 13%;
    }
  }
}
.section-title {
  font-size: 28px;
}
.case-studies-slider {
  padding-left: 6.5%;
  .slick-slide {
  margin: 0 20px;
}
.slick-list {
  margin: 0 -20px;
}
}
.case-studies-box {
  & .content {
      & .flex {
          .trafic {
              padding-inline: 10px;
              P {
                font-size: 14px;
                line-height: 20px;
            }
            h3 {
              font-size: 28px;
              line-height: 36px;
          }
          }
      }
  }
}
}

@media (max-width: 991.98px) {
  .container {
        max-width: 90%;
    }
.left {
  padding: 0;
  .img-box {
      display: none;
  }
}
.right {
  padding: 30px;
}
.hero{
  h1 {
    font-size: 105px;
    gap: 154px;
    top: 16%;
    left: -8px;
  }
  .banner-img {
    .amlan-maiti-signature {
      display: none;
    }
  }
  .banner-content {
    .content{
      padding-bottom: 20px;
      h2{
        font-size: 38px;
      }
      p{
        line-height: 120%;
        margin-top: 10px;
        margin-bottom: 0;
      }
      &::before{
        left: -22px;
      }
    }
    .primary-btn{
      display: none;
    }
  }
  .banner-social {
    display: none;
  }
}
.about {
  .about-img {
    margin-inline: auto;
  }
}
.about-content {
  padding: 30px 10px;
  padding-top: 0;
}
.industy-served {
    padding-bottom: 50px;
  & .industy-slider {
    .slick-arrow {
      right: 10%;
    }
    .slick-list{
      margin: 0 -8px;
    }
    .slick-slide{
      margin: 0 8px;
    }
  }
}
.case-studies-slider {
  .slick-arrow {
      right: 10%;
  }
}
.case-studies-slider {
  .slick-slide {
    margin: 0 10px;
  }
  .slick-list {
    margin: 0 -10px;
  }
}
.case-studies-box {
  & .content {
      h4 {
          font-size: 16px;
          padding-block: 14px;
      }
      & .flex {
        & .trafic {
            P {
                font-size: 12px;
                line-height: 16px;
            }
        }
    }
  }
}
.get-in-touch {
  padding-bottom: 30px;
      .about-img {
      margin-left: 90px;
    }
}
.get-in-touch {
  &::after {
      bottom: 46%;
  }
  .about-text {
    left: -72%;
    top: 56%;
    font-size: 150px;
}
}
nav ul li a {
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 3px;

}
.industy-served {
    & .industy-cards {
        h3 {
            bottom: 14px;
            left: 15px;
            font-size: 20px;
        }
    }
}
}

@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;
}
.banner-social {
  display: none;
}
.banner-img{
  margin-right: 0;
}
.hero {
  & .banner-content {
      & .content {
        padding-bottom: 5px;
          h2 {
            font-size: 26px;
            padding-bottom: 6px;
            margin-bottom: -2px;
          }
          p{
            font-size: 14px;
            margin-bottom: 10px;
            margin-top: 10px;
            line-height: 127%;
          }
          &::before{
            left: 0;
          }
      }
  }
}
.clients {
    .section-title {
      font-size: 34px;
      text-align: center;
    }
}
.digitalpiloto {
    h5 {
        font-size: 43px;
    }
}
.service{
  .service-cards {
  &::after {
    font-size: 90px;
  }
}
}
.logo {
  width: 50px;
  padding-block: 2px;
}
.container {
  max-width: 100%;
}
.about-text {
  font-size: 98px;
  left: -67%;
}
.about {
  padding-bottom: 30px;
  .about-content-box{
    padding: 15px;
  }
  .about-img {
  padding: 0;
  padding-top: 0;
  }
}
.about-content {
  padding: 10px 0;
  .section-title{
    margin-bottom: 3px;
  }
}
.clients {
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-box {
  width: 100%;
  height: 65px;
  padding: 10px;
  border-radius: 4px;
  background: #0000000d;
}
.get-in-touch {
    .about-text {
        font-size: 85px;
    }
}
.clients {
    h2 {
        font-size: 24px;
        margin-bottom: 0px;
    }
}
p {
  font-size: 15px;
  line-height: 22px;
}
.industy-served {
  & .industy-slider {
    padding-inline: 30px;
    .slick-arrow {
        top: 50%;
        right: 10px;
        width: 40px;
        height: 40px;
            &.slick-prev {
        right: auto;
        left: 10px;
    }
    }
  }
  .section-title{
               margin-left: 0;
            text-align: center;
            margin-bottom: 25px;
  }
}
.section-title {
  font-size: 22px;
}
.digitalpiloto {
  padding: 15px;
  p {
    font-size: 16px;
    line-height: 24px;
}
}
.boost {
  .section-title {
      font-size: 22px;
      line-height: 32px;
  }
}
.sec-gap {
  padding: 30px 0;
}
.case-studies-slider {
  padding-left: 0%;
  .slick-arrow {
      top: -50px;
      right: 3%;
  }
}
.case-studies{
  padding-bottom: 0;
}
.story {
  .slick-dots li {
      width: 7.5px;
      height: 7.5px;
      outline: 1px solid #000000;
  }
  .slick-dots {
    bottom: -40px;
}
}
.get-in-touch {
  .about-img{
    margin-left: 62px;
  }
  .about-text {
      left: -77%;
      transform: translateY(-100%) rotate(-90deg);
      font-size: 78px;
      top: 65%;
  }
}
.form-control {
  font-size: 15px;
}
.get-in-touch {
  &::after {
      bottom: 55%;
      background-size: 69%;
      background-repeat: no-repeat;
  }
  & .container {
    &::after {
        background-repeat: no-repeat;
        background-position: center;
        right: -204px;
    }
}
form{
    background: #f7832212;
    padding: 16px;
    border-radius: 4px;
}
}
.footer-info {
  padding-left: 15px;
}
.copyright {
  justify-content: center;
}
.location-list {
  text-align: center;
  margin-top: 12px;
  & a {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 30px;
}
li {
  display: inline-block;
  margin-inline: 8px;
}
}
nav ul li a {
  font-size: 22px;
  letter-spacing: 2px;
}
.about {
  .about-img {
      width: auto;
      margin-inline: auto;
      position: relative;
  }
}
.hero {
  h1 {
    font-size: 46px;
    gap: 118px;
    top: 16%;
    left: 6px;
  }
}
.hero {
    .banner-img {
        padding-bottom: 60%;
    }
    & .banner-content {
    & .content {
        p {
            width: 93%;
        }
    }
}
    }
    .hero.seo-expert {
        .banner-img {
            padding-bottom: 30%;
        }
    }
}