

/* Big tablet to 1200px (widths smaller that the 1140px row)  */
@media only screen and (max-width: 1200px) {
	.hero-text-box {
		width: 100%;
		padding: 0 2%;
	}

	.row {
		padding: 0 2%;
	}
}

/* small tablet to big tablet: from 768 to 1023px  */
@media only screen and (max-width: 1023px) {
	body {
		font-size: 18px;
	}
	
	section {
		padding: 60px 0;
	}
	
	.long-copy {
		width: 80%;
		margin-left: 10%;
	}
	
	.icon-small {
		width: 15px;
		margin-right: 5px;
	}
	
	.city-feature {
		font-size: 90%;
	}
	
	.contact-form {
		width: 80%;
	}
	
}


/* small phones to small tablets: from 481 to 767px  */
@media only screen and (max-width: 767px) {
	body {
		font-size: 16px;
	}
	section {
		padding: 30px 0;
	}
	.row,
	.hero-text-box {
		padding: 0 4%;
	}
	.col {
		width: 100%;
	}
	.main-nav {
		display: none;
	}
	
	h1 {
		font-size: 180%;
	}
	
	h2 {
		font-size: 150%;
	}
	
	.long-copy {
		width: 100%;
		margin-left: 0%;
	}
}


/* small phones: from 0 to 480px  */
@media only screen and (max-width: 480px) {
	section {
		padding: 25px 0;
	}
	.hero-text-box {
		padding-top: 80px;
	}
	
	.contact-form {
		width: 100%;
	}
	footer {
		padding: 10px;
	}
	
	.footer-nav {
		float: none;
		margin-bottom: 10px;
	}

	.social-links {
		float: none;
	}
		
}