*{
    overflow-x: hidden;
}
@media (min-width:1029px )  {
  #anim_1-Service img{
        height: 550px;   
      }
}
#anim_1-Service img{
  animation: 1.3s fadeInTop ;
}

#anim_2-Service h1{
    color:  rgb(22, 117, 155);
    font-weight: bold;
    padding: 30px 3px 0px 0px;
    font-family: initial;
    text-align: center;
  }
  #anim_2-Service h2{
    color:  rgb(22, 117, 155);
    font-weight: bold;
    padding: 10px 3px 10px 0px;
    font-family: initial;
    text-align: center;
  }
  #anim_2-Service {
    background-color: whitesmoke;
    animation: 2.3s fadeInleft ; 
  }
  #anim_2-Service p{
    color:  rgb(143, 141, 141);
    font-weight: bold;
    padding: 0px 3px 0px 10px;
    font-family: initial;
    text-align: center;
  }



@keyframes fadeInleft {
  0% {
    transform: translateX(100%);
    opacity: 0;
    overflow: hidden;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  overflow: hidden;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translateY(100%);
    opacity: 0;
    overflow: hidden;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  overflow: hidden;
  }
}


  .card{
    text-align: center;
    height: 150px;
    width: 250px;
    margin: 5px  ;
    animation: 1.7s fadeInUp;
    
  }
  .figure{
    overflow: hidden;
  }
  @keyframes fadeInUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
      overflow: hidden;
    }
    100% {
      transform: translateY(0%);
      opacity: 1;
    overflow: hidden;
    }
  }



  #Service{
    text-align: center;
   background-color: whitesmoke;
}
.Simg{
    text-align: center;
}
.card img{
    height: 100px;
    width: 100px;
    text-align: center;
    padding: 10px;
}
  .card h6{
    padding: 5px;
    text-align: center;
    color:rgb(22, 117, 155) ;
    font-style: normal;
    font-weight: bold;
  }
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(219, 219, 219);
    overflow: hidden;
    height: 0;
    transition: .5s ease;
  }
  
  .card:hover .overlay {
    height: 100%;
  }
  .card:hover{
    box-shadow: 1px 2px 2px 1px rgb(22, 117, 155);
  }
  
  .text {
 padding:5px; 
 text-align: center;
 color: rgb(22, 117, 155);
 font-style: oblique;
}