@@ -0,0 +1,27 @@
{
"name": "classie",
"main": "classie.js",
"version": "1.0.1",
"homepage": "https://github.com/desandro/classie",
"authors": [
"David DeSandro"
],
"description": "class helper",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"class"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
"component.json"
]
}
@@ -0,0 +1,85 @@
/*!
* classie v1.0.1
* class helper functions
* from bonzo https://github.com/ded/bonzo
* MIT license
*
* classie.has( elem, 'my-class' ) -> true/false
* classie.add( elem, 'my-new-class' )
* classie.remove( elem, 'my-unwanted-class' )
* classie.toggle( elem, 'my-class' )
*/

/*jshint browser: true, strict: true, undef: true, unused: true */
/*global define: false, module: false */

( function( window ) {

'use strict';

// class helper functions from bonzo https://github.com/ded/bonzo

function classReg( className ) {
return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
}

// classList support for class management
// altho to be fair, the api sucks because it won't accept multiple classes at once
var hasClass, addClass, removeClass;

if ( 'classList' in document.documentElement ) {
hasClass = function( elem, c ) {
return elem.classList.contains( c );
};
addClass = function( elem, c ) {
elem.classList.add( c );
};
removeClass = function( elem, c ) {
elem.classList.remove( c );
};
}
else {
hasClass = function( elem, c ) {
return classReg( c ).test( elem.className );
};
addClass = function( elem, c ) {
if ( !hasClass( elem, c ) ) {
elem.className = elem.className + ' ' + c;
}
};
removeClass = function( elem, c ) {
elem.className = elem.className.replace( classReg( c ), ' ' );
};
}

function toggleClass( elem, c ) {
var fn = hasClass( elem, c ) ? removeClass : addClass;
fn( elem, c );
}

var classie = {
// full names
hasClass: hasClass,
addClass: addClass,
removeClass: removeClass,
toggleClass: toggleClass,
// short names
has: hasClass,
add: addClass,
remove: removeClass,
toggle: toggleClass
};

// transport
if ( typeof define === 'function' && define.amd ) {
// AMD
define( classie );
} else if ( typeof exports === 'object' ) {
// CommonJS
module.exports = classie;
} else {
// browser global
window.classie = classie;
}

})( window );
@@ -0,0 +1,30 @@
{
"name": "waypoints",
"version": "3.1.1",
"main": "lib/noframework.waypoints.min.js",
"description": "Easily execute a function when you scroll to an element.",
"ignore": [
"gulpfile.js",
"package.json",
"src",
"test",
"testem.json"
],
"devDependencies": {
"jquery": "~1.11.1",
"lodash": "~2.4.1",
"jasmine-jquery": "~1.7.0",
"zepto": "~1.1.3"
},
"homepage": "https://github.com/imakewebthings/waypoints",
"_release": "3.1.1",
"_resolution": {
"type": "version",
"tag": "3.1.1",
"commit": "13ae054b649b5e0df9a549abb4a0420eac67bea8"
},
"_source": "git://github.com/imakewebthings/waypoints.git",
"_target": "~3.1.1",
"_originalSource": "jquery-waypoints",
"_direct": true
}
@@ -0,0 +1,25 @@
{
"env": {
"browser": true,
"node": true
},

"rules": {
"brace-style": [1, "stroustrup"],
"consistent-this": [1, "self"],
"eqeqeq": [1, "smart"],
"func-style": [1, "declaration"],
"no-else-return": 1,
"no-extra-parens": 1,
"no-floating-decimal": 1,
"no-nested-ternary": 1,
"no-lonely-if": 1,
"quotes": [1, "single", "avoid-escape"],
"radix": 1,
"semi": [1, "never"],
"space-after-keywords": [1, "always"],
"space-in-brackets": [1, "never"],
"space-unary-word-ops": 1,
"wrap-iife": 1
}
}
@@ -0,0 +1,7 @@
_site
.sass-cache
.DS_Store
/style.scss
*.gz
node_modules
bower_components
@@ -0,0 +1,6 @@
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g bower
- bower install
@@ -0,0 +1,19 @@
{
"name": "waypoints",
"version": "3.1.1",
"main": "lib/noframework.waypoints.min.js",
"description": "Easily execute a function when you scroll to an element.",
"ignore": [
"gulpfile.js",
"package.json",
"src",
"test",
"testem.json"
],
"devDependencies": {
"jquery": "~1.11.1",
"lodash": "~2.4.1",
"jasmine-jquery": "~1.7.0",
"zepto": "~1.1.3"
}
}
@@ -0,0 +1,27 @@
{
"name": "retina.js",
"version": "1.3.0",
"homepage": "https://github.com/imulus/retinajs",
"authors": [
"Imulus, LLC <developer@imulus.com>"
],
"description": "JavaScript, Less and Sass helpers for rendering high-resolution image variants",
"main": "build/js/retina-1.2.0.js",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test"
],
"_release": "1.3.0",
"_resolution": {
"type": "version",
"tag": "1.3.0",
"commit": "a70e73639817473bad7bbb33f866b8e060e5f5a7"
},
"_source": "git://github.com/imulus/retinajs.git",
"_target": "~1.3.0",
"_originalSource": "retina.js",
"_direct": true
}
@@ -0,0 +1,83 @@
module.exports = function (grunt) {
'use strict';

var addBanner = function (content) {
var banner = grunt.config.get('banner');
banner = grunt.template.process(banner);
return banner.concat('\n', content);
};

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
year: (function () {
return new Date().getFullYear();
})(),
banner: '/*!\n' +
' * Retina.js v<%= pkg.version %>\n' +
' *\n' +
' * Copyright <%= year %> Imulus, LLC\n' +
' * Released under the MIT license\n' +
' *\n' +
' * Retina.js is an open source script that makes it easy to serve\n' +
' * high-resolution images to devices with retina displays.\n' +
' */\n',

clean: ['dist'],

jshint: {
options: {
trailing: true,
jshintrc: '.jshintrc'
},
grunt: {
src: 'Gruntfile.js'
},
src: {
src: 'src/*.js'
}
},

copy: {
js: {
src: 'src/retina.js',
dest: 'dist/retina.js',
options: {
process: addBanner
}
}
},

uglify: {
build: {
options: {
banner: '<%= banner %>'
},
files: {
'dist/retina.min.js': 'dist/retina.js'
}
}
},

compress: {
pkg: {
options: {
archive: 'dist/retina-<%= pkg.version %>.zip'
},
files: [{
src: ['**'],
cwd: 'dist/',
dest: '/',
expand: true
}]
}
}
});

grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.registerTask('default', ['clean', 'jshint', 'copy', 'uglify', 'compress']);
};
@@ -0,0 +1,17 @@
{
"name": "retina.js",
"version": "1.2.0",
"homepage": "https://github.com/imulus/retinajs",
"authors": [
"Imulus, LLC <developer@imulus.com>"
],
"description": "JavaScript, Less and Sass helpers for rendering high-resolution image variants",
"main": "build/js/retina-1.2.0.js",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test"
]
}
@@ -0,0 +1,182 @@
/*!
* Retina.js v1.3.0
*
* Copyright 2014 Imulus, LLC
* Released under the MIT license
*
* Retina.js is an open source script that makes it easy to serve
* high-resolution images to devices with retina displays.
*/

(function() {
var root = (typeof exports === 'undefined' ? window : exports);
var config = {
// An option to choose a suffix for 2x images
retinaImageSuffix : '@2x',

// Ensure Content-Type is an image before trying to load @2x image
// https://github.com/imulus/retinajs/pull/45)
check_mime_type: true,

// Resize high-resolution images to original image's pixel dimensions
// https://github.com/imulus/retinajs/issues/8
force_original_dimensions: true
};

function Retina() {}

root.Retina = Retina;

Retina.configure = function(options) {
if (options === null) {
options = {};
}

for (var prop in options) {
if (options.hasOwnProperty(prop)) {
config[prop] = options[prop];
}
}
};

Retina.init = function(context) {
if (context === null) {
context = root;
}

var existing_onload = context.onload || function(){};

context.onload = function() {
var images = document.getElementsByTagName('img'), retinaImages = [], i, image;
for (i = 0; i < images.length; i += 1) {
image = images[i];
if (!!!image.getAttributeNode('data-no-retina')) {
retinaImages.push(new RetinaImage(image));
}
}
existing_onload();
};
};

Retina.isRetina = function(){
var mediaQuery = '(-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx)';

if (root.devicePixelRatio > 1) {
return true;
}

if (root.matchMedia && root.matchMedia(mediaQuery).matches) {
return true;
}

return false;
};


var regexMatch = /\.\w+$/;
function suffixReplace (match) {
return config.retinaImageSuffix + match;
}

function RetinaImagePath(path, at_2x_path) {
this.path = path || '';
if (typeof at_2x_path !== 'undefined' && at_2x_path !== null) {
this.at_2x_path = at_2x_path;
this.perform_check = false;
} else {
if (undefined !== document.createElement) {
var locationObject = document.createElement('a');
locationObject.href = this.path;
locationObject.pathname = locationObject.pathname.replace(regexMatch, suffixReplace);
this.at_2x_path = locationObject.href;
} else {
var parts = this.path.split('?');
parts[0] = parts[0].replace(regexMatch, suffixReplace);
this.at_2x_path = parts.join('?');
}
this.perform_check = true;
}
}

root.RetinaImagePath = RetinaImagePath;

RetinaImagePath.confirmed_paths = [];

RetinaImagePath.prototype.is_external = function() {
return !!(this.path.match(/^https?\:/i) && !this.path.match('//' + document.domain) );
};

RetinaImagePath.prototype.check_2x_variant = function(callback) {
var http, that = this;
if (this.is_external()) {
return callback(false);
} else if (!this.perform_check && typeof this.at_2x_path !== 'undefined' && this.at_2x_path !== null) {
return callback(true);
} else if (this.at_2x_path in RetinaImagePath.confirmed_paths) {
return callback(true);
} else {
http = new XMLHttpRequest();
http.open('HEAD', this.at_2x_path);
http.onreadystatechange = function() {
if (http.readyState !== 4) {
return callback(false);
}

if (http.status >= 200 && http.status <= 399) {
if (config.check_mime_type) {
var type = http.getResponseHeader('Content-Type');
if (type === null || !type.match(/^image/i)) {
return callback(false);
}
}

RetinaImagePath.confirmed_paths.push(that.at_2x_path);
return callback(true);
} else {
return callback(false);
}
};
http.send();
}
};


function RetinaImage(el) {
this.el = el;
this.path = new RetinaImagePath(this.el.getAttribute('src'), this.el.getAttribute('data-at2x'));
var that = this;
this.path.check_2x_variant(function(hasVariant) {
if (hasVariant) {
that.swap();
}
});
}

root.RetinaImage = RetinaImage;

RetinaImage.prototype.swap = function(path) {
if (typeof path === 'undefined') {
path = this.path.at_2x_path;
}

var that = this;
function load() {
if (! that.el.complete) {
setTimeout(load, 5);
} else {
if (config.force_original_dimensions) {
that.el.setAttribute('width', that.el.offsetWidth);
that.el.setAttribute('height', that.el.offsetHeight);
}

that.el.setAttribute('src', path);
}
}
load();
};


if (Retina.isRetina()) {
Retina.init(root);
}
})();
@@ -0,0 +1,20 @@
{
"name": "retina.js",
"version": "1.3.0",
"devDependencies": {
"mocha": "*",
"should": "*",
"less": "*",
"node-sass": "*",
"grunt": "~0.4.4",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-compress": "~0.7.0",
"grunt-contrib-jshint": "~0.10.0"
},
"main": "./src/retina",
"scripts": {
"test": "mocha"
}
}
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Please read: http://msdn.microsoft.com/en-us/library/ie/dn455106.aspx -->
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="tile.png"/>
<square150x150logo src="tile.png"/>
<wide310x150logo src="tile-wide.png"/>
<square310x310logo src="tile.png"/>
</tile>
</msapplication>
</browserconfig>

Large diffs are not rendered by default.

@@ -0,0 +1,20 @@
require 'compass/import-once/activate'
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "scripts"
fonts_dir = "fonts"

output_style = :nested

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

line_comments = false
color_output = false

preferred_syntax = :scss
@@ -0,0 +1,152 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MOMA's House | One door closes, another opens</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="new-favicon.png?v1.1" sizes="16x16" />
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/queries.css">
<link rel="stylesheet" href="css/etline-font.css">
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body id="top" class="contact">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section class="hero small">
<section class="navigation">
<header>
<div class="header-content">
<div class="logo"><a href="/MHouse"><img src="img/MOMA'sHouseLogo_white.png" alt="Sedna logo"></a></div>
<div class="header-nav">
<nav>
<ul class="primary-nav">

</ul>
<ul class="member-actions">
<li><a href="donate.html">Donate</a></li>
<li><a href="programs.html">Volunteer</a></li>
<li><a href="interior.html">About</a></li>
<li><a href="#blog">News & Events</a></li>
<li><a href="contact.html">Connect</a></li>
<li><a href="get-help.html" class="btn-white btn-small custom-button">Get Help</a></li>
</ul>
</nav>
</div>
<div class="navicon">
<a class="nav-toggle" href="#"><span></span></a>
</div>
</div>
</header>
</section>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="hero-content text-center">
<h1>Get in Touch With Us</h1>
</div>
</div>
</div>
</div>
</section>
<section class="intro section-padding">
<div class="sub">
<i class="fa fa-pencil fa-2x"></i>
<p class="copy">Please don't hesitate to call or email us for volunteer, donation, or program information questions. </p>
</div>
<div class="border"></div>
<div class="container content">
<div class="row">
<div class="col-md-12">
<p>
Whether you're able to provide volunteer or financial support for MOMA's House or have questions about our individualized programs for victims of domestic violence and sex trafficking, we want to connect.
</p>
</div>
<div class=""></div>
</div>
</div>
</section>
<section class="quote contact-us" id="quote">
<div class="container">
<p class="top">Please fill out our contact form or give us a call.</p>
<p class="top">A representative will contact you as soon as possible.</p>
<div class="info left">
<h3>Contact Information</h3>
<div class="border"></div>
<p>PO Box 860<br>
Laveen, AZ 85339</p>
<p>Tel: (480) 309-9853<br>
Fax: (602) 244-1154</p>
</div>
<form class="right">
<input type="text" name="firstName" placeholder="First Name">
<input type="text" name="lastName" placeholder="Last Name">
<input type="text" name="email" placeholder="Email Address">
<input type="text" name="phone" placeholder="Phone Number">
<input type="text" name="reason" placeholder="What is the subject? (Volunteer, Donate, Help)">
<textarea name="message" placeholder="Message"></textarea>
<input type="submit" class="custom-button">
</form>
</div>
</section>
<section class="to-top">
<div class="container">
<div class="row">
<div class="to-top-wrap">
<a href="#top" class="top"><i class="fa fa-angle-up"></i></a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="footer-links">
<p>Copyright © 2015 MOMA's house, a 501c3 nonprofit. All rights reserved.<br>
Crafted with <span class="fa fa-heart pulse2"></span> by <a href="http://www.peterfinlan.com/">Phoenix Create-a-thon</a>.</p>
</div>
</div>
<div class="social-share">
<p>Spread the love!</p>
<a href="https://twitter.com/peterfinlan" class="twitter-share"><i class="fa fa-twitter"></i></a> <a href="#" class="facebook-share"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="bower_components/retina.js/dist/retina.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="bower_components/classie/classie.js"></script>
<script src="bower_components/jquery-waypoints/lib/jquery.waypoints.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

@@ -0,0 +1,116 @@
/* ==========================================================================
Icon font (http://www.elegantthemes.com/blog/freebie-of-the-week/free-line-style-icons)
========================================================================== */
@font-face{font-family:'et-line';src:url("../fonts/et-line.eot");src:url("../fonts/et-line.eot?#iefix") format("embedded-opentype"),url("../fonts/et-line.woff") format("woff"),url("../fonts/et-line.ttf") format("truetype"),url("../fonts/et-line.svg#et-line") format("svg");font-weight:normal;font-style:normal;}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before{font-family:'et-line';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;}

/* Use the following CSS code if you want to have a class per icon */

/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile,.icon-laptop,.icon-desktop,.icon-tablet,.icon-phone,.icon-document,.icon-documents,.icon-search,.icon-clipboard,.icon-newspaper,.icon-notebook,.icon-book-open,.icon-browser,.icon-calendar,.icon-presentation,.icon-picture,.icon-pictures,.icon-video,.icon-camera,.icon-printer,.icon-toolbox,.icon-briefcase,.icon-wallet,.icon-gift,.icon-bargraph,.icon-grid,.icon-expand,.icon-focus,.icon-edit,.icon-adjustments,.icon-ribbon,.icon-hourglass,.icon-lock,.icon-megaphone,.icon-shield,.icon-trophy,.icon-flag,.icon-map,.icon-puzzle,.icon-basket,.icon-envelope,.icon-streetsign,.icon-telescope,.icon-gears,.icon-key,.icon-paperclip,.icon-attachment,.icon-pricetags,.icon-lightbulb,.icon-layers,.icon-pencil,.icon-tools,.icon-tools-2,.icon-scissors,.icon-paintbrush,.icon-magnifying-glass,.icon-circle-compass,.icon-linegraph,.icon-mic,.icon-strategy,.icon-beaker,.icon-caution,.icon-recycle,.icon-anchor,.icon-profile-male,.icon-profile-female,.icon-bike,.icon-wine,.icon-hotairballoon,.icon-globe,.icon-genius,.icon-map-pin,.icon-dial,.icon-chat,.icon-heart,.icon-cloud,.icon-upload,.icon-download,.icon-target,.icon-hazardous,.icon-piechart,.icon-speedometer,.icon-global,.icon-compass,.icon-lifesaver,.icon-clock,.icon-aperture,.icon-quote,.icon-scope,.icon-alarmclock,.icon-refresh,.icon-happy,.icon-sad,.icon-facebook,.icon-twitter,.icon-googleplus,.icon-rss,.icon-tumblr,.icon-linkedin,.icon-dribbble{font-family:'et-line';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;}
.icon-mobile:before{content:"\e000";}
.icon-laptop:before{content:"\e001";}
.icon-desktop:before{content:"\e002";}
.icon-tablet:before{content:"\e003";}
.icon-phone:before{content:"\e004";}
.icon-document:before{content:"\e005";}
.icon-documents:before{content:"\e006";}
.icon-search:before{content:"\e007";}
.icon-clipboard:before{content:"\e008";}
.icon-newspaper:before{content:"\e009";}
.icon-notebook:before{content:"\e00a";}
.icon-book-open:before{content:"\e00b";}
.icon-browser:before{content:"\e00c";}
.icon-calendar:before{content:"\e00d";}
.icon-presentation:before{content:"\e00e";}
.icon-picture:before{content:"\e00f";}
.icon-pictures:before{content:"\e010";}
.icon-video:before{content:"\e011";}
.icon-camera:before{content:"\e012";}
.icon-printer:before{content:"\e013";}
.icon-toolbox:before{content:"\e014";}
.icon-briefcase:before{content:"\e015";}
.icon-wallet:before{content:"\e016";}
.icon-gift:before{content:"\e017";}
.icon-bargraph:before{content:"\e018";}
.icon-grid:before{content:"\e019";}
.icon-expand:before{content:"\e01a";}
.icon-focus:before{content:"\e01b";}
.icon-edit:before{content:"\e01c";}
.icon-adjustments:before{content:"\e01d";}
.icon-ribbon:before{content:"\e01e";}
.icon-hourglass:before{content:"\e01f";}
.icon-lock:before{content:"\e020";}
.icon-megaphone:before{content:"\e021";}
.icon-shield:before{content:"\e022";}
.icon-trophy:before{content:"\e023";}
.icon-flag:before{content:"\e024";}
.icon-map:before{content:"\e025";}
.icon-puzzle:before{content:"\e026";}
.icon-basket:before{content:"\e027";}
.icon-envelope:before{content:"\e028";}
.icon-streetsign:before{content:"\e029";}
.icon-telescope:before{content:"\e02a";}
.icon-gears:before{content:"\e02b";}
.icon-key:before{content:"\e02c";}
.icon-paperclip:before{content:"\e02d";}
.icon-attachment:before{content:"\e02e";}
.icon-pricetags:before{content:"\e02f";}
.icon-lightbulb:before{content:"\e030";}
.icon-layers:before{content:"\e031";}
.icon-pencil:before{content:"\e032";}
.icon-tools:before{content:"\e033";}
.icon-tools-2:before{content:"\e034";}
.icon-scissors:before{content:"\e035";}
.icon-paintbrush:before{content:"\e036";}
.icon-magnifying-glass:before{content:"\e037";}
.icon-circle-compass:before{content:"\e038";}
.icon-linegraph:before{content:"\e039";}
.icon-mic:before{content:"\e03a";}
.icon-strategy:before{content:"\e03b";}
.icon-beaker:before{content:"\e03c";}
.icon-caution:before{content:"\e03d";}
.icon-recycle:before{content:"\e03e";}
.icon-anchor:before{content:"\e03f";}
.icon-profile-male:before{content:"\e040";}
.icon-profile-female:before{content:"\e041";}
.icon-bike:before{content:"\e042";}
.icon-wine:before{content:"\e043";}
.icon-hotairballoon:before{content:"\e044";}
.icon-globe:before{content:"\e045";}
.icon-genius:before{content:"\e046";}
.icon-map-pin:before{content:"\e047";}
.icon-dial:before{content:"\e048";}
.icon-chat:before{content:"\e049";}
.icon-heart:before{content:"\e04a";}
.icon-cloud:before{content:"\e04b";}
.icon-upload:before{content:"\e04c";}
.icon-download:before{content:"\e04d";}
.icon-target:before{content:"\e04e";}
.icon-hazardous:before{content:"\e04f";}
.icon-piechart:before{content:"\e050";}
.icon-speedometer:before{content:"\e051";}
.icon-global:before{content:"\e052";}
.icon-compass:before{content:"\e053";}
.icon-lifesaver:before{content:"\e054";}
.icon-clock:before{content:"\e055";}
.icon-aperture:before{content:"\e056";}
.icon-quote:before{content:"\e057";}
.icon-scope:before{content:"\e058";}
.icon-alarmclock:before{content:"\e059";}
.icon-refresh:before{content:"\e05a";}
.icon-happy:before{content:"\e05b";}
.icon-sad:before{content:"\e05c";}
.icon-facebook:before{content:"\e05d";}
.icon-twitter:before{content:"\e05e";}
.icon-googleplus:before{content:"\e05f";}
.icon-rss:before{content:"\e060";}
.icon-tumblr:before{content:"\e061";}
.icon-linkedin:before{content:"\e062";}
.icon-dribbble:before{content:"\e063";}
@@ -0,0 +1,269 @@
/*
* jQuery FlexSlider v2.5.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 and later license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*
*/

/* ====================================================================================================================
* FONT-FACE
* ====================================================================================================================*/
@font-face {
font-family: 'fontawesome';
src: url('../fonts/fontawesome-webfont.eot');
src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.ttf') format('truetype'), url('../fonts/fontawesome-webfont.svg#flexslider-icon') format('svg');
font-weight: normal;
font-style: normal;
}

/* ====================================================================================================================
* RESETS
* ====================================================================================================================*/
.flex-container a:hover, .flex-slider a:hover, .flex-container a:focus, .flex-slider a:focus {
outline: none;
}
.slides, .slides > li, .flex-control-nav, .flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.flex-pauseplay span {
text-transform: capitalize;
}

/* ====================================================================================================================
* BASE STYLES
* ====================================================================================================================*/
.flexslider {
margin: 0;
padding: 0;
}
.flexslider .slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.flexslider .slides img {
width: 100%;
display: block;
}
.flexslider .slides:after {
content: "\0020";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
html[xmlns] .flexslider .slides {
display: block;
}
* html .flexslider .slides {
height: 1%;
}
.no-js .flexslider .slides > li:first-child {
display: block;
}

/* ====================================================================================================================
* DEFAULT THEME
* ====================================================================================================================*/
.flexslider {
margin: 20px 0;
position: relative;
zoom: 1;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
-moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
-o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
zoom: 1;
}
.flexslider .slides img {
height: auto;
}
.flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.loading .flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.flex-direction-nav {
*height: 0;
}
.flex-direction-nav a {
text-decoration: none;
display: block;
width: 40px;
height: 60px;
margin: -30px 0 0;
position: absolute;
top: 50%;
z-index: 10;
overflow: hidden;
opacity: 0;
cursor: pointer;
color: rgba(255, 255, 255, 1);
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
font-family: "fontawesome";
font-size: 60px;
display: inline-block;
content: '\f104';
color: rgba(255, 255, 255, 1);
}
.flex-direction-nav a.flex-next:before {
content: '\f105';
}
.flex-direction-nav .flex-prev {
left: -50px;
}
.flex-direction-nav .flex-next {
right: -50px;
text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
opacity: 0.7;
left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
opacity: 0.7;
right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
opacity: 1;
}
.flex-direction-nav .flex-disabled {
opacity: 0 !important;
filter: alpha(opacity=0);
cursor: default;
}
.flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.flex-pauseplay a:before {
font-family: "fontawesome";
font-size: 20px;
display: inline-block;
content: '\f04c';
}
.flex-pauseplay a:hover {
opacity: 1;
}
.flex-pauseplay a.flex-play:before {
content: '\f04b';
}
.flex-control-nav {
width: 100%;
position: absolute;
bottom: -110px;
text-align: center;
}
.flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.flex-control-paging li a {
width: 12px;
height: 12px;
display: block;
background: #5C5F6A;
background: rgba(92, 95, 106, 1);
cursor: pointer;
text-indent: -9999px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
color: #fff;
}
.flex-control-paging li a:hover {
background: #fff;
background: rgba(255, 255, 255, 1);
}
.flex-control-paging li a.flex-active {
background: rgba(255, 255, 255, 0);
border: solid 2px #fff;
cursor: default;
line-height: 1.2;
}
.flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.flex-control-thumbs img {
width: 100%;
height: auto;
display: block;
opacity: .7;
cursor: pointer;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}
.flex-control-thumbs img:hover {
opacity: 1;
}
.flex-control-thumbs .flex-active {
opacity: 1;
cursor: default;
}

/* ====================================================================================================================
* RESPONSIVE
* ====================================================================================================================*/
@media screen and (max-width:860px) {
.flex-direction-nav .flex-prev {
display: none;
}
.flex-direction-nav .flex-next {
display: none;
}
}
@@ -0,0 +1,5 @@
/* Welcome to Compass. Use this file to write IE specific override styles.
* Import this file using the following HTML or equivalent:
* <!--[if IE]>
* <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
* <![endif]--> */
@@ -0,0 +1,274 @@
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
padding: 0;
margin: 0;
border: 0;
outline: none;
vertical-align: top;
}

.fancybox-wrap {
position: absolute;
top: 0;
left: 0;
z-index: 8020;
}

.fancybox-skin {
position: relative;
background: #f9f9f9;
color: #444;
text-shadow: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}

.fancybox-opened {
z-index: 8030;
}

.fancybox-opened .fancybox-skin {
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
position: relative;
}

.fancybox-inner {
overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
-webkit-overflow-scrolling: touch;
}

.fancybox-error {
color: #444;
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 0;
padding: 15px;
white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
display: block;
width: 100%;
height: 100%;
}

.fancybox-image {
max-width: 100%;
max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: url('../img/fancybox_sprite.png');
}

#fancybox-loading {
position: fixed;
top: 50%;
left: 50%;
margin-top: -22px;
margin-left: -22px;
background-position: 0 -108px;
opacity: 0.8;
cursor: pointer;
z-index: 8060;
}

#fancybox-loading div {
width: 44px;
height: 44px;
background: url('../img/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
position: absolute;
top: -18px;
right: -18px;
width: 36px;
height: 36px;
cursor: pointer;
z-index: 8040;
}

.fancybox-nav {
position: absolute;
top: 0;
width: 40%;
height: 100%;
cursor: pointer;
text-decoration: none;
background: transparent url('blank.gif'); /* helps IE */
-webkit-tap-highlight-color: rgba(0,0,0,0);
z-index: 8040;
}

.fancybox-prev {
left: 0;
}

.fancybox-next {
right: 0;
}

.fancybox-nav span {
position: absolute;
top: 50%;
width: 36px;
height: 34px;
margin-top: -18px;
cursor: pointer;
z-index: 8040;
visibility: hidden;
}

.fancybox-prev span {
left: 10px;
background-position: 0 -36px;
}

.fancybox-next span {
right: 10px;
background-position: 0 -72px;
}

.fancybox-nav:hover span {
visibility: visible;
}

.fancybox-tmp {
position: absolute;
top: -99999px;
left: -99999px;
visibility: hidden;
max-width: 99999px;
max-height: 99999px;
overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
overflow: hidden !important;
width: auto;
}

.fancybox-lock body {
overflow: hidden !important;
}

.fancybox-lock-test {
overflow-y: hidden !important;
}

.fancybox-overlay {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
display: none;
z-index: 8000;
background: url('../img/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
position: fixed;
bottom: 0;
right: 0;
}

.fancybox-lock .fancybox-overlay {
overflow: auto;
overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
visibility: hidden;
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
position: relative;
text-shadow: none;
z-index: 8050;
}

.fancybox-opened .fancybox-title {
visibility: visible;
}

.fancybox-title-float-wrap {
position: absolute;
bottom: 0;
right: 50%;
margin-bottom: -35px;
z-index: 8050;
text-align: center;
}

.fancybox-title-float-wrap .child {
display: inline-block;
margin-right: -100%;
padding: 2px 20px;
background: transparent; /* Fallback for web browsers that doesn't support RGBa */
background: rgba(0, 0, 0, 0.8);
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
text-shadow: 0 1px 2px #222;
color: #FFF;
font-weight: bold;
line-height: 24px;
white-space: nowrap;
}

.fancybox-title-outside-wrap {
position: relative;
margin-top: 10px;
color: #fff;
}

.fancybox-title-inside-wrap {
padding-top: 10px;
}

.fancybox-title-over-wrap {
position: absolute;
bottom: 0;
left: 0;
color: #fff;
padding: 10px;
background: #000;
background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5){

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: url('../img/fancybox_sprite@2x.png');
background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
}

#fancybox-loading div {
background-image: url('../img/fancybox_loading@2x.gif');
background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
}
}
@@ -0,0 +1,224 @@
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%
}
html,
body {
overflow-x: hidden;
width: 100%;
}
body {
margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block
}

audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline
}

audio:not([controls]) {
display: none;
height: 0
}

[hidden],
template {
display: none
}

a {
background-color: transparent
}

a:active,
a:hover {
outline: 0
}

abbr[title] {
border-bottom: 1px dotted
}

b,
strong {
font-weight: 700
}

dfn {
font-style: italic
}

h1 {
font-size: 2em;
margin: .67em 0
}

mark {
background: #ff0;
color: #000
}

small {
font-size: 80%
}

sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}

sup {
top: -.5em
}

sub {
bottom: -.25em
}

img {
border: 0
}

svg:not(:root) {
overflow: hidden
}

figure {
margin: 1em 40px
}

hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0
}

pre {
overflow: auto
}

code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0
}

button {
overflow: visible
}

button,
select {
text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
-webkit-appearance: button;
cursor: pointer
}

button[disabled],
html input[disabled] {
cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0
}

input {
line-height: normal
}

input[type=checkbox],
input[type=radio] {
box-sizing: border-box;
padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
height: auto
}

input[type=search] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}

fieldset {
border: 1px solid silver;
margin: 0 2px;
padding: .35em .625em .75em
}

legend {
border: 0;
padding: 0
}

textarea {
overflow: auto
}

optgroup {
font-weight: 700
}

table {
border-collapse: collapse;
border-spacing: 0
}

td,
th {
padding: 0
}
@@ -0,0 +1,3 @@
/* Welcome to Compass. Use this file to define print styles.
* Import this file using the following HTML or equivalent:
* <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */

Large diffs are not rendered by default.

Large diffs are not rendered by default.

@@ -0,0 +1,225 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MOMA's House | One door closes, another opens</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="new-favicon.png?v1.1" sizes="16x16" />
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/queries.css">
<link rel="stylesheet" href="css/etline-font.css">
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body id="top" class="donate">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section class="hero small">
<section class="navigation">
<header>
<div class="header-content">
<div class="logo"><a href="/MHouse"><img src="img/MOMA'sHouseLogo_white.png" alt="Sedna logo"></a></div>
<div class="header-nav">
<nav>
<ul class="primary-nav">

</ul>
<ul class="member-actions">
<li><a href="donate.html">Donate</a></li>
<li><a href="programs.html">Volunteer</a></li>
<li><a href="interior.html">About</a></li>
<li><a href="#blog">News & Events</a></li>
<li><a href="contact.html">Connect</a></li>
<li><a href="get-help.html" class="btn-white btn-small custom-button">Get Help</a></li>
</ul>
</nav>
</div>
<div class="navicon">
<a class="nav-toggle" href="#"><span></span></a>
</div>
</div>
</header>
</section>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="hero-content text-center">
<h1>How You Can Donate</h1>
</div>
</div>
</div>
</div>
</section>
<section class="intro section-padding">
<div class="sub">
<i class="fa fa-users fa-3x"></i>
<p class="copy">Your donation directly helps MOMA's House provide individualized care and support for women who are victims of domestic violence and human sex trafficking. </p>
</div>
</section>
<section class="pay-portal">
<div class="or">
<h4>or</h4>
</div>
<div class="paypal">
<div class="inner">
<div class="circle">
<i class="fa fa-usd fa-3x"></i>
</div>
<h3>Financial Donations</h3>
<div class="border"></div>
<p>Your gift will enable MOMA's house to reach our goal of creating long-term solutions while directly support women who desperately need our help. </p>
<a href="" class="custom-button">Donate</a>
</div>
</div>
<div class="contact-form">
<div class="inner">
<h3>Product Donations</h3>
<div class="border"></div>
<form>
<input type="text" name="name" placeholder="Name" class="">
<input type="text" name="email" placeholder="Email">
<textarea name="message" placeholder="What would you like to donate?"></textarea>
<input type="submit" class="custom-button">
</form>
</div>
</div>
<div style="clear: both;"></div>
</section>
<section class="why-donate section-padding">
<div class="container">
<div class="sub">
<i class="fa fa-thumbs-up fa-3x"></i>
<p class="copy">How Your Donation Helps </p>
</div>
<div class="border"></div>
<div class="container content">
<div class="row">
<div class="col-md-12">
<p>
<!-- start slipsum code -->
In a very real way, your donation to MOMA's House goes toward helping improve the lives of our residents as they get a second-chance at life. In addition to tax-deductible, financial and product donations, we gladly accept help from members of the community as maintenance needs arise for the MOMA's House facility.

<br>
We are also grateful for the thoughtful work and support from Kristen Hazen Design, Moreau Design, J. White Designs, Lygia Harkins Interiors, Hudson Five Design, Capella Kincheloe Interior Designs, City Chic Interior Design and K&Q Interiors for the major remodel project for the resident rooms.
</p>
</div>
<div class=""></div>
</div>
</div>
<div class="container">
<div class="feature">
<img class="col-md-5" src="img/food.jpg">
<div class="inner col-md-7">
<h3>Food</h3>
<div class="border"></div>
<p>For only $50, you can provide emergency food support for one woman for one week. In addition to fighting to survive abusive circumstances, many have had poor nutrition prior to coming to MOMA's House.</p>
</div>
</div>
<div class="feature">
<div class="inner col-md-7">
<h3>Program Funding</h3>
<div class="border"></div>
<p>What makes MOMA's House special is our personal help and guidance for each resident. Your contribution helps support MOMA's House individualized programs at $180 per month.</p>
</div>
<img class="col-md-5" src="img/donate_funding.jpg">
</div>
<div class="feature">
<img class="col-md-5" src="img/donate_utilities.jpg">
<div class="inner col-md-7">
<h3>MOMA's House Utilities</h3>
<div class="border"></div>
<p>MOMA's House is set-up to provide individualized programs for our residents year-round. Our facility's electricity, water, and waste services are funded by your generous contributions of $450 per month.</p>
</div>
</div>
</div>
</section>
<section class="full-width">
<div class="container">
<i class="fa fa-star fa-3x"></i>
<h2>Stay connected with us!</h2>
<p>We greatly appreciate your donation to MOMA's House and would love to stay in touch! Connect with us to learn about upcoming events and volunteer to make a real different in our residents' lives. </p>
<div class="row">
<a href="contact.html" class="custom-button">Connect</a>
<a href="programs.html" class="custom-button">Volunteer</a>
</div>
</div>
</section>
<!--<section class="sign-up section-padding text-center" id="download">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h3>Get started with Sedna, absolutely free</h3>
<p>Grab your copy today, exclusively from Codrops</p>
<form class="signup-form" action="#" method="POST" role="form">
<div class="form-input-group">
<i class="fa fa-envelope"></i><input type="text" class="" placeholder="Enter your email" required>
</div>
<div class="form-input-group">
<i class="fa fa-lock"></i><input type="text" class="" placeholder="Enter your password" required>
</div>
<button type="submit" class="btn-fill sign-up-btn">Sign up for free</button>
</form>
</div>
</div>
</div>
</section>-->
<section class="to-top">
<div class="container">
<div class="row">
<div class="to-top-wrap">
<a href="#top" class="top"><i class="fa fa-angle-up"></i></a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="footer-links">
<p>Copyright © 2015 MOMA's house, a 501c3 nonprofit. All rights reserved.<br>
Crafted with <span class="fa fa-heart pulse2"></span> by <a href="http://www.peterfinlan.com/">Phoenix Create-a-thon</a>.</p>
</div>
</div>
<div class="social-share">
<p>Spread the love!</p>
<a href="https://twitter.com/peterfinlan" class="twitter-share"><i class="fa fa-twitter"></i></a> <a href="#" class="facebook-share"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="bower_components/retina.js/dist/retina.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="bower_components/classie/classie.js"></script>
<script src="bower_components/jquery-waypoints/lib/jquery.waypoints.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>
BIN +15.6 KB mHouse/door-fav.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +257 Bytes mHouse/favicon-16x16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +434 Bytes mHouse/favicon-32x32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +5.3 KB mHouse/favicon.ico
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
To modify your generated font, use the *dev.svg* file, located in the download folder in this package. You can import this dev.svg file to the IcoMoon app. All the tags (class names) and the Unicode points of your glyphs are saved in this file.

See the documentation for more info on how to use this package: http://icomoon.io/#docs/font-face
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

@@ -0,0 +1,127 @@
/* Load this script using conditional IE comments if you need to support IE 7 and IE 6. */

window.onload = function() {
function addIcon(el, entity) {
var html = el.innerHTML;
el.innerHTML = '<span style="font-family: \'et-line\'">' + entity + '</span>' + html;
}
var icons = {
'icon-mobile' : '&#xe000;',
'icon-laptop' : '&#xe001;',
'icon-desktop' : '&#xe002;',
'icon-tablet' : '&#xe003;',
'icon-phone' : '&#xe004;',
'icon-document' : '&#xe005;',
'icon-documents' : '&#xe006;',
'icon-search' : '&#xe007;',
'icon-clipboard' : '&#xe008;',
'icon-newspaper' : '&#xe009;',
'icon-notebook' : '&#xe00a;',
'icon-book-open' : '&#xe00b;',
'icon-browser' : '&#xe00c;',
'icon-calendar' : '&#xe00d;',
'icon-presentation' : '&#xe00e;',
'icon-picture' : '&#xe00f;',
'icon-pictures' : '&#xe010;',
'icon-video' : '&#xe011;',
'icon-camera' : '&#xe012;',
'icon-printer' : '&#xe013;',
'icon-toolbox' : '&#xe014;',
'icon-briefcase' : '&#xe015;',
'icon-wallet' : '&#xe016;',
'icon-gift' : '&#xe017;',
'icon-bargraph' : '&#xe018;',
'icon-grid' : '&#xe019;',
'icon-expand' : '&#xe01a;',
'icon-focus' : '&#xe01b;',
'icon-edit' : '&#xe01c;',
'icon-adjustments' : '&#xe01d;',
'icon-ribbon' : '&#xe01e;',
'icon-hourglass' : '&#xe01f;',
'icon-lock' : '&#xe020;',
'icon-megaphone' : '&#xe021;',
'icon-shield' : '&#xe022;',
'icon-trophy' : '&#xe023;',
'icon-flag' : '&#xe024;',
'icon-map' : '&#xe025;',
'icon-puzzle' : '&#xe026;',
'icon-basket' : '&#xe027;',
'icon-envelope' : '&#xe028;',
'icon-streetsign' : '&#xe029;',
'icon-telescope' : '&#xe02a;',
'icon-gears' : '&#xe02b;',
'icon-key' : '&#xe02c;',
'icon-paperclip' : '&#xe02d;',
'icon-attachment' : '&#xe02e;',
'icon-pricetags' : '&#xe02f;',
'icon-lightbulb' : '&#xe030;',
'icon-layers' : '&#xe031;',
'icon-pencil' : '&#xe032;',
'icon-tools' : '&#xe033;',
'icon-tools-2' : '&#xe034;',
'icon-scissors' : '&#xe035;',
'icon-paintbrush' : '&#xe036;',
'icon-magnifying-glass' : '&#xe037;',
'icon-circle-compass' : '&#xe038;',
'icon-linegraph' : '&#xe039;',
'icon-mic' : '&#xe03a;',
'icon-strategy' : '&#xe03b;',
'icon-beaker' : '&#xe03c;',
'icon-caution' : '&#xe03d;',
'icon-recycle' : '&#xe03e;',
'icon-anchor' : '&#xe03f;',
'icon-profile-male' : '&#xe040;',
'icon-profile-female' : '&#xe041;',
'icon-bike' : '&#xe042;',
'icon-wine' : '&#xe043;',
'icon-hotairballoon' : '&#xe044;',
'icon-globe' : '&#xe045;',
'icon-genius' : '&#xe046;',
'icon-map-pin' : '&#xe047;',
'icon-dial' : '&#xe048;',
'icon-chat' : '&#xe049;',
'icon-heart' : '&#xe04a;',
'icon-cloud' : '&#xe04b;',
'icon-upload' : '&#xe04c;',
'icon-download' : '&#xe04d;',
'icon-target' : '&#xe04e;',
'icon-hazardous' : '&#xe04f;',
'icon-piechart' : '&#xe050;',
'icon-speedometer' : '&#xe051;',
'icon-global' : '&#xe052;',
'icon-compass' : '&#xe053;',
'icon-lifesaver' : '&#xe054;',
'icon-clock' : '&#xe055;',
'icon-aperture' : '&#xe056;',
'icon-quote' : '&#xe057;',
'icon-scope' : '&#xe058;',
'icon-alarmclock' : '&#xe059;',
'icon-refresh' : '&#xe05a;',
'icon-happy' : '&#xe05b;',
'icon-sad' : '&#xe05c;',
'icon-facebook' : '&#xe05d;',
'icon-twitter' : '&#xe05e;',
'icon-googleplus' : '&#xe05f;',
'icon-rss' : '&#xe060;',
'icon-tumblr' : '&#xe061;',
'icon-linkedin' : '&#xe062;',
'icon-dribbble' : '&#xe063;'
},
els = document.getElementsByTagName('*'),
i, attr, c, el;
for (i = 0; ; i += 1) {
el = els[i];
if(!el) {
break;
}
attr = el.getAttribute('data-icon');
if (attr) {
addIcon(el, attr);
}
c = el.className;
c = c.match(/icon-[^\s'"]+/);
if (c && icons[c[0]]) {
addIcon(el, icons[c[0]]);
}
}
};
@@ -0,0 +1,343 @@
@font-face {
font-family: 'et-line';
src:url('fonts/et-line.eot');
src:url('fonts/et-line.eot?#iefix') format('embedded-opentype'),
url('fonts/et-line.woff') format('woff'),
url('fonts/et-line.ttf') format('truetype'),
url('fonts/et-line.svg#et-line') format('svg');
font-weight: normal;
font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
font-family: 'et-line';
content: attr(data-icon);
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display:inline-block;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
font-family: 'et-line';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display:inline-block;
}
.icon-mobile:before {
content: "\e000";
}
.icon-laptop:before {
content: "\e001";
}
.icon-desktop:before {
content: "\e002";
}
.icon-tablet:before {
content: "\e003";
}
.icon-phone:before {
content: "\e004";
}
.icon-document:before {
content: "\e005";
}
.icon-documents:before {
content: "\e006";
}
.icon-search:before {
content: "\e007";
}
.icon-clipboard:before {
content: "\e008";
}
.icon-newspaper:before {
content: "\e009";
}
.icon-notebook:before {
content: "\e00a";
}
.icon-book-open:before {
content: "\e00b";
}
.icon-browser:before {
content: "\e00c";
}
.icon-calendar:before {
content: "\e00d";
}
.icon-presentation:before {
content: "\e00e";
}
.icon-picture:before {
content: "\e00f";
}
.icon-pictures:before {
content: "\e010";
}
.icon-video:before {
content: "\e011";
}
.icon-camera:before {
content: "\e012";
}
.icon-printer:before {
content: "\e013";
}
.icon-toolbox:before {
content: "\e014";
}
.icon-briefcase:before {
content: "\e015";
}
.icon-wallet:before {
content: "\e016";
}
.icon-gift:before {
content: "\e017";
}
.icon-bargraph:before {
content: "\e018";
}
.icon-grid:before {
content: "\e019";
}
.icon-expand:before {
content: "\e01a";
}
.icon-focus:before {
content: "\e01b";
}
.icon-edit:before {
content: "\e01c";
}
.icon-adjustments:before {
content: "\e01d";
}
.icon-ribbon:before {
content: "\e01e";
}
.icon-hourglass:before {
content: "\e01f";
}
.icon-lock:before {
content: "\e020";
}
.icon-megaphone:before {
content: "\e021";
}
.icon-shield:before {
content: "\e022";
}
.icon-trophy:before {
content: "\e023";
}
.icon-flag:before {
content: "\e024";
}
.icon-map:before {
content: "\e025";
}
.icon-puzzle:before {
content: "\e026";
}
.icon-basket:before {
content: "\e027";
}
.icon-envelope:before {
content: "\e028";
}
.icon-streetsign:before {
content: "\e029";
}
.icon-telescope:before {
content: "\e02a";
}
.icon-gears:before {
content: "\e02b";
}
.icon-key:before {
content: "\e02c";
}
.icon-paperclip:before {
content: "\e02d";
}
.icon-attachment:before {
content: "\e02e";
}
.icon-pricetags:before {
content: "\e02f";
}
.icon-lightbulb:before {
content: "\e030";
}
.icon-layers:before {
content: "\e031";
}
.icon-pencil:before {
content: "\e032";
}
.icon-tools:before {
content: "\e033";
}
.icon-tools-2:before {
content: "\e034";
}
.icon-scissors:before {
content: "\e035";
}
.icon-paintbrush:before {
content: "\e036";
}
.icon-magnifying-glass:before {
content: "\e037";
}
.icon-circle-compass:before {
content: "\e038";
}
.icon-linegraph:before {
content: "\e039";
}
.icon-mic:before {
content: "\e03a";
}
.icon-strategy:before {
content: "\e03b";
}
.icon-beaker:before {
content: "\e03c";
}
.icon-caution:before {
content: "\e03d";
}
.icon-recycle:before {
content: "\e03e";
}
.icon-anchor:before {
content: "\e03f";
}
.icon-profile-male:before {
content: "\e040";
}
.icon-profile-female:before {
content: "\e041";
}
.icon-bike:before {
content: "\e042";
}
.icon-wine:before {
content: "\e043";
}
.icon-hotairballoon:before {
content: "\e044";
}
.icon-globe:before {
content: "\e045";
}
.icon-genius:before {
content: "\e046";
}
.icon-map-pin:before {
content: "\e047";
}
.icon-dial:before {
content: "\e048";
}
.icon-chat:before {
content: "\e049";
}
.icon-heart:before {
content: "\e04a";
}
.icon-cloud:before {
content: "\e04b";
}
.icon-upload:before {
content: "\e04c";
}
.icon-download:before {
content: "\e04d";
}
.icon-target:before {
content: "\e04e";
}
.icon-hazardous:before {
content: "\e04f";
}
.icon-piechart:before {
content: "\e050";
}
.icon-speedometer:before {
content: "\e051";
}
.icon-global:before {
content: "\e052";
}
.icon-compass:before {
content: "\e053";
}
.icon-lifesaver:before {
content: "\e054";
}
.icon-clock:before {
content: "\e055";
}
.icon-aperture:before {
content: "\e056";
}
.icon-quote:before {
content: "\e057";
}
.icon-scope:before {
content: "\e058";
}
.icon-alarmclock:before {
content: "\e059";
}
.icon-refresh:before {
content: "\e05a";
}
.icon-happy:before {
content: "\e05b";
}
.icon-sad:before {
content: "\e05c";
}
.icon-facebook:before {
content: "\e05d";
}
.icon-twitter:before {
content: "\e05e";
}
.icon-googleplus:before {
content: "\e05f";
}
.icon-rss:before {
content: "\e060";
}
.icon-tumblr:before {
content: "\e061";
}
.icon-linkedin:before {
content: "\e062";
}
.icon-dribbble:before {
content: "\e063";
}
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,212 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MOMA's House | One door closes, another opens</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="new-favicon.png?v1.1" sizes="16x16" />
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/queries.css">
<link rel="stylesheet" href="css/etline-font.css">
<link rel="stylesheet" href="bower_components/animate.css/animate.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body id="top" class="get-help">
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section class="hero small">
<section class="navigation">
<header>
<div class="header-content">
<div class="logo"><a href="/MHouse"><img src="img/MOMA'sHouseLogo_white.png" alt="Sedna logo"></a></div>
<div class="header-nav">
<nav>
<ul class="primary-nav">

</ul>
<ul class="member-actions">
<li><a href="donate.html">Donate</a></li>
<li><a href="programs.html">Volunteer</a></li>
<li><a href="interior.html">About</a></li>
<li><a href="#blog">News & Events</a></li>
<li><a href="contact.html">Connect</a></li>
<li><a href="get-help.html" class="btn-white btn-small custom-button">Get Help</a></li>
</ul>
</nav>
</div>
<div class="navicon">
<a class="nav-toggle" href="#"><span></span></a>
</div>
</div>
</header>
</section>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="hero-content text-center">
<h1>We Welcome You Home</h1>
</div>
</div>
</div>
</div>
</section>
<section class="intro section-padding">
<div class="sub">
<i class="fa fa-female fa-3x"></i>
<p class="copy">MOMA's House is a safe, peaceful environment where women who are victims of domestic violence and sex trafficking need to heal and get on the right path. </p>
<div class="border"></div>
</div>
</section>
<section class="content">
<div class="container">
<div class="round-rect">
<img src="img/bedroom.jpg" class="about-image">
</div>
<h3>Where You'll Stay</h3>
<p>MOMA's House is a confidential safe house for women without custodial children who are victims of domestic violence or human sex trafficking. For $300 a month, each resident has her own furnished room with full kitchen access, on-­site laundry facility, home gym, and computer lab. Our property has security gates, alarm system, and 24/7 on-site staff to provide a safe and comfortable living environment. </p>
</div>
<div class="container">
<div class="border purple left"></div>
</div>
<div class="container">
<div class="round-rect left">
<img src="img/learn.jpg" class="about-image">
</div>
<h3>What You'll Learn</h3>
<p>We provide our residents with a comprehensive program to help them stay safe, set goals, and rebuild their independence.<br>Our programs include:</p>
<ul class="">
<li>Safety planning</li>
<li>Health and nutrition, budgeting, personal hygene, food preperation, and more. </li>
<li>GED, College & Maricopa Skill Center enrollment. </li>
<li>Job training and career development: On‐site classes for resume writing, interview skills, dress for success, and job fair notifications. </li>
<li>Independent Living Skills: Applied practices to promote development of accountability, responsibility, and time management proficiency. </li>
<li>Personal Achievement: Assessment and development of individual strengths and goals. </li>
</ul>
</div>
<div class="container">
<div class="border purple right"></div>
</div>
<div class="container last">
<div class="round-rect">
<img src="img/sunset-hands.jpg" class="about-image">
</div>
<h3>Your Support Program</h3>
<p>We empower our residents through a strong support structure that complements the Life and Career Skills program. Each client's structure is customized to fit her goals toward freedom and independence. <br><br> Our support includes:
<ul class="">
<li>Mentors and advisors.</li>
<li>Required support group attendance.</li>
<li>Community resource referrals: Food and nutrition assistance, anger management, medical and mental health, paren1ng, job skill training, government resources, and more. </li>
<li>Self‐esteem building workshops</li>
<li>Acknowledgement of accomplishments: Includes daily reinforcement and an annual event to honor the women who have successfully completed the program.</li>
<li>Aftercare: Continued access to services and support from MOMA’s House team after completing the program.</li>
</ul></p>
</section>
<section class="quote" id="quote">
<div class="container">
<i class="fa fa-quote-left fLeft fa-4x" ></i>
<p>Quote from former resident. Success quote.
<br><span class="small">- Former resident quote</span></p>
<i class="fa fa-quote-right fRight fa-4x"></i>
</div>
</section>
<section class="section-padding resources">
<div class="container">
<h1 class="purple">Do you need help?</h1>
<div class="left">
<p>Contact us to apply for our program or contact one of the other resources on the right.</p>
<p class="purple">
MOMA’S House:<br>(480) 309‐9853
</p>
<a href="" class="custom-button">Contact us</a>
</div>
<div class="right">
<h3 class="purple">Other Resources</h3>
<p>AZ Coalition Against Domestic Violence: (602) 279-2900</p>
<p>National Coalition Against Domestic Violence: (303) 839‐1852</p>
<p>TTY: (303) 839‐8459</p>
<p>National Domestic Violence Hotline: Toll Free: (800) 799‐SAFE (7233)</p>
<p>TTY: (800) 787‐3224</p>
<p>Polaris Project Trafficking Hotline:1 (888) 373‐7888</p>
</div>
</div>
</section>

<!--<section class="sign-up section-padding text-center" id="download">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h3>Get started with Sedna, absolutely free</h3>
<p>Grab your copy today, exclusively from Codrops</p>
<form class="signup-form" action="#" method="POST" role="form">
<div class="form-input-group">
<i class="fa fa-envelope"></i><input type="text" class="" placeholder="Enter your email" required>
</div>
<div class="form-input-group">
<i class="fa fa-lock"></i><input type="text" class="" placeholder="Enter your password" required>
</div>
<button type="submit" class="btn-fill sign-up-btn">Sign up for free</button>
</form>
</div>
</div>
</div>
</section>-->
<section class="to-top">
<div class="container">
<div class="row">
<div class="to-top-wrap">
<a href="#top" class="top"><i class="fa fa-angle-up"></i></a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="footer-links">
<p>Copyright © 2015 MOMA's house, a 501c3 nonprofit. All rights reserved.<br>
Crafted with <span class="fa fa-heart pulse2"></span> by <a href="http://www.peterfinlan.com/">Phoenix Create-a-thon</a>.</p>
</div>
</div>
<div class="social-share">
<p>Spread the love!</p>
<a href="https://twitter.com/peterfinlan" class="twitter-share"><i class="fa fa-twitter"></i></a> <a href="#" class="facebook-share"><i class="fa fa-facebook"></i></a>
</div>
</div>
</div>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="bower_components/retina.js/dist/retina.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="bower_components/classie/classie.js"></script>
<script src="bower_components/jquery-waypoints/lib/jquery.waypoints.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>
BIN +6.12 KB mHouse/img/130.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +5.74 KB mHouse/img/avatar.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +2.67 MB mHouse/img/bedroom.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +43 Bytes mHouse/img/blank.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +89.7 KB mHouse/img/devices.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +1.47 MB mHouse/img/donate.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +767 KB mHouse/img/door.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +962 KB mHouse/img/food.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +360 KB mHouse/img/hero.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +2.92 MB mHouse/img/index.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +48.3 KB mHouse/img/iphone6.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +61.2 KB mHouse/img/learn.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
BIN +12.9 KB mHouse/img/mani.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.