:root {
    --secondary: #007C21;
    --secondary-dark: #007C21;
    --primary: #B39C81;
    --primary-dark: #B39C81;
}


.project-card {
    border-radius: 0px;
    overflow: hidden;
}

.project-card:hover > .project-card-slide {
    transform: none;
    transition: .7s;
}

.project-card .project-card-slide {
    position: absolute;
    bottom: 0px;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    text-align: center;
    color: #fff;
    transition: .7s;
    transform: translateY(80px);
}

.project-card .project-card-slide .projet {
    color: #c2c2c2;
    margin-bottom: 0;
    text-align: left;
}

.project-card .project-card-slide .projet-name {
    /* color: #c2c2c2; */
    margin-bottom: 0;
    text-align: left;
}

.project-card .project-card-slide .project-utils {
    color: #c2c2c2;
    margin-bottom: 0;
    text-align: center;
}

.project-card .project-card-slide .project-utils .delete-link {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #fff;
    display: block;
    color: #fff;
    width: fit-content;
    margin: 20px auto;
    transition: .7s;
}

.project-card .project-card-slide .project-utils .edit-link {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #fff;
    display: block;
    color: #fff;
    width: fit-content;
    margin: 20px auto;
    transition: .7s;
}

.project-card .project-card-slide .project-utils .edit-link:hover {
    color: #007C21;
    border: 1px solid #007C21;
    transition: .7s;
}

.metismenu .menu-title {
    text-transform: uppercase;
    padding-bottom: 4px;
}

.metismenu .menu-title::before {
    content: "";
    width: 30%;
    height: 1px;
    background-color: #007C21;
    position: absolute;
    bottom: 5px;
}

.nav-header .brand-logo {
    padding-left: 10px;
    padding-right: 15px;
    padding-top: 5px;

    filter: brightness(2);
}