@media only screen and (max-width: 1200px) { .logo {display:none}}

html, body {
	font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}
i {padding-right: 8px}

.menu {
	box-sizing: border-box;
    width: 100%;
    z-index: 8000;
    position: fixed;
    background-color: darkblue;
}
.menu h6 {
	box-sizing: border-box;
    margin: 0;
    font-size: 26px;
    float: left;
	line-height: 30px;
    padding: 0 30px 0 30px;
    color: white;
}
.menu > ul {
	list-style-type: none;
    padding: 0;
    margin: 0;
    float: left;
}
.menu > ul ul {
	list-style-type: none;
	display: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
}
.menu > ul > li {
    display: inline-block;
}
.menu > ul li li {
	position: relative;
}
.menu > ul > li:hover > ul {
	display: block;
}
.menu > ul > li > ul li:hover > ul {
	display: block;
    top: 0;
    left: 100%;
}

/* Main Menu Items */
.menu a {
	display: block;
    padding: 12px;  /* This dictates the height of the menu */
    background-color: darkblue;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
    min-width: 100px; /* Minimum width of the menu item*/
    text-align: center;
}
.menu > ul > li > a {
	border-right: 2px solid #444;
}
.menu > ul > li:first-child > a {
	border-left: 1px solid #2b3543;
}

/* Main menu Hover behavior */
.menu > ul > li > a:hover {
    color: black;
	background-color: lightskyblue;
}

/* Submenu behavior */
.menu > ul ul li a {
	display: block;
    padding: 10px 10px 10px 10px;
    color: white;
    background-color: darkblue;
    box-sizing: border-box;
}
/* Submenu hover behavior */
.menu > ul ul li a:hover {
    color: black;
	background-color: lightskyblue;
}
.menu > ul ul ul ~ a::after {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent rgba(255,255,255,0.3);
}
.menu label,
.menu input {
	display: none;
}
@media screen and (max-width: 1000px) {
	.menu ul {
    	display: none;
    }
    .menu label {
    	display: block;
        float: right;
        text-align: center;
        width: 40px;
        border-left: 1px solid #2b3543;
        padding: 5px; /* This dictates the height of the menu when using a small screen */
        opacity: 0.8;
    }
    .menu input:checked ~ ul {
    	display: block;
        top: 100%;
        position: absolute;
        width: 100%;
        height: calc(100vh - 100%);
        overflow-y: scroll;
        overflow-x: hidden;
    }
	.menu input:checked ~ ul li,
    .menu input:checked ~ ul ul,
    .menu input:checked ~ ul a {
    	position: static;
        display: block;
        width: 100%;
        top: 0;
        left: 0;
    }
    .menu input:checked ~ ul ul ul ~ a::after {
    	border: 0;
    }
    .menu a {
    	background-color: blue;
    }
}