/*==========  Non-Mobile First Method  ==========*/

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

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.footerFixed{
		position:absolute!important;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	footer {
		padding-bottom: 20px;
		color: #000;
		position: static;
	}
	.centerFooter {
		position: static;
		text-align: center;
	}
	.contentFooter {
		position: relative;
		margin-top: 0px;
	}
	.mobileMargin{
		margin-top:10px; 
	}
	.copyright{
		padding-top:15px;
	}
	.whiteBox {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 30px 20px;
		margin-top: 23px;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	footer {
		padding-bottom: 20px;
		color: #000;
		position: static;
	}
	.centerFooter {
		position: static;
		text-align: center;
	}
	.contentFooter {
		position: relative;
		margin-top: 0px;
	}
	.mobileMargin{
		margin-top:10px; 
	}
	.copyright{
		padding-top:15px;
	}
	.whiteBox {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 30px 20px;
		margin-top: 23px;
	}
}