/* 1
	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 single project subheader
	- background settings for section
	- media query
/*


/* general settings for section & subheader */
section,#subheader{
-webkit-background-size: 100% !important;
-moz-background-size: 100% !important;
-o-background-size: 100% !important;
background-size: 100% !important;
}


/* general background image for subheader */
#subheader{
background:url(../images/background/bg_subheader.webp)top fixed;
}


/* background settings for page subheader */
.page-projects #subheader{background-image:url(../images/background/subheader-1.webp);}
.page-services #subheader{background-image:url(../images/background/subheader-2.webp);}
.page-about #subheader{background-image:url(../images/background/subheader-3.webp);}
.page-blog #subheader{background-image:url(../images/background/subheader-4.webp);}
.page-shop #subheader{background-image:url(../images/background/subheader-5.webp);}
.page-contact #subheader{background-image:url(../images/background/subheader-6.webp);}


/* background settings for single project subheader */
.page-project-1 #subheader{background-image:url(../images/background/subheader-project-1.jpg);}
.page-project-2 #subheader{background-image:url(../images/background/subheader-project-2.jpg);}
.page-project-3 #subheader{background-image:url(../images/background/subheader-project-3.jpg);}
.page-project-4 #subheader{background-image:url(../images/background/subheader-project-4.jpg);}
.page-project-5 #subheader{background-image:url(../images/background/subheader-project-5.jpg);}


/* background settings for section */

#section-deco-1{ background:url(../images/background/Our_Skills_Bg.webp) top fixed;}

#explore-1{background:#222222;}
#explore-1.side-bg .background-image {background:url(../images/background/What_They_Say.webp) top;}


/* misc */
#section-portfolio{width:101%; overflow:hidden;}
#section-portfolio-deco{background:url(../images/background/bg-8.jpg) top; width:101%; overflow:hidden;}
#view-all-projects, #call-to-action{padding:60px 0 60px 0;}



/* media query */
@media only screen and (min-device-width: 768) and (max-device-width: 1024) and (orientation: portrait){
	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;
	}
}
@media only screen and (max-width:992px) {
	#subheader{
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
	background-attachment:scroll !important;
	}
}
@media only screen and (max-width: 992px) {
	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;
	}
}