#project-list-container {
    width: 100%;
    margin-top: 5.55vh;
}

/* Project-List-Item DESKTOP */
.project-list-item {
    display: grid;
    grid-template-columns: 10% auto 20% 5%;
}
.project-list-item:first-of-type {
    border-bottom: 1px solid var(--prim-color);
}
.project-list-item:not(:first-of-type) {
    margin-top: 10px;
}
.project-list-item:first-of-type > p:last-of-type {
    text-align: right;
}
.project-list-item:hover:not(:first-of-type) {
    cursor: pointer;
    color: var(--sec-color-gray);
}
.project-list-item:hover:not(:first-of-type) p {    
    color: var(--sec-color-gray);
}
.doc-img {
    max-width: 24px;
    transition: transform 0.2s ease;
}
.project-img-link {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: auto;
    margin-top: 0;
    z-index: 5;
}
.doc-img:hover {
    transform: scale(1.2);
}

/* Project-List-Item MOBILE */
.project-list-item-mobile {
    display: none;
    grid-template-columns: 1fr 1fr;
}
.first {
    border-bottom: 1px solid var(--prim-color);
}
.project-list-item-mobile:not(:first-of-type) {
    margin-top: 10px;
}
.first > p:last-of-type {
    text-align: right;
}
.project-list-item-mobile:hover:not(:first-of-type) {
    cursor: pointer;
    color: var(--sec-color-gray);
}
.project-list-item-mobile:hover:not(:first-of-type) p {    
    color: var(--sec-color-gray);
}




.project-list-row {
    display: flex;
    text-align: left;
    padding: 10px;
}
.project-list-row:not(#project-list-header):hover {
    cursor: pointer;
    color: var(--sec-color-gray);
}
.project-list-column:first-of-type {
    min-width: 10%;
    margin-right: 5%;
}
.project-list-column:nth-of-type(2) {
    min-width: 55%;
    margin-right: 5%;
}
.project-list-column:nth-of-type(3) {
    min-width: 15%;
    margin-right: 5%;
}
.project-list-column:last-of-type {
    min-width: 5%;
    margin-left: auto;
    text-align: right;
}
#project-list-header {
    border-bottom: 1px solid gray;
}
.projektlink {
    text-decoration: none;
    color: black;
}
.projektlink:hover {
    color: var(--sec-color-gray);
}


/*Second-Navbar DESKTOP*/
.second-navbar-container {
    width: 100%;
    margin-top: 5.55vh;
}
.second-navbar {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.second-navbar-item {
    height: auto;
    width: auto;
    margin-right: 1.46vw;
    padding: 0;
}
.second-navbar-item:last-of-type {
    margin-left: auto;
    margin-right: 0;
}
.second-navlink {
    font-size: var(--sub-menu);
    color: var(--prim-color);
    margin: 0;
    padding: 0;
    text-decoration: none;
}
.second-navlink:hover {
    color: var(--sec-color-gray);
}

/*Second-Navbar MOBILE*/
#second-navbar-container-mobile {
    display: none;
    width: 100%;
    margin-top: 5.55vh;
    box-shadow: 1px 1px 4px var(--sec-color-gray-tp)
}
#category-btn {
    display: flex;
    justify-content: space-between;
}
#category-btn > p {
    padding: 5px;
    font-size: var(--sub-menu);
    color: var(--prim-color);
}
#category-btn > img {
    max-width: 32px;
}
#expand-img {
    transition: transform 0.3s ease;
}
#dropdown-content {
    display: none;
    background-color: var(--sec-color-gray-light);
}
#category-btn:hover {
    cursor: pointer;
}
#dropdown-content > a {
    padding: 5px;
    display: block;
    text-decoration: none;
    font-size: var(--sub-menu);
    color: var(--prim-color);
}


@media only screen and (max-width: 1200px) {
    .second-navbar-container {
        display: none;
    }
    #second-navbar-container-mobile {
        display: block;
    }
    .project-list-item-mobile {
        display: grid;
    }
    .project-list-item {
        display: none;
    }
}