
/* About image  */

.about_image {
	width: 100%;
	height: 555px;	
	background-position: center, center;
	background-size: cover;
	background-attachment: fixed;
}

/* Ipad Mini 5 landscape*/

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 1) and (orientation : landscape) { 
	.about_image {
		width: 100%;
		height: 450px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 1) and (orientation : portrait) { 
	.about_image {
		width: 100%;
		height: 350px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}

/* Iphone 5 
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){ 
	.about_image {
		width: 100%;
		height: 450px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait){ 
	.about_image {
		width: 100%;
		height: 250px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}
*/

/* iPhone 2G, 3G, 4, 4S Media Queries */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) { 
	.about_image {
		width: 100%;
		height: 250px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}

/* iPhone 2G, 3G, 4, 4S Media Queries */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) { 
	.about_image {
		width: 100%;
		height: 150px;	
		background: 50% 100% no-repeat;
		background-size: 100%;
	}	
}

/* About Text */

.about_text {
	height: auto;
	font-size: 24px;
	margin: 60px auto;
}

/* iPhone 2G, 3G, 4, 4S Media Queries */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { 
	.about_text {
		height: auto;
		font-size: 17px;
		margin: 60px auto;
	}
	
	h1{
		font-size: 1.4em;
	}
	
}


.about_icons_box {
	width: 80%;
	margin: 0 auto;
	margin-top: 30px;
}

.about_icons_center {
	text-align: center;
}

.about_icon {
	display: inline-block;
	margin: 10px 10px;
}

.about_article_title {
	font-size: 32px;
}