:root{
    scroll-behavior: smooth;
}
.font-poppins{
    font-family: 'Poppins', sans-serif;
}
.serviceCard{
    transition: all 1s;
    animation-duration: 1s;
    height: 250px;
}
.serviceCard:hover{
    transform: scale(1.05);
}
.serviceCard:hover  .serviceDesc{
    transition: all 1s;
    display: flex;
}
.serviceCard:hover  .serviceIcon{
    transition: all 1s;
    display: none;
}
.serviceCard:hover  .serviceTitle{
    transition: all 1s;
    display: none;
}