@media screen and (max-width: 1000px) {
		.banner {
	        display: none !important;
	    }
	    .mobile-container  {
	        display: show !important;
	    }
	    .top  {
	        display: none !important;
	    }
	    .footermobile {
	    	display: show !important;
	    }
	    .footer {
	    	display: none !important;
	    }
	}
	@media screen and (min-width: 1001px) {
		.banner {
	        display: show !important;
	    }
	    .mobile-container  {
	        display: none !important;
	    }
	    .top  {
	    	display: show !important;
	    }
	    .footermobile {
	    	display: none !important;
	    }
	    .footer {
	    	display: show !important;
	    }
	}	
