@media only screen and (max-width: 1179px) {
  .sidebar {
	    height: 100%;
	    position: fixed;
	    left: -300px;
	    width: 300px;
	    background-color: #020F20;
	    padding: 20px;
	    /*position: fixed;*/
	    transition: left 0.3s ease;
	    z-index: 100;
	}
	.sidebar.open {
	    left: 0; /* Slide in from the left */
	}
	.menu-toggle {
	    cursor: pointer;
	}
	/* Close icon styling */
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}
}
@media only screen and (max-width: 767px) {

}
