/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.header_bg {
		left: -563px;
	}
	h1 {
		font-size: 32px;
	}
	.menu li {
		max-width: 111px;
		margin-right: 14px;
	}
}
@media only screen and (max-width : 1200px) {
.menu li a {
    font-size: 14px;
}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.header_bg {
		width: 1000px;
		left: -100px;
	}
	.bg_menu {
		width: 1000px;
		left: -100px;
	}
	.menu li a {
		font-size: 13px;
	}
	.sidebar-menu ul{
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.menu li{
		max-width: inherit;
		display: block;
		text-align: left;
	}
	.menu li a {
		font-size: 18px;
		line-height: 1.5;
	}
	.navbar-collapse {
		padding-top: 10px;
		padding-bottom: 5px;
	}
	.collapse.in {
		background-color: #f8f8f8;
		border-bottom: 1px solid #863309;
	}
	.navbar-collapse{
		background-color: #f8f8f8;
	}
	.menu {
		z-index: 1;
		padding-top: 0;
		border: 0px;
	}
	footer,.page-content{
		padding-left: 10px;
		padding-right: 10px;
	}

	/*Disable Animation on Mobile Devices*/
	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.banner  {display: none;}

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}