/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	body {

	}
	/* Responsive Menu
	–––––––––––––––––––––––––––––––––––––––––––––––––– */
	.burger-nav {
		background-color: #FECD0B;
		cursor: pointer;
		display: block;
		height: 40px;
		width: 100%;
		text-align: center;
	}
	.burger-nav i {
		font-size: 28px;
	}


	/* Header
	–––––––––––––––––––––––––––––––––––––––––––––––––– */
	.header-left {
		text-align: center;
	}
	.header-right {
		text-align: center;
		margin-bottom: 30px;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	
	/*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;
	}

	/* Main Slider
	–––––––––––––––––––––––––––––––––––––––––––––––––– */
	.carousel-control {
		bottom: 17px;
	}
	.carousel-control.left {
		left: auto;
		right: 37px;
	}
	

}

/* 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 (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}