/*38 lista de projetos*/
.m-project-list {
    margin-bottom: 60px;
    margin-top: 60px;
}
.m-project-list__title {
    font-weight: 400;
    font-size: 32px;
    color: #002a3f;
    margin-bottom: 12px;
}
.m-project-list__title + p {
    margin-bottom: 40px;
}
.m-project-list__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.m-project-list__item a:hover {
    text-decoration: none;
}

.m-project-list__item {
    position: relative;
    padding: 20px;
    background: #eff2f4;
    cursor: pointer;
    transition: all .3s;
}

.m-project-list__item > a:first-child {
    width: 100%;
    display: block;
    height: 100%;
}

.m-project-list__item:hover .m-link::after {
    transform: translateX(3px);
}

.m-project-list__item .m-link:hover::before {
    content: none;
} 

.m-project-list__item:hover {
    transform: scale(1.05);
}
.m-project-list__item__category {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 4px;
}
.m-project-list__item__title {
    font-weight: 400;
    font-size: 20px;
    color: #002a3f;
}
.m-project-list__item .m-link{
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.m-project-list-header > div {
    width: 80%;
}

.m-project-list .m-project-list-header .m-link {
    margin-bottom: 40px;
}

.m-project-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.m-tab .m-project-list {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .m-project-list {
        margin-bottom: 40px;
    }
    .m-project-list__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .m-project-list-header {
        flex-wrap: wrap;
    }

    .m-project-list-header > div {
        width: unset;
    }
}