body{
    background-color: var(--bg-step-2);
}

header{
    position: sticky;
    top: 0;
    z-index: 100;
}

nav{
    background-color: var(--my-background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    z-index: 10;
}
.listContainer{
    width: min(100%, 1200px);
}

nav ul{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bottomNav{
    justify-content: center;

}
nav li{
    height: 50px;
}
.navContactContainer{
    height: 75px;
}
.navContactContainer a:first-child{
    display: flex;
    align-items: flex-end;
}
.navContactContainer a:hover, .logoContainer:hover, .phoneNumber a:hover{
    background-color: var(--my-background);
}
.phoneNumber{
    display: none;
}
.phoneNumber a{
    padding: 0 0.5rem;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--my-text-color);
}

nav a:hover{
    background-color: var(--my-background-hover);
    text-shadow: 0 0 3px rgba(91, 192, 248, 0.4);
}

.topNav li:nth-child(2){
    margin-right: auto;
}
.topNav{
    height: 75px;
    overflow: hidden;
    transition: height 0.3s ease;
}
.hide{
    height: 0;
}


.navContact{
    padding: 0 0.5rem;
    max-height: 50%;
}
.logo{
    max-width: 100%;
    max-height: 100%;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    transition: width 0.5s ease-in-out;
    width: 0px;
    z-index: 99;
    background-color: var(--my-background-glass);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
}
.showsidebar{
    width: 250px;
}
.sidebar li {
    width: 100%;
}
.sidebar a{
    width: 100%;
    height: 50px;
}
.sidebar a:hover{
    background-color: var(--my-background-glass-hover);
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* translucent black */
    z-index: 98; /* just below the sidebar (which is z-index: 99) */
    display: none;
}
.sidebar-overlay:hover{
    cursor: pointer;
}

.submenu{
    display: none;
}
.submenu a{
    padding-left: 3rem;
}
.open .submenu{
    display: block;
}
.sidebar li.open, .sidebar li.open .submenu a, .sidebar li.open .submenu li{
    height: auto;
}
.sidebar li.open .submenu a{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.menu-button{
    display: none;
}

@media(max-width: 975px){
    .topNav li:nth-child(1){
        margin-right: auto;
    }
    .hideOnMobie{
        display: none;
    }
    .menu-button, .phoneNumber{
        display: block;
    }
    /* Dont hide element on mobile or tablets */
    .hide{
        height: 75px;
    }
}

@media(max-width: 400px){
    .showsidebar{
        width: 100%;
    }
}