/*
 Table Of Contents
 1.) Media Query for Handheld Devices
 2.) Media Query for Tablet
 3.) Media Query for mobile
 ===============================================*/
/*
 1.) Media Query for Handheld Devices
 ===============================*/
@media only screen and (max-width : 1279px) {
	
	h1{
		font-size:52px;
		line-height: 52px;
	}
	h4{
		font-size:27px;
		line-height: 27px;
	}
}


/*
 2.) Media Query for Tablet
 ===============================*/
@media only screen and (min-width : 768px) and (max-width : 1024px) {


}


/*
 3.) Media Query for mobile
 ===============================*/
@media only screen and (max-width : 1023px){
	
	.menu-icon
	{
		display:block;
	}
	
	h4{
		font-size:17px;
		line-height: 24px;
	}
	
	 nav
	{display: none;
		position:absolute;
		width: 320px;
		right: 0;
    	top: -10px;
    	
    	padding:0;
	}
	.container{
		padding:22px 50px 18px;
	}
	.footer-left,.footer-right{
	float:none;
	 text-align:center;
}

.footer-right ul{
	display: inline-block;
}

nav ul{
	background:#9da98d;
}
	 nav ul li
	{
		display: block;
		width: 100%;
		font-size:24px;
		border-top: 1px solid #ffffff;
		padding: 0;
		text-align: left;
		
		
	}
    nav ul li:hover 
	{
		background: #7b725c;
		
	}
	
     nav ul li a:hover,nav ul li a:focus,nav ul li a:active{
		color:#ffffff;
	}
	 nav ul li a
	{    padding: 7px 15px;
		color:#343e2d;
		display: block;
		width: 100%;
	}
	
}
@media only screen and (max-width : 767px){
	.container {
    padding: 22px 10px 18px;
}
#header .container{
	text-align:center;
}
	span {
   font-size:14px;
}
h1 {
    font-size: 28px;
    line-height: 28px;
}

.menu-icon {
    margin: 15px auto 0;
    position: static;
}
.gallery ul{
	text-align:center;
}
address{
	font-size:14px;
	line-height: 20px;
}
#footer span {
    padding: 0;
}

.footer-right ul li {
    margin-left: 0px;
    margin-right: 18px;
}

	h2 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 11px;
}
	p
	{
		font-size: 16px;
		line-height:22px;
	}
	nav{
		width: 100%;
		background:transparent;
	}
	nav ul{
	width: 320px;
	margin:0 auto;
}

	
}
@media only screen and (max-width : 479px){
	
}