    /*@import url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');*/
	@media (max-width: 991px) {			
		*{
		  margin: 0;
		  padding: 0;
		  list-style: none;
		  text-decoration: none;
		  box-sizing: border-box;
		}
		#stickyNav{
		  position: fixed;
		  width: 30px;
		  margin-top: 0px;
		  transition: all 0.3s linear;
		  box-shadow: 2px 2px 8px 0px rgba(0,0,0,.4);
		  z-index: 1000;
		  vertical-align: middle;
		  display: none;
		}
		#stickyNav li{
		  height: 35px;
		  position:relative;
		}
		#stickyNav li a{
		  color: white;
		  display: block;
		  height: 100%;
		  width: 100%;
		  line-height: 35px;
		  padding-left:20%;
		  border-bottom: 1px solid rgba(0,0,0,.4);
		  transition: all .3s linear;
		}
		#stickyNav li:nth-child(1) a{
		  background: #3b5998;
		}
		#stickyNav li:nth-child(2) a{
		  background: #1DA1F2;
		}
		#stickyNav li:nth-child(3) a{
		  background: #0077b5;
		}
		#stickyNav li:nth-child(4) a{
		  background: #FF0000;
		}
		#stickyNav li:nth-child(5) a{
		  background: #333;
		}
		#stickyNav li:nth-child(6) a{
		  background: #ff0000;
		}
		#stickyNav li a i{
		  position:absolute;
		  top: 11px;
		  left: 8px;
		  font-size: 14px;
		}
		#stickyNav ul li a span{
		  display: none;
		  font-weight: bold;
		  letter-spacing: 1px;
		  --text-transform: uppercase;
		}
		#stickyNav a:hover {
		  z-index: 1;
		  width: 115px;
		  border-bottom: 1px solid rgba(0,0,0,.5);
		  box-shadow: 0 0 1px 1px rgba(0,0,0,.3);
		  color: #FFFFFF !important;
		  position: relative;
		}
		#stickyNav ul li:hover a span{
		  padding-left: 15%;
		  display: block;
		}
	}
	
	@media (min-width: 992px) {
		#stickyNav{
			display: none;
		}
	}