  @charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/*
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

*/
/*
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/*
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

*/
/*
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

*/
/*
FONT FACE (IN YOUR FACE)
*/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('/wp-content/themes/moama/css/library/fonts/font-name.eot');
      src: url('/wp-content/themes/moama/css//wp-content/themes/moama/css/library/fonts/font-name.eot') format('embedded-opentype'),
             url('/wp-content/themes/moama/css/library/fonts/font-name.woff') format('woff'),
             url('/wp-content/themes/moama/css/library/fonts/font-name.ttf') format('truetype'),
             url('/wp-content/themes/moama/css/library/fonts/font-name.svg') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/*
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

*/
/*
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*/
/*
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*/
/*
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

*/
/*
TRANSITION
*/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*
BOX SIZING
*/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

*/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*/
/*
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

*/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

*/
/*
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.blue-btn:hover, .blue-btn:focus {
  color: #fff;
  text-decoration: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}
.blue-btn:active {
  background-color: #2472a4;
}

/*
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

*/
/*
INPUTS
*/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #f7f8fa;
  outline: none;
}
input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url('/wp-content/themes/moama/fonts/slick.eot');
  src: url('/wp-content/themes/moama/fonts/slick.eot?#iefix') format("embedded-opentype"), url('/wp-content/themes/moama/fonts/slick.woff') format("woff"), url('/wp-content/themes/moama/fonts/slick.ttf') format("truetype"), url('/wp-content/themes/moama/fonts/slick.svg') format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 25, 2015 */
@font-face {
  font-family: 'langdonregular';
  src: url("/wp-content/themes/moama/css/fonts/Langdon-webfont.eot");
  src: url("/wp-content/themes/moama/css//wp-content/themes/moama/css/fonts/Langdon-webfont.eot") format("embedded-opentype"), url("/wp-content/themes/moama/css//wp-content/themes/moama/css/fonts/Langdon-webfont.woff2") format("woff2"), url("/wp-content/themes/moama/css/fonts/Langdon-webfont.woff") format("woff"), url("/wp-content/themes/moama/css/fonts/Langdon-webfont.ttf") format("truetype"), url("/wp-content/themes/moama/css/fonts/Langdon-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
/*$_width-desktop: 1326px; //includes marginx x 2 (28px)*/
/*$_width-tablet: 740px; //740px Width + 28px (14px gutters) = 768px;*/
/*$width-tablet:  $_width-tablet + ($_margin * 2);
$width-tablet-min:  $_width-tablet + ($_margin * 2);*/
/*$width-tablet-max:  $width-desktop-min - 1;*/
.debug-variable-values .width-desktop {
  width: 1260px;
}
.debug-variable-values .width-desktop-min {
  width: 1308px;
}
.debug-variable-values .width-tablet {
  width: 768px;
}
.debug-variable-values .width-tablet-min {
  width: 768px;
}
.debug-variable-values .width-tablet-max {
  width: 1279px;
}
.debug-variable-values .width-phone-max {
  width: 767px;
}
.debug-variable-values .width-phone-small {
  width: 545px;
}

.section {
  /*background: $color-light-blue;*/
  clear: both;
  overflow: hidden;
  margin-bottom: 50px;
}

/*.custom-container {
    margin-bottom: 20px;
}*/
/*.custom-container {*/
.container {
  /*width: 100%;*/
  /*    width: 1280px;*/
  position: static;
  margin: 0 auto 20px;
}

/*.custom-container:after, .row:after {*/
.container:after, .row:after {
  clear: both;
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container {
    /*        width: 720px; //740px Width + 28px (14px gutters)
            padding-left: $_padding;
            padding-right: $_padding;*/
    width: auto;
    /*        padding-left: $_padding;
            padding-right: $_padding;*/
  }
}
@media screen and (min-width: 1308px) {
  .container {
    width: 1260px;
    padding-left: 14px;
    padding-right: 14px;
  }
}
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix {
  clear: both;
}

.img-responsive {
  /*    width: 100%;*/
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

.responsive-intrinsic-ratio {
  position: relative;
  padding-bottom: 70%;
  height: 0;
}

/* element to stretch */
.responsive-intrinsic-ratio__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-intrinsic-ratio__image {
  width: 100%;
  max-width: inherit;
}

/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
/*
font-family: 'langdonregular', Impact, sans-serif;
*/
.text-white {
  color: #fff;
}

.text-red {
  color: #ed1c24;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

body, p {
  /*font-family: 'langdonregular', Impact, sans-serif;*/
  font-family: "open sans", Helvetica, sans-serif;
  font-size: 13px;
  color: #000;
  line-height: 20.6px;
}

p {
  text-transform: inherit;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "langdonregular", Impact, sans-serif;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
}

h1.page-title, h1.single-title {
  color: #000;
}

h1 {
  font-size: 55px;
  /*font-weight: 100;*/
  line-height: 49.9px;
  font-weight: 100;
}

h2 {
  color: #ed1c24;
  font-size: 30px;
  font-weight: 100;
}

h3 {
  color: #000;
  font-size: 28px;
  line-height: 30px;
}

.home.page h3 {
  font-weight: 100;
}

article h3 {
font-family: "open sans", Helvetica, sans-serif;
  font-size: 18px;
}

h5 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.2px;
}

em {
  font-style: italic !important;
}

.news-date {
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 15px;
  line-height: 18px;
  color: #000;
}

.news-text {
  font-size: 13px;
}

.key-dates-date {
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.lowercase {
  text-transform: lowercase;
}

a, a:visited {
  color: #fff;
}

a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #fff;
}

a.btn, button.btn, .contact-us .contents input[type="submit"] {
  /*font-family: 'open sans','arial';*/
  font-family: Impact, sans-serif;
  /*font-weight: 700;*/
  font-weight: 100;
  /*font-size: 14px;*/
  font-size: 18px;
  text-decoration: none;
  -moz-user-select: none;
  background-image: none;
  /*    border-radius: 16px;*/
  cursor: pointer;
  display: inline-block;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 8px 24px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
  background: #ed1c24;
  text-transform: uppercase;
  transition: background-color 0.5s ease;
}
a.btn:visited, button.btn:visited, .contact-us .contents input[type="submit"]:visited {
  background: #ed1c24;
  transition: background-color 0.5s ease;
}
a.btn:hover, a.btn:active, button.btn:hover, .contact-us .contents input[type="submit"]:hover, button.btn:active, .contact-us .contents input[type="submit"]:active {
  background: #c61017;
}

.icon {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 1px;
}

a.btn-default span.icon-chevron-right-white, a.btn-apply-now span.icon-chevron-right-white, a.btn-no-bg span.icon-chevron-right-white, a.btn-no-bg--black span.icon-chevron-right-white, .contact-us .contents input[type="submit"] span.icon-chevron-right-white {
  background: url(/wp-content/themes/moama/img/icon-chevron-right-white.png) no-repeat center 2px;
  width: 15px;
  height: 16px;
}
a.btn-default span.icon-chevron-right-black, a.btn-apply-now span.icon-chevron-right-black, a.btn-no-bg span.icon-chevron-right-black, a.btn-no-bg--black span.icon-chevron-right-black, .contact-us .contents input[type="submit"] span.icon-chevron-right-black {
  background: url(/wp-content/themes/moama/img/icon-chevron-right-black.png) no-repeat center 3px;
  width: 15px;
  height: 16px;
}

a.btn-apply-now, a.btn-no-bg, a.btn-no-bg--black {
  padding: 0;
  background: transparent;
  /*    transition: none;*/
}
a.btn-apply-now:visited, a.btn-no-bg:visited, a.btn-no-bg--black:visited {
  background: transparent;
  /*        transition: none;*/
}
a.btn-apply-now:hover, a.btn-no-bg:hover, a.btn-no-bg--black:hover, a.btn-apply-now:active, a.btn-no-bg:active, a.btn-no-bg--black:active {
  background: transparent;
}
a.btn-apply-now span, a.btn-no-bg span, a.btn-no-bg--black span {
  transition: margin-left 0.5s ease;
}
a.btn-apply-now:hover span, a.btn-no-bg:hover span, a.btn-no-bg--black:hover span, a.btn-apply-now:active span, a.btn-no-bg:active span, a.btn-no-bg--black:active span {
  margin-left: 5px;
}

a.btn-no-bg--black {
  color: #000;
}

.page-template-template-contact-us .bfSubmitButton span {
  text-transform: uppercase;
}

/*
font-family: 'langdonregular', Impact, sans-serif;
*/
.text-white {
  color: #fff;
}

.text-red {
  color: #ed1c24;
}


.wpa-hide-ltr#skiplinks a:active, .wpa-hide-ltr#skiplinks a:focus {
  position:relative !important;
  background-color: #333 !important;
  color: #fff !important;
  display: block !important;
  left: 0 !important;
  top: 0 !important;
  display: block !important;
  box-shadow: none !important;
  width: 100% !important;
}


body, p {
  /*font-family: 'langdonregular', Impact, sans-serif;*/
font-family: "open sans", Helvetica, sans-serif;
  font-size: 13px;
  color: #000;
  line-height: 20.6px;
}

p {
  text-transform: inherit;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "langdonregular", Impact, sans-serif;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
}

h1.page-title, h1.single-title {
  color: #000;
}

h1 {
  font-size: 55px;
  /*font-weight: 100;*/
  line-height: 49.9px;
  font-weight: 100;
}

h2 {
  color: #ed1c24;
  font-size: 30px;
  font-weight: 100;
}

h3 {
  color: #000;
  font-size: 28px;
  line-height: 30px;
}

.home.page h3 {
  font-weight: 100;
}

article h3 {
font-family: "open sans", Helvetica, sans-serif;
  font-size: 18px;
}

h5 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.2px;
}

em {
  font-style: italic !important;
}

.news-date {
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.news-text {
  font-size: 13px;
}

.key-dates-date {
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 15px;
  line-height: 18px;
}

.lowercase {
  text-transform: lowercase;
}

/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
html, body {
  background: #fff;
}

body {
  margin-bottom: -50px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.enquiry {
  clear: both;
  padding: 20px 0;
}

.todo {
  margin-top: 50px;
}

.text-welcome {
  text-transform: none;
}

/* Form Validation Styles */
.ng-invalid.ng-touched {
  color: #ff0000;
}

input::selection {
  background: #aaa;
}

input::-moz-selection {
  background: #aaa;
}

.help-inline {
  margin: 10px;
}

.hentry {
  border: none;
}

#content {
  margin-top: 0;
}

.byline {
  color: #000;
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
}

.byline, .em, dfn, em, span.amp {
  font-style: normal;
}

.pagination a, .pagination span {
  font-size: 14px;
  /*        font-weight: 400;*/
  font-family: "langdonregular", Impact, sans-serif;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  /*    span:hover {*/
  background-color: #ed1c24;
  color: #fff;
}
.pagination .page-numbers {
  background: none repeat scroll 0 0 #efefef;
  color: #000;
}
.pagination .page-numbers .fa {
  font-size: 12px;
}
.pagination .page-numbers .current {
  background: none repeat scroll 0 0 #ed1c24;
  color: #fff;
}

.hentry header {
  padding: 25px;
}

.entry-content {
  padding: 25px 25px 0;
}

.excerpt-read-more {
  display: none;
}

/* We're floating all images in page content to the right */
.type-page img {
  display: block;
  height: auto;
  max-width: 100%;
  /*        margin-left: 0 !important;*/
  margin: 0 0 10px 25px !important;
  float: right;
  height: auto;
}

/* WP class to align left. Overrides default floating right of all images in .type-page */
.type-page img.alignleft {
  float: none!important;
  margin: 0 25px 10px 0!important;
}

/* WP class to align center. Overrides default floating right of all images in .type-page */
.type-page img.aligncenter {
  float: none!important;
  margin: 0 auto!important;
}

.search-results .container {
  /*        padding: 25px;*/
}

article li {
  /*list-style: inside none disc;*/
  list-style-type: disc;
  margin-left: 17px;
  padding-left: 5px;
}

.page h1 {
  margin-bottom: 0;
}
.page #sidebar1 h2:first-child {
  border-top: medium none;
  margin-top: 0;
  padding-top: 0;
}
.page #sidebar1 h2 {
  border-top: 1px solid #d9d9d9;
  margin-top: 30px;
  padding-top: 35px;
}
.page header > .byline {
  margin: 8px !important;
}
.page div#sidenav {
  position: relative;
  width:23%;
}
.page div#sidenav .sidenav__tab {
  left: 0;
  position: absolute;
  margin-top: -74px;
  padding-bottom: 58px;
}
.page div#sidenav .sidenav__tab h2 {
  color: #fff;
  margin: 0;
}
.page .wk-gallery-showcase li {
  list-style-type: none;
}

#main table tr:nth-child(odd) {
  background: #efefef;
}
#main table td {
  padding: 10px;
  vertical-align: middle;
}
#main table td:first-child, #main table td:last-child {
  padding: 20px;
}

#main .fee-content-original table td:first-child, #main table td:last-child {
  /*padding: 10px;*/
}

.table-border-right-grey {
  border-right: 2px solid #d9d9d9;
}

.bold {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .type-page {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: auto;
    /*left nav hierarchy*/
    /*right - event items */
  }
  .container #main {
    width: auto;
  }
  .container div#sidenav {
    display: none;
  }
  .container div#sidebar1 {
    clear: both;
    width: auto;
    float: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .container div#sidenav {
    /*float: left;*/
    margin-right: 10px;
    padding: 30px;
    width: 30%;
  }
  .container #main {
    float: left;
    /*width: 30%;*/
    width: 38%;
    padding: 20px;
  }
  .container div#sidebar1 {
    /*float: left;*/
    float: right;
    padding: 20px;
    padding-right: 20px !important;
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .container main > article {
    padding-top: 0 !important;
  }
}
/* FILE START: header.scss */
/* FILE END: header.scss */
.moama-break {
  display: none;
}

.ubermenu-retractor.ubermenu-retractor-mobile {
  display:none;
}

/*.header__inner {
    float: none;
}*/
.banner {
  background-size: cover !important;
  height: 472px;
}

.twitter img {
  padding: 5px 0;
}

.wk-slideshow-default .nav {
  z-index: 9;
}

.section.header__section {
  z-index: 11;
}

/*.section.header__section {
    height: 147px;
} */
.header__nav {
  /*    margin-top: 0 !important;*/
}

.header__section {
  border-top: 8px solid #ed1c24;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  background: #222;
  /* ie8 */
  /*background-color: rgba(34, 34, 34, 0.7);*/
  background-color: rgba(0, 0, 0, 0.49);
  margin-bottom: auto;
  overflow: inherit;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.header__section .container {
  margin-bottom: 0;
}

.header {
  background-color: inherit;
}
.header #inner-header {
  position: relative;
  /*        padding-top: 30px;
          padding-bottom: 10px;*/
  /*padding-top: 22px;*/
  margin-top: 22px;
  /*padding-bottom: 15px;*/
  padding-bottom: 0;
}
.header__inner {
  float: left;
  /*margin-top: 30px;*/
  /*        width: 350px;*/
}
.header__inner-logo {
  float: left;
  margin-right: 31px;
  margin-bottom: 20px;
}
.header__inner-text {
  font-family: "langdonregular", Impact, sans-serif;
  line-height: 34.93px;
  color: #fff;
}
.header__inner-text div {
  line-height: 26px;
  padding-top: 20px;
}
.header__inner-text-line-1 {
  font-size: 38.82px;
}
.header__inner-text-line-2 {
  font-size: 28.82px;
  line-height: 28px;
}
.header__inner-social ul {
  float: right;
  margin: 0;
  height: 34px;
}
.header__inner-social ul li {
  float: left;
  padding: 0 15px;
  font-size: 27px;
}

.header__inner-social ul li.parent-portal {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.header__inner-social ul li a {
  display: block;
  padding-top: 5px;
}
.header__inner-social ul li img {
  float: left;
  padding-bottom: 5px;
  border-bottom: 5px solid transparent;
}
.header__inner-social ul li img:hover {
  /*                        border-bottom: 5px solid $color-red;*/
}
.header__inner-social ul li span {
  display: block;
  padding: 2px 0 0 25px;
  width: 133px;
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 20px;
}

.header__inner-social ul li em{
  font-style: normal !important;
}
.header__inner-social ul li:hover img {
  border-bottom: 5px solid #ed1c24;
}
.header__inner-social #searchform .screen-reader-text, .header__inner-social #searchform #searchsubmit {
  display: none;
}
.header__inner-social #searchform input {
  border-radius: 0;
  height: 34px;
  width: 232px;
  margin-bottom: 0;
  font-family: "open sans", Helvetica, sans-serif!important;
  font-weight: bold;
  text-transform: inherit;
}
.header__nav {
  /*margin-top: 50px;*/
  float: right;
}
.header__nav .ubermenu-nav {
  float: right;
}

@media screen and (max-width: 767px) {
  .header__inner {
    float: none;
  }

  #inner-header {
    padding: 15px;
  }

  .banner {
    height: 362px;
  }

  .section.header__section {
    height: 315px;
  }

  .wk-slideshow__text {
    top: 325px !important;
    /*        left: 25px;*/
    position: absolute;
  }

    /*    .header__section {
            .header__nav {
                float: none;
                background: $color-nav-background-darker;

                .ubermenu-nav {
                    float: none;
                }

                .ubermenu-nav > li {
                    width: 100% !important;
                }
            }
        }*/
  .header__inner-social {
    clear: both;
  }
  .header__inner-social ul {
    float: none;
  }
  .header__inner-social ul .search {
    float: none;
    clear: both;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .header__inner-social ul .search #searchform input {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .header__inner-social ul li.parent-portal {
    border-right: none;
  }
}
/*@media screen and (max-width: $width-tablet-max) {*/
/*@media screen and (max-width: 1290px) {*/
/*@media screen and (max-width: 1293px) {*/
@media screen and (max-width: 1279px) {
  .header #inner-header {
    position: static;
    margin-top: 42px;
  }

  .header__section {
    padding-top: 30px;
  }
  .header__section .header__nav {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 8px solid red;
    /*background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85) !important; //darker, so easier to read menu items.*/
    background: none repeat scroll 0 0 black !important;
  }

  .header__nav nav.ubermenu > ul li {
    border-bottom: none;
  }
  .header__nav nav.ubermenu > ul .facebook, .header__nav nav.ubermenu > ul .twitter, .header__nav nav.ubermenu > ul .parent-portal {
    /*background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85) !important;*/
    background: none repeat scroll 0 0 black !important;
    float: left;
  }
  .header__nav nav.ubermenu > ul .facebook > a, .header__nav nav.ubermenu > ul .twitter > a, .header__nav nav.ubermenu > ul .parent-portal > a {
    display: block;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-top: 20px;
    width: auto;
  }
  .header__nav nav.ubermenu > ul .facebook > a img, .header__nav nav.ubermenu > ul .twitter > a img, .header__nav nav.ubermenu > ul .parent-portal > a img {
    border: 0 none;
    display: block;
    float: left;
    padding-bottom: 15px;
  }
  .header__nav nav.ubermenu > ul .facebook > a span, .header__nav nav.ubermenu > ul .twitter > a span, .header__nav nav.ubermenu > ul .parent-portal > a span {
    display: block;
    width: 120px;
  }
  .header__nav nav.ubermenu > ul .parent-portal span {
    padding-left: 30px;
    padding-top: 8px;
    white-space: nowrap;
  }

  .header__inner-social .facebook, .header__inner-social .twitter, .header__inner-social .parent-portal {
    display: none;
  }

  .header__nav nav.ubermenu > ul .facebook, .header__nav nav.ubermenu > ul .twitter, .header__nav nav.ubermenu > ul .parent-portal {
    display: block;
  }

  .header__section .header__nav {
    float: none;
    background: rgba(0, 0, 0, 0.65);
  }
  .header__section .header__nav .ubermenu-nav {
    float: none;
  }
  .header__section .header__nav .ubermenu-nav > li {
    width: 100% !important;
  }
}
@media screen and (min-width: 779px) {
  .section.header__section {
    /*        height: 200px;*/
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__nav .ubermenu-nav {
    float: none;
  }

  .header__section .header__nav {
    border-top: medium none;
  }

  /*.section.header__section > .container {*/
  .header__section > .container {
    width: auto;
  }

  .header__section .header__nav {
    margin-top: 0;
  }

  .section.header__section {
    /*        height: 352px;*/
    height: 205px;
  }
}
@media screen and (min-width: 768px) {
  .header__section .header {
    background-color: inherit;
  }
  .header__section .header__inner {
    float: left;
    /*                width: 350px;*/
    width: 340px;
    /*width: 300px;*/
  }

  .header__inner-text {
    position: absolute;
  }
}
@media screen and (min-width: 787px) {
  .section.header__section {
    /*        height: 352px;*/
  }
}
@media screen and (min-width: 1038px) {
  .section.header__section {
    /*        height: 237px;*/
  }
}
/*@media screen and (min-width: $width-desktop-min) {*/
/*@media screen and (min-width: 1291px) {*/
@media screen and (min-width: 1280px) {
  .header__nav nav.ubermenu > ul .facebook, .header__nav nav.ubermenu > ul .twitter, .header__nav nav.ubermenu > ul .parent-portal {
    display: none;
  }

  .section.header__section {
    height: 147px;
  }

  .header__inner-text .moama-break {
    display: none;
  }

  .header__inner-social ul li span {
    /*                        width: 150px;*/
  }
  .header__inner-social #searchform input {
    width: 232px;
  }
}
/*
//Tablet
@media screen and (min-width: 780px) and (max-width: 1021px) {
    .section.header__section {
        height: 206px !important;
    }
    #inner-header {
        padding-left: 25px;
        padding-right: 25px;
    }
}
//Tablet
@media screen and (min-width: 780px) and (max-width: 1259px) {
    .header #inner-header {
        margin-top: 42px;
        padding-left: 15px;
        padding-right: 0;
        position: static;
        width: 720px !important;
    }
}*/
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .section.header__section {
    height: 206px !important;
  }

  .header #inner-header {
    margin-top: 42px;
    padding-left: 25px;
    padding-right: 25px;
    position: static;
    /*        width: 720px !important;*/
        /*        .header__inner-social #searchform input {

                }*/
  }
  .header #inner-header .header__inner {
    width: 280px;
  }
	.header__inner-social {
    display: flex;
justify-content: right;
		float:right;
}
  .header #inner-header .header__inner-social ul li {
    padding: 0 10px;
  } 
  .header #inner-header .header__inner-text div {
    line-height: inherit;
    padding-top: 16px;
  }
}
.ubermenu-nav > li > a.ubermenu-target {
  /*padding: 28px 15px 17px;*/
  padding-left: 15px;
  padding-right: 15px;
}

/*

HONOUR AND EXCELLENCE
Langdon, 55.44px, 49.9px H, VA -10,

Enrol Now
Langdon - regular, 25.14px, 49.9px H, VA -10,

Body
opensans: 400
opensans semi-bold: 600

*/
.slideshow-wrapper {
  position: relative;
}
.slideshow-wrapper .wk-slideshow-default .nav span {
  background: url("/wp-content/themes/moama/img/icon-dot-unselected.png") no-repeat scroll 0 0 transparent;
}
.slideshow-wrapper .wk-slideshow-default .nav .active span, .slideshow-wrapper .wk-slideshow-default .nav li:hover span {
  background: url("/wp-content/themes/moama/img/icon-dot-selected.png") no-repeat scroll 0 0 transparent;
}

.wk-slideshow {
  color: #fff;
}
.wk-slideshow .next, .wk-slideshow .prev {
  display: none;
}
.wk-slideshow__container {
  position: relative;
  /*letter-spacing: -10px;*/
  line-height: 49.9px;
}
.wk-slideshow__image img {
  width: 100%;
}
.wk-slideshow__text {
  position: absolute;
  top: 40%;
  left: 50px;
}
.wk-slideshow__text span {
  font-family: 'langdonregular', Impact, sans-serif;
  line-height: 49.9px;
  display: block;
  background: #083a7a;
  padding: 13px 24px;
  margin-bottom: 10px;
  font-size: 55.44px;
}
.wk-slideshow__text a {
  color: #fff;
  background: #ed1c24;
  padding: 15px 19px 12px;
  font-size: 25.14px;
}
.wk-slideshow .nav {
  position: absolute;
  top: 50%;
  /*ie8*/
  /*        top: calc(50% - 48px);*/
  top: -278px;
  /*        right: 20%;*/
  right: calc(0% + 15px);
  z-index: 10;
}
.wk-slideshow .nav > li {
  float: none;
  margin-left: 0 !important;
  margin-bottom: 10px;
  display: block !important;
}
.wk-slideshow ul.slides {
  height: 415px;
}
.wk-slideshow ul.slides > li {
  /*            min-height: 386px !important;*/
  min-height: 416px !important;
}
.wk-slideshow .wk-slideshow ul.slides > li {
  min-height: 416px !important;
}

/*.slideshow-wrapper*/
.home .wk-slideshow p {
  margin: 0 !important;
}

.primary-sidebar.widget-area {
  max-height: 562px;
  min-height: 370px;
}

/* round slider-nav buttons */
.wk-slideshow, .wk-slideshow .slides {
  max-height: 562px;
}

.wk-slideshow .slides, .wk-slideshow .nav {
  max-height: 562px;
}

@media screen and (max-width: 767px) {
	.header__inner-social ul li{
		padding: 0 10px;
	}
  .primary-sidebar.widget-area {
    margin-top: -13px;
  }
	.seqta-portal {
		margin-bottom:10px;
	}

  /*    .wk-slideshow__text {
          top: 10%;
      }*/
  .wk-slideshow__text {
    left: 25px;
  }

  .wk-slideshow__text span {
    font-size: 25.44px;
    line-height: 21.9px;
    margin-bottom: -8px;
    padding: 6px 24px;
  }

  .wk-slideshow__text a {
    font-size: 10.14px;
    padding: 5px 19px;
  }

  .wk-slideshow-default .nav {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .wk-slideshow__text {
    top: calc(40% - 58px);
  }

  .wk-slideshow__text span {
    font-size: 35.44px;
    line-height: 29.9px;
  }

  .wk-slideshow__text a {
    font-size: 15.14px;
  }
}
/*@media screen and (min-width: $width-tablet-min) {*/
@media screen and (min-width: 768px) {
  /*    .wk-slideshow .slides, .wk-slideshow .nav {
          max-height: 562px;
      }*/
  .wk-slideshow ul.slides {
    min-height: 562px;
  }
  .wk-slideshow ul.slides > li {
    min-height: 562px !important;
  }

  .wk-slideshow__text {
    left: 14px;
    position: absolute;
    top: 317px;
  }
}
/*$key-dates-column-width: 25.3%;*/
.nav-secondary-wrapper {
  position: relative;
  z-index: auto;
  clear: both;
}
.nav-secondary-wrapper hr {
  border: 1px solid #d9d9d9;
  border-bottom: none;
  margin: 25px;
}
.nav-secondary-wrapper hr:last-child {
  display: none;
}

.nav-secondary {
  margin-top: -86px;
  /*&__tab {*/
  /*&__tab--grey {*/
  /*&__tab--blue {*/
    /*    &__key-dates-contents {
            color: $color-white;
            background: $color-blue;

            &-image {
                float: left;
                width: 40px;
            }
            &-text {
                float: left;
            }

        }*/
}
.nav-secondary h2, .nav-secondary h3 {
  margin-top: 0;
}
.nav-secondary h5 {
  margin: 0;
}
.nav-secondary__welcome-tab, .nav-secondary__news-tab, .nav-secondary__key-dates-tab, .page div#sidenav .sidenav__tab {
  background: #fff;
  display: inline-block;
  height: 66px;
  font-size: 30px;
  padding: 25px;
}
.nav-secondary__welcome-tab span, .nav-secondary__news-tab span, .nav-secondary__key-dates-tab span, .page div#sidenav .sidenav__tab span {
  color: #ed1c24;
}

.nav-secondary__welcome-tab h1{
  margin-top:0;
  color: #ed1c24;
  font-size: 30px;
}

.nav-secondary__news .equal-height-column {
  background: #efefef;
}
.nav-secondary__news-tab {
  /*@extend .nav-secondary__tab;*/
  background: #efefef;
}
.nav-secondary__key-dates-tab, .page div#sidenav .sidenav__tab {
  /*@extend .nav-secondary__tab;*/
  background: #083a7a;
}
.nav-secondary__welcome, .nav-secondary__news {
  /*        width: 37.34375%;*/
  width: 37.34375%;
  float: left;
}
.nav-secondary__key-dates {
  /*width: 25.3%;*/
  width: 25.3%;
  /*width: 24.3%;*/
  float: left;
  color: #fff;
font-family: "open sans", Helvetica, sans-serif;
  font-size: 12;
  line-height: 20px;
	
}
.nav-secondary__key-dates h4 {
  font-size: 22px;
}
.nav-secondary__key-dates-contents {
  /*padding: 0 !important;*/
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  /*padding: 0 0 200px 0 !important;*/
  position: relative;
  background: #083a7a;
}
.nav-secondary__key-dates-contents-lower {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.nav-secondary__key-dates .nav-secondary__key-date, .nav-secondary__key-dates .nav-secondary__key-date--view-more, .nav-secondary__key-dates .nav-secondary__key-date--attendance, .nav-secondary__key-dates .nav-secondary__key-date--canteen {
  background: #083a7a;
  padding-top: 25px;
}
.nav-secondary__key-dates .nav-secondary__key-date-inner {
  padding-left: 25px;
  padding-right: 25px;
}
.nav-secondary__key-dates .nav-secondary__key-date-inner-contents {
  color: #fff;
  overflow: hidden;
  /*                    border-bottom: 1px solid #4f729e;*/
  padding-bottom: 5px;
}
.nav-secondary__key-dates .nav-secondary__key-date-inner-contents-image {
  float: left;
  width: 40px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.nav-secondary__key-dates .nav-secondary__key-date-inner-contents-text {
 /* float: left;
  width: 180px; */
}
.nav-secondary__key-dates .nav-secondary__key-date-inner-contents-text p {
  color: #fff;
  margin-top: 5px;
}
.nav-secondary__key-dates .nav-secondary__key-date--view-more {
  /*padding-bottom: 25px;*/
  padding-bottom: 0px;
}
.nav-secondary__key-dates .nav-secondary__key-date--attendance {
  background: #d9d9d9;
}
.nav-secondary__key-dates .nav-secondary__key-date--attendance h4 {
  margin: 0;
  margin-bottom: 3px;
  color: #000;
}
.nav-secondary__key-dates .nav-secondary__key-date--attendance .nav-secondary__key-date-inner-contents {
  color: #000;
}
.nav-secondary__key-dates .nav-secondary__key-date--canteen {
  /*            background: $color-red;*/
  background: url(/wp-content/themes/moama/img/bg-red-section.png) #ed1c24;
  background-size: cover;
  padding-bottom: 5px;
}
.nav-secondary__key-dates .nav-secondary__key-date--canteen h4 {
  margin: 0;
  margin-bottom: 3px;
}
.nav-secondary__welcome-contents, .nav-secondary__welcome-contents-campaign, .nav-secondary__news-contents, .nav-secondary__key-dates-contents {
  padding: 25px;
}
.nav-secondary__welcome-contents {
  background: #fff;
  position: relative;
}
.nav-secondary__welcome-contents-campaign {
  visibility: hidden;
  /*background: $color-blue;*/
  /*TODO: make relative*/
  background: url(/wp-content/themes/moama//wp-content/themes/moama/css/img/bg-blue-people.jpg) #083a7a;
  background-size: cover;
  position: absolute;
  /*        bottom: 0;*/
  bottom: 25px;
  left: 0;
  width: 90%;
  /* NOTE: This value is overridden in the js function initColumnWidthsAfterLoading() */
  padding-right: 0;
}
.nav-secondary__welcome-contents-campaign p {
  color: #fff;
  margin-right: 20px;
}
.nav-secondary__news-contents {
  background: #efefef;
}
.nav-secondary__news-contents-inner {
  overflow: hidden;
  /*            background: $color-grey;*/
}
/*
.nav-secondary__news-contents-inner-image {
  width: 20.094562%;
  float: left;
  margin-right: 24px;
}
*/
.nav-secondary__news-contents-inner-image {
	width: 45%;
    float: left;
    margin-right: 15px;
}
.nav-secondary__news-contents-inner-text {
  width: 73.758865%;
  float: left;
}
.nav-secondary__news-contents-inner-text h3 {
  margin: 0 0 3px;
}
.nav-secondary .nav-secondary__key-date-inner-contents-text h2 {
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 20px;
  border: none;
}

.nav-secondary__key-date-inner-contents-text a:hover, .nav-secondary__key-date-inner-contents-text a:focus, .nav-secondary__key-date-inner-contents-text a:visited:hover, .nav-secondary__key-date-inner-contents-text a:visited:focus {
  color: #000;
}

.key-date-contents-bottom-border {
  border-bottom: 1px solid #4f729e;
}

.equal-height-column {
  /*Needed for tablet*/
  /*padding-bottom: 50px;*/
}

.spacer {
  margin-bottom: 54px;
  clear: both;
}

.nav-secondary .nav-secondary__welcome-contents-text h1 {
  font-size: 28px;
  line-height: 30px;
  color: #000;
}


@media screen and (max-width: 767px) {
  .nav-secondary {
    margin-top: 0px;
  }
  .nav-secondary__tab--blue {
    white-space: nowrap;
  }
  .nav-secondary__welcome, .nav-secondary__news, .nav-secondary__key-dates {
    width: 100%;
  }
  .nav-secondary__news-contents-inner-image {
    margin-bottom: 25px;
  }
  .nav-secondary__news-contents-inner-text {
    width: 100%;
  }
  .nav-secondary .nav-secondary__welcome-contents {
    padding-left: 0;
    padding-bottom: 0;
  }
  .nav-secondary .nav-secondary__welcome-contents-text {
    padding-left: 25px;
  }
  .nav-secondary .nav-secondary__welcome-contents-campaign {
    position: relative;
    bottom: 0;
  }
  .nav-secondary .nav-secondary__welcome-contents .btn.btn-default {
    margin-bottom: 40px;
  }
  .nav-secondary .nav-secondary__key-dates-contents {
    padding-bottom: 0;
  }
  .nav-secondary .nav-secondary__key-dates-contents-lower {
    position: relative;
  }

  .nav-secondary__welcome-tab, .nav-secondary__news-tab, .nav-secondary__key-dates-tab, .page div#sidenav .sidenav__tab, .nav-secondary__news-tab, .nav-secondary__key-dates-tab, .page div#sidenav .sidenav__tab {
    display: block;
  }

  .spacer {
    display: none;
  }

  .nav-secondary__key-dates .nav-secondary__key-date--view-more {
    padding-bottom: 25px;
    /*padding-bottom: 0px;*/
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .nav-secondary__news-contents-inner-image {
    /*                width: 100%;*/
  }
  .nav-secondary__news-contents-inner-image img {
    /*                    width: 100%;*/
  }
  .nav-secondary__news-contents-inner-text {
    /*                width: 73.758865%;*/
    width: 100%;
  }

  .nav-secondary__key-dates .nav-secondary__key-date-inner-contents-text {
    width: auto;
  }

  .nav-secondary__key-dates .nav-secondary__key-date-inner-contents-text {
    width: 100% !important;
  }

  .btn.btn-no-bg--black, .btn.btn-no-bg {
    text-align: left;
    white-space: normal;
  }

  .equal-height-column {
    /*Needed for tablet*/
    /*padding-bottom: 50px;*/
    padding-bottom: 110px;
  }
}
@media screen and (min-width: 768px) {
  .nav-secondary-wrapper {
    z-index: 2;
  }
}
@media screen and (min-width: 1308px) {
  .nav-secondary__news .equal-height-column {
    /*Needed for tablet*/
    /*        padding-bottom: 50px;*/
    padding-bottom: 25px;
  }
}
.campaign-slider {
  /*background: url(/wp-content/themes/moama/css/img/bg-blue-people.jpg);*/
  /*TODO: make relative*/
  /*    background: url(http://moamma.grindstone.com.au/wp-content/themes/eddiemachado-bones-cfbfb62//wp-content/themes/moama/css/img/bg-blue-people.jpg);*/
}
.campaign-slider h2 {
  border: medium none;
  color: white;
  font-size: 22px;
  margin-top: 5px;
}
.campaign-slider .slick-dots li button {
  background: url("/wp-content/themes/moama/img/icon-dot-unselected.png") no-repeat scroll 0 0 transparent;
}
.campaign-slider .slick-dots li.slick-active button, .campaign-slider .slick-dots li:hover button {
  background: url("/wp-content/themes/moama/img/icon-dot-selected.png") no-repeat scroll 0 0 transparent;
}
.campaign-slider .slick-dots li button::before {
  content: "";
  /*opacity: 0.25;*/
  /*  position: absolute;
    top: 0;
    width: 20px;*/
}

/* vertical alignment styles */
/* table utils */
.col-top {
  vertical-align: top;
}

.col-middle {
  vertical-align: middle;
}

.col-bottom {
  vertical-align: bottom;
}

/* columns of same height styles */
.row-full-height {
  height: 100%;
}

.col-full-height {
  height: 100%;
  /*                vertical-align: middle;*/
  vertical-align: top;
}

.row-same-height {
  display: table;
  width: 100%;
  /* fix overflow */
  table-layout: fixed;
}

.col-xs-height {
  display: table-cell;
  float: none !important;
}

/* content styles */
.item {
  display: table;
  width: 100%;
  height: 100%;
}

.content {
  display: table-cell;
  /*vertical-align: middle;*/
  vertical-align: top;
  text-align: left;
}

.column-1 {
  position: relative;
}

.campaign-content {
  position: absolute;
  bottom: 0;
}

.last-entry {
  margin-bottom: 50px;
}

[class*="col-"]:before {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  /* Disable full height columns - default back to column content */
  .col-sm-height {
    display: block;
    float: none !important;
  }

  .row-same-height {
    display: block;
  }

  .col-xs-height {
    display: block;
    float: none !important;
  }

  .campaign-content {
    position: static;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .col-sm-height {
    display: table-cell;
  }
}
@media (min-width: 992px) {
  .col-md-height {
    display: table-cell;
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .col-lg-height {
    display: table-cell;
    float: none !important;
  }
}
.contact-us .contents {
  padding: 25px;
}
.contact-us .contents h1 {
  color: #000;
}
.contact-us .contents a {
  color: #ed1c24;
  text-decoration: underline;
}
.contact-us .contents label {
  font-family: "langdonregular", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 10px;
  white-space: nowrap;
  color: #ed1c24;
}
.contact-us .contents .bfRequired {
  /*display: none;*/
  font-size: 20px;
  font-weight: 100;
}
.contact-us .contents input, .contact-us .contents textarea {
  width: 100% !important;
  max-width: 100% !important;
  font-size: 17px;
}
.contact-us .contents input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  display: inline-block;
  float: right;
  margin-top: 10px;
  margin-right: 5px;
  font-size: 17px;
  padding: 7px 23px 5px;
  width: 90px;
  max-width: 90px!important;
}
.contact-us .contents input[type="submit"] .fa-chevron-right {
  font-size: 15px;
  padding-left: 17px;
}
.contact-us__address {
  float: left;
  width: 48%;
  margin-bottom: 30px;
  margin-right: 40px;
}
.contact-us__address-google-map {
  margin-top: 35px;
}
.contact-us__form {
  display: none;
  float: left;
  width: 48%;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contact-us__address, .contact-us__form {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .contact-us__address {
    margin-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .contact-us .contents label {
    /*width: 35% !important;*/
    /*max-width: 34% !important;*/
    padding-top: 10px;
  }
  .contact-us .contents input, .contact-us .contents textarea {
    /*width: 55% !important;*/
    max-width: 100% !important;
  }
}
@media screen and (min-width: 1308px) {
  .contact-us .contents {
    /*padding: 10px 200px;*/
  }
}
.article-header-news__heading {
  margin-top: 35px;
}
.article-header-news__heading h1.news-h1 {
  margin-top: 0;
  font-family: "langdonregular", Impact, sans-serif, Impact, sans-serif;
  font-size: 33px;
  line-height: 18px;
}
.article-header-news h2.news-h2 {
  font-family: "langdonregular", Impact, sans-serif, Impact, sans-serif;
  font-size: 28px;
  line-height: 26px;
  color: #000;
  margin-top: 46px;
  margin-bottom: 0;
}
.article-header-news .byline {
  margin-top: 4px;
}

.news-feed__image {
  float: left;
}
.news-feed__article {
  float: left;
  margin-left: 22px;
  width: 83%;
}
.news-feed__article h2 {
  margin-top: -4px;
}
.news-feed__article a {
  margin-top: 0;
}
.news-feed article {
  margin-top: 18px;
}
.news-feed .article-footer {
  border-bottom: 1px solid #efefef;
  margin-bottom: 30px;
}
.news-feed #main h1 {
  display: block !important;
  margin-top: 28px;
  margin-bottom: 0;
}
.news-feed #main h2 {
  margin-bottom: 0;
}
.news-feed #main h2 a {
  color: #000;
  text-decoration: none;
  margin-top: 18px;
}
.news-feed #main .byline {
  margin-top: 1px;
}

.cat-news h1, .news-feed h1 {
  color: #000;
  /*font-size: 33px;*/
  font-size: 28px;
  /*line-height: 18px;*/
  line-height: 36px;
  display: inline;
  /*        padding-left: 25px;
          padding-right: 25px;*/
}
.cat-news .h2 > a, .news-feed .h2 > a {
  color: red;
}
.cat-news h3 a, .news-feed h3 a {
  color: #000;
  font-size: 28px;
  line-height: 26px;
}
.cat-news h3 a:focus, .cat-news h3 a:hover, .cat-news h3 a:visited, .cat-news h3 a:visited:focus, .cat-news h3 a:visited:hover, .news-feed h3 a:focus, .news-feed h3 a:hover, .news-feed h3 a:visited, .news-feed h3 a:visited:focus, .news-feed h3 a:visited:hover {
  color: #000;
}
.cat-news p, .news-feed p {
  line-height: 18px;
}
.cat-news #main, .news-feed #main {
  float: left;
  width: 51%;
}
.cat-news .news-icons, .news-feed .news-icons {
  float: right;
}
.cat-news .news-icons a, .news-feed .news-icons a {
  color: #000;
}
.cat-news .news-icons a i, .news-feed .news-icons a i {
  color: #000;
  font-size: 18px;
  margin-left: 28px;
}
.cat-news .news-icons a i.fa-twitter, .news-feed .news-icons a i.fa-twitter {
  font-size: 20px;
}
.cat-news .news-icons a i.fa-print, .news-feed .news-icons a i.fa-print {
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .cat-news #sidenav, .news-feed #sidenav {
    display: none;
  }
  .cat-news #main, .news-feed #main {
    float: none;
    width: auto;
    padding: 25px;
  }
}
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
/*
NOTE: The following classes are added to each menu item in the Wordpress Menu page.
    Have Columns Headings
        .nav__our-school
        .nav__teaching-and-learning

    No Columns Headings
        .nav__pastoral-care
        .nav__enrolments
        .nav__foundation
*/
nav.ubermenu {
  font-family: "open sans", Helvetica, sans-serif;
  /*background-color: rgba(34,34,34,0.5);*/
  background-color: inherit;
}
nav.ubermenu h4 {
  font-family: "langdonregular", Impact;
  font-size: 17px;
  font-weight: 100;
}
nav.ubermenu .ubermenu-nav > li {
  /*border-bottom: 8px solid rgba(34, 34, 34, 0.7) !important;*/
  border-bottom: 8px solid transparent !important;
}
nav.ubermenu .ubermenu-nav > li:hover {
  border-bottom: 8px solid #ed1c24 !important;
}
nav.ubermenu .ubermenu-nav .ubermenu-column-1-3 {
  width: auto;
}
nav.ubermenu-responsive-toggle {
  background: #083a7a;
}
nav.ubermenu.ubermenu-main > ul > li > ul {
  padding-bottom: 20px;
}
nav.ubermenu .ubermenu-submenu {
  margin-top: 8px !important;
}

.ubermenu-submenu.ubermenu-submenu-type-auto.ubermenu-submenu-type-mega.ubermenu-submenu-drop.ubermenu-submenu-align-full_width {
  border: medium none;
}

/*.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:first-child {*/
.nav__our-school .ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:first-child, .nav__teaching-and-learning .ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:first-child {
  border-bottom: 1px solid #4e709e;
  height: 50px;
  margin-right: 100px;
  margin-top: -12px;
  margin-bottom: 7px;
  padding-bottom: 70px;
}

#sidenav .parent-selected {
  background-color: #ed1c24 !important;
}
#sidenav .current-selected {
  background-color: #1d2856 !important;
}

.ubermenu-main .ubermenu-submenu-type-stack {
  padding-top: inherit;
}

/* Top Level Items - Hover */
/*#megaMenu ul.megaMenu > li.menu-item:hover > a,
#megaMenu ul.megaMenu > li.menu-item > a:hover,
#megaMenu ul.megaMenu > li.menu-item.megaHover > a,
#megaMenu ul.megaMenu > li.menu-item:hover > span.um-anchoremulator,
#megaMenu ul.megaMenu > li.menu-item > span.um-anchoremulator:hover,
#megaMenu ul.megaMenu > li.menu-item.megaHover > span.um-anchoremulator {*/
/*#ubermenu-nav-main-2-main-nav ul.ubermenu-nav > li.ubermenu-item:hover > a,
#ubermenu-nav-main-2-main-nav ul.ubermenu-nav > li.ubermenu-item > a:hover,
#ubermenu-nav-main-2-main-nav ul.ubermenu-nav > li.ubermenu-item:hover > span.um-anchoremulator,
#ubermenu-nav-main-2-main-nav ul.ubermenu-nav > li.ubermenu-item > span.um-anchoremulator:hover {
  color: #ffffff;
  border-bottom-color: transparent !important;
  background-color: green;
}*/
.ubermenu, .ubermenu .ubermenu-column, .ubermenu .ubermenu-divider, .ubermenu .ubermenu-icon, .ubermenu .ubermenu-image, .ubermenu .ubermenu-item, .ubermenu .ubermenu-nav, .ubermenu .ubermenu-retractor, .ubermenu .ubermenu-row, .ubermenu .ubermenu-search, .ubermenu .ubermenu-search-input, .ubermenu .ubermenu-search-submit, .ubermenu .ubermenu-submenu, .ubermenu .ubermenu-submenu-footer, .ubermenu .ubermenu-tabs, .ubermenu .ubermenu-tabs-panels, .ubermenu .ubermenu-target, .ubermenu-responsive-toggle {
  background: none repeat scroll 0 0 transparent !important;
}

/*.ubermenu-submenu.ubermenu-submenu-id-134.ubermenu-submenu-type-auto.ubermenu-submenu-type-mega.ubermenu-submenu-drop.ubermenu-submenu-align-full_width {*/
.ubermenu-submenu.ubermenu-submenu-type-auto.ubermenu-submenu-type-mega.ubermenu-submenu-drop.ubermenu-submenu-align-full_width {
  background: none repeat scroll 0 0 #083a7a !important;
}

.ubermenu-nav > li > a.ubermenu-target {
  padding-bottom: 28px;
  padding-top: 28px;
}

.ubermenu-content-block.ubermenu-custom-content.ubermenu-custom-content-padded {
  padding-left: 0;
}

.ubermenu-item.ubermenu-item-type-custom {
  margin-left: 40px;
  margin-right: 50px;
}

.ubermenu-item.ubermenu-item-type-custom.ubermenu-item-object-ubermenu-custom
.ubermenu-item.ubermenu-item-type-custom.ubermenu-item-object-ubermenu-custom {
  margin-left: 0px;
}

/*.ubermenu-item.ubermenu-item-type-custom.ubermenu-item-object-ubermenu-custom.ubermenu-item-173.ubermenu-item-auto.ubermenu-item-normal.ubermenu-item-level-2.ubermenu-column.ubermenu-column-auto {*/
/*.ubermenu-item.ubermenu-item-type-custom.ubermenu-item-object-ubermenu-custom {
  margin-left: 0;
}*/
/*.ubermenu-item.ubermenu-item-type-custom.ubermenu-item-object-ubermenu-custom.ubermenu-item-has-children.ubermenu-item-172.ubermenu-item-level-1.ubermenu-column.ubermenu-column-auto.ubermenu-has-submenu-stack.ubermenu-item-type-column.ubermenu-column-id-172 {
  margin-left: 20px;
  margin-right: 30px;
}*/
/*nav.ubermenu.ubermenu-main > ul > li:nth-child(2) > ul {*/
/*nav.ubermenu.ubermenu-main > ul > li > ul {
    padding-bottom: 20px;
}*/
/*.ubermenu-skin-grey-white.ubermenu-responsive-toggle {*/
/*.ubermenu-responsive-toggle {
    background: $color-blue;
}*/
@media screen and (min-width: 768px) {
  .nav__pastoral-care .ubermenu-submenu-type-mega, .nav__enrolments .ubermenu-submenu-type-mega, .nav__foundation .ubermenu-submenu-type-mega {
    min-width: auto;
  }
  .nav__pastoral-care ul, .nav__enrolments ul, .nav__foundation ul {
    width: auto !important;
    /*        left: 370px !important;*/
  }

  .nav__pastoral-care ul {
    left: 370px !important;
  }

  .nav__enrolments ul {
    left: 510px !important;
  }

  .nav__foundation ul {
    left: 540px !important;
  }

  nav.ubermenu ul.ubermenu-nav li.ubermenu-item ul.ubermenu-submenu li.ubermenu-item {
    min-width: 250px !important;
  }
}
@media screen and (min-width: 1308px) {
  .ubermenu-target.ubermenu-item-layout-default.ubermenu-item-layout-text_only {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
.nav ul {
  background: inherit;
  margin-top: 0;
}

.footer {
  color: #fff;
}
.footer.section {
  background: #303030;
  margin-bottom: 0;
  /*        bottom: 0;
          position: absolute;
          width: 100%;*/
}
.footer h3 {
  font-size: 24px;
  line-height: 19.61px;
  white-space: nowrap;
  color:#fff;
}
.footer .footer__column {
  width: 50%;
  text-align: center;
  float: left;
}
.footer .nav li a:hover {
  text-decoration: underline;
}
.footer .nav__contact-us li {
  display: block;
  float: none;
}
.footer .nav__about-us-links-right span {
  margin-right: 5px;
}
.footer .nav__about-us-links-right img {
  padding-top: 3px;
}
.footer .nav__about-us-links-left li:after {
  content: "|";
}
.footer .nav__about-us-links li:last-child:after {
  content: "";
}
.footer .nav__about-us-links a {
  padding: 0 10px !important;
}
.footer .copyright-top {
  display: block;
}
.footer .copyright-bottom {
  display: none;
}

@media only screen and (min-width: 1030px) {
  .wrap {
    width: auto;
  }
}
/*@media screen and (max-width: $width-phone-max) {*/
/*@media screen and (max-width: 767px) {*/
@media screen and (max-width: 795px) {
  .footer .nav__about-us-links a {
    padding: 0 !important;
  }
  .footer .copyright-top {
    display: none;
  }
  .footer .copyright-bottom {
    display: block;
  }
  .footer .nav__about-us-links-right span {
    display: block;
    float: left;
  }
}
/*@media screen and (max-width: 799px) {*/
@media screen and (max-width: 1279px) {
  .footer {
    padding: 25px;
  }
  .footer li {
    margin-bottom: 10px;
  }
  .footer .nav__about-us-links-left li:after {
    content: "";
  }
}
@media screen and (min-width: 768px) {
  .footer .nav li {
    float: none;
  }
  .footer .nav li a {
    padding-left: 0;
  }
  .footer .nav__quick-links {
    float: left;
    width: 52%;
  }
  .footer .nav__for-parents {
    float: right;
    width: 15.25%;
  }
  .footer .nav__contact-us {
    float: right;
    /*                width: 15.25%;*/
  }
  .footer .nav__about-us-links {
    clear: both;
  }
  .footer .nav__about-us-links span {
    float: left;
  }
  .footer .nav__about-us-links .new_menu_class {
    float: left;
  }
  .footer .nav__about-us-links .new_menu_class ul {
    margin: 0 !important;
  }
  .footer .nav__about-us-links .new_menu_class ul li a {
    padding-bottom: 0;
    padding-top: 0;
  }
  .footer .nav__about-us-links li {
    display: inline;
    float: left !important;
  }
  .footer .nav__about-us-links-left {
    float: left;
    margin: 60px 0 40px;
  }
  .footer .nav__about-us-links-right {
    float: right;
    margin: 60px 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .footer .nav li {
    /*float: none;*/
  }
  .footer .nav li a {
    /*padding-left: 0;*/
  }
  .footer .nav__quick-links {
    float: none;
    width: 100%;
  }
  .footer .nav__for-parents {
    float: none;
    /*float: left;*/
    /*                float: right;
    width: 15.25%;*/
  }
  .footer .nav__contact-us {
    float: none;
    /*float: right;*/
    /*                float: right;
    width: 15.25%;*/
  }
  .footer .nav__about-us-links {
    /*clear: both;*/
  }
  .footer .nav__about-us-links span {
    /*float: left;*/
  }
  .footer .nav__about-us-links .new_menu_class {
    /*float: left;*/
  }
  .footer .nav__about-us-links .new_menu_class ul {
    /*margin: 0 !important;*/
  }
  .footer .nav__about-us-links .new_menu_class ul li a {
    /*padding-bottom: 0;*/
    /*padding-top: 0;*/
  }
}
/*$color-nav-background: rgba(34, 34, 34, 0.7);*/
/*NOTE: None of the CSS Hacks reliablY target all recent versions of Safari.
Use browser detection using the pgwBrowser jQuery plugin.
*/
.safari-equal-height-column {
  margin-top: -5px;
}

@media print {
  #sidenav, .footer, .parent-portal, .search, #wp-auth-check-wrap, .wp-core-ui, #wp-link-backdrop, #wp-link-wrap, #post-lock-dialog, #wpadminbar {
    display: none;
  }

  #sidebar1 p > a {
    display: none;
  }

  #main {
    width: 70% !important;
  }

  .header__inner {
    width: 400px;
  }

  .section.banner {
    background: none repeat scroll 0 0 transparent !important;
    margin-bottom: 0;
  }

  .banner {
    height: 260px;
  }
}