.it-services {
    background-color: #F4F4F4;
    width: 100%;
    height: fit-content;
}

.it-section {
    padding: 70px 0;
}

.it-wrap {
    display: flex;
    justify-content: center;
    text-align: center;
}

.it-service-inner-wrapper {
    width: 100%;
    margin: 0 auto;
}

.it-upper-title {
    font-size: 13px;
    color: #676c71;
    letter-spacing: 0.4px;
    margin: 0 0 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.it-lower-title {
    font-size: 40px;
    letter-spacing: 0.2px;
    color: #000249;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
    padding: 0 150px;
}

.it-main-wrap {
    padding-top: 40px;
}

.single-service-wrap {
    padding: 45px 40px;
    border: 1px solid rgba(194, 194, 194, 0.4);
    height: 370px;
    background-color: #f9fbfd;
    transition: all 300ms linear 0ms;
    position: relative;
    z-index: 1;
}

    .single-service-wrap:hover {
        background-color: #fff;
        box-shadow: 0px 20px 20px -15px #c7c7c7;
        z-index: 99;
        opacity: 1;
    }

.single-service {
    display: flex;
    justify-content: center;
    width: 100%;
}

.service-img {
    width: 104px;
    height: 87px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.it-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-heading {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;
    color: #022d62;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.service-text {
    /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
    overflow: hidden;
    /*color: #676c71;*/
    text-align: center;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.2px;
    cursor: pointer;
}
/* 
.it-lower-title {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce; 
  animation-duration: 2s;
} */
/* rolll in */
/* .single-service .serviceIcon:hover {
  animation: roll-in 2s ease;
}
@keyframes roll-in {
  0% {
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    transform: translateX(0px) rotate(0deg);
  }
} */

/* bounce in :right */
/* .single-service {
  animation: bounce-in-right 2s ease-in-out;
}
@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
} */

.serviceIconLeft {
    /* transform: translateY(150px); */
    /* opacity: 0;
  transition: 0.5s all ease;
   */
}

/* .serviceIconLeft.active {
  transform: translateY(0);
  opacity: 1;
  animation: bounce-in-right 1s ease-in;
}

@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  20% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
} */



/* Media queries */

@media only screen and (max-width: 991px) {

    .it-section {
        padding: 50px 20px;
    }

    .it-lower-title {
        font-size: 20px;
        padding: 0;
    }

    .single-service-wrap {
        padding: 30px;
    }
}

@media (max-width: 1200px) {
    .single-service-wrap {
        height: 400px;
    }
}

/*AK*/
.aos-hidden-image {
    opacity: 0;
    transform: scale(0);
}

[data-aos].aos-animate {
    opacity: 1 !important;
    transform: scale(1) !important;
}


.scroll-animate {
    opacity: 0;
    transform: scale(0.2);
    transition: all 0.8s ease-in-out;
}

    .scroll-animate.animate-in {
        opacity: 1;
        transform: scale(1);
    }
