.pro_card {
        transition: transform 0.3s ease-in-out;
        background-color: white;
        width: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
        margin: 10px;
        border-radius: 10px;
        -webkit-animation-duration: 1.5s;
        box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
        animation-duration: 1.5s;
        -webkit-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
        -o-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
        transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
    }

    .pro_card:hover {
        transform: scale(1.05);
    }

    .pro_card h1,
    .pro_card h2,
    .pro_card h3,
    .pro_card h4,
    .pro_card h5 {
        margin: 0px;
        padding: 0px 0px 15px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: #282828;
    }

    .pro_card hr {
        display: block;
        border: none;
        height: 2px;
        background-color: #afafaf;
        margin: 0px;
        -webkit-animation-name: line-show;
        -webkit-animation-duration: 0.3s;
        animation-name: line-show;
        animation-duration: 0.3s;
        -webkit-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
        -o-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
        transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
    }

    .pro_card p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px 0px 0px;
        font-size: 15px;
        min-height: 115px;
        line-height: 1.5;
        color: #000000;
        -webkit-animation-name: p-show;
        -webkit-animation-duration: 1.5s;
        animation-name: p-show;
        animation-duration: 1.5s;
    }

    .pro_card button {
        border: none;
        margin-top: 10px;
        border-radius: 5px;
        background-color: #007bff;
        padding: 5px 30px;
        color: white;
        cursor: pointer;
    }

    .pro_card button:hover {
        background-color: #0dcaf0;
    }

    /* Safari 4.0 - 8.0 */
    @-webkit-keyframes line-show {
        from {
            margin: 0px 100px;
        }

        to {
            margin: 0px;
        }
    }

    /* Standard syntax */
    @keyframes line-show {
        from {
            margin: 0px 100px;
        }

        to {
            margin: 0px;
        }
    }

    /* Safari 4.0 - 8.0 */
    @-webkit-keyframes p-show {
        from {
            color: white;
        }

        to {
            color: #282828;
        }
    }

    /* Standard syntax */
    @keyframes p-show {
        from {
            color: white;
        }

        to {
            color: #282828;
        }
    }

    .pro_card_name {
        text-align: center;
        height: 65px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .no_project {
        text-align: center;
        color: black;
    }

    .no_project p {
        color: black;
        font-size: 24px;
        font-weight: 600;
    }

    