
.logo-png{
    width: 100px;
    max-width: 100%;
    height: auto;
}
.sketch-nav{
    background-color: var(--sketch);
}
.sketch-nav{
    background-color: var(--yellow);
}
.info-item{
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}
.shell{
    position: relative;
}
.sketch-nav {
    transition: opacity 0.5s ease-out, visibility 0s 0.5s; /* Fade out and delay visibility change */
}

.fade-out {
    opacity: 0; /* Make the nav invisible */
    visibility: hidden; /* Prevent it from taking up space during the fade-out */
}

header.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Ensure it stays on top of other elements */
}
.sketch-nav {
    transition: all 0.8s ease-in-out;
    overflow: hidden;
    opacity: 1;
    height: auto;
}
.overlay{
    position: absolute;
    top: 85%;
}
.connector {
    border-color: #ffb536;
    position: absolute;
    top: 2.5em;
    left: -50%;
    width: 100%;
    height: 10px;
    border-top-width: 1px;
    border-top-style: dashed;
    margin-left: 0;
    z-index: 0;
}

@media (max-width: 399px) { }
@media (min-width: 400px) and (max-width: 575.98px) {
    .overlay{
        position: absolute;
        top: 80%;
    }
 }
@media (min-width: 575.98px) and (max-width: 768px) {
    .overlay{
        position: absolute;
        top: 75%;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) { 
    .overlay{
        position: absolute;
        top: 75%;
    }
 }
@media (min-width: 991.98px) and (max-width: 1199.98px) { .overlay{
    position: absolute;
    top: 75%;
} }
@media (min-width: 1200px) { 
    .overlay{
        position: absolute;
        top: 75%;
    }
 }