.menuTop {
    position: fixed;
    width: 100%;
    height: 35px;
    background-color: var(--menuTopBack);
    float: left;    
    z-index: 1000;
}
  
.telNumber {
    margin-left: 20px;
    margin-top: 15px;
    color: #FFFFFF;
    float: left;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1px;
}

.telNumber .mobTelnr {
    display: none;
}

.menuLogo {
    margin-top: 2rem;
    margin-left: 1rem;
	left: 0;
    position: fixed;
    max-width: 25%;
    color: #202020;
 /*   -webkit-filter: drop-shadow(6px 1px 6px rgba(255, 255, 255, 0.5));
     filter: drop-shadow(6px 1px 6px rgba(255, 255, 255, 0.5));*/
    -webkit-filter: drop-shadow(6px 1px 6px rgba(46,140,157, 0.5));
     filter: drop-shadow(6px 1px 6px rgba(46,140,157, 0.5));
}

.socials {
    float: right;
    margin-right: 15px;
    padding-top: 5px;
}

.socials img {
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

nav {
    position: fixed;
	width: 100%;
	border-bottom: 1px solid #FFFFFFE6;
    background-color: var(--menuBack);
    z-index: 999;
}

.nav-bar {
    margin-top: 2rem;
	display: flex;
	justify-content: center;
    column-gap: 0.6rem;
    flex-direction: row;
    text-align: center;    
	list-style: none;    
}

.nav-bar > li a {
    display: block;
    padding: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
    height: 4rem;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    transition: background-color 0.5s ease;
    position: relative;
}

.nav-bar li:hover {
	background-color: var(--menuHover);
}

ul li ul {
    background-color: var(--menuBack);
    visibility: hidden;
    display: none;
    min-width: 8rem;
    opacity: 0;
    float: none;
    position: absolute;
    transition: all 0.5s ease;    
    text-align: left;
    border: 1px solid #fff;
    border-top: none;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display:inherit;
    list-style: none;
}

ul li ul li {
	list-style: none;
    clear: both;
    width: 100%;
}

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
}

.subnav {
 	width: 40vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    left: 0;
    right: 0;
	border: 1px solid #FFFFFFE6;
    background-color: var(--menuBack);
    z-index: 999;
}

.subnav-bar {    
	display: flex;
	justify-content: center;
    column-gap: 0.6rem;
    flex-direction: row;
    text-align: center;    
	list-style: none;    
}

.subnav-bar li a {
    display: block;
    padding: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
    height: 4rem;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    transition: background-color 0.5s ease;
}

.subnav-bar li:hover {
	background-color: var(--menuHover);
}

.menuResbutton {
	position:absolute;
	top: 2.6rem;
	right: 0;
	margin-right: 20px;
	float: right;
    background: var(--tabActive) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 6px #00000026;
    opacity: 1;
    padding: 15px;
    line-height: 16px;
    FONT-WEIGHT: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.menuResbutton:hover{
    background: #f5f9f9;
    color: #164b66;
}

.toggle-button {
    position: absolute;
    top: 3.5rem;
    right:  1rem;
    display: none;
    flex-direction: column;
    justify-content:  space-between;
    width: 25px;
    height: 20px;
    z-index:  1;
}
    
.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: var(--toggleButtonBar);
    border-radius: 10px;
}

.toggle-button:hover {
    transform: rotate(90deg);
    transition-duration: 500ms;
}
.toggle-button:visited {
    transform: rotate(-90deg);
    transition-duration: 500ms;
}

@media (max-width: 1000px){
    .menuResbutton {
        display:  none;
    }    
}

@media (max-width: 800px){
    .nav-bar li a {   
        border-top: 1px solid rgba(255, 255, 255,0.3); 
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    }
    .socials img {
        display: none;
    }
    #CrewButton {
          display: block;
    }
    .toggle-button {
        display: flex;
    }
    nav {
        background-color:  var(--menuBack);
        min-height: 6rem;
    }
    .nav-bar {
       flex-direction: column;
    }
    .nav-bar {
        display: none;
    }
    .nav-bar.active {
        display: block;
    }
    ul li ul {
        padding-left: 3rem;
        visibility:visible;
        display: block;
        position: relative;
        opacity: 1;
        text-align: center;
        border: none;
        background-color:  var(--menuHover);        
    }
	.menuLogo {
		/*display: none;*/
        margin-top:  1.8rem;
        max-width: 40%;
        -webkit-filter: none;
        filter: none;
	}
    .telNumber a {
        display: none;
    }
    .telNumber .mobTelnr {
        display: block;
    }
}