/* Parallax effect
--------------------------------------------- */
.parallax-section.CLASS_NAME {
background: url(./images/BG_IMAGE_NAME.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
height: 500px; /*height of parallax container*/
/*If the image is square enough and you want to see the full width without it resizing to cover, use this*/
/* -webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
background-size: 100% auto; */
}