#services-section{
    padding-top: 50px;
    background-color: #fAfAfA !important;
    padding-bottom: 100px;
}
.services{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}
.fade-up{
    display: flex;
}
.serv{
    max-width: 400px;
    background-color: #FAFCFE;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.serv:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 4px rgba(126, 48, 172, 0.5);
}
.serv p{
    color: var(--color-text-grey);
    font-weight: 300;
}
.serv h4{
    padding-bottom: 10px;
    font-size: 17px;
}
.serv i{
    color: var(--color-purple);
    font-size: 45px;
    padding-bottom: 25px;
}
@media (max-width: 500px){
    .serv p{
        font-size: 15px;
    }
}