.flex-w {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.diplom {
    justify-content: space-evenly;
}
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}