@charset "utf-8";
/* CSS Document */

body {
	margin:0;
	padding:0;
	font-family: 'Encode Sans', sans-serif;
	}
	
img {
	margin:0;
	padding:0;
	border:none;
	width:100%;
	}

/* ============================================= */
/* ============================================= */
/* Navbar */

/* Show it is top to the top */

/* a - full DIV */
.navbar {
	margin:0;
	padding:0;
	height:100px;
	z-index:3;
	
}

/* b - brand LOGO */
.navbar_logo {
	margin:0;
	padding:0;
	float:left;
	width:auto;
	height:100px;
}

/* c - brand if TEXT */
.navbar-brand {
	margin:0 26px 0 0;
	padding:0;
    font-size:200%;
    font-weight: 600;
    color:#E53808;
}

/* d - three lines background */
.navbar-toggler {
	
}

/* three lines background HOVER */
.navbar-toggler:hover {	
    
}

/* e - three lines icon */
.navbar-toggler-icon {
	
}

/* three lines icon HOVER */
.navbar-toggler-icon:hover {
	
}

/* f - menues Color, Font, Size (Margin and Padding are not working in this class) -  */
.nav-link {
	font-family: 'Encode Sans', sans-serif;
	font-size:100%;
	font-weight:600;
	color:#333333;
	text-align:left;
	transition:200ms;
}

/* f - menues Margin and Padding-  */
.nav-item {
padding:0px 10px 0px 10px;
background-color: white!important;
}

/* f - menues HOVER  */
.nav-link:hover {
	font-family: 'Encode Sans', sans-serif;
	font-weight:600;
	color:red;
}

/* g - DROPDOWN main Background color*/
.dropdown {
    
}

/* h - DROPDOWN main Text */
.dropdown-toggle {
	color:black !important;
	font-size:100%;
}

/* h - DROPDOWN main Text Hover */
.dropdown-toggle:hover {
	color:red;
	font-size:100%;
	height:auto;
}


/* i - DROPDOWN Menu List background */
.dropdown-menu {
	background-color:transparent;
	margin:0;
	padding:0;
    border: none;
}

/* j - DROPDOWN Menu LIST */
.dropdown-item {
	width:100%;
	height:50px;
	font-family: 'Encode Sans', sans-serif;
	font-size:100%;
	font-weight:400;
	color:black;
	padding:15px 10px 10px 15px;
	background-color:yellow;
	transition:200ms;
}

/* j - dropdown LIST Hover */
.dropdown-item:hover {
	width:104%;
	height:50px;
	background-color:red;
	color:white;
	font-size:100%;
	font-weight:600;
	border-radius:0px 4px 4px 0px;
}