nav {
/*	position: relative;*/
	box-sizing: border-box;
	width: 258px;
	min-width: 258px;
	background: #fefefd;
	font-family: pragmaticaregular, Tahoma, Arial, Helvetica, Roboto, Calibri, sans-serif;
}

nav ul {
/*position: sticky;
top: 0;*/
	list-style: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

nav ul li {
  /* Sub Menu */
}

nav ul li a {
	display: block;
	padding: 10px 10px 9px 42px;
	margin: 2px 0 0 0;
	background-color: #f7941d;
	background-image: url('/assets/templates/pic/menu-icon-1.svg');
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 16px 16px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: .85rem;
	letter-spacing: .07em;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}

nav ul li > a {
	font-weight: bold;
	}

nav ul li a:hover {
	background-color: #FFA914;
}

nav ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;

}
nav > ul > li > ul > li > ul {
/*	padding-top: .1rem;
	padding-bottom: .1rem;
	background-color: #f8eedb;*/
}

nav ul li ul li a {
	text-transform: none;
	font-weight: normal;
/*	font-family: pragmatica, pragmatica_cond_lightcregular;*/
/*	font-size: 1rem;*/
	font-size: .93rem;
	letter-spacing: -.035em;
	color: #000;
	padding: 7px 10px 7px 42px;
	margin: 0;
	background-color: #f8eedb;
	background-image: url('/assets/templates/pic/menu-icon-2.svg');
	background-repeat: no-repeat;
	background-position: 19px center;
	background-size: 14px 14px;
}

nav ul li ul li a:hover {
	background-color: #d0d0d0;
}

.sub-menu > a {
	font-weight: bold;
/*	font-family: pragmatica, pragmatica_lightcregular;*/
/*	background-image: none;*/
	}


nav ul li.sub-menu ul li.sub-menu > a {
	background-image: none;
/*	padding-left: 17px;*/
	padding-top: 9px;
	letter-spacing: 0.02em;
/*	background-color: #e8decb;*/
	}

.toggler,
.hamburger {
	display: none;
	}



@media screen and (max-width: 900px) {
	.toggler{
		/* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING :  */
		display: block;
/*		position: absolute;*/
		position: fixed;
		z-index:99;
		top: 7px;
		right: 4px;
		height: 50px;
		width: 50px;
		cursor: pointer;
		opacity: 0;
	}

	.hamburger{
/*		position: absolute;*/
		position: fixed;
		z-index:98;
		top: 15px;
		right: calc(2rem - 20px);
		height: 40px;
		width: 40px;
		padding: 0.6rem;
	/* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */
		display: flex;
		align-items: center;
		justify-content: center;
	/*	background: #363331;*/
	}

/* CREATING THE MIDDLE LINE OF THE HAMBURGER : */

.hamburger > div{
    position: relative;
    top: 0;
    left: 0;
    background: white;
	background: #000;
    height: 2px;
    width: 60%;
	width: 95%;
    transition: all  0.4s ease;
}

/* CREATING THE TOP AND BOTTOM LINES : 
TOP AT -10PX ABOVE THE MIDDLE ONE AND BOTTOM ONE IS 10PX BELOW THE MIDDLE: */

.hamburger > div::before,
.hamburger > div::after{
    content: '';
    position: absolute;
    top: -10px;
    background: white;
	background: #000;
    width: 100%;
    height: 2px;
    transition: all  0.4s ease;
}

.hamburger > div::after{
    top: 10px;
}

/* IF THE TOGGLER IS IN ITS CHECKED STATE, THEN SETTING THE BACKGROUND OF THE MIDDLE LAYER TO COMPLETE BLACK AND OPAQUE :  */

.toggler:checked + .hamburger > div{
    background: rgba(0,0,0,0);
}

.toggler:checked + .hamburger > div::before{
    top: 0;
    transform: rotate(45deg);
    background: black;
}

/* AND ROTATING THE TOP AND BOTTOM LINES :  */

.toggler:checked + .hamburger > div::after{
    top: 0;
    transform: rotate(135deg);
    background: black;
}


/* MAIN MENU WITH THE WHITE BACKGROUND AND THE TEXT :  */

	nav {
		position: absolute;
		position: fixed;
		overflow-y:scroll;
		overflow-x:hidden;
		z-index: 90;
		left: -100%;
		top: 70px;
		width: 100%;
/*		min-height: calc(100vh - 70px);*/
		height: calc(100% - 70px);
		padding: .5rem 2rem 2rem 2rem;
		transition: all 0.4s ease;
		}

/* IF THE TOGGLER IS CHECKED, THEN INCREASE THE WIDTH OF THE MENU TO 30% , CREATING A SMOOTH EFFECT :  */

	.toggler:checked ~ .nav{
		left: 0;
		}



	}