/*
	add the viewport meta tag in your html:

	<meta name="viewport" content="width=device-width, initial-scale=1">
*/

/* Anything here affects anything 992px or larger */


/* tablets */
@media screen and (max-width: 991px) {
	.row,
	#logowrap,
	#maincontent, .content
	#sidebar,
	.col_11, .owl-pagination, 
	#contactus, #contactus h2, .slide-img, 
	.row .row, .testimonial, footer {
		width: 100% !important;
		padding: 0;
		margin: 0;
		box-sizing: border-box
	}
	#footer-left {
		width: 100%;
		margin: 20px;
		padding-top: 15px;
		box-sizing: border-box
	}

	#logowrap {
		min-height: 120px;
		padding: 20px;
	}
	
	.col_11, .testimonial {
		padding: 20px;
	}
	.where-wrap {
		width: 100%;
		background: url(../images/where-slice.png) repeat-x;
		box-sizing: border-box;
	}
	#where {
		box-sizing: border-box;
		background-position: right top;
		height: 404px;
	}
	#contactus {
		min-height: 55px;
	}
	#contactus h2 {
		padding: 15px 0;
		margin: 0;
	}
	.img-col {
		box-sizing: border-box;
		width: 50%;
		display: inline-block;
		float: left;
		padding: 10px;
	}
	.text-block {
		width: 100%;
		float: left;
		clear: both;
		height: auto;
	}
	.text-block h2, .testimonial p {
	border-top: 1px solid #E6E6E6;
	width: 100%;
	padding-top: 20px;
	margin-top: 20px;
	}
	
	form {
		margin: 20px 0 auto;
    	width: 100%;
    	box-sizing: border-box;
	}
	#comment {
	width: 100%;	
    box-sizing: border-box;
	}
	form fieldset {
		box-sizing: border-box;
		padding: 10px;
	}
	.contact {
		padding-top: 20px;
	}

}

/* target larger tablets only */

@media screen and (min-width: 800px) and (max-width: 991px) {

	.where-wrap {
		width: 47%;
		float: left;
		margin-left: 20px;
	}
	.img-wrap {
		width:50%;
		float: left;
	}
	.testimonial {
		clear: both;
	}
	.img-col {
		width: 100%;
		display: inline-block;
		float: left;
		padding-left: 24px;
		padding-top: 0px;
	}
}

/* mobile */
@media screen and (max-width: 768px) {

	#contactus {
			min-height: 70px;
		}
	#contactus h2 {
		padding: 15px 10px;
		margin: 0;
		font-size: 15px;

	}
	#logowrap .logo h1 {
		width: 60%;
	}
	#logowrap {
	min-height: 200px !important;
	}
	.logos h2 {
		margin-top: 20px !important;
	} 
	footer {
		height: auto;
		background-color: #535353;
	}
	#footer-left {
	  	margin: 0;
	    padding: 30px 15px;
	    width: 100%;
	}
}



/* sometimes you'll want to target very specific widths
e.g*/

@media screen and (min-width: 320px) and (max-width: 550px) {
	/* This media query will only hit viewports between
	320 and 550 pixels */
}

/*========================

The specific media queries are not important.
It's better to work around your design and just
'make sure it looks good at all sizes'

========================*/


/* better box model */

/* box-sizing: border-box */
