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

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

}

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

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	
	section {
		padding: 0px 0 0px;
	}
	.person {
		height: auto;
	}
	.personal_header_left,
	.personal_header_center,
	.personal_header_right {
		height: auto;
	}
	.contact_info_left,
	.contact_info_center,
	.contact_info_right {
		height: auto;
	}
	.personal_description_left,
	.personal_description_center,
	.personal_description_right {
		height: auto;
		margin-bottom: 41px;
	}
		
	.benefit_description_left,
	.benefit_description_center,
	.benefit_description_right {
		margin-bottom: 35px;
	}

	.main_footer {
		padding: 20px 0;
	}
	.copyright {
		padding-top: 25px;
	}
	
	.adress_item {
		margin-bottom: 25px;
	}

	.section_header_product {
		margin-top: 65px;
	}	
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.top_wrapper .top_text {
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 110px;
	}
	
	.top_wrapper .top_text h1 {
		font-size: 2.5em;
		padding-left: 10px;
		padding-right: 10px;
	}

		.top_wrapper .top_text h3 {
		font-size: 1.5em;
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* 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) {

}