/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    line-height: 1.7;
    color: #090909;
    background-color: black;
    position: relative;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    
    @font-face {
      font-family: 'Lufga Black Italic';
      src: url('../fonts/Fontspring-DEMO-lufga-blackitalic.woff2') format('woff2'),
           url('../fonts/Fontspring-DEMO-lufga-blackitalic.woff') format('woff'),
           url('../fonts/Fontspring-DEMO-lufga-blackitalic.otf') format('opentype');
      font-weight: 900;
      font-style: italic;
    }

  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container Utility */
  .container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Flex Utility */
  .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Button Utility */
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .btn-primary {
    /* width: 200px; */
    /* width: 185px;   */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2b2823;
    border-radius: 50px;
    padding: 13px 24px;
    gap: 13px;
    box-shadow: 0px 2px 30px #5a5a5a80 inset;
  }
  
  .btn-primary .right-icon {
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
  }
  .btn-primary:hover .right-icon {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid white;
  }
  
  /* Spacing Utilities */
  .mt-1 { margin-top: 10px; }
  .mt-2 { margin-top: 20px; }
  .mt-3 { margin-top: 30px; }
  
  .mb-1 { margin-bottom: 10px; }
  .mb-2 { margin-bottom: 20px; }
  .mb-3 { margin-bottom: 30px; }
  
  .pt-1 { padding-top: 10px; }
  .pt-2 { padding-top: 20px; }
  .pt-3 { padding-top: 30px; }
  
  .pb-1 { padding-bottom: 10px; }
  .pb-2 { padding-bottom: 20px; }
  /* .pb-3 { padding-bottom: 30px; } */
  
  /* Text Utilities */
  .text-center { text-align: center; }
  .text-primary { color: #007bff; }
  .text-secondary { color: #6c757d; }
  
  /* Header Section */
  .header {
    position: relative;
    padding: 20px 0;
    width: 100%;
    z-index: 99999;
    }

  .container.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    gap: 10px;
  }
  
  .logo img {
    width: 200px;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 35px; /* Space between menu items */
    margin: 0;
    padding: 0;
    height: 70px;
    color: white;
  }
  
  .navbar .nav-links .active {
    list-style-type: disc;
  }
  
  .active::marker {
    color: #f8d10f; /* Change the color of the bullet */
  }
  
  .box-container {
    width: 80%;
}
  .navbar .nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
    font-weight: 400;
    text-transform: capitalize;
        /*letter-spacing: .3px;*/
    font-family: Figtree-Semibold;
  }
  
  .navbar .nav-links li a:hover {
    color: #f8d10f; /* Change color on hover */
  }
  
  nav.navbar {
    position: relative;
    padding: 0px 50px;
    border: 1px solid #2b2823;
    /*box-shadow: 0px 10px 0px 0px #00000;*/
    border-radius: 50px;
    box-shadow: 0px 10px 0px 0px #5a5a5ab5;
  }
  
  
  
  .menu-close {
    display: none; /* Hide by default */
    font-size: 24px;
    cursor: pointer;
    color: white;
    text-align: right;
    margin-bottom: 20px;
  }

  .menu-close {
    display: block; /* Show on mobile */
    display: flex;
    top: 55px;
    position: absolute;
    width: 50px;
    right: 5px;
    align-items: center;
    height: 50px;
    color: black;
    background-color: #f8d10f;
    border-radius: 5px;
    justify-content: center;
    font-weight: bolder;
  }


  div.menu-body{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 100vw; */
    margin-top: 15px;
  }

  svg.ham.hamRotate.ham4.active {
    position: relative;
    /* top: 60px;
    right: 74px; */
}
.sidebar-img {
  height: 100%;
  /* margin-bottom: 60px; */
  width: 100%;
    position: absolute;
    z-index: 998;
    display: flex;
    align-items: center;
}
.sidebar-img img{
  /* height: 100%; */
  /* margin-bottom: 60px; */
  width: 75%;
    /* object-fit: cover;
    background-size: contain; */
}
  
  .sidebar{
    top: 0;
    position: fixed;
    width: 100%;
    right: -100%;
    height: 100vh;
    background-color: black;
    transition: all .5s ease;
    z-index: 99999;
   display: flex;
   align-items: center;
    justify-content: end;
    gap: 10%;
    /* padding-top: 140px; */
  }
 
  .sidebar a{
    display: block;
    height: 65px;
    width: 100%;
    color: #fdfdfd;
    line-height: 65px;
    padding-left: 30px;
    box-sizing: border-box;
    border-left: 5px solid transparent;
    /* font-family: 'Lato', sans-serif; */
    transition: all .5s ease;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;

  }
  .side-bar a:hover{
    /* border-left: 5px solid var(--accent-color); */
    /* color: #ff0a0a; */
     /* background: linear-gradient(to left, var(--accent-color), var(--gradient-color)); */
  }
  .sidebar a i{
    font-size: 20px;
    /* margin-right: 16px; */
  }
  .sidebar a span{
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #check{
    display: none;
  }
  label #btn,label #cancel{
    z-index: 999999;
    position: absolute;
    right: 25px;
    top: 35px;
    cursor: pointer;
    background-color: #f8d10f;
    border-radius: 5px;
    margin: 15px 30px;
    font-size: 29px;
   color: #000000;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
      inset -7px -7px 10px 0px rgba(0,0,0,.1),
     3.5px 3.5px 20px 0px rgba(0,0,0,.1),
     2px 2px 5px 0px rgba(0,0,0,.1);
    height: 45px;
    width: 45px;
    text-align: center;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
    line-height: 45px;
    transition: all .5s ease;
  }
  label #cancel{
    opacity: 0;
    visibility: hidden;
  }
  #check:checked ~ .sidebar{
    right: 0;
    top: 0;
  }
  #check:checked ~ label #btn{
    margin-left: 245px;
    opacity: 0;
    visibility: hidden;
  }
  #check:checked ~ label #cancel{
    margin-left: 245px;
    opacity: 1;
    visibility: visible;
  }

  .side-bar-content {
    width: 30%;
    height: 100%;
    background-color: black;
    padding-top: 140px;
        z-index: 999;
}

.sidebar.mobile{
  display: none;
}

    /* Responsive Design for Header */
    @media (max-width: 1220px) {
      .sidebar.mobile{
        display: flex;
  padding-top: 50px;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh; /* or a specific pixel value */
  overflow-y: auto; /* this makes the sidebar content scrollable */
  align-items: start;
      }
      .sidebar.desktop{
        display: none;
      }
     
      .side-bar-content {
        width: 100%;
        height: 100%;
        background-color: black;
        padding-top: 140px;
    }
      .sidebar{
        top: 0;
        position: fixed;
        width: 100%;
        right: -100%;
        height: 100vh;
        background-color: black;
        transition: all .5s ease;
        z-index: 99999;
        /* padding-top: 140px; */
        
      }
      .sidebar a{
        border-bottom: 1px solid white;  
        font-size: 17px;
        font-weight: 400;
        letter-spacing: .7px;
      }
      div.menu-body{
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        right: 0;
        top: -15px;
      }
      nav.navbar{
        display: none;
      }
      .menu-toggle {
        display: block; /* Show the toggle button on mobile */
      }
    
      .header .btn-primary {
        display: none; /* Hide the primary button on mobile */
      }
    
      .container.header {
        padding: 0 50px; /* Adjust padding for smaller screens */
      }
    
      .navbar {
        display: none; 
      }

    }
  
  /* Adjustments for medium screens */
  @media screen and (min-width: 1050px) and (max-width: 1200px) {
    .container.header {
      padding: 0; /* Remove padding for medium screens */
    }
  }
  @media (max-width:500px) {
  
      .navbar .nav-links {
          padding: 20px 0;
          margin-top: 200px;
          width: 100%;
      }
      .navbar .nav-links li a{
        font-size: 23px;
       }

  }

  .container.flex.hero {
    justify-content: center;
    padding: 90px;
    flex-direction: column;
    gap: 45px;
}
h1.hero-title.text-primary {
    font-size: 70px;
    font-weight: 500;
    color: #ffffff; 
 background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
 line-height: 83px;
 text-align: center;
}
p.hero-description.text-secondary {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff; 
    background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 45px;
}




/* Editors' Logos Section */
.editors-logos {
  /* padding: 60px 0; */
  /* background-color: #1a1a1a; */
}

/* .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  
} */

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 0fr));
  gap: 0px;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #2b2823; */
  /* padding: 20px; */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.logo-item img {
  max-width: 80%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}



/* Counter Section */
.counter-section {
  /* margin-top: 130px; */
  padding: 80px 7%;
  color: #ffffff;
  position: relative;
}
.counter-section .container{
  /* margin-top: 130px; */
  margin-top: 0px;
}
img.bg-counter {
  position: absolute;
  z-index: -1;
  width: 100%;
  right: 0;
  bottom: 55px;
  overflow: hidden;
}
.counters-grid {
  display: grid;
  gap: 30px;
 grid-template-columns: auto auto auto auto;
}

.counter-item {
  padding: 20px;
  background-color: #1a1a1a; /* Darker background for counter items */
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 170%;
  /* width: 250px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  background-image: url(../assets/images/counter-background.jpeg);
  background-size: cover;
  box-shadow: 0px 0px 96px 0px rgba(255, 255, 255, 0.05) inset;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.075) inset;
  /* background: #ffffff00; */


}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.counter-item.two {
  grid-column-start: 2;
  grid-column-end: 4;
  justify-content: center;
    gap: 44px;
    /* align-items: center; */
    padding-top: 74px;
}

.counter-number {
  font-size: 100px;
  font-weight: 500;
  margin-bottom: -20px;
  color: #484847; 
 background-image: linear-gradient(15deg, #858484 40%, #ffffff 80%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
}

.counter-label {
  font-size: 19px;
  color: #fffffb; 
  background-image: linear-gradient(354deg, #858484 15%, #ffffff 70%);
   background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
 font-weight: 400;
 /*letter-spacing: -.3px;*/
 text-align: center;
font-family: Figtree-Semibold;
 letter-spacing:1px;
 text-transform:uppercase;
}
.elipse-client {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.elipse-client img{
  margin: -8px;
}
img.five-img {
  /* position: absolute; */
  z-index: 3;
  /* left: 56%; */
}
img.four-img {
  /* position: absolute; */
  z-index: 4;
  /* left: 48%; */
}
img.trd-img {
  /* position: absolute; */
  z-index: 5;
  /* left: 41%; */
}
img.scnd-img {
  z-index: 2;
  /* position: absolute; */
  /* left: 34%; */
}
img.first-img {
  /* position: absolute; */
  z-index: 1;
  /* left: 27%; */
}

.counter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.counter-icons{
  font-size: 40px;
  font-weight: 500;
  /* margin-bottom: 10px; */
  margin-bottom: -20px;
  color: #484847; 
 background-image: linear-gradient(15deg, #858484 40%, #ffffff 80%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
}

/* How We Help Section */
.how-we-help-section {
  padding: 80px 0;
 padding-bottom: 0;
  color: #ffffff; /* White text */
}
.how-we-help-section .container{
   align-items: center;
   padding: 0 6%;
  
}

.section-title {
  font-family: 'Silver Garden regular';
  font-size: 38px;
  font-weight: 400;
  color: #ffffff; 
  background-image: linear-gradient(113deg, #ffffff 40%, #ffffff 80%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  text-align: center;
  /* line-height: 72px; */
  margin-bottom: 25px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 30px; /* Space between services */
}

.service-item {
  background-color: #2b2823; /* Darker background for service items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.service-icon {
  font-size: 48px;
  color: #f8d10f; /* Yellow color for icons */
  margin-bottom: 20px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff; /* White color for title */
  margin-bottom: 15px;

}

.service-description {
  font-size: 16px;
  color: #6c757d; /* Gray color for description */
  line-height: 1.6;
}


.service-content {
  text-align: center;
  margin-bottom: 80px;
  z-index: 99;
}
h6.title{
  color: #ffffff; 
  background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  font-size: 18px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 400px; */
  /* font-family: 'Helvetica Light'; */
font-weight: 400;
line-height: 100%;
letter-spacing: -4%;
text-align: left;

}
.service-content p{
  color: #ffffff; 
  background-image: linear-gradient(315deg, #858484 40%, #ffffff 80%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  /* font-size: 15px; */
  /* font-family: 'Helvetica'; */
font-weight: 400;
font-size: 18px;
line-height: 1.7;
letter-spacing: 0%;
text-align: center;

}
hr.service-line {
  width: 400px;
  background: rgba(231, 231, 231, 0.677);
  background: linear-gradient(180deg, rgba(231,231,231,1) 0%, rgba(0,0,0,1) 100%);
  height: 1px;
  border: none;
  margin-bottom: 30px;
  display: none;
}
/* Services Section */


.services-grid {
  display: grid;
  
  gap: 30px;
}

.service-item {
  background-color: #2b2823;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 48px;
  color: #f8d10f;
  margin-bottom: 20px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}


/* Where Creativity Section */
.where-creativity {
  padding: 80px 20px; /* Reduced padding for smaller screens */
}

.where-creativity .container {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 5%;
  display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
}

.creative-head h2 {
  /* font-size: 45px; */
  color: #ffffff;
  background-image: linear-gradient(315deg, #858484 40%, #ffffff 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* font-family: 'Silver Garden'; */
font-weight: 400;
font-size: 38px;
line-height: 72px;
letter-spacing: 0%;
text-align: center;

}

.creative-head p {
  /* font-family: 'Helvetica'; */
font-weight: 400;
font-size: 16px;
line-height: 25px;
letter-spacing: 0%;
/* text-align: center; */

  font-size: 16px;
  color: #ffffff;
  background-image: linear-gradient(334deg, #858484 40%, #ffffff 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creative-head {
  margin-bottom: 35px;
}

.creative-para .creative-content {
      padding-left: 31px;
    width: 78%;
    text-align: left;
    font-weight: 400 !important;
    color: #ffffff;
    background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%);
    background-clip: text;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    text-align: center;
    font-size: 21px;
    line-height: 1.9;
    letter-spacing: .7px;
}

.creative-para {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techno-content {
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 0 20px; /* Reduced padding for smaller screens */
  margin-bottom: 60px; /* Reduced margin for smaller screens */
  flex-direction: column; /* Stack items vertically on smaller screens */
}

.techno-content .overlay-content {
  
  /* background-color: hsla(0, 0%, 100%, .025); */
  /* background-image: radial-gradient(140% 107.13% at 50% 10%, transparent 40%, hsla(0, 0%, 100%, .05) 75%, hsla(0, 0%, 100%, .1) 100%); */
  width: 100%; /* Full width on smaller screens */
  height: 500px;
  background-color: hsl(0deg 0% 4.41%);
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(62, 62, 62, 0.36); */
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  /* box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .075), inset 0 0 5vw hsla(0, 0%, 100%, .05); */
  margin-bottom: 20px; /* Added margin between stacked items */
}

.tool-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Reduced gap for smaller screens */
  padding: 0 20px; /* Reduced padding for smaller screens */
  justify-content: center; /* Center icons on smaller screens */
}

.tool-icons img {
  width: 80px; /* Reduced icon size for smaller screens */
}

.overlay-content h1 {
  font-size: 28px; /* Reduced font size for smaller screens */
}

.overlay-text h2 {
  font-size: 24px; /* Reduced font size for smaller screens */
  margin-bottom: 15px; /* Reduced margin for smaller screens */
}

.overlay-text p {
  font-size: 16px; /* Reduced font size for smaller screens */
  color: #ffffff;
  background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.container.overlay {
  display: flex;
  flex-direction: column;
}
.container.case-staudies {
  padding: 100px 6%;
  align-items: center;
  display: flex;
  flex-direction: column;
  
  padding-top: 20px;
}
.case-studies-container {
  width: 100%;
  display: flex;
  gap: 15px;
  overflow-x: auto; /* Enables horizontal scrolling */
  /* white-space: nowrap;  */
  scroll-snap-type: x mandatory; /* Optional: Adds smooth scrolling snap */
}
.case-studies-container::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Edge */
}
.case-studies-container > * {
  flex-shrink: 0; /* Prevents items from shrinking */
  scroll-snap-align: start; /* Optional: Aligns each item to the start of the container */
}
.next-swiper i {
  /* font-size: 30px; */
  cursor: pointer;
}
.case-studies-content {
  /*height: 500px;*/
  /*width: 45%;*/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
    border: 1px solid rgb(45, 43, 43); 
  /*box-shadow: 0px 2px 30px #5a5a5a80 inset; */
  background-color: hsl(0deg 0% 5.41%);
    border-radius: 10px;
    /* padding: 40px; */
  justify-content: flex-start;
  margin-bottom: 75px;
  padding: 30px;
  padding-bottom: 20px;
  /* object-fit: cover; */
}
.studie-content h2{
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}
.studie-content p{
  font-size: 17px;
  line-height: 1.2;
  /* font-weight: 600; */
  color: #ffffff;
  background-image: linear-gradient(135deg, #ffffff 16%, #585a58 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.studie-content{
  padding: 0 30px;
}


section.section-contact {
  position: relative;
  margin: 50px 7%;
  margin-bottom: 130px;
  box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .075), inset 0 0 5vw hsla(0, 0%, 100%, .05);
  background-color: hsla(0, 0%, 100%, .025);
  transition: background-color .5s ease;
  border-radius: 15px;
}
footer{
  background-color: #ffffff;
  margin: 50px 7%;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
      padding-top: 80px;
      padding-left: 80px;
      padding-right: 80px;
      justify-content: space-between;
      padding-bottom: 130px;
      position: relative;
      /* line-height: 0; */
}
.col-rt {
  display: flex;
  width: 40%;
  padding-top: 50px;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.col-lf h2{
  font-size: 24px;
    font-weight: 500;
    color: #000000;
    /* background-clip: text;
    background-image: linear-gradient(135deg, #000000 34%, #f8fff8 140%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.contact {
  margin-top: 45px;
}
 .social-madia i{
    border: 1px solid black;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: black;
  font-size: 17px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}


.social-madia i::after {
  content: '';
  background-color: black;
  border-radius: 3rem;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.social-madia i:hover::after {
  transform: translate(0, 0);
}

.social-madia i:hover {
  border: 2px solid transparent;
  color: rgb(255, 255, 255);
  transform: scale(1.05);
  will-change: transform;
}

.social-madia{
  display: flex;
  gap: 10px;
  padding-top: 25px;
  position: absolute;
  top: -85px;
}
.colxl-1 ul h2{
  font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
        letter-spacing: 0.3px;
}
.colxl-1 ul li{
  margin-bottom: 6px;
    font-size: 16px;
    /* font-weight: 300; */
    line-height: 1.8;
    letter-spacing: .4px;
}
.colxl-1 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  /* flex-direction: column; */
  align-items: start;
    /* padding-left: 115px; */
    gap: 25px;
    /* padding-top: 118px; */
}
h1.company-name {
  position: absolute;
  bottom: 11px;
  font-size: 90px;
  font-weight: 900;
  left: 25%;
  display: none;
  color: black;
  /* width: 100%; */
  width: 70%;
}
.copy-right {
  position: absolute;
  bottom: -16px;
  width: 70%;
  border-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background-color: black;
  height: 60px;
  left: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
}
.next-swiper {
  padding-right: 60px;
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.case-staudies.contact.container {
  position: relative;
  padding-top: 120px;
  /* background-image: url(../assets/images/backgrtounds/stars.png); */
  /* background-size: cover; */
  object-fit: cover;
}
.case-staudies.contact.container .side-img{
  position: absolute;
  width: 30%;
  left: -4%;
  z-index: -0;
  top: 26%;
}
.case-staudies.contact.container .star-img{
  position: absolute;
  /* height: 95%; */
  width: 70%;
  /* width: auto; */
  left: 19%;
  z-index: -0;
  top: 8%;
}

.next-swiper i{
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
}
.next-swiper i:hover{
 background-color: white;
 color: #000;
}
.service-grid{
  display: grid;
  grid-template-columns: 35% 32% 15% 14% ;
  grid-template-rows:  auto auto auto auto;
  gap: 15px;
  padding: 0 25px;
  /* background-color: #1a1a1a; */
}
.service-grid .grid-item{
  height: 420px;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  justify-content:space-between;
  padding: 25px;
  padding-left: 35px;
  padding-bottom: 15px;
  background-color: hsl(0deg 0% 4.41%);
  transition: background-color .5s ease;
  align-items: flex-start;
}
.grid-item.one {
      padding-top: 44px;
  grid-row-start: 1;
  grid-row-end: 3;
}
.grid-item.two {
  padding-top: 44px;
  grid-column-start: 2;
  grid-column-end: 5;
  display: flex;
}
.grid-item.six {
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
      background: linear-gradient(359deg, rgb(17 15 15) 24.46%, rgb(40 36 36 / 99%) 100%);

}
.grid-item.three {
      padding-top: 42px;
  grid-row-start: 3;
  grid-row-end: 4;
  /* width: 87%; */
  align-items: flex-start;
}
.grid-item.four {
      padding-top: 42px;
  /* grid-row-start: 2; */
  grid-row-end: 4;
  align-items: flex-start;
}
.grid-content.five5 {
    padding-bottom: 45px;
}
.service-grid .grid-item p{
  font-size: 13px;
}
.service-grid .grid-item .grid-content{
  width: 100%;
  z-index: 999;
  display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: end;
      gap: 10px;
      height: 300px;
}
.service-grid .grid-item:hover .grid-content{
  width: 100%;
  z-index: 999;
  display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
      gap: 20px;
      height: 100%;
}
.grid-item.five {
  /* grid-row-start: 2; */
  grid-row-end: 4;
  align-items: flex-end;
  grid-column-start: 3;
    grid-column-end: 5;
}
.grid-content.two2 {
  /* width: 48% !important; */
  color: white;
}
.grid-content.four4 {
  width: 100% !important;
}

/* .grid-content.six6 {
  width: 70% !important;
} */

.grid-content h2{
    letter-spacing: .5px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3;
}
.grid-content p{
  font-size: 12px;
  color: rgb(170, 169, 169);
  /* margin-bottom: 15px; */
}
.grid-item.seven {
  grid-column-start: 3;
  grid-column-end: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.service-grid .grid-item:hover h2{
  animation: fadeInUp-approach 0.7s ease backwards;
}
.grid-content .service-facilitate {
   display: none;
}
.grid-item:hover .service-facilitate {
   display: flex;
}
.grid-content button.case-read.grid {
   display: none;
}
.grid-item:hover button.case-read.grid {
   display: flex;
   /* width: 100%; */
   /* justify-content: flex-end; */
}
.grid-item:hover div.case-read.grid {
   display: flex;
   width: 100%;
   justify-content: flex-end;
}
.featured-works .container{
  /* border: 1px solid black; */
  /* box-shadow: 0px 2px 30px #5a5a5a80 inset; */
  /* box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .075), inset 0 0 5vw hsla(0, 0%, 100%, .05); */
  background-color: hsl(0deg 0% 4.41%);
  /* background-image: radial-gradient(140% 107.13% at 50% 10%, transparent 40%, hsla(0, 0%, 100%, .05) 75%, hsla(0, 0%, 100%, .1) 100%); */
  transition: background-color .5s ease;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  /* gap: 120px; */
  padding-bottom: 100px;
}
.featured-works{
  padding: 50px ;
}
.featured-works .container .next-swiper{
  justify-content: center;
  padding-top: 20px;
}
.featured-works .container .box-container{
  /* box-shadow: 0 10px; */
  }
  .creative-grid-container{
    display: grid;
    grid-template-columns: 36% 31% 30%;
    gap: 15px;
    margin-top: 81px;
    
  }
  .creative-grid-content.two {
    /* font-family: 'Sharp Sans', sans-serif; */
    overflow: hidden;                                          
    position: relative;
    justify-content: center;
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    gap: 40px;
    flex-direction: column;
    background-color: hsl(0deg 0% 5.41%);
  border-radius: 15px;
  align-items: flex-start;
  padding-left: 40px;
  padding-bottom: 30px;
  padding-top: 50px;

}
.creative-grid-content.one {
  background-color: #171717;
  border-radius: 15px;

}
.glass-bgclr {
  background: rgb(0 0 0 / 12%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(4.5px);
  display: flex;
      height: 100%;
      align-items: center;
      justify-content: center;
}

.bg-glass-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 62%);
  border-radius: 13px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
}
.overlay-content.two {
  background-image: url(../assets/images/creative-content-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.creative-grid-content.one h1{
  width: 66%;
  /* padding-top: 50%; */
  line-height: 1.3;
  font-size: 70px;
  font-weight: 600;
  text-align: left;
      /*letter-spacing: 1.1px;*/
  color: white;
}
.creative-grid-content.two h1{
  /* font-family: 'Lufga'; */
font-weight: 300;
font-size: 54px;
line-height: 38.4px;
letter-spacing: -1px;
vertical-align: middle;

    width: 67%;
    line-height: 1.1;
    background-image: linear-gradient(343deg, #686868 25%, #ffffff 64%);
  color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.overlay-text h2{
  /* font-family: 'Sharp Sans', sans-serif; */
                                                
  color: white;
}
.overlay-text{
  width: 60%;
}
.creative-grid-content.three {
  display: flex;
  align-items: flex-end;
}
.grid-three-content {
  color: white;
  width: 100%;
  height: 100%;
  font-size: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  background-color: hsl(0deg 0% 5.41%);
  /* box-shadow: 0px 2px 30px #5a5a5a80 inset; */
  /* box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .075), inset 0 0 5vw hsla(0, 0%, 100%, .05); */
  /* background-image: radial-gradient(140% 107.13% at 50% 10%, transparent 40%, hsla(0, 0%, 100%, .05) 75%, hsla(0, 0%, 100%, .1) 100%); */
  transition: background-color .5s ease;
  border-radius: 15px;
  font-weight: 900;
}
.creative-grid-content.one .grid-three-content{
  display: none;
}
.overlay-content.one img{
  width: 100%;
  height: 100%;
}
section.where-creativity {
  display: flex;
  flex-direction: column;
  align-items: center;
}



.editors-logos {
  margin-left: 10%;
  width: 80%;
  overflow: hidden; /* Hide overflow to create a scrolling effect */
  /* position: relative; */
}

.container {
  width: 100%;
  padding: 20px 0;
}

.marquee {
  display: flex;
  block-size: var(--marquee-item-height);
  margin-block: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee--8 {
  --marquee-item-width: 100px;
  --marquee-item-height: 54px;
  --marquee-duration: 36s;
  --marquee-items: 8;
}
.marquee--7 {
  --marquee-item-width: 100px;
  --marquee-item-height: 54px;
  --marquee-duration: 36s;
  --marquee-items: 7;
}



.marquee__item {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}

.marquee__item:nth-child(4n) {
  border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 1) {
  border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 2) {
  border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n + 3) {
  border-top-left-radius: 1rem;
}

.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}

.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}
.marquee--8 .marquee__item:nth-of-type(9) {
  --marquee-item-index: 9;
}
.marquee--8 .marquee__item:nth-of-type(10) {
  --marquee-item-index: 10;
}
.marquee--8 .marquee__item:nth-of-type(11) {
  --marquee-item-index: 11;
}
.marquee--8 .marquee__item:nth-of-type(12) {
  --marquee-item-index: 12;
}
.marquee--8 .marquee__item:nth-of-type(13) {
  --marquee-item-index: 13;
}
.marquee--8 .marquee__item:nth-of-type(14) {
  --marquee-item-index: 14;
}
.marquee--8 .marquee__item:nth-of-type(15) {
  --marquee-item-index: 15;
}
.marquee--8 .marquee__item:nth-of-type(16) {
  --marquee-item-index: 16;
}

.marquee--3 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--3 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--3 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}

.marquee--6 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}

.marquee--6 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}

.marquee--6 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}

.marquee--6 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}

.marquee--6 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}

@keyframes go {
  to {  
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
 
.text {
	position: absolute;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 17px;
	animation: textRotation 4s linear infinite;
}

@keyframes textRotation {
	to {
		transform: rotate(360deg);
	}
  0% {
    scale: 100%
  }
  50% {
    scale: 150%;
  }
  100% {
    scale: 100%;
  }
}

.text span{
	position: absolute;
	left: 50%;
	font-size: 1.2em;
	transform-origin: 0 78px;
}
.circle {
	position: relative;
	width: 165px;
	height: 165px;
	/* border-radius: 100vmax; */
	display: flex;
	align-items: center;
	justify-content: center;
}


.case-studies-content.one{
 background-size: cover;
 background-position: center;
}
.case-studies-content.two{
  background-size: cover;
  background-position: center;
 }
.case-studies-content.three{
  background-size: cover;
  background-position: center;
 }
.case-studies-content .section-title{
  font-size: 25px;
 }
 .case-studies-content img{
  width: 100%;
 }
/* .case-studies-content p{
  font-size: 20px;
  text-align: left;
  background-image: linear-gradient(135deg, #6e6d6d 16%, #4d4d4db1 64%)
 } */
.case-studies-content .service-content{
 margin-bottom: 20px;
 }
.pt-3.pb-3.hero{
  position: relative;
}
.pt-3.pb-3.hero .bg-eye{
  position: absolute;
  top: 26%;
  left: 30%;
}
.pt-3.pb-3.hero .hexagone{
  position: absolute;
  /* right: 0; */
  
  transform: rotate(118deg);
  top: 10%;
}

.feature-box-works {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
      margin-top: 0px;
  overflow: hidden;
  z-index: 999;
}

.feature-box-works .card {
  flex: 1;
  transition: all 1s ease-in-out;
  height: 585px;
  position: relative;
  background: rgb(84, 84, 84);
  background: linear-gradient(180deg, rgb(84 84 84 / 16%) 2%, rgba(0, 0, 0, 1) 100%);
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.feature-box-works .card.active {
  flex-grow: 10; /* Expanded card takes more space */
  background-color: transparent;
  background: linear-gradient(180deg, rgba(84, 84, 84, 0) 2%, rgb(0 0 0 / 45%) 100%);
}

.feature-box-works .card .card__head {
 color: #686767;
  padding: 10px;
  border-radius: 25px;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  text-align: start;
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 200px;
  font-size: 20px;
}

/* .feature-box-works .card.active .card__head {
  height: 44px;
  text-align: center;
  top: 10%;
  border: 1px solid white;
  color: white;
  left: 6%;
  font-size: 17px;
  transform: rotate(0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
} */

/* .feature-box-works .card video {
  z-index: -2;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  background: rgb(84, 84, 84);
  background: linear-gradient(180deg, rgba(84, 84, 84, 0.709) 2%, rgba(0, 0, 0, 1) 100%);
  border-radius: 10px;
} */

.feature-box-works .card video{
  z-index: -2;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  background: rgb(84, 84, 84);
  background: linear-gradient(180deg, rgba(84, 84, 84, 0.709) 2%, rgba(0, 0, 0, 1) 100%);
  border-radius: 10px;
}
.feature-box-works .card mux-player{
  z-index: -2;
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
  background: rgb(84, 84, 84);
  background: linear-gradient(180deg, rgba(84, 84, 84, 0.709) 2%, rgba(0, 0, 0, 1) 100%);
  border-radius: 10px;
}

.feature-box-works .card.active img {
  filter: grayscale(0); /* Remove grayscale for active card */
}

.feature-box-works .card:not(:last-child) {
  margin-right: 1em; /* Add margin between cards except the last one */
}


    
    /* Video Background Container */
.video-background {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

/* Video Element */
#bg-video {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100%;
  /* height: 100%; */
  object-fit: cover; /* Ensures the video covers the entire area */
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: -1; /* Places the video behind other content */
}

/* Fallback Background (if video doesn't load) */
.video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/fallback-image.jpg') no-repeat center center/cover;
  z-index: -2; /* Places the fallback behind the video */
}
#overlay {
  position: relative;
  /* display: none; */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(0,0,0,0.5); */
  z-index: 2;
  cursor: pointer;
}
.grid-item {
  position:relative;
}
.grid-item.one img{
  position:absolute;
  right: 20%;
  top: 20%;
  left: 20%;
  bottom: 20%;
  height: 230px;
}
.grid-item.two img {
  position: absolute;
  right: 12%;
  top: 20%;
  /* left: 20%; */
  bottom: 20%;
  height: 230px;
}
.grid-item.three img{
  position:absolute;
  right: 20%;
  top: 20%;
  left: 20%;
  bottom: 20%;
  height: 230px;
}
.grid-item.four img{
  position:absolute;
  right: 20%;
  top: 11%;
  left: 20%;
  bottom: 20%;
  height: 230px;
}
.grid-item.five img{
  position:absolute;
  right: 20%;
  top: 20%;
  left: 20%;
  bottom: 20%;
  height: 230px;
}
.grid-item.six img{
  position:absolute;
  right: 3%;
  top: 20%;
  /* left: 20%; */
  bottom: 20%;
  height: 230px;
}


:root {
  --marquee-width: 85%;
  --marquee-height: 60px;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  overflow: hidden; /* Ensure the content is clipped */
  position: relative;
  margin: 30px auto; /* Center the marquee horizontally */
  /* background: rgb(38 37 37 / 32%); */
  border-radius: 16px;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  /* backdrop-filter: blur(4.5px); */
  /* -webkit-backdrop-filter: blur(5.5px); */
}

.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  /*background: linear-gradient(to right, #111 0%, transparent 100%);*/
}

.marquee:after {
  right: 0;
  /*background: linear-gradient(to left, #111 0%, transparent 100%);*/
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
  width: calc(var(--marquee-element-width) * var(--marquee-elements)); /* Set total width of the content */
}

@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 20%;
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  width: 100%;
  border: 2px solid #eee;
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100%;
    --marquee-height: 50px;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}

.creative-grid-content.one{
  position: relative;
  background-image: url(../assets/images/Rectangle-8.png);
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
}
.creative-grid-content.one img{
  position: absolute;
  left: -19%;
  z-index: -2;
}
.hero-content{
  position: relative;
}
.hero-content img{
  position: absolute;
  bottom: -15%;
  right: 5%;
}

.case-studies-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px; /* Adjust the gap between case studies */
}

.case-img {
  height: 60%;
  position: relative;
  width: 100%;
}
.case-img img{
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.case-studies-content {
  flex: 0 0 auto;
 width: 37%; /* Adjust the width of each case study */
}
.service-content.case-s h2{
  text-align: left;
       font-size: 21px;
    letter-spacing: -.4px;
}
.service-content.case-s p{
  font-size: 15px;
}
/* Container to limit the scroll width */
.logo-container {
	--logo-width: 100px;
	--logo-height: 100px;
	--gap: calc(var(--logo-width) / 14);
	--duration: 60s;
	--scroll-start: 0;
	--scroll-end: calc(-100% - var(--gap));
  position: absolute;
	display: flex;
	flex-direction: column;
	gap: var(--gap);
	margin: auto;
	overflow: hidden;
  height: 70%;
    right: 11%;
    top: 15%;
}

/* Scrolling area */
.logo-scroll {
	display: flex;
	overflow: hidden;
  flex-direction:column;
	user-select: none;
	gap: var(--gap);
	mask-image: linear-gradient(
		to bottom, /* Change to vertical gradient */
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 30%,
		hsl(0 0% 0% / 1) 70%,
		hsl(0 0% 0% / 0)
	);
}
.logo-scroll__wrapper {
	flex-shrink: 0;
	display: flex;
	align-items: center;
  flex-direction:column;
	justify-content: space-around;
	gap: var(--gap);
	min-height: 100%;
	animation: scroll 8S linear infinite;
}

/* .logo-scroll__wrapper:nth-child(even) {
	margin-left: calc(var(--logo-width) / 4);
} */


/* Logo styling */
.logo-item {
	width: var(--logo-width); /* Adjust for logo size */
	height: var(--logo-height); /* Adjust for logo size */
	/* transition: transform 0.5s; Smooth scaling effect */
	/* background-color: blue; */
	border-radius: 4px;
}

.logo-item i{
  font-size: 50px;
}

/* Infinite scroll animation */
@keyframes scroll {
	from {
		transform: translateY(var(--scroll-start));
	}
	to {
		transform: translateY(var(--scroll-end));
	}
}

.next-swiper.creativity {
  justify-content: center;
}

section.case-staudies {
  position: relative;
}
section.case-staudies .bg-smoke{
  position: absolute;
  bottom: -8%;
  z-index: -2;
  left: 6%;
}
.contact-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 25px;
  flex-direction: column;
}

.star-img{
  position: absolute;
}

@media (min-width:800px) {
  .text-center.title {
    /* z-index: 999; */
    position: relative;
    /* background-image: url(../assets/images/backgrtounds/Lines.png); */
    /* object-fit: cover; */
    /* width: 800px; */
    /* height: 77px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width:800px) {
  .text-center.title.service {
    /* z-index: 999; */
    position: relative;
    /* background-image: url(../assets/images/backgrtounds/Lines.png); */
    /* object-fit: cover; */
    /* width: 800px; */
    /* height: 77px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width:800px) {
  .text-center.title.service.contact {
    /* z-index: 999; */
    position: relative;
    /* background-image: url(../assets/images/backgrtounds/Lines.png); */
    /* object-fit: cover; */
    /* width: 800px; */
    /* height: 77px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width:800px) {
  .text-center.title.service.creative{
    /* z-index: 999; */
    position: relative;
    /* background-image: url(../assets/images/backgrtounds/Lines.png); */
    /* object-fit: cover; */
    /* width: 800px; */
    /* height: 77px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}

section.how-we-help-section.service .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-center.title h6{
      text-align: center;
  font-size: 16px;
  font-weight: 200;
  /* color: linear-gradient(93.85deg, #FFFFFF 39.79%, rgba(255, 255, 255, 0) 65.29%); */
  color: #ffffff;
  background-image: linear-gradient(309deg, #cfcfcf 40%, #b4adad 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* margin-bottom: 23px; */
  /*letter-spacing: 5px;*/
  font-family: 'Figtree-Semibold';
  text-transform:uppercase;
}
.text-center.title hr{
  width: 50px;

  border: 1px solid #505050;;
}
section.how-we-help-section.service {
  margin-top: 90px;
  margin-bottom: 90px;
}


.containerbox {
  /* From https://css.glass */
/* background: rgba(0, 0, 0, 0.29); */
border-radius: 16px;
/* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
/* backdrop-filter: blur(5.7px); */
/* -webkit-backdrop-filter: blur(5.7px); */
/* border: 1px solid rgba(0, 0, 0, 0.3); */
  border-radius: 24px;
  padding: 70px 0;
  width: 80%;
  /* box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px; */
  view-transition-name: container;

  .list-item:nth-child(1) {
    margin-bottom: -16.5%;;
  }

  .list-item:nth-child(2) {
    margin-bottom: -16.5%;;
    transform: scale(0.95);
  }

  .list-item:nth-child(3) {
    transform: scale(0.9);
  }

  .hide {
    display: none;
  }

  &.expanded {
    .list-item:nth-child(1),
    .list-item:nth-child(2) {
      margin-bottom: 0;
      transform: scale(1);
    }

    .list-item:nth-child(3) {
      transform: scale(1);
    }

    .show {
      display: none;
    }

    .hide {
      display: block;
    }

    .show-hide-btn svg {
      transform: rotate(180deg);
      transition: transform 0.6s;
    }
  }
}

.list.overlay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  view-transition-name: list;
}

.list-item.overlay {
  height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  /* From https://css.glass */
background: rgba(111, 102, 102, 0.29);
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5.7px);
-webkit-backdrop-filter: blur(5.7px);
border: 1px solid rgba(111, 102, 102, 0.3);
  border-radius: 16px;
  /* border: 1px solid #e4e4e7; */
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
}

.list-item:nth-child(1) {
  view-transition-name: list-item-1;
  z-index: 2;
}

.list-item:nth-child(2) {
  view-transition-name: list-item-2;
  z-index: 1;
}

.list-item:nth-child(3) {
  view-transition-name: list-item-3;
  z-index: 0;
}

.icon.overlay {
  width: 48px;
  height: 48px;
  background: #18181b;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.content.overlay {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.title.overlay {
  font-size: 22px;
  font-weight: 500;
  color: white;
}

.subtitle.overlay {
  font-size: 15px;
  color: #d3d3d3;
      font-weight: 200;
}

.date.overlay {
  font-size: 14px;
  color: #959595;
  text-align: right;
}

.show-hide-btnbox:hover{
	background-color: whitesmoke;
    border: 1px solid white;
    border-radius: 25px;
    color: black;
}

.show-hide-btnbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  margin: 6px auto 0 auto;
  width: 140px;
  background: none;
     color: #fefeff;
    border: 1px solid #fefeff;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  view-transition-name: show-hide-btn;

  span {
    display: inline-block;
    text-align: center;
    width: fit-content;
  }

  svg {
    transition: transform 0.3s;
    view-transition-name: show-hide-btn-icon;
  }
}

.containerbox.expanded .show-hide-btnbox svg {
  transform: rotate(-180deg);
}

.show.overlay,
.hide.overlay {
  width: fit-content;
  view-transition-name: button-label;
      font-family: 'Figtree-Semibold';
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

::view-transition-group(*) {
  animation-duration: 0.6s;
  animation-timing-function: linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1);
}

::view-transition-old(*),
::view-transition-new(*) {
  height: 100%;
}

::view-transition-old(button-label),
::view-transition-new(button-label) {
  width: fit-content; 
}

::view-transition-old(button-label) {
  animation-name: fade-out;
  animation-duration: 0.6s;
}
video#bg-video-grid {
  width: 220px;
  position: absolute;
  z-index: -1;
}
.grid-item.two video#bg-video-grid {
  right: 9%;
  top: 19%;
}
.grid-item.three video#bg-video-grid{
  top: -4%;
  right: 23%;
}
.grid-item.four video#bg-video-grid{
  top: 4%;
  right: 23%;
}
.grid-item.five video#bg-video-grid{
  top: 4%;
  right: 23%;
}
.grid-item.six video#bg-video-grid{
  top: 18%;
  right: 6%;
}

button.case-read {
  left: 6%;
  bottom: 6%;
  /* padding: 10px 20px; */
  background-color: transparent;
  border: none;
  /* border-radius: 25px; */
  color: white;
  gap: 15px;
  justify-content: center;
  align-items: center;
  /* font-size: 11px; */
  display: flex;
      justify-content: center;
}
button.case-read .right-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
button.case-read:hover .right-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

button.case-read a{
  font-size: 17px;
}
.about-banner{
  position: relative;
  height: 600px;
  display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 150px;
}
.about-banner .banner-content {
  text-align: center;
  color: white;
  padding: 25px;
  z-index: 999;
}
.about-banner .banner-content h2{
     font-size: 70px;
    font-weight: 500;
    letter-spacing: .5px;
 /* font-family: 'Sharp Sans', sans-serif; */
}
.about-banner .banner-content p{
    font-size: 20px;
    font-weight: 200;
    /*letter-spacing: -.8px;*/
        font-family: 'Figtree-Medium';
 /* font-family: 'Sharp Sans', sans-serif; */
}

.about-banner .about-hexag{
  position: absolute;
  right: 0;
  top: 0%;
  display: none;
}
.about-banner .about-counter{
  position: absolute;
  bottom: -159px;
  width: 100%;
}
img.abt-section-img {
  width: 100%;
}
section.table-content{
  padding-top: 130px;
  /* background-color: #5e5e5e00;
  background-image: linear-gradient(204deg, #212121a3 0%, #1f1f1f00 74%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.8px); */
}
.table-content .touble-content {
  display: flex;
  color: white;
}
.table-content .touble-content .first-content{
  display: flex;
  width: 40%;
}
.table-content .touble-content .second-content{
  display: flex;
  flex-direction: column;
  width: 60%;
  border-left: 1px solid #484847;
  padding: 50px;
}
.table-content .touble-content .second-content .tb-content-about{
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}
.table-content .touble-content .second-content .tb-content-about hr{
   width: 90%;
   margin-left: -150px;
   background-color: #484847;
  height: 1px;
   border: none;
}
.table-content .touble-content .second-content .tb-content-about h1{
   width: 80%;
           font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
    /*letter-spacing: .7px;*/
   /* font-family: 'Sharp Sans', sans-serif; */
}
.table-content .touble-content .second-content .tb-content-about p{
   width: 85%;
   color: #ffffff;
   background-image: linear-gradient(357deg, #b5b5b5 40%, #ffffff 80%);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   /* font-family: 'Sharp Sans', sans-serif; */
       font-size: 18px;
    font-weight: 300;
    line-height: 2;
    /*letter-spacing: .3px;*/

   
}
.table-content .touble-content .first-content{
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 54px;
} 
.content-icon img{
  width: 60px;
}
.table-content .touble-content .first-content h1{
  font-size: 40px;
  letter-spacing: 1px;
}
.editors-logos .container{
  /* position: relative; */
}
img.hexagone {
  position: absolute;
  width: 31%;
  top: 40%;
  left: 31.5%;
  z-index: -1;
  opacity: 0.1;
}
section.main {
  position: relative;
  
}
@media (max-width:991px){
  #bg-video {
    position: absolute;
    top: 14%;
    left: 50%;
    height: 29%;
}
}
.container.approaches {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.approaches-content{
  position: relative;
  display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10%;
}
.approaches-bg{
  position: absolute;
  left: 31%;
  z-index: -22;
}
.appraches-content-flex {
  width: 584px;
  /* box-shadow: 0px 0px 96px 0px rgba(255, 255, 255, 0.1) inset; */
  background-color: hsl(0deg 0% 4.41%);
  padding: 60px;
  margin-top: 100px;
  display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
      text-align: left; 
      color: white;
      gap: 7px;
      /*height: 300px;*/
      border-radius: 15px;
}


section.footprints {
  margin-top: 130px;
}

.appraches-content-flex img{
 
 width: 60px;
}

.appraches-content-flex p{
  display: flex;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: .4px;
}
.appraches-content-flex h1{
 color: white;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .8px;
        margin-bottom: 7px;
    margin-top: 7px;
}

section.about-approaches {
  padding-top: 130px;
  /* background-color: #5e5e5e00;
    background-image: linear-gradient(16deg, #212121a3 0%, #1f1f1f00 74%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.8px); */
}
@media (max-width:991px) {
  .approaches-content{
   
   flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10%;
        padding: 10px 0px;
  }
}

@media (max-width:991px) {
  .approaches-bg{
    display: none;
  }
}


.grid-value {
  display: grid;
  grid-template-columns: 33% 27% 33%;
  padding: 20px 120px;
  gap: 25px;
}
.value-grid.content-one {
  grid-column-start: 2;
  grid-column-end: 4;
  display: flex;
  flex-direction: column;
}
.value-grid.content-two {
  grid-column-end: 3;
  grid-column-start: 1;
}
.container.values {
  padding: 50px;
}
.value-grid-icon {
  height: 70px;
  width: 70px;
  background-color:  rgba(250, 209, 14, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.value-grid{
  border: 1px solid #ffffff7d;
  border-radius: 15px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px ;
   font-size: 17px; 
    font-weight: 400;
    /*letter-spacing: .5px;*/
    background-color: hsl(0deg 0% 4.41%);
    letter-spacing: .5px;
    line-height: 1.8;
}
.value-grid-header h2{
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
  margin-top: 8px;
  letter-spacing: .5px;
}
.value-grid-header h1{
     font-weight: 500;
    font-size: 32px;
    line-height: 1;letter-spacing: .5px;

}
section.values {
  padding-top: 130px;
  background-color: #5e5e5e00;
  background-image: linear-gradient(163deg, #212121a3 0%, #1f1f1f00 74%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.8px);
}
 
@media (max-width:991px) {
  .grid-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0;
  }
}
@media (max-width:991px) {
  .value-grid {
  width: 90%;
  }
}
@media (max-width:991px) {
  .container.values {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
}
@media (min-width:768px) {
  .content-text {
    /* margin-top: 20px; */
    display: flex;
    justify-content: space-between;
    width: 80%;
  }
}
.business-bg-head{
  background-image: url(../assets/images/about/business-bg.png);
  /* height: 100%; */
  width: 34%;
  border-radius: 15px;
  color: white;
  background-size: cover;
  padding: 60px;
  background-repeat: no-repeat;
}

.business-flex-content{
  width: 60%;
  display: flex;
      flex-direction: column;
      gap: 35px;
}
.container.business-process {
  display: flex;
  justify-content: center;
  width: 90%;
  gap: 35px;
}
section.business-pro {
  margin: 130px 40px;
}
.business-content {
  display: flex;
  border-radius: 15px;
  padding: 36px;
  color: white;
  align-items: center;
  justify-content: space-between;
  /* box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .075), inset 0 0 5vw hsla(0, 0%, 100%, .05); */
  background-color: hsl(0deg 0% 4.41%);
    /* background-image: radial-gradient(140% 107.13% at 50% 10%, transparent 40%, hsla(0, 0%, 100%, .05) 75%, hsla(0, 0%, 100%, .1) 100%); */
  /* border: 1px solid 0px 0px 96px 0px rgba(255, 255, 255, 0.05) inset; */

}

.business-content:hover {
  /* box-shadow: 0px 0px 96px 0px rgba(255, 255, 255, 0.05) inset; */
  background-color: hsl(0deg 0.13% 12.9%);
  border: 1px solid 0px 0px 96px 0px rgba(255, 255, 255, 0.05) inset;
}



.footprint-img{
  width: 67%;
  background-image: url(../assets/images/about/footprint-img.png);
  background-size: cover;
  display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding: 40px;
      border-radius: 15px;
      background-repeat: no-repeat;
      position: relative;
}
.footprint-flex-content{
  width: 36%;
  display: flex;
      flex-direction: column;
      gap: 30px;
}
.footprint-content {
  display: flex;
  gap: 30px;
}
.container.footprints {
  width: 80%;
  display: flex
;
    flex-direction: column;
    gap: 40px;
}
.flex-content-foot {
  /* width: 25%; */
  border-radius: 15px;
  height: 280px;
  background-color: rgba(26, 26, 26, 1);
  display: flex;
  align-items: center;
  padding: 0 40px;
      padding-bottom: -20px;
}
img.quate {
  width: 70px;
  display: none;
}
.review-clients {
  width: 100%;
  text-wrap: auto;
  /* text-align: center; */
  border-bottom: 1px solid;
  padding-bottom: 15px;
}
.review-clients p{
  
  text-align: left;
  color: white;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0;
    font-size: 16px;
    /*letter-spacing: .5px;*/
        font-family: 'Figtree-Medium';
}
h2.case-s.client.section-title {
  margin-bottom: 0px;
  text-align: left;
  font-size: 23px;
}
p.client-position {
  margin-top: 0;
  text-align: left;
}
.case-studies-content.client-card.one {
  gap: 20px;
  align-items: center;
  width: 400px;
  height: 550px;
  justify-content: center;
  padding-bottom: 35px;
}
.case-img.client-dp {
  height: 45%;
  width: 100%;
}
.case-s.client-n.service-content {
  margin-top: 12px;
  margin-bottom: 0;
  width: 100%;
}
.container.clients {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.client {
  margin: 130px 40px;
}
@media (max-width:991px) {
  .footprint-content {
  flex-direction: column;
    gap: 30px;
}
}
@media (max-width:991px) {
  .footprint-flex-content{
    width: 100%;
  }
}
@media (max-width:991px) {
  .footprint-img {
    width: 100%;
    height: 765px;
    padding: 30px;
  }
}
@media (max-width:991px) {
  h2.case-s.client.section-title {
    text-align: left !important;
  }
}
@media (max-width:991px) {
  p.client-position  {
    text-align: left !important;
  }
}
@media (max-width:1100px) {
  .container.business-process {
    flex-direction: column;
}
}
@media (max-width:1100px) {
.business-bg-head {
   width: 100%;
}
.business-flex-content {
  width: 100%;
}
}


@media (max-width:991px) {
  img.footer-logo.one {
    display: flex;
  }
  
}
@media (max-width:991px) {
  .table-content .touble-content {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width:991px) {
  .table-content .touble-content .second-content  {
   width: 100%;
   padding-left: 50px;
  }
  .table-content .touble-content .first-content  {
    width: 100%;
   }
}
@media (max-width:601px) {
  .table-content .touble-content .second-content  {
    width: 100%;
    padding-left: 25px;
   }
}
@media (max-width:601px) {
  .table-content .touble-content .first-content  {
   width: 100%;
   padding-left: 25px;
  }
}
@media (max-width:501px) {
  .table-content .touble-content .first-content  {
    width: 100%;
    /* margin-left: 24px; */
  }
}
.our-service-grid {
  display: grid;
  grid-template-columns: 48% 49%;
  gap: 2%;
  width: 100%;
}
.container.our-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px;
  padding-bottom: 130px;
  gap: 55px;
}
.our-service-grid-container {
  border: 1px solid #363636d4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 35px;
  height: 370px;
  border-radius: 15px;
  position: relative;
  background-color: black;
  text-overflow: ellipsis;
  overflow: hidden;
 white-space: nowrap;
 -webkit-transition: 1s; /* For Safari 3.1 to 6.0 */
 transition: 1s ease-out;
}
.service-grid-content {
  /* border: 1px solid #363636d4; */
  /* width: 55%; */
  display: flex;
      flex-direction: column;
      /* align-items: center; */
      /* margin-left: 57px; */
      margin-bottom: 45px;
}
h1.service-number {
  font-size: 116px;
  font-weight: 500;
  margin-bottom: 120px;
  color: #1b1b1b;
  /*letter-spacing: -12.0px;*/

}
.our-service-grid-container .right-icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #FDD20D;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(320deg);
  position: absolute;
  top: 25px;
  right: 25px;
  display: none;
}
.our-service-grid-container:hover{
  background-color: white;
  
}
.our-service-grid-container:hover .service-grid-content .service-facilitate{
  /* transition: all 5s ease-in-out; */
  display: flex;
  margin: 20px 0 10px 0px;
  flex-wrap: wrap;
}
.our-service-grid-container .service-grid-content .service-facilitate {
  display: none;
  gap: 15px;
  padding-bottom: 15px;
}
.our-service-grid-container .service-grid-content h1 a{
  /* width: 70%;
  overflow: hidden;
  text-wrap: initial; */
  font-size: 48px;
  /* letter-spacing: -1px; */
  font-weight: 500;
  color: black;
  line-height: 1.2;
  color: #a3a3a3;
  
}
.our-service-grid-container:hover .service-grid-content h1 a{
  /* width: 53%;
  overflow: hidden;
  text-wrap: initial; */
  font-size: 42px;
  letter-spacing: -.5px;
  font-weight: 600;
  color: black;
  animation: fadeInUp 0.4s ease backwards;
  line-height: 1.2;
  /* transition: transform .3s ease-out .3s, opacity .5s ease-out .3s; */
}
.our-service-grid-container:hover .right-icon{
  display: flex;
  animation: fadeInUp 0.4s ease backwards;
}


@keyframes fadeInUp{
  0%{transform:translate(0px, 50px); opacity: 0;}
  100%{transform:translate(0px, 0); opacity: 1;}
}

.value-grid.value-header {
  border: none;
  background: transparent;
}
.footprint-headers {
  position: absolute;
  top: 96px;
  left: 20px;
}
.container.get-in {
  display: flex;
  flex-direction: column;
  padding: 0 35px;
  gap: 70px;
}
.Get-in-touch .get-content {
  display: flex;
  justify-content: flex-start;
  gap: 3%;
  
  /* align-items: flex-end; */
  /* border: 1px solid; */
}
.Get-in-touch .get-content .get-locate-box {
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 35px;
  width: 24%;
  border-radius: 20px;
  height: 120px;
}

.Get-in-touch .get-content .get-locate-box .locate{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.address{
  width: 100%;
}
.get-locate-box .locate h2{
color: #ffffff;
    /* font-weight: 300; */
    /* letter-spacing: 0px; */
    font-size: 24px;
    line-height: 1.4;
}

.digitel-address p{
       /* font-weight: 300; */
        line-height: 2;
    font-size: 17px;
    letter-spacing: .6px;
}
.digitel-address ul span{
       font-weight: 600;
    line-height: 2;
    font-size: 17px;
    letter-spacing: .4px;
}
.digitel-address ul li{
       font-weight: 300;
    line-height: 2;
    font-size: 18px;
    letter-spacing: .4px;
    margin-top: 5px;
        margin-left: 15px;
            font-family: 'Figtree-Medium';
}
.digitel-address  span{
       font-weight: 500;
    line-height: 2;
    font-size: 19px;
    letter-spacing: .4px;
}

.get-locate-box .address{
  display: flex;
  flex-direction: column;
  color: white;
  animation: fadeInUp 0.7s ease backwards;
}

.cotainer.connect-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 1px solid;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 96px 0px rgba(255, 255, 255, 0.1) inset;
    
}
.cotainer.connect-container:hover{
 box-shadow: none;
}
section.contact-connect {
  padding: 50px 7%;
}
section.Get-in-touch {
  padding: 5%;
  height: 555px;
  background-color: #5e5e5e00;
  background-image: linear-gradient(24deg, #212121a3 0%, #1f1f1f00 74%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.8px);
  -webkit-backdrop-filter: blur(9.8px);
}

.connect-boxes {
  /* border: 1px solid; */
  padding: 30px 80px;
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #e5e5e5;
}
.connect-boxes.connect-mobile {
  border-left: 1px solid #272727;
  padding: 30px 110px;
  border-right: 1px solid #272727;
}

section.section-form {
  margin-bottom: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 100px;
  padding-top: 50px;
  margin-bottom: 120px;
  padding-bottom: 50px;
  /* font-family: 'Poppins', sans-serif; */
  background-image: url(../assets/images/about/Rectangle\ 42.png);
  margin: 50px 7%;
  object-fit: cover;
  background-repeat: no-repeat;
}

.form-container {
  background-color: rgb(0, 0, 0);
  width: 850px;
  /* max-width: 800px; */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
}

label {
  display: block;
  /* margin-bottom: 8px; */
  font-weight: 500;
  color: #333;
      font-size: 17px;
}

input, select, textarea {
  border-top: none;
  width: 100%;
  border-left: none;
  border-right: none;
  padding: 12px;
  color: white;
  /* border-radius: 4px; */
  font-size: 16px;
  background-color: transparent;
}
select#service {
  background: black;
  font-size: 16px;
  padding: 10px;
}
textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  margin-top: 20px;
  text-align: center;
}



@media (max-width: 600px) {
  .form-row {
      flex-direction: column;
      gap: 15px;
  }
} 
@media (max-width: 701px) {
 .card-content-limitless-container > div {
    height: 60%;
    width: 100% !important;
 }
 .card-content-limitless-container figure {
    width: 100%;
    /* height: 30%; */
    grid-area: img;
    overflow: hidden;
}

} 
.btn-primary input {
  background-color: transparent;
  border: none;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  /* border-radius: 4px; */
  cursor: pointer;
  transition: background-color 0.3s;
  width: 70%;
}
.form-container .btn-primary{
  width: 210px;
  gap: 0;
}
section.contct-p-text {
  padding: 50px 7%;
}
section.about-banner.work-detail-banner {
  padding: 140px 7%;
      padding-bottom: 0px;
  height: auto;
}
.work-details-content {
  display: flex;
  z-index: 1;
  gap: 55px;
  padding:0 20px 80px 20px;
  border-bottom: 1px solid;
}
.work-details-content .work-details {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.work-details-content .work-details p{
      color: white;
    font-weight: 400;
    margin-top: 37px;
    line-height: 2;
    font-size: 17px;
}
.work-details-content .work-content {
  width: 35%;
  display: flex;
    flex-direction: column;
    gap: 35px;
}
.using-tool1 {
  display: flex;
  gap: 25px;
}
.cont {
  border: 1px solid white;
  padding: 7px 14px;
  border-radius: 50px;
  color: white;
}
.work-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.work-content .heder h1{
  font-size: 25px;
    color: white;
    font-weight: 300;
	    margin-bottom: 15px;
}
.work-content .heder p{
  font-size: 16px;
    color: white;
    width: 70%;
    font-weight: 300;
}

section.work-demo-section {
  padding: 40px 1%;
  z-index: 99;
  position: relative;
  padding-bottom: 0;
} 
.container.work-demo {
  /* display: grid; */
  grid-template-columns: 48% 48%;
  gap: 3%;
  padding-bottom: 0;
}
.demo-img.demo-one {
  position: sticky;
  top: 15%;
    z-index: -1;
    display: flex;
        justify-content: center;
}
.cotainer.work-scope {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  /* border: 1px solid; */
  padding: 100px;
  border-radius: 20px;
 background-color: hsl(0deg 0% 4.41%);;

}
.cotainer.work-scope h1{
      font-size: 33px;
    color: white;
    font-weight: 500;
    letter-spacing: .6px;

}
.cotainer.work-scope .wrk-p{
      font-size: 17px;
    color: white;
    font-weight: 400;


}
.scope-contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* margin-top: 50px; */
  width: 60%;
}
.scope-contents p{
  font-size: 17px;
    color: white;
    font-weight: 400;
}
.scope-contents span{
  font-size: 25px;
  color: white;
  font-weight: 400;
}
.container.mockup-container {
  display: flex;
  gap: 25px;
}
.mock-cont-right.third3 {
  padding: 20px 25px;
  border: 1px solid #747070;
  border-radius: 15px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mock-cont.content111 img{
  height: 100%;
  border-radius: 16px;
}
.mock-cont-right img{
  width: 100%;
  border-radius: 16px;
}
.mock-cont-right.year-base {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.container-formm {
  width: 100%;
  display: flex;
      flex-direction: column;
      align-items: center;
}

.container.case-staudies.whycode-face .case-img {
  height: auto;
  width: auto;
}
.case-studies-content.code-face-why-content {
  height: 290px;
  width: 416px;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
}
.case-studies-content.code-face-why-content h2.section-title.case-s {
  text-align: center;
  margin-bottom: 10px;
}
.case-studies-content.code-face-why-content .service-content.case-s p {
  font-size: 16px;
  font-weight: 300;
  color: white;
}
.our-team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 23% 23% 23% 23%;
  align-items: center;
  justify-content: center;
}
section.our-team-section {
  padding: 50px 7%;
}
.team-members h2{
  color: white;
  font-size: 21px;
  font-weight: 300;
}
.team-members h5{
  color: white;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 2px;
}
.team-members {
  margin-top: 20px;
}
.team-members .img {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #000;
  overflow: hidden; 
}
.team-members .img img{
  transition: 0.3s;
  
}
.team-members .img:hover img{
  transform: scale(1.1);
}
.container.our-team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#bgvid{
  height: 100%;
  width: 100%;
  border-radius: 15px;
  z-index: 999;
}
#button{
  position: absolute;
  z-index: 999;
  font-size: 90px;
  top: 40%;
  background-color: transparent;
  border: none;
}
.sec-header{
  position: absolute;
  z-index: 999;
  bottom: 14%;
  right: 14%;
}

section.limitless {
  padding: 50px 7%;
}


.logo-container-service-2{
  --logo-width: 100px;
  --logo-height: 100px;
  --gap: calc(var(--logo-width) / 6);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  /* position: absolute; */
  display: flex;
  flex-direction: row; /* Change to row */
  gap: var(--gap);
  margin: auto;
  overflow: hidden;
  width: 70%; /* set width instead of height */
  height: auto;
  top: 7%;
  left: 11%;
}

/* Scrolling area */
.logo-container-service-2 .logo-scroll.service-2 {
  display: flex;
  overflow: hidden;
  flex-direction: row; /* Change to horizontal */
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    to right, /* Change to horizontal gradient */
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.logo-container-service-2 .logo-scroll__wrapper.service-2 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row; /* Horizontal layout */
  gap: var(--gap);
  min-width: 100%; /* Instead of min-height */
  animation: scroll-x 30s linear infinite;
}

.logo-container-service-2 .logo-scroll__wrapper.service-2 .logo-item {
  width: var(--logo-width);
  height: var(--logo-height);
  border-radius: 4px;
}

.logo-container-service-2 .logo-scroll__wrapper.service-2 .logo-item i {
  font-size: 60px;
}

/* Horizontal scroll animation */
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

.logo-container-main.service-2 {
  width: 100%;
}

.services-tiltles.scroll-cse {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-evenly;
}
.scroll-text  a{
  color: white;
  font-size: 24px;
  line-height: 1.2;
}
.scroll-text hr {
  display: none;

}
.scroll-text.active-hr hr {
  display: flex;
  border: none;
  background-color: yellow;
  height: 5px;
  width: 50%;
  margin-left: 50%;
}
.creative-grid-content.services-22.two {
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (min-width:1430px) {
  .case-studies-container.why-code-face {
    display: grid;
    grid-template-columns:  32% 32% 32%;;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }

}
@media (min-width:1091px) and (max-width:1429px) {
  .case-studies-container.why-code-face {
    display: flex;
            /* grid-template-columns: 24% 24% 24%; */
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
  }
}

.contact-details div{
  display: flex;
  line-height: 2px;
  flex-direction: column;
  height: 50px;
}
.contact-details p{

  height: 50px;
}

.footer-location {
  width: 240px;
  display: flex;
      flex-direction: column;
      gap: 7px;
      margin-right: 20px;
  }

  @media (max-width:500px) {
    .footer-location {
  width: 100%;
  display: flex;
      flex-direction: column;
      gap: 13px;
      margin-bottom: 10px;
  }
  .contact{
    margin-top: 0;
  }
  }

  
@media (max-width:991px) {
  .desktop-flex-view {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    gap: 35px;
    align-items: start;
}
}
@media (min-width:991px) {
  .desktop-flex-view {
    display: flex;
    width: 100%;
    justify-content: start;
    gap: 55px;
    align-items: anchor-center;
}
}


/* works page */

section.project-stand-out-section {
  padding: 50px 6%;
  padding-bottom: 100px;
}



.stand-out-sub-text {
  border-left: 5px solid #FDD20D;
  padding: 9px 30px;
}

.stand-out-sub-text h1{
 font-size: 21px;
 color: white;
 font-weight: 300;
 line-height: 28px;
}
.container.project-stand-out-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.stand-out {
  padding-left: 120px;
}
.project-stand-out-content {
  /* position: absolute; */
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  /* width: 30%; */
  /* border-top: 1px solid #393939; */
  /* margin-bottom: 55px; */
}
.project-stand-out-content .img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}
.project-stand-out-content .img:hover img{
 transform: scale(1.1);
 border-radius: 15px;
}
.project-stand-out-content .img img{
  transition: 0.3s;
      /* height: 300px; */
    width: 100%;
    border-radius: 15px;
}
.project-stand-out-content .img video{
  transition: 0.3s;
      /* height: 300px; */
    width: 100%;
    border-radius: 15px;
}
.work-detail-content {
  display: flex;
  align-items: start;
  gap: 20px;
  width: 100%;
  /* padding-left: 25%; */
  flex-direction: column;
}

.project-stand-out-work-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  width: 100%;
  gap: 13px;
}
h1.main-text-work {
  font-size: 17px;
  line-height: 1.8;
  color: white;
  font-weight: 400;
      font-family: 'Figtree-Medium';
}
h2.sub-text-work {
  font-size: 17px;
  line-height: 1.3;
  color: white;
  font-weight: 300;
}
.name-of-work {
  font-size: 29px;
  color: white;
      line-height: 1.3;
  font-weight: 300;
  cursor: pointer;
}
/* h1.name-of-work:hover {
  color: #FDD20D;
  border-bottom: 1px solid #FDD20D;
  padding-bottom: 5px;
} */
section.section-contact.success-story {
  margin: 0;
    padding: 50px;
    padding-top: 0px;
    border-radius: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    backdrop-filter: none;
}
.container.case-staudies.contact.success-story {
  padding-top: 0;
}

@media (max-width:991px) {
  .work-detail-content {
    padding-left: 5%;
  }
}
@media (max-width:551px) {
  .work-detail-content {
    padding-left: 0;
    flex-direction: column;
  }
  .project-stand-out-work-content {
    width: 100%;
  }
}
@media (max-width:701px) {
  .stand-out {
    padding-left: 2%;
}
}



/* css card stacking section in servive-detail-pages */


:root {
  --card-height: 40vw;
  --card-margin: 4vw;
  --card-top-offset: 1em;
  --numcards: 6;
  --outline-width: 0px;
}

#cards-limitless-container {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-rows: repeat(6, 40vw); */
  gap: 30px;
  padding-bottom: 80px; /* fixed calc usage */
  margin-bottom:00px;
  view-timeline-name: --cards-element-scrolls-in-body;
}

#card-1 { --index: 1; }
#card-2 { --index: 2; }
#card-3 { --index: 3; }
#card-4 { --index: 4; }
#card-5 { --index: 5; }
#card-6 { --index: 6; }

.card-limitless-container {
  position: sticky;
  top: 3%;
  padding-top: calc(var(--index) * 1em);
  --index0: calc(var(--index) - 1);
	/* --reverse-index: calc(var(--numcards) - var(--index0)); 
	--reverse-index0: calc(var(--reverse-index) - 1);  */
}

.card-content-limitless-container {
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
  color: white;
  border: 1px solid rgb(45, 43, 43);
      background-color: #0a0a0a;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-areas: "text img";
  grid-template-columns: 55% 35%;
  grid-template-rows: auto;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px;
  height: 550px;
  --start-range: calc(var(--index0) / var(--numcards) * 100%);
  --end-range: calc((var(--index)) / var(--numcards) * 100%);
  animation: linear scale forwards;
  animation-timeline: --cards-element-scrolls-in-body;
  animation-range: exit-crossing var(--start-range) exit-crossing var(--end-range);
}

@keyframes scale {
	to {
		transform:
			scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
	}
}
.card-content-limitless-container > div {
  grid-area: text;
  width: 95%;
  max-width: 800px;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
}

.card-content-limitless-container figure {
  grid-area: img;
  overflow: hidden;
}

.card-content-limitless-container figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.4em;
}



.card-content-limitless-container h2 {
  font-weight: 500;
  font-size: 35px;
  margin: 0;
}

.card-content-limitless-container p {
     font-weight: 400;
    line-height: 2.1;
    font-size: 17px;
    letter-spacing: .4px;
}

@media (max-width:991px) {
  section.limitless {
    padding: 50px 7%;
    height: auto;
    padding-bottom: 0px;
}
}

@media (max-width:501px) {
  #cards-limitless-container {
    
    margin-bottom: 0px;
}
}
@media (max-width:901px) {
  .card-content-limitless-container { 
    display: flex;
    flex-direction: column-reverse;
    gap: 22px;
    padding: 20px 20px;
}
.card-content-limitless-container figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.4em;
}
#cards-limitless-container {
  
  gap: 32px;

}
.card-content-limitless-container h2 {
  font-weight: 500;
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
}
.card-content-limitless-container p {
    font-weight: 400;
    line-height: 2;
    font-size: 13px;
    letter-spacing: .4px;
}
}

@media (max-width:571px) {
  #cards-limitless-container {
  
    gap: 30px;
  
  }
}
@media (max-width:510px) {
  #cards-limitless-container {
  
    gap: 30px;
  
  }
}
@media (max-width:1300px) {
  .container.limitless-container {
    padding-bottom: 0px;
}
}
@media (max-width:460px) {
  #cards-limitless-container {
  
    gap: 40px;
  
  }
}


/* Scroll Animation */
@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets:
      selector(#cards-limitless-container) start 1,
      selector(#cards-limitless-container) start 0;
    start: selector(#cards-limitless-container) start 1;
    end: selector(#cards-limitless-container) start 0;
    time-range: 4s;
  }

  .card-limitless-container {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(4 - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card-content-limitless-container {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform: scale(calc(1.1 - (0.1 * var(--reverse-index))));
    }
  }
}
.text-center.title.service.creative {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-grediant {
  position: absolute;
  z-index: -1;
  top: 14%;
  width: 450px;
  left: 35%;
  -webkit-animation: rotation 10s infinite linear;
  display: block;
 
}

@-webkit-keyframes rotation {

25% {
  transform:   rotate(90deg) scale(1.2, 1.2);
}
50% {
  transform:   rotate(180deg) scale(1.5, 1.5);
}
75% {
  transform:   rotate(270deg) scale(1.2, 1.2);
}
  100% {
    transform: scale(1, 1) rotate(360deg);
    
  }
}

img.footer-logo {
  /* position: absolute; */
  /* bottom: 12%; */
  /*width: 500px;*/
}
.ftr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

@media (max-width:991px) {
  img.footer-logo {
    position: relative;
    width: 400px !important;
    margin-bottom: 50px;
}
}

.text-center.title.service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.text-center.title {
  display: flex;
    align-items: center;
    gap: 22px;
}

img.company-icon-approaches {
  position: absolute;
  width: 150px;
  z-index: -2;
}

.our-service-grid-container:hover h1.service-number {
  display: none;
}

.service-facilitate {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 15px;
}
.service-addon {
    font-size: 14px;
  border: 1px solid;
  border-radius: 30px;
  padding: 12px 20px;
  /* width: 150px; */
  display: flex;
  align-items: center;
  justify-content: center;
      line-height: 1.1;
    text-decoration: none;
  z-index: 0;
}



.our-service-grid-container .service-addon {
    font-size: 14px;
  border: 1px solid;
  border-radius: 30px;
  padding: 12px 20px;
  /* width: 150px; */
  display: flex;
  align-items: center;
  justify-content: center;
      line-height: 1.1;
    text-decoration: none;
  overflow: hidden;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
}


.our-service-grid-container .service-addon::after {
  content: '';
  background-color: black;
  border-radius: 3rem;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.3s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.our-service-grid-container .service-addon:hover::after {
  transform: translate(0, 0);
}

.our-service-grid-container .service-addon:hover {
  border: 1px solid transparent;
  color: rgb(255, 255, 255);
  transform: scale(1.05);
  will-change: transform;
}


.bnr-gredient {
  /* background: rgba(255, 255, 255, 0.14); */
  /* background-color: #2d3436; */
  /* background-image: linear-gradient(315deg, #2d343647 0%, #00000000 74%); */
  background-color: #5e5e5e00;
  background-image: linear-gradient(204deg, #20011b 0%, #1f1f1f00 74%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /*backdrop-filter: blur(9.8px);*/
  -webkit-backdrop-filter: blur(9.8px);
}
.project-works {
  display: flex;
  gap: 55px;
      /* grid-template-columns: 30% 30% 30%; */
  justify-content: space-between;
  /* height: 1800px; */
  
}

.demo-img-scroll {
  display: flex;
  background-color: #5e5e5e00;
  width: 100%;
  background-image: linear-gradient(to left, #000000 0%, black 25%, #000000 50%, black 100%);
    padding: 100px 40px;
    outline: none;   
    justify-content: center;
    gap: 25px;
}

.project-stand-out-content.left {
  width: 60%;
  height: 600px;
}
.project-stand-out-content.right .img {
  width: 100%;
  height: 300px;
}
.project-stand-out-content.right {
  height: 720px;
  width: 40%;
}
.project-works hr{
  border: 1px solid #43434382 ;
  width: 1px;
}


.circle-img {
  position: absolute;
  width: 250px;
  top: -18%;
  left: -28%;
}
.circle-img img{
  position: absolute;
  width: 250px;
  top: -25%;
  left: -1%;
  -webkit-animation: circle-rotate 7s infinite linear;
}

@-webkit-keyframes circle-rotate {

  20% {
    transform:   rotate(90deg) scale( 1.2);
  }
  50% {
    transform:   rotate(180deg) scale( 1.5);
  }
  75% {
    transform:   rotate(270deg) scale( 1.2);
  }
    100% {
      transform: scale( 1) rotate(360deg);
      
    }
  }



  .value-grid-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.editors-logos.service-detail {
  /* margin-top: -185px; */
  z-index: 999;
  position: relative;
  background: #1a1b1c;
  background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(0 0 0 / 73%) 50%, rgb(0 0 0 / 0%) 100%);
  width: 90%;
  margin-left: 5%;
}

.creative-grid-content.four img{
  height: 100%;
  width: 100%;
  border-radius: 16px;
}
.creative-grid-content.five img{
  height: 100%;
  width: 100%;
  border-radius: 16px;
}

  section.about-banner.work-detail-banner video {
    width: 80%;
    height: auto;
    border-radius: 10px;
}


.wrk-header .right-icon{
  background-color: white;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: black;
}
.wrk-header:hover .right-icon{
  background-color: transparent;
  border: 1px solid white;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: rgb(255, 255, 255);
}

.wrk-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}




/* header sub menu  css */

ul.sub-menu .sub-img{
  width: 250px;
    height: 150px;
}
ul.sub-menu .sub-img img{
  width: 100%;
    height: 100%;
}

ul.sub-menu li{
  display: flex;
}
.sub-active ul.sub-menu li:hover .sub-menu-div{
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 20px;
  gap: 30px;
  width: 75%;
  right: 0;
  bottom: 15%;
  position: absolute;
}

ul.sub-menu .sub-menu-div .sub-menu-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 60%;
}
ul.sub-menu .sub-menu-div .sub-menu-content p{
    width: 100%;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .7px;
    padding-right: 12px;
}

ul.sub-menu .sub-logos{
  display: flex;
}
ul.sub-menu .sub-logos img{
  width: 100px;
  height: 50px;
}
.sub-active:hover ul.sub-menu{
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);

}
.sub-active ul.sub-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  background: rgb(13 13 13);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgb(0, 0, 0);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
    left: -116px;
    top: 57px;
  transform-origin: top center;
  position: absolute;
  align-items: start;
  padding-left: 0px;
  padding-right: 0px;
  gap: 20px;
    justify-content: center;
  flex-direction: column;
  width: 1000px;
    height: 450px;
  z-index: 9999999999;
  border-radius: 15px;
}
 ul.sub-menu li a{
  width: 30%;
  display: flex;
    align-items: center;
    gap: 10px;
}
 ul.sub-menu li a i{
  transform: rotate(90deg);
}
 ul.sub-menu li a:hover i{
  transform: rotate(0deg);
}
 
.sub-menu-container{
 position: relative;
 width: 100%;
 display: flex;
     flex-direction: column;
     gap: 25px;
}

.sub-menu-div {
  display: none;
  position: absolute;
  width: 65%;
  right: 50px;
  transition: all 0.3s ease;
  height: 100%;
}

.sub-menu-container > li a.active .sub-menu-div {
  display: flex;
}

.li-hover1one:hover + .active1one,
.li-hover2two:hover + .active2two,
.li-hover3three:hover + .active3three,
.li-hover4four:hover + .active4four,
.li-hover5five:hover + .active5five,
.li-hover6six:hover + .active6six {
  display: flex !important;
}

.sub-active:hover .active1one {
  display: flex;
  position: absolute;
  /* width: 70%; */
  height: 100%;
  /* right: 0; */
  align-items: center;
  /* top: 50px; */
}

/* foot print page css */
section.banner-footprint {
  padding: 90px 6%;
}
.foot-print-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
section.img-sec {
  padding: 50px 6%;
}
.img-ftr-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ftr-container img{
      border-radius: 15px;
    height: auto;
    width: 100%;
    background-size: cover;
}

section.value {
  padding: 50px 6%;
}
.value-container {
  background-color: #262626;
    background-image: radial-gradient(closest-side, rgb(40 40 40 / 31%), #000000bd);
    padding: 80px 30px;
    border-radius: 15px;
}
.value.content {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  color: white;
  gap: 20px;
}
.value.content .text-row{
  display: flex;
  border-top: 1px solid #5c5a5a;
  padding: 30px;
}
.value.content .head{
  width: 50%;
}
.value.content .foot-description{
  width: 50%;
}

section.footprint-service {
  padding: 50px 6%;
}
.user-services {
  display: flex;
}
.user-service-content {
  width: 50%;
  color: #e5e5e5;
  display: flex;
  flex-direction: column;
  /*gap: 9px;*/
}
.user-service-content-footp {
  display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 20px;
    border-bottom: 1px solid #141212;
    padding-bottom: 35px;
}
.user-service-content-footp .logo-footp{
  height: 50px;
  width: 50px;
}
.user-service-img {
      width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-footp {
  width: 87%;
  display: flex;
      flex-direction: column;
      /*gap: 6px;*/
}
.case-studies-content.client-card.one.footprint-testimonial {
  height: 300px;
  width: 300px;
}
.case-studies-content.client-card.one.footprint-testimonial h2{
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
      font-size: 25px;
}
.bg-black.case-studies-content.client-card.one.footprint-testimonial {
  background-color: black;
  border: 1px solid white;
}

.footer-btm {
  display: flex;
  align-items: end;
}

section.about-img {
  position: relative;
  margin-top: -235px;
  z-index: -200;
}
.abt-img-clr-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgb(189 189 189 / 0%) 74%, rgba(255, 255, 255, 0) 100%);
}

div.submenu {
  background: #ffffff00;
  height: 400px;
  width: 900px;
  position: absolute;
  left: 0px;
  display: none;
}

li#marketing-menu:hover div.submenu{
  display: flex;
}

@media (max-width:768px){
	section.img-sec {
    padding: 0px 6%;
}
section.value {
    padding: 0px;
	padding-bottom:30px;
}
.value.content .text-row {
  padding: 30px 0px;
}
section.banner-footprint {
    padding: 90px 6%;
    padding-top: 160px;
}
}

.marquee.marquee--8.sub-page {
  width: 70%;
}

.sidebar.desktop a span{
  font-size: 20px;
  letter-spacing: 4px;
  cursor: pointer;
}
.sidebar.desktop a:hover:before{
  transform: scale(1);
}
.sidebar.desktop a.active span{
  font-size: 42px;
}


.navarea .active{
  color: rgb(79, 79, 79);
}
.navarea li a:hover{
  color: rgb(81, 81, 81);;
}

@media (max-width:991px) {
  .appraches-content-flex {
    margin-top: 50px;
  width: 90%;
  padding: 30px;
  }
  .container.footprints {
    width: 90% !important;
  }
  .flex-content-foot {
    padding: 0 30px;
  }
  section.business-pro {
    margin: 130px 25px;
}
}
.sidebar .childs .parent .childs li a{
  padding-left: 70px;
}
.sidebar .childs a{
  padding-left: 40px;
}
.featured-video {
  pointer-events: none;
}
  /* .featured-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  } */
  .feature-box-works .card.active .card__head {
       color: white;
    padding: 3px 30px;
    border-radius: 25px;
    transform: rotate(0deg);
    transform-origin: 0% 0%;
    transition: all 0.5s ease-in-out;
    text-align: start;
    position: absolute;
    bottom: 0;
    left: 46px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 25px;
    border: 1px solid white;

}

.why-code-face .case-studies-content .service-content h2.section-title.case-s {
  text-align: center !important;
}

.footer .locate-detal {
    background-image: linear-gradient(135deg, #565656 34%, #f8fff8 140%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.locate-detal {
    color: #000;
    /* font-weight: 400; */
}

.case-studies-container.abt-casestudy {
    overflow: hidden;
    flex-wrap: wrap;
}


@media (min-width:1140px) {
  .abt-casestudy .case-studies-content {
    flex: 0 0 auto;
    width: 32%;
}
}
@media (min-width:800px) and (max-width:1140px) {
  .abt-casestudy .case-studies-content {
    flex: 0 0 auto;
    width: 48%;
}
}

.case-studies.work-details-content {
    align-items: center;
}

@media (max-width: 1100px) {
   .case-studies.work-details-content .work-content .heder {
        width: 100%;
    }
   .case-studies.work-details-content .work-content .heder p{
        width: 60%;
    }
    .case-studies.work-details-content {
    gap: 20px;
}
}

.blog-details.container-page {
         width: 30%;
    left: 64%;
        align-items: start;
        padding-top: 55px;
}
section.blog-detai.panel {
    margin-left: 5%;
    width: 68%;
}
section.blog-detai.panel .get-locate-box{
   border: none;
}

section.blog-detai.panel .get-locate-box .locate {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}
img.blog-detail-img{
  border-radius: 7px;
  width: 100%;
  height: 500px;
}

.blog-detailed.address.addr-ind {
    gap: 15px;
}
.blog-recent {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid #292929;
  padding: 25px 0px;
}
.blog-recent img{
    width: 36%;
    margin-top: 3px;
    height: 70px;
    border-radius: 7px;
}
.blg-detail.contento.mail-content.one-mail {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.address h3{
    /* width: 44%; */
    font-weight: 400;
}

.case-studies-content.csstd{
 background-color: hsl(0deg 0% 5.41% / 32%);
}
.grid-item.seven {
    align-items: center !important;
    justify-content: center !important;
}
.sub-menu-container.staffing-submenu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
       height: 100%;
    padding: 5% 5%;
    align-items: start;
}
.sub-menu-container.staffing-submenu li a{
  width: 100%;
}
.sub-menu-container.staffing-submenu li {
  width: 30%;
      display: flex;
    gap: 15px;
}

ul.childs {
    display: none;
}
li.parent a:hover ul.childs {
    display: flex;
    flex-direction: column;
}

@media (max-width:1220px) {
  .sections.contact-get.aos-init.aos-animate {
    display: flex;
    flex-direction: column;
}
.blog-details.container-page {
    width: 100%;
    left: 0%;
    position: relative;
    align-items: start;
    padding-top: 55px;
            padding-left: 5%;
        padding-right: 5%;
}
section.blog-detai.panel {
  margin: 100px;
    margin-left: 0%;
            margin-bottom: 0px;
        margin-right: 0px;
        margin-left: 0%;
    width: 100%;
}
.blg-detail.contento.mail-content.one-mail {
    width: 100%;
}
.blog-recent img {
               width: 125px;
        height: 80px;
        border-radius: 7px;
}
.recent-blog-details {
  
    justify-content: flex-start !important;
}
}

.sub-page-logo {
    background-color: #0b0b0b;
   width: 27%;
    position: relative;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-blog-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.locate img{
  width: 60px;
  height: 60px;
}

section.about-banner.work-detail-banner.branding-bnr.aos-init.aos-animate {
       padding: 71px 6%;
       display: flex;
    align-items: center;
    justify-content: center;
}

hr.double-line{
    position: absolute;
    width: 90%;
    border-color: #39373785;
    top: 40%;
}
hr.double-line-trible{
    position: absolute;
    width: 90%;
    border-color: #39373785;
    top: 34%;
}
hr.treble-line{
    position: absolute;
    width: 90%;
    border-color: #39373785;
    bottom: 38%;
}
@media (max-width:1220px) {
  
section.about-banner.work-detail-banner.branding-bnr.aos-init.aos-animate {
       padding: 131px 6%;
    padding-bottom: 0;
}
}

p.locate-nmbr {
    margin-top: 13px;
}

.colxl-1 ul li a {
  transition: all 0.3s ease;
}

.colxl-1 ul li a:hover {
  border-bottom: 1px solid black;
  padding-bottom: 3px;
  transform: scale(1.05);
}

mux-player::part(controls) {
  display: none !important;
}

.case-studies-content {
  min-width: 300px; /* Adjust this based on your design */
  flex: 0 0 auto;
}

.contento.mail-content.one-mail.reaches p {
    font-size: 25px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contento.mail-content.one-mail.reaches {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bnr-head-overlap {
    position: absolute;
    height: 100%;
    width: 80%; 
    display: flex;
    align-items: center;
    justify-content: center;
background: rgb(0 0 0 / 70%);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 76%);
    backdrop-filter: blur(2.2px);
    -webkit-backdrop-filter: blur(5.7px);
}

.bnr-head-overlap  h2 {
    font-size: 70px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #e3dddd;
    /* font-family: 'Sharp Sans', sans-serif; */
}

@media (max-width: 768px) {
   .bnr-head-overlap  h2 {
        font-size: 55px;
    }
}