@media screen and (max-width: 769px) {
    .in_proj{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pr_card{
        width: 35%;
    }

    .pr_card a{
        font-size: 10px !important;
    }

    .pr_card img{
        width: 100px !important;
    }

    .spe{ top: 45px !important; }
    .pr_card:hover img{ opacity: 1 !important; }
}

.pr_card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: relative;
    text-align: center;
    margin: 25px;
    border-radius: 5px;
    color: var(--color4);
    z-index: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.75));
    transition: 0.5s;
}

.pr_card a{
    width: 75%;
    text-decoration: none;
    color: white;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 15px;
    border-radius: 5px;
    font-weight: bolder;
    font-size: 20px;
    background-color: var(--color3);
    transition: 0.5s;
}

.pr_card a:hover{
    /* padding-left: 15px;
    padding-right: 15px; */
    background-color: var(--color4);
}

.pr_card p{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: 0.25s;
}

.pr_card img{
    width: 200px;
    max-width: 200px;
    z-index: 2;
    border-radius: 5px;
    transition: 0.5s;
}

.pr_card:hover p{ opacity: 1; }
.pr_card:hover img{ opacity: 0; }

.pr_card .titre{
    text-decoration: underline;
    font-size: 17.5px;
    font-weight: bolder;
    margin-bottom: 10px;
}

.pr_card .descrip{
    line-height: 1.5;
    top: 25px;
}

.in_proj{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}