.bg-2{
    background-image: url(../img/web-development.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.bi-envelope::before{
    animation: bounce 2s infinite;
}

.cuyy{
    padding:8px 15px !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.buble:hover{
    animation: bounce1 2s alternate ease-in-out !important;
    transition: 4s;
    animation-iteration-count: 1;
}

@keyframes bounce1 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-100px);
    }
    60% {
        transform: translateY(-70px);
    }
}

.bi-envelope:hover::before{
    animation: none;
}

.tooltip-styling{
    background: #cbcbcb !important;
    color: black !important;
    font-size:12px !important;
    padding: 1px 3px !important;
    box-shadow: 0px 3px 18px 0px rgb(0 0 0 / 14%) !important;
}

.avatar-image{
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12);
    cursor: pointer;
}

.avatar-image:hover{
    transform: scale(2.05);
}

spann{
    display: inline-block;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 1.4s ease-in-out;
  }
  
  .fadee{
   opacity: 1;
   transform: translateY(0);
  }

spans{
    display: inline;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1.5s ease-in-out;
  }
  
  .fadeee{
   opacity: 1;
   transform: translateX(2px);
  }


.sp1{
    visibility: visible !important;
    text-align: left;
    width: auto;
    animation: fadeInRight1 4s ease-in-out;
    animation-duration:4s;
}

@keyframes fadeInRight1 {
   from {
     opacity: 0;
     transform: translate3d(0, -70px, 0);
   }
   to {
     opacity: 1;
     transform: none; 
   }
 }

.image-hero{
    width: 100%;
    height:100%;
}

.cuys{
    animation: fadeIn1 1.5s;
    animation-delay: 1s;
}

@keyframes fadeIn1 {
    from {
      opacity: 0;
      z-index: 99;
      transform: translate3d(-70px, 0, 0);
    }
  
    to {
      opacity: 1;
      z-index: 99;
      transform: none;
    }
}
.card-1{
    background-color: white;
    padding:2px;
    border-radius:5px;
    text-align: center;
}
.card-2{
    background-color: white;
    padding:2px 10px;
    border-radius:5px;
    box-shadow: 0px 3px 18px 0px rgb(0 0 0 / 14%);
}
.card-3{
    background-color: white;
    padding:2px 10px;
    border-radius:2px;
    box-shadow:rgb(166 177 187 / 8%) 0px 10.8px 10.8px 1.35px;
}

.chat-to-wa{
    position: fixed;
    bottom: 45px;
    background: #25D366;
    border-radius: 50px;
    color: #fff;
    font-size: 25px;
    right: 25px;
    z-index: 99;
    padding: 7px 5px;
    animation: ts 2s ease-in-out infinite;
}

@keyframes ts{
    0%{
        transition: transform .4s;
    }
    35%{
        transform: scale(1.1);
    }
    65%{
        transition: transform .4s;
    }
    100%{
        transform: scale(0.9);
    }
}

.font, .font ul li, .font p{
    font-family: 'Poppins';
    font-size:14px !important;
}

.cuyss:hover, .hero h2:hover, .section-title-wrap:hover {
    box-shadow: rgb(166 177 187 / 8%) 0px 10.8px 10.8px 1.35px;
}

i.bi-whatsapp.cuyyy {
    text-align: center;
    align-items: center;
    padding: 8px 10px;
}

.chat-to-wa::before{
    content: "";
    position:absolute;
    z-index: 99;
    left:50%;
    top:50%;
    transform: translateX(-50%) translateY(-50%);
    display:block;
    width:60px;
    height:60px;
    background-color: #25D366;
    border-radius:50%;
    animation: pulse-border 2s ease-out infinite;
}

@keyframes pulse-border{
    0%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity:1;}
    100%{transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5); opacity:0;}
}

.image1 {
    display: block;
    margin: auto;
    max-width: none !important;
    transition: all ease 0.2s;
    width: 100%;
    height:auto;
}

.swiper-wrapper{
    align-items: center;
}

.auwoo{
    display: flex;
    gap: 30px;
    justify-content: center;
    cursor: pointer;
    align-items: center;
}

.services-price-wrap:hover {
    background: #b3b5bf !important;
    cursor: pointer;
    box-shadow:rgb(166 177 187 / 8%) 0px 10.8px 10.8px 1.35px;
  }

.code{
  margin:0 5px;
}
.code img{
    width:auto;
    height:30px;
}
.hover-code, .pro{
    transition: all ease 0.2s;
}
.hover-code:hover, .pro:hover{
    transform: scale(1.3);
}
@media (max-width:815px){
    .auwoo{
        width: 100%;
    }
}

.js-scroll {
    opacity: 0;
    transition: opacity 500ms;
  }
  
  .js-scroll.scrolled {
    opacity: 1;
  }
  
  .scrolled.fade-in {
    animation: fade-in 1s ease-in-out both;
  }

  .scrolled.fade-in-zoom {
    animation: fade-in-zoom 1s ease-in-out both;
  }
  
  .scrolled.fade-in-top {
    animation: fade-in-top 1s ease-in-out both;
  }

  .scrolled.fade-in-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
  }
  
  .scrolled.slide-left {
    animation: slide-in-left 1s ease-in-out both;
  }
  
  .scrolled.slide-right {
    animation: slide-in-right 1s ease-in-out both;
  }
  
  @keyframes slide-in-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slide-in-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fade-in-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in-zoom {
    0% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(0.8);
    }
  }

.new-skills {
    background-color: rgb(39, 42, 48, .6);
    transition: .3s ease-in transform;
    border-radius: 2px;
    cursor: pointer;
}
.new-skills:hover {
  box-shadow: inset 0 0 0 2px hsl(163.13deg 80% 39.22%);
  background-color: hsl(220 10% 14%);
  border-radius: 2px;
  transform: translateY(-3px);
}
img.images-skill{
  aspect-ratio: 9 / 9;
  height: 99px;
  object-fit: cover;
}

.img-new-prj{
  height: 300px !important;
}

.img-new-prj img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* new css servis-thum-new */
.services-thumb-new {
  background: #fff;
  border: 2px solid #dfdfdf;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 20px 40px;
  transition: all 0.5s;
}
.services-thumb-new:hover {
  border: 2px solid #14B789;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb-new:hover {
  border-color: #14B789;
  color: var(--white-color);
}

@media screen and (max-width: 991px) {
  .services-thumb-new {
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  .img-new-prj{
    height: 200px !important;
  }

}
@media screen and (max-width: 767px) {
  .img-new-prj{
    height:auto !important;
  }

}
@media screen and (max-width: 554px) {
  h2.text-animate{
    height: 101px;
  }
  .descript-web{
    font-size: 12px;
  }
}