.solution {
    background-color: #f8fafc;
}

.prog_item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    height: 200px;
    text-align: center;
    cursor: pointer;
    padding: 50px 30px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.prog_item a {
    color: #000;
}

.prog_item_img {
    color: #64748b;
    transition: color 0.3s ease;
}

.prog_item_text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.prog_item:hover {
    border-color: transparent;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

.prog_item:hover .prog_item_text {
    color: #1a73e8;
}

.prog_item:hover .prog_item_img {
    color: #1a73e8;
}

.prog_item:hover svg {
    stroke-dasharray: 160;
    stroke-dashoffset: 0;
    animation: moves 1s linear;
}

@keyframes moves {
    from {
        stroke-dashoffset: 160;
    }

    to {
        stroke-dashoffset: 0;
    }
}