/* 
	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/triumphbrno/subheader.webp)top fixed;
}
#imr #subheader {
background:url(/images/background/triumphbrno/subheader-imr.webp)top fixed;
}
#events #subheader, section.test-ride {
background:url(/images/background/triumph/subheader-events.webp)top fixed;
}
#section-our-history {
background:url(/images/slider/triumphbrno/our-history.jpg)bottom fixed;
}

.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;
	}
}