

	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
    
	float:none;
	display:list-item;
	position: relative;
}
@media only screen and (max-width: 992px){   
    nav ul ul li {
        width:300px;
    }
}




@media only screen and (min-width: 992px){   
    nav ul ul {
        display: none;
        position: absolute; 
        top: 60px; /* the height of the main nav */
    }
    /* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; /* the height of the main nav */
}
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-60px; 
	left:170px;
}


/* Change this in order to change the Dropdown symbol */
ul>li > a:after { content:  ' ▼'; }
li > a:only-child:after { content: ''; }

.nav-link:focus, .nav-link:hover {
	color: #dc3545 !important;
}