/*******************************************************
* _INIT.SCSS
* =================================================
*
* This file contains intitial setup and configuration
* data for all site stylesheets. It includes
* Site-wide variables, mixins, & functions
*
* IMPORTING ADDITIONAL CONFIGURATION STYLESHEETS:
* ----------------------------------------------
* All other sitewide includes should be imported at
* at the end of this file. As this file is imported
* into all other stylesheets, anything imported here
* will likewise be imported into those stylesheets.
*
* ==================== WARNING! =======================
* DO NOT INCLUDE ANY ACTUAL STYLES THAT WILL GET OUTPUT
* TO THE FINAL CSS IN THIS FILE OR ANY FILE IMPORTED IN
* THIS FILE! ANY SUCH STYLES WILL END UP BEING DEFINED
* IN EVERY OUTPUT CSS FILE THAT IMPORTS THIS FILE (I.E.
* ALL STYLESHEET FILES SITE WIDE).
********************************************************/
/* TYPOGRAPHY
   ========== */
/* COLORS
   ====== */
/*Define the path to use for font awesome fonts */
/*Define the path to use for font awesome fonts */
/* MIXINS
   ====== */
/* ADDITIONAL CONFIGURATION STYLESHEETS
*  ==================================== */
/*	Use this file to change/override bootstrap variables.
*	Variables should be defined at the top of the file,
*	with the bootstrap import coming at the end.
*********************************************************/
/* Load icon fonts from this directory. */
/* default text settings */
/* default settings for headings and titles */
/* DO NOT ADD VARIABLES BELOW THIS LINE */
/**********************************************************
* _REESPONSIVE.SCSS
*	This file defines variables, functions, and mixins for
*	use in targeting breakpoints for mobile devices.
*
*	The variables and functions defined here should rarely
*	be accessesd directly. Instead, the media query mixins
*	should be used to target specific device(s).
\**********************************************************/
/* $screen -
 *	 A Sass Map to define the min and max screen sizes
 *   for each device type supported. Used by the
 *	 screen-size function to retrieve breakpoints for
 *	 media query mixins */
/* FUNCTIONS
 * =========
 *
 * Functions are used to return a specific screen size from
 * the $screen map */
/* @screen-size
 *	 A function to retrieve a screen breakpoint value from the
 *	 $screen map for use in a media query mixin */
/* MEDIA QUERY MIXINS
 * ==================
 *
 * A set of mixins to create media queries that target a specific
 * device or set of devices. These mixins create the appropriate
 * media query, and then include the mixin content inside the media query.
 *
 * USAGE:
 *   @include <mixin-name> {
 * 	     //Styles for the media query here. For example:
 *       font-size: 0.75em;
 *       background: url('phone-bg.png');
 *   }
 */
.parallax_overlay:before {
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)) center/cover no-repeat fixed; }
