/* New css with tailwind  */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
body {
  /* background-color: #e8ecf1; */
  /* background-image: url(../img/new/siri-ai-background.jpg);
  background-repeat: repeat-x;
  background-position: top center; */

  background-color: #f5f5f6;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 1.5rem;
  /* font-weight: 600; */
}
@media (min-width: 640px) {
  h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 45px;
  }
}
h1 span {
  color: #40b340;
}
@media (min-width: 1400px) {
  h1.light {
    font-size: 40px;
  }
}

h2 {
  font-size: 1.15rem;
  /* font-weight: 600; */
}
@media (min-width: 640px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  color: #40b340;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  h3 {
    font-size: 1.15rem;
  }
}
@media (min-width: 1400px) {
  h3 {
    font-size: 20px;
  }
}
h3 span {
  color: #40b340;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  h4 {
    font-size: 24px;
  }
}
h4 span {
  color: #40b340;
}

.text_large {
  font-size: 16px;
}
@media (min-width: 640px) {
  .text_large {
    font-size: 1.15rem;
  }
}
@media (min-width: 1400px) {
  .text_large {
    font-size: 20px;
  }
}

.text_midium {
  font-size: 16px;
}
@media (min-width: 640px) {
  .text_midium {
    font-size: 1.15rem;
  }
}
@media (min-width: 1400px) {
  .text_midium {
    font-size: 18px;
  }
}

p {
  font-size: 14px;
  color: #4e5256;
}
@media (min-width: 640px) {
  p {
    font-size: 16px;
  }
}

.big-btn {
  border: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.big-btn.cut_left {
  clip-path: polygon(18px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18px);
}
.big-btn.cut_right {
  clip-path: polygon(0% 0%, calc(100% - 18px) 0%, 100% 18px, 100% 100%, 0% 100%);
}

.container {
  max-width: 1366px;
  width: 100%;
  padding: 0 15px;
}

/* Client logo slider */
.client-slider {
  width: 100%;
  max-width: calc(100vw - 30px);
}
@media (width >= 1024px) {
  .client-slider {
    max-width: 600px;
  }
}

.client-slider img {
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.client-slider img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Optional: remove slick arrows and dots styling */
.slick-prev:before,
.slick-next:before {
  display: none;
}

/* card slider */
.our_experties .slick-track {
  display: flex;
  gap: 24px;
}
.our_experties .card_arrow_container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.our_experties .card_arrow_container button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f5f9;
  color: #bbb8b8;
  border: 1px solid #bbb8b8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.our_experties .card_arrow_container button:hover {
  border-color: #40b340;
  color: #40b340;
}
.our_experties .card {
  position: relative;
  display: flex !important;
  overflow: hidden;
  background: #cacdd6;
  border: 1px solid #ddd;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 500px !important;
}
.our_experties .card img {
  width: auto;
}
.our_experties .card:hover {
  transform: unset !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.our_experties .title {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(202, 205, 214, 0.72) 39.43%, rgba(23, 25, 34, 0.72) 100%);
}

.streamlined_steps .streamlined_items {
  position: relative;
}
.streamlined_steps .streamlined_items p {
  color: #fff;
  border: 1px solid #3d3a3a;
  border-radius: 10px;
}
.streamlined_steps .streamlined_items::before {
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #000 0%, #565656 50%, #000 100%);
  content: "";
  position: absolute;
  left: -36px;
  display: none;
}
@media (width >= 1024px) {
  .streamlined_steps .streamlined_items::before {
    display: block;
  }
}
.streamlined_steps .streamlined_items li {
  position: relative;
}
.streamlined_steps .streamlined_items li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #565656;
  position: absolute;
  left: -41px;
  top: 46px;
  display: none;
}
@media (width >= 1024px) {
  .streamlined_steps .streamlined_items li::before {
    display: block;
  }
}
.streamlined_steps .streamlined_items li::after {
  content: "" attr(id) "";
  position: absolute;
  color: #000;
  left: -50px;
  top: 24px;
  font-size: 30px;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
@media (width >= 1024px) {
  .streamlined_steps .streamlined_items li::after {
    left: -93px;
    top: 24px;
    font-size: 36px;
  }
}
.streamlined_steps .line {
  width: 1px;
  background-color: #565656;
}

.ripple_top {
  background-image: url(../img/new/ripple-top.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 80%;
}

.hero_panel {
  /* background-image: url(../img/new/890.png); */
  background-image: url(../img/new/artificial-inteligence1.jpg);  
  background-position: top center;
  background-size: cover;  
}

@media (max-width: 600px) {
  .hero_panel {    
  background-position: top right;   
}
}

.bg-ai-ml {
  background-image: url(../img/new/Artificial-Intelligence2.jpg);
}

.bg-ui-ux {
   background-image: url(../img/new/ui-ux-banner.jpg);   
}
@media (max-width: 600px) {
  .bg-ui-ux {    
  background-position: top center;   
}
}

.mobile-app-dev {
   background-image: url(../img/new/mobile-app-developmen.jpg);
}

@media (max-width: 600px) {
  .mobile-app-dev {    
  background-position: top center;   
}
}

.fullstak-dev {
   background-image: url(../img/new/Fullstack-Development.jpg);
}

@media (max-width: 600px) {
  .fullstak-dev {    
  background-position: top left;   
}
}

.gamifyde   {
   background-image: url(../img/new/gamifyde.jpg);
}

.cloude-sass   {
   background-image: url(../img/new/cloude-sass.jpg);
}

@media (max-width: 600px) {
  .cloude-sass {    
  background-position: top center;   
}
}

.contact-us   {
   background-image: url(../img/new/contct-us.jpg);
}



.green_radial_color, footer {
  position: relative;
}
.green_radial_color::before, footer::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  opacity: 0.3;
  background: radial-gradient(38.52% 103.45% at 7.54% 14.44%, #40b340 0%, #141316 100%);
}

footer {
  position: relative;
  background-image: url(../img/new/FooterRipple.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 80%;
}
footer p {
  color: #fff;
}
footer .mx-auto {
  position: relative;
}

.banner-content {
  width: 100%;
}
/* .banner-content h1 {
  line-height: 36px;
} */
/* @media (width >= 1024px) {
  .banner-content h1 {
    line-height: 56px;
  }
} */
/* @media (width >= 1024px) {
  .banner-content {
    width: 60%;
  }
} */

.text-white {
  color: #fff;
}

.arrow-bg {
  position: relative;
}

.arrow-bg::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0px;
  width: 60px;
  height: 67px;
  background-image: url("../img/new/home/bg-arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

.arrow-bg:hover::after {
  opacity: 1;
}

.client-logo img {
  max-width: 80%;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@layer utilities {
  @keyframes infinite-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .animate-infinite-scroll {
    animation: infinite-scroll 18s linear infinite;
  }
}
@layer utilities {
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  .animate-float {
    animation: float 4s ease-in-out infinite;
  }
}/*# sourceMappingURL=new_style.css.map */