
/*Menu Structure*/
    .header-ex7 .Navigation { float:left; clear:both; width:100%; position:absolute; z-index:3; } 

        /*Menu Elements*/
        .header-ex7 .Navigation .elements { height:250px; width:100%; display: flex; justify-content:flex-end; flex-wrap:wrap; margin-top:0px; }
		
		
		.header-ex7 .Navigation .elements .topBar { width:100%; display:flex; background:#ccc; height:50px; }
			.header-ex7 .Navigation .elements .topBar .address { width:80%; padding:16px 60px; }
				.header-ex7 .Navigation .elements .topBar .address a { font-size:18px; text-decoration:none; color:#000; }
			.header-ex7 .Navigation .elements .topBar .phone { width:17%; padding:16px; }
				.header-ex7 .Navigation .elements .topBar .phone p { font-size:18px; }
					.header-ex7 .Navigation .elements .topBar .phone p a { font-size:18px; padding-left:10px; margin-left:10px; border-left:2px solid #000; }

		.header-ex7 .Navigation .elements .menuBar { width:100%; display:block; top:0; margin-top:-87px; height:113px; }
		
		
		
		
		/*Logo*/
            .header-ex7 .Navigation .elements .logo { width:83px; padding-top:56px; position:absolute; top:0; left:60px; }
				.header-ex7 .Navigation .elements .logo a { width:100%; } 
					.header-ex7 .Navigation .elements .logo a img { width:100%; }
		
        /*Phone*/      
			.header-ex7 .Navigation .elements .phone { display:inline-block; float:right; clear:both; }
				.header-ex7 .Navigation .elements .phone img { display:inline-block; vertical-align:top; margin-top:42px; margin-left:30px; }
				.header-ex7 .Navigation .elements .phone a { display:inline-block; font-size:16px; color:#000; text-decoration:none; }
					.header-ex7 .Navigation .elements .phone a:hover { color:#fff; }				

		/*Menu*/
            .header-ex7 .Navigation .elements .menuNav { width:100%; float:right; height:95px; border-bottom:1px solid #ccc; margin-top:0px; background:#fff; display:flex; justify-content:flex-end; }
                .header-ex7 .Navigation .elements .menuNav .menu { display:inline-block; float:right; clear:right; }
                    .header-ex7 .Navigation .elements .menuNav .menu ul { padding:0; height:100%;}
                        .header-ex7 .Navigation .elements .menuNav .menu ul li { margin:0;  display:inline-block; text-align:left; padding:0; height:100%; border-left:1px solid #000; margin-right:-7px; }
							.header-ex7 .Navigation .elements .menuNav .menu ul li:last-of-type { margin-right:0; }
								.header-ex7 .Navigation .elements .menuNav .menu ul li a { font-size:22px; font-weight:500; color:#261e07; text-decoration:none; margin:0; padding:37px 60px; width:100%; height:100%; transition: color 0.15s ease-out; }
									.header-ex7 .Navigation .elements .menuNav .menu ul li a:hover { background:#777; color:#fff; }
									
							.header-ex7 .Navigation .elements .menuNav .menu .mobilePhone { display:none; }
					
							/*Sub Menu*/
                            .header-ex7 .Navigation .elements .menuNav .menu ul li ul { background-color:#333;  margin-left:44px; }
								.header-ex7 .Navigation .elements .menuNav .menu ul li ul li { padding:5px 7px; }
									.header-ex7 .Navigation .elements .menuNav .menu ul li ul li a { color:#fff; transition: height 0.20s ease-out; background:none; margin-left:0; }
								
								
								
								
								
        /*Snap Header Styles*/
        .header-ex7 .Navigation .fixed { position:fixed; top:0; left:0; right:0; box-shadow:0 0 15px #666; }
            .header-ex7 .Navigation .fixed .elements { background:#fff ; margin-top:0px; height:139px; }
			
					
				
				
		/*Search Styles*/
		.header-ex7 .Navigation .topBar .searchIcon { width:58px; display:block; padding-top:8px; background:#777; }
		.header-ex7 .Navigation .topBar .searchIcon img { width:59%; margin-left:12px; }
		
		.header-ex7 .Navigation .topBar form { float: right; clear: both; position:relative; }
			.header-ex7 .Navigation .topBar form input { width: 230px; height: 50px; margin:0 -1px 0 0; padding:0 5px; text-overflow:ellipsis; font-size:24px; float: left; position: relative;  border: 1px solid #c6c6c6; border-right:0; background: #eeeeee; color: #000; outline: none; border-top-left-radius:10px; border-bottom-left-radius:10px; }
			.header-ex7 .Navigation .topBar form button { float: left; right: 0; cursor: pointer;  width: 55px; height: 50px; font-size: 0; background:#000 url("../Images/searchIconWhite.png") center center no-repeat; background-size: contain; border: 1px solid #c6c6c6; transition:all 0.15s ease; border-top-right-radius:10px; border-bottom-right-radius:10px; }
			.header-ex7 .Navigation .topBar form button:hover { background-color:#333; }
			 
			.header-ex7 .Navigation .topBar  #searchChk { display:none; }
			.header-ex7 .Navigation .topBar  .close { display:none; }	
			
				.header-ex7 .topBar .popContainer { position:fixed; top:0; right:0; bottom:0; left:0; background-color:rgba(0,0,0,0.5); display: none; opacity:0; justify-content: center; align-items: center; align-content: center; flex-wrap:wrap; z-index:-9999; }
				.header-ex7 .topBar .popContainer > div { position:relative; display:none; }

				.header-ex7 .topBar .popContainer form { padding:20px 30px; background-color:#fff; border:1px solid #000; border-radius:10px; box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.75); }
				.header-ex7 .topBar .popContainer form:before { content:"Site Search"; display:block; text-align:left; color:#000; width:100%; margin-bottom:10px; font-weight:500; }
				.header-ex7 .topBar .popContainer label { position:absolute; top:-10px; right:-10px; background-color:#f00; border:1px solid #000; border-radius:100px; width:30px; height:30px; display:flex; justify-content:center; align-items:center; color:#fff; user-select:none; cursor:pointer; }

				.header-ex7 .topBar input[type="checkbox"]:checked ~ .popContainer { display: flex; transition: all ease 0.25s; transition-delay:0.15s; opacity:1; z-index:9999; }
				.header-ex7 .topBar input[type="checkbox"]:checked ~ .popContainer > div { display:block; }
				.header-ex7 .topBar input[type="checkbox"]:checked ~ .popContainer form { display:block; }
				.header-ex7 .topBar input[type="checkbox"]:checked ~ .popContainer .close { display:flex; }
				
				
				
				
				
				
/*----Responsive for Header----*/

@media only screen and (max-width: 1279px) {
    
}





@media only screen and (max-width: 992px) {
	.header-ex7 .Navigation .elements { height:70px; background:#fff; }
		.header-ex7 .Navigation .elements .logo { width:150px; padding-top:10px; }
		.header-ex7 .Navigation .elements .phone { display:none; }
		.header-ex7 .Navigation .elements .quote { margin-right:30px; }
			.header-ex7 .Navigation .elements .quote a { margin-top:9px; }
		.header-ex7 .Navigation .elements .menuNav { border:0; background:transparent; height:70px; width:140px; margin-top:0; }
			.header-ex7 .Navigation .elements .menuNav .menu { padding-top:4px; }
				.header-ex7 .Navigation .elements .menuNav .menu ul li a { margin-top:0; padding:13px; margin-left:0; }
				
				.header-ex7 .Navigation .elements .menuNav .menu ul li ul { margin-left:0; background-color:#fff; }
				.header-ex7 .Navigation .elements .menuNav .menu ul li ul li { padding:5px 0; }
					.header-ex7 .Navigation .elements .menuNav .menu ul li ul li a { color:#000; padding-left:30px; }
		
		.header-ex7 .Navigation .elements .menuNav .menu .mobileMenu::after { background:transparent url(../Images/menuIcon2.png) center center no-repeat; }
        
		.header-ex7 .Navigation .elements .menuNav .menu .callAndClose { background-color:#fff; border-bottom:1px solid #000; }
			.header-ex7 .Navigation .elements .menuNav .menu .callAndClose .callBtn { background-color:transparent; border:2px solid #000; border-radius:0; margin-top:3px; }
				.header-ex7 .Navigation .elements .menuNav .menu .callAndClose .callBtn::after { color:#000; }
		
		.header-ex7 .Navigation .elements .menuNav .menu ul.stMobileMenu { background-color:#fff; font-size:21px; padding:13px 20px; }
}





@media only screen and (max-width: 768px) {
    .header-ex7 .Navigation .elements .logo { left:30px; }

	.header-ex7 .Navigation .elements .menuNav { width:100px; }
		.header-ex7 .Navigation .elements .menuNav .menu { padding-right:30px; }
}





@media only screen and (max-width: 480px) {
	.header-ex7 .Navigation .elements .logo { width:80px; left:10px; }
	
	.header-ex7 .Navigation .elements .quote { margin-right:20px; }
		.header-ex7 .Navigation .elements .quote a { padding:6px 10px; }
	
	.header-ex7 .Navigation .elements .menuNav { width:70px; }
		.header-ex7 .Navigation .elements .menuNav .menu { padding-right:10px; }
}




