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

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	header .hdr-text p {
		font-size: 16px;
	}

	header .top {
		font-size: 16px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.navigation nav ul {
			display: none;
			width: 100%;
		}
		.navigation nav ul li {
			display: block;
			width: 100%;

		}
		nav ul li a, nav ul li span {
			width: 100%;
		}

		header {
			text-align: center;
		}
		header .text-right {
			text-align: center;
		}


		.slider .wrap {
			position: relative;
			top: auto;
			left: auto;
			-webkit-transform: none;
			-ms-transform: none;
			-o-transform: none;
			transform: none;
		}

		.slider {
			min-height: auto;
			padding: 50px 0;
			-webkit-background-size: cover;
			background-size: cover;
			height: auto;
		}

		.slider .col-md-12 {
			height: auto;
		}

		.advantage-box {
			margin-top: 150px;
		}

		footer {
			text-align: center;
		}

		.a1 {
			margin-top: 0;
		}

		.mailer {
			text-align: center;
			margin-bottom: 25px;
		}

		.navigation  ul > li > ul {
			visibility: visible;
			opacity: 1;
			position: relative;
			width: 100%;
			left: 0;
			font-size: 14px;
			padding-left: 25px;
			-webkit-transition: none !important;
			-o-transition: none !important;
			transition: none !important;

		}

		.navigation .btn-menu-mobile  {
			display: block;
		}

}

/* 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;
	}

	.advant-slider h2 {
		font-size: 24px;
	}

	.advant-slider .item {
		font-size: 16px;
	}

	.advant-slider .item {
		padding: 0;
		text-align: center;
	}

	.advant-slider .owl-nav > div {
		opacity: .4;
	}

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
		.slider .title span {
			font-size: 36px;
		}

		.slider .title {
			font-size: 18px;
		}

		.slider .title + p {
			font-size: 14px;
		}

		.btn {
			padding: 16px 20px;
			font-size: 16px;
		}

		.info h2 {
			font-size: 16px;
		}

		.why-aeroadmin .item {
			padding-left: 0;
			text-align: center;
		}

		.why-aeroadmin .item span {
			position: relative;
			left: auto;
			top: auto;
			margin-bottom: 15px;
		}

		.why-aeroadmin .item h3 {
			font-size: 18px;
		}

		footer .btn {
			margin-top: 25px;
		}

		footer h2 + h3 {
			font-size: 16px;
		}

		footer h2 {
			font-size: 22px;
		}
}

/* 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) {
nav > ul {
		display: block !important;
	}
}

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

}