/* --- Desktop Styling --- */
@media (min-width: 768px) {
.hamburger {
    display: none;
} 
    
nav#menu {   
    width: 50px;
    right: auto;
    left: 0;
    background: whitesmoke;
    border-right: 0.5px solid black;
}
    
nav#menu a {
    flex-direction: column;
    font-size: 16px;
    padding: 15px;
    color: black;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
    
li span {
    display: block;
    font-size: 8px;
}
    
main {
    margin-left: 80px;
}
    
nav#menu a.active {
    font-weight: bolder;
    color: blue;
    border: none;
    border-left: 6px solid blue;
}

.search-input {
    width: 300px;
    transition: 0.3s linear;
}
.search-input:focus {
    width: 600px;
}
    
figure img {
    height: 80%;
    width: 80%;
    object-fit: cover;
    background: grey;
}
.nav-bottom {
    display: none;
}
    
#searchOverlay {
    transform: translateY(100%);
}
}