/* 
	Section Background (bg.css)
	
	Table of Content
	- general settings for section & subheader
	- general background image for subheader
	- background settings for page subheader
	- background settings for section
	- subheader for side navigation
	- media query
*/

/* general  for subheader */
#subheader{
background:url(../images/background/subheader.jpg)top fixed;
}

/* background settings for page subheader */
.page-sobre #subheader{background-image:url(../images/breadcrumb/breadcrumb.jpg);}
.page-menu #subheader{background-image:url(../images/breadcrumb/breadcrumb.jpg);}
.page-contato #subheader{background-image:url(../images/breadcrumb/breadcrumb.jpg);}
.page-reserva #subheader{background-image:url(../images/breadcrumb/breadcrumb.jpg);}
/* background settings for section */

#section-about-us-2 .image-container{background:url(../images/sobre/02.jpg);}
#section-about-us-2{background:#18191b; height:100%;}

.bg-fit-height{
	-webkit-background-size: auto 100% !important;
	-moz-background-size: auto 100% !important;
	-o-background-size: auto 100% !important;
	background-size: auto 100% !important;
	background-attachment:scroll !important;
}

/* media query */
@media only screen and (max-width: 767px) {
	section{
	-webkit-background-size: auto 100% !important;
	-moz-background-size: auto 100% !important;
	-o-background-size: auto 100% !important;
	background-size: auto 100% !important;
	background-attachment:scroll !important;
	background-position:top !important;
	}

	section.fit-width{
	-webkit-background-size: 100% auto  !important;
	-moz-background-size: 100% auto  !important;
	-o-background-size: 100% auto  !important;
	background-size: 100% auto  !important;
	background-attachment:scroll !important;
	background-position:top !important;
	}
}
	