@charset "UTF-8";
/*! Inventis styleguide v2.0.0 */
/*
 *   This one needs some explanation:
 *
 *   It might look weird at first but it's actually pretty logical: to get a number without its unit, you need to divide
 *   it by 1 of the same unit. To get 42 from 42em, you need to divide 42em by 1em.
 *
 *   So we divide our number by the same number multiplied by 0 to which we then add 1.
 *   With our example, here is what happen: 42em / 42em * 0 + 1, so 42em / 0em + 1 so, 42em / 1em so 42.
 */
/* Equal columns helper mixin for lists
 * If total columns is not the default total-colums we add a suffix so we can create a subgrid
 * Examples:
 *  - cols-large-2      => 2 columns of the default grid (12-grid)
 *  - cols-large-2-8    => 2 columns of a 8-grid
*/
/* ==========================================================================
   Variables
   ========================================================================== */
/* Browser support */
/* Layout */
/* Breakpoints - Change according to the design */
/* Grid default */
/* Colors */
/* Typography */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 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; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * 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/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

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

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

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

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

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

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

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * 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; }

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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; }

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 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 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*# sourceMappingURL=normalize.scss.map */
address {
  font-style: normal; }

small {
  font-size: 100%; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; }
  .ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%; }
  .ie7 .ir {
    text-indent: -9999px; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/* MEDIUM & LARGE SCREEN - Hide element */
@media screen and (min-width: 688px) and (max-width: 980px) {
  .small-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .small-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (max-width: 380px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (max-width: 380px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
/* SMALL SCREEN -  */
@media only screen and (max-width: 380px) {
  .mini__hidden {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .small__hidden {
    display: none !important;
    visibility: hidden; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .medium__hidden {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .large__hidden {
    display: none !important;
    visibility: hidden; } }
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 * Allow the element to be focusable when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix, .form__entry, .item-holder, .item--introduction, .jumbotron, .jumbotron--banner, .link-overview, .masthead__wrapper, .masthead, .nav-main, .pagination, .pagination__holder, .quote, .quote__title {
  /*
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */ }
  .clearfix:before, .form__entry:before, .item-holder:before, .item--introduction:before, .jumbotron:before, .jumbotron--banner:before, .link-overview:before, .masthead__wrapper:before, .masthead:before, .nav-main:before, .pagination:before, .pagination__holder:before, .quote:before, .quote__title:before, .clearfix:after, .form__entry:after, .item-holder:after, .item--introduction:after, .jumbotron:after, .jumbotron--banner:after, .link-overview:after, .masthead__wrapper:after, .masthead:after, .nav-main:after, .pagination:after, .pagination__holder:after, .quote:after, .quote__title:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */ }
  .clearfix:after, .form__entry:after, .item-holder:after, .item--introduction:after, .jumbotron:after, .jumbotron--banner:after, .link-overview:after, .masthead__wrapper:after, .masthead:after, .nav-main:after, .pagination:after, .pagination__holder:after, .quote:after, .quote__title:after {
    clear: both; }
  .ie7 .clearfix, .ie7 .form__entry, .ie7 .item-holder, .ie7 .item--introduction, .ie7 .jumbotron, .ie7 .jumbotron--banner, .ie7 .link-overview, .ie7 .masthead__wrapper, .ie7 .masthead, .ie7 .nav-main, .ie7 .pagination, .ie7 .pagination__holder, .ie7 .quote, .ie7 .quote__title {
    zoom: 1; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .clearfix .left, .form__entry .left, .item-holder .left, .item--introduction .left, .jumbotron .left, .jumbotron--banner .left, .link-overview .left, .masthead__wrapper .left, .masthead .left, .nav-main .left, .pagination .left, .pagination__holder .left, .quote .left, .quote__title .left {
      float: left; }
    .clearfix .right, .form__entry .right, .item-holder .right, .item--introduction .right, .jumbotron .right, .jumbotron--banner .right, .link-overview .right, .masthead__wrapper .right, .masthead .right, .nav-main .right, .pagination .right, .pagination__holder .right, .quote .right, .quote__title .right {
      float: right; } }
  @media only screen and (min-width: 981px) {
    .clearfix .left, .form__entry .left, .item-holder .left, .item--introduction .left, .jumbotron .left, .jumbotron--banner .left, .link-overview .left, .masthead__wrapper .left, .masthead .left, .nav-main .left, .pagination .left, .pagination__holder .left, .quote .left, .quote__title .left {
      float: left; }
    .clearfix .right, .form__entry .right, .item-holder .right, .item--introduction .right, .jumbotron .right, .jumbotron--banner .right, .link-overview .right, .masthead__wrapper .right, .masthead .right, .nav-main .right, .pagination .right, .pagination__holder .right, .quote .right, .quote__title .right {
      float: right; } }

.clear {
  clear: both; }

/* SMALL SCREEN - Change order of elements */
@media only screen and (max-width: 380px) {
  .small-ordering {
    display: table;
    width: 100%; }
    .small-ordering .small-first,
    .small-ordering .small-second,
    .small-ordering .small-third {
      float: none !important; }
    .small-ordering .small-first {
      display: table-header-group !important; }
    .small-ordering .second {
      display: table-row-group !important; }
    .small-ordering .third {
      display: table-footer-group !important; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .small-ordering {
    display: table;
    width: 100%; }
    .small-ordering .small-first,
    .small-ordering .small-second,
    .small-ordering .small-third {
      float: none !important; }
    .small-ordering .small-first {
      display: table-header-group !important; }
    .small-ordering .second {
      display: table-row-group !important; }
    .small-ordering .third {
      display: table-footer-group !important; } }
.clear-list-style {
  list-style: none;
  margin: 0;
  padding: 0; }
  .clear-list-style li {
    display: inline-block;
    margin: 0; }

.better-font-rendering {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

@font-face {
  font-family: 'ralus';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SA2QAAAC8AAAAYGNtYXAaVsyWAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zjj6fCUAAAF4AAAH2GhlYWQJkziTAAAJUAAAADZoaGVhCp4GsQAACYgAAAAkaG10eErbAJ0AAAmsAAAAUGxvY2ER/A/uAAAJ/AAAACptYXhwABoARgAACigAAAAgbmFtZeWshZsAAApIAAABbnBvc3QAAwAAAAALuAAAACAAAwQrAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmDwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg5g///f//AAAAAAAg5gD//f//AAH/4xoEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAD/wAUOA8AABgAACQIHCQEnBEb9kP7yyAHWAzjIA8D9kQEOyf4qAzjIAAIAlgBWA2oDKgAUACEAABMOARQWFx4BMjY3PgE0JicuASIGBwUHFwcnByc3JzcXNxeWS0tLS0u9xL1LS0tLS0u9xL1LAoqcnHmcnXmdnXmdnHkDKku9xL1LS0tLS0u9xL1LS0tLS82dnXmdnXmdnXmdnXkAAwAA/8AG3APAABQAKQBBAAAFIi4CJz4DMzIeAhcOAyMBHgMzMj4CNy4DIyIOAgcFJw4BFRQeAjMyPgI1NC4CIyIGBxcDcIL64sVNVtHl73V18eTPU0e/4f6H/Uo/nLHDZ4zmsHceQJqxxGiI4rB8IAK++RYZLlFsPT1sUS4uUWw9KU0hl0BUksZxebV5PDx4tHl3x5BRAhtPjWs/W32EKEp9WTJOa3MkG6AiUiw+bFAvL1BsPj1sUC8WE/8AAAAABQAA/8ADQgPAAAQACQAOABUAGwAAJSM1MxU3ITUhFTUhNSEVAxUzESERITchESERJwGh0tLP/l8Bof5fAaFn1f2FAaY+/bkDQvukSkqKSkqJS0sBptb9nAM6Y/wAAwb6AAAAAAQAAP/ABAADwAAUACoALwA8AAABMh4CFRQOAiMiLgI1ND4CMzUiDgIVFB4CMzI+AjU0LgIjMRMjETMRAyImNTQ2MzIWFRQGIwIAVZdwQEBwl1VWlnBBQXCWVmq7i1BQi7tqarqLUVGLumpKj49IIC4uICEuLiEDXUFwllZVl3BBQXCXVVaWcEFjUIu7amq6i1FRi7pqaruLUPzrAVT+rAGaLyAhLi4hIC8AAAABAAD/wAQjA8AADwAAASc5AQ8BNSMVBzMRIREzAQIUAwLOadiXAvWX/fEDvQMDwzufzf33AgkB9AAAAAADAAD/wAP4A8AAGAAtADoAACUBPgE1NC4CIyIOAhUUHgIzMjY3ATcBND4CMzIeAhUUDgIjIi4CNQUjFSM1IzUzNTMVMxUD+P7xHiFAbZNUVJNtQEBtk1Q5aC0BEYX8dy5Qaj08a1AuLlBrPD1qUC4Bz3dcdnZcd0UBDy9uO1STbUBAbZNUVJNtQB4b/u+FAec9alAuLlBqPTxrUC4uUGs8MHd3XHZ2XAADAAD/wAP4A8AAGAAtADoAACUBPgE1NC4CIyIOAhUUHgIzMjY3ATcBND4CMzIeAhUUDgIjIi4CNQUjFSM1IzUzNTMVMxUD+P7xHiFAbZNUVJNtQEBtk1Q5aC0BEYX8dy5Qaj08a1AuLlBrPD1qUC4Bz3dcdnZcd0UBDy9uO1STbUBAbZNUVJNtQB4b/u+FAec9alAuLlBqPTxrUC4uUGs8MHd3XHZ2XAAFAAD/wAVoA8AABAAIAAwAEgAWAAATESERIQUJASENAQEREwEXNwEhJQElEQAFaPqYBMv96f3pBC77qgEf/uECAXvCwAF7+4gEfP7fASEDwPwABAB1/mYBmnbc/uEB+/1gAXyUk/6FowEg3f4DAAAABQAA/8AEAAPAABQAGAAcACIAJgAAASIOAhUUHgIzMj4CNTQuAiMBBSUhBRcHERM3FzcXISUnNxECAGq7i1BQi7tqaruLUFCLu2oBNP7P/s4CY/2btLQB3VVW3f2bAma0tAPAUIu7amq7i1BQi7tqaruLUP7k6+tBirMBPf553UJC3Um0iv7CAAIAAP/AAokDwAAUACEAAAEiDgIVFB4CFz4DNTQuAiMRIiY1NDYzMhYVFAYjAURDdlgzMld3REV2WDIzWHZEMEREMDFERDEDwDNYdkNEk6rGdXXGqpNEQ3ZYM/5PRDEwREQwMUQAAAAAAQAA/8AEgwPAAAkAAAU3ASE1IQEnCQEB/on+8AMM/PQBEIn+AgH+QIgBEswBEoj+AP4AAAEAAP/ABIMDwAAJAAABBwEhFSEBFwkBAoaJARD88wMN/vCJAf3+AwPAiP7uzP7uiAIAAgAAAAAABAAH/8AEpAPAABUAIgAyAEMAACUBLgEjIgYHAQ4BFx4BMyEyNjc2JicHISImNwE2MhcBFgYjJTI2NRM0JisBIgYXEx4BMxcjIgYdARQWOwEyNj0BNCYjBKH93gkZDw8ZCf3sCAEHBxsRBDcRGwcHAQld/CIIBQQB6AQLBAH1BAUI/hYQGA8XEicRFwEXARgQDycRGRkRJxEZGREUA44OEBAO/HIPHgwNDg4NDB4PDQkGA0MHBvy8BwjUGBIBVBIYGBH+qxEZKhgRJhIYGBImERgAAAACAAD/wAP6A8AACgAUAAABESERIQchESERNwEHFwEXARczAyUDu/xFAjV0/rMC03T+ogHd/sRTATsBbgH+ZAH2/coDu3T9LQFOdAHKbgH+xVMBO9wBnQEAAgAA/9gD6APAACMAOAAAJScuAQc+ATU0LgIjIg4CFRQeAjMyNjcGFh8BHgE3NiYnJSIuAjU0PgIzMh4CFRQOAiMD4PITJxArMTxpi1BQi2k8PGmLUEeAMgEQEc4bSxsaBB79oDVdRigoRl01NV1GKChGXTVZzhEQATKAR1CLaTw8aYtQUItpPDErECcT8h4EGhtLG+coRl01NV1GKChGXTU1XUYoAAAAAQAAAAEAAMvLn29fDzz1AAsEAAAAAADRy/oLAAAAANHL+gsAAP/ABtwDwAAAAAgAAgAAAAAAAAABAAADwP/AAAAG3AAAAAAG3AABAAAAAAAAAAAAAAAAAAAAFAQAAAAAAAAAAAAAAAIAAAAFDgAABAAAlgbcAAADQgAABAAAAAQjAAAD+AAAA/gAAAVoAAAEAAAAAokAAASDAAAEgwAABKsABwP6AAAEAAAAAAAAAAAKABQAHgA0AG4AzgEAAVYBdAHIAhwCVAKYAswC5gMCA2wDmAPsAAAAAQAAABQARAAFAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAUAAAABAAAAAAACAAcATgABAAAAAAADAAUAMAABAAAAAAAEAAUAYwABAAAAAAAFAAsADwABAAAAAAAGAAUAPwABAAAAAAAKABoAcgADAAEECQABAAoABQADAAEECQACAA4AVQADAAEECQADAAoANQADAAEECQAEAAoAaAADAAEECQAFABYAGgADAAEECQAGAAoARAADAAEECQAKADQAjHJhbHVzAHIAYQBsAHUAc1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMHJhbHVzAHIAYQBsAHUAc3JhbHVzAHIAYQBsAHUAc1JlZ3VsYXIAUgBlAGcAdQBsAGEAcnJhbHVzAHIAYQBsAHUAc0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("truetype");
  font-weight: normal;
  font-style: normal; }
[data-content] {
  content: attr(data-content);
  speak: none; }

.icon, a[rel=external]:after, a[rel=external] .after, .alert-message__close:before, .alert-message__close .before, .checked-list li:before, .checked-list li .before, .checklist li:before, .checklist li .before, .download-list li:before, .download-list li .before, .img-hover:after, .img-hover--alt:after, .img--alt:after, .img:after, .img-hover .after, .img-hover--alt .after, .img--alt .after, .img .after, .img-hover--alt:before, .img--alt:before, .img-hover--alt .before, .img--alt .before, .link--longe:after, .link--longe .after, .tick:before,
.icon-content:before,
.icon-content.before,
.icon-content:after,
.icon-content.after {
  position: relative;
  font-family: "ralus", "Hind", Arial, sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon--search:before,
.icon-content--search {
  content: ""; }

.icon--check:before,
.icon-content--check {
  content: ""; }

.icon--eye:before,
.icon-content--eye {
  content: ""; }

.icon--file:before, .download-list li:before, .download-list li .before:before,
.icon-content--file {
  content: ""; }

.icon--house:before,
.icon-content--house {
  content: ""; }

.icon--icon:before,
.icon-content--icon {
  content: ""; }

.icon--magnifier:before,
.icon-content--magnifier {
  content: ""; }

.icon--mail-2:before,
.icon-content--mail-2 {
  content: ""; }

.icon--mail:before,
.icon-content--mail {
  content: ""; }

.icon--pin:before,
.icon-content--pin {
  content: ""; }

.icon--cross:before,
.icon-content--cross {
  content: ""; }

.icon--info:before,
.icon-content--info {
  content: ""; }

.icon--warning:before,
.icon-content--warning {
  content: ""; }

.icon--arrow-left:before,
.icon-content--arrow-left {
  content: ""; }

.icon--arrow-right:before,
.icon-content--arrow-right {
  content: ""; }

.icon--external:before,
.icon-content--external,
a[rel=external]:after,
a[rel=external] .after {
  content: ""; }

/* TYPOGRAPHY */
/* All typography components */
/* Horizontal rule */
hr {
  display: block;
  height: 1px;
  padding: 0;
  border: 0;
  border-top: 1px solid #636466; }
  @media only screen and (min-width: 981px) {
    hr {
      margin: 0 0 32px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    hr {
      margin: 0 0 32px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    hr {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    hr {
      margin: 0 0 18px 0; } }

/* Variables */
/* List */
ul, ol {
  overflow: hidden;
  padding-left: 32px; }
  @media only screen and (min-width: 981px) {
    ul, ol {
      margin: 0 0 32px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    ul, ol {
      margin: 0 0 32px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    ul, ol {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    ul, ol {
      margin: 0 0 18px 0; } }
  ul li, ol li {
    display: list-item;
    margin-bottom: 0px; }

ol {
  padding-left: 32px; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

/* Paragraph */
p {
  font-size: 16px;
  line-height: 26px;
  max-width: 674px;
  color: #636466; }
  @media only screen and (min-width: 981px) {
    p {
      margin: 0 0 32px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    p {
      margin: 0 0 32px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    p {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    p {
      margin: 0 0 18px 0; } }
  @media only screen and (max-width: 380px) {
    p {
      font-size: 14px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    p {
      font-size: 14px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    p {
      font-size: 15px;
      line-height: 24px; } }

/* Variables */
/* Tables */
.table {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0;
  line-height: 0; }
  @media only screen and (min-width: 981px) {
    .table {
      margin: 0 0 32px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .table {
      margin: 0 0 32px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .table {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    .table {
      margin: 0 0 18px 0; } }
  .table tr:nth-child(even) {
    background-color: #f9f9f9; }
  .table tr:nth-child(odd) {
    background-color: #ffffff; }
  .table th, .table td {
    font-size: 16px;
    line-height: 26px;
    color: #636466;
    padding: 0.5rem;
    border: 1px solid transparent; }
    @media only screen and (max-width: 380px) {
      .table th, .table td {
        font-size: 14px;
        line-height: 20px; } }
    @media only screen and (min-width: 381px) and (max-width: 687px) {
      .table th, .table td {
        font-size: 14px;
        line-height: 20px; } }
    @media screen and (min-width: 688px) and (max-width: 980px) {
      .table th, .table td {
        font-size: 15px;
        line-height: 24px; } }
  .table th {
    color: #636466;
    background: #e9e9e9;
    vertical-align: middle;
    text-align: center; }
  .table tbody th, .table tbody td {
    vertical-align: top;
    text-align: left; }
  .table ul, .table ol {
    padding-left: 1rem; }
  @media only screen and (max-width: 380px) {
    .table {
      display: block;
      position: relative;
      border-collapse: collapse;
      border-spacing: 0; }
      .table th, .table td {
        margin: 0;
        vertical-align: top; }
        .table th:last-child, .table td:last-child {
          border-bottom: 1px solid transparent; }
      .table th {
        text-align: left;
        display: block;
        border-right: 0; }
      .table thead {
        display: block;
        float: left; }
        .table thead tr {
          display: block;
          margin: 0;
          padding: 0; }
      .table tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap; }
        .table tbody tr {
          display: inline-block;
          vertical-align: top;
          border-left: 1px solid transparent; }
      .table td {
        display: block;
        min-height: 1.25em;
        text-align: left; }
      .table th {
        border-bottom: 0;
        border-left: 0; }
      .table td {
        border-left: 0;
        border-right: 0;
        border-bottom: 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .table {
      display: block;
      position: relative;
      border-collapse: collapse;
      border-spacing: 0; }
      .table th, .table td {
        margin: 0;
        vertical-align: top; }
        .table th:last-child, .table td:last-child {
          border-bottom: 1px solid transparent; }
      .table th {
        text-align: left;
        display: block;
        border-right: 0; }
      .table thead {
        display: block;
        float: left; }
        .table thead tr {
          display: block;
          margin: 0;
          padding: 0; }
      .table tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap; }
        .table tbody tr {
          display: inline-block;
          vertical-align: top;
          border-left: 1px solid transparent; }
      .table td {
        display: block;
        min-height: 1.25em;
        text-align: left; }
      .table th {
        border-bottom: 0;
        border-left: 0; }
      .table td {
        border-left: 0;
        border-right: 0;
        border-bottom: 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .table {
      display: block;
      position: relative;
      border-collapse: collapse;
      border-spacing: 0; }
      .table th, .table td {
        margin: 0;
        vertical-align: top; }
        .table th:last-child, .table td:last-child {
          border-bottom: 1px solid transparent; }
      .table th {
        text-align: left;
        display: block;
        border-right: 0; }
      .table thead {
        display: block;
        float: left; }
        .table thead tr {
          display: block;
          margin: 0;
          padding: 0; }
      .table tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap; }
        .table tbody tr {
          display: inline-block;
          vertical-align: top;
          border-left: 1px solid transparent; }
      .table td {
        display: block;
        min-height: 1.25em;
        text-align: left; }
      .table th {
        border-bottom: 0;
        border-left: 0; }
      .table td {
        border-left: 0;
        border-right: 0;
        border-bottom: 0; } }

.table__td--padded-right {
  padding-right: 20px; }

.table--address {
  font-size: 19px; }

/* Variables */
/* Titles */
.title-1, h1,
.title-1--alt,
.title-2,
h2,
.title-2--alt,
.title-3,
h3,
.title-3--alt,
.title-4,
h4,
.title-4--alt,
.title-5,
h5,
.title-5--alt,
.title-6,
h6,
.form__legend,
.title-6--alt {
  display: block;
  font-family: "Hind", "Hind", Arial, sans-serif;
  text-transform: none; }
  @media only screen and (min-width: 981px) {
    .title-1, h1,
    .title-1--alt,
    .title-2,
    h2,
    .title-2--alt,
    .title-3,
    h3,
    .title-3--alt,
    .title-4,
    h4,
    .title-4--alt,
    .title-5,
    h5,
    .title-5--alt,
    .title-6,
    h6,
    .form__legend,
    .title-6--alt {
      margin: 0 0 32px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-1, h1,
    .title-1--alt,
    .title-2,
    h2,
    .title-2--alt,
    .title-3,
    h3,
    .title-3--alt,
    .title-4,
    h4,
    .title-4--alt,
    .title-5,
    h5,
    .title-5--alt,
    .title-6,
    h6,
    .form__legend,
    .title-6--alt {
      margin: 0 0 32px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-1, h1,
    .title-1--alt,
    .title-2,
    h2,
    .title-2--alt,
    .title-3,
    h3,
    .title-3--alt,
    .title-4,
    h4,
    .title-4--alt,
    .title-5,
    h5,
    .title-5--alt,
    .title-6,
    h6,
    .form__legend,
    .title-6--alt {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    .title-1, h1,
    .title-1--alt,
    .title-2,
    h2,
    .title-2--alt,
    .title-3,
    h3,
    .title-3--alt,
    .title-4,
    h4,
    .title-4--alt,
    .title-5,
    h5,
    .title-5--alt,
    .title-6,
    h6,
    .form__legend,
    .title-6--alt {
      margin: 0 0 18px 0; } }

.title-1, h1 {
  font-size: 28px;
  line-height: 35px;
  color: #0e447b;
  font-weight: 600;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-1, h1 {
      font-size: 28px;
      line-height: 32px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-1, h1 {
      font-size: 28px;
      line-height: 32px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-1, h1 {
      font-size: 32px;
      line-height: 35px; } }

.title-1--alt {
  font-size: 28px;
  line-height: 1;
  color: #0e447b;
  font-weight: 600;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-1--alt {
      font-size: 24px;
      line-height: 1; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-1--alt {
      font-size: 24px;
      line-height: 1; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-1--alt {
      font-size: 26px;
      line-height: 1; } }
  .title-1--alt a, .title-1--alt a:hover {
    color: #0e447b;
    font-weight: 600; }

.title-2, h2 {
  font-size: 23px;
  line-height: 32px;
  color: #0e447b;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 25px; }
  @media only screen and (max-width: 380px) {
    .title-2, h2 {
      font-size: 24px;
      line-height: 30px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-2, h2 {
      font-size: 24px;
      line-height: 30px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-2, h2 {
      font-size: 26px;
      line-height: 32px; } }

.title-2--alt {
  font-size: 23px;
  line-height: 30px;
  color: #0e447b;
  font-weight: 600;
  text-transform: uppercase; }
  @media only screen and (max-width: 380px) {
    .title-2--alt {
      font-size: 24px;
      line-height: 30px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-2--alt {
      font-size: 24px;
      line-height: 30px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-2--alt {
      font-size: 24px;
      line-height: 30px; } }

.title-3, h3 {
  font-size: 22px;
  line-height: 24px;
  color: #0e447b;
  font-weight: 600;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-3, h3 {
      font-size: 17px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-3, h3 {
      font-size: 17px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-3, h3 {
      font-size: 17px;
      line-height: 20px; } }
  .title-3--news-margin {
    margin-top: 2.125rem; }

.title-3--alt {
  font-size: 22px;
  line-height: 35px;
  color: #a7c64c;
  font-weight: 600;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-3--alt {
      font-size: 20px;
      line-height: 25px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-3--alt {
      font-size: 20px;
      line-height: 25px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-3--alt {
      font-size: 22px;
      line-height: 30px; } }

.title-4, h4 {
  font-size: 18px;
  line-height: 24px;
  color: #0e447b;
  font-weight: 600;
  text-transform: uppercase; }
  @media only screen and (max-width: 380px) {
    .title-4, h4 {
      font-size: 20px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-4, h4 {
      font-size: 20px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-4, h4 {
      font-size: 20px;
      line-height: 24px; } }

.title-4--alt {
  font-size: 18px;
  line-height: 24px;
  color: #0e447b;
  font-weight: 600;
  text-transform: uppercase; }
  @media only screen and (max-width: 380px) {
    .title-4--alt {
      font-size: 20px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-4--alt {
      font-size: 20px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-4--alt {
      font-size: 20px;
      line-height: 24px; } }

.title-5, h5 {
  font-size: 18px;
  line-height: 24px;
  color: #0e447b;
  font-weight: 500;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-5, h5 {
      font-size: 16px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-5, h5 {
      font-size: 16px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-5, h5 {
      font-size: 16px;
      line-height: 24px; } }

.title-5--alt {
  font-size: 18px;
  line-height: 24px;
  color: #0e447b;
  font-weight: 500;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-5--alt {
      font-size: 16px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-5--alt {
      font-size: 16px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-5--alt {
      font-size: 16px;
      line-height: 24px; } }

.title-6, h6, .form__legend {
  font-size: 18px;
  line-height: 24px;
  color: #636466;
  font-weight: 500;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-6, h6, .form__legend {
      font-size: 16px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-6, h6, .form__legend {
      font-size: 16px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-6, h6, .form__legend {
      font-size: 16px;
      line-height: 24px; } }

.title-6--alt {
  font-size: 18px;
  line-height: 24px;
  color: #636466;
  font-weight: 500;
  text-transform: none; }
  @media only screen and (max-width: 380px) {
    .title-6--alt {
      font-size: 16px;
      line-height: 24px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .title-6--alt {
      font-size: 16px;
      line-height: 24px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .title-6--alt {
      font-size: 16px;
      line-height: 24px; } }

.title--nm {
  margin-bottom: 0; }

.title--ib {
  display: inline-block; }

/* Variables */
/* Style */
a {
  color: #0e447b;
  text-decoration: underline;
  font-family: "Hind", Arial, sans-serif; }
  a:hover, a:focus {
    color: #0e447b;
    text-decoration: none; }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    a.left {
      float: left;
      margin-right: 1rem; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    a.left {
      float: left;
      margin-right: 1rem; } }
  @media only screen and (min-width: 981px) {
    a.left {
      float: left;
      margin-right: 1rem; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    a.right {
      float: right;
      margin-left: 1rem; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    a.right {
      float: right;
      margin-left: 1rem; } }
  @media only screen and (min-width: 981px) {
    a.right {
      float: right;
      margin-left: 1rem; } }

a[rel=external] {
  position: relative;
  padding-right: 25px; }
  a[rel=external]:after, a[rel=external] .after {
    position: absolute;
    margin-top: 5px;
    display: inline-block;
    margin-left: 5px;
    color: #0e447b;
    font-size: 12px; }
  @media print {
    a[rel=external] {
      display: none; } }

/*
a[href^=tel] {
    // MEDIUM & LARGE SCREEN - hide phone link
    @include screen-size(medium, large) {
        text-decoration: none;
        color: $default-font-color;
    }
}
*/
/* Paragraph */
small {
  font-size: 14px;
  line-height: 20px;
  max-width: 674px;
  color: #636466;
  display: inline-block; }
  @media only screen and (min-width: 981px) {
    small {
      margin: 0 0 30px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    small {
      margin: 0 0 30px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    small {
      margin: 0 0 18px 0; } }
  @media only screen and (max-width: 380px) {
    small {
      margin: 0 0 18px 0; } }
  @media only screen and (max-width: 380px) {
    small {
      font-size: 14px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    small {
      font-size: 14px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    small {
      font-size: 14px;
      line-height: 20px; } }

img {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  max-width: 100%;
  height: auto; }

/* ==========================================================================
   Global layout: header & footer
   ========================================================================== */
* {
  box-sizing: border-box; }

html, body {
  min-width: 320px;
  width: 100%;
  font-family: "Hind", Arial, sans-serif; }

html {
  font-size: 16px;
  line-height: 26px;
  color: #636466; }
  @media only screen and (max-width: 380px) {
    html {
      font-size: 14px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    html {
      font-size: 14px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    html {
      font-size: 15px;
      line-height: 24px; } }

body {
  position: relative;
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-wrap: break-word; }

[data-component-config] {
  display: none; }

.helpers--is-loading {
  position: relative;
  z-index: 0; }
  .helpers--is-loading:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.8) 75%);
    background-size: 100px 100px;
    z-index: 1;
    -webkit-animation: move .5s infinite linear;
    -moz-animation: move .5s infinite linear;
    -ms-animation: move .5s infinite linear; }

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }
@-ms-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg); } }
@-webkit-keyframes move {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 49px 49px; } }
@-ms-keyframes move {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 49px 49px; } }
@keyframes move {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 49px 49px; } }
/* Text helpers */
.text--underline {
  text-decoration: underline; }

.text--uppercase {
  text-transform: uppercase; }

.text--line-through {
  text-decoration: line-through; }

.text--centered {
  text-align: center; }

.text--left {
  text-align: left; }

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

.text--font-secondary {
  font-family: "Hind", "Hind", Arial, sans-serif; }

.text--primary {
  color: #0e447b; }

.text--secondary {
  color: #636466; }

.text--tertiary {
  color: #4a9ad0; }

.text--white {
  color: #ffffff; }

.text--black {
  color: #212121; }

.text--light-gray {
  color: #f8f8f8; }

.text--gray {
  color: #636466; }

.text--gray-2 {
  color: #ecebeb; }

.text--gray-4 {
  color: #6b6b6b; }

.text--gray-5 {
  color: #4f5151; }

.text--gray-6 {
  color: #c5bfb7; }

.text--red {
  color: #b72525; }

.text--hotred {
  color: #f24a00; }

.text--green {
  color: #a7c64c; }

.text--green-2 {
  color: #8ca242; }

.text--green-3 {
  color: #dce8b7; }

.text--blue {
  color: #0e447b; }

.text--blue-2 {
  color: #0b3764; }

.text--blue-3 {
  color: #86a1bd; }

.text--brown {
  color: #8c7f70; }

.text--brown-2 {
  color: #d1ccc6; }

.text--brown-3 {
  color: #4b443c; }

.text--yellow {
  color: #f8f6cb; }

.text--yellow-2 {
  color: #ffcf11; }

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

.text--m {
  font-size: 16px; }

.text--semibold {
  font-weight: 600; }

.text--medium {
  font-weight: 500; }

.no-padding {
  padding: 0px !important; }

.no-margin {
  margin: 0px !important; }

/* VARIABLES */
/* Imports */
/* Accordion Categorie */
.accordion__categorie {
  margin-bottom: 1px;
  color: #ffffff; }

/* Accordion Title*/
.accordion__title {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  background: #eceef1; }
  .accordion__title:hover, .accordion__title:focus {
    background: #cccccc; }

/* ACCORDION */
.accordion {
  margin-bottom: 30px; }

.accordion__icon {
  position: absolute;
  top: 28px;
  right: 20px;
  font-size: 13px; }

.accordion__content {
  display: none;
  background: #cccccc;
  padding: 20px;
  margin-bottom: 0; }
  .accordion__content:after, .accordion__content .after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid transparent; }

.accordion__section {
  margin-bottom: 1px; }

.accordion__title {
  padding: 20px 20px 10px 20px; }

.accordion__section--active {
  margin-bottom: 1px; }
  .accordion__section--active .accordion__title {
    background: #cccccc; }
    .accordion__section--active .accordion__title .icon, .accordion__section--active .accordion__title a[rel=external]:after, .accordion__section--active .accordion__title a[rel=external] .after, a[rel=external] .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .alert-message__close:before, .accordion__section--active .accordion__title .alert-message__close .before, .alert-message__close .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .checked-list li:before, .checked-list .accordion__section--active .accordion__title li:before, .accordion__section--active .accordion__title .checked-list li .before, .checked-list li .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .checklist li:before, .checklist .accordion__section--active .accordion__title li:before, .accordion__section--active .accordion__title .checklist li .before, .checklist li .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .download-list li:before, .download-list .accordion__section--active .accordion__title li:before, .accordion__section--active .accordion__title .download-list li .before, .download-list li .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .img-hover:after, .accordion__section--active .accordion__title .img-hover--alt:after, .accordion__section--active .accordion__title .img--alt:after, .accordion__section--active .accordion__title .img:after, .accordion__section--active .accordion__title .img-hover .after, .img-hover .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .img-hover--alt .after, .img-hover--alt .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .img--alt .after, .img--alt .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .img .after, .img .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .img-hover--alt:before, .accordion__section--active .accordion__title .img--alt:before, .accordion__section--active .accordion__title .img-hover--alt .before, .img-hover--alt .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .img--alt .before, .img--alt .accordion__section--active .accordion__title .before, .accordion__section--active .accordion__title .link--longe:after, .accordion__section--active .accordion__title .link--longe .after, .link--longe .accordion__section--active .accordion__title .after, .accordion__section--active .accordion__title .tick:before {
      color: #5d6897; }
  .accordion__section--active .accordion__content {
    display: block;
    background: #cccccc; }

.address {
  font-size: 19px;
  color: #636466; }

.address__external {
  font-size: 16px; }

/* VARIABLES */
/* ALERT-MESSAGE */
.alert-message {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 1rem;
  padding: 20px;
  padding-bottom: 0; }

.alert-message--success, .alert-message--info {
  background: rgba(167, 198, 76, 0.9);
  border: 1px solid #a7c64c;
  color: #ffffff; }

.alert-message--error {
  background: #f2dede;
  border: 1px solid #8d313d; }

.alert-message__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0;
  text-decoration: none; }
  .alert-message__close:before, .alert-message__close .before {
    font-size: 12px;
    color: #ffffff; }

/* BOX */
[class*="box"] > *:last-child {
  margin-bottom: 0; }

.box {
  padding: 28px 30px 30px 30px;
  margin-bottom: 35px; }

.box--form {
  padding: 43px 46px 60px 53px;
  background: #f8f8f8;
  border: 1px solid #ecebeb; }

.box--primary {
  background: #0e447b; }

.box--secondary {
  background: #636466; }

.box--tertiary {
  background: #4a9ad0; }

.box--white {
  background: #ffffff; }

.box--black {
  background: #212121; }

.box--light-gray {
  background: #f8f8f8; }

.box--gray {
  background: #636466; }

.box--gray-2 {
  background: #ecebeb; }

.box--gray-4 {
  background: #6b6b6b; }

.box--gray-5 {
  background: #4f5151; }

.box--gray-6 {
  background: #c5bfb7; }

.box--red {
  background: #b72525; }

.box--hotred {
  background: #f24a00; }

.box--green {
  background: #a7c64c; }

.box--green-2 {
  background: #8ca242; }

.box--green-3 {
  background: #dce8b7; }

.box--blue {
  background: #0e447b; }

.box--blue-2 {
  background: #0b3764; }

.box--blue-3 {
  background: #86a1bd; }

.box--brown {
  background: #8c7f70; }

.box--brown-2 {
  background: #d1ccc6; }

.box--brown-3 {
  background: #4b443c; }

.box--yellow {
  background: #f8f6cb; }

.box--yellow-2 {
  background: #ffcf11; }

/* VARIABLES */
/* BREADCRUMBS */
.breadcrumbs {
  border-radius: 0;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  background: none; }
  @media screen and (max-width: 700px) {
    .breadcrumbs {
      display: none; } }
  @media only screen and (max-width: 380px) {
    .breadcrumbs {
      display: none; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .breadcrumbs {
      display: none; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .breadcrumbs {
      display: none; } }

.breadcrumbs__content {
  font-size: 16px;
  line-height: 42px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-transform: none;
  font-weight: 400;
  color: #636466; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .breadcrumbs__content {
      font-size: 14px;
      line-height: 1.5; } }
  .breadcrumbs__content li {
    display: inline-block;
    color: #636466; }
  @media only screen and (max-width: 380px) {
    .breadcrumbs__content {
      display: none; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .breadcrumbs__content {
      display: none; } }

.breadcrumb__link {
  font-weight: 400;
  color: #8ca242;
  text-decoration: underline; }
  .breadcrumb__link:hover, .breadcrumb__link:focus {
    color: #8ca242;
    text-decoration: none; }

/*
 * Help us to create a better world and kill the old browsers (<= IE 7)
 */
.browse-happy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 1em; }

/* Variables */
/* BUTTON--SECONDARY */
/* BUTTON--TERTIARY */
button,
[type=submit] {
  border: 0; }

/* Button */
.button, button,
[type=submit] {
  box-sizing: border-box;
  border-radius: 5px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  vertical-align: baseline;
  line-height: 1;
  text-decoration: none;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  background-color: #0e447b;
  font-family: "Hind", "Hind", Arial, sans-serif;
  text-transform: none;
  text-align: center; }
  .button:focus, button:focus,
  [type=submit]:focus, .button:active, button:active,
  [type=submit]:active {
    outline: none; }
  .button:hover, button:hover,
  [type=submit]:hover, .button:focus, button:focus,
  [type=submit]:focus {
    color: #ffffff;
    background-color: #a7c64c;
    border-color: #000; }
  .button:active, button:active,
  [type=submit]:active {
    color: #ffffff;
    background-color: #7c9630; }
  .button .icon, button .icon,
  [type=submit] .icon, .button a[rel=external]:after, button a[rel=external]:after,
  [type=submit] a[rel=external]:after, .button a[rel=external] .after, a[rel=external] .button .after, button a[rel=external] .after, a[rel=external] button .after,
  [type=submit] a[rel=external] .after,
  a[rel=external] [type=submit] .after, .button .alert-message__close:before, button .alert-message__close:before,
  [type=submit] .alert-message__close:before, .button .alert-message__close .before, .alert-message__close .button .before, button .alert-message__close .before, .alert-message__close button .before,
  [type=submit] .alert-message__close .before,
  .alert-message__close [type=submit] .before, .button .checked-list li:before, .checked-list .button li:before, button .checked-list li:before, .checked-list button li:before,
  [type=submit] .checked-list li:before,
  .checked-list [type=submit] li:before, .button .checked-list li .before, .checked-list li .button .before, button .checked-list li .before, .checked-list li button .before,
  [type=submit] .checked-list li .before,
  .checked-list li [type=submit] .before, .button .checklist li:before, .checklist .button li:before, button .checklist li:before, .checklist button li:before,
  [type=submit] .checklist li:before,
  .checklist [type=submit] li:before, .button .checklist li .before, .checklist li .button .before, button .checklist li .before, .checklist li button .before,
  [type=submit] .checklist li .before,
  .checklist li [type=submit] .before, .button .download-list li:before, .download-list .button li:before, button .download-list li:before, .download-list button li:before,
  [type=submit] .download-list li:before,
  .download-list [type=submit] li:before, .button .download-list li .before, .download-list li .button .before, button .download-list li .before, .download-list li button .before,
  [type=submit] .download-list li .before,
  .download-list li [type=submit] .before, .button .img-hover:after, button .img-hover:after,
  [type=submit] .img-hover:after, .button .img-hover--alt:after, button .img-hover--alt:after,
  [type=submit] .img-hover--alt:after, .button .img--alt:after, button .img--alt:after,
  [type=submit] .img--alt:after, .button .img:after, button .img:after,
  [type=submit] .img:after, .button .img-hover .after, .img-hover .button .after, button .img-hover .after, .img-hover button .after,
  [type=submit] .img-hover .after,
  .img-hover [type=submit] .after, .button .img-hover--alt .after, .img-hover--alt .button .after, button .img-hover--alt .after, .img-hover--alt button .after,
  [type=submit] .img-hover--alt .after,
  .img-hover--alt [type=submit] .after, .button .img--alt .after, .img--alt .button .after, button .img--alt .after, .img--alt button .after,
  [type=submit] .img--alt .after,
  .img--alt [type=submit] .after, .button .img .after, .img .button .after, button .img .after, .img button .after,
  [type=submit] .img .after,
  .img [type=submit] .after, .button .img-hover--alt:before, button .img-hover--alt:before,
  [type=submit] .img-hover--alt:before, .button .img--alt:before, button .img--alt:before,
  [type=submit] .img--alt:before, .button .img-hover--alt .before, .img-hover--alt .button .before, button .img-hover--alt .before, .img-hover--alt button .before,
  [type=submit] .img-hover--alt .before,
  .img-hover--alt [type=submit] .before, .button .img--alt .before, .img--alt .button .before, button .img--alt .before, .img--alt button .before,
  [type=submit] .img--alt .before,
  .img--alt [type=submit] .before, .button .link--longe:after, button .link--longe:after,
  [type=submit] .link--longe:after, .button .link--longe .after, .link--longe .button .after, button .link--longe .after, .link--longe button .after,
  [type=submit] .link--longe .after,
  .link--longe [type=submit] .after, .button .tick:before, button .tick:before,
  [type=submit] .tick:before {
    top: 2px;
    padding-left: 2px; }
  .button small, button small,
  [type=submit] small {
    margin: 0; }

.button--alt {
  background-color: #f24a00; }
  .button--alt:hover, .button--alt:active {
    background-color: #a7c64c; }

.button--alt2 {
  background-color: #a7c64c; }
  .button--alt2:hover, .button--alt2:active {
    background-color: #0e447b; }

.button--inactive,
a:disabled,
input:disabled {
  opacity: .5;
  pointer-events: none; }

.button--secondary {
  box-sizing: border-box;
  border-radius: 5px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  vertical-align: baseline;
  line-height: 1;
  text-decoration: none;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  background-color: #636466;
  font-family: "Hind", "Hind", Arial, sans-serif;
  text-transform: none;
  text-align: center; }
  .button--secondary:focus, .button--secondary:active {
    outline: none; }
  .button--secondary:hover, .button--secondary:focus {
    color: #ffffff;
    background-color: #4a4b4c; }
  .button--secondary:active {
    color: #ffffff;
    background-color: #313132; }

.button--tertiary {
  box-sizing: border-box;
  border-radius: 5px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  display: inline-block;
  padding: 14px 16px;
  vertical-align: baseline;
  line-height: 1;
  text-decoration: none;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  background-color: #a7c64c;
  font-family: "Hind", "Hind", Arial, sans-serif;
  text-transform: none;
  text-align: center; }
  .button--tertiary:focus, .button--tertiary:active {
    outline: none; }
  .button--tertiary:hover, .button--tertiary:focus {
    color: #ffffff;
    background-color: #8ca936; }
  .button--tertiary:active {
    color: #ffffff;
    background-color: #6c822a; }

.button--large {
  padding: 17px 50px 15px 50px;
  font-weight: 700;
  text-transform: uppercase; }

.button--small {
  padding: 10px 15px;
  font-weight: 400;
  text-transform: none; }

.button--full-width {
  width: 100%;
  text-align: center; }

.button--no-style,
.button--no-style:hover,
.button--no-style:focus {
  border-radius: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #0e447b;
  font-weight: 400; }

.button--link {
  font-size: 16px;
  line-height: 26px;
  text-transform: none;
  color: #0e447b;
  text-decoration: underline;
  font-family: "Hind", Arial, sans-serif;
  font-weight: 700; }
  @media only screen and (max-width: 380px) {
    .button--link {
      font-size: 14px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .button--link {
      font-size: 14px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .button--link {
      font-size: 15px;
      line-height: 24px; } }
  .button--link:hover, .button--link:focus {
    color: #0e447b;
    text-decoration: none;
    font-weight: 700; }

.call-to-action {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 46px;
  padding-left: 20px;
  padding-right: 20px;
  background: #dce8b7;
  border: 1px solid #a7c64c; }
  .call-to-action > *:last-child {
    margin-bottom: 0; }
  .call-to-action p {
    margin-right: auto;
    margin-left: auto; }

.call-to-action__title {
  font-size: 26px;
  line-height: 1.1;
  color: #4b443c;
  font-weight: 600;
  margin-bottom: 20px; }

.call-to-action__button {
  margin-bottom: 10px;
  background-color: #f24a00; }

.call-to-action__content {
  max-width: 100%; }

.checked-list ul {
  margin: 0;
  padding: 0;
  list-style: none; }
.checked-list li {
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
  font-size: 18px;
  line-height: 32px; }
  .checked-list li:before, .checked-list li .before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    margin-top: 7px;
    font-size: 14px;
    color: #0e447b; }

.checklist {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none; }
  .checklist li {
    margin: 0;
    padding: 0 0 0 30px;
    position: relative;
    font-size: 16px;
    line-height: 30px; }
    .checklist li:before, .checklist li .before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      margin-top: 7px;
      font-size: 14px;
      color: #a7c64c; }

/* Download List */
.download-list {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  list-style: none; }
  .download-list li {
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 0 0 28px;
    color: #636466;
    font-size: 19px; }
    .download-list li:before, .download-list li .before {
      color: #0e447b;
      position: absolute;
      left: 0;
      top: 1px;
      font-size: 20px; }

/* Figure */
.figure {
  max-width: 674px;
  width: 100%;
  float: none;
  margin: 0; }
  .figure.left img {
    float: left;
    margin-right: 1rem; }
  .figure.left figcaption {
    clear: both;
    float: left; }
  .figure.right img {
    float: right;
    margin-left: 1rem; }
  .figure.right figcaption {
    clear: both;
    float: right; }
  .figure.center {
    clear: both; }
    @media only screen and (min-width: 981px) {
      .figure.center {
        margin-bottom: 32px; } }
    @media screen and (min-width: 688px) and (max-width: 980px) {
      .figure.center {
        margin-bottom: 32px; } }
    @media only screen and (min-width: 381px) and (max-width: 687px) {
      .figure.center {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 380px) {
      .figure.center {
        margin-bottom: 18px; } }
    .figure.center img {
      display: block;
      margin: 0 auto; }
  .figure.banner figcaption {
    float: none; }
  @media only screen and (max-width: 380px) {
    .figure.left img, .figure.right img {
      float: none;
      margin-right: 0;
      margin-left: 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .figure.medium img, .figure.medium figcaption {
      width: 50%; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .figure.medium img, .figure.medium figcaption {
      width: 50%; } }
  @media only screen and (min-width: 981px) {
    .figure.medium img, .figure.medium figcaption {
      width: 50%; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .figure.small img, .figure.small figcaption {
      width: 25%; } }
  @media only screen and (min-width: 981px) {
    .figure.small img, .figure.small figcaption {
      width: 25%; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .figure img {
      margin: 0 0 30px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .figure img {
      margin: 0 0 30px 0; } }
  @media only screen and (min-width: 981px) {
    .figure img {
      margin: 0 0 30px 0; } }
  @media only screen and (max-width: 380px) {
    .figure img {
      margin: 0 0 18px 0; } }
  .figure figcaption {
    margin-bottom: 1rem; }
  .figure.medium img, .figure.medium figcaption {
    max-width: 224.66667px; }
  .figure.small img, .figure.small figcaption {
    max-width: 168.5px; }

.figure--full {
  max-width: 100%; }

.flash-message {
  position: relative;
  margin-bottom: 36px;
  padding: 20px;
  border: 1px solid;
  box-shadow: inset 0 0 0 5px #ffffff; }
  .flash-message > *:last-child, .flash-message.slvzr-last-child {
    margin-bottom: 0; }
  .flash-message p {
    max-width: 100%;
    padding-right: 20px; }
  .flash-message a {
    font-font: "Hind", Arial, sans-serif;
    font-weight: normal; }

.flash-message__close {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  text-transform: uppercase;
  background: transparent;
  padding: 3px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none; }
  .flash-message__close:hover, .flash-message__close:focus {
    text-decoration: underline;
    color: #ffffff; }
  .flash-container .flash-message__close {
    display: block; }

.flash-message--success {
  background: #1eb954; }
  .flash-message--success p, .flash-message--success a {
    color: #ffffff; }

.flash-message--error {
  background: #b72525; }
  .flash-message--error p {
    color: #ffffff; }

.flash-message--info .flash-message__close {
  color: #0e447b; }
  .flash-message--info .flash-message__close:hover, .flash-message--info .flash-message__close:focus {
    color: #0e447b; }

.footer {
  color: #ffffff;
  border-top: 1px solid #ffffff;
  padding-top: 25px;
  clear: both;
  overflow: hidden; }

.footer__title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px; }

.footer__icon {
  color: #ffffff;
  font-size: 12px;
  margin-right: 10px; }

.footer__link {
  color: #ffffff;
  text-decoration: underline; }
  .footer__link:hover, .footer__link:focus {
    color: #a7c64c;
    text-decoration: underline; }

.footer__button {
  border: 1px solid #0b3764;
  margin-top: 5px; }

.footer__link--alt {
  display: inline-block;
  margin-left: 10px; }

.footer__text {
  color: #ffffff; }

.footer__copy {
  line-height: 50px;
  float: left; }

.footer__extra {
  line-height: 50px;
  float: right; }

/* Variables */
/* Form */
.form--margin {
  margin-bottom: 20px; }

/* Form Imports */
/* Form Field */
/* Set basic styling on all elements */
.form__field {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  line-height: normal !important;
  margin: 0 0 0 0;
  width: 100%;
  padding: 5px 10px 4px 10px; }
  @media only screen and (max-width: 380px) {
    .form__field {
      font-size: 14px;
      line-height: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .form__field {
      font-size: 14px;
      line-height: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .form__field {
      font-size: 15px;
      line-height: 24px; } }
  .form__field:focus {
    outline: none; }

/* Style elements further where we can */
.form__field--email,
.form__field--number,
.form__field--select,
.form__field--tel,
.form__field--password,
.form__field--text,
.form__field--date,
.form__field--tel,
.form__field--search,
.form__field--textarea {
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 5px 10px 4px 10px;
  background-color: #ffffff;
  color: #636466;
  border: 1px solid #C3C3C3; }
  .form__field--email::-webkit-input-placeholder,
  .form__field--number::-webkit-input-placeholder,
  .form__field--select::-webkit-input-placeholder,
  .form__field--tel::-webkit-input-placeholder,
  .form__field--password::-webkit-input-placeholder,
  .form__field--text::-webkit-input-placeholder,
  .form__field--date::-webkit-input-placeholder,
  .form__field--tel::-webkit-input-placeholder,
  .form__field--search::-webkit-input-placeholder,
  .form__field--textarea::-webkit-input-placeholder {
    color: #7D7D7D; }
  .form__field--email:-moz-placeholder,
  .form__field--number:-moz-placeholder,
  .form__field--select:-moz-placeholder,
  .form__field--tel:-moz-placeholder,
  .form__field--password:-moz-placeholder,
  .form__field--text:-moz-placeholder,
  .form__field--date:-moz-placeholder,
  .form__field--tel:-moz-placeholder,
  .form__field--search:-moz-placeholder,
  .form__field--textarea:-moz-placeholder {
    color: #7D7D7D; }
  .form__field--email::-moz-placeholder,
  .form__field--number::-moz-placeholder,
  .form__field--select::-moz-placeholder,
  .form__field--tel::-moz-placeholder,
  .form__field--password::-moz-placeholder,
  .form__field--text::-moz-placeholder,
  .form__field--date::-moz-placeholder,
  .form__field--tel::-moz-placeholder,
  .form__field--search::-moz-placeholder,
  .form__field--textarea::-moz-placeholder {
    color: #7D7D7D; }
  .form__field--email:-ms-input-placeholder,
  .form__field--number:-ms-input-placeholder,
  .form__field--select:-ms-input-placeholder,
  .form__field--tel:-ms-input-placeholder,
  .form__field--password:-ms-input-placeholder,
  .form__field--text:-ms-input-placeholder,
  .form__field--date:-ms-input-placeholder,
  .form__field--tel:-ms-input-placeholder,
  .form__field--search:-ms-input-placeholder,
  .form__field--textarea:-ms-input-placeholder {
    color: #7D7D7D; }
  .form__field--email.placeholder,
  .form__field--number.placeholder,
  .form__field--select.placeholder,
  .form__field--tel.placeholder,
  .form__field--password.placeholder,
  .form__field--text.placeholder,
  .form__field--date.placeholder,
  .form__field--tel.placeholder,
  .form__field--search.placeholder,
  .form__field--textarea.placeholder {
    color: #7D7D7D; }
  .form__field--email:focus,
  .form__field--number:focus,
  .form__field--select:focus,
  .form__field--tel:focus,
  .form__field--password:focus,
  .form__field--text:focus,
  .form__field--date:focus,
  .form__field--tel:focus,
  .form__field--search:focus,
  .form__field--textarea:focus {
    background-color: #ffffff;
    border-color: #aaaaaa;
    outline: none; }
  .ie7 .form__field--email, .ie7
  .form__field--number, .ie7
  .form__field--select, .ie7
  .form__field--tel, .ie7
  .form__field--password, .ie7
  .form__field--text, .ie7
  .form__field--date, .ie7
  .form__field--tel, .ie7
  .form__field--search, .ie7
  .form__field--textarea {
    padding-left: 0;
    padding-right: 0; }

/* Set height on elements */
.form__field--email,
.form__field--number,
.form__field--select,
.form__field--tel,
.form__field--password,
.form__field--text,
.form__field--date,
.form__field--tel,
.form__field--search {
  word-break: normal;
  height: auto; }

.form__field--checkbox,
.form__field--radio {
  margin-right: 6px;
  width: auto; }

.form__field--date {
  padding-right: 0; }
  .form__field--date::-webkit-inner-spin-button
   {
    display: none;
    -webkit-appearance: none; }
  .form__field--date::-webkit-datetime-edit, .form__field--date::-webkit-datetime-edit-fields-wrapper, .form__field--date::-webkit-datetime-edit-month-field, .form__field--date::-webkit-datetime-edit-day-field, .form__field--date::-webkit-datetime-edit-year-field, .form__field--date::-webkit-calendar-picker-indicator {
    padding: 0; }
  .form__field--date::-webkit-calendar-picker-indicator {
    font-size: 12px;
    position: relative;
    left: -5px;
    background: transparent; }
  .form__field--date::-webkit-datetime-edit-text {
    font-size: 15px; }

.form__field--number {
  font-family: "Hind", "Hind", Arial, sans-serif;
  font-size: 24px; }

.form__field--select {
  font-family: "Hind", "Hind", Arial, sans-serif;
  position: relative;
  cursor: pointer;
  -webkit-appearance: menulist; }
  .form__field--select::-webkit-calendar-picker-indicator {
    display: initial;
    -webkit-appearance: initial; }

.form__field--file {
  color: #636466;
  padding: 0; }
  .form__field--file::-webkit-input-placeholder {
    color: #7D7D7D; }
  .form__field--file:-moz-placeholder {
    color: #7D7D7D; }
  .form__field--file::-moz-placeholder {
    color: #7D7D7D; }
  .form__field--file:-ms-input-placeholder {
    color: #7D7D7D; }
  .form__field--file.placeholder {
    color: #7D7D7D; }
  .form__field--file:focus {
    outline: none; }

.form__field--textarea {
  resize: vertical;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 200px; }

.form--footer .form__field {
  border-radius: 5px; }

/* Form Fieldgroup */
.form__fieldgroup {
  margin-bottom: 1rem; }
  .form__fieldgroup input[type="checkbox"] {
    position: absolute;
    top: 4px; }
  .form__fieldgroup .form__entry {
    position: relative; }

/* Form Checkbox */
.form__checkbox {
  margin-right: 6px; }

/* Form Entry */
.form__entry {
  display: block;
  padding-left: 1px;
  margin-bottom: 1rem;
  position: relative; }

.form__entry--invalid {
  display: block; }
  .form__entry--invalid .form__field {
    border-color: #b72525;
    border-width: 1px; }
    .form__entry--invalid .form__field:focus {
      background-color: #f7d5d5; }
  .form__entry--invalid .form__message {
    background: rgba(183, 37, 37, 0.3); }

/* Variables */
/* Form Fieldset */
.form__fieldset {
  box-sizing: border-box;
  border: 0;
  padding: 0;
  position: relative; }
  @media only screen and (max-width: 380px) {
    .form__fieldset {
      margin: 0 0 20px 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .form__fieldset {
      margin: 0 0 20px 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .form__fieldset {
      margin: 0 0 20px 0; } }
  @media only screen and (min-width: 981px) {
    .form__fieldset {
      margin: 0 0 20px 0; } }
  .form__fieldset:last-child, .form__fieldset.slvzr-last-child {
    margin-bottom: 0; }

/* Varbiables */
/* Form Help-block */
.form__help-block {
  display: block;
  position: relative;
  top: -1em;
  font-size: 0.8125rem;
  color: #969799;
  font-style: italic; }
  .form__help-block.error {
    color: #b72525;
    font-style: normal; }

/* Variables */
/* Form Label */
.form__label {
  display: inline-block;
  cursor: pointer;
  color: #4b443c; }
  @media only screen and (max-width: 380px) {
    .form__label {
      display: block;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .form__label {
      display: block;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .form__label {
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px; } }
  @media only screen and (min-width: 981px) {
    .form__label {
      font-size: 18px;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 10px; } }

.form__label--file-box {
  color: #636466;
  line-height: 1.5rem; }

.form__label--fieldgroup {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 30px; }

.form__fieldgroup__label {
  margin-top: 1rem;
  font-weight: bold; }

@media screen and (min-width: 688px) and (max-width: 980px) {
  .form__label--alt {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-bottom: 0;
    line-height: 34px; } }
@media only screen and (min-width: 981px) {
  .form__label--alt {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-bottom: 0;
    line-height: 34px; } }
@media only screen and (max-width: 380px) {
  .form__label--alt {
    margin-bottom: -10px; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .form__label--alt {
    margin-bottom: -10px; } }

.form__label--select {
  display: block;
  position: absolute;
  right: 10px;
  top: 13px;
  z-index: 1; }

.form__label--checkbox {
  display: inline; }

.form--footer .form__label {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 400; }

/* Form Legend */
.form__legend {
  margin-bottom: 1rem; }

/* Variables */
/* Form Message */
.form__message {
  display: block;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  padding: 15px 12px;
  color: #b72525;
  font-size: 15px;
  font-weight: 400; }

.form__message--icon:before {
  padding-right: 8px; }

/* Variables */
/* Form Optional */
.form__optional {
  color: #4b443c;
  font-style: normal;
  font-weight: 400; }

/* Form Radiogroup */
.form__radiogroup {
  margin-bottom: 1rem; }
  .form__radiogroup .form__entry {
    margin-bottom: 5px; }

/* Form Search */
.form__search {
  position: relative; }
  .form__search input[type=search] {
    box-sizing: border-box;
    border-radius: 0px;
    background-color: #fff;
    padding-right: 30px; }
    .form__search input[type=search]:focus {
      background-color: #fff; }
    .form__search input[type=search]::-webkit-input-placeholder {
      font-style: italic; }
    .form__search input[type=search]:-moz-placeholder {
      font-style: italic; }
    .form__search input[type=search]::-moz-placeholder {
      font-style: italic; }
    .form__search input[type=search]:-ms-input-placeholder {
      font-style: italic; }
    .form__search input[type=search].placeholder {
      font-style: italic; }

.form__search__submit {
  position: absolute;
  right: 10px;
  top: 0; }
  .form__search__submit .icon, .form__search__submit a[rel=external]:after, .form__search__submit a[rel=external] .after, a[rel=external] .form__search__submit .after, .form__search__submit .alert-message__close:before, .form__search__submit .alert-message__close .before, .alert-message__close .form__search__submit .before, .form__search__submit .checked-list li:before, .checked-list .form__search__submit li:before, .form__search__submit .checked-list li .before, .checked-list li .form__search__submit .before, .form__search__submit .checklist li:before, .checklist .form__search__submit li:before, .form__search__submit .checklist li .before, .checklist li .form__search__submit .before, .form__search__submit .download-list li:before, .download-list .form__search__submit li:before, .form__search__submit .download-list li .before, .download-list li .form__search__submit .before, .form__search__submit .img-hover:after, .form__search__submit .img-hover--alt:after, .form__search__submit .img--alt:after, .form__search__submit .img:after, .form__search__submit .img-hover .after, .img-hover .form__search__submit .after, .form__search__submit .img-hover--alt .after, .img-hover--alt .form__search__submit .after, .form__search__submit .img--alt .after, .img--alt .form__search__submit .after, .form__search__submit .img .after, .img .form__search__submit .after, .form__search__submit .img-hover--alt:before, .form__search__submit .img--alt:before, .form__search__submit .img-hover--alt .before, .img-hover--alt .form__search__submit .before, .form__search__submit .img--alt .before, .img--alt .form__search__submit .before, .form__search__submit .link--longe:after, .form__search__submit .link--longe .after, .link--longe .form__search__submit .after, .form__search__submit .tick:before {
    top: 3px; }
  .form__search__submit:hover, .form__search__submit:focus {
    color: #000; }

/* Form Submit */
.form__submit {
  position: relative;
  top: -1px; }

input[disabled] {
  opacity: .6;
  color: #b2b2b2; }
  input[disabled] + * {
    color: #b2b2b2; }

/*
 *   This one needs some explanation:
 *
 *   It might look weird at first but it's actually pretty logical: to get a number without its unit, you need to divide
 *   it by 1 of the same unit. To get 42 from 42em, you need to divide 42em by 1em.
 *
 *   So we divide our number by the same number multiplied by 0 to which we then add 1.
 *   With our example, here is what happen: 42em / 42em * 0 + 1, so 42em / 0em + 1 so, 42em / 1em so 42.
 */
/* Equal columns helper mixin for lists
 * If total columns is not the default total-colums we add a suffix so we can create a subgrid
 * Examples:
 *  - cols-large-2      => 2 columns of the default grid (12-grid)
 *  - cols-large-2-8    => 2 columns of a 8-grid
*/
/* ==========================================================================
   Variables
   ========================================================================== */
/* Browser support */
/* Layout */
/* Breakpoints - Change according to the design */
/* Grid default */
/* Colors */
/* Typography */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

.ie7 .ir {
  text-indent: -9999px; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/* MEDIUM & LARGE SCREEN - Hide element */
@media screen and (min-width: 688px) and (max-width: 980px) {
  .small-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .small-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (max-width: 380px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .medium-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (max-width: 380px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .large-only {
    display: none !important;
    visibility: hidden; } }
/* SMALL SCREEN -  */
@media only screen and (max-width: 380px) {
  .mini__hidden {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .small__hidden {
    display: none !important;
    visibility: hidden; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .medium__hidden {
    display: none !important;
    visibility: hidden; } }
@media only screen and (min-width: 981px) {
  .large__hidden {
    display: none !important;
    visibility: hidden; } }
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 * Allow the element to be focusable when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix, .form__entry, .item-holder, .item--introduction, .jumbotron, .jumbotron--banner, .link-overview, .masthead__wrapper, .masthead, .nav-main, .pagination, .pagination__holder, .quote, .quote__title, .grid__row {
  /*
   * For IE 6/7 only
   * Include this rule to trigger hasLayout and contain floats.
   */ }

.clearfix:before, .form__entry:before, .item-holder:before, .item--introduction:before, .jumbotron:before, .jumbotron--banner:before, .link-overview:before, .masthead__wrapper:before, .masthead:before, .nav-main:before, .pagination:before, .pagination__holder:before, .quote:before, .quote__title:before, .grid__row:before, .clearfix:after, .form__entry:after, .item-holder:after, .item--introduction:after, .jumbotron:after, .jumbotron--banner:after, .link-overview:after, .masthead__wrapper:after, .masthead:after, .nav-main:after, .pagination:after, .pagination__holder:after, .quote:after, .quote__title:after, .grid__row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after, .form__entry:after, .item-holder:after, .item--introduction:after, .jumbotron:after, .jumbotron--banner:after, .link-overview:after, .masthead__wrapper:after, .masthead:after, .nav-main:after, .pagination:after, .pagination__holder:after, .quote:after, .quote__title:after, .grid__row:after {
  clear: both; }

.ie7 .clearfix, .ie7 .form__entry, .ie7 .item-holder, .ie7 .item--introduction, .ie7 .jumbotron, .ie7 .jumbotron--banner, .ie7 .link-overview, .ie7 .masthead__wrapper, .ie7 .masthead, .ie7 .nav-main, .ie7 .pagination, .ie7 .pagination__holder, .ie7 .quote, .ie7 .quote__title, .ie7 .grid__row {
  zoom: 1; }

@media screen and (min-width: 688px) and (max-width: 980px) {
  .clearfix .left, .form__entry .left, .item-holder .left, .item--introduction .left, .jumbotron .left, .jumbotron--banner .left, .link-overview .left, .masthead__wrapper .left, .masthead .left, .nav-main .left, .pagination .left, .pagination__holder .left, .quote .left, .quote__title .left, .grid__row .left {
    float: left; }

  .clearfix .right, .form__entry .right, .item-holder .right, .item--introduction .right, .jumbotron .right, .jumbotron--banner .right, .link-overview .right, .masthead__wrapper .right, .masthead .right, .nav-main .right, .pagination .right, .pagination__holder .right, .quote .right, .quote__title .right, .grid__row .right {
    float: right; } }
@media only screen and (min-width: 981px) {
  .clearfix .left, .form__entry .left, .item-holder .left, .item--introduction .left, .jumbotron .left, .jumbotron--banner .left, .link-overview .left, .masthead__wrapper .left, .masthead .left, .nav-main .left, .pagination .left, .pagination__holder .left, .quote .left, .quote__title .left, .grid__row .left {
    float: left; }

  .clearfix .right, .form__entry .right, .item-holder .right, .item--introduction .right, .jumbotron .right, .jumbotron--banner .right, .link-overview .right, .masthead__wrapper .right, .masthead .right, .nav-main .right, .pagination .right, .pagination__holder .right, .quote .right, .quote__title .right, .grid__row .right {
    float: right; } }
.clear {
  clear: both; }

/* SMALL SCREEN - Change order of elements */
@media only screen and (max-width: 380px) {
  .small-ordering {
    display: table;
    width: 100%; }

  .small-ordering .small-first,
  .small-ordering .small-second,
  .small-ordering .small-third {
    float: none !important; }

  .small-ordering .small-first {
    display: table-header-group !important; }

  .small-ordering .second {
    display: table-row-group !important; }

  .small-ordering .third {
    display: table-footer-group !important; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .small-ordering {
    display: table;
    width: 100%; }

  .small-ordering .small-first,
  .small-ordering .small-second,
  .small-ordering .small-third {
    float: none !important; }

  .small-ordering .small-first {
    display: table-header-group !important; }

  .small-ordering .second {
    display: table-row-group !important; }

  .small-ordering .third {
    display: table-footer-group !important; } }
.clear-list-style {
  list-style: none;
  margin: 0;
  padding: 0; }

.clear-list-style li {
  display: inline-block;
  margin: 0; }

.better-font-rendering {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

/* SUSY DEFAULT VARIABLES OVERWRITE */
/* Grid imports */
/* Grid Container */
.grid__container {
  position: relative;
  padding-left: 10px;
  padding-right: 10px; }

@media only screen and (min-width: 381px) and (max-width: 687px) {
  .grid__container {
    padding-left: 10px;
    padding-right: 10px; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .grid__container {
    padding-left: 20px;
    padding-right: 20px; } }
@media only screen and (min-width: 981px) {
  .grid__container {
    max-width: 1055px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px; }

  .grid__container:after {
    content: " ";
    display: block;
    clear: both; } }
/* Grid Row */
.grid__row {
  width: 100%; }

.ie7 .grid__row {
  width: 101.1%; }

.grid__row--smb {
  margin-bottom: 20px; }

.grid__row--bordered {
  padding-top: 30px;
  border-top: 1px solid #ecebeb;
  padding-left: 10px;
  margin-left: -10px; }

/* Grid Col */
[class*="__col"] {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px; }

@media only screen and (max-width: 380px) {
  .grid--v-mini__col--no-margin {
    margin-bottom: 0; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .grid--v-small__col--no-margin {
    margin-bottom: 0; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .grid--v-medium__col--no-margin {
    margin-bottom: 0; } }
@media only screen and (min-width: 981px) {
  .grid--v-large__col--no-margin {
    margin-bottom: 0; } }
.grid__gallery--1-of-4 {
  width: 20.83333%;
  float: left; }

.grid__gallery--1-of-4:nth-child(4n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--1-of-4:nth-child(4n + 2) {
  margin-left: 26.38889%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-4:nth-child(4n + 3) {
  margin-left: 52.77778%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-4:nth-child(4n + 4) {
  margin-left: 79.16667%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-6 {
  width: 13.63636%;
  float: left; }

.grid__gallery--1-of-6:nth-child(6n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--1-of-6:nth-child(6n + 2) {
  margin-left: 17.27273%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-6:nth-child(6n + 3) {
  margin-left: 34.54545%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-6:nth-child(6n + 4) {
  margin-left: 51.81818%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-6:nth-child(6n + 5) {
  margin-left: 69.09091%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-6:nth-child(6n + 6) {
  margin-left: 86.36364%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-3 {
  width: 28.30189%;
  float: left; }

.grid__gallery--1-of-3:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--1-of-3:nth-child(3n + 2) {
  margin-left: 35.84906%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-3:nth-child(3n + 3) {
  margin-left: 71.69811%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--1-of-2 {
  width: 44.11765%;
  float: left; }

.grid__gallery--1-of-2:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--1-of-2:nth-child(2n + 2) {
  margin-left: 55.88235%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--media-grid, .media-grid__item {
  width: 49.03846%;
  float: left;
  margin-bottom: 1.27389%; }

.grid__gallery--media-grid:nth-child(2n + 1), .media-grid__item:nth-child(2n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--media-grid:nth-child(2n + 2), .media-grid__item:nth-child(2n + 2) {
  margin-left: 50.96154%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--media-grid-large, .media-grid--large .media-grid__item {
  width: 32.48408%;
  float: left;
  margin-bottom: 1.27389%; }

.grid__gallery--media-grid-large:nth-child(3n + 1), .media-grid--large .media-grid__item:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0; }

.grid__gallery--media-grid-large:nth-child(3n + 2), .media-grid--large .media-grid__item:nth-child(3n + 2) {
  margin-left: 33.75796%;
  margin-right: -100%;
  clear: none; }

.grid__gallery--media-grid-large:nth-child(3n + 3), .media-grid--large .media-grid__item:nth-child(3n + 3) {
  margin-left: 67.51592%;
  margin-right: -100%;
  clear: none; }

.media-grid {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none; }

.media-grid__item {
  margin-bottom: 0px; }

.media-grid__item .img {
  margin-bottom: 10px; }

.media-grid--large .media-grid__item {
  margin-bottom: 0px; }

.media-grid--large .media-grid__item .img {
  margin-bottom: 10px; }

.media-grid--full .media-grid__item {
  margin-bottom: 0px; }

@media only screen and (max-width: 380px) {
  .media-grid--full .media-grid__item {
    width: 32.48408%;
    float: left; }

  .media-grid--full .media-grid__item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }

  .media-grid--full .media-grid__item:nth-child(3n + 2) {
    margin-left: 33.75796%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(3n + 3) {
    margin-left: 67.51592%;
    margin-right: -100%;
    clear: none; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .media-grid--full .media-grid__item {
    width: 32.48408%;
    float: left; }

  .media-grid--full .media-grid__item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }

  .media-grid--full .media-grid__item:nth-child(3n + 2) {
    margin-left: 33.75796%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(3n + 3) {
    margin-left: 67.51592%;
    margin-right: -100%;
    clear: none; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .media-grid--full .media-grid__item {
    width: 13.63636%;
    float: left; }

  .media-grid--full .media-grid__item:nth-child(6n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }

  .media-grid--full .media-grid__item:nth-child(6n + 2) {
    margin-left: 17.27273%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 3) {
    margin-left: 34.54545%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 4) {
    margin-left: 51.81818%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 5) {
    margin-left: 69.09091%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 6) {
    margin-left: 86.36364%;
    margin-right: -100%;
    clear: none; } }
@media only screen and (min-width: 981px) {
  .media-grid--full .media-grid__item {
    width: 13.63636%;
    float: left; }

  .media-grid--full .media-grid__item:nth-child(6n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }

  .media-grid--full .media-grid__item:nth-child(6n + 2) {
    margin-left: 17.27273%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 3) {
    margin-left: 34.54545%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 4) {
    margin-left: 51.81818%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 5) {
    margin-left: 69.09091%;
    margin-right: -100%;
    clear: none; }

  .media-grid--full .media-grid__item:nth-child(6n + 6) {
    margin-left: 86.36364%;
    margin-right: -100%;
    clear: none; } }
.media-grid--full .media-grid__item .img {
  margin-bottom: 10px; }

/* Grid Viewports */
/* Grid large */
@media only screen and (min-width: 981px) {
  .grid--v-large--alt__col--1 {
    width: 10.81081%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--2 {
    width: 23.55212%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--3 {
    width: 36.29344%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--4 {
    width: 49.03475%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--5 {
    width: 61.77606%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--6 {
    width: 74.51737%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--7 {
    width: 87.25869%;
    float: left;
    margin-right: 1.9305%; }

  .grid--v-large--alt__col--8 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; } }
/* Grid large */
@media only screen and (min-width: 981px) {
  .grid--v-large__col--1 {
    width: 6.69643%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--1 {
    display: inline-block;
    width: 6.69643%; }

  .grid--v-large__offset--1 {
    margin-left: 8.48214%; }

  .grid--v-large__pull--1 {
    left: -8.48214%; }

  .grid--v-large__push--1 {
    left: 8.48214%; }

  .grid--v-large__col--2 {
    width: 15.17857%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--2 {
    display: inline-block;
    width: 15.17857%; }

  .grid--v-large__offset--2 {
    margin-left: 16.96429%; }

  .grid--v-large__pull--2 {
    left: -16.96429%; }

  .grid--v-large__push--2 {
    left: 16.96429%; }

  .grid--v-large__col--3 {
    width: 23.66071%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--3 {
    display: inline-block;
    width: 23.66071%; }

  .grid--v-large__offset--3 {
    margin-left: 25.44643%; }

  .grid--v-large__pull--3 {
    left: -25.44643%; }

  .grid--v-large__push--3 {
    left: 25.44643%; }

  .grid--v-large__col--4 {
    width: 32.14286%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--4 {
    display: inline-block;
    width: 32.14286%; }

  .grid--v-large__offset--4 {
    margin-left: 33.92857%; }

  .grid--v-large__pull--4 {
    left: -33.92857%; }

  .grid--v-large__push--4 {
    left: 33.92857%; }

  .grid--v-large__col--5 {
    width: 40.625%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--5 {
    display: inline-block;
    width: 40.625%; }

  .grid--v-large__offset--5 {
    margin-left: 42.41071%; }

  .grid--v-large__pull--5 {
    left: -42.41071%; }

  .grid--v-large__push--5 {
    left: 42.41071%; }

  .grid--v-large__col--6 {
    width: 49.10714%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--6 {
    display: inline-block;
    width: 49.10714%; }

  .grid--v-large__offset--6 {
    margin-left: 50.89286%; }

  .grid--v-large__pull--6 {
    left: -50.89286%; }

  .grid--v-large__push--6 {
    left: 50.89286%; }

  .grid--v-large__col--7 {
    width: 57.58929%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--7 {
    display: inline-block;
    width: 57.58929%; }

  .grid--v-large__offset--7 {
    margin-left: 59.375%; }

  .grid--v-large__pull--7 {
    left: -59.375%; }

  .grid--v-large__push--7 {
    left: 59.375%; }

  .grid--v-large__col--8 {
    width: 66.07143%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--8 {
    display: inline-block;
    width: 66.07143%; }

  .grid--v-large__offset--8 {
    margin-left: 67.85714%; }

  .grid--v-large__pull--8 {
    left: -67.85714%; }

  .grid--v-large__push--8 {
    left: 67.85714%; }

  .grid--v-large__col--9 {
    width: 74.55357%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--9 {
    display: inline-block;
    width: 74.55357%; }

  .grid--v-large__offset--9 {
    margin-left: 76.33929%; }

  .grid--v-large__pull--9 {
    left: -76.33929%; }

  .grid--v-large__push--9 {
    left: 76.33929%; }

  .grid--v-large__col--10 {
    width: 83.03571%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--10 {
    display: inline-block;
    width: 83.03571%; }

  .grid--v-large__offset--10 {
    margin-left: 84.82143%; }

  .grid--v-large__pull--10 {
    left: -84.82143%; }

  .grid--v-large__push--10 {
    left: 84.82143%; }

  .grid--v-large__col--11 {
    width: 91.51786%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__width--11 {
    display: inline-block;
    width: 91.51786%; }

  .grid--v-large__offset--11 {
    margin-left: 93.30357%; }

  .grid--v-large__pull--11 {
    left: -93.30357%; }

  .grid--v-large__push--11 {
    left: 93.30357%; }

  .grid--v-large__col--12 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--12 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__offset--12 {
    margin-left: 101.78571%; }

  .grid--v-large__pull--12 {
    left: -101.78571%; }

  .grid--v-large__push--12 {
    left: 101.78571%; }

  .grid--v-large__col--1-1 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--1-1 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-2 {
    width: 44.11765%;
    float: left;
    margin-right: 11.76471%; }

  .grid--v-large__width--1-2 {
    display: inline-block;
    width: 44.11765%; }

  .grid--v-large__col--2-2 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--2-2 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-3 {
    width: 28.30189%;
    float: left;
    margin-right: 7.54717%; }

  .grid--v-large__width--1-3 {
    display: inline-block;
    width: 28.30189%; }

  .grid--v-large__col--2-3 {
    width: 64.15094%;
    float: left;
    margin-right: 7.54717%; }

  .grid--v-large__width--2-3 {
    display: inline-block;
    width: 64.15094%; }

  .grid--v-large__col--3-3 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--3-3 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-4 {
    width: 20.83333%;
    float: left;
    margin-right: 5.55556%; }

  .grid--v-large__width--1-4 {
    display: inline-block;
    width: 20.83333%; }

  .grid--v-large__col--2-4 {
    width: 47.22222%;
    float: left;
    margin-right: 5.55556%; }

  .grid--v-large__width--2-4 {
    display: inline-block;
    width: 47.22222%; }

  .grid--v-large__col--3-4 {
    width: 73.61111%;
    float: left;
    margin-right: 5.55556%; }

  .grid--v-large__width--3-4 {
    display: inline-block;
    width: 73.61111%; }

  .grid--v-large__col--4-4 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--4-4 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-5 {
    width: 16.48352%;
    float: left;
    margin-right: 4.3956%; }

  .grid--v-large__width--1-5 {
    display: inline-block;
    width: 16.48352%; }

  .grid--v-large__col--2-5 {
    width: 37.36264%;
    float: left;
    margin-right: 4.3956%; }

  .grid--v-large__width--2-5 {
    display: inline-block;
    width: 37.36264%; }

  .grid--v-large__col--3-5 {
    width: 58.24176%;
    float: left;
    margin-right: 4.3956%; }

  .grid--v-large__width--3-5 {
    display: inline-block;
    width: 58.24176%; }

  .grid--v-large__col--4-5 {
    width: 79.12088%;
    float: left;
    margin-right: 4.3956%; }

  .grid--v-large__width--4-5 {
    display: inline-block;
    width: 79.12088%; }

  .grid--v-large__col--5-5 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--5-5 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-6 {
    width: 13.63636%;
    float: left;
    margin-right: 3.63636%; }

  .grid--v-large__width--1-6 {
    display: inline-block;
    width: 13.63636%; }

  .grid--v-large__col--2-6 {
    width: 30.90909%;
    float: left;
    margin-right: 3.63636%; }

  .grid--v-large__width--2-6 {
    display: inline-block;
    width: 30.90909%; }

  .grid--v-large__col--3-6 {
    width: 48.18182%;
    float: left;
    margin-right: 3.63636%; }

  .grid--v-large__width--3-6 {
    display: inline-block;
    width: 48.18182%; }

  .grid--v-large__col--4-6 {
    width: 65.45455%;
    float: left;
    margin-right: 3.63636%; }

  .grid--v-large__width--4-6 {
    display: inline-block;
    width: 65.45455%; }

  .grid--v-large__col--5-6 {
    width: 82.72727%;
    float: left;
    margin-right: 3.63636%; }

  .grid--v-large__width--5-6 {
    display: inline-block;
    width: 82.72727%; }

  .grid--v-large__col--6-6 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--6-6 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-7 {
    width: 11.62791%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--1-7 {
    display: inline-block;
    width: 11.62791%; }

  .grid--v-large__col--2-7 {
    width: 26.35659%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--2-7 {
    display: inline-block;
    width: 26.35659%; }

  .grid--v-large__col--3-7 {
    width: 41.08527%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--3-7 {
    display: inline-block;
    width: 41.08527%; }

  .grid--v-large__col--4-7 {
    width: 55.81395%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--4-7 {
    display: inline-block;
    width: 55.81395%; }

  .grid--v-large__col--5-7 {
    width: 70.54264%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--5-7 {
    display: inline-block;
    width: 70.54264%; }

  .grid--v-large__col--6-7 {
    width: 85.27132%;
    float: left;
    margin-right: 3.10078%; }

  .grid--v-large__width--6-7 {
    display: inline-block;
    width: 85.27132%; }

  .grid--v-large__col--7-7 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--7-7 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-8 {
    width: 10.13514%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--1-8 {
    display: inline-block;
    width: 10.13514%; }

  .grid--v-large__col--2-8 {
    width: 22.97297%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--2-8 {
    display: inline-block;
    width: 22.97297%; }

  .grid--v-large__col--3-8 {
    width: 35.81081%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--3-8 {
    display: inline-block;
    width: 35.81081%; }

  .grid--v-large__col--4-8 {
    width: 48.64865%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--4-8 {
    display: inline-block;
    width: 48.64865%; }

  .grid--v-large__col--5-8 {
    width: 61.48649%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--5-8 {
    display: inline-block;
    width: 61.48649%; }

  .grid--v-large__col--6-8 {
    width: 74.32432%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--6-8 {
    display: inline-block;
    width: 74.32432%; }

  .grid--v-large__col--7-8 {
    width: 87.16216%;
    float: left;
    margin-right: 2.7027%; }

  .grid--v-large__width--7-8 {
    display: inline-block;
    width: 87.16216%; }

  .grid--v-large__col--8-8 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--8-8 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-9 {
    width: 8.98204%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--1-9 {
    display: inline-block;
    width: 8.98204%; }

  .grid--v-large__col--2-9 {
    width: 20.35928%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--2-9 {
    display: inline-block;
    width: 20.35928%; }

  .grid--v-large__col--3-9 {
    width: 31.73653%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--3-9 {
    display: inline-block;
    width: 31.73653%; }

  .grid--v-large__col--4-9 {
    width: 43.11377%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--4-9 {
    display: inline-block;
    width: 43.11377%; }

  .grid--v-large__col--5-9 {
    width: 54.49102%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--5-9 {
    display: inline-block;
    width: 54.49102%; }

  .grid--v-large__col--6-9 {
    width: 65.86826%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--6-9 {
    display: inline-block;
    width: 65.86826%; }

  .grid--v-large__col--7-9 {
    width: 77.24551%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--7-9 {
    display: inline-block;
    width: 77.24551%; }

  .grid--v-large__col--8-9 {
    width: 88.62275%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-large__width--8-9 {
    display: inline-block;
    width: 88.62275%; }

  .grid--v-large__col--9-9 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--9-9 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-10 {
    width: 8.06452%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--1-10 {
    display: inline-block;
    width: 8.06452%; }

  .grid--v-large__col--2-10 {
    width: 18.27957%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--2-10 {
    display: inline-block;
    width: 18.27957%; }

  .grid--v-large__col--3-10 {
    width: 28.49462%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--3-10 {
    display: inline-block;
    width: 28.49462%; }

  .grid--v-large__col--4-10 {
    width: 38.70968%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--4-10 {
    display: inline-block;
    width: 38.70968%; }

  .grid--v-large__col--5-10 {
    width: 48.92473%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--5-10 {
    display: inline-block;
    width: 48.92473%; }

  .grid--v-large__col--6-10 {
    width: 59.13978%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--6-10 {
    display: inline-block;
    width: 59.13978%; }

  .grid--v-large__col--7-10 {
    width: 69.35484%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--7-10 {
    display: inline-block;
    width: 69.35484%; }

  .grid--v-large__col--8-10 {
    width: 79.56989%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--8-10 {
    display: inline-block;
    width: 79.56989%; }

  .grid--v-large__col--9-10 {
    width: 89.78495%;
    float: left;
    margin-right: 2.15054%; }

  .grid--v-large__width--9-10 {
    display: inline-block;
    width: 89.78495%; }

  .grid--v-large__col--10-10 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--10-10 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--1-11 {
    width: 7.31707%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--1-11 {
    display: inline-block;
    width: 7.31707%; }

  .grid--v-large__col--2-11 {
    width: 16.58537%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--2-11 {
    display: inline-block;
    width: 16.58537%; }

  .grid--v-large__col--3-11 {
    width: 25.85366%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--3-11 {
    display: inline-block;
    width: 25.85366%; }

  .grid--v-large__col--4-11 {
    width: 35.12195%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--4-11 {
    display: inline-block;
    width: 35.12195%; }

  .grid--v-large__col--5-11 {
    width: 44.39024%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--5-11 {
    display: inline-block;
    width: 44.39024%; }

  .grid--v-large__col--6-11 {
    width: 53.65854%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--6-11 {
    display: inline-block;
    width: 53.65854%; }

  .grid--v-large__col--7-11 {
    width: 62.92683%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--7-11 {
    display: inline-block;
    width: 62.92683%; }

  .grid--v-large__col--8-11 {
    width: 72.19512%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--8-11 {
    display: inline-block;
    width: 72.19512%; }

  .grid--v-large__col--9-11 {
    width: 81.46341%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--9-11 {
    display: inline-block;
    width: 81.46341%; }

  .grid--v-large__col--10-11 {
    width: 90.73171%;
    float: left;
    margin-right: 1.95122%; }

  .grid--v-large__width--10-11 {
    display: inline-block;
    width: 90.73171%; }

  .grid--v-large__col--11-11 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__width--11-11 {
    display: inline-block;
    width: 100%; }

  .grid--v-large__col--omega {
    margin-right: 0; }

  .grid--v-large__col--nm {
    margin-bottom: 0; } }
/* OMEGA-LESS COLS */
@media only screen and (min-width: 981px) {
  .grid--v-large__cols--1 {
    width: 6.69643%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--1:nth-child(12n) {
    margin-right: 0; }

  .grid--v-large__cols--1:nth-child(12n +1) {
    clear: left; }

  .grid--v-large__cols--2 {
    width: 15.17857%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--2:nth-child(6n) {
    margin-right: 0; }

  .grid--v-large__cols--2:nth-child(6n +1) {
    clear: left; }

  .grid--v-large__cols--3 {
    width: 23.66071%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--3:nth-child(4n) {
    margin-right: 0; }

  .grid--v-large__cols--3:nth-child(4n +1) {
    clear: left; }

  .grid--v-large__cols--4 {
    width: 32.14286%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--4:nth-child(3n) {
    margin-right: 0; }

  .grid--v-large__cols--4:nth-child(3n +1) {
    clear: left; }

  .grid--v-large__cols--5 {
    width: 40.625%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--5:nth-child(2n) {
    margin-right: 0; }

  .grid--v-large__cols--5:nth-child(2n +1) {
    clear: left; }

  .grid--v-large__cols--6 {
    width: 49.10714%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--6:nth-child(2n) {
    margin-right: 0; }

  .grid--v-large__cols--6:nth-child(2n +1) {
    clear: left; }

  .grid--v-large__cols--7 {
    width: 57.58929%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--7:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--7:nth-child(1n +1) {
    clear: left; }

  .grid--v-large__cols--8 {
    width: 66.07143%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--8:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--8:nth-child(1n +1) {
    clear: left; }

  .grid--v-large__cols--9 {
    width: 74.55357%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--9:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--9:nth-child(1n +1) {
    clear: left; }

  .grid--v-large__cols--10 {
    width: 83.03571%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--10:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--10:nth-child(1n +1) {
    clear: left; }

  .grid--v-large__cols--11 {
    width: 91.51786%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-large__cols--11:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--11:nth-child(1n +1) {
    clear: left; }

  .grid--v-large__cols--12 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-large__cols--12:nth-child(1n) {
    margin-right: 0; }

  .grid--v-large__cols--12:nth-child(1n +1) {
    clear: left; } }
/* Variables */
/* Grid medium */
@media screen and (min-width: 688px) and (max-width: 980px) {
  .grid--v-medium__col--1 {
    width: 6.69643%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--1 {
    display: inline-block;
    width: 6.69643%; }

  .grid--v-medium__offset--1 {
    margin-left: 6.69643%; }

  .grid--v-medium__pull--1 {
    left: -8.48214%; }

  .grid--v-medium__push--1 {
    left: 8.48214%; }

  .grid--v-medium__col--2 {
    width: 15.17857%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--2 {
    display: inline-block;
    width: 15.17857%; }

  .grid--v-medium__offset--2 {
    margin-left: 15.17857%; }

  .grid--v-medium__pull--2 {
    left: -16.96429%; }

  .grid--v-medium__push--2 {
    left: 16.96429%; }

  .grid--v-medium__col--3 {
    width: 23.66071%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--3 {
    display: inline-block;
    width: 23.66071%; }

  .grid--v-medium__offset--3 {
    margin-left: 23.66071%; }

  .grid--v-medium__pull--3 {
    left: -25.44643%; }

  .grid--v-medium__push--3 {
    left: 25.44643%; }

  .grid--v-medium__col--4 {
    width: 32.14286%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--4 {
    display: inline-block;
    width: 32.14286%; }

  .grid--v-medium__offset--4 {
    margin-left: 32.14286%; }

  .grid--v-medium__pull--4 {
    left: -33.92857%; }

  .grid--v-medium__push--4 {
    left: 33.92857%; }

  .grid--v-medium__col--5 {
    width: 40.625%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--5 {
    display: inline-block;
    width: 40.625%; }

  .grid--v-medium__offset--5 {
    margin-left: 40.625%; }

  .grid--v-medium__pull--5 {
    left: -42.41071%; }

  .grid--v-medium__push--5 {
    left: 42.41071%; }

  .grid--v-medium__col--6 {
    width: 49.10714%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--6 {
    display: inline-block;
    width: 49.10714%; }

  .grid--v-medium__offset--6 {
    margin-left: 49.10714%; }

  .grid--v-medium__pull--6 {
    left: -50.89286%; }

  .grid--v-medium__push--6 {
    left: 50.89286%; }

  .grid--v-medium__col--7 {
    width: 57.58929%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--7 {
    display: inline-block;
    width: 57.58929%; }

  .grid--v-medium__offset--7 {
    margin-left: 57.58929%; }

  .grid--v-medium__pull--7 {
    left: -59.375%; }

  .grid--v-medium__push--7 {
    left: 59.375%; }

  .grid--v-medium__col--8 {
    width: 66.07143%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--8 {
    display: inline-block;
    width: 66.07143%; }

  .grid--v-medium__offset--8 {
    margin-left: 66.07143%; }

  .grid--v-medium__pull--8 {
    left: -67.85714%; }

  .grid--v-medium__push--8 {
    left: 67.85714%; }

  .grid--v-medium__col--9 {
    width: 74.55357%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--9 {
    display: inline-block;
    width: 74.55357%; }

  .grid--v-medium__offset--9 {
    margin-left: 74.55357%; }

  .grid--v-medium__pull--9 {
    left: -76.33929%; }

  .grid--v-medium__push--9 {
    left: 76.33929%; }

  .grid--v-medium__col--10 {
    width: 83.03571%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--10 {
    display: inline-block;
    width: 83.03571%; }

  .grid--v-medium__offset--10 {
    margin-left: 83.03571%; }

  .grid--v-medium__pull--10 {
    left: -84.82143%; }

  .grid--v-medium__push--10 {
    left: 84.82143%; }

  .grid--v-medium__col--11 {
    width: 91.51786%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__width--11 {
    display: inline-block;
    width: 91.51786%; }

  .grid--v-medium__offset--11 {
    margin-left: 91.51786%; }

  .grid--v-medium__pull--11 {
    left: -93.30357%; }

  .grid--v-medium__push--11 {
    left: 93.30357%; }

  .grid--v-medium__col--12 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-medium__width--12 {
    display: inline-block;
    width: 100%; }

  .grid--v-medium__offset--12 {
    margin-left: 100%; }

  .grid--v-medium__pull--12 {
    left: -101.78571%; }

  .grid--v-medium__push--12 {
    left: 101.78571%; }

  .grid--v-medium__col--1-2 {
    width: 48.27586%;
    float: left;
    margin-right: 3.44828%; }

  .grid--v-medium__col--2-9 {
    width: 20.35928%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-medium__col--3-9 {
    width: 31.73653%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-medium__col--4-9 {
    width: 43.11377%;
    float: left;
    margin-right: 2.39521%; }

  .grid--v-medium__col--omega {
    margin-right: 0; }

  .grid--v-medium__col--nm {
    margin-bottom: 0; }

  .grid--v-medium__col--hidden {
    display: none; } }
/* OMEGA-LESS COLS */
@media screen and (min-width: 688px) and (max-width: 980px) {
  .grid--v-medium__cols--1 {
    width: 6.69643%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--1:nth-child(12n) {
    margin-right: 0; }

  .grid--v-medium__cols--1:nth-child(12n +1) {
    clear: left; }

  .grid--v-medium__cols--2 {
    width: 15.17857%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--2:nth-child(6n) {
    margin-right: 0; }

  .grid--v-medium__cols--2:nth-child(6n +1) {
    clear: left; }

  .grid--v-medium__cols--3 {
    width: 23.66071%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--3:nth-child(4n) {
    margin-right: 0; }

  .grid--v-medium__cols--3:nth-child(4n +1) {
    clear: left; }

  .grid--v-medium__cols--4 {
    width: 32.14286%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--4:nth-child(3n) {
    margin-right: 0; }

  .grid--v-medium__cols--4:nth-child(3n +1) {
    clear: left; }

  .grid--v-medium__cols--5 {
    width: 40.625%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--5:nth-child(2n) {
    margin-right: 0; }

  .grid--v-medium__cols--5:nth-child(2n +1) {
    clear: left; }

  .grid--v-medium__cols--6 {
    width: 49.10714%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--6:nth-child(2n) {
    margin-right: 0; }

  .grid--v-medium__cols--6:nth-child(2n +1) {
    clear: left; }

  .grid--v-medium__cols--7 {
    width: 57.58929%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--7:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--7:nth-child(1n +1) {
    clear: left; }

  .grid--v-medium__cols--8 {
    width: 66.07143%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--8:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--8:nth-child(1n +1) {
    clear: left; }

  .grid--v-medium__cols--9 {
    width: 74.55357%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--9:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--9:nth-child(1n +1) {
    clear: left; }

  .grid--v-medium__cols--10 {
    width: 83.03571%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--10:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--10:nth-child(1n +1) {
    clear: left; }

  .grid--v-medium__cols--11 {
    width: 91.51786%;
    float: left;
    margin-right: 1.78571%; }

  .grid--v-medium__cols--11:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--11:nth-child(1n +1) {
    clear: left; }

  .grid--v-medium__cols--12 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-medium__cols--12:nth-child(1n) {
    margin-right: 0; }

  .grid--v-medium__cols--12:nth-child(1n +1) {
    clear: left; } }
/* Variables */
/* Grid small */
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .grid--v-small__col--1 {
    width: 32.48408%;
    float: left;
    margin-right: 1.27389%; }

  .grid--v-small__width--1 {
    display: inline-block;
    width: 32.48408%; }

  .grid--v-small__offset--1 {
    margin-left: 32.48408%; }

  .grid--v-small__col--2 {
    width: 66.24204%;
    float: left;
    margin-right: 1.27389%; }

  .grid--v-small__width--2 {
    display: inline-block;
    width: 66.24204%; }

  .grid--v-small__offset--2 {
    margin-left: 66.24204%; }

  .grid--v-small__col--3 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-small__width--3 {
    display: inline-block;
    width: 100%; }

  .grid--v-small__offset--3 {
    margin-left: 100%; }

  .grid--v-small__col--2 {
    width: 49.03846%;
    float: left;
    margin-right: 1.92308%; }

  .grid--v-small__col--2-3 {
    width: 66.24204%;
    float: left;
    margin-right: 1.27389%; }

  .grid--v-small__col--omega {
    margin-right: 0; }

  .grid--v-small__col--nm {
    margin-bottom: 0; } }
/* OMEGA-LESS COLS */
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .grid--v-small__cols--1 {
    width: 32.48408%;
    float: left;
    margin-right: 1.27389%; }

  .grid--v-small__cols--1:nth-child(3n) {
    margin-right: 0; }

  .grid--v-small__cols--1:nth-child(3n +1) {
    clear: left; }

  .grid--v-small__cols--2 {
    width: 66.24204%;
    float: left;
    margin-right: 1.27389%; }

  .grid--v-small__cols--2:nth-child(1n) {
    margin-right: 0; }

  .grid--v-small__cols--2:nth-child(1n +1) {
    clear: left; }

  .grid--v-small__cols--3 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-small__cols--3:nth-child(1n) {
    margin-right: 0; }

  .grid--v-small__cols--3:nth-child(1n +1) {
    clear: left; }

  .grid--v-small__cols--2:nth-child(1n+1) {
    clear: inherit; }

  .grid--v-small__cols--2:nth-child(1n) {
    margin-right: 1.27389%; }

  .grid--v-small__cols--2 {
    width: 49.03846%;
    float: left;
    margin-right: 1.92308%; }

  .grid--v-small__cols--2:nth-child(even) {
    margin-right: 0; } }
@media only screen and (max-width: 380px) {
  .grid--v-mini__col--1 {
    width: 48.3871%;
    float: left;
    margin-right: 3.22581%; }

  .grid--v-mini__width--1 {
    display: inline-block;
    width: 48.3871%; }

  .grid--v-mini__col--2 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-mini__width--2 {
    display: inline-block;
    width: 100%; }

  .grid--v-mini__col--2-3 {
    width: 65.95745%;
    float: left;
    margin-right: 2.12766%; }

  .grid--v-mini__col--1-3 {
    width: 31.91489%;
    float: left;
    margin-right: 2.12766%; }

  .grid--v-mini__offset--1-3 {
    margin-left: 35.1407%; }

  .grid--v-mini__col--omega {
    margin-right: 0; }

  .grid--v-mini__col--nm {
    margin-bottom: 0; } }
/* OMEGA-LESS COLS */
@media only screen and (max-width: 380px) {
  .grid--v-mini__cols--1 {
    width: 48.3871%;
    float: left;
    margin-right: 3.22581%; }

  .grid--v-mini__cols--1:nth-child(2n) {
    margin-right: 0; }

  .grid--v-mini__cols--1:nth-child(2n +1) {
    clear: left; }

  .grid--v-mini__cols--2 {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .grid--v-mini__cols--2:nth-child(1n) {
    margin-right: 0; }

  .grid--v-mini__cols--2:nth-child(1n +1) {
    clear: left; }

  .grid--v-mini__cols--2 {
    width: 48.3871%;
    float: left;
    margin-right: 3.22581%; }

  .grid--v-mini__cols--2:nth-child(even) {
    margin-right: 0; } }
/*# sourceMappingURL=grid.scss.map */
/* Image hovers */
/* Img-hover */
.img-hover, .img-hover--alt, .img--alt, .img {
  border-radius: 0; }
  .img-hover:after, .img-hover--alt:after, .img--alt:after, .img:after, .img-hover .after, .img-hover--alt .after, .img--alt .after, .img .after {
    box-sizing: border-box;
    border-radius: 3px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 38px;
    line-height: 1;
    content: attr(data-content);
    display: none;
    white-space: nowrap;
    width: auto;
    padding: 15px 20px 15px 20px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2; }
    @media only screen and (max-width: 380px) {
      .img-hover:after, .img-hover--alt:after, .img--alt:after, .img:after, .img-hover .after, .img-hover--alt .after, .img--alt .after, .img .after {
        font-size: 16px;
        line-height: 1; } }
    @media only screen and (min-width: 381px) and (max-width: 687px) {
      .img-hover:after, .img-hover--alt:after, .img--alt:after, .img:after, .img-hover .after, .img-hover--alt .after, .img--alt .after, .img .after {
        font-size: 16px;
        line-height: 1; } }
    @media screen and (min-width: 688px) and (max-width: 980px) {
      .img-hover:after, .img-hover--alt:after, .img--alt:after, .img:after, .img-hover .after, .img-hover--alt .after, .img--alt .after, .img .after {
        font-size: 16px;
        line-height: 1; } }
  .img-hover:hover, .img-hover--alt:hover, .img--alt:hover, .img:hover, .img-hover:focus, .img-hover--alt:focus, .img--alt:focus, .img:focus {
    box-shadow: inset 0 0 0 1px #8ca242; }
    .img-hover:hover:before, .img-hover--alt:hover:before, .img--alt:hover:before, .img:hover:before, .img-hover:hover .before, .img-hover--alt:hover .before, .img--alt:hover .before, .img:hover .before, .img-hover:hover:after, .img-hover--alt:hover:after, .img--alt:hover:after, .img:hover:after, .img-hover:hover .after, .img-hover--alt:hover .after, .img--alt:hover .after, .img:hover .after, .img-hover:focus:before, .img-hover--alt:focus:before, .img--alt:focus:before, .img:focus:before, .img-hover:focus .before, .img-hover--alt:focus .before, .img--alt:focus .before, .img:focus .before, .img-hover:focus:after, .img-hover--alt:focus:after, .img--alt:focus:after, .img:focus:after, .img-hover:focus .after, .img-hover--alt:focus .after, .img--alt:focus .after, .img:focus .after {
      display: block; }
    .img-hover:hover img, .img-hover--alt:hover img, .img--alt:hover img, .img:hover img, .img-hover:focus img, .img-hover--alt:focus img, .img--alt:focus img, .img:focus img {
      opacity: 0.2; }

.img-hover--alt:before, .img--alt:before, .img-hover--alt .before, .img--alt .before {
  box-sizing: border-box;
  border-radius: 3px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 38px;
  line-height: 1;
  content: attr(data-content);
  display: none;
  white-space: nowrap;
  width: auto;
  padding: 15px 20px 15px 20px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin-top: -10px; }
  @media only screen and (max-width: 380px) {
    .img-hover--alt:before, .img--alt:before, .img-hover--alt .before, .img--alt .before {
      font-size: 16px;
      line-height: 1; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .img-hover--alt:before, .img--alt:before, .img-hover--alt .before, .img--alt .before {
      font-size: 16px;
      line-height: 1; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .img-hover--alt:before, .img--alt:before, .img-hover--alt .before, .img--alt .before {
      font-size: 16px;
      line-height: 1; } }
.img-hover--alt:after, .img--alt:after, .img-hover--alt .after, .img--alt .after {
  box-sizing: border-box;
  border-radius: 3px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 18px;
  content: attr(data-content-2);
  display: none;
  white-space: nowrap;
  width: auto;
  padding: 15px 20px 15px 20px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin-top: 30px;
  text-decoration: underline; }

/* Img */
.img {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  margin-bottom: 20px; }
  .img:hover, .img:focus {
    background-color: #a7c64c;
    text-decoration: none; }
  .img img {
    box-sizing: border-box;
    margin: 0;
    width: 100%; }

.img--no-margin {
  margin: 0; }

.img--no-border {
  border: 0; }

.img--payment {
  min-width: 77px;
  margin-right: 30px;
  margin-bottom: 20px;
  vertical-align: middle; }

.img--alt {
  box-sizing: border-box;
  display: inline-block;
  position: relative; }
  .img--alt:hover, .img--alt:focus {
    background-color: #a7c64c;
    text-decoration: none; }
  .img--alt img {
    box-sizing: border-box;
    margin: 0; }

.img--left {
  float: left; }

@media only screen and (max-width: 380px) {
  .img--right {
    width: 100%; } }
@media only screen and (max-width: 380px) {
  .img--right {
    margin-bottom: 10px; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .img--right {
    margin-bottom: 10px; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .img--right {
    float: right;
    margin-left: 10px; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .img--right {
    float: right; } }
@media only screen and (min-width: 981px) {
  .img--right {
    float: right; } }

.item-holder {
  border-bottom: 1px solid #c5bfb7; }

.item-holder--alt {
  border-bottom: 0; }

.item {
  background: #d1ccc6; }
  .item:hover, .item:focus {
    background: #8c7f70; }
    .item:hover .item__title, .item:focus .item__title {
      color: #212121; }
      .item:hover .item__title a, .item:focus .item__title a {
        color: #212121; }
    .item:hover .item__small-text, .item:focus .item__small-text {
      color: #4b443c; }
    .item:hover .item__content, .item:focus .item__content {
      color: #ffffff; }

.item__img {
  width: 100%; }
  .item__img img {
    max-width: 100%;
    width: 100%; }

.item__inner {
  padding: 20px 13px; }

.item__title {
  color: #4b443c;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px; }
  .item__title a {
    text-decoration: none;
    color: #4b443c; }
    .item__title a:hover, .item__title a:focus {
      text-decoration: underline;
      color: #212121; }

.item__introtitle a {
  text-decoration: none; }
  .item__introtitle a:hover, .item__introtitle a:focus {
    text-decoration: underline; }

.item__small-text {
  color: #636466;
  font-size: 16px;
  margin-bottom: 20px; }

.item__content {
  color: #4b443c;
  margin-bottom: 20px;
  min-height: 6.5rem; }

.item__link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px; }

.item--introduction {
  width: 100%;
  position: relative;
  display: block;
  float: left;
  padding: 40px 30px 30px 30px;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid #c5bfb7; }
  .item--introduction hr {
    border-color: #c5bfb7; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .item--introduction {
      border-right: 1px solid #c5bfb7; } }
  @media only screen and (min-width: 981px) {
    .item--introduction {
      border-right: 1px solid #c5bfb7; } }
  .item--introduction:hover, .item--introduction:focus {
    background: #dce8b7; }
  @media only screen and (max-width: 380px) {
    .item--introduction {
      padding-top: 30px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .item--introduction {
      padding-top: 30px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .item--introduction {
      width: 33.33333%; }
      .item--introduction:nth-child(3n + 1) {
        border-left: 1px solid #c5bfb7; } }
  @media only screen and (min-width: 981px) {
    .item--introduction {
      width: 33.33333%; }
      .item--introduction:nth-child(3n + 1) {
        border-left: 1px solid #c5bfb7; } }
  .item--introduction .item__img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    display: block; }
  .item--introduction .item__summary {
    padding-bottom: 32px;
    text-align: left; }
  .item--introduction .item__button {
    position: absolute;
    bottom: 40px;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 20px;
    left: 0;
    line-height: 1em; }

.item__introtitle {
  margin-bottom: 14px; }

.item__summary {
  margin-bottom: 20px;
  line-height: 1.2em;
  font-size: 17px; }

.item__button {
  font-size: 17px;
  padding: 12px 19px;
  margin-bottom: 0; }

.jumbotron {
  box-sizing: border-box;
  max-width: 1095px;
  margin: 0 auto; }
  @media only screen and (max-width: 380px) {
    .jumbotron > *:last-child {
      margin-bottom: 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .jumbotron > *:last-child {
      margin-bottom: 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .jumbotron > *:last-child {
      margin-bottom: 10px; } }
  @media only screen and (max-width: 380px) {
    .jumbotron {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .jumbotron {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .jumbotron {
      padding-left: 20px;
      padding-right: 20px; } }

.jumbotron--banner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 1px; }
  @media only screen and (max-width: 380px) {
    .jumbotron--banner {
      padding-left: 0;
      padding-right: 0; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .jumbotron--banner {
      padding-left: 0;
      padding-right: 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .jumbotron--banner {
      padding-left: 0;
      padding-right: 0; } }

.jumbotron__banner-title {
  margin-bottom: 5px; }

.jumbotron__icon {
  width: 86px;
  height: 64px;
  vertical-align: middle; }

.jumbotron__imageholder {
  width: 100%; }
  @media only screen and (max-width: 380px) {
    .jumbotron__imageholder img {
      max-width: 100%; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .jumbotron__imageholder img {
      max-width: 100%; } }
  @media only screen and (min-width: 981px) {
    .jumbotron__imageholder {
      position: absolute; } }

.jumbotron__image {
  margin: 0 0 20px 0; }
  @media only screen and (max-width: 380px) {
    .jumbotron__image {
      margin: 0 0 10px 0; }
      .jumbotron__image img {
        width: 100%; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .jumbotron__image {
      margin: 0 0 10px 0; }
      .jumbotron__image img {
        width: 100%; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .jumbotron__image {
      text-align: right;
      display: block;
      margin: 0 0 10px 0; } }

.jumbotron__container {
  position: relative;
  display: block;
  max-width: 1140px;
  margin: 0 auto; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .jumbotron__container {
      min-height: 396px; } }
  @media only screen and (min-width: 981px) {
    .jumbotron__container {
      min-height: 396px; } }
  @media only screen and (min-width: 981px) {
    .jumbotron__container {
      height: 396px; } }

.jumbotron__banner {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 45px;
  width: 100%; }
  @media only screen and (min-width: 981px) {
    .jumbotron__banner {
      max-width: 644px;
      /*position: relative;
      top: 50%;
      transform: translateY(-50%);*/ } }
  .jumbotron__banner .checklist {
    margin-bottom: 10px; }

.jumbotron__link {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 15px;
  display: inline-block;
  float: right; }

@media screen and (min-width: 688px) and (max-width: 980px) {
  .jumbotron__block {
    width: 43%;
    display: block;
    float: left; } }

.link-overview {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
  vertical-align: top; }

.link-overview__item {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
  text-align: left; }
  .link-overview__item > *:last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .link-overview__item {
      width: 45%;
      margin-left: 2%;
      margin-right: 2%; } }
  @media only screen and (min-width: 981px) {
    .link-overview__item {
      width: 29%;
      margin-left: 2%;
      margin-right: 2%; } }

.link-overview__title {
  margin-bottom: 25px; }

.link-overview__link:hover, .link-overview__item a:hover, .link-overview__link:focus, .link-overview__item a:focus {
  color: #8ca242;
  text-decoration: underline; }
  .link-overview__link:hover:after, .link-overview__item a:hover:after, .link-overview__link:hover .after, .link-overview__item a:hover .after, .link-overview__link:focus:after, .link-overview__item a:focus:after, .link-overview__link:focus .after, .link-overview__item a:focus .after {
    color: #8ca242; }

/* Variables */
/* Link */
.link--more, .link-overview__item a {
  position: relative;
  color: #0e447b; }
  .link--more:after, .link-overview__item a:after, .link--more .after, .link-overview__item a .after {
    display: inline-block;
    content: "→";
    color: #0e447b;
    position: relative;
    top: 0px;
    margin-left: 7px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px; }

.link--show-more {
  position: relative;
  color: #0e447b; }
  .link--show-more:after, .link--show-more .after {
    display: inline-block;
    content: '\2193';
    color: #0e447b;
    position: relative;
    top: 0px;
    margin-left: 7px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px; }

.link--show-less {
  position: relative;
  color: #0e447b; }
  .link--show-less:after, .link--show-less .after {
    display: inline-block;
    content: '\2191';
    color: #0e447b;
    position: relative;
    top: 0px;
    margin-left: 7px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px; }

.link--light {
  font-weight: 400; }

.link--longe {
  font-size: 24px;
  font-family: "Hind", "Hind", Arial, sans-serif;
  text-transform: uppercase;
  color: #8c7f70;
  text-decoration: none; }
  .link--longe:hover, .link--longe:focus {
    text-decoration: none; }
  .link--longe:after, .link--longe .after {
    display: inline-block;
    font-size: 9px;
    vertical-align: middle;
    top: -2px;
    padding-left: 15px;
    width: 64px;
    margin-left: 15px;
    overflow: hidden;
    text-indent: -15px;
    padding-left: 0; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure {
    /* The shadow behind the image */ }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/*# sourceMappingURL=magnific-popup.scss.map */
img.mfp-img {
  border: 0;
  background: transparent; }

.mfp-figure figure {
  margin: 0; }

.map {
  width: 1237px;
  margin: 0 auto; }
  .map img {
    max-width: none;
    background: none; }
  .map .gm-style-iw {
    font-family: Tahoma !important;
    line-height: 20px; }
    .map .gm-style-iw div.title {
      font-weight: bold;
      font-size: 18px;
      line-height: 22px; }
    .map .gm-style-iw p {
      font-size: 13px;
      line-height: 20px;
      margin-bottom: 0; }

.map__holder {
  height: 430px; }

/* MASTHEAD */
/* All masthead components */
/* LOGO */
.masthead__logo {
  padding-top: 15px;
  float: left;
  margin-bottom: 12px;
  text-decoration: none;
  margin-left: -10px; }
  .masthead__logo a {
    text-decoration: none; }
  @media only screen and (min-width: 980px) and (max-width: 1110px) {
    .masthead__logo {
      float: none;
      padding-top: 0;
      margin-bottom: 0; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .masthead__logo {
      margin-top: -20px;
      padding-top: 0;
      margin-left: 0; } }
  @media only screen and (max-width: 380px) {
    .masthead__logo {
      width: 165px;
      padding-top: 0;
      padding-left: 5px;
      margin-top: -15px;
      margin-left: -5px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__logo {
      width: 165px;
      padding-top: 0;
      padding-left: 5px;
      margin-top: -15px;
      margin-left: -5px; } }

.masthead__logo__slogan {
  color: #a7c64c;
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  letter-spacing: 4px;
  padding-left: 9px; }
  @media only screen and (max-width: 380px) {
    .masthead__logo__slogan {
      font-size: 13px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__logo__slogan {
      font-size: 13px; } }

/* Fast-Contact */
.masthead__fast-contact {
  margin-top: 15px;
  margin-bottom: 25px;
  display: block;
  float: right;
  position: relative; }
  @media only screen and (max-width: 380px) {
    .masthead__fast-contact {
      width: 100%;
      width: calc(100% - 10px);
      display: block;
      float: none;
      margin: 5px; }
      .masthead__fast-contact .tick {
        text-align: center; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__fast-contact {
      width: 100%;
      width: calc(100% - 10px);
      display: block;
      float: none;
      margin: 5px; }
      .masthead__fast-contact .tick {
        text-align: center; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .masthead__fast-contact {
      width: 100%;
      width: calc(100% - 10px);
      display: block;
      float: none;
      margin: 5px; }
      .masthead__fast-contact .tick {
        text-align: center; } }
  .masthead__fast-contact--alt {
    background-color: #f24a00; }

.masthead__fast-contact--v-large-mr {
  margin-right: 20px; }

.masthead__fast-contact__icon {
  font-size: 34px;
  color: #ffcf11;
  position: absolute; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .masthead__fast-contact__icon {
      font-size: 26px;
      display: inline-block;
      position: relative;
      top: 3px;
      padding-right: 10px; } }

@media screen and (min-width: 688px) and (max-width: 980px) {
  .masthead__fast-contact__main:after, .masthead__fast-contact__main .after {
    content: '?';
    display: inline; } }

.masthead__fast-contact__main,
.masthead__fast-contact__secondary {
  display: block;
  line-height: 18px; }

.masthead__fast-contact__main {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0; }
  @media only screen and (max-width: 380px) {
    .masthead__fast-contact__main {
      font-size: 16px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__fast-contact__main {
      font-size: 16px; } }

.masthead__fast-contact__secondary {
  color: #86a1bd;
  font-size: 15px;
  font-weight: 500; }
  .masthead__fast-contact__secondary--alt {
    color: #0e447b; }
  @media only screen and (max-width: 380px) {
    .masthead__fast-contact__secondary {
      font-size: 14px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__fast-contact__secondary {
      font-size: 14px; } }

.masthead__fast-contact-partners {
  float: right;
  margin: 56px 20px 0 0; }
  @media only screen and (max-width: 380px) {
    .masthead__fast-contact-partners {
      display: none; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .masthead__fast-contact-partners {
      display: none; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .masthead__fast-contact-partners {
      display: none; } }

.masthead__wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box; }
  @media only screen and (min-width: 980px) and (max-width: 1190px) {
    .masthead__wrapper {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .masthead__wrapper {
      padding-left: 10px;
      padding-right: 10px; } }

.masthead__wrapper--large {
  max-width: 1140px; }
  @media only screen and (min-width: 981px) {
    .masthead__wrapper--large {
      padding-left: 0;
      padding-right: 0; } }

.masthead__search {
  transition: none;
  -webkit-transform: translate3d(0, -98px, 0);
  transform: translate3d(0, -98px, 0);
  height: 0;
  overflow: hidden; }
  .masthead__search--active {
    transition: -webkit-transform 0.5s 0.1s cubic-bezier(0.79, 0.02, 0.12, 0.97);
    transition: transform 0.5s 0.1s cubic-bezier(0.79, 0.02, 0.12, 0.97);
    height: 98px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .no-csstransforms3d .masthead__search {
    position: relative;
    top: -98px; }
    .no-csstransforms3d .masthead__search--active {
      top: 0; }

.masthead__search__form {
  box-sizing: border-box;
  position: relative;
  max-width: 463px;
  float: right;
  width: 100%;
  padding: 5px; }
  @media only screen and (min-width: 981px) {
    .masthead__search__form {
      margin: 0; } }

.masthead__search__input {
  transition: all 0.3s;
  box-sizing: border-box !important;
  margin-bottom: 0;
  width: 58%;
  border: 0;
  margin-right: 2%;
  border-bottom: 2px solid;
  background-color: transparent;
  padding: 0;
  line-height: 35px;
  height: 35px;
  border-radius: 0;
  -webkit-border-radius: 0; }
  .masthead__search__input:focus {
    outline: 0;
    border-color: #a7c64c; }

.masthead__search__button {
  padding-right: 15px;
  font-size: 17px;
  width: 40%; }
  .masthead__search__button:hover, .masthead__search__button:focus {
    padding-right: 15px; }

.search__overview {
  margin-left: -22px; }

.gsc-result-info-container,
.gsc-orderby-container,
.gsc-adBlockVertical,
.gsc-adBlock,
.gsc-search-box,
.gcsc-branding {
  display: none !important; }

.gsc-wrapper.gsc-thinWrapper, .gsc-above-wrapper-area {
  border: none !important; }

.searchtrigger {
  text-decoration: none;
  display: inline-block;
  margin: 26px 20px 0 0;
  font-size: 25px;
  float: right; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .searchtrigger {
      margin-top: 33px; } }
  @media only screen and (max-width: 380px) {
    .searchtrigger {
      margin-top: 13px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .searchtrigger {
      margin-top: 13px; } }
  @media only screen and (min-width: 981px) {
    .searchtrigger {
      position: absolute;
      bottom: 3px;
      right: 0px;
      margin-right: 0;
      font-size: 18px; } }
  @media only screen and (max-width: 1190px) {
    .searchtrigger {
      right: 20px; } }
  .searchtrigger:after {
    display: none !important; }
  .searchtrigger:hover, .searchtrigger:focus {
    color: #a7c64c; }

.masthead {
  position: relative; }

/* MENU-BUTTON-HOLDER */
.menu-button-holder {
  box-sizing: border-box;
  display: none;
  width: 90px;
  float: right;
  text-align: right;
  margin-top: 17px;
  padding-right: 5px; }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .menu-button-holder {
      display: block;
      margin-top: 20px; } }
  @media only screen and (max-width: 380px) {
    .menu-button-holder {
      display: block;
      margin-top: 0px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .menu-button-holder {
      display: block;
      margin-top: 0px; } }

/* MENU-BUTTON */
.menu-button {
  display: inline-block;
  background: #0e447b;
  padding: 12px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 5px; }
  .menu-button:hover, .menu-button:focus {
    color: #ffffff; }

.menu-button__icon {
  display: inline-block;
  vertical-align: middle;
  width: 12px; }
  .menu-button__icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-bottom: 2px; }

/* VARIABLES */
/* STYLE */
.meta {
  margin-top: -25px;
  margin-bottom: 10px; }
  @media only screen and (max-width: 380px) {
    .meta {
      margin-top: -10px;
      margin-bottom: 10px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .meta {
      margin-top: -10px;
      margin-bottom: 10px; } }

.meta__icon {
  padding-right: 10px; }

.meta__replies,
.meta__author,
.meta__category {
  padding-left: 10px; }

.nav-top {
  display: none;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 3px; }
  @media only screen and (max-width: 380px) {
    .nav-top {
      background: #0e447b;
      clear: both;
      float: none; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .nav-top {
      background: #0e447b;
      clear: both;
      float: none; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .nav-top {
      background: #0e447b;
      clear: both;
      float: none; } }
  @media only screen and (min-width: 981px) {
    .nav-top {
      display: block; } }
  @media only screen and (min-width: 981px) {
    .nav-top {
      text-align: right;
      float: right;
      width: auto;
      margin-right: 24px;
      clear: right; } }
  .nav-top ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .nav-top li {
    margin: 0;
    padding: 0;
    display: inline-block;
    /*&:last-child, &.slvzr-last-child {
        .nav-top__item {
            &:after, .after {
                display: none;
            }
        }
    }*/ }
    @media only screen and (max-width: 380px) {
      .nav-top li {
        display: block; } }
    @media only screen and (min-width: 381px) and (max-width: 687px) {
      .nav-top li {
        display: block; } }
    @media screen and (min-width: 688px) and (max-width: 980px) {
      .nav-top li {
        display: block; } }

@media only screen and (max-width: 380px) {
  .nav-top--active {
    display: block; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .nav-top--active {
    display: block; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .nav-top--active {
    display: block; } }

.nav-top__item {
  text-decoration: none;
  display: inline-block; }
  .nav-top__item:after, .nav-top__item .after {
    content: '|';
    display: inline-block;
    width: 1px;
    height: 17px;
    color: #a7c64c;
    padding: 0 12px; }
  .nav-top__item:hover, .nav-top__item:focus {
    color: #a7c64c; }
  @media only screen and (max-width: 380px) {
    .nav-top__item {
      box-sizing: border-box;
      margin: 0;
      padding: 10px;
      color: #ffffff;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 16px;
      line-height: 20px;
      vertical-align: middle;
      display: block;
      width: 100%; }
      .nav-top__item:after, .nav-top__item .after {
        display: none; }
      .nav-top__item:hover, .nav-top__item:focus {
        color: #ffffff;
        text-decoration: none;
        background: #86a1bd; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .nav-top__item {
      box-sizing: border-box;
      margin: 0;
      padding: 10px;
      color: #ffffff;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 16px;
      line-height: 20px;
      vertical-align: middle;
      display: block;
      width: 100%; }
      .nav-top__item:after, .nav-top__item .after {
        display: none; }
      .nav-top__item:hover, .nav-top__item:focus {
        color: #ffffff;
        text-decoration: none;
        background: #86a1bd; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .nav-top__item {
      box-sizing: border-box;
      margin: 0;
      padding: 10px;
      color: #ffffff;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 16px;
      line-height: 20px;
      vertical-align: middle;
      display: block;
      width: 100%; }
      .nav-top__item:after, .nav-top__item .after {
        display: none; }
      .nav-top__item:hover, .nav-top__item:focus {
        color: #ffffff;
        text-decoration: none;
        background: #86a1bd; } }

.nav-top__item--active {
  color: #a7c64c; }

/* NAV-MAIN */
.nav-main {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: none; }
  @media only screen and (max-width: 380px) {
    .nav-main {
      clear: both;
      float: none;
      background: #0e447b; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .nav-main {
      clear: both;
      float: none;
      background: #0e447b; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .nav-main {
      clear: both;
      float: none;
      background: #0e447b; } }
  @media only screen and (min-width: 981px) {
    .nav-main {
      text-align: left;
      display: table;
      width: 100%; } }

@media only screen and (max-width: 380px) {
  .nav-main--active {
    display: block; } }
@media only screen and (min-width: 381px) and (max-width: 687px) {
  .nav-main--active {
    display: block; } }
@media screen and (min-width: 688px) and (max-width: 980px) {
  .nav-main--active {
    display: block; } }

.nav-main__item {
  box-sizing: border-box;
  margin: 0;
  padding: 0 17px;
  color: #ffffff;
  background: #0e447b;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  vertical-align: middle;
  text-align: center; }
  @media only screen and (min-width: 981px) {
    .nav-main__item {
      border-right: 1px solid white;
      border-bottom: 1px solid white; }
      .nav-main__item:last-of-type {
        border-right: none; } }
  .nav-main__item br {
    display: none; }
  @media only screen and (max-width: 380px) {
    .nav-main__item {
      display: block;
      padding: 10px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .nav-main__item {
      display: block;
      padding: 10px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .nav-main__item {
      display: block;
      padding: 10px; } }
  @media only screen and (min-width: 981px) {
    .nav-main__item {
      min-height: 66px;
      min-width: 124px;
      padding: 0 10px;
      float: left;
      display: table-cell;
      width: 20%; } }
  .nav-main__item:before, .nav-main__item .before {
    content: '';
    display: inline-block;
    width: 0;
    vertical-align: middle; }
    @media only screen and (min-width: 981px) {
      .nav-main__item:before, .nav-main__item .before {
        min-height: 66px; } }
  .nav-main__item span {
    display: inline-block;
    vertical-align: middle; }
  .nav-main__item:hover, .nav-main__item:focus {
    background: #86a1bd;
    color: #ffffff; }

.nav-main__item--active {
  background: #86a1bd;
  color: #ffffff; }

/* NAV-FOOTER */
.nav-footer ul {
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none; }
.nav-footer li {
  margin: 0;
  padding: 0; }

.nav-footer__item {
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline; }
  .nav-footer__item:hover, .nav-footer__item:focus {
    color: #a7c64c;
    text-decoration: underline; }

.news-item {
  width: 704px;
  margin-left: -10px;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ecebeb;
  overflow: hidden; }
  .news-item > *:last-child {
    margin-bottom: 0; }

.news-item__title {
  margin-bottom: 27px; }

.news-item__imagelink {
  float: right;
  margin-left: 30px;
  margin-bottom: 0; }
  .news-item__imagelink ~ .news-item__content {
    max-width: 487px; }

.no-script {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid black;
  background-color: #FFFFE1;
  color: black;
  font-family: verdana;
  font-size: 11px;
  text-align: left;
  text-transform: uppercase; }

/* VARIABLES */
/* STYLE */
.pagination {
  box-sizing: border-box;
  width: auto;
  margin-bottom: 20px;
  margin-bottom: 20px;
  padding: 10px 10px 7px 10px;
  position: relative;
  color: #636466;
  font-weight: normal;
  line-height: 2.5rem;
  text-align: center;
  width: 530px; }
  .pagination select {
    margin: 0;
    padding: 0; }
  .pagination .disabled {
    display: none; }
  @media print {
    .pagination {
      display: none !important; } }

.pagination__holder {
  min-height: 2.5rem;
  line-height: 2.5rem;
  margin: 0;
  display: block;
  list-style: none;
  position: relative; }
  @media only screen and (min-width: 981px) {
    .pagination__holder {
      width: 300px;
      margin: 0;
      padding: 0;
      float: left; } }

.pagination__previous, .pagination__next {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: inline-block;
  height: 2.5rem;
  padding: 0;
  border: none;
  vertical-align: middle;
  line-height: 2.5rem;
  text-decoration: none;
  font-size: 16px;
  font-family: "Hind", Arial, sans-serif;
  text-decoration: underline; }
  @media only screen and (max-width: 380px) {
    .pagination__previous, .pagination__next {
      padding: 0.9375rem 1.25rem; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pagination__previous, .pagination__next {
      padding: 0.9375rem 1.25rem; } }
  .pagination__previous:hover, .pagination__previous:focus, .pagination__next:hover, .pagination__next:focus {
    color: #072f49;
    text-decoration: none; }
    .pagination__previous:hover:before, .pagination__previous:hover.before, .pagination__previous:hover:after, .pagination__previous:hover.after, .pagination__previous:focus:before, .pagination__previous:focus.before, .pagination__previous:focus:after, .pagination__previous:focus.after, .pagination__next:hover:before, .pagination__next:hover.before, .pagination__next:hover:after, .pagination__next:hover.after, .pagination__next:focus:before, .pagination__next:focus.before, .pagination__next:focus:after, .pagination__next:focus.after {
      color: #072f49; }
  .pagination__previous:active, .pagination__next:active {
    color: #072f49;
    text-decoration: none; }
    .pagination__previous:active:before, .pagination__previous:active.before, .pagination__previous:active:after, .pagination__previous:active.after, .pagination__next:active:before, .pagination__next:active.before, .pagination__next:active:after, .pagination__next:active.after {
      color: #072f49; }
  .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
    font-size: 10px;
    line-height: 1;
    display: inline-block;
    text-decoration: none;
    color: #072f49; }
    @media only screen and (max-width: 380px) {
      .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
        font-size: 18px;
        line-height: 1; } }
    @media only screen and (min-width: 381px) and (max-width: 687px) {
      .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
        font-size: 18px;
        line-height: 1; } }
    @media screen and (min-width: 688px) and (max-width: 980px) {
      .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
        font-size: 18px;
        line-height: 1; } }
  @media only screen and (max-width: 380px) {
    .pagination__previous, .pagination__next {
      display: inline-block;
      position: relative;
      font-size: 0;
      width: 0;
      height: 0; }
      .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
        position: absolute;
        top: 5px;
        left: 0;
        right: 0;
        width: 100%; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pagination__previous, .pagination__next {
      display: inline-block;
      position: relative;
      font-size: 0;
      width: 0;
      height: 0; }
      .pagination__previous:before, .pagination__previous.before, .pagination__previous:after, .pagination__previous.after, .pagination__next:before, .pagination__next.before, .pagination__next:after, .pagination__next.after {
        position: absolute;
        top: 5px;
        left: 0;
        right: 0;
        width: 100%; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .pagination__previous:before, .pagination__previous .before, .pagination__next:before, .pagination__next .before {
      padding-right: 0.375rem; }
    .pagination__previous:after, .pagination__previous .after, .pagination__next:after, .pagination__next .after {
      padding-left: 0.375rem; } }
  @media only screen and (min-width: 981px) {
    .pagination__previous:before, .pagination__previous .before, .pagination__next:before, .pagination__next .before {
      padding-right: 0.375rem; }
    .pagination__previous:after, .pagination__previous .after, .pagination__next:after, .pagination__next .after {
      padding-left: 0.375rem; } }

.pagination__previous {
  left: 0; }
  .pagination__previous:before, .pagination__previous.before {
    content: '\e60b';
    font-family: 'ralus', Arial, sans-serif;
    font-size: 12px; }
  @media only screen and (max-width: 380px) {
    .pagination__previous {
      float: left; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pagination__previous {
      float: left; } }

.pagination__next {
  right: 0; }
  .pagination__next:after, .pagination__next.after {
    content: '\e60c';
    font-family: 'ralus', Arial, sans-serif;
    font-size: 12px; }
  @media only screen and (max-width: 380px) {
    .pagination__next {
      float: right; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pagination__next {
      float: right; } }

.pagination__all {
  display: inline-block;
  width: auto;
  text-align: center;
  margin: 0 auto;
  margin-left: 20px;
  padding: 0;
  color: #6b6b6b;
  font-size: 14px;
  font-family: "Hind", Arial, sans-serif;
  font-weight: 400;
  line-height: 2.5rem;
  font-size: 14px; }
  @media only screen and (max-width: 380px) {
    .pagination__all {
      line-height: 1; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pagination__all {
      line-height: 1; } }
  .pagination__all strong {
    color: #6b6b6b;
    font-weight: 400; }
  @media only screen and (min-width: 981px) {
    .pagination__all {
      margin-right: 0.625rem; } }

/* Paragraph */
.paragraph--auto-width {
  max-width: none; }

.paragraph--alt {
  max-width: 790px; }

.paragraph--centered {
  margin-left: auto;
  margin-right: auto; }

.paragraph--nm {
  margin-bottom: 0; }

.pre-footer {
  clear: both;
  overflow: hidden;
  float: none;
  width: 100%;
  position: relative; }

.pre-footer--small {
  background: #8c7f70;
  color: #ffffff;
  padding: 21px 0 17px 0; }

.pre-footer--large {
  background: #d1ccc6;
  color: #4f5151;
  padding: 55px 0 50px 0; }

.pre-footer--alt {
  background: #d1ccc6;
  color: #4f5151;
  padding: 60px 0 40px 0;
  text-align: center; }

.pre-footer--quotes {
  background: #dce8b7;
  color: #4f5151;
  padding: 55px 0 50px 0; }

@media screen and (min-width: 688px) and (max-width: 980px) {
  .pre-footer__pointers {
    text-align: center; } }
@media only screen and (min-width: 981px) {
  .pre-footer__pointers {
    text-align: center; } }
.pre-footer__pointer {
  display: inline-block;
  font-size: 17px; }
  @media only screen and (max-width: 380px) {
    .pre-footer__pointer {
      padding-right: 10px; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .pre-footer__pointer {
      padding-right: 10px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .pre-footer__pointer {
      padding-right: 10px; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .pre-footer__pointer {
      padding-right: 25px; } }
  @media only screen and (min-width: 981px) {
    .pre-footer__pointer {
      padding-right: 25px; } }
  .pre-footer__pointer:last-child, .pre-footer__pointer.slvzr-last-child {
    padding-right: 0; }

.pre-footer--bordered {
  border-top: 1px solid #c5bfb7;
  border-bottom: 1px solid #c5bfb7; }

.pre-footer__icon {
  font-size: 17px;
  padding-right: 10px; }

.pre-footer__title {
  font-size: 26px;
  color: #4b443c;
  text-align: center;
  font-weight: 500; }

.pre-footer__title-2 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px; }

.pre-footer__title-3 {
  font-size: 23px;
  font-weight: 600;
  color: #4b443c; }

.pre-footer__col {
  display: inline-block;
  vertical-align: top;
  line-height: 30px;
  margin-bottom: 15px; }

.pre-footer__col--1 {
  width: 100%;
  max-width: 345px;
  margin-right: 40px; }

.pre-footer__col--2 {
  width: 100%;
  max-width: 245px;
  margin-right: 40px; }

.pre-footer__col--3 {
  width: 100%;
  max-width: 330px; }

.pre-footer__col--alt {
  width: 100%;
  max-width: 430px;
  text-align: left;
  margin-bottom: 0; }

.pre-footer__button {
  text-align: center;
  margin: 0 auto; }

.pre-footer__quote {
  display: block;
  width: 100%;
  max-width: 510px;
  float: left;
  margin-right: 20px; }
  .pre-footer__quote:last-child, .pre-footer__quote.slvzr-last-child {
    margin-right: 0; }

.pre-footer__link {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px; }

.pre-footer__image-holder {
  position: relative;
  width: 108px;
  max-width: 108px;
  margin: 0;
  padding: 0;
  border-radius: 108px;
  border: 1px solid #a7c64c;
  float: left;
  margin-right: 20px; }
  .pre-footer__image-holder img {
    border-radius: 108px;
    margin: 0;
    padding: 0; }
  .pre-footer__image-holder:after, .pre-footer__image-holder .after {
    content: '';
    border-radius: 108px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: inset 0 0 0 4px #f8f6cb;
    box-shadow: inset 0 0 0 4px rgba(248, 246, 203, 0.55); }

.pre-footer__inner {
  display: block;
  width: 100%;
  max-width: 440px;
  float: left; }

.pre-footer__content {
  font-size: 17px; }

.quote__title {
  display: block;
  font-weight: 500;
  margin-bottom: 20px; }

.quote__image-holder {
  position: relative;
  width: 108px;
  max-width: 108px;
  margin: 0;
  padding: 0;
  border-radius: 108px;
  border: 1px solid #a7c64c;
  float: left;
  margin-right: 10px; }
  .quote__image-holder img {
    border-radius: 108px;
    margin: 0;
    padding: 0; }
  .quote__image-holder:after, .quote__image-holder .after {
    content: '';
    border-radius: 108px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: inset 0 0 0 4px #f8f6cb;
    box-shadow: inset 0 0 0 4px rgba(248, 246, 203, 0.55); }

.quote__inner {
  padding-left: 118px; }

/* VARIABLES */
/* STYLE */
.reply-item {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #636466;
  max-width: 34.375rem; }

.reply-item:first-child {
  border-top: 0;
  padding-top: 0; }

.reply-item__meta,
.reply-item__reply {
  padding-left: 70px; }

.reply-item__meta {
  margin: 0;
  color: #95c4f3; }

/* Imports */
/* Styleguide Menu */
.styleguide__menu {
  list-style: none;
  margin-top: 20px;
  padding: 0; }
  .styleguide__menu li {
    display: inline-block;
    margin-right: 20px; }

/* Styleguide partial */
.styleguide__partial {
  padding: 20px 0 0 0;
  border-bottom: 1px solid #636466; }
  .styleguide__partial:first-child, .styleguide__partial.slvzr-first-child {
    border-top: 1px solid #636466; }

/* styleguide__example */
.styleguide__example {
  background-color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #636466; }

/* Styleguide Grid--example */
.styleguide__grid--example [class*="__col"] {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px; }

/* Styleguide Title */
.styleguide__title {
  display: block;
  font-weight: bold;
  font-family: "Hind", Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px; }

/* Styleguide Grid-holder */
.styleguide__grid-holder {
  width: 100%;
  height: 50px;
  background-color: #636466; }

/* Styleguide Map */
.styleguide__map {
  width: 980px;
  max-width: 100%;
  height: 500px; }

/* Styleguide Code */
.styleguide__code {
  box-sizing: border-box;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  background-color: #FFFDE2;
  border: 1px solid #F0F0ED;
  color: #212121; }

/* Styleguide Icons */
.styleguide__icons {
  font-size: 24px; }
  .styleguide__icons .icon, .styleguide__icons a[rel=external]:after, .styleguide__icons a[rel=external] .after, a[rel=external] .styleguide__icons .after, .styleguide__icons .alert-message__close:before, .styleguide__icons .alert-message__close .before, .alert-message__close .styleguide__icons .before, .styleguide__icons .checked-list li:before, .checked-list .styleguide__icons li:before, .styleguide__icons .checked-list li .before, .checked-list li .styleguide__icons .before, .styleguide__icons .checklist li:before, .checklist .styleguide__icons li:before, .styleguide__icons .checklist li .before, .checklist li .styleguide__icons .before, .styleguide__icons .download-list li:before, .download-list .styleguide__icons li:before, .styleguide__icons .download-list li .before, .download-list li .styleguide__icons .before, .styleguide__icons .img-hover:after, .styleguide__icons .img-hover--alt:after, .styleguide__icons .img--alt:after, .styleguide__icons .img:after, .styleguide__icons .img-hover .after, .img-hover .styleguide__icons .after, .styleguide__icons .img-hover--alt .after, .img-hover--alt .styleguide__icons .after, .styleguide__icons .img--alt .after, .img--alt .styleguide__icons .after, .styleguide__icons .img .after, .img .styleguide__icons .after, .styleguide__icons .img-hover--alt:before, .styleguide__icons .img--alt:before, .styleguide__icons .img-hover--alt .before, .img-hover--alt .styleguide__icons .before, .styleguide__icons .img--alt .before, .img--alt .styleguide__icons .before, .styleguide__icons .link--longe:after, .styleguide__icons .link--longe .after, .link--longe .styleguide__icons .after, .styleguide__icons .tick:before {
    display: inline-block;
    width: 80px;
    padding-bottom: 20px;
    text-align: center; }

.styleguide {
  background-color: white; }

/* Summary */
.summary {
  font-size: 1.1875rem;
  line-height: 1.75rem; }
  @media only screen and (max-width: 380px) {
    .summary {
      font-size: 1rem;
      line-height: 1.25rem; } }
  @media only screen and (min-width: 381px) and (max-width: 687px) {
    .summary {
      font-size: 1rem;
      line-height: 1.25rem; } }
  @media screen and (min-width: 688px) and (max-width: 980px) {
    .summary {
      font-size: 1.0625rem;
      line-height: 1.5625rem; } }

.tick {
  font-size: 0.9em; }
  .tick:before {
    content: "";
    color: #f24a00;
    margin-right: 0.4em;
    font-size: 0.8em; }
  .tick--alt:before {
    color: #a7c64c; }

/* Video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* Wrapper */
.wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0; }

.wrapper--npt {
  padding-top: 0; }

.wrapper--npb {
  padding-bottom: 0; }

.wrapper--np {
  padding: 0; }

.wrapper--spt {
  padding-top: 25px; }

.wrapper--spb {
  padding-bottom: 20px; }

.wrapper--sp {
  padding-top: 20px;
  padding-bottom: 20px; }

.wrapper--lpb {
  padding-bottom: 60px; }

.wrapper--bordered {
  border-top: 1px solid #ecebeb;
  border-bottom: 1px solid #ecebeb; }

.wrapper--bt {
  border-top: 1px solid #ecebeb; }

.wrapper--bb {
  border-bottom: 1px solid #ecebeb; }

.wrapper--primary {
  background: #0e447b; }

.wrapper--secondary {
  background: #636466; }

.wrapper--tertiary {
  background: #4a9ad0; }

.wrapper--white {
  background: #ffffff; }

.wrapper--black {
  background: #212121; }

.wrapper--light-gray {
  background: #f8f8f8; }

.wrapper--gray {
  background: #636466; }

.wrapper--gray-2 {
  background: #ecebeb; }

.wrapper--gray-4 {
  background: #6b6b6b; }

.wrapper--gray-5 {
  background: #4f5151; }

.wrapper--gray-6 {
  background: #c5bfb7; }

.wrapper--red {
  background: #b72525; }

.wrapper--hotred {
  background: #f24a00; }

.wrapper--green {
  background: #a7c64c; }

.wrapper--green-2 {
  background: #8ca242; }

.wrapper--green-3 {
  background: #dce8b7; }

.wrapper--blue {
  background: #0e447b; }

.wrapper--blue-2 {
  background: #0b3764; }

.wrapper--blue-3 {
  background: #86a1bd; }

.wrapper--brown {
  background: #8c7f70; }

.wrapper--brown-2 {
  background: #d1ccc6; }

.wrapper--brown-3 {
  background: #4b443c; }

.wrapper--yellow {
  background: #f8f6cb; }

.wrapper--yellow-2 {
  background: #ffcf11; }

.wrapper--banner {
  margin-top: 2px; }

/* ==========================================================================
   Print corrections
   ========================================================================== */
@media print {
  .do-not-print {
    display: none !important; }

  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  article img {
    margin-bottom: 1em; } }

/*# sourceMappingURL=main.css.map */