/* 
	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
*/
#section-welcome {
  /*  background: url(../images/background/bg-4.jpg) top fixed;*/
  background-color: rgba(0, 9, 11, 1.00);
  background-image: url(../images/background/church_002e.jpg);
  /*  background: url(../images/background/church_002c.jpg) fixed;*/
  background-position: top center;
  background-repeat: no-repeat;
}
#section-hero-001 {
  background-color: rgba(0, 9, 11, 1.00);
  background-image: url(../images/background/church_002a.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}
#section-hero-002 {
  background-color: rgba(0, 9, 11, 1.00);
  background-image: url(../images/background/church_002b.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}
#section-hero-003 {
  background-color: rgba(0, 9, 11, 1.00);
  background-image: url(../images/background/church_002c.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}
#section-hero-004 {
  background-color: rgba(0, 9, 11, 1.00);
  background-image: url(../images/background/church_002d.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}
#section-steps {
  /*background-color: rgba(4, 3, 15, 0.95);*/
  background-color: rgba(28, 41, 52, 0.95);
  background-image: url("../images/background/bg-2.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
}
#section-about {
  /*background-color: rgba(4, 3, 15, 0.95);*/
  background-color: rgba(28, 41, 52, 0.95);
  background-image: url("../images/background/bg-2.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #fff;
}
#section-events {
  /*background-color: rgba(4, 3, 15, 0.95);*/
  background-color: rgba(255,255,255,1.0);
  background-image: url("../images/background/bg-3.jpg");
/*  background-size: cover;*/
  background-position: bottom center;
/*  background-repeat: no-repeat;*/
  background-blend-mode: multiply;
  color: #000000;
}
#hide-content {
  position: absolute;
  width: 100%;
  min-height: 100%;
  z-index: 100;
  display: none;
  background: rgba(0, 0, 0, .8);
}
.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;
  }
}