@charset "UTF-8";
/* CSS Document */

  body{
	font-family: Verdana, Geneva, sans-serif;
	background-image: url(../mantels/mantels_bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
  }
  
  section{
	margin: 0 auto;
	width: 40%;
	padding: 5%  20%;
	position: relative;
	text-align:center;
  }
  
  section img{
	margin: 7px;
	border: 2px solid #B5A48F;
  } 
  
  section header p {
	font-family: 'Roboto Condensed', sans-serif;
	color: #fff;
	font-size: 48px;
	letter-spacing: 8px;
  } 


  nav {
	overflow: hidden;
	background-color: #f79421;
	font-family: 'Roboto Condensed', sans-serif;
	position:fixed;
	width: 100%;
	z-index: 999;
  }
  
  .header {
	float: left;
	color: #fff;
	padding: 10px;
	overflow: hidden;
  }
  
  .logo {
	font-size: 24px;
  }
  
  .handle {
	float: right;
	background: #f79421;
	color: #000;
	border: none;
	font-size: 16px;
	padding: 5px 10px;
	border-radius: 3px;
	cursor: pointer;
	display: none;
  }
  
  nav a {
	text-decoration: none;
	color: inherit;
	text-transform:uppercase
  }
  
  nav ul {
	overflow: hidden;
	color: #000;
	margin: 0;
	padding: 0;
	text-align: center;
	transition: max-height 0.5s;
	-webkit-transition: max-height 0.5s;
	-ms-transition: max-height 0.5s;
	-moz-transition: max-height 0.5s;
	-o-transition: max-height 0.5s;
  }
  
  nav ul li {
	float: none;
	display: inline-block;
	padding: 20px;
  }
  
  nav ul li:hover {
	background-color: #c56c07;
	color: #fff;
  }
  
  .footer-text{
	font-size: x-small;
	color: #fff;
	text-align: center;    
	width: 100%;
	margin: 40px 0;
  } 
  	
  @media screen and (max-width: 1500px) {
  .header {
	float: none;
  }
  
  nav ul {
	background: #f79421;
	max-height: 0;
	width: 100%;
  }
  
  nav ul.show {
	max-height: 20em;
  }
  
  nav ul li {
	box-sizing: border-box;
	width: 24.6%;
	padding: 15px;
  }
  
  .handle {
	display: inline;
  }
  
  setion header {
	width: 100%;
  }
  
  section header p {
	font-size: 40px;
  }
}  

@media screen and (max-width: 1024px) {
  .header {
	float: none;
  }

	nav ul li {
	width: 32.9%;
  }
                
  section {
	padding: 8% 5%;
	width: 65%;
  }
    
  section img{
	height: 110px;
	margin: 4px;
  }	
} 
	  
@media screen and (max-width: 768px) {
  nav ul li {
	width: 49.2%;
  } 
}
  
@media screen and (max-width: 600px) {
  section header p {
	font-size: 24px;
	letter-spacing: 6px;
  }
    
  section {
	font-size: 18px;
	padding: 20% 5%;
	width: 75%;
  }
  
  section img{
	height: 61px;
	margin: 4px;
  }  
}
	
