@charset "UTF-8";

/* Line Animation */
.hscroll-line {
    position: fixed;
    z-index: -1;
    top: 0;
    right:6%;
    left:6%;
    bottom:0;
    overflow: hidden;
    display: inline;
}
.hscroll-line::before{
  position: absolute;
  top: 0;
  bottom: 0;
  width:1px;
  content: "";
  background:#eee;
  height:100vh;
}
.hscroll-line::after {
  background: #999;
  animation: move 3s infinite;
  position: absolute;
  width:1px;
  height:100px;
  content:'';
  opacity:0.6;
}
.hscroll-line-1::before,
.hscroll-line-1::after{
    left:0;
}
.hscroll-line-2::before,
.hscroll-line-2::after{
    left:20%;
}
.hscroll-line-3::before,
.hscroll-line-3::after{
    left:40%;
}
.hscroll-line-4::before,
.hscroll-line-4::after{
    left:60%;
}
.hscroll-line-5::before,
.hscroll-line-5::after{
    left:80%;
}
.hscroll-line-6::before,
.hscroll-line-6::after{
    right:0;
}
.hscroll-line.hscroll-line-1::after {
    animation: move 10s infinite;
}
.hscroll-line.hscroll-line-2::after {
    animation: move 15s infinite;
}
.hscroll-line.hscroll-line-3::after {
    animation: move 20s infinite;
}
.hscroll-line.hscroll-line-4::after {
    animation: move 12s infinite;
}
.hscroll-line.hscroll-line-5::after {
    animation: move 25s infinite;
}
.hscroll-line.hscroll-line-6::after {
    animation: move 17s infinite;
}

@keyframes move {
  0% {
      top: 0;
  }
  100% {
      top: 100%;
  }
}

/* And Line Animation */

/* Header */
@media screen and (min-width:1200px) {
    header .Logo{
        transform: translateY(-30px);
        opacity: 0;
    }
    header .navbar{
        transform: translateY(-30px);
        opacity: 0;
    }
    header.active .Logo{
        animation: fadeIn 1s ease-in 0.4s forwards, slideIn 0.8s ease-in 0.9s forwards;
    }
    header.active .navbar{
        animation: fadeIn 1s ease-in 0.4s forwards, slideIn 0.8s ease-in 0.9s forwards;
    }
    /* Banner */
    .Banner-sec.active .Banner-text{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Banner-sec.active .Banner-img{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Banner-sec.active .carousel-indicators{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    /* Points */
    .fadeIn{
        opacity: 0;
    }
    /* .fadeIn{
        transform: translateX(0px);
        opacity: 0;
    }
    .fadeIn{
        transform: translateX(0px);
        opacity: 0;
    } */
    .Inn-text.active, .Title.active{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Feat-pro.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Testimonials.active .container, .Why-leape-section.active .heading{
        animation: fadeIn 1s ease-in 1s forwards;
    }
    .Why-leape-section.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Why-leape-section.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Color-gridbox.active .fadeIn{
        animation: fadeIn 0.4s ease-in 0.4s forwards;
    }
    .Color-gridbox.active .fadeIn{
        animation: fadeIn 0.4s ease-in 0.4s forwards;
    }
    .Color-gridbox.active .fadeUp{
        animation: fadeIn 0.4s ease-in 0.4s forwards;
    }
    .Leape-map.active h2{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Leape-map.active .Contact-detail{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Leape-map.active .map{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .footer.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .footer.active .Contact-btn .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .footer.active .Contact-btn .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Inner-section.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Culture-section.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .in-active.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Service-wrapp .active.fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Inner_content.active .heading-2{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .Inner_content .active .fadeIn, .Inner_content.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    }
    .founder-wrapp.active .fadeIn{
        animation: fadeIn 1s ease-in 0.4s forwards;
    } 
    .Content-wrapp.active .fadeIn{
      animation: fadeIn 1s ease-in 0.4s forwards;
  } 
  .Content-wrapp-list.active .fadeIn{
    animation: fadeIn 1s ease-in 0.4s forwards;
} 
}

@keyframes fadeIn {
    40% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
 
  @keyframes slideIn {
    100% {
      transform: translateY(0);
    }
  }
  .ticker-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 50px;
    z-index: auto;
  }

  .ticker {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
  }

  /*.ticker span {
    padding: 0 40px;
    font-size: 1.2rem;
    white-space: nowrap;
    color: white;
  }*/

  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .fade-left, .fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
  }

  .fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
  }

  @media (max-width: 600px) {
    .ticker {
      display: flex;
      width: max-content;
      animation: scroll 25s linear infinite;
      height: 100%;
    }

    .ticker span {
      padding: 0 15px;
      font-size: 24px;
    }

    
  }


  /* @keyframes slideLeft {
    100% {
      transform: translateX(0);
    }
  }
  @keyframes slideRight {
    100% {
      transform: translateX(0);
    }
  } */


  .carousel-wrapper {
    max-width: 1280px;
    margin: 10px 0 40px auto;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
   
  }
  
  .carousel-inner {
    padding: 20px 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
  }
  
  .carousel-track img {
    width: 300px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    
    transition: transform 0.3s;
  }
  
  .carousel-track img:hover {
    transform: scale(1.03);
  }
  
  /* LIGHT THEME */
  .light-theme {
    background: #f5f5f5;
  }
  
  .light-theme::before,
  .light-theme::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
 
  
  /* DARK THEME */
  .dark-theme {
    background: #1b1b1b;
  }
  
  .dark-theme .carousel-track img {
    filter: brightness(0.9);
  }
  
  .dark-theme::before,
  .dark-theme::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .dark-theme::before {
    left: 0;
    background: linear-gradient(to right, #111 0%, transparent 100%);
  }
  
  .dark-theme::after {
    right: 0;
    background: linear-gradient(to left, #111 0%, transparent 100%);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-inner {
      padding: 16px 24px;
    }
  
    .carousel-track img {
      width: 200px;
    }
  
    .carousel-wrapper::before,
    .carousel-wrapper::after {
      width: 24px;
    }
  }
  
    






























