/* 
/* 
	Section Background (bg.css)
	
	Table of Content
	- general settings for section & subheader
	- background settings for section
	- media query
/*


/* background settings for section */

#section-hero {
    background: url(../images/background/1.jpg) fixed;
}

#section-hero-2 {
    background: url(../images/background/5.jpg) fixed;
}

/* #section-hero-3 {
    background: url(../images/background/6.jpg) fixed;
} */

#section-hero-4 {
    background: url(../images/background/7.jpg) fixed;
}

#section-hero-5 {
    background: url(../images/background/8.jpg) fixed;
}

#section-hero-6 {
    background: url(../images/background/10.jpg) fixed;
}

#section-hero-7 {
    background: url(../images/background/12.jpg) fixed;
}


#section-testimonial.index-8 {
    background: url(../images/background/13.jpg) fixed;
}


#section-contact.index-6 {
    background: url(../images/background/8.jpg) fixed;
}

#section-about.side-bg .background-image {
    background: url(../images/background/s1.jpg);
}

.social-section {
    background: url(../images/background/communityGiveback.jpeg) fixed;
}

body.custom-bg-1 {
    background: none;
}

#section-about.index-8.side-bg .background-image {
    background: url(../images/background/s2.jpg);
}

/* 
section {
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
} */

/* 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;
    }
}