@media screen and (max-width: 769px) {
    .in{
        flex-direction: row !important;
    }

    .card img{ width: 100px !important; }
    .card:hover img{ opacity: 1 !important; }

    .titre{ display: none !important; }
    .descrip{ display: none !important; }
    .spe{ top: 45px !important; }
}

.in{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card{
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    text-align: center;
    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;
}

.card:hover{ box-shadow: 5px 5px 0px 0px rgba(24, 80, 44, 0.5); }

.card p{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.25s;
}

.card img{
    width: 250px;
    z-index: 2;
    border-radius: 5px;
    transition: 0.5s;
}

.card:hover img{ opacity: 0; }
.card:hover p{ opacity: 1; }

.card .titre{
    text-decoration: underline;
    font-size: 17.5px;
    font-weight: bolder;
    margin-bottom: 10px;
}

.card .descrip{
    line-height: 1.5;
    top: 25px;
}

.spe{ top: 25px; }