/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
header {
	font-size: 14px;
}
.heading ul {
	margin-right: 20px;
}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
header img {
	margin: 0 auto;
}
header ul {
	margin-top: 20px;
}
header .lang {
	margin-top: 40px;
}
.menu ul li {
	margin: 0 20px;
}
.heading ul {
margin-right: 10px;
font-size: 14px;
}
.promo .promo-1 .number {
	font-size: 60px;
	line-height: 50px;
}
.promo .promo-1 .promo-text {
	font-size: 14px;
	line-height: 16px;
	width: 80px;
}
.menu-btn {
	display: none;
}
}

/* 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;
	}
	header .social {
		margin-top: 0px;
	}
	header .social li {
		display: inline-block;
	}
header .lang {
	margin-top: 20px;
	text-align: center;
}
.menu-btn {
	display: inherit;
}
.menu-btn::before {
	content: url(../img/menu.png);
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 5px;
	float: right;
	right: 20px;
}
.menu-close::before {
	content: url(../img/btn-close.png);
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 5px;
	float: right;
	right: 20px;
}
.menu ul {
	display: none;
	padding-top: 40px;
	padding-bottom: 30px;
	padding-left: 0px;
}
.menu ul li {
	display: inherit;
	text-align: left;
	line-height: 40px;
	border-bottom: 1px dashed #fafafa; 
}
.heading img {
	margin: 40px auto 0;
}
.heading .spec-3 {
	margin-top: 0px;
}
.heading .spec-3 li {
	display: inline-block;
}
.welcome h2 {
	margin-top: 20px;
}
.askme .round-image {
	margin-top: 60px;
}
.promo .promo-1 {
	margin-bottom: 10px;
}
footer img {
	margin-bottom: 40px;
}
footer .xs-margin {
	margin-top: 40px;
}
.overlay-content {
	top: 15%;
}
}

/* 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) {

}