.top {
  height: 45px;
  width: 90px;
  background-color: rgba(255, 255, 255, 0.9);
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
}


#menuBackground {
	background-color: rgba(255, 255, 255, 0.6);
	width:100%;
	height:70px;
	text-align: center;
}
#menuContainer {
    text-align: center; 
}
/*Strip the ul of padding and list styling*/
ul {
    list-style-type:none;
    margin:0;
    padding:0;
}

/*Create a horizontal list with spacing*/
li {
    display:inline-block;
    vertical-align: top;
    margin-right:1px;
}

/*Style for menu links*/
li a {
    display:block;
    min-width:140px;
    height:70px;
    text-align:center;
    line-height:70px;
    font-family: "Swis721 BT";
    color:#000;
    text-decoration:none;
    font-size: 14px;
	font-weight: 600;
}

/*Hover state for top level links*/
li:hover a {
    background:#E9E9E9;
}

/*Style for dropdown links*/
li:hover ul a {
    background:#f3f3f3;
    color:#2f3036;
    height:40px;
    line-height:40px
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
    background:#19c589;
    color:#fff
}

/*Hide dropdown links until they are needed*/
li ul {
    position: absolute;
    display:none
}

/*Make dropdown links vertical*/
li ul li {
    display:block;
}

/*Prevent text wrapping*/
li ul li a {
    width:auto;
    min-width:100px;
    padding:0 20px
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden,.hidden:hover {
    display:block
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: "Swis721 Blk BT";
    text-decoration:none;
    color:#000;
    text-align:center;
    padding:16px 0;
    display:none;
    width:100%!important
}

/*Hide checkbox*/
input[type=checkbox] {
    display:none
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu {
    display:block;
    margin:0 auto
}

/*Responsive Styles*/
@media screen and (max-width : 1100px) {
    /*Make dropdown links appear inline*/
	
	.logo-mob{
		display:none;
		}
		
		
 .show-menu {
    font-family: "Swis721 Blk BT";
    text-decoration: none;
    color: black;
    text-align: center;
    display: none;
    width: 100%!important;
    background-color: rgba(255,255,255,0.9);
    border-bottom: 2px #2e2929 solid;
    padding: 0px;
}
 #menuBackground {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 0px;
    text-align: center;
}
 
    ul {
        position:static;
        display:none;
        white-space: initial;
		background-color:black;
    }
    
    /*Create vertical spacing*/
    li {
    margin-bottom: 1px;
    border-bottom: 1px #2e2929 solid;
    }
    
    /*Make all menu links full width*/
	li a {
    display:block;
    min-width:140px;
    text-align:center;
    font-family: "Swis721 BT";
    color:white;
    text-decoration:none;
    font-size: 14px;
	font-weight: 600;
	    height: 50px;
    text-align: center;
    line-height: 50px;
}

label {
 
   margin-bottom: 0px;

}

    ul li,li a {
        width:100%
    }
    
    /*Display 'show menu' link*/
    .show-menu {
        display:block
    }
}
